@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --white: #ffffff;
  --black: #000000;
  --primaryClr: #6b7280;
  --skyBlue: #30a4dc;
  --darkBlue: #1d3463;
  --primaryGradient: linear-gradient(135deg, #0066cc 0%, #00a8e8 100%);
  --fontPlayfair: "Playfair Display", serif;
  --fontPoppins: "Poppins", sans-serif;
}

body {
  font-family: var(--fontPoppins);
  color: var(--primaryClr);
  font-size: 14px;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
  padding: 0;
}

section {
  margin-bottom: 50px;
}

.title {
  font-family: var(--fontPlayfair);
  font-size: 25px;
  color: var(--black);
  position: relative;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: capitalize;
}
.title span {
  display: block;
  font-family: var(--fontPoppins);
  font-weight: normal;
  font-size: 16px;
}
.cta {
  background: var(--primaryGradient);
  display: table;
  color: var(--white);
  transition: all 0.3s ease-in-out;
}
.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}
/* Header */
header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: var(--white);
}

header.headFixed {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.logo {
  display: block;
  width: 150px;
  transition: all 0.3s ease-in-out;
}

.menuWrp ul li {
  color: #6b7280;
  font-weight: 700;
  cursor: pointer;
  position: relative;
}

.menuWrp ul li a {
  display: block;
}

.blackOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9;
  display: none;
}

@media (max-width: 991.99px) {
  header {
    padding: 15px 0;
  }

  .menuBtn {
    display: block;
    padding: 0;
    width: 30px;
    height: 20px;
    position: relative;
    background: none;
    border: 0;
  }

  .menuBtn span {
    display: block;
    background: #3e3e3f;
    width: 100%;
    height: 3px;
    position: absolute;
    top: 50%;
    left: 0;
    transition: all 0.3s ease-in-out;
    border-radius: 100rem;
  }

  .menuBtn span:first-child {
    transform: translate3d(0, -10px, 0);
  }

  .menuBtn span:nth-child(4) {
    transform: translate3d(0, 10px, 0);
    width: 70%;
  }

  .menuBtn.active span:first-child,
  .menuBtn.active span:nth-child(4) {
    transform: translateZ(0);
    opacity: 0;
    width: 0;
  }

  .menuBtn.active span:nth-child(2) {
    transform: rotate(45deg);
  }

  .menuBtn.active span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .menuWrp {
    background: #2a69b2;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 30px 0;
  }

  .menuWrp ul li {
    border-bottom: 1px solid #ddd;
    font-size: 16px;
    color: var(--white);
  }
  .menuWrp ul li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .menuWrp ul li a {
    padding: 15px 0;
  }
}

@media (max-width: 1200.99px) {
  .cta {
    padding: 10px 30px;
  }
  header {
    padding: 10px 0;
  }
  .logo {
    width: 80px;
  }
}
@media (min-width: 991.99px) {
  .menuWrp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .menuWrp ul {
    display: flex;
    gap: 2.015vw;
    justify-content: center;
  }
  .menuWrp ul li {
    padding-bottom: 0.3vw;
  }
  .menuWrp ul li a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--skyBlue);
    transition: all 0.3s ease-in-out;
  }
  .menuWrp ul li a:hover:after {
    width: 100%;
  }

  .menuWrp ul li a.active:after {
    width: 100%;
  }
}
@media (min-width: 1200.99px) {
  body {
    font-size: 1.042vw;
  }

  .cta {
    padding: 0.8vw 2vw;
  }

  section {
    margin-bottom: 5.208vw;
  }
  .title {
    font-size: 2.604vw;
    margin-bottom: 2vw;
  }
  .title span {
    font-size: 1.1vw;
  }
  header {
    padding: 0.5vw 0;
  }
  .container {
    width: 100%;
    padding: 0 5.208vw;
    max-width: inherit;
  }

  .logo {
    width: 6vw;
  }

  header.headFixed .logo {
    width: 4vw;
  }

  /* Swiper Pagination */
  .swiper-pagination {
    gap: 0 0.7vw;
  }
  .swiper-pagination .swiper-pagination-bullet {
    width: 1.5vw;
  }
}

/* Animation */

.animateThis {
  position: relative;
  will-change: opacity transform;
}

.slideLeft {
  opacity: 0;
  transition: all 0.5s ease;
  transform: translate3d(50px, 0px, 0px);
}

.slideLeft.in-view {
  opacity: 1;
  transform: translate3d(0px, 0px, 0px);
}

.slideRight {
  opacity: 0;
  transition: all 0.5s ease;
  transform: translate3d(-50px, 0px, 0px);
}

.slideRight.in-view {
  opacity: 1;
  transform: translate3d(0px, 0px, 0px);
}

.slideTop {
  opacity: 0;
  transition: all 0.5s ease;
  transform: translate3d(0px, 50px, 0px);
}

.slideTop.in-view {
  opacity: 1;
  transform: translate3d(0px, 0px, 0px);
}

.fadeGrow {
  opacity: 0;
  transition: all 0.7s ease;
  transform: scale(0.5);
}

.fadeGrow.in-view {
  opacity: 1;
  transform: scale(1);
}

.fadeIn {
  opacity: 0;
  transition: all 0.5s ease;
}

.fadeIn.in-view {
  opacity: 1;
}

footer {
  background: #212529;
}
