@import url("https://fonts.googleapis.com/css2?family=Afacad:ital,wght@0,400..700;1,400..700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-size: 15px;
  background: #fffaf0;
  font-family: "Afacad", sans-serif;
  line-height: 1.5;
  color: #0b1f3a;
  font-weight: 300;
}
/* loader */
/* loader */
.loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease;
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* end */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 15px;
  color: #0b1f3a;
  margin-top: 0;
  line-height: 1.5;
}

p {
  margin-bottom: 15px;
  color: #0b1f3a;
}
.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title h3,
.section-title h2 {
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 55px;
}

.section-title > span {
  background: rgba(11, 31, 58, 0.6);
  border-radius: 270px;
  padding: 10px 30px;
  display: inline-block;
  color: white;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.section-title p {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0;
}
/* Navbar */

.navbar-nav li {
  padding: 10px 10px;
}

.navbar-nav li a {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff !important;
  display: inline-block;
  position: relative;
}

.navbar-nav li a:hover {
  color: #ffffff !important;
}

.navbar-nav .nav-link.active {
  color: #ffffff !important;
}

.header.sticky li a {
  color: white !important;
}
header nav .btn-theme,
.offcanvas .btn-theme {
  background: #fffaf0;
  border: 2px solid #ffffff;
  padding: 10px 35px;
  color: black;
  justify-content: center;
}
.offcanvas-header img {
  width: 110px;
}
header .header-buttons {
  background: transparent;
  border: none;
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-left: 10px;
}

header nav .btn-theme:hover,
.offcanvas .btn-theme:hover {
  border: 2px solid #ffffff;
  background: transparent;
  color: #ffffff;
}
.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-nav .nav-link::after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: #ffffff;
  transition:
    width 0.3s ease 0s,
    left 0.3s ease 0s;
  width: 0;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
  left: 0;
}

ul.dropdown-menu {
  padding: 0;
}

.dropdown-menu li:hover,
.dropdown-menu li:hover a {
  background: white;
  color: #0b1f3a !important;
}

.navbar-brand img {
  width: 150px;
  transition: 0.6s;
  /* margin: 0px 0 0 50px; */
}

.offcanvas {
  background-color: #0b1f3a;
}

.offcanvas .navbar-nav .dropdown-menu {
  margin-top: 10px;
  border-radius: 8px;
}

.offcanvas .navbar-nav .dropdown-menu li {
  padding: 10px 0;
}

.offcanvas .navbar-nav .dropdown-menu li:hover,
.offcanvas .navbar-nav .dropdown-menu li:hover a {
  border-radius: 8px;
}

.offcanvas .btn-close svg {
  fill: white;
}

.offcanvas-header > img {
  width: 15rem;
}

.dropdown-menu {
  background-color: #0b1f3a;
  border-radius: 0px;
}

.dropdown-item {
  background: none !important;
}

.dropdown-menu li {
  padding: 6px 10px;
}

/* section */

section {
  padding-top: 50px;
  padding-bottom: 50px;
}

/* top bar */
.top-bar {
  padding: 16px 0;
  background: #0d1f2d;
}

.top-bar-social > a {
  font-size: 16px;
}

.top-bar-contact > a {
  font-size: 15px;
}

.top-bar-contact {
  text-align: end;
}

.top-bar-contact > a {
  color: #fff;
  padding-right: 20px;
  font-weight: 600;
  text-decoration: none;
}

/* end */
/* header */
.header {
  padding: 15px 0 15px 0;
  background: transparent;
  z-index: 999;
  transition: 0.6s;
  position: absolute;
  width: 100%;
}

header.sticky {
  padding: 0px 0px;
  position: fixed;
  width: 100%;
  z-index: 999;
  background: transparent;
}

header.sticky #navbarNav {
  border-bottom: 0px !important;
}

header.sticky img {
  /* width: auto; */
  transition: all 0.5s ease-in-out;
}

.header .navbar > .container {
  background: #0b1f3a;
  border-radius: 100px;
  padding: 10px 55px;
}

/* top banner */
.top-banner {
  background: url("../images/top-banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 220px 0 70px;
  overflow: hidden;
}

.top-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/top-pattern.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.top-banner .left-col h1 {
  font-size: 50px;
  font-weight: 700;
  color: #0b1f3a;
  line-height: 50px;
}

.top-banner .left-col p {
  font-size: 20px;
  font-weight: 400;
}
.top-banner .right-img {
  width: 100%;
  max-width: 680px;
  margin-left: auto;
  position: relative;
  aspect-ratio: 1;
  isolation: isolate;
}

.top-banner .right-img .hero-book {
  position: absolute;
  display: block;
  width: auto;
  height: auto;
  pointer-events: none;
  opacity: 0;
  z-index: 2;
}

/* animations ONLY after loader ends */
.top-banner .right-img.animate-books .hero-book {
  animation-duration: 3s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-fill-mode: both;
}

.top-banner .right-img.animate-books .hero-book--top {
  max-width: 56%;
  max-height: 42%;
  top: 1%;
  left: 50%;
  animation-name: hero-fade-down;
  animation-delay: 0s;
}

.top-banner .right-img.animate-books .hero-book--bottom {
  max-width: 56%;
  max-height: 42%;
  bottom: 1%;
  left: 50%;
  animation-name: hero-fade-up;
  animation-delay: 0.22s;
}

.top-banner .right-img.animate-books .hero-book--left {
  max-width: 31%;
  left: 0;
  top: 50%;
  animation-name: hero-from-left;
  animation-delay: 0.08s;
}

.top-banner .right-img.animate-books .hero-book--right {
  max-width: 31%;
  right: 0;
  top: 50%;
  animation-name: hero-from-right;
  animation-delay: 0.08s;
}

.top-banner .right-img .center-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: min(200px, 40%);
  width: auto;
  height: auto;
  z-index: 5;
}

@keyframes hero-fade-down {
  from {
    opacity: 0;
    transform: translate(-50%, -42%);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translate(-50%, 42%);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes hero-from-left {
  from {
    opacity: 0;
    transform: translate(calc(-100% - 18px), -50%);
  }

  to {
    opacity: 1;
    transform: translate(0, -50%);
  }
}

@keyframes hero-from-right {
  from {
    opacity: 0;
    transform: translate(calc(100% + 18px), -50%);
  }

  to {
    opacity: 1;
    transform: translate(0, -50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .top-banner .right-img .hero-book {
    animation: none;
    opacity: 1;
  }

  .top-banner .right-img .hero-book--top {
    transform: translate(-50%, 0);
  }

  .top-banner .right-img .hero-book--bottom {
    transform: translate(-50%, 0);
  }

  .top-banner .right-img .hero-book--left {
    transform: translate(0, -50%);
  }

  .top-banner .right-img .hero-book--right {
    transform: translate(0, -50%);
  }
}

/* End */

/* section two */
.sec-two {
  position: relative;
  /* overflow: hidden; */
}

.sec-two::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 0;
  width: 225px;
  height: 420px;
  background: url("../images/pattern-2.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  z-index: 0;
  animation: up 3s ease-in-out infinite;
}
.sec-two::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -20%;
  width: 225px;
  height: 420px;
  background: url("../images/pattern-3.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  z-index: 0;
  animation: up 3s ease-in-out infinite;
}

.sec-two .right-col-content > h4 {
  font-weight: 500;
  font-size: 36px;
  line-height: 48px;
}
.sec-two .right-col-content > p {
  font-size: 20px;
  font-weight: 400;
}
.sec-two .right-col-content .counter-sec {
  display: flex;
  gap: 50px;
  align-items: center;
  margin-bottom: 10px;
}
.sec-two .right-col-content .counter-sec .counter-item > h4 {
  font-size: 45px;
  font-weight: 500;
  margin-bottom: 0;
}
.sec-two .right-col-content .counter-sec .counter-item > p {
  font-size: 18px;
  font-weight: 400;
}
/* end */

/* bg two */
.bg-two {
  background-color: #0b1f3a;
}
.bg-two .right-col-content > h4,
.bg-two .right-col-content > p {
  color: #fff;
}
.bg-two .right-col-content .btn-sec .btn {
  background: white;
  color: #0b1f3a;
}
.bg-two .right-col-content .btn-sec .btn span {
  background: #0b1f3a;
}
.bg-two .right-col-content .btn-sec .btn span i {
  color: white;
}
.bg-two .right-col-content .btn-sec .btn:hover {
  background: transparent;
  border-color: white;
  color: white;
}
/* end */

/* section three — process timeline */
.sec-three {
  position: relative;
  padding: 50px 0 100px;
}

.sec-three::before {
  content: "";
  position: absolute;
  top: 38%;
  left: 0;
  width: 225px;
  height: 420px;
  background: url("../images/pattern-2.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  z-index: 0;
  animation: up 3s ease-in-out infinite;
}

.sec-three::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 225px;
  height: 420px;
  background: url("../images/pattern-3.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  z-index: 0;
  animation: up 3s ease-in-out infinite;
}

.sec-three .section-title {
  margin-bottom: 48px;
}

.process-timeline {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding: 24px 0 8px;
}

.process-step {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step__row {
  position: relative;
  z-index: 1;
}

.process-step__text {
  display: flex;
  align-items: center;
  min-height: 48px;
}

.process-step__text--start {
  justify-content: flex-start;
}

.process-step__text--end {
  justify-content: flex-start;
}

.process-step__copy {
  display: flex;
  flex-direction: column;
  max-width: 420px;
}

.process-step__text--start .process-step__copy {
  align-items: start;
}

.process-step__text--end .process-step__copy {
  align-items: flex-start;
  text-align: left;
}

.process-badge {
  display: inline-block;
  padding: 10px 26px;
  border-radius: 999px;
  background: #0b1f3a;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.process-step__title {
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
}

.process-step__desc {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
}

.process-step__axis {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.process-dot {
  display: block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #fffaf0;
  border: 5px solid #0b1f3a;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
  z-index: 1;
}

.process-step__media {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.process-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.animate-up {
  animation: up 3s ease-in-out infinite;
}

@keyframes up {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }

  100% {
    transform: translateY(0);
  }
}
/* end */

/* section four */
.sec-four {
  background: url("../images/sec-four-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  /* background-position: center; */
  padding: 100px 0;
  position: relative;
}

.sec-four::before {
  content: "";
  background-color: #0000009e;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bg-four {
  /* background-color: #0b1f3a; */
  padding: 70px 0;
  position: relative;
}

.bg-four::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 38px;
  height: 120px;
  background: url("../images/four-pattern-one.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  z-index: 0;
  animation: up 3s ease-in-out infinite;
}

.bg-four::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 85px;
  height: 120px;
  background: url("../images/four-pattern-two.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  z-index: 0;
  animation: up 3s ease-in-out infinite;
}

.bg-four .section-title {
  margin-bottom: 0;
}
.bg-four .section-title h3 {
  font-size: 35px;
}
.sec-four .section-title h3,
.bg-four .section-title h3,
.bg-four .section-title p {
  color: white;
}
/* end */

/* section five */
.sec-five {
  padding: 100px 0;
  position: relative;
}

.sec-five::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 225px;
  height: 420px;
  background: url("../images/pattern-2.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  z-index: 0;
  animation: up 3s ease-in-out infinite;
}

.sec-five::after {
  content: "";
  position: absolute;
  right: 0;
  top: 30%;
  width: 225px;
  height: 420px;
  background: url("../images/pattern-3.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  z-index: 0;
  animation: up 3s ease-in-out infinite;
}

.sec-five .sec-five-card {
  text-align: center;
  margin-top: 30px;
}
.sec-five .sec-five-card-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.sec-five .sec-five-card-img span {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  padding: 20px;
  background: rgba(11, 31, 58, 0.7);
  border-radius: 0 0 10px 10px;
  font-size: 20px;
  color: white;
  font-weight: bold;
  text-align: left;
  z-index: 2;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

@media (hover: hover) and (pointer: fine) {
  .sec-five .sec-five-card-img span {
    opacity: 0;
    transform: translateY(100%);
  }

  .sec-five .sec-five-card:hover .sec-five-card-img span {
    opacity: 1;
    transform: translateY(0);
  }
}

.sec-five .sec-five-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sec-five .sec-five-card h4 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 5px;
  margin-top: 12px;
}
.sec-five .sec-five-card p {
  font-size: 18px;
  font-weight: 400;
}
.sec-five .sec-five-card .custom-height {
  height: 80px;
}
.sec-five .sec-five-card .btn-sec {
  justify-content: center;
}
/* end */

/* section six */
.sec-six {
  padding: 100px 0 160px;
  overflow: hidden;
  position: relative;
}
.sec-six::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 190px;
  height: 338px;
  background: url("../images/pattern-2.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  z-index: 0;
  animation: up 3s ease-in-out infinite;
}
.sec-six .sec-six-slider {
  transform: rotate(-5.69deg);
  transform-origin: center center;
  background: #0b1f3a;
  left: -60px;
  width: 110%;
  padding: 10px 0;
}

.sec-six .slick-item {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 12px 16px;
}
.sec-six .slick-item i {
  color: white;
  font-size: 30px;
}
.sec-six .slick-item span {
  font-size: 20px;
  color: white;
}
/* end  */

/* section seven */
.sec-seven {
  padding: 70px 0;
  background: url("../images/seven-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.sec-seven .section-title h3,
.sec-seven .section-title p {
  color: white;
}
.sec-seven .btn-sec {
  margin-top: 30px;
  justify-content: center;
}
.sec-seven .btn-sec .btn-theme,
.sec-four .btn-sec .btn-theme {
  background: white;
  color: #0b1f3a;
}
.sec-seven .btn-sec .btn-theme span,
.sec-four .btn-sec .btn-theme span {
  background: #0b1f3a;
}
.sec-seven .btn-sec .btn-theme span i,
.sec-four .btn-sec .btn-theme span i {
  color: white;
}
.sec-seven .btn-sec .btn-theme:hover,
.sec-four .btn-sec .btn-theme:hover {
  background: transparent;
  border-color: white;
  color: white;
}
/* end */

/* section eight */
.sec-eight {
  padding: 100px 0;
  position: relative;
}
.sec-eight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 225px;
  height: 420px;
  background: url("../images/pattern-2.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  z-index: 0;
  animation: up 3s ease-in-out infinite;
}
.sec-eight-pattern {
  position: relative;
  z-index: 1;
}
.sec-eight-pattern::after {
  content: "";
  position: absolute;
  right: 0;
  top: 70%;
  width: 245px;
  height: 485px;
  background: url("../images/pattern-3.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  z-index: 0;
  animation: up 3s ease-in-out infinite;
}
.sec-eight::after {
  content: "";
  position: absolute;
  width: 51%;
  height: 77.3%;
  background: #0b1f3a;
  border-radius: 30px 0px 0px 30px;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: -1;
}
.sec-eight-pattern .right-col > img {
  border-radius: 30px;
}
.sec-eight .left-col .section-title h3,
.sec-eight .left-col .section-title p {
  /* font-size: 36px; */
  /* line-height: normal; */
  text-align: left;
}
/* end */

/* faq section */
.faq-sec {
  padding: 50px 0 70px;
  position: relative;
}

.faq-sec::after {
  content: "";
  position: absolute;
  right: 0;
  top: 34%;
  width: 469px;
  height: 607px;
  background: url("../images/faq-pattern.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  z-index: -1;
  animation: up 3s ease-in-out infinite;
}

.faq-sec .qa-sec .accordion-item {
  border: none;
  margin-bottom: 20px;
  background: #0b1f3a;
  border-radius: 20px;
  z-index: 1;
  position: relative;
}

.faq-sec .qa-sec h4 button {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 500;
  border-radius: 0px !important;
  color: #ffffff;
  background: none;
  box-shadow: none;
  padding: 22px 20px;
}

.faq-sec .qa-sec .accordion-button::after {
  background-image: url("../images/plus.png");
  transform: scale(2) !important;
}

.faq-sec .qa-sec .accordion-button:not(.collapsed)::after {
  background-image: url("../images/minus.png");
}

.faq-sec .qa-sec .accordion-body {
  border-radius: 0px 0px 20px 20px;
}

.faq-sec .qa-sec .accordion-body p {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0px;
  color: #ffffff;
}
/* end */

/* login section */
.login-sec {
  padding: 210px 0 70px;
}
/* end */

/* our services */
.our-services {
  padding: 0px 0 70px;
}
.our-services::before,
.our-services::after {
  display: none;
}
/* end */

/* our legacy */
.our-legacy-hero {
  background: url("../images/legacy-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.our-legacy {
  padding: 0px 0 70px;
}
.our-legacy .right-col-content > h2 {
  font-weight: 500;
  font-size: 36px;
  line-height: 48px;
}
.our-legacy .right-col-content > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  column-count: 4;
  column-gap: 20px;
}
.our-legacy .right-col-content > ul > li {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 400;
}
/* end */

/* contact us */

.contact-us {
  padding-top: 60px;
  padding-bottom: 70px;
  background: url("../images/contact-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

/* end */

/* form */
/* Works for Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form-control {
  resize: none;
  display: block;
  width: 100%;
  padding: 16px 15px;
  font-size: 1rem;
  border-radius: 8px;
  font-weight: 400;
  line-height: 1.5;
  border: 2px solid #0b1f3a;
  color: #1e1e1e !important;
  background-color: transparent;
}

.form-control:focus {
  background-color: transparent;
  border-color: #0b1f3a;
  box-shadow: none !important;
  outline: none !important;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #1e1e1e !important;
  font-weight: 400;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #1e1e1e !important;
  font-weight: 400;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #1e1e1e !important;
  font-weight: 400;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: white !important;
  font-weight: 400;
}

/* end */

/* Button */
.btn-sec {
  display: flex;
  gap: 12px;
  align-items: center;
}
.btn-theme {
  border: 2px solid #0b1f3a;
  padding: 5px 5px 5px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 500;
  background: #0b1f3a;
  color: #ffffff;
  transition: all ease-in-out 0.3s;
  font-size: 18px;
  border-radius: 50px;
}

.btn-theme span {
  background: #ffffff;
  border-radius: 100px;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-theme:hover span i {
  transform: rotate(45deg);
}

.btn-theme span i {
  font-size: 22px;
  color: #0b1f3a;
  transition: 0.5s;
}

.btn-theme:hover {
  border: 2px solid #0b1f3a;
  background: transparent;
  color: #0b1f3a;
}

.btn-check:focus + .btn,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

/* end */

/* footer */
.footer {
  padding-top: 70px;
  padding-bottom: 25px;
  background: url("../images/footer-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

.footer-logo img {
  width: 230px;
}

.footer-logo p {
  color: #ffffff;
  margin-top: 20px;
  font-size: 18px;
  margin-bottom: 25px;
}

.footer-links > h6 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 0px;
}

.footer-links ul {
  margin-bottom: 45px;
}

.footer-links ul.two-columns {
  column-count: 2;
  column-gap: 20px;
}

.footer-links > p {
  color: #cfcfcf;
  font-size: 18px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.footer-links > ul > li {
  padding: 20px 0px 0 0px;
  color: white;
  transition: all ease-in-out 0.3s;
}

.footer-links > ul > li:hover {
  color: #ffffff;
}

.footer-links > ul > li > a {
  text-decoration: none;
  font-size: 18px;
  color: #ffffff;
  transition: all ease-in-out 0.3s;
}

.footer-links > ul > li > a:hover {
  color: #ffffff;
}

.footer .social {
  display: flex;
  gap: 8px;
}

.footer .social > p > span {
  margin: 0;
  margin-right: 15px;
  color: white;
  font-size: 1.2rem;
  font-weight: 500;
}

.footer .social > a {
  color: #ffffff;
  font-size: 20px;
  transition: all ease-in-out 0.3s;
  background: transparent;
  border-radius: 30px;
  text-decoration: none;
  border: 1px solid white;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .social > a:hover {
  color: #0b1f3a;
  background: #ffffff;
}

.footer-bottom {
  background: #0b1f3a;
  padding: 20px 0;
  border-top: 1px solid white;
}

.footer-bootom-links {
  display: flex;
  align-items: center;
  justify-content: center;
}

.term_and_conditions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.term_and_conditions a:nth-child(1)::after {
  content: "";
  background: #cfcfcf;
  height: 100%;
  width: 1px;
  position: absolute;
  right: -8px;
}

.term_and_conditions a {
  font-size: 18px;
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 400;
  position: relative;
}

.footer-bootom-links > span {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
}
/* .footer .footer-bottom-text {
  text-align: center;
}
.footer .footer-bottom-text span {
  color: #fffaf0;
  font-weight: 500;
  font-size: 300px;
  line-height: 240px;
  color: transparent;
  background-image: url("../images/text-bg.webp");
  background-size: 200%;
  background-position: 0 50%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: animate-background 9s infinite alternate linear;
}
@keyframes animate-background {
  0% {
    background-position: 0 50%;
  }
  100% {
    background-position: 200% 50%;
  }
} */
/* end */

/*scroll*/
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-thumb {
  background: #0b1f3a;
  border-color: #0b1f3a;
  border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #0b1f3a;
}

/* model popup */
.model-discount span {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0;
  color: #0b1f3a;
}

.animate-div {
  animation: zoom-in-zoom-out 2s ease-out infinite;
}

.model-discount span label {
  color: #0b1f3a;
  animation: zoom-in-zoom-out 2s ease-out infinite;
  font-size: 20px;
  font-weight: 700;
}

.model-discount label {
  color: #000000;
  font-size: 15px;
  font-weight: 500;
}

.model-sec .modal-body {
  /* padding: 0; */
  position: relative;
}

.model-sec .modal-content {
  border-radius: 30px;
  border: none;
}

.model-discount {
  padding: 20px;
  background: #ffffff;
  border-radius: 30px;
}

.model-input {
  border-color: #0d1f2d;
  padding: 10px 15px;
  color: #0d1f2d !important;
  border: 2px solid;
}

.model-input:focus {
  border-color: #0b1f3a !important;
}

.model-input::placeholder {
  color: #0d1f2d !important;
  font-weight: 500;
}

.model-discount .btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
  box-shadow: none;
  background: transparent
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='black'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e")
    center / 1em auto no-repeat;
}

.model-discount hr {
  background-color: #0d1f2d;
  opacity: 1;
}

.model-sec .modal-body .model-discount p {
  font-size: 18px;
  font-weight: 400;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(0.9);
    transition: all 0.5s ease-in-out;
  }

  30% {
    transform: scale(1);
    transition: all 0.7s ease-in-out;
  }

  50% {
    transform: scale(1.2);
    transition: all 0.7s ease-in-out;
  }

  50% {
    transform: scale(1);
    transition: all 0.7s ease-in-out;
  }

  100% {
    transform: scale(0.9);
    transition: all 0.7s ease-in-out;
  }
}

/* end */
.responsive-menu {
  display: none;
}
.thank-you {
  padding: 240px 0 100px;
}
.thank-you .right-col p {
  font-size: 20px;
  font-weight: 400;
}
.thank-you .right-col h1 {
  font-size: 50px;
}
