@import url('https://fonts.googleapis.com/css2?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');

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Poppins', sans-serif;
  color: #444444;
}

a {
  color: #123a8f;
  text-decoration: none;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #123a8f;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #123a8f;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #123a8f;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #123a8f;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Imgs
--------------------------------------------------------------*/
.img-logo {
  margin: 0 auto;
  border-radius: 0px;  
}

#img-mockup-1 {
  border-radius: 10px
}

#img-mockup-2 {
  border-radius: 10px
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100%;
  background: transparent linear-gradient(122deg, #123a8f 0%, #123a8f 100%) 0% 0% no-repeat padding-box;
  padding-top: 0;
}

#hero .container {
  padding-top: 25px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 40px;
  font-weight: 800;
  line-height: 56px;
  color: #fff;
}

#hero h2 {
  color: #fff;
  margin-bottom: 50px;
  font-size: 22px;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero {
    height: 100%;
    text-align: center;
    margin-top: -25px;
  }

  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 100%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }

  #hero .btn-get-ebook {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Btn Get Ebook
--------------------------------------------------------------*/
.btn-get-ebook {
  font-weight: 500;
  font-size: 20px;
  margin: 0 auto;
  color: #123a8f;
  background: #fff;
  padding: 10px 30px 10px 30px;
  border-radius: 13px;
  border: 3px solid #123a8f;
}

.btn-get-ebook:hover {
  background: #123a8f;
  color: #fff;
  border: 3px solid #fff;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #123a8f;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #123a8f;
  bottom: 0;
  left: calc(50% - 20px);
}

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



/*--------------------------------------------------------------
# Sec1
--------------------------------------------------------------*/
.sec1 .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.sec1 .content ul {
  list-style: none;
  padding: 0;
}

.sec1 .content ul li {
  padding-left: 28px;
  position: relative;
}

.sec1 .content ul li+li {
  margin-top: 10px;
}

.sec1 .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #123a8f;
  line-height: 1;
}

.sec1 .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Sec2
--------------------------------------------------------------*/
.sec2 .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: #123a8f;
  font-family: "Poppins", sans-serif;
}

.sec2 .content ul {
  list-style: none;
  padding: 0;
}

.sec2 .content ul li {
  padding-bottom: 10px;
}

.sec2 .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #123a8f;
}

.sec2 .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Sec3
--------------------------------------------------------------*/
.sec3 {
  background: #123a8f;
  color: #fff;
  text-align: center;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: transparent linear-gradient(107deg, #123a8f 0%, #123a8f 100%) 0% 0% no-repeat padding-box;
  background-size: cover;
  padding: 80px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #123a8f;
  border: 2px solid #123a8f;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #123a8f;
}

.btn {
  color: #fff;
  background-color: #123a8f;
  border: 3px solid #123a8f;
}

.btn:hover {
  color: #123a8f;
  background-color: #fff;
  border: 3px solid #123a8f;
}

.modal-header {
  background: #123a8f;
  color: #fff;
}