@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
:root {
  font-size: 16px;
  --yellow: #FDB745;
  --hcolor: #16171C;
  --tcolor: #363A45;
}

body {
  font-family: "Outfit", sans-serif;
  background-color: #F7F5F0;
  color: var(--tcolor);
}

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1040;
}
header #mainNav {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: transparent;
  height: 100px;
}
header #mainNav::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #E8F0DF;
  left: 0;
  top: 0;
  z-index: -1;
  transform: translateY(-100%);
  transition: 0.5s transform ease;
  box-shadow: 0 0 20px rgba(22, 23, 28, 0.1);
}
header #mainNav .container {
  display: flex;
  align-items: center;
}
header #mainNav .container a.navLink img {
  width: 250px;
  height: auto;
  transition: 0.5s all ease;
}
header #mainNav .container #navBtn {
  display: none;
}
header #mainNav .container .collapseNav {
  margin-left: auto;
}
header #mainNav .container .collapseNav ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  display: flex;
  gap: 40px;
}
header #mainNav .container .collapseNav ul li a {
  color: var(--hcolor);
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 20px;
  transition: 0.3s all ease;
  -webkit-text-stroke: 5px #e8f0df;
  paint-order: stroke fill;
}
header #mainNav .container .collapseNav ul li a:hover {
  color: var(--yellow);
}
header #mainNav.scrolled::before {
  transform: translateY(0);
}
header #mainNav.scrolled .container a.navLink img {
  width: 195px;
}

.mainBtn {
  padding: 25px 50px;
  background-color: var(--yellow);
  color: var(--hcolor);
  text-decoration: none;
  border: none;
  border-radius: 45px;
  display: inline-block;
  font-weight: 600;
  transition: 0.3s all ease;
}
.mainBtn:hover {
  text-decoration: none;
  color: #fff;
  background-color: var(--hcolor);
}

.floatingBtn {
  display: grid;
  width: 70px;
  height: 70px;
  position: fixed;
  place-content: center;
  border-radius: 35px;
  text-decoration: none;
  color: #fff;
  background-color: #16171C;
  bottom: 20px;
  font-size: 20px;
  z-index: 1040;
  transition: 0.3s all ease;
}
.floatingBtn.up {
  bottom: 61px;
}
.floatingBtn.left {
  left: 20px;
}
.floatingBtn.right {
  right: 20px;
}
.floatingBtn.whatsapp {
  background-color: #25D366;
  font-size: 24px;
}
.floatingBtn.whatsapp:hover {
  background-color: var(--yellow);
  color: var(--hcolor);
}
.floatingBtn.phone {
  background-color: #1d77f3;
}
.floatingBtn.phone:hover {
  background-color: var(--yellow);
  color: var(--hcolor);
}

.sectionTitle {
  margin-bottom: 20px;
}
.sectionTitle h3 {
  font-size: 3rem;
  color: var(--hcolor);
  margin-bottom: 0;
  font-weight: 700;
}

.smallTitle {
  margin-bottom: 20px;
}
.smallTitle h5 {
  font-size: 1.75rem;
  margin-bottom: 0;
  font-weight: 500;
  color: var(--hcolor);
}

.sectionPad {
  padding-top: 100px;
  padding-bottom: 100px;
}

.para {
  line-height: 2;
}

.scrolltop {
  scroll-margin-top: 100px;
}

#home {
  padding-top: 100px;
  background-color: #E8F0DF;
}
#home .row {
  align-content: center;
  align-items: center;
}
#home h1 {
  font-size: 3.25rem;
  font-weight: 700;
  color: var(--hcolor);
  margin-bottom: 30px;
}
#home p {
  font-size: 1.25rem;
  color: var(--tcolor);
  margin-bottom: 30px;
}
#home .blobImg {
  width: calc(100% - 60px);
  min-height: calc(100vh - 100px);
  margin-left: 60px;
  position: relative;
}
#home .blobImg img {
  position: absolute;
  width: 100%;
  height: calc(100% + 100px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
  left: 0;
  bottom: 0;
  mix-blend-mode: multiply;
}
#home .logoCard {
  position: absolute;
  background-color: #fff;
  left: 0;
  bottom: 60px;
  padding: 10px;
  border-radius: 150px;
  z-index: 2;
  animation-name: float;
  animation-duration: 2s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-timing-function: ease-out;
}
#home .logoCard img {
  width: 220px;
  height: auto;
}

@keyframes float {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-30px);
  }
}
#about .col-lg-6 {
  display: grid;
}
#about .col-lg-6 .aboutImgWrapper {
  padding: 50px;
  position: relative;
  display: grid;
}
#about .col-lg-6 .aboutImgWrapper .imgMain {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 30px;
  z-index: 2;
}
#about .col-lg-6 .aboutImgWrapper .imgSmall {
  width: 50%;
  height: auto;
  position: absolute;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
  z-index: 3;
}
#about .col-lg-6 .aboutImgWrapper .blobImage {
  position: absolute;
  width: 70%;
  height: auto;
  left: -60px;
  top: -60px;
  z-index: 1;
  animation-name: rotate;
  animation-duration: 200s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
#about .mv {
  margin-top: 50px;
}
#about .aboutCard {
  padding: 50px;
  border-radius: 40px;
  background-color: #EFEEE8;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
#about .aboutCard h5 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--hcolor);
  margin-bottom: 10px;
}
#about .aboutCard p {
  margin-bottom: 0;
  color: var(--tcolor);
}
#about .aboutCard i {
  font-size: 8.75rem;
  color: #F7F5F0;
  right: -20px;
  top: -20px;
  position: absolute;
  z-index: -1;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(270deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#sisterConcern {
  background-color: var(--hcolor);
}
#sisterConcern .sectionTitle h3 {
  color: #fff;
}
#sisterConcern .imgSq {
  width: 100%;
  padding-top: 100%;
  position: relative;
  background-color: #fff;
  border-radius: 50px;
}
#sisterConcern .imgSq img {
  position: absolute;
  width: calc(100% - 50px);
  height: calc(100% - 50px);
  left: 25px;
  top: 25px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

#distribution .distributionCard {
  border-radius: 50px;
  padding: 50px;
  text-align: center;
  background-color: #fff;
}
#distribution .distributionCard .map {
  width: 66%;
  height: auto;
}
#distribution .distributionCard .carousel-item {
  background-color: #fff;
}

#services {
  overflow: hidden;
  padding-bottom: 60px;
}
#services .serviceCards .row {
  position: relative;
}
#services .serviceCards .row:nth-child(even) {
  flex-direction: row-reverse;
}
#services .serviceCards .row:nth-child(even) img {
  left: auto;
  right: 50%;
  border-radius: 0 500px 500px 0;
}
#services .serviceCards .row:nth-child(even) .textSection {
  padding-right: 0;
  padding-left: 60px;
}
#services .serviceCards .row img {
  position: absolute;
  width: 50vw;
  height: 100%;
  left: 50%;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 500px 0 0 500px;
}
#services .serviceCards .row .textSection {
  padding-top: 100px;
  padding-bottom: 100px;
  padding-right: 60px;
}
#services .serviceCards .row .textSection h5 {
  font-weight: 700;
}

.serviceCard {
  padding: 48px 32px 0;
  background-color: #EFEEE8;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.serviceCard h5 {
  text-align: center;
  margin-bottom: 15px;
  font-weight: 500;
  color: var(--hcolor);
}
.serviceCard p {
  margin-bottom: 20px;
  font-size: 0.875rem;
}
.serviceCard .img4-3 {
  position: relative;
  padding-top: 75%;
  width: 100%;
  height: 0;
}
.serviceCard .img4-3 img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 30px 30px 0 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: 0.3s transform ease;
}
.serviceCard:hover .img4-3 img {
  transform: translateY(10px);
}

.link {
  text-decoration: none;
  position: relative;
  color: var(--tcolor);
}
.link::before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background-color: var(--tcolor);
  bottom: 0;
  right: 0;
  left: auto;
  transition: 0.3s all ease;
}
.link:hover {
  text-decoration: none;
  color: var(--tcolor);
}
.link:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}
.link.white {
  color: #fff;
}
.link.white::before {
  background-color: #fff;
}
.link.white:hover {
  color: #fff;
}

#expertise {
  padding-bottom: 100px;
}
#expertise .expertCard {
  padding: 20px 20px 10px;
  border-radius: 30px;
  background-color: #EFEEE8;
}
#expertise .expertCard .imgSq {
  position: relative;
  padding-top: 100%;
  margin-bottom: 10px;
}
#expertise .expertCard .imgSq img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 10px;
}
#expertise .expertCard h6 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0;
  text-align: center;
}

.iconCard {
  margin-bottom: 40px;
}
.iconCard i {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--yellow);
}
.iconCard p {
  margin-bottom: 0;
}
.iconCard a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}

.socialList {
  display: flex;
  gap: 15px;
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
.socialList li a {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background-color: var(--hcolor);
  color: #fff;
  display: grid;
  place-content: center;
  transition: 0.3s all ease;
  text-decoration: none;
}
.socialList li a:hover {
  background-color: var(--yellow);
  color: var(--hcolor);
}

#contact iframe {
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

#reachUs .reachCard {
  background-color: #CDE4E4;
  padding: 60px;
  border-radius: 50px;
}
#reachUs .reachCard .zForm textarea,
#reachUs .reachCard .zForm input {
  width: 100%;
  padding: 20px 30px;
  border: none;
  border-radius: 10px;
  background-color: #fff;
}

footer .logo {
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
}
footer .socialList li a {
  background-color: #ECEAE6;
  color: var(--hcolor);
}
footer .footerList {
  margin-top: 169px;
}
footer .footerList h5 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--hcolor);
}
footer .footerList ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
footer .footerList ul li:not(:last-child) {
  margin-bottom: 20px;
}
footer .footerList ul .iconCard {
  display: flex;
  gap: 10px;
  margin-bottom: 0;
}
footer .footerList ul .iconCard i {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  display: grid;
  place-content: center;
  font-size: 1rem;
  color: var(--hcolor);
  margin-bottom: 0;
  margin-top: 4px;
}
footer .copy {
  background-color: var(--hcolor);
  color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 100px;
}
footer .copy .container {
  display: flex;
}
footer .copy .container ul {
  margin-left: auto;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  gap: 20px;
  list-style-type: none;
}

@media (max-width: 991px) {
  :root {
    font-size: 14px;
  }
  header #mainNav .container #navBtn {
    display: block;
    width: 50px;
    height: 50px;
    margin-left: auto;
    background-color: #d6e1ca;
    border-radius: 15px;
    border: none;
    transition: 0.3s all ease;
  }
  header #mainNav .container #navBtn span {
    display: block;
    width: 50%;
    height: 5px;
    border-radius: 3px;
    background-color: var(--hcolor);
    margin: 5px 0;
    transition: 0.3s all ease;
  }
  header #mainNav .container #navBtn span:nth-child(2) {
    width: 100%;
  }
  header #mainNav .container #navBtn span:nth-child(3) {
    margin-left: auto;
  }
  header #mainNav .container #navBtn:hover {
    background-color: #e8f0df;
  }
  header #mainNav .container #navBtn:hover span {
    width: 100%;
  }
  header #mainNav .container #navBtn.active span {
    margin: 0 auto;
    width: 60%;
  }
  header #mainNav .container #navBtn.active span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }
  header #mainNav .container #navBtn.active span:nth-child(2) {
    opacity: 0;
  }
  header #mainNav .container #navBtn.active span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }
  header #mainNav .container .collapseNav {
    position: fixed;
    height: 100%;
    background-color: #e8f0df;
    top: 100px;
    right: 0;
    width: 300px;
    padding: 40px;
    transform: translateX(calc(100% + 50px));
    transition: 0.5s transform ease;
  }
  header #mainNav .container .collapseNav::before {
    content: "";
    position: absolute;
    right: 100%;
    top: 0;
    width: 50px;
    height: 50px;
    background-image: url(../img/corner-round.svg);
    background-size: contain;
    background-position: right top;
    background-repeat: no-repeat;
  }
  header #mainNav .container .collapseNav ul {
    flex-direction: column;
    gap: 40px;
  }
  header #mainNav .container .collapseNav.active {
    transform: translateX(0);
  }
  #home .logoCard {
    padding: 10px;
    border-radius: 130px;
    bottom: 30px;
  }
  #home .logoCard img {
    width: 150px;
    height: auto;
  }
  #home .blobImg {
    width: 100%;
    margin-left: 0;
  }
  #about .mv {
    margin-top: 10px;
  }
  #about .col-lg-6 .aboutImgWrapper {
    padding-left: 0;
  }
  #about .col-lg-6 .aboutImgWrapper .blobImage {
    top: 0;
    left: -35%;
  }
  #services .col-lg-4:last-child .serviceCard .img4-3 {
    padding-top: 37.5%;
  }
  #reachUs {
    padding-top: 0;
  }
  #distribution .distributionCard .map {
    width: 100%;
  }
  #contact iframe {
    height: 50vw;
    margin-bottom: 20px;
  }
  footer .footerList {
    margin-top: 50px;
  }
  .floatingBtn.up {
    bottom: 82px;
  }
}
@media (max-width: 767px) {
  .mainBtn {
    padding: 15px 30px;
  }
  #home {
    padding-bottom: 50px;
  }
  #home .row {
    flex-direction: column-reverse;
    row-gap: 24px;
  }
  #home .row .blobImg {
    height: 0;
    min-height: auto;
    padding-top: 80%;
  }
  #home .row .blobImg::before {
    content: "";
    position: absolute;
    height: 50%;
    width: 100%;
    background: linear-gradient(to top, #e8f0df, transparent);
    bottom: 0;
    left: 0;
    z-index: 1;
  }
  #home .row .blobImg img {
    -o-object-fit: contain;
       object-fit: contain;
  }
  #home .row .logoCard {
    bottom: 0;
  }
  #about .aboutCard {
    padding: 30px;
    border-radius: 30px;
  }
  #sisterConcern .imgSq {
    border-radius: 30px;
  }
  #distribution .distributionCard {
    padding: 30px;
    border-radius: 30px;
  }
  .sectionTitle h3 {
    font-size: 2.5rem;
  }
  #services .serviceCards .row img {
    position: unset;
    width: 100%;
    height: 50vw;
    border-radius: 10px;
  }
  #services .serviceCards .row .textSection {
    padding-right: 0;
    padding-top: 20px;
  }
  #services .serviceCards:nth-child(even) .row {
    flex-direction: column-reverse;
  }
  #services .serviceCards:nth-child(even) .row img {
    border-radius: 10px;
  }
  #services .serviceCards:nth-child(even) .row .textSection {
    padding-left: 0;
  }
  #services .col-lg-4:last-child .serviceCard .img4-3 {
    padding-top: 75%;
  }
  #expertise {
    padding-bottom: 50px;
  }
  .sectionPad {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 576px) {
  .scrolltop {
    scroll-margin-top: 70px;
  }
  header #mainNav {
    padding-top: 10px;
    padding-bottom: 10px;
    height: 70px;
  }
  header #mainNav .container a.navLink img {
    width: 130px !important;
  }
  header #mainNav .container .collapseNav {
    top: 70px;
  }
  #home {
    padding-top: 0;
  }
  #home .row .blobImg {
    padding-top: 140%;
  }
  #home .logoCard img {
    width: 100px;
  }
  #home h1 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  #home p {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  .sectionTitle h3 {
    font-size: 1.8rem;
  }
  .smallTitle h5 {
    font-size: 1.3rem;
  }
  #reachUs .reachCard {
    padding: 30px;
    border-radius: 30px;
  }
  #reachUs .reachCard .sectionTitle {
    margin-bottom: 0;
  }
  footer .copy {
    margin-top: 50px;
    padding-bottom: 86px;
  }
  footer .copy .container {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  footer .copy .container > span {
    text-align: center;
  }
  footer .copy .container ul {
    margin-right: auto;
    margin-bottom: 20px;
  }
  .floatingBtn {
    width: 50%;
    bottom: 0;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    height: 60px;
  }
  .floatingBtn.up {
    bottom: 0;
  }
  .floatingBtn.left {
    left: 0;
  }
  .floatingBtn.right {
    right: 0;
  }
  .floatingBtn::after {
    content: attr(title);
    font-size: 16px;
  }
}/*# sourceMappingURL=main.css.map */