/* Importing Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 17px;
  color: #555;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none !important;
  color: #555 !important;
}

ul {
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}

.section {
  margin-top: 40px;
}

/* Buttons  */
.btn-1,
.btn-2,
.btn--dark,
.btn--light {
  background: rgb(255, 153, 0);
  border: 1px solid rgb(255, 153, 0);
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 1px 2px 4px;
  box-sizing: border-box;
  color: #ffffff !important;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: 800;
  padding: 8px 12px;
  text-align: center;
}

.btn-2 {
  background-color: initial;
  border: 1px solid rgb(255, 153, 0);
  color: rgb(255, 153, 0) !important;
}

.btn-1:hover,
.btn-1:active {
  background-color: initial;
  color: rgb(255, 153, 0);
}

.btn-1:active {
  opacity: 0.5;
}

.btn-2:hover,
.btn-2:active {
  background-color: rgb(255, 153, 0);
  color: #fff !important;
}

.btn--dark {
  background: #000;
  border: 1px solid #000;
}

.btn--light {
  background: #fff;
  color: #000 !important;
  border: 1px solid #000;
}

.btn--dark:hover {
  background: initial;
  border: 2px solid #000;
  color: #000 !important;
}

.btn--light:hover {
  background: initial;
  border: 2px solid #fff;
  color: #fff !important;
}

.menu-icon,
.cross-icon {
  display: none;
}

.head {
  background-color: #39da04;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.head .detail {
  display: flex;
  align-items: center;
}

.head .detail a i {
  color: #fff;
}

.head .detail a span {
  color: #fff;
  margin-left: 8px;
}

.head .social i {
  margin-right: 10px;
  font-size: 20px;
  color: #fff;
}

.navbar {
  position: sticky;
  background-color: #fff;
  top: 0;
  z-index: 5;
  width: 100%;
  display: flex;
  align-items: center;
  box-shadow: 0 0 2.5em rgba(0, 0, 0, 0.15);
  justify-content: space-between;
  padding: 10px 20px;
}

.navbar .logo {
  color: rgb(255, 153, 0) !important;
  font-weight: bold;
  font-size: 25px;
}

.navbar ul {
  display: flex;
  align-items: center;
}

.navbar ul li {
  margin-left: 15px;
}

.navbar ul li a:hover {
  color: rgb(255, 153, 0) !important;
}

.banner {
  position: relative;
  z-index: 1;
}

.banner-img {
  width: 100%;
  height: 70vh;
}

.banner .intro {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 40%;
  background-color: rgb(255, 153, 0);
  opacity: 0.6;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff !important;
}

.banner .intro-detail {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 40%;
  padding: 50px 50px;
  height: 100%;
  color: #fff !important;
}

.banner .intro-detail h2 {
  font-size: 35px;
}

.banner .intro-detail h2 strong {
  font-size: 35px;
  color: #fff;
}

.features {
  width: 100%;
  background-color: #ffb795;
  padding: 20px 20px;
}

.feature {
  padding: 20px 20px;
  box-shadow: 0 0 2.5em rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  background-color: #e03c26;
  border-radius: 12px;
}

.feature:nth-child(2) {
  background-color: #fa9a1b;
}

.feature:nth-child(3) {
  background-color: #2daffa;
}

.feature:nth-child(4) {
  background-color: #26e02f;
}

.feature h3 {
  font-size: 23px;
}

.feature h3,
.feature p {
  color: #fff;
}

.points li {
  display: flex;
  align-items: center;
}

.points li i {
  margin-right: 10px;
  color: #3442ff;
}

.points li i,
.points li span {
  font-size: 18px;
}

@media screen and (max-width: 619px) {
  .head {
    display: none;
  }

  .menu-icon {
    display: block;
  }

  .navbar ul {
    position: fixed;
    z-index: 4;
    top: -100%;
    left: 0;
    height: 100%;
    width: 100%;
    margin: 0;
    flex-direction: column;
    background-color: #fff;
    transition: 0.5s ease-in-out;
  }

  .navbar ul.open {
    top: 59px;
  }

  .banner-img {
    height: 80vh;
  }

  .navbar ul li {
    margin-top: 30px;
  }
}

@media screen and (max-width: 730px) {
  .features {
    display: block;
  }

  .feature {
    margin: 0;
    margin-top: 10px;
  }
}

@media screen and (max-width: 826px) {
  .banner-img {
    height: 70vh;
  }
  .banner .intro,
  .banner .intro-detail {
    width: 100%;
    padding: 50px;
  }
}

@media screen and (max-width: 619px) {
  .banner-img {
    height: 70vh;
    object-fit: cover;
  }


  .banner .intro,
  .banner .intro-detail {
    width: 100%;
    padding: 40px 20px;
  }
}

@media screen and (min-width: 827px) {
  .banner-img {
    height: 80vh;
  }
  .banner .intro,
  .banner .intro-detail {
    width: 55%;
    padding: 40px;
  }
}

@media screen and (min-width: 995px) {
  .banner-img {
    height: 80vh;
  }
  .banner .intro,
  .banner .intro-detail {
    width: 50%;
    padding: 50px;
  }
}

@media screen and (min-width: 1400px) {
  .banner-img {
    height: 70vh;
  }

  .banner .intro,
  .banner .intro-detail {
    width: 50%;
    padding: 70px;
  }
}


/* Footer  */
.footer {
  position: relative;
  background-color: rgb(255, 172, 47) !important;
  padding: 50px 0;
}

.footer .logo h2 {
  color: #fff;
}

footer .logo img {
  width: 150px;
  margin-top: -35px;
  margin-bottom: 10px;
}

.footer-container {
  max-width: 1170px;
  margin: auto;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
}

.footer-col {
  width: 25%;
  padding: 0 15px;
}

.footer-col p {
  color: #000;
  text-align: start;
}

.footer-col h4 {
  font-size: 18px;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}

.footer-col h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #000;
  height: 3px;
  width: 70px;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: start;
}

.footer-col ul li a i,
.footer-col ul li a span {
  color: #000;
}

.footer-col ul li a:hover {
  padding-left: 4px;
}

.footer-col ul li a:hover i,
.footer-col ul li a:hover span {
  color: #fff;
}

.footer-col .social-links a {
  height: 40px;
  width: 40px;
  background-color: #fff;
  margin: 0 10px 10px 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.5s ease;
  text-decoration: none;
}
.footer-col .social-links a i {
  color: #000;
}

.footer-col .social-links a:hover {
  color: #fff;
  border: 1px solid #fff;
  background-color: rgb(255, 153, 0);
}

.footer-col .social-links a:hover i {
  color: #fff;
}

/*responsive*/
@media (max-width: 1009px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
}

@media (max-width: 574px) {
  .footer-col {
    width: 100%;
  }
}

.contact-us {
  background: #fff;
  border-radius: 6px;
  padding: 20px 60px 30px 40px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.contact-us .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-us .content .left-side {
  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  position: relative;
}

.content .left-side::before {
  content: "";
  position: absolute;
  height: 70%;
  width: 2px;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  background: #afafb6;
}

.content .left-side .address-details {
  margin: 14px;
  text-align: center;
}

.content .left-side .address-details i {
  font-size: 30px;
  color: rgb(255, 172, 47);
  margin-bottom: 10px;
}

.content .left-side .address-details .topic {
  font-size: 18px;
  font-weight: 500;
}

.content .left-side .address-details .text-one,
.content .left-side .address-details .text-two {
  font-size: 14px;
  color: #afafb6;
}

.contact-us .content .right-side {
  width: 75%;
  margin-left: 75px;
}

.content .right-side .topic-text {
  font-size: 23px;
  font-weight: 600;
  color: rgb(255, 172, 47);
}

.right-side .input-box {
  height: 50px;
  width: 100%;
  margin: 12px 0;
}

.right-side .input-box input,
.right-side .input-box textarea {
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  background: #f0f1f8;
  border-radius: 6px;
  padding: 0 15px;
  resize: none;
}

.right-side .input-box input:focus,
.right-side .input-box textarea:focus {
  border: 2px solid #373864;
}

.right-side .message-box {
  min-height: 110px;
}

.right-side .input-box textarea {
  padding-top: 6px;
}

.right-side .button {
  display: inline-block;
  margin-top: 12px;
}

.right-side .button input[type="button"] {
  color: #fff;
  font-size: 18px;
  outline: none;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  background: rgb(255, 172, 47);
  cursor: pointer;
  transition: all 0.3s ease;
}

.button input[type="button"]:hover {
  background: #5029bc;
}

@media (max-width: 950px) {
  .contact-us {
    width: 90%;
    padding: 30px 40px 40px 35px;
  }

  .contact-us .content .right-side {
    width: 75%;
    margin-left: 55px;
  }
}

@media (max-width: 820px) {
  .contact-us .content {
    flex-direction: column-reverse;
  }

  .contact-us .content .left-side {
    width: 100%;
    flex-direction: row;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .contact-us .content .left-side::before {
    display: none;
  }

  .contact-us .content .right-side {
    width: 100%;
    margin-left: 0;
  }
}
