@import url("https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
/* @import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"); */
/* @import url('https://fonts.googleapis.com/css2?family=Nosifer&display=swap'); */

:root {
  --font-heading: "Philosopher", sans-serif;
  --font-body: "Lato", sans-serif;
}

body {
  font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
}

/* .nosifer-regular {
  font-family: "Nosifer", system-ui;
  font-weight: 400;
  font-style: normal;
} */
/* h1,
h2{
  font-family: "Nosifer", sans-serif;
  color: #A6D1CF;
} */

@keyframes preLoader {
  100% {
    top: 100%;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@-webkit-keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
  }
}
@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
  }
}
@keyframes upDown {
  0% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}


body {
  font-family: "Poppins", sans-serif;
  line-height: 1.5;
  color: #e4e4e4;
}

p {
  line-height: 1.8;
}

.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
  font-weight: 700;
}

:root {

}

@font-face {
  font-family: IcoFont;
  font-weight: 400;
  font-style: Regular;
  src: url(../fonts/icofont.woff2) format("woff2"),
    url(../fonts/icofont.woff) format("woff");
}
[class*=" icofont-"],
[class^="icofont-"] {
  font-family: IcoFont !important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  line-height: 1;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

.icofont-facebook:before {
  content: "\ed37";
}

.icofont-twitter:before {
  content: "\ed7a";
}

.icofont-linkedin:before {
  content: "\ed4d";
}

.icofont-youtube:before {
  content: "\ed8b";
}

.icofont-whatsapp:before {
  content: "\ed86";
}
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: inherit;
  }
}
::selection {
  color: #2f5053;
  background: #A6D1CF;
}

a {
  text-decoration: none;
  color: #A6D1CF;
  transition: 0.3s;
}
a:hover {
  color: #bde6e5;
}

body {
  box-sizing: border-box;
  background: linear-gradient(0deg, rgba(51, 51, 51, 1), rgba(51, 51, 51, 0.8)), url(../images/bg.jpg);
  background-size: cover;
  background-attachment: fixed;   
}

.section-wrapper {
  overflow-x: hidden;
}

.bg-one {
  background-color: #333333;
}

.section-padding {
  padding: 80px 0;
}

.section-padding-t {
  padding-top: 80px;
}

.section-padding-b {
  padding-bottom: 80px;
}

[class*=section-title-] {
  margin-bottom: 50px;
}
[class*=section-title-] span {
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #fff;
  font-weight: 600;
  display: inline-block;
}
[class*=section-title-] h2 {
  margin: 30px 0px;
}

.section-title-left p {
  margin-left: 0;
}

.section-title-center p {
  margin: 0 auto;
}

.section-divider {
  margin-top: 20px;
}

/* Traingle divider */
.divider-traingle {
  width: 200px;
  border-width: 1px;
  border-style: solid;
  border-color: #fff;
  opacity: 0.4;
  position: relative;
  display: inline-block;
}

.divider-traingle:before {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  background-color: #fff;
  top: -9px;
  opacity: 0.4;
  right: 50%;
  transform: rotate(45deg);
}

.divider-traingle:after {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  background: #fff;
  top: -9px;
  left: 45%;
  opacity: 0.4;
  transform: rotate(45deg);
}

.button {
  pointer-events: auto;
  cursor: pointer;
  background: #1F393C;
  color: #1F393C;
  border: none;
  text-align: center;
  padding: 10px 30px;
  line-height: 30px;
  margin: 0;
  position: relative;
  display: inline-block;
}
.button:hover {
  color: #fff;
}
.button::before, .button::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.button__primary {
  border-radius: 3px;
  overflow: hidden;
  color: #fff;
  background: #bde6e5;
}
.button__primary::before {
  content: "";
  background: #A6D1CF;
  width: 125%;
  left: -12%;
  transform: skew(30deg);
  transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
.button__primary span {
  position: relative;
    color: #1F393C !important;
}
.button__primary:hover::before {
  transform: translate3d(100%, 0, 0);
}

.social-icon {
  padding-left: 0;
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0;
  padding: 0;
}
.social-icon li {
  list-style: none;
}
.social-icon li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 5px;
  background-color: #A6D1CF;
  color: #1F393C;
  transition: all 0.5s;
  box-shadow: 3px 3px #595959;
}
.social-icon li a:hover {
  background-color: #bde6e5;
  box-shadow: none;
}
@media screen and (max-width: 320px) {
  .social-icon li a {
    width: 30px;
    height: 30px;
  }
}
.social-icon li a i {
  font-size: 20px;
}
@media screen and (max-width: 320px) {
  .social-icon li a i {
    font-size: 15px;
  }
}

/* #preLoader {
  position: fixed;
  height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  animation: preLoader 1s 1s linear forwards;
  background-color: #fff;
} */

.circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  overflow: hidden;
  opacity: 0.3;
  border-width: 5px;
  border-style: solid;
  border-color: #fefcfd;
}

.x1 {
  animation: movecircles 25s linear infinite;
  top: 150px;
}

.x2 {
  left: 200px;
  top: 200px;
  -webkit-transform: scale(0.6);
  -moz-transform: scale(0.6);
  transform: scale(0.6);
  -webkit-animation: movecircles 35s linear infinite;
  -moz-animation: movecircles 35s linear infinite;
  -o-animation: movecircles 35s linear infinite;
}

.x3 {
  left: -250px;
  bottom: 250px;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-animation: movecircles 40s linear infinite;
  -moz-animation: movecircles 40s linear infinite;
  -o-animation: movecircles 40s linear infinite;
}

.x4 {
  left: 470px;
  bottom: 300px;
  -webkit-transform: scale(0.75);
  -moz-transform: scale(0.75);
  transform: scale(0.75);
  animation: movecircles 45s linear infinite;
}

.x5 {
  left: -150px;
  bottom: 100px;
  transform: scale(0.8);
  animation: movecircles 50s linear infinite;
}

.header {
  position: absolute;
  width: 100%;
  transition: border-radius 0.2s, width 350ms ease;
}
.header.navbar_fixed {
  position: fixed;
  width: 100%;
  z-index: 100;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  margin-top: 30px;
}
.header.navbar_fixed .navbar {
  margin-top: 0px;
}
.header .navbar {
  border: 0px;
  margin-top: 30px;
  padding-left: 15px;
  padding-right: 15px;
  top: 0;
  left: 0;
  z-index: 100;
  transition: all 0.3s;
  transition: all 0.4s ease-in-out;
}

.hero__images img.img-fluid {
  width: 100%;
  max-width: 600px;
  transition: 0.3s all ease-in-out;
  border-radius: 5px;
}
.hero__images img.img-fluid:hover {
  transform: matrix(1, 0, 0, 1, -5, -5);
  transition: 0.3s all ease-in-out;
}
.book-list {
  display: flex;
  justify-content: space-between;
}

.book-list .book {
  width: 100%;
  max-width: 30%;
  text-align: center;
}

.book-list .book img{
margin-bottom: 20px;
transition: 0.3s all ease-in-out;
width: 100%;
max-width: 350px;
}

.book-list .book img:hover {
  transform: scale(0.95);
  cursor: pointer;
  transition: 0.3s all ease-in-out;
}
.navbar-brand h2{
  color: #c3c3c4;
}

.header .navbar .navbar-nav li a:hover:after,
.header .navbar .navbar-nav li.active a:after,
.header .navbar .navbar-nav li.current_page_item a:after {
  opacity: 1;
  bottom: -9px;
}
.header .navbar .nav-item .nav-link {
  color: #c3c3c4;
  font-weight: 500;
}

.header .navbar .nav-item:hover .nav-link,
.header .navbar .nav-item:hover i {
  color: #dbdbdb;
}

.header .navbar .nav-item.current-menu-item .nav-link,
.header .navbar .nav-item.current-menu-item i, .header .navbar .nav-item.active .nav-link,
.header .navbar .nav-item.active i {
  color: #c3c3c4;
}
.header .navbar-expand-lg {
  background-color: #333333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.4s;
}
.header .navbar-toggler {
  position: relative;
  width: 30px;
  height: 20px;
  border-radius: 0px;
  padding: 0px;
  border: 0px;
}

.header .navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}
.header .navbar-toggler span {
  background-color: #c3c3c4;
  display: block;
  position: absolute;
  height: 1px;
  width: 50%;
  opacity: 1;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.header .navbar-toggler span:nth-child(even) {
  left: 50%;
  border-radius: 0 9px 9px 0;
}
.header .navbar-toggler span:nth-child(odd) {
  left: 0px;
  border-radius: 9px 0 0 9px;
}
.header .navbar-toggler span:nth-child(1), .header .navbar-toggler span:nth-child(6) {
  transform: rotate(45deg);
}
.header .navbar-toggler span:nth-child(2), .header .navbar-toggler span:nth-child(5) {
  transform: rotate(-45deg);
}
.header .navbar-toggler span:nth-child(1) {
  left: 0px;
  top: 4px;
}
.header .navbar-toggler span:nth-child(2) {
  left: calc(50% - 4px);
  top: 4px;
}
.header .navbar-toggler span:nth-child(3) {
  left: -50%;
  opacity: 0;
}
.header .navbar-toggler span:nth-child(4) {
  left: 86%;
  opacity: 0;
}
.header .navbar-toggler span:nth-child(5) {
  left: 0px;
  top: 14px;
}
.header .navbar-toggler span:nth-child(6) {
  left: calc(50% - 4px);
  top: 14px;
}
.header .navbar-toggler.collapsed span:nth-child(1), .header .navbar-toggler.collapsed span:nth-child(2) {
  top: 2px;
}
.header .navbar-toggler.collapsed span:nth-child(3), .header .navbar-toggler.collapsed span:nth-child(4) {
  top: 9px;
}
.header .navbar-toggler.collapsed span:nth-child(5), .header .navbar-toggler.collapsed span:nth-child(6) {
  top: 16px;
}
.header .navbar-toggler.collapsed span:nth-child(2), .header .navbar-toggler.collapsed span:nth-child(5), .header .navbar-toggler.collapsed span:nth-child(1), .header .navbar-toggler.collapsed span:nth-child(6) {
  transform: rotate(0deg);
}
.header .navbar-toggler.collapsed span:nth-child(3) {
  opacity: 1;
  left: 0;
}
.header .navbar-toggler.collapsed span:nth-child(4) {
  opacity: 1;
  left: calc(50% - 4px);
}

.dropdown-toggle.active.show span {
  transform: rotate(180deg);
}

.menu > .nav-item {
  position: relative;
  transition: all 0.2s linear;
  border-bottom: 1px solid transparent;
  margin-left: 15px;
}
@media only screen and (max-width: 1199px) {
  .menu > .nav-item {
    margin-left: 0;
  }
}
.menu > .nav-item > a {
  padding-top: 8px;
  padding-bottom: 8px;
  display: block;
}
.menu > .nav-item > a::after {
  transition: all 0.4s cubic-bezier(0.3, 0.1, 0.58, 1);
  opacity: 0;
  content: "";
  width: 100%;
  width: 30px;
  left: 50%;
  transform: translate(-50%, 0);
  height: 2px;
  background: #c3c3c4;
  position: absolute;
  bottom: -20px;
}
@media only screen and (max-width: 991px) {
  .menu > .nav-item > a::after {
    left: 10px;
    background: inherit;
  }
}
.menu > .nav-item.submenu .dropdown-menu {
  margin: 0px;
  border: 0px;
  border-radius: 0px;
  left: -100px;
  max-width: 195px;
  min-width: 195px;
  padding: 15px;
  background: #fff;
  top: 100%;
  box-shadow: 0px 6px 20px 0px rgba(1, 6, 33, 0.06);
}
@media (min-width: 992px) {
  .menu > .nav-item.submenu .dropdown-menu {
    transform: translateY(20px);
    transition: all 0.3s ease-in;
    opacity: 0;
    visibility: hidden;
    display: block;
  }
}
.menu > .nav-item.submenu .dropdown-menu .nav-item {
  display: block;
  width: 100%;
  position: relative;
}
.menu > .nav-item.submenu .dropdown-menu .nav-item:not(:first-child) {
  margin-top: 14px;
}
.menu > .nav-item.submenu .dropdown-menu .nav-item .nav-link {
  padding: 0px;
  text-wrap: inherit;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s linear;
}
.menu > .nav-item.submenu .dropdown-menu .nav-item > .dropdown-menu {
  transition: transform 0.3s ease-in;
}
.menu > .nav-item.submenu .dropdown-menu .nav-item > .dropdown-menu:before {
  display: none;
}
@media (min-width: 992px) {
  .menu > .nav-item.submenu .dropdown-menu .nav-item > .dropdown-menu {
    position: absolute;
    left: 100%;
    top: -15px;
    opacity: 0;
    display: block;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease-in;
  }
}
.menu > .nav-item.submenu .dropdown-menu .dropdown-menu-end {
  left: 0;
  box-shadow: none;
  display: flex;
  padding: 0;
  min-width: 100%;
}
@media only screen and (max-width: 991px) {
  .menu > .nav-item.submenu .dropdown-menu .dropdown-menu-end {
    display: block;
  }
  .menu > .nav-item.submenu .dropdown-menu .dropdown-menu-end .dropdown-menu {
    display: block;
  }
}
@media (min-width: 992px) {
  .menu > .nav-item:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}
@media (min-width: 992px) and (min-width: 992px) {
  .menu > .nav-item:hover .dropdown-menu > .nav-item:hover .dropdown-menu {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
  }
}
.menu > .nav-item.dropdown.submenu {
  display: flex;
  align-items: center;
}
.menu > .nav-item.dropdown.submenu .dropdown-menu .nav-item .nav-link {
  padding: 0;
  color: inherit;
}

@media (max-width: 991px) {
  .navbar-nav > li .sub-menu-toggle {
    position: absolute;
    top: 0;
    right: 0;
    background: #A6D1CF;
    width: 100%;
    height: 38px;
    width: 38px;
    line-height: 38px;
    margin-right: 0px;
    cursor: pointer;
    text-align: center;
    z-index: 1;
    border: 3px solid #fff;
  }
  .header .navbar .nav-item i {
    color: #fff !important;
  }
  .menu .nav-item.dropdown.submenu {
    display: block;
  }
  .menu > .nav-item.submenu .dropdown-menu {
    max-width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .navbar .navbar-collapse {
    position: absolute;
    left: 0;
    top: 100%;
    background: #333333;
    box-shadow: 4px 6px 10px rgba(1, 6, 33, 0.06);
    z-index: 8;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    max-height: 300px;
    overflow-y: scroll;
  }
  .navbar .navbar-collapse.collapse.show .nav-item .nav-link::after {
    bottom: 0;
    left: 15px;
  }
  .menu > .nav-item {
    margin: 0;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 0;
    padding-right: 0;
  }
  .menu > .nav-item.submenu .dropdown-menu {
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 10px;
  }
  .menu > .nav-item.submenu .dropdown-menu .nav-item {
    padding-left: 0;
    padding-right: 0;
  }
}
#menu-primary-menu .current-menu-parent {
  color: #1F393C;
}
#menu-primary-menu .current-menu-parent a::after {
  opacity: 1;
  bottom: -12px;
}

  /* .book img.img-fluid {
    height: 450px;
  } */

#hero{
  background:linear-gradient(0deg, rgba(51, 51, 51, 0.2), rgba(51, 51, 51, 0.2) );
  background-size: contain;
}
.hero__padding {
  padding-top: 200px;
  padding-bottom: 100px;
}
.hero__content {
  z-index: 9;
}
.button.button__primary span img {
  width: 35px;
  margin-bottom: 0px;
}
.footer__top .row {
  justify-content: space-between;
}

#countdown{
  color: #A6D1CF;
}

@media only screen and (max-width: 767px) {
  .hero__content {
    text-align: center;
  }
  .button__primary span{
    font-size: 14px;
  }
  .button.button__primary span img {
    width: 25px;
}
}

.hero__images {
  position: relative;
  margin-left: 60px;
}

.background-video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for readability */
  z-index: 0;
}

.background-video-section .container {
  position: relative;
  z-index: 1;
}

.video-section{
  background: #333333;
}
.text-white {
  color: #fff;
}


@media only screen and (max-width: 991px) {
  .hero__images {
    margin-left: 0;
  }
}

.hero__content p.highlighted {
  font-size: 16px !important;
  margin-bottom: 20px !important;
}

.authorv2__image {
  position: relative;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  background: url(../images/Steve-Eilers2.jpeg);
  border: 3px solid;
  background-size: cover;
  height: 550px;
  background-repeat: no-repeat;
}

.testi-row {
  overflow: hidden;
}
.testi-row .clients-slider {
  padding: 0 0 50px 0;
}
.testi-row .swiper-pagination-bullet {
  background-color: #A6D1CF;
  opacity: 0.3;
  padding: 5px;
}
.testi-row .swiper-pagination-bullet-active {
  opacity: 1;
  padding: 6px;
}
.testi-row .testi-card {
  box-shadow: 0px 1px 15px 0px rgba(1, 6, 33, 0.06);
  border: none;
  margin-top: 15px;
  background-color: #f5ebe6;
}
.testi-row .testi-card img {
  width: 60px;
  border-radius: 50%;
}
.testi-row .testi-card p {
  font-style: italic;
}
.testi-row .testi-card__quotation {
  text-align: center;
}
.testi-row .testi-card__quotation i {
  font-size: 65px;
  color: #1F393C;
}
.testi-row .testi-card__user-info {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #FA2D40;
}
.testi-row .testi-card__user-info img {
  margin-right: 20px;
}

.testimonialv2 .testi-row .testi-card img {
  width: 90px;
}
.testimonialv2__card-title {
  font-size: 25px;
  margin-top: 20px;
  color: #343434;
}
.testimonialv2__card-subtitle {
  font-size: 16px;
  color: #1F393C;
}

.bg-one .testi-card {
  background-color: #fff;
}
.bg-one .testi-card__user-info {
  border-top: 1px solid #eff0f7;
}

.cta {
  background: linear-gradient(0deg, rgba(51, 51, 51, 1), rgba(51, 51, 51, 0.8) 40%), url(/assets/images/overlay-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.cta__inner {
  text-align: center;
  padding: 40px;
  border-radius: 5px;
}
.cta-form-box {
  margin-top: 30px;
}

 .ctav3__content {
  text-align: center;
  position: relative; 
 } 

.ctav3__content h2 a:hover {
  color: #bde6e5;
}
.ctav3__content__icon {
  position: absolute;
  top: 50%;
  transform: translate(50%, -50%);
}

.footer__menu {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  display: inline;
}
.footer__menu li {
  display: inline-block;
}
.footer__menu li a {
  margin-left: 10px;
  margin-right: 10px;
}
.footer__menu li a:hover {
  color: #bde6e5;
}
footer .footer__top h2 {
  font-size: 24px;
  font-weight: 600;
}
footer .footer__top h2 span{
  color: #bde6e5;
}