@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  /* font-family: "Nunito", sans-serif; */
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

.container {
  margin: 0 150px;
}

.active-link {
  color: #fcb80b;
}

/*! slogan start */
.slogan {
  background-color: #fcb80b;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
}

.slogan .container {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

/*! quik offer start */
.quik-offer {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 13px;
  color: #fff;
  border: 2px solid #fff;
  background: transparent;
  padding: 6px 15px;
  position: relative;
  overflow: hidden;
  margin-bottom: 1px;
  z-index: 1;
}

.quik-offer span {
  background: #ff7900;
  height: 100%;
  width: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  transition: 0.3s;
}

.quik-offer:hover > span {
  width: 100%;
}
/*! quik offer end */

.slogan .contact-info li i,
.slogan .contact-info li a {
  color: aliceblue;
  font-size: 13px;
  display: flex;
  align-items: center;
}

.slogan .contact-info li:hover i,
.slogan .contact-info li:hover a {
  color: black;
}

.slogan .contact-info ul {
  display: flex;
  align-items: center;
}

.slogan .contact-info ul li {
  display: flex;
  align-items: center;
  padding: 0 10px;
}

.slogan .contact-info ul li:not(:last-child) {
  border-right: 1px solid aliceblue;
}

.slogan .contact-info .contact-info-mobile {
  display: none;
}

/*! slogan end */

/*! navbar start */
header {
  display: flex;
  position: relative;
  height: 100px;
  justify-content: space-between;
  align-items: center;
}

header .toggle-menu {
  font-size: 27px;
  display: none;
}

header h1 {
  color: #333333;
}

header nav ul {
  display: flex;
}

header nav ul li a {
  color: #777;
  font-size: 15px;
  font-weight: 500;
  padding: 0 10px;
}

header nav .nav-item:hover {
  color: #fcb80b;
}
/*! navbar end */

/*! dropdown start */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content-wrapper {
  display: none;
  position: absolute;
  width: 190px;
  z-index: 10;
}

.dropdown-content {
  margin-top: 30px;
  border: 1px solid grey;
  border-radius: 10px;
  background-color: #fff;
}

.dropdown-content-wrapper a {
  color: black;
  padding: 12px 16px;
  display: block;
}

.dropdown-content-wrapper a:first-child {
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.dropdown-content-wrapper a:last-child {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.dropdown-content-wrapper a:not(:last-child) {
  border-bottom: 1px solid grey;
}

.dropdown-content-wrapper a:hover {
  background-color: #fcb80b;
  color: aliceblue;
}

.dropdown:hover .dropdown-content-wrapper {
  display: block;
}
/*! dropdown end */

/*! contact start */
.contact {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  height: auto;
  width: 100%;
}

.contact .contact-left {
  padding: 15px;
  display: flex;
  align-items: start;
  flex-direction: column;
}

.contact .contact-left div {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.contact .contact-left div label {
  font-size: 14px;
  margin-bottom: 4px;
  font-weight: 600;
  color: #343a40;
}

.contact .contact-left div input {
  outline: none;
  color: grey;
  font-size: 15px;
  height: 55px;
  padding: 0 13px;
  border: 1px solid #dfdfdf;
}

.contact .contact-left div textarea {
  resize: none;
  outline: none;
  color: grey;
  font-size: 15px;
  height: 200px;
  padding: 13px;
  border: 1px solid #dfdfdf;
}

.contact .contact-left button {
  border: none;
  font-size: 15px;
  color: #fff;
  background-color: #fcb80b;
  padding: 18px 22px;
  width: 200px;
  cursor: pointer;
}

.contact .contact-right {
  padding: 40px 30px;
  display: flex;
  gap: 20px;
  flex-direction: column;
  align-items: start;
}

.contact-right .row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.contact-right h3 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 20px;
  color: #343a40;
}

.contact-right .row .left {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: #fcb80b;
}

.contact-right .row .left i {
  font-size: 20px;
  color: #fff;
}

.contact-right .row .right {
  display: flex;
  width: 250px;
  justify-content: center;
  flex-direction: column;
}

.contact-right .row .right span:first-child {
  color: #343a40;
}

.contact-right .row .right span:last-child {
  color: #007bff;
}

.contact-right .row .right span:last-child a {
  color: #007bff;
}
/*! contact end */

/*! footer start */
footer {
  margin-top: 60px;
  background-color: #222529;
}

footer .footer-wrapper {
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

footer .address-header {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

footer .left,
footer .center,
footer .right {
  height: 365px;
}

footer .left {
  display: flex;
}

footer .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
  padding: 0 60px;
}

footer .address-wrapper,
footer .phone-wrapper,
footer .email-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

footer .address-wrapper span,
footer .phone-wrapper span,
footer .email-wrapper span {
  font-weight: 600;
  color: #fff;
}

footer .address-wrapper address,
footer .phone-wrapper a,
footer .email-wrapper a {
  color: #777;
  width: fit-content;
}

footer .center .footer-social-media {
  display: flex;
  gap: 8px;
  font-size: 28px;
}

footer .center .footer-social-media i {
  display: flex;
}

footer .center .footer-social-media .fa-instagram {
  color: rgb(255, 0, 72);
}

footer .center .footer-social-media .fa-facebook {
  color: #316ff6;
}

footer .right {
  display: flex;
  gap: 20px;
  flex-direction: column;
  justify-content: center;
  padding: 0 90px;
}

footer .right .e-newsletter-header {
  color: #fff;
  font-weight: 600;
}

footer .right .e-newsletter-content {
  display: flex;
  gap: 15px;
  flex-direction: column;
}

footer .right .e-newsletter-content span {
  color: #777;
}

footer .right input {
  padding: 15px 25px;
  border-radius: 30px;
  max-width: 250px;
  border: none;
  font-size: 14px;
  background-color: #292c30;
  color: #e7e7e7;
}

footer .right button {
  width: fit-content;
  border: none;
  font-weight: 700;
  border-radius: 25px;
  padding: 15px 28px;
  color: #fff;
  background-color: #fcb80b;
}

footer .footer-bottom {
  border-top: 1px solid #fcb80b;
  display: flex;
  gap: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
  text-align: center;
}

footer .footer-bottom span {
  font-size: 14px;
  color: #fff;
}

footer .footer-bottom img {
  width: 85px;
  padding: 15px;
  border-radius: 20px;
  background-color: #e7e7e7;
}
/*! footer end */

/*! UP WRAPPER  */
.up-wrapper {
  position: fixed;
  color: #eadede;
  right: 18px;
  bottom: 80px;
  z-index: 99;
  font-size: 20px;
  background-color: #fcb80b;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}

/*! WHATSSAPP START  */
.whatsapp-wrapper {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 99;
  font-size: 24px;
  background-color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.5s ease;
}

.whatsapp-wrapper a i {
  color: #eadede;
}

/*! RESPONSIVE NABAR START */
header .mobile-navbar {
  display: none;
}

/*********** 1200 ***********/
@media (max-width: 1200px) {
}

/*********** 1080 ***********/
@media (max-width: 1080px) {
  .container {
    margin: 0 90px;
  }
  /* header nav{
    display: none;
  } */
}

/*********** 992 ***********/
@media (max-width: 992px) {
  .container {
    margin: 0 50px;
  }

  header .desktop-navbar {
    display: none;
  }

  header .mobile-navbar {
    display: block;
  }

  header .toggle-menu {
    display: inline-block;
  }

  /* footer */
  footer .footer-wrapper {
    padding: 50px;
    grid-template-columns: 1fr 1fr;
  }

  /* contact */
  .contact {
    grid-template-columns: 1fr;
  }

  .contact .contact-right {
    padding: 40px 0;
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: start;
  }

  .contact-right .row .right {
    width: 200px;
  }
}

/*********** 768 ***********/
@media (max-width: 768px) {
  .container {
    margin: 0 20px;
  }
  .slogan .contact-info .contact-info-mobile {
    display: flex;
  }

  .slogan .contact-info .contact-info-desktop {
    display: none;
  }

  /* footer */
  footer .footer-wrapper {
    padding: 20px;
    gap: 50px;
    grid-template-columns: 1fr;
  }

  footer .center {
    margin-top: 0px;
    gap: 20px;
    padding: 0 10px;
  }

  footer .right {
    margin-top: 0px;
    padding: 0 10px;
  }
}

/*********** 576 ***********/
@media (max-width: 576px) {
  .container {
    margin: 0 16px;
  }

  /* footer */
  footer .footer-wrapper {
    padding: 15px;
    display: grid;
    gap: 50px;
  }

  footer .center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 0 10px;
  }

  footer .right {
    padding: 0 10px;
  }

  /* contact */
  .contact .contact-left {
    width: 100%;
    align-items: center;
  }

  .contact .contact-right {
    align-items: center;
  }

  .contact .contact-left div input {
    width: 280px;
  }

  .contact .contact-left div textarea {
    width: 280px;
  }
  .contact .contact-left div {
    align-items: center;
  }
}
