* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

/* navbar */
.navbar {
  background-color: #2fa360;
}
.navbar .navbar-toggler {
  border: none;
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
}
.navbar .navbar-nav {
  padding: 0px;
  margin: 0px;
}
.navbar .navbar-nav .nav-item {
  padding: 0 10px;
}
.navbar .navbar-nav .nav-item .nav-link {
  color: #fff;
  font-weight: 500;
  padding: 10px;
}

/* header */
.header {
  margin-top: 80px;
  height: 585px;
  background: url(../images/ar/front\ page\ ar-01.png) 100% no-repeat;
  background-size: cover;
}
.header .header-content {
  padding-top: 100px;
  color: #fff;
}
.header .header-content .header-subtitle {
  font-size: 20px;
}
.header .header-content .btn-header {
  color: #fff;
  border: 1px solid #fff;
}
.header .header-content .btn-header:hover {
  background-color: #fff;
  color: #2fa360;
  border: 1px solid #2fa360;
  transition: all 0.5s ease-in-out;
}
.header .header-content .btn-header:focus {
  box-shadow: none;
}
@media (max-width: 991px) {
  .header {
    height: 500px;
  }
  .header .header-content {
    padding-top: 70px;
  }
}

/* about */
.about,
.features,
.why,
.contact,
.footer {
  margin-top: 50px;
}
.about .about-content .about-text {
  font-size: 20px;
  font-weight: 300;
  color: #2fa360;
  line-height: 1.5;
}

/* features */
.features {
  background-color: #fbfbfb;
}
.features .features-content .features-title,
.features .features-items p,
.why .why-content .why-title,
.packages .packages-title,
.packages .packages-green,
.contact .contact-content .contact-title,
.contact .contact-content .contact-text {
  color: #2fa360;
}
.features .features-content .features-text,
.why .why-content .why-text,
.packages .packages-text {
  font-size: 18px;
  color: #707070;
}
.features .features-items {
  background-color: #fff;
  border-radius: 20px;
  height: 200px;
  width: 300px;
  box-shadow: 0px 1px 15px rgba(0, 0, 0, 0.1);
}

/* why */
.why .why-items {
  background: url(../images/Union\ 4.png) no-repeat;
  background-size: cover;
}
.why .why-items .item-title {
  font-weight: 400;
  color: #2fa360;
}
.why .why-items .item-text {
  color: #707070;
}
.why #hide {
  display: none;
}
@media (max-width: 991px) {
  .why #show {
    display: none;
  }
  .why #hide {
    display: block;
  }
}

/* packages */
.packages .btn-packages {
  background-color: #2fa360;
  color: #fff;
  padding: 6px 30px;
}
.packages .btn-packages:hover {
  background-color: #fff;
  color: #2fa360;
  border: 1px solid #2fa360;
  transition: all 0.5s ease-in-out;
}
.packages .btn-packages:focus {
  box-shadow: none;
}

/* contact */
.contact {
  position: relative;
  height: 620px;
  background: url(../images/Union\ 4.png) no-repeat;
  background-size: cover;
}
.contact .contact-info {
  background-color: #2fa360;
}
.contact .contact-info .info {
  color: #fff;
}
.contact .form {
  position: absolute;
  top: 30px;
  left: 100px;
  height: 540px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 1px 15px rgba(0, 0, 0, 0.1);
}
.contact .form input,
.contact .form textarea {
  border-radius: 15px;
  padding: 10px;
}
.contact .form button {
  background-color: #2fa360;
  color: #fff;
  padding: 6px 30px;
}
.contact .form button:hover {
  background-color: #fff;
  color: #2fa360;
  border: 1px solid #2fa360;
  transition: all 0.5s ease-in-out;
}
.contact .form input:focus,
.contact .form textarea:focus,
.contact .form button:focus {
  box-shadow: none;
  border: 1px solid #2fa360;
}

/* footer */
.footer {
  position: relative;
  background-color: #2fa360;
}
.footer .footer-content .footer-links a {
  color: #fff;
  text-decoration: none;
}
.footer .footer-share input {
  padding: 12px;
  border: 1px solid #fff;
  background-color: transparent;
  border-radius: 0px;
}
.footer .footer-share p,
.footer .footer-share input::placeholder {
  color: #fff;
}
.footer .footer-share button {
  background-color: #fff;
  color: #2fa360;
  padding: 10px 20px;
  margin-right: -10px;
  border-radius: 8px;
}
@media (max-width: 338px) {
  .footer .footer-share button {
    margin-right: 0px;
    margin-top: 10px;
  }
}
.footer .footer-share input:focus,
.footer .footer-share button:focus {
  box-shadow: none;
  outline: none;
  border: 1px solid #fff;
}

@media (max-width: 991px) {
  .contact .form {
    position: relative;
    top: 0px;
    left: 0px;
  }
  .footer {
    margin-top: 500px;
  }
}

.footer .footer-social ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.footer .footer-social ul li {
  display: inline-block;
  margin-right: 10px;
}
.footer .copyright {
  background-color: #2a9859;
}
.footer .copyright p {
  color: #fff;
  margin: 0px;
}
