@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Fraunces:opsz,wght,SOFT,WONK@9..144,100..900,100,0..1&display=swap");
body {
  font-family: "DM Sans", sans-serif;
  color: #999999;
  background-color: #000000;
}

header {
  position: fixed;
  z-index: 1040;
  width: 100%;
  left: 0;
  top: 0;
}
header nav {
  background: linear-gradient(rgba(0, 0, 0, 0.63), rgba(0, 0, 0, 0));
  display: flex;
  align-items: center;
  padding: 10px 80px;
  justify-content: space-between;
}
header nav::after, header nav::before {
  content: "";
  position: absolute;
  width: calc(50% - 190px);
  height: 1px;
  left: 80px;
  bottom: 0;
  background-color: #ffffff;
  opacity: 0.5;
  transition: 0.5s opacity ease;
}
header nav::after {
  left: auto;
  right: 80px;
}
header nav .navCollapse {
  position: fixed;
  height: 100%;
  width: 300px;
  z-index: 2;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  background-color: rgba(0, 0, 0, 0.63);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-content: center;
  transition: 0.5s all ease-out;
}
header nav .navCollapse.active {
  transform: translateX(0);
}
header nav .navCollapse .closeBtn {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: transparent;
  right: 10px;
  top: 10px;
  border: 1px solid #8B6D2A;
  transition: 0.3s all ease;
}
header nav .navCollapse .closeBtn span {
  position: absolute;
  width: 50%;
  height: 1px;
  background-color: #8B6D2A;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: 0.3s all ease;
}
header nav .navCollapse .closeBtn span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
header nav .navCollapse .closeBtn:hover {
  background-color: #8B6D2A;
}
header nav .navCollapse .closeBtn:hover span {
  background-color: #ffffff;
  transform: translate(-50%, -50%) rotate(0deg);
}
header nav .navCollapse ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  display: grid;
  gap: 40px;
}
header nav .navCollapse ul a {
  list-style-type: none;
  text-decoration: none;
  font-size: 20px;
  color: #ffffff;
}
header nav .navCollapse ul a:hover {
  color: #D2AC2B;
}
header nav .logo img {
  width: 180px;
  height: auto;
  transform: translateY(10px);
  transition: 0.5s all ease;
}
header nav .navSection {
  flex: 0 0 160px;
  width: 160px;
}
header nav .mailSection {
  text-align: right;
}
header nav .mailSection span {
  display: block;
  font-size: 12px;
  color: #D2AC2B;
}
header nav .mailSection a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}
header nav .navBtn {
  width: 45px;
  padding: 0 10px;
  height: 45px;
  background-color: transparent;
  border: 1px solid #8B6D2A;
  transition: 0.3s all ease;
}
header nav .navBtn span {
  display: block;
  margin: 10px 0;
  width: 100%;
  height: 1px;
  background-color: #D2AC2B;
  transition: 0.3s all ease;
}
header nav .navBtn span:first-child {
  width: 60%;
  margin-left: auto;
}
header nav .navBtn span:last-child {
  width: 60%;
}
header nav .navBtn:hover {
  background-color: #8B6D2A;
}
header nav .navBtn:hover span {
  width: 100%;
  background-color: #ffffff;
}
header nav .navBtn:active {
  background-color: #D2AC2B;
  border-color: #D2AC2B;
}
header::before {
  content: "";
  background-color: #141414;
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  transform: translateY(-100%);
  transition: 0.5s transform ease;
}
header.scrolled::before {
  transform: translateY(0);
}
header.scrolled nav::after, header.scrolled nav::before {
  opacity: 0;
}
header.scrolled nav .logo img {
  width: 100px;
  transform: translateY(0);
}

.preAnim {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1050;
  background-color: rgba(0, 0, 0, 0.8);
  display: grid;
  place-content: center;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
}
.preAnim img {
  max-width: 70vw;
  height: auto;
  width: 500px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.preAnim .prog {
  border: 1px solid;
  border-color: #ffffff #141414 #141414;
  margin: auto;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  position: relative;
  animation: proganim 1s linear infinite;
  position: relative;
  z-index: 2;
}
.preAnim #universe {
  width: 100%;
  height: 100%;
  position: absolute;
  width: 100%;
  height: 100%;
}

@keyframes proganim {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
main #home {
  position: relative;
}
main #home .carousel-item {
  position: relative;
}
main #home .carousel-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0.5;
  -webkit-mask-image: linear-gradient(180deg, #000000 50%, transparent);
          mask-image: linear-gradient(180deg, #000000 50%, transparent);
}
main #home .carousel-item .container {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 120px;
  min-height: 100svh;
  display: grid;
  align-items: center;
  color: #ffffff;
}
main #home .carousel-item .container h1 {
  font-weight: 300;
  font-family: "Fraunces", serif;
  font-variation-settings: "SOFT" 100, "WONK" 0;
  font-size: 86px;
  margin-bottom: 15px;
  position: relative;
}
main #home .carousel-item .container h1::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 2px;
  background-color: #D2AC2B;
  right: calc(100% + 10px);
  top: 52px;
}
main #home .carousel-item .container p {
  margin-bottom: 35px;
}
main #home .carouselDots {
  position: absolute;
  width: 100%;
  top: 108px;
  left: 0;
  z-index: 9;
}
main #home .carouselDots .carousel-indicators {
  position: unset;
  width: auto;
  margin: 0;
  justify-content: flex-start;
  gap: 30px;
  margin-top: 25px;
}
main #home .carouselDots .carousel-indicators [data-bs-target] {
  border: none;
  margin: 0;
  opacity: 1;
  width: 6px;
  height: 6px;
  border: 1px solid #ffffff;
  background-color: transparent;
  border-radius: 5px;
  position: relative;
}
main #home .carouselDots .carousel-indicators [data-bs-target]::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border: 1px solid #D2AC2B;
  left: 50%;
  top: 50%;
  border-radius: 15px;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.3s all ease;
}
main #home .carouselDots .carousel-indicators [data-bs-target].active {
  background-color: #ffffff;
}
main #home .carouselDots .carousel-indicators [data-bs-target].active::before {
  opacity: 1;
}
main #home .contactDetails {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-left: 80px;
  padding-right: 80px;
}
main #home .contactDetails a {
  text-decoration: none;
  color: #ffffff;
}
main #home .contactDetails a:hover i {
  color: #D2AC2B;
}
main #home .mouseAnim {
  width: 32px;
  height: 48px;
  border: 1px solid #8B6D2A;
  border-radius: 16px;
  position: absolute;
  bottom: 28px;
  left: calc(50% - 16px);
  z-index: 0;
}
main #home .mouseAnim::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 17px;
  margin: 8px 14px;
  background-color: #ffffff;
  border-radius: 2px;
  animation: mouseanim 1s ease infinite;
}
main .aboutHighlights {
  row-gap: 40px;
}
main .aboutHighlights .icon {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}
main .aboutHighlights h5 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}
main .aboutHighlights p {
  margin-bottom: 0;
}
main .mainTitle {
  font-weight: 300;
  font-family: "Fraunces", serif;
  font-variation-settings: "SOFT" 100, "WONK" 0;
  position: relative;
  font-size: 64px;
  color: #ffffff;
  margin-bottom: 35px;
  z-index: 1;
}
main .mainTitle .icon {
  width: 100px;
  height: 100px;
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 50px;
  -webkit-mask-image: linear-gradient(180deg, #000000, rgba(0, 0, 0, 0.1));
          mask-image: linear-gradient(180deg, #000000, rgba(0, 0, 0, 0.1));
}
main .mainTitle.center {
  text-align: center;
}
main .mainTitle.center .icon {
  left: 50%;
  transform: translateX(-50%);
}
main .smallTitle {
  font-weight: 300;
  font-family: "Fraunces", serif;
  font-variation-settings: "SOFT" 100, "WONK" 0;
  color: #ffffff;
  font-size: 40px;
  margin-bottom: 25px;
}
main #worldmap .place {
  position: absolute;
  background-color: #000000;
  color: #ffffff;
  font-size: 14px;
  border-radius: 13px;
  padding: 2px 12px;
  opacity: 0;
  transition: 0.3s all ease;
}
main #worldmap .place.in {
  right: 31.73%;
  top: 48%;
  transform: translateX(50%);
}
main #worldmap .place.au {
  right: 16.5%;
  bottom: 16.8%;
  transform: translateX(50%);
}
main #worldmap .place.nz {
  right: 5.6%;
  bottom: 5.7%;
  transform: translateX(50%);
}
main #worldmap .place.ae {
  right: 38.2%;
  top: 51.3%;
  transform: translateX(50%);
}
main #worldmap .place.br {
  left: 33.8%;
  bottom: 25.6%;
  transform: translateX(-50%);
}
main #worldmap .place.gr {
  left: 50%;
  top: 34.5%;
  transform: translateX(-50%);
}
main #worldmap .place.uk {
  left: 45.6%;
  top: 29.1%;
  transform: translateX(-50%);
}
main #worldmap .place.us {
  left: 17.9%;
  top: 38.1%;
  transform: translateX(-50%);
}
main #worldmap .place.sw {
  left: 51.7%;
  top: 22.4%;
  transform: translateX(-50%);
}
main #worldmap .place.jp {
  right: 10.4%;
  top: 43.7%;
  transform: translateX(-50%);
}
main #worldmap .place.pi {
  right: 4.5%;
  bottom: 28.9%;
  transform: translateX(-50%);
}
main #worldmap .container:hover .place {
  opacity: 0.2;
}
main #worldmap .container:hover .place:hover {
  background-color: #8B6D2A;
  color: #ffffff;
  opacity: 1;
}
main .gry-bg {
  background-color: #141414;
}
main .ylo-c {
  color: #D2AC2B;
}
main #why {
  background-color: #141414;
}
main #why #counterSection {
  background: linear-gradient(90deg, transparent calc(33.333% - 1px), #364659 33.333%, transparent 33.333%, transparent calc(66.666% - 1px), #364659 66.666%, transparent 66.666%);
  text-align: center;
}
main #why #counterSection .counter {
  font-weight: 300;
  font-family: "Fraunces", serif;
  font-variation-settings: "SOFT" 100, "WONK" 0;
  font-size: 120px;
  color: #D2AC2B;
}
main #why #counterSection .counter::after {
  content: "+";
  color: #8B6D2A;
  font-size: 60px;
}
main #why #counterSection #happyCustomers::before {
  content: "";
}
main #why #counterSection #happyCustomers::after {
  content: "+";
}
main #why #counterSection .description {
  color: #ffffff;
  font-weight: 700;
  font-size: 24px;
}
main .whyCards {
  counter-set: why;
  margin-top: 55px;
  margin-bottom: 30px;
}
main .whyCards .whyCard {
  counter-increment: why;
  background-color: #000000;
  padding: 30px 20px 20px;
}
main .whyCards .whyCard::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #D2AC2B;
  border-radius: 50%;
  top: -10px;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 15px #141414;
}
main .whyCards .whyCard::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #D2AC2B;
  left: 0;
  top: -11px;
}
main .whyCards .whyCard h4 {
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
}
main .whyCards .whyCard h4::before {
  content: "0" counter(why);
  font-weight: 300;
  font-family: "Fraunces", serif;
  font-variation-settings: "SOFT" 100, "WONK" 0;
  font-size: 48px;
  color: #8B6D2A;
  margin-bottom: 10px;
  display: block;
}
main .whyCards .whyCard p {
  margin-bottom: 0;
}
main .whyCards > div:first-child .whyCard::after {
  width: 50%;
  left: 50%;
}
main .whyCards > div:last-child .whyCard::after {
  width: 50%;
}
main #partner {
  overflow: hidden;
}
main #partner .glide__track {
  overflow: visible;
}
main #partner .glide__track .glide__slides {
  overflow: visible;
}
main #partner .glide__track .glide__slide {
  opacity: 0.3;
  filter: blur(9px);
}
main #partner .glide__track .glide__slide--active,
main #partner .glide__track .glide__slide--active + .glide__slide,
main #partner .glide__track .glide__slide--active + .glide__slide + .glide__slide {
  opacity: 1;
  filter: none;
}
main .title {
  padding-top: 200px;
  padding-bottom: 100px;
  position: relative;
}
main .title 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;
  z-index: 0;
  opacity: 0.3;
  -webkit-mask-image: linear-gradient(180deg, #000000 50%, transparent);
          mask-image: linear-gradient(180deg, #000000 50%, transparent);
}
main .title h1 {
  font-weight: 300;
  font-family: "Fraunces", serif;
  font-variation-settings: "SOFT" 100, "WONK" 0;
  position: relative;
  z-index: 2;
  text-align: center;
  color: #D2AC2B;
  font-size: 90px;
}
main #aboutMission .icon {
  width: 75px;
  height: auto;
  margin-bottom: 10px;
}
main #aboutMission .imagestick img {
  position: sticky;
  top: 25%;
}
main .crd {
  background-color: #141414;
  padding: 50px;
}
main .crd .link i {
  width: 50px;
  height: 50px;
  display: grid;
  margin-bottom: 5px;
  place-content: center;
  background-color: #8B6D2A;
  color: #D2AC2B;
  border-radius: 25px;
}

.imageBacklit {
  border-radius: 20px;
  filter: url(#blur-and-scale);
}

@keyframes mouseanim {
  0% {
    margin-top: 8px;
    height: 0px;
  }
  50% {
    margin-top: 8px;
    height: 20px;
  }
  100% {
    margin-top: 28px;
    height: 0;
  }
}
.link {
  color: #999999;
  text-decoration: none;
  position: relative;
  transition: 0.3s all ease;
}
.link::after {
  content: "";
  position: absolute;
  right: 0;
  left: auto;
  bottom: 0;
  height: 6px;
  z-index: -1;
  width: 0;
  background-color: #8B6D2A;
  transition: 0.3s width ease;
}
.link:hover {
  text-decoration: none;
  color: #ffffff;
}
.link:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}
.link:active {
  transform: scale(0.95);
}

.mainBtn {
  background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%), radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
  display: inline-block;
  color: #ffffff;
  border: none;
  line-height: 1;
  padding: 15px 40px;
  text-decoration: none;
  transition: 0.3s all ease;
  background-size: 200% 100%;
  background-position-x: 0%;
}
.mainBtn:hover {
  background-position: 50%;
  color: #ffffff;
}
.mainBtn:active {
  transform: scale(0.95);
}

.padt {
  padding-top: 130px;
  scroll-margin-top: 90px;
}

.padb {
  padding-bottom: 100px;
}

.serviceCard {
  background-color: #000000;
}
.serviceCard .top {
  margin-bottom: 20px;
  position: relative;
}
.serviceCard .top .imgWrapper {
  position: relative;
  padding-top: 56.25%;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 90px), calc(100% - 45px) calc(100% - 90px), calc(100% - 135px) 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 90px), calc(100% - 45px) calc(100% - 90px), calc(100% - 135px) 100%, 0 100%);
  transition: 0.3s all ease;
}
.serviceCard .top .imgWrapper 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;
}
.serviceCard .top .icon {
  width: 90px;
  height: 90px;
  position: absolute;
  display: grid;
  place-content: center;
  right: 0;
  bottom: 0;
}
.serviceCard .top .icon img {
  width: 38px;
  height: auto;
}
.serviceCard .txt {
  padding: 0 20px 20px;
}
.serviceCard h4 {
  font-weight: 300;
  font-family: "Fraunces", serif;
  font-variation-settings: "SOFT" 100, "WONK" 0;
  font-size: 36px;
  color: #D2AC2B;
  margin-bottom: 10px;
}
.serviceCard p {
  margin-bottom: 0;
}
.serviceCard:hover {
  background-color: #141414;
  filter: url(#blur-and-scale);
}
.serviceCard:hover .top .imgWrapper {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 180px), calc(100% - 90px) calc(100% - 90px), calc(100% - 180px) 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 180px), calc(100% - 90px) calc(100% - 90px), calc(100% - 180px) 100%, 0 100%);
}
.serviceCard.sm h4 {
  font-size: 24px;
}
.serviceCard.sm .top .imgWrapper {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 70px), calc(100% - 35px) calc(100% - 70px), calc(100% - 105px) 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 70px), calc(100% - 35px) calc(100% - 70px), calc(100% - 105px) 100%, 0 100%);
}
.serviceCard.sm .top .icon {
  width: 70px;
  height: 70px;
}
.serviceCard.sm .top .icon img {
  width: 20px;
}
.serviceCard.sm:hover .top .imgWrapper {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 70px), calc(100% - 70px) calc(100% - 70px), calc(100% - 70px) 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 70px), calc(100% - 70px) calc(100% - 70px), calc(100% - 70px) 100%, 0 100%);
}

#blur-and-scale {
  opacity: 0.1;
}

footer {
  padding-top: 60px;
  border-top: 1px solid #333333;
}
footer .footerLogo {
  width: 135px;
  height: auto;
  margin-bottom: 25px;
}
footer .otherSection {
  padding-top: 47px;
}
footer .otherSection h4 {
  font-weight: 300;
  font-family: "Fraunces", serif;
  font-variation-settings: "SOFT" 100, "WONK" 0;
  font-weight: 400;
  font-size: 24px;
  color: #D2AC2B;
  margin-bottom: 16px;
}
footer .copy {
  margin-top: 36px;
}
footer .copy .container {
  border-top: 1px solid #333;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}

.unlist {
  padding-left: 0;
  list-style-type: none;
}
.unlist li:not(:last-child) {
  margin-bottom: 20px;
}

.form-label {
  color: #ffffff;
}

.form-control {
  border-radius: 0;
  background-color: #000000;
  padding: 10px 20px;
  border-color: #333333;
  color: #ffffff;
}
.form-control::-moz-placeholder {
  color: #999999;
}
.form-control::placeholder {
  color: #999999;
}
.form-control:focus {
  background-color: #000000;
  box-shadow: none;
  border-color: #D2AC2B;
  color: #ffffff;
}

.socialList {
  display: flex;
  gap: 15px;
  list-style-type: none;
  padding-left: 0;
}
.socialList li a {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  display: grid;
  place-content: center;
  border: 1px solid #8B6D2A;
  background-color: transparent;
  color: #D2AC2B;
  text-decoration: none;
  transition: 0.3s all ease;
}
.socialList li a:hover {
  background-color: #8B6D2A;
}

@media (max-width: 1199px) {
  main #home .carousel-item .container h1 {
    font-size: 46px;
  }
  main #home .carousel-item .container h1::before {
    top: 27px;
    width: 50px;
  }
  main #about .row.align-items-center {
    row-gap: 40px;
  }
  main .whyCards .whyCard {
    padding: 20px 20px 20px 30px;
    border-bottom: 1px solid #141414;
  }
  main .whyCards .whyCard::before {
    left: 5px;
    top: 50%;
  }
  main .whyCards .whyCard::after {
    top: 0;
    left: 5px;
    width: 1px;
    height: 100%;
    transform: translateX(-50%);
  }
  main .whyCards > div:first-child .whyCard::after {
    left: 5px;
    width: 1px;
    height: 50%;
    top: 50%;
  }
  main .whyCards > div:last-child .whyCard::after {
    left: 5px;
    width: 1px;
    height: 50%;
  }
  main #why #counterSection .counter {
    font-size: 86px;
  }
  main #why #counterSection .description {
    font-size: 20px;
  }
  main .mainTitle {
    font-size: 48px;
  }
  main .smallTitle {
    font-size: 30px;
  }
  main .title h1 {
    font-size: 72px;
  }
  main #why #counterSection {
    background: linear-gradient(180deg, transparent calc(33.333% - 1px), #364659 33.333%, transparent 33.333%, transparent calc(66.666% - 1px), #364659 66.666%, transparent 66.666%);
    text-align: left;
  }
  main #why #counterSection .col-md-4 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  main #worldmap .container .position-relative {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 10px;
  }
  main #worldmap .container .position-relative img {
    flex: 0 0 100%;
    margin-bottom: 10px;
  }
  main #worldmap .container .position-relative .place {
    gap: 10px;
    opacity: 1;
    position: unset;
    transform: none;
    background-color: #141414;
  }
  .serviceCard h4 {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  header nav {
    justify-content: unset;
    gap: 10px;
    padding: 10px 20px;
  }
  header nav::after {
    display: none;
  }
  header nav::before {
    width: calc(100% - 40px);
    left: 20px;
  }
  header nav .logo {
    margin-right: auto;
  }
  header nav .logo img {
    width: 130px;
    transform: none;
  }
  header nav .navSection {
    flex: 0;
  }
  main #home .contactDetails {
    padding-left: 20px;
    padding-right: 20px;
  }
  .padt {
    padding-top: 65px;
    scroll-margin-top: 45px;
  }
}
@media (max-width: 576px) {
  header nav .navSection:last-child {
    display: none;
  }
  header nav .logo {
    margin-right: 0;
    margin-left: auto;
  }
  main #home .carouselDots .carousel-indicators {
    justify-content: center;
  }
  main #home .carousel-item .container h1 {
    font-size: 36px;
    padding-top: 20px;
  }
  main #home .carousel-item .container h1::before {
    right: auto;
    left: 0;
    top: 0;
  }
  main #home .contactDetails {
    margin-bottom: 20px;
  }
  main #home .contactDetails a {
    font-size: 14px;
  }
  main #home .contactDetails a i {
    display: block;
    font-size: 20px;
  }
  main #home .contactDetails a:last-child {
    text-align: right;
  }
  main #home .mouseAnim {
    bottom: 40px;
  }
  main .mainTitle {
    font-size: 36px;
  }
  main .mainTitle .icon {
    bottom: 22px;
    width: 75px;
    height: 75px;
  }
  main .smallTitle {
    font-size: 22.5px;
  }
  main .title h1 {
    font-size: 56px;
  }
  main .crd {
    padding: 25px;
  }
  .serviceCard h4 {
    font-size: 24px;
  }
}/*# sourceMappingURL=main.css.map */