@charset "UTF-8";
/* header */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&display=swap");
.header {
  display: block;
  width: 100%;
  position: relative;
  z-index: 99;
  padding: 15px;
  position: sticky;
  top: 0;
  left: 0;
  background-color: white;
}
.header.scrolled {
  box-shadow: 0px 2px 10px -5px rgba(0, 0, 0, 0.3);
}
.header .item-left {
  flex: 0 0 17%;
}
.header .logo a {
  font-size: 30px;
  color: #4169E1;
  font-weight: 700;
  text-decoration: none;
}
.header .item-center {
  flex: 0 0 66%;
}
.header .item-right {
  flex: 0 0 17%;
  display: flex;
  justify-content: flex-end;
}
.header .item-right a {
  text-decoration: none;
  font-size: 16px;
  color: #001a4d;
  display: inline-block;
  margin-left: 10px;
  transition: color 0.3s ease;
}
.header .menu .menu-main {
  margin-bottom: 0 !important;
  display: flex;
  justify-content: center;
  gap: 25px;
}
@media (max-width: 991px) {
  .header .menu .menu-main {
    justify-content: flex-start;
    flex-direction: column;
    padding: 0;
    gap: 0;
  }
}
.header .menu > ul > li {
  display: inline-block;
}
.header .menu > ul > li > a {
  font-size: 15px;
  font-weight: 500;
  color: #001a4d;
  position: relative;
  text-transform: capitalize;
  transition: color 0.3s ease;
}
.header .menu > ul > li .sub-menu {
  position: absolute;
  z-index: 500;
  background-color: white;
  box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
  padding: 20px 30px;
  transition: all 0.5s ease;
  margin-top: 25px;
  opacity: 0;
  visibility: hidden;
}
.header .menu > ul > li .sub-menu > ul > li {
  line-height: 1;
}
.header .menu > ul > li .sub-menu > ul > li > a {
  display: inline-block;
  padding: 10px 0;
  font-size: 15px;
  color: #001a4d;
  transition: color 0.3s ease;
  text-decoration: none;
  text-transform: capitalize;
}
.header .menu > ul > li .single-column-menu {
  min-width: 280px;
  max-width: 350px;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul {
  line-height: 1;
  padding-left: 3px;
  margin-bottom: 20px;
  display: block;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li {
  line-height: 1;
  display: block;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
  padding: 10px 0;
  display: inline-block;
  font-size: 15px;
  color: #001a4d;
  transition: color 0.3s ease;
}
.header .menu > ul > li .sub-menu.mega-menu {
  left: 50%;
  transform: translateX(-50%);
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 15px;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item {
  flex: 0 0 25%;
  padding: 0 15px;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item .title {
  font-size: 16px;
  color: #4169E1;
  font-weight: 500;
  line-height: 1;
  padding: 10px 0;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title {
  text-align: center;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img {
  max-width: 100%;
  width: 100%;
  vertical-align: middle;
  margin-top: 10px;
  height: 300px;
  object-fit: cover;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a:hover,
.header .menu > ul > li .sub-menu > ul > li > a:hover,
.header .item-right a:hover,
.header .menu > ul > li:hover > a {
  color: #4169E1;
}
@media (min-width: 992px) {
  .header .menu > ul > li.menu-item-has-children:hover .sub-menu {
    margin-top: 0;
    visibility: visible;
    opacity: 1;
  }
}
.header {
  /*responsive*/
}
@media (max-width: 991px) {
  .header .item-center {
    order: 3;
    flex: 0 0 100%;
  }
  .header .v-center {
    justify-content: space-between;
  }
  .header .mobile-menu-trigger {
    display: flex;
    height: 30px;
    width: 30px;
    margin-left: 15px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
  }
  .header .mobile-menu-trigger span {
    display: block;
    height: 2px;
    background-color: #333333;
    width: 24px;
    position: relative;
  }
  .header .mobile-menu-trigger span:before,
  .header .mobile-menu-trigger span:after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333333;
  }
  .header .mobile-menu-trigger span:before {
    top: -6px;
  }
  .header .mobile-menu-trigger span:after {
    top: 6px;
  }
  .header .item-right {
    align-items: center;
  }
  .header .menu {
    position: fixed;
    width: 320px;
    background-color: #ffffff;
    left: 0;
    top: 0;
    height: 100%;
    overflow: hidden;
    transform: translate(-100%);
    transition: all 0.5s ease;
    z-index: 1099;
  }
  .header .menu.active {
    transform: translate(0%);
  }
  .header .menu > ul > li {
    line-height: 1;
    margin: 0;
    display: block;
  }
  .header .menu > ul > li > a {
    line-height: 50px;
    height: 50px;
    padding: 0 50px 0 15px;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .header .menu > ul > li > a i {
    position: absolute;
    height: 50px;
    width: 50px;
    top: 0;
    right: 0;
    text-align: center;
    line-height: 50px;
    transform: rotate(-90deg);
  }
  .header .menu .mobile-menu-head {
    display: flex;
    height: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 501;
    position: sticky;
    background-color: #ffffff;
    top: 0;
  }
  .header .menu .mobile-menu-head .go-back {
    height: 50px;
    width: 50px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #000000;
    font-size: 16px;
    display: none;
  }
  .header .menu .mobile-menu-head.active .go-back {
    display: block;
  }
  .header .menu .mobile-menu-head .current-menu-title {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
  }
  .header .menu .mobile-menu-head .mobile-menu-close {
    height: 50px;
    width: 50px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #000000;
    font-size: 25px;
  }
  .header .menu .menu-main {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .header .menu > ul > li .sub-menu.mega-menu,
  .header .menu > ul > li .sub-menu {
    visibility: visible;
    opacity: 1;
    position: absolute;
    box-shadow: none;
    margin: 0;
    padding: 15px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 65px;
    max-width: none;
    min-width: auto;
    display: none;
    transform: translateX(0%);
    overflow-y: auto;
  }
  .header .menu > ul > li .sub-menu.active {
    display: block;
  }
  .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img {
    margin-top: 0;
  }
  .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title {
    margin-bottom: 20px;
  }
  .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center:last-child .title {
    margin-bottom: 0px;
  }
  .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item {
    flex: 0 0 100%;
    padding: 0px;
  }
  .header .menu > ul > li .sub-menu > ul > li > a,
  .header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
    display: block;
  }
  .header .menu > ul > li .sub-menu.mega-menu > .list-item > ul {
    margin-bottom: 15px;
  }
  .header .menu-overlay {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1098;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
  }
  .header .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }
}
@media (max-width: 575px) {
  .header .menu {
    width: 100%;
  }
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes slideRight {
  0% {
    opacity: 1;
    transform: translateX(0%);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}
.v-center {
  align-items: center;
}

/* banner section */
.banner-section {
  background-image: url("../img/banner.jpg");
  background-size: cover;
  background-position: center;
  height: 700px;
  width: 100%;
  display: block;
}

.mobile-menu-head,
.mobile-menu-trigger {
  display: none;
}

.footer {
  background-color: #001a4d;
}
.footer .wrapper {
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .footer .wrapper {
    padding: 50px 0;
  }
}
.footer .wrapper .logo {
  font-size: 26px;
  color: white;
  font-weight: 600 !important;
}
.footer .wrapper .logo img {
  height: 47px;
  margin-bottom: 30px;
}
@media screen and (max-width: 991px) {
  .footer .wrapper .logo img {
    width: 100px;
  }
}
.footer .wrapper .logo p {
  font-size: 16px;
  color: #CCE6F2;
  font-weight: 400;
  max-width: 440px;
}
@media screen and (max-width: 991px) {
  .footer .wrapper .logo p {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .footer .wrapper .logo p {
    font-size: 16px;
  }
}
.footer .wrapper .info h2 {
  font-size: 22px;
  font-weight: 500;
  color: #28dbdb;
  margin-bottom: 26px;
}
@media screen and (max-width: 991px) {
  .footer .wrapper .info h2 {
    margin-top: 40px;
  }
}
.footer .wrapper .info ul {
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 991px) {
  .footer .wrapper .info ul {
    display: flex;
    flex-direction: column;
  }
}
.footer .wrapper .info ul li {
  list-style-type: none;
  font-size: 16px;
  color: #CCE6F2;
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 991px) {
  .footer .wrapper .info ul li {
    text-align: left;
  }
}
.footer .wrapper .info ul li a {
  font-size: 16px;
  font-weight: 500;
  color: #CCE6F2;
}
.footer .wrapper .info ul li a:hover {
  color: #28dbdb;
}
.footer .wrapper .info ul li a img {
  width: 74px;
}
.footer .wrapper .info ul li a img:hover {
  opacity: 0.7;
}
.footer .wrapper .info ul li:last-child {
  margin-bottom: 0;
}
.footer .wrapper .info ul li img {
  width: 16px;
  height: 20px;
  margin-top: 2px;
}
.footer .wrapper .info ul li .call {
  text-decoration: underline;
}
.footer .copy-right {
  padding-bottom: 25px;
}
.footer .copy-right .links {
  display: flex;
  align-items: center;
  gap: 25px;
}
@media screen and (max-width: 991px) {
  .footer .copy-right .links {
    gap: 10px;
    flex-direction: column;
  }
}
.footer .copy-right .links p {
  font-size: 16px;
  font-weight: 400;
  color: #CCE6F2;
}
.footer .copy-right .links a {
  font-size: 14px;
  font-weight: 500;
  color: #CCE6F2;
}

.hero-section {
  padding: 80px 0 60px;
}
@media (max-width: 991px) {
  .hero-section {
    padding: 60px 0;
  }
}
@media (max-width: 575px) {
  .hero-section {
    padding: 35px 0;
  }
}
.hero-section .hero-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 991px) {
  .hero-section .hero-content {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .hero-section .hero-content {
    gap: 15px;
  }
}
.hero-section .hero-content span.headline {
  color: white;
  font-size: 14px;
  background-color: #4169E1;
  border-radius: 50px;
  width: max-content;
  padding: 6px 12px;
  max-width: 100%;
}
@media (max-width: 767px) {
  .hero-section .hero-content span.headline {
    display: none;
  }
}
.hero-section .hero-content h2 {
  color: #001a4d;
  font-size: 42px;
}
.hero-section .hero-content h2 span {
  color: #4169E1;
}
@media (max-width: 767px) {
  .hero-section .hero-content h2 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 575px) {
  .hero-section .hero-content h2 {
    font-size: 28px;
  }
}
.hero-section .hero-content p {
  color: #001a4d;
  font-size: 20px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .hero-section .hero-content p {
    font-size: 16px;
  }
}
.hero-section .hero-content .btn-wrap {
  display: flex;
  gap: 20px;
}
@media (max-width: 767px) {
  .hero-section .hero-content .btn-wrap {
    gap: 15px;
  }
}

.our-stresses {
  padding: 80px 0;
}
@media (max-width: 991px) {
  .our-stresses {
    padding: 60px 0;
  }
}
@media (max-width: 575px) {
  .our-stresses {
    padding: 35px 0;
  }
}
.our-stresses .stress-card {
  width: 100%;
  padding: 20px;
  background-color: rgba(65, 105, 225, 0.1);
  border: 2px solid rgba(65, 105, 225, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  height: 100%;
}
@media (max-width: 767px) {
  .our-stresses .stress-card {
    border-radius: 10px;
    gap: 10px;
  }
}
.our-stresses .stress-card .icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 200px;
  text-align: center;
  transition: all 0.3s ease;
}
.our-stresses .stress-card .icon img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.our-stresses .stress-card .icon i {
  font-size: 22px;
}
.our-stresses .stress-card p {
  color: #001a4d;
  font-size: 16px;
  transition: all 0.3s ease;
}
.our-stresses .stress-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-color: #4169E1;
}
.our-stresses .stress-card:hover .icon {
  box-shadow: 0px -10px 8px rgba(0, 0, 0, 0.2);
  transform: rotate(-10deg);
}

.enhance-payments {
  padding: 80px 0;
  background-color: rgba(65, 105, 225, 0.03);
}
@media (max-width: 991px) {
  .enhance-payments {
    padding: 60px 0;
  }
}
@media (max-width: 575px) {
  .enhance-payments {
    padding: 35px 0;
  }
}
.enhance-payments .experience-card {
  max-width: 750px;
  border: 2px solid #4169E1;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0 auto;
  background-color: rgba(65, 105, 225, 0.05);
}
@media (max-width: 991px) {
  .enhance-payments .experience-card {
    padding: 20px;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .enhance-payments .experience-card {
    border-radius: 10px;
  }
}
.enhance-payments .experience-card h4,
.enhance-payments .experience-card p,
.enhance-payments .experience-card li {
  color: #001a4d;
}
.enhance-payments .experience-card hr {
  margin: 0;
  padding: 0;
}
.enhance-payments .experience-card ul {
  margin: 0;
  padding: 0;
}
.enhance-payments .experience-card ul li {
  font-size: 16px;
  padding-left: 16px;
  margin-bottom: 6px;
}
.enhance-payments .experience-card ul li::marker {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f058";
  color: #4169E1;
}
.enhance-payments .feature-box {
  width: 100%;
  height: 100%;
  border: 2px solid #4169E1;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background-color: rgba(65, 105, 225, 0.05);
}
@media (max-width: 991px) {
  .enhance-payments .feature-box {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .enhance-payments .feature-box {
    border-radius: 10px;
    gap: 20px;
  }
}
.enhance-payments .feature-box h3 {
  font-size: 22px;
  color: #001a4d;
}

.pricing-section {
  padding: 80px 0;
}
@media (max-width: 991px) {
  .pricing-section {
    padding: 60px 0;
  }
}
@media (max-width: 575px) {
  .pricing-section {
    padding: 35px 0;
  }
}
.pricing-section .price-plan {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) {
  .pricing-section .price-plan {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .pricing-section .price-plan {
    height: max-content;
    border-radius: 10px;
    margin-bottom: 20px;
  }
}
.pricing-section .price-plan.most-popular {
  border: 2px solid #4169E1;
  height: calc(100% + 30px);
  margin-top: -15px;
  padding-top: 50px;
  position: relative;
}
@media (max-width: 767px) {
  .pricing-section .price-plan.most-popular {
    margin-top: 0;
    height: 100%;
  }
}
.pricing-section .price-plan.most-popular .top-tag {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #4169E1;
  color: white;
  text-align: center;
  width: max-content;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}
.pricing-section .price-plan h4 {
  color: #001a4d;
}
.pricing-section .price-plan p {
  color: #001a4d;
}
.pricing-section .price-plan h2.price {
  font-size: 44px;
  color: #4169E1;
  margin: 5px 0 15px;
}
@media (max-width: 767px) {
  .pricing-section .price-plan h2.price {
    font-size: 26px;
  }
}
.pricing-section .price-plan .content ul {
  text-align: left;
}
.pricing-section .price-plan .content ul li {
  margin: 5px 0;
}
.pricing-section .price-plan.monthly {
  margin: 30px auto 0;
  max-width: 750px;
  padding-bottom: 0;
  text-align: left;
}
@media (max-width: 767px) {
  .pricing-section .price-plan.monthly {
    max-width: 100%;
    margin-top: 0px;
    padding-bottom: 20px;
  }
}
.pricing-section .price-plan.monthly .item-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  background-color: rgba(65, 105, 225, 0.03);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.pricing-section .price-plan.monthly .item-box .name {
  font-size: 16px;
  color: #001a4d;
}
.pricing-section .price-plan.monthly .item-box .price {
  font-size: 20px;
  color: #4169E1;
  font-weight: 800;
}
@media (max-width: 767px) {
  .pricing-section .price-plan.monthly .item-box .price {
    font-size: 16px;
    font-weight: 600;
  }
}

.expereince-section {
  padding: 80px 0;
}
@media (max-width: 991px) {
  .expereince-section {
    padding: 60px 0;
  }
}
@media (max-width: 575px) {
  .expereince-section {
    padding: 35px 0;
  }
}
.expereince-section .expereince-box {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  text-align: center;
  border: 2px solid lightgrey;
  transition: 0.3s all;
}
@media (max-width: 767px) {
  .expereince-section .expereince-box {
    border-radius: 10px;
  }
}
.expereince-section .expereince-box:hover {
  border: 2px solid #4169E1;
}
.expereince-section .expereince-box .img-wrap {
  background-color: rgba(65, 105, 225, 0.03);
  width: 60px;
  height: 60px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
}
.expereince-section .expereince-box .img-wrap img {
  width: 100%;
}

.cta-section {
  padding: 80px 0;
  background-color: rgba(65, 105, 225, 0.05);
}
@media (max-width: 991px) {
  .cta-section {
    padding: 60px 0;
  }
}
@media (max-width: 575px) {
  .cta-section {
    padding: 35px 0;
  }
}
.cta-section .title-area {
  gap: 40px;
  margin-bottom: 40px;
}
.cta-section .title-area h2 {
  font-size: 3.5rem;
}
@media (max-width: 991px) {
  .cta-section .title-area {
    gap: 20px;
    margin-bottom: 20px;
  }
  .cta-section .title-area h2 {
    font-size: 2.5rem;
  }
}

* {
  scroll-behavior: smooth !important;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

body {
  line-height: 1.5;
  font-weight: 400;
  overflow-x: hidden;
}

:before,
:after {
  box-sizing: border-box;
}

.v-center {
  align-items: center;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  outline: 0;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.container {
  max-width: 1408px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}
@media (max-width: 1600px) {
  .container {
    max-width: 1350px;
  }
}

span {
  margin-bottom: 0px;
}

p {
  margin-bottom: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0px;
  font-weight: 700;
  font-family: "Playfair Display", Arial;
}
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  font-family: "Playfair Display", Arial;
  font-weight: 600;
}

button {
  border: none;
  outline: none;
  transition: 0.2s ease-in-out;
}

.outline-button {
  background-color: transparent;
  color: #4169E1;
  display: block;
  max-width: 100%;
  white-space: nowrap;
  width: max-content;
  padding: 10px 40px;
  font-size: 20px;
  border-radius: 200px;
  font-weight: 600;
  outline: none;
  border: 1px solid #4169E1;
}
.outline-button:hover {
  background-color: #4169E1;
  color: white;
}
@media (max-width: 767px) {
  .outline-button {
    font-size: 16px;
    padding: 10px 15px;
  }
}

.custom-btn {
  background-color: #4169E1;
  color: white;
  display: block;
  max-width: 100%;
  white-space: nowrap;
  width: max-content;
  padding: 10px 40px;
  font-size: 20px;
  border-radius: 200px;
  font-weight: 600;
  outline: none;
  border: 1px solid #4169E1;
}
.custom-btn:hover {
  background-color: transparent;
  color: #4169E1;
}
@media (max-width: 767px) {
  .custom-btn {
    font-size: 16px;
    padding: 10px 15px;
  }
}

.btn-area {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 80px;
  text-align: center;
}
@media (max-width: 991px) {
  .btn-area {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .btn-area {
    margin-top: 40px;
  }
}

span {
  color: #4169E1;
}

.title-area {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 80px;
  text-align: center;
}
@media (max-width: 991px) {
  .title-area {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .title-area {
    margin-bottom: 40px;
  }
}
.title-area h2 {
  color: #001a4d;
  font-size: 42px;
}
@media (max-width: 991px) {
  .title-area h2 {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .title-area h2 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 575px) {
  .title-area h2 {
    font-size: 26px;
  }
}
.title-area p {
  color: #001a4d;
  max-width: 750px;
  font-size: 20px;
  font-weight: 400;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .title-area p {
    max-width: 550px;
    font-size: 16px;
  }
}

.content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.content h2 {
  color: #001a4d;
  font-size: 38px;
}
@media (max-width: 767px) {
  .content h2 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 575px) {
  .content h2 {
    font-size: 26px;
  }
}
.content h2 span {
  color: #4169E1;
}
.content p {
  color: #001a4d;
  font-size: 16px;
  font-weight: 400;
}
.content ul {
  padding-left: 10px;
}
.content ul li {
  font-size: 16px;
  color: #001a4d;
  padding-left: 10px;
}
.content ul li::marker {
  content: "✔";
  color: #4169E1;
  font-size: 18px;
}

.img-wrap {
  width: 100%;
}
.img-wrap img {
  width: 100%;
  max-height: 600px;
  object-fit: contain;
}
@media (max-width: 991px) {
  .img-wrap img {
    max-height: 400px;
  }
}
@media (max-width: 767px) {
  .img-wrap img {
    max-height: 280px;
  }
}

/*# sourceMappingURL=main.css.map */
