/* Lexend */
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');


::selection {
    color: #F6F8F8;
    background: #F06858;
}

::-webkit-scrollbar {
    z-index: 999;
    position: absolute;
    background: transparent;
    width: 4px;
}

::-webkit-scrollbar-thumb {
    background: #F06858;
    border-radius: 50px;
}

* {
    box-sizing: border-box; 
}

:root {    
    --icon-space: 30px;
}

body {
    background-color: #F6F8F8 !important;
    overflow-x: hidden;
    width: 100vw;
    font-family: "Lexend", sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0px !important;
    color: #111718;
}

p {
    color: #618689;
    font-size: 16px;
    font-weight: 500;
    line-height: 180%;
    margin-bottom: 1rem;
}

p.small {
    font-size: 14px;
}

p.bold {
    color: #111718;
    font-weight: 600;
}

.p-dark p {
    color: #475569 !important;
}

.uppercase {
    text-transform: uppercase;
}

.sec ul,
.sec ol {
    color: #618689;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 140%;
}

.sec ul {
    list-style: none;
    position: relative;
    padding-left: var(--icon-space) !important;
}

.sec ul li {
    padding-left: calc(var(--icon-space) - 15px);
    display: flex;
    flex-direction: column;
    padding-bottom: 1rem;
}

.sec ul li > b {
    margin-bottom: 4px;
}

.sec ul li span {
    width: var(--icon-space);
    height: var(--icon-space);
    flex-shrink: 0;
    position: absolute;
    left: 0;
    border-radius: 100px;
    background-color: rgba(8, 105, 114, 0.1);
    content: "";
    display: flex;
    justify-content: center;
    align-items: center;
}

.sec ul li p:last-child {
    margin-bottom: 0;
}

.sec ul li i {
    font-size: 15px;
}

ul.green li span {
    background-color: rgba(8, 105, 114, 0.1);
}

ul.green li i {
    color: #066871;
}

ul.orange li span {
    background-color: rgba(240, 103, 88, 0.1);
}

ul.orange li i {
    color: #F06858;
}

.w-100 {
    min-width: 100% !important;
}

.sec-head {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    position: relative;
    padding-bottom: 1rem;
}

.sec-head h1 {
    line-height: 100%;
    font-weight: 900;
}

.sec-head h1 > span {
    color: #066871;
}

.sec-head > span {
    text-transform: uppercase;
    color: #066871;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 0;
}

.sec-head h2 {
    font-weight: 700;
    position: relative;
}

.sec-head > h2.underline {
    padding-bottom: 1.5rem;
    margin-bottom: 0.8rem !important;
}

.sec-head > h2.underline::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 85px;
    height: 5.5px;
    background-color: #066871;
    border-radius: 100px;
}

.sec-head > h2.orange-underline::after {
    background-color: #F06858;
}

.sec-head p {
    font-size: 15px;
}

.sec-head h3 {
    font-size: 30px;
    font-weight: 700;
    padding-bottom: 1rem;
}

.sec-head h4.byline {
    color: #066871;
    font-weight: 700;
}

.img-container {    
    position: relative;
    display: flex;
}

img.sec-img {
    object-fit: cover;
    background-position: center center;
    border-radius: 20px;
    width: 100%;
    height: auto;
    box-shadow: 1px 2px 7px rgba(0, 0, 0, 0.2);
}

.img-container .img-highlight {
    padding: 25px 30px;
    border-radius: 15px;
    background-color: #066871;
    box-shadow: 1px 2px 7px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    position: absolute;
    bottom: -30px;
    right: -25px;
    width: fit-content;
}

.img-container .img-highlight-orange {
    background-color: #F06858 !important;
}

.img-container .img-highlight-left {
    right: unset;
    left: -25px;
}

.img-container .img-highlight span {
    font-size: 36px;
    font-weight: 700;
    line-height: 100%;
}

.img-container .img-highlight p {
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 14px;
    color: #ffffff;
}

.sec {
    padding: 50px 0;
    margin-top: 0 !important;
}

.box-border {
    padding: 40px;
    background-color: #F8FAFC;
    border: 2px solid #E2E8F0;
    border-radius: 20px;
}

.highlight-sec {
    background-color: #ffffff;
    padding: 60px 0px;
}

.green {
    color: #066871 !important;
}

.orange {
    color: #F06858 !important;
}

.highlight {
    color: #F06858 !important;
}

.border-bottom {
    padding-bottom: 1rem !important;
    border-bottom: 1px solid #E2E8F0 !important;
}

.btn {
    text-decoration: none !important;
    width: fit-content !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    border-radius: 7px !important;
    font-family: "Lexend", sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    padding: 14px 20px !important;
    transition: 0.3s ease !important;
    border: 2px solid !important;
}

.btn i {
    color: inherit !important;
    transition: 0.3s ease !important;
}

.btn:hover i {
    transform: translateX(6px) !important;
}

.back-btn:hover i {
    transform: translateX(-6px) !important;
}

.primary-btn {
    background-color: #F06858 !important;
    color: #ffffff !important;
    border-color: #F06858 !important;
    box-shadow: 0 8px 13px rgba(0, 0, 0, 0.25) !important;
    border-color: #F06858;
}

.primary-btn:hover {
    background-color: #e74735 !important;
    border-color: #e74735 !important;
}

.secondary-btn {
    background-color: #ffffff !important;
    color: #066871 !important;
    border-color: rgba(97, 134, 137, 0.2) !important;
}

.secondary-btn:hover {
    background-color: #066871 !important;
    color: #ffffff !important;
}

.green-btn {
    background-color: #066871 !important;
    color: #FFFFFF !important;
    border-color: #066871 !important;
}

.green-btn:hover {
    background-color: #ffffff !important;
    color: #066871 !important;
}

.white-btn {
    background-color: #FFFFFF !important;
    color: #F06858 !important;
}

.white-btn:hover {
    background-color: #F8FAFC !important;
    border-color: #F8FAFC !important;
}

.white-btn-hollow {
    border: 2px solid #ffffff !important;
    color: #FFFFFF !important;
}

.white-btn-hollow:hover {
    background-color: #FFFFFF !important;
    color: #F06858 !important;
}

.nav-btn {
    padding: 7px 20px !important;
}

.text-btn {
    color: #F06858;
    font-family: "Lexend", sans-serif;
    font-size: 17px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    max-width: fit-content;
    gap: 10px;
    transition: 0.3s ease;
    min-width: max-content;
}

.text-btn:hover {
    gap: 15px;
}

.box-text {
    text-transform: uppercase;
    color: #066871;
    background-color: rgba(8, 105, 114, 0.1);
    padding: 2px 13px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    max-width: fit-content;
    border-radius: 5px;
    text-decoration: none;
}

.box-text {
    color: #066871;
}

.pill {
    background-color: #066871;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 100px;
    color: #ffffff;
    padding: 3px 15px;
}

.box-dark {
    background-color: rgba(8, 105, 114, 0.1);
    border-radius: 20px;
}

/* Navbar */
.navbar {
    top: 0;
    z-index: 999;
    position: relative !important;
    width: 100%;
    padding: 20px 0px !important;
    background: #ffffff !important;
    transition: 0.5s ease;
    display: flex;
    justify-content: center !important;
    border-bottom: 1px solid #E5E7EB;
}

/* Navbar when scrolled */
.navbar.scrolled {
    position: fixed !important;
    padding: 15px 0px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid #ffffff;
}

.nav-inner {
    display: flex;
    flex-direction: row;
    align-items: center !important;
    justify-content: space-between;
    height: 100% !important;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo>img {
    width: 180px;
    height: auto;
    transition: 0.5s ease;
}

.navbar.nav-logo.scrolled img {
    width: 140px !important;
}


.navbar .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: fit-content;
}

a.nav-link {
    font-weight: 500;
    font-size: 15px;
    line-height: 100%;
    transition: 0.3s ease;
    color: #111718;
    padding: 8px 10px;
    border-radius: 5px;
    border: 2px solid #f0675800;
}

a.nav-link:hover {
    border: 2px solid #F06858;
    color: #F06858;
}

/* dropdown */
.dropdown-li {
    position: relative;
}

.dropdown-li > a.nav-link {
    display: flex;
    flex-direction: row;
    gap: 6px;
    align-items: center;
    border-radius: 5px;
}

.dropdown-li.open > a.nav-link {
    border: 2px solid #F06858;
    color: #F06858;
}

a.nav-link .dropdown {
    transition: 0.3s ease;
}

.dropdown-li.open .dropdown {
    transform: rotate(180deg) translateY(1px);
}

.dropdown-li .dropdown-wrapper {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(55px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    background-color: #F06858;
    border-radius: 10px;
    padding: 30px 25px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.4s ease;
    z-index: 999;
}

.dropdown-li.open .dropdown-wrapper {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(15px);
}

/* .dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 0px;
} */

ul.sub-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 8px;
    row-gap: 0px;
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}

.dropdown-grid a.nav-link {
    font-weight: 500;
    font-size: 15px;
    line-height: 100%;
    transition: 0.3s ease;
    color: #ffffff !important;
    padding: 13px 20px 13px 13px;
    border-radius: 10px;
    min-width: max-content;
}

.dropdown-grid a.nav-link:hover {
    transform: unset;
    background-color: #e74735;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}


/* primary-card */
.primary-card {
    border-radius: 20px;
    background-color: #ffffff;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.primary-card-dark {
    background-color: #F6F8F8;
}

.icon {
    display: flex;
    background-color: rgba(8, 105, 114, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.icon i {
    font-size: 25px;
    color: #066871;
}

.orange-icon {
    background-color: rgba(240, 103, 88, 0.1) !important;    
}

.orange-icon i {
    color: #F06858 !important;
}

.green-icon {
    background-color: #066871 !important;    
}

.green-icon i {
    color: #ffffff !important;
}

.icon-round {
    border-radius: 100px;
}

.card-title {
    font-weight: 700;
    line-height: 130%;
}

.primary-card p {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 0;
}

.primary-card .inner {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.primary-card .img {
    width: 100%;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
}

.primary-card .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: center;
    transition: 0.3s ease;
}

.primary-card .img:hover img {
    scale: 1.1;
}



/* feat-box */
.feat-box {
    padding: 20px 17px;
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    border: 2px solid rgba(8, 105, 114, 0.2);
}

.feat-box span {
    color: #086A72;
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
}

.feat-box p {
    font-size: 13px;
    margin-bottom: 0;
    line-height: 130%;
}


/* secondary-card */
.secondary-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
    border-radius: 20px;
    background-color: #F6F8F8;
    border: 1px solid #F3F4F6;
    padding: 30px 35px;
}

.secondary-card  .card-inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card-head {
    display: flex;
    gap: 10px;
    align-items: center;
}

.secondary-card .card-head p {
    text-transform: uppercase;
    color: #066871;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.secondary-card > p {
    font-size: 15px;
    font-weight: 400;
}

a.secondary-card-btn {
    color: #066871;
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 2px;
    text-decoration: none;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

a.secondary-card-btn:hover {
    gap: 15px;
}

a.secondary-card-btn i {
    color: inherit;
    font-size: inherit;
}


.features {
    background-color: #ffffff;
    border-radius: 20px;
    border: 1px solid #F1F5F9;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: center;
}

.feat {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-right: 20px;
    border-right: 1px solid #618689;
}

.feat:last-child {
    padding-right: 0px;
    border-right: none;
}

.feat div {
    display: flex;
    gap: 9px;
    flex-direction: column;
}

.feat div p,
.feat div h5 {
    margin-bottom: 0;
    line-height: 135%;
}

.feat .icon {
    width: 60px;
    height: 60px;
    border-radius: 100px;
}

.feat .icon i {
    font-size: 30px;
}




/* price-card */
.price-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: space-between;
    background-color: #ffffff;
    border: 1px solid #F1F5F9;
    border-radius: 20px;
    padding: 30px 25px;
}

.price-card .card-inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-card h5 {
    font-weight: 700;
}

.price-card p {
    font-size: 15px;
    margin-bottom: 0;
}

.price-card p.price {
    color: #64748B;
}

.price-card p.price span {
    color: #111718;
    font-weight: 800;
    font-size: 40px;
}

.price-card p.valid {
    background-color: #F1F5F9;
    color: #111718 !important;
    text-transform: uppercase;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    width: fit-content;
    padding: 1px 10px;
}

.price-card .price-btn {
    text-decoration: none;
    border: 2px solid #066871;
    border-radius: 18px;
    text-align: center;
    color: #066871;
    background-color: none;
    font-weight: 500;
    line-height: 100%;
    padding: 17px 25px;
    transition: 0.3s ease;
}

.price-card .price-btn:hover {
    background-color: #066871;
    color: #ffffff;
}

.best-value {
    border: 2px solid #066871;
    position: relative;
}

.best-value .pill {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    top: 0;
}

.best-value p.valid {
    color: #066871 !important;
}

.best-value .price-btn {
    background-color: #066871;
    color: #ffffff;
}

.best-value .price-btn:hover {
    background-color: #ffffff;
    color: #066871;
}


/* list-box */
.list-box {
    background-color: #FFFFFF;
    border:  2px solid #F1F5F9;
    display: flex;
    align-items: center;
    border-radius: 20px;
    padding: 10px 18px;
    gap: 15px;
}

.list-box p {
    margin-bottom: 0;
    line-height: 180%;
    color: #111718;
    font-weight: 500;
}

.list-box i {
    color: #066871;
    font-size: 25px;
}




/* list-pill */
.list-pill {
    background-color: #FFFFFF;
    border:  2px solid #E2E8F0;
    display: flex;
    align-items: center;
    border-radius: 100px;
    padding: 6px 10px;
    gap: 15px;
}

.list-pill p {
    margin-bottom: 0;
    line-height: 180%;
    color: #475569;
    font-weight: 500;
    font-size: 15px;
}

.list-pill i {
    color: #F06858;
    font-size: 18px;
}




/* testimonials */
.testimonials {
    position: relative;
}

.testimonials .swiper-backface-hidden .swiper-slide {
    display: flex;
    justify-content: center;
}

.testimonials .swiper-slide {
    min-height: 100%;
    height: unset;
}

.testimonials-toggle {
    display: flex;
    flex-direction: row !important;
    align-items: center;
    gap: 20px !important;
    position: relative;
    width: auto;
    height: 50px !important;
}

.testimonials-toggle .swiper-button-prev,
.testimonials-toggle .swiper-button-next {
    width: 50px !important;
    height: 50px !important;
    border-radius: 100px;
    position: static !important;
    top: 0px !important;
    bottom: 0px !important;
    margin-top: unset !important;
    transform: translateX(0);
    transition: 0.3s ease;
    border: 2px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-toggle .swiper-button-prev:hover,
.testimonials-toggle .swiper-button-next:hover {
    background-color: #E5E7EB;
}

.testimonials-toggle .swiper-button-prev::after,
.testimonials-toggle .swiper-button-next::after {
    display: none !important;
}

.testimonials-toggle i {
    color: #111718;
    font-size: 20px;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -40px !important;
    display: flex !important;
    align-items: center !important;
    flex-direction: row !important;
    justify-content: center !important;
    position: absolute;
    height: 16px;
}

.swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    background-color: #08697200 !important;
    opacity: 0.7 !important;
    transition: 0.3s ease !important;
    border: 3px solid #F06858;
}

.swiper-pagination-bullet-active {
    width: 15px !important;
    height: 15px !important;
    background-color: #086972 !important;
    border: 3px solid #086972 !important;
    padding: 0px !important;
    opacity: 1 !important;
}

.review-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
    min-height: 100%;
    padding: 35px 30px;
    border-radius: 30px;
    background-color: #FFFFFF;
    border: 1px solid #F3F4F6;
    cursor: grab;
}

.review-card p {
    margin-bottom: 0;
}

.review-card .review {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.review-card .review .stars {
    display: flex;
    gap: 8px;
}

.review-card .review .stars i {
    color: #FACC15;
    font-size: 17px;
}

.review-card .review p {
    color: #111718;
}

.profile {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.profile img {
    width: 55px;
    height: 55px;    
    border-radius: 100px;
    object-fit: cover;
    background-position: center;
}

.profile .creds {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.profile .creds p {
    margin-bottom: 0;
}

.profile .creds p.name {
    font-size: 18px;
    font-weight: 600;
    line-height: 100%;
    color: #111718;
}

.profile .creds p.job {
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    color: #066871;
}



/* cta-sec */
.cta-sec {
    background-color: #066871;
    border-radius: 30px;
    padding: 70px 50px;
    overflow: hidden;
    position: relative;
}

.cta-sec-orange {
    background-color: #F06858 !important;
}

.cta-sec-orange::before {
    content: "";
    width: 300px;
    height: 300px;
    border-radius: 100%;
    background-color: #000000;
    opacity: 5%;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateX(-50%) translateY(50%);
}

.cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.cta-sec::after {
    content: "";
    width: 300px;
    height: 300px;
    border-radius: 100%;
    background-color: #FFFFFF;
    opacity: 5%;
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(50%) translateY(-50%);
}

.cta-sec h2 {
    color: #ffffff;
    font-weight: 800;
}

.cta-sec-orange h2 {
    font-weight: 600;
}

.cta-sec p {
    color: #FFFFFF;
    opacity: 80%;
}




/* footer */
.footer {
    background-color: #ffffff;
    border-top: 2px solid #E5E7EB;
}

.ft-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.ft-head {
    color: #111718;
    line-height: 120%;
    margin-bottom: 1.3rem !important;
}

.footer p {
    font-size: 16px;
    font-weight: 400;
    color: #618689;
}

.footer a {
    text-decoration: none !important;
}

.ft-col {
    display: flex;
    flex-direction: column;
    margin-top: 0;
}

.ft-link-col {
    min-width: fit-content !important;
}

.ft-logo {
    width: 180px;
}

.ft-logo img {
    width: 100%;
}

.ft-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

a.ft-link {
    color: #618689;
    font-size: 16px;
    line-height: 180%;
    font-weight: 400;
    text-decoration: none;
    transition: 0.3s ease;
    max-width: fit-content;
}

a.ft-link:hover {
    transform: translateX(3px);
    color: #F06858;
}

.ft-socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.ft-socials a {
    text-decoration: none;
}

.ft-socials a i {
    color: #066871;
    font-size: 22px;
}

.ft-separator {
    border: 1px solid #F3F4F6;
    height: 100%;
}

.ft-bottom {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.ft-bottom p {
    font-size: 14px;
    margin-bottom: 0;
}


/* map - iframe */
.embed-map-responsive {
    position: relative;
    text-align: right;
    width: 100%;
    height: 220px;
    border-radius: 14px;
    overflow: hidden;
}

.embed-map-responsive-con .embed-map-responsive {
    height: 310px;
}

.embed-map-container {
    overflow: hidden;
    background: none !important;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.embed-map-frame {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
}


/* map-info-box */
.map-info-box {
    border-radius: 20px;
    background-color: #ffffff;
    padding: 15px 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.map-info-box .icon {
    display: flex;
    background-color: #F06858;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    align-items: center;
    flex-shrink: 0;
}

.map-info-box .icon i {
    font-size: 25px;
    color: #FFFFFF;
}

.map-info-box .inner {
    display: flex;
    flex-direction: column;
}

.map-info-box .inner h5 {
    font-weight: 700;
    line-height: 130%;
    text-align: left;
    width: max-content;
}

.map-info-box .inner p {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 0;
    width: max-content;
}




/* banner */
.banner {
    background-color: #F1F5F9;
    padding: 70px 50px;
    border-bottom: 1px solid #E2E8F0;
}

.banner .bread-crumb {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 0;
}

.banner .bread-crumb span {
    color: #F06858;
}

.bread-crumb-inner {
    display: flex;
    gap: 8px;
    align-items: center;
}

.bread-crumb-inner a,
.bread-crumb-inner i,
.bread-crumb-inner span {
    color: #618689;
    margin-bottom: 0;
    font-size: 19x;
    text-decoration: none;
}

.bread-crumb-inner span {
    color: #066871;
    font-weight: 800;
}



.banner h1 {
    font-weight: 700;
}

.banner h1 span {
    color: #F06858;
}

.banner p {
    color: #475569;
    margin-bottom: 0;
}




/* pointer */
.pointer {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 25px;
}

.pointer > span {
    background-color: #066871;
    line-height: 100%;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 100px;
    flex-shrink: 0;
}

.pointer .inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 4px;
}

.pointer .inner h5,
.pointer .inner p {
    margin-bottom: 0;
}

.pointer .inner h5 {
    font-weight: 600;
}

.pointer .inner p {
    color: #64748B;
    font-size: 14px;
}




/* timeline-points */
.timeline-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-points .point {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.timeline-points .icon {
    background-color: #dfeaec;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 100px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.timeline-points .icon::before {
    content: "";
    width: 4px;
    height: 75px;
    background-color: #dfeaec;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateY(100%) translateX(-50%);
    z-index: 1;
}

.timeline-points .point:last-child .icon::before {
    display: none;
}

.timeline-points .icon > i {
    color: #066871;
    font-size: 22px;
    font-weight: 600;
}

.timeline-points .point .inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 4px;
}

.timeline-points .point .inner h5,
.timeline-points .point .inner p {
    margin-bottom: 0;
}

.timeline-points .point .inner h5 {
    font-weight: 600;
}

.timeline-points .point .inner p {
    color: #64748B;
    font-size: 14px;
}

.join {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    padding-top: 30px;
}

.join p {
    margin-bottom: 0 !important;
}


/* side-bar */
.side-bar {
    background-color: #FFFFFF;
    border-radius: 15px;
    padding: 40px 35px;
    border: 2px solid #F3F4F6;
    box-shadow: 0 8px 13px rgba(0, 0, 0, 0.1) !important;
}

.card-box {
    background-color: #FFFFFF;
    border-radius: 15px;
    padding: 50px 40px;
    border: 2px solid #F3F4F6;
}



/* form */
.form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form p {
    margin-bottom: 0;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.form-field label {
    font-size: 15px;
    font-weight: 500;
    color: #111718;
    line-height: 100%;
}

.form-field input,
.form-field textarea,
.form-field select {
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid #E5E7EB;
    font-size: 17px;
    font-weight: 500;
    line-height: 130%;
    padding: 14px 10px;
    width: 100%;
    color: #F06858;
}

.form-field input:focus-visible,
.form-field textarea:focus-visible,
.form-field select:focus-visible {
    outline-offset: 0px;
    border: 2px solid #ffffff00;
    outline: 2px solid #F06858;
}

.form-field textarea {
    max-height: 100px;
}

.form-field select {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.form-field::placeholder {
    font-size: 17px;
    font-weight: 500;
    line-height: 120%;
    opacity: 1 !important;
}

.form-field select {
    position: relative;
}


.form-field select::after {
    content: "\f107";
    font-family: "Font Awesome 7 Pro";
    font-weight: 900;
    color: #066871;
    font-size: 25px;
    position: relative;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: 0.5s ease;
}

.form-field:focus-within::after {
    transform: translateY(-50%) rotate(180deg);
}

.form .btn {
    justify-content: center;
}

.newsletter-form {
    display: flex;
    gap: 20px;
    width: fit-content;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.newsletter-form .form-field input {
    height: fit-content !important;
    padding: 14px 26px;
    width: 300px;
}

.newsletter-form .btn {
    margin-top: 0 !important;
    border-radius: 12px !important;
}




/* contact-card */
.contact-card {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 22px;
}

.contact {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.contact .icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.contact .icon i {
    font-size: 17px;
    color: #066871;
}

.contact .inner {
    gap: 8px;
}

.contact .inner p,
.contact .inner a {
    color: #64748B;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s ease;
    margin-bottom: 0;
}

.contact .inner a:hover {
    color: #F06858;
    font-weight: 600;
}


.icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.icons a {
    text-decoration: none;
}

.icons .icon {
    width: 40px;
    height: 40px;
    border-radius: 100px;
    transition: 0.3s ease;
}

.icons .icon:hover {
    background-color: #066871;
}

.icons .icon i {
    transition: 0.3s ease;
}

.icons .icon:hover i {
    color: #dfeaec;
}

.icons .icon i {
    font-size: 17px;
}






.contact-form-con {
    background-color: #FFFFFF;
    border-radius: 15px;
    padding: 55px 45px;
    box-shadow: 0 8px 13px rgba(0, 0, 0, 0.05) !important;
    overflow: hidden;
    position: relative;
}

.contact-form-con::before {
    content: "";
    position: absolute;
    background-color: #F06858;
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
}

.contact-form-con .btn:hover {
    gap: 15px !important;
}

.contact-form-con .btn i {
    rotate: 45deg;
}

.contact-form-con .btn:hover i {
    transform: none !important;
}



/* single-post */
.post-img {
    border-radius: 30px;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 8px 13px rgba(0, 0, 0, 0.15) !important;
}

.post-img img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    background-position: center;
}


.course-det {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-bottom: 10px;
    border-bottom: 2px solid #E5E7EB;
}

.course-det p {
    margin-bottom: 0;
    color: #111718;
}

.course-det p.title {
    color: #618689;
    display: flex;
    align-items: center;
    gap: 10px;
}






/* faqs */
.accordion {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px;
}

.accordion-item {
    color: #111718 !important;
    background-color: #ffffff !important;
    border: none !important;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2) !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    border: 1px solid #F3F4F6;
}

.accordion-button {
    background-color: #FFFFFF !important;
    padding: 25px 30px !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    line-height: 130% !important;
    text-align: left;
    border: none !important;
    border-bottom: 2px solid #e5e7eb00 !important;
    border-radius: 0px !important;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: #066871 !important;
    box-shadow: none !important;
    border-bottom: 2px solid #e5e7eb !important;
}

.accordion-button::after {
    display: none !important;
}

.accordion h2 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.accordion h2 i {
    font-size: 26px;
}

.accordion-button i {
    font-size: 20px;
    color: #066871;
    transition: 0.3s ease;
}

.accordion-button:not(.collapsed) i {
    transform: rotate(180deg);
    color: #F06858;
}

.accordion-body {
    padding: 15px 30px !important;
}

.accordion-body p:last-child {
    margin-bottom: 0px;
}





/* blogs */
.blog-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-cards .blog-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: #FFFFFF;
    border: 1px solid #F3F4F6;
    box-shadow: 0px 20px 25px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.blog-cards .blog-card p {
    margin-bottom: 0px;
}

.blog-cards .first-card {
    grid-column: span 3;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 25px;
    margin-bottom: 30px;
}

.blog-cards .blog-card .blog-img {
    overflow: hidden;
    width: 100%;
    height: 210px;
}

.blog-cards .first-card .blog-img {
    height: 100% !important;
}

.blog-cards .blog-card .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: center;
    transition: 0.5s ease;
}

.blog-cards .first-card .blog-img img {
    height: 100%;
}


.blog-cards .blog-card .blog-img:hover img {
    transform: scale(1.1);
}

.blog-cards .blog-card .card-con {
    display: flex;
    flex-direction: column;
    padding: 30px 25px;
    gap: 14px;
    justify-content: space-between;
}

.blog-cards .blog-card .card-con .card-inner {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.blog-cards .first-card .card-con {
    padding: 55px 45px;
    justify-content: center;
    gap: 20px;
}

.blog-card a.title {
    text-decoration: none;
}

.blog-card a.title h2,
.blog-card a.title h4 {
    color: #111718;
    transition: 0.5s ease;
}

.blog-card a.title h2 {
    font-weight: 700;
}

.blog-card .card-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* fallback */
    line-height: 1.5;
    max-height: calc(1.5em * 3);
}


.blog-card a.title:hover h2,
.blog-card a.title:hover h4 {
    color: #F06858 !important;
}






/* single blog post */
.blog-header {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-header .title {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.blog-header .title h1 {
    font-weight: 800;
}

.blog-share {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    position: relative;
    width: auto;
    height: 50px !important;
}

.blog-share span {
    width: 50px;
    height: 50px;
    border-radius: 100px;
    transition: 0.3s ease;
    border: 2px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.blog-share span:hover {
    background-color: #E5E7EB;
}

.blog-share span i {
    color: #111718;
    font-size: 20px;
}

.blog-post-img {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 10px 20px 25px rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 480px;
    margin: 30px 0 50px;
}

.blog-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-content p,
.blog-content li {
    color: #374151;
}

.blog-content h2, .blog-content h3, .blog-content h4, .blog-content h5, .blog-content h6 {
    color: #086A72;
    font-weight: 700;
    margin-top: 2rem;
    padding-bottom: 1rem;
}

.blog-content p.quote {
    border-left: 4px solid #086A72;
    padding: 0.9rem 1.5rem;
    padding-right: 0;
    background-color: #F6F8F8;
}

.blog-content ul {
    margin-bottom: 1rem;
    line-height: 140%;
    position: relative;
    list-style: none;
    padding-left: 0;
}

.blog-content ul li {
    position: relative;
    padding-left: 17px;
}

.blog-content li {
    padding-bottom: 1rem;
}

.blog-content li > strong {
    color: #066871;
}

.blog-content ul li::before {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
    position: absolute;
    top:5px;
    left: 0;
    border-radius: 100px;
    background-color: #066871;
    content: "";
    display: flex;
    justify-content: center;
}

.blog-content ul li p:last-child,
.blog-content ol li p:last-child {
    margin-bottom: 0;
}

p.blog-date {
    align-self: flex-end;
    text-align: end;
    margin-top: 40px;
    margin-bottom: 0;
}





/* pricing tabs */
.tabs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

ul.tabs li {
    padding-left: 0;
}

.tabs .active {
    background-color: #066871 !important;
    color: #ffffff !important;
}

.tab-container {
    padding-top: 40px;
}

.tab-inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
}



/* price-card */
.price-card-2 {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    border: 3px solid #E5E7EB;
    border-radius: 18px;
    padding: 30px 25px;
}

.price-card-2 .card-inner {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-card-2 h5 {
    font-weight: 700;
}

.price-card-2 .per-hr {
    font-size: 14px;
}

.price-card-2 p {
    margin-bottom: 0;
    line-height: 160%;
}

.price-card-2 .price {
    color: #111718;
    font-weight: 800;
    font-size: 40px;
}


.tab-content .best-value {
    position: relative;
    border: 3px solid #086A72;
}

.tab-content .trial-pack {
    border: 3px solid #F06858;
}

.tab-content .best-value .pill {
    position: absolute;
    left: 27px;
    transform: translateY(-50%);
    top: 0;
    background-color: #E7F1F1;
    border-radius: 8px;
    color: #066871;
    padding: 8px 11px;
    font-size: 13px;
}

.tab-content .trial-pack .pill {
    background-color: #fef0ef;
    color: #F06858;
}


.price-card-2 .btn {
    min-width: max-content;
}





/* policy template */
.policy-content h2, .policy-content h3, .policy-content h4, .policy-content h5, .policy-content h6 {
    color: #086A72;
    font-weight: 700;
    margin-top: 2.5rem;
    padding-bottom: 1rem;
}

.policy-content p {
    color: #374151;
}

.policy-content a {
    color: #066871;
    font-size: 17px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.policy-content a:hover {
    color: #F06858;
}


.policy-content ul {
    padding-left: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.policy-content ul li {
    display: flex;
    padding-left: calc(var(--icon-space) - 7px);
    flex-direction: row;
    align-items: center;
    padding-bottom: 0;
    position: relative;
}

.policy-content ul li:before {
    content: "";
    width: 11px;
    height: 11px;
    border-radius: 100px;
    background-color: #F06858;
    position: absolute;
    left: 0;
}




/* form submission */
.cf7-btn-disabled {
    pointer-events: none !important;
    cursor: not-allowed;
    position: relative;
    background-color: #033a3f;    
    box-shadow: inset 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.cf7-loader-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.cf7-loader {
    width: 70px;
    height: 70px;
    border: 4px solid #F06858;
    border-top-color: transparent;
    border-radius: 50%;
    animation: cf7spin 0.8s linear infinite;
}

@keyframes cf7spin {
    to { transform: rotate(360deg); }
}





/* chat widget  */
#sw-chat-widget {
    position: fixed;
    bottom: 28px;
    right: 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

#sw-chat-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
    align-items: flex-end;
}

.sw-chat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #e4e8ef;
    border-radius: 50px;
    padding: 9px 18px 9px 10px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
    cursor: pointer;
    text-decoration: none;
    transition: box-shadow 0.18s, transform 0.18s;
    width: fit-content;
    white-space: nowrap;
}

.sw-chat-item:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.sw-chat-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
    flex-shrink: 0;
}

.sw-chat-item-icon.whatsapp {
    background: #25D366;
}

.sw-chat-item-icon.wechat {
    background: #07C160;
}

.sw-chat-item-label {
    font-size: 15px;
    font-weight: 600;
    color: #033a3f;
    line-height: 1.3;
}

.sw-chat-item-sub {
    font-size: 12px;
    color: #e74735;
}

.sw-toggle-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #F06858;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    box-shadow: 0 4px 20px rgba(240, 103, 88, 0.4);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    position: relative;
    outline: none;
}

.sw-toggle-btn:hover {
    background: #e74735;
    box-shadow: 0 6px 28px rgba(240, 103, 88, 0.5);
    transform: scale(1.06);
}

.sw-toggle-btn .sw-icon-chat,
.sw-toggle-btn .sw-icon-close {
    position: absolute;
    transition: opacity 0.2s, transform 0.2s;
}

.sw-toggle-btn .sw-icon-chat {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.sw-toggle-btn .sw-icon-close {
    opacity: 0;
    transform: rotate(-90deg) scale(0.7);
}

.sw-toggle-btn.open .sw-icon-chat {
    opacity: 0;
    transform: rotate(90deg) scale(0.7);
}

.sw-toggle-btn.open .sw-icon-close {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Pulse ring */
.sw-pulse-ring {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2.5px solid #F06858;
    opacity: 0;
    pointer-events: none;
    animation: sw-pulse 2.4s ease-out infinite;
}

@keyframes sw-pulse {
    0% {
        transform: scale(1);
        opacity: 0.55;
    }

    70% {
        transform: scale(1.65);
        opacity: 0;
    }

    100% {
        transform: scale(1.65);
        opacity: 0;
    }
}

/* Slide-up animation for menu items */
.sw-slide-in {
    animation: sw-slideUp 0.22s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes sw-slideUp {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.94);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.sw-hidden {
    display: none !important;
}