:root {
    --white: #fff;
    --light-yellow: #F9F6ED;
    --water-color: #D3EDF6;
    --primary: #0D68F7;
    --dark-blue: #17234F;
    --semi-black: #061139;
    --black: #333333;
    --heading-font: 'Copernicus', serif;
    --body-font: "Inter", sans-serif;
    --jetbrains: "JetBrains Mono", monospace;
}
body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    color: var(--dark-blue);
    background-color: var(--white);
}
body :is(a, button, input, select, textarea) {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
body *:last-child {
    margin-bottom: 0;
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
a {
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1, h2, h3, h4, h5 {
    font-family: var(--heading-font);
    color: var(--dark-blue);
}
h1 {
    font-size: 60px;
    line-height: 1.07;
    font-weight: 400;
}
h2 {
    font-size: 42px;
    line-height: 1.125;
    font-weight: 400;
}
h3 {
    font-size: 32px;
    line-height: 1.17;
    font-weight: 600;
    color: var(--semi-black);
}
h4 {
    font-size: 24px;
    line-height: 1.333;
    font-weight: 600;
}
h5 {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.333;
}
h6 {
    color: var(--primary);
    font-family: var(--jetbrains);
    font-size: 18px;
    font-weight: 700;
    line-height: 2;
    margin-bottom: 0;
}

ul.list-bullets {
    list-style-type:disc;
    padding-left: 30px;


}
p, p:last-child {
    margin-bottom: 0;
}
p a {
    color: var(--primary);
    text-decoration: underline;
}
.large {
    color: var(--dark-blue);
    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.67;
}
.primary-solid {
    font-family: var(--jetbrains);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3125;
    text-align: center;
    padding: 6px 8px 6px 28px;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 22px;
    border-radius: 8px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.primary-solid {
    color: var(--white);
    border: 1px solid var(--primary);
    background-color: var(--primary);
}
a.primary-solid p {
    margin: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.primary-solid span, .primary-transparent span {
    height: 36px;
    width: 36px;
    background-color: var(--dark-blue);
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.primary-solid i, .primary-transparent i {
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.primary-solid:hover i:not(.norotate), .primary-transparent:hover i:not(.norotate) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
}
.primary-transparent {
    font-family: var(--jetbrains);
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: var(--primary);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 12px;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
}
.primary-transparent span {
    height: 20px;
    width: 20px;
    background-color: var(--primary);
}
.primary-transparent span i {
    color: var(--white);
    font-size: 12px;
}
button.back-to-main {
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    border: 1px solid var(--primary);
    border-radius: 5px;
    padding: 6px 10px 7px 12px;
    color: var(--primary);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 9px;
    width: 100%;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: auto;
    margin-bottom: 8px;
    background: transparent;
}
.link-with-icon {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 9px;
    color: var(--dark-blue);
}
.link-with-icon i {
    font-size: 18px;
}
/* header style */
.site-header {
    position: -webkit-sticky;
    position: sticky;
    z-index: 999;
    top: 0;
    left: 0;
    background:var(--white);
    transition: transform 0.3s ease;
}
.header-hide {
    transform: translateY(-101%);
}
.header-top {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 9px 0 15px;
}
.header-top a {
    color: var(--white);
    font-size: 12px;
    line-height: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 15px;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
}
.header-top p i {
    font-size: 16px;
}
.main-header {
    position: relative;
    transition: all 0.3s;
}
.drop-shadow {
    box-shadow: 0px 8px 12px rgba(0,0,0,0.12);
}
.header-hide .drop-shadow{
    box-shadow: none;
}
nav.navmenu {
    max-width: 100%;
    margin:  auto;
}
nav.navmenu > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0;
}
nav.navmenu > ul > li > a {
    color: var(--dark-blue);
    font-size: 14px;
    line-height: 16px;
    font-family: var(--body-font);
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    gap: 4px;
    padding: 4px 0;
}
.button-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 28px;
}
.login {
    color: var(--dark-blue);
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    padding: 4px 0;
}
.megamenu-left-content ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.megamenu-left-content ul li a {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 16px;
    line-height: 2.63;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    color: var(--black);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.megamenu-left-content ul li a i {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.megamenu-left-content ul li a:hover {
    color: var(--primary);
}
.megamenu-left-content ul li a:hover i {
    opacity: 1;
    visibility: visible;
}
.megamenu-right-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 35px;
    padding: 79px 0 97px 0;
    margin-left: auto;
    max-width: 483px;
}
.megamenu-right-image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 247px;
            flex: 0 0 247px;
}
.megamenu-right-image img {
    width: 100%;
    border-radius: 15px;
}
.megamenu-right-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
}
.megamenu-right-text p {
    font-size: 14px;
    line-height: 24px;
    color: var(--dark-blue);
}
.megamenu-right-text a.primary-solid {
    background: transparent;
    border-color: transparent;
    color: var(--dark-blue);
    padding: 0;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    gap: 15px;
    font-size: 14px;
}
.megamenu-right-text a.primary-solid span {
    height: 30px;
    width: 30px;
}
.megamenu-right-text a.primary-solid i {
    color: var(--white);
}
.submenu {
    position: absolute;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.submenu ul {
    background-color: var(--water-color);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.submenu ul li a {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 16px;
    line-height: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    color: var(--black);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    padding: 0 40px;
}
.submenu ul li a:hover {
    color: var(--primary);
}

/* Footer Style */
footer.site-footer {
    background-color: var(--primary);
    padding-bottom: 80px;
    color: var(--white);
}
.footer-left-content {
    max-width: 475px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 28px;
}
.footer-left-content h2 {
    color: var(--white);
}
.footer-left-content .primary-solid {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    background: var(--dark-blue);
}
.footer-left-content .primary-solid span {
    background-color: var(--primary);
}
.footer-right-content {
    max-width: 600px;
}
.footer-image img {
    width: 100%;
    border-radius: 0 0 20px 20px;
}
.footer-image {
    margin-bottom: 54px;
}
.footer-menus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 16px;
}
.single-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
}
.single-menu h6 {
    font-weight: 700;
    font-size: 16px;
    line-height: 2;
    color: var(--white);
    border-bottom: 1px solid var(--white);
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
}
.single-menu ul li a {
    color: var(--white);
    font-weight: 500;
    font-size: 13px;
    line-height: 2.3;
}
.single-menu ul li a:hover {
    color: var(--dark-blue);
}
.footer-logo-area {
    padding-top: 115px;
}
a.footer-logo {
    max-width: 140px;
}
p.copyright-text a {
    color: var(--white);
	text-decoration: none;
}
p.copyright-text a:hover {
    color: var(--dark-blue);
}

/* hero section style */
.hero-section{
    background-color:  var(--water-color);
}
.hero-section.baby-blue{
    background-color:  var(--primary);
}
.hero-section.navy-blue{
    background-color:  var(--dark-blue);
}



.hero-section-gig{
    background-color:  var(--water-color);
}
.hero-section-gig.baby-blue{
    background-color:  var(--primary);
}
.hero-section-gig.navy-blue{
    background-color:  var(--dark-blue);
}

.hero-section-est{
    background-color:  var(--water-color);
}
.hero-section-est.baby-blue{
    background-color:  var(--primary);
}
.hero-section-est.navy-blue{
    background-color:  var(--dark-blue);
}


.hero-section-small{
    background-color:  var(--water-color);
}
.hero-section-small.baby-blue{
    background-color:  var(--primary);
}
.hero-section-small.navy-blue{
    background-color:  var(--dark-blue);
}



.hero-content {
    max-width: 566px;
}
p.audience-label {
    z-index: 99;
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
    font-family: var(--jetbrains);
    background-color: var(--dark-blue);
    color: var(--white);
    border-radius: 10px;
    padding: 22px 75px 22px 25px;
	display: inline-block;
}
.hero-content h6 {
    margin-bottom: 30px;
}
.hero-content h1 {
    margin-bottom: 16px;
}
.hero-content p {
    margin-bottom: 32px;
}
.hero-main-image {
    position: relative;
}
.hero-info-card {
    position: absolute;
    right: 0;
    top: 209px;
    z-index: 99;
    color: var(--white);
    max-width: 290px;
    text-align: right;
}
a.hero-info-card-text {
    font-size: 21px;
    line-height: 26px;
	color: var(--white);
}
a.hero-info-card-text:hover {
    text-decoration: underline;
}
span.hero-info-card-icon {
    margin-bottom: 16px;
    display: inline-block;
}
.hero-info-card i {
    font-size: 34px;
}
.hero-badge-circle {
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 99;
    -webkit-transform: translate(-50%, -36px);
            transform: translate(-50%, -36px);
}
.baby-blue h6 {
    color: var(--dark-blue);
}
.baby-blue h1, .baby-blue .large, .baby-blue a.link-with-icon, .navy-blue h1, .navy-blue .large, .navy-blue a.link-with-icon{
    color: var(--white);
}
.baby-blue .primary-solid {
    border: 1px solid var(--water-color);
    background-color: var(--water-color);
}
.baby-blue .primary-solid p {
    color: var(--dark-blue);
}
/* slider style */
.slider-container {
    overflow: hidden;
    width: 100%;
}
.slider-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
.single-image-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: 70px;
}
.single-image-box img {
    border-radius: 10px;
}

/* Benefits section style */
section.benefits-section {
    padding: 50px 0 54px;
}
.avatar-group {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 104px;
            flex: 0 0 104px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.avatar:first-child {
    margin-left: 0;
}
.avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
.text-link-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 34px;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    margin: 0 auto;
    border: 1px solid #AEB2BF;
    border-radius: 15px;
    padding: 12px 35px 11px 20px;
    margin-bottom: 75px;
}
a.link-with-icon {
    color: var(--primary);
}
a.link-with-icon .link-text {
    text-decoration: none;
}
a.link-with-icon:hover .link-text {
    text-decoration: underline;
    text-underline-offset: 3px;
}
.benefits-text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 48px;
}
.benefits-text p {
    font-size: 14px;
}

/* problem section */
section.problem-section {
    padding: 87px 0 100px;
    background-color: var(--light-yellow);
}
h2.section-title {
    max-width: 910px;
    text-align: center;
    margin: 0 auto 40px;
}
.info-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 35px;
}
.info-card-image {
    max-width: 205px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
}
.info-card-image img {
    border-radius: 10px;
}
.card-label {
    border: 1px solid #AEB2BF;
    border-radius: 8px;
	font-family: var(--jetbrains);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.714;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    padding: 7px 22px 7px 16px;
    margin-bottom: 31px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 19px;
    color: var(--dark-blue);
}
.card-label img {
    max-width: 22px;
}
.card-content h4 {
    margin-bottom: 28px;
}
.card-content p {
    line-height: 26px;
}

/* .savings-guarantee-section style */
section.savings-guarantee-section {
    padding: 40px 0;
}
.savings-guarantee-box {
    background-color: var(--water-color);
    padding: 41px 48px 40px 54px;
    border-radius: 20px;
}
.guarantee-image {
    max-width: 164px;
}

/* work section style */
section.work-section {
    padding: 100px 0;
}
.work-section-intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 40px;
    margin-bottom: 71px;
}
.work-section-intro .intro-left {
    max-width: 844px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
}
.intro-left h2, .single-plan h5 {
    margin-bottom: 0;
}
.plans {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    gap: 91px;
}
.single-plan {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 18px;
}
.single-plan .icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    max-width: 44px;
}
.single-plan .icon img {
    width: 100%;
}

/* tab section style */
section.tab-section {
    padding: 83px 0 117px;
    background-color: var(--semi-black);
    color: var(--white);
}
.tab-intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 22px;
    margin-bottom: 48px;
    max-width: 1016px;
}
.tab-intro h2 {
    color: var(--white);
}
.desktop-tab ul {
    margin-bottom: 58px;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    row-gap: 27px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.tab-btn {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    padding: 4px 24px;
    background-color: transparent;
    color: var(--white);
    border: 1px solid transparent;
    border-radius: 10px;
}
.tab-btn:hover, .mobile-carousel .tab-btn  {
    border-color: var(--white);
}
.tab-btn.active, .mobile-carousel .tab-btn  {
    background-color: var(--water-color);
    color: var(--semi-black);
}
.mobile-carousel .tab-btn {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
}
.tab-box {
    background-color: var(--dark-blue);
    border-radius: 20px;
    padding: 68px 93px 84px 87px;
}
.tab-box-content {
    max-width: 400px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
}
.tab-box-content h3 {
    color: var(--white);
	margin-bottom: 0;
}
.tab-box-image {
    width: 100%;
    max-width: 460px;
    margin-left: auto;
}
.tab-box-image img {
    border-radius: 50px;
}

/* logos section style */
section.logos-section {
    padding: 96px 0;
}
.logos-intro {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    margin-bottom: 24px;
}
.logos-intro h2, .footer-image h2{
	margin-bottom: 0;
}
.logos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 34px;
       -moz-column-gap: 34px;
            column-gap: 34px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 11px;
}
.single-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

/* Inner Hero Section Style */
.inner-hero-section {
    padding: 105px 0 128px;
    background-color: var(--dark-blue);
}
.inner-hero-content h6 {
    margin-bottom: 32px;
}
.inner-hero-content h1 {
    margin-bottom: 24px;
}
.inner-hero-content p {
    margin-bottom: 48px;
}
.inner-hero-content .button-group {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.inner-hero-content.text-white .button-group .primary-solid {
    background-color: var(--light-yellow);
    border-color: var(--light-yellow);
}
.inner-hero-content .button-group .link-with-icon {
    color: var(--dark-blue);
}
.inner-hero-content.text-white .button-group .primary-solid p {
    color: var(--dark-blue);
}
.inner-hero-content .button-group .link-with-icon {
    gap: 14px;
}
.inner-hero-content .text-link-area {
    margin-top: 60px;
}
.inner-hero-content .text-link-area p {
    margin: 0;
}
.inner-hero-content.text-white h1, .inner-hero-content.text-white p, .button-group .primary-solid span, .inner-hero-content.text-white .button-group .link-with-icon {
    color: var(--white);
}

/* benefits highlight section style */
section.benefits-highlight {
    padding: 44px 0;
}
section.benefits-highlight .text-link-area {
    padding-right: 28px;
}

/* solution section style */
section.solution-section {
    padding: 50px 0;
}
.solution-left-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 28px;
}
.solution-left-content h3 {
    font-size: 30px;
    line-height: 36px;
}
.solution-left-content > div, p, h3 {
    margin: 0;
}
.solution-card-label {
    font-family: var(--jetbrains);
    font-size: 16px;
    line-height: 36px;
    font-weight: 700;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 10px;
    padding: 1px 19px;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
}
.solution-right-image {
    width: 100%;
    margin-left: auto;
}
.solution-right-image img {
    border-radius: 20px;
    width: 100%;
    height: auto;
}
.image-left .solution-right-image {
    margin: 0;
}
.image-left .solution-left-content {
    margin-left: auto;
}

/* Toggle section style */
section.toggle-section {
    padding: 82px 0 54px;
}
.toggle-left-content h6 {
    margin-bottom: 22px;
}
.toggle-left-content h2 {
    margin-bottom: 24px;
}
.toggle-tab-area {
    padding-top: 32px;
}
.toggle-left-intro {
    max-width: 770px;
}
.toggle-tab-area ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    border: none;
    margin: 0;
}
.toggle-tab-area ul button.tab-btn {
    color: var(--dark-blue);
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
}
.toggle-tab-area ul button.tab-btn.active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.toggle-tab-area ul button.tab-btn:hover {
    border-color: var(--dark-blue);
}
.tab-image-with-content {
    position: relative;
}
.tab-image-with-content img {
    border-radius: 20px;
    width: 100%;
    min-height: 576px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
.tab-image-with-content .tab-content {
    position: absolute;
    bottom: 25px;
    right: 30px;
    left: 28px;
    background-color: var(--primary);
    border-radius: 15px;
    padding: 37px 34px 45px 46px;
    color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
}
.tab-content h3 {
    font-size: 30px;
    line-height: 36px;
    color: var(--white);
    max-width: 600px;
}

/* Testimonial Section Style */
section.testimonial-section {
    padding: 80px 0 120px;
}
.testimonial-slider-area {
    position: relative;
    background-color: var(--light-yellow);
    border-radius: 20px;
}
.testimonial-slider-area h5 {
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translate(-50%, -25px);
            transform: translate(-50%, -25px);
    font-family: var(--jetbrains);
    font-weight: 600;
    font-size: 21px;
    line-height: 36px;
    text-align: center;
    background-color: var(--primary);
    color: var(--white);
    z-index: 2;
    padding: 7px 32px 7px 33px;
    border-radius: 15px;
    margin: 0;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
.testimonial-carousel .item {
    border-radius: 20px;
}
.testimonial-card {
    padding: 98px 0 63px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 60px;
}
.quote-icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 185px;
}
.testimonial-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 41px;
}
.testimonial-text .text {
    font-family: var(--heading-font);
    font-weight: 400;
    font-style: italic;
    font-size: 42px;
    line-height: 60px;
    max-width: 825px;
}
.testimonial-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 115px;
    width: 100%;
}
.testimonial-author {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 19px;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
}
.author-image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 50px;
}
.author-info h4 {
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    margin: 0;
}
.author-info span {
    line-height: 21px;
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
    display: block;
}
.company-logo {
    max-width: 206px;
}
.owl-carousel .company-logo img {
    width: auto;
}
.navigation-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 30px;
    z-index: 10;
}
.nav-btn {
    background: var(--primary);
    color:var(--white);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.custom-image-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0;
}
.nav-item {
    max-width: 238px;
    height: 113px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 0 0 20px 20px;
    padding: 0 38px 0 46px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.nav-item.active {
    background-color: var(--light-yellow);
    box-shadow: inset 0px 8px 12px -8px rgba(0,0,0,0.12);
}
.nav-item:hover {
    background-color: rgba(211, 237, 246, .3);
    box-shadow: inset 0px 8px 12px -8px rgba(0,0,0,0.12);
}

/* inner hero section bg style */
.inner-hero-section.tan-hero {
    background-color: var(--light-yellow);
}
.inner-hero-section.light-blue {
    background-color: var(--water-color);
}

/* Learning Section Style */
section.learning-section {
    padding: 50px 0 82px;
}
.learning-intro {
    margin-bottom: 35px;
}
.learning-intro h2 {
    max-width: 900px;
    margin-bottom: 21px;
}
.learning-intro p {
    max-width: 700px;
}
button.modal-btn {
    padding: 0;
    background: no-repeat;
    border-radius: 15px;
    border: none;
}
.learning-boxes a {
    width: 100%;
}
.learning-box {
    border: 1px solid #AEB2BF;
    border-radius: 15px;
    padding: 22px 24px 21px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 23px;
    outline: 2px solid transparent;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.learning-box:hover {
    border-color: var(--primary);
    outline: 2px solid var(--primary);
}
.learning-box-image {
    opacity: 0.5;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.learning-box:hover .learning-box-image {
    opacity: 1;
}
button .left-half, a .left-half {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 175px;
    min-height: 130px;
    position: relative;
    background-color: transparent;
}
a .left-half {
    background-color: var(--water-color);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
button .left-half .learning-box-image img {
    width: 100%;
    border-radius: 10px;
}
.left-half .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.learning-box:hover .play-icon , .play-icon.open-modal{
    top: 67%;
    left: 25%;
    width: 40px;
    height: 40px;
}
.right-half .icon {
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
span.icon i {
    font-size: 22px;
}
.right-half h5 {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 5px;
    text-align: left;
}
a .right-half h5 {
    text-transform: uppercase;
}
.right-half p {
    font-size: 14px;
    color: var(--dark-blue);
    text-align: left;
}
.badge-logo {
    padding: 12px 10px 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.badge-logo img {
    max-width: 48px;
}
.floating-image {
    max-height: 78px;
    position: absolute;
    bottom: 0;
}
.floating-image img {
    border-radius: 5px 5px 0 0;
}
.floating-text {
    position: absolute;
    top: 24px;
    left: 7px;
    right: 7px;
    color: var(--dark-blue);
    background-color: var(--water-color);
    font-family: var(--heading-font);
    font-size: 10px;
    line-height: 12px;
    padding: 10px 6px 10px 11px;
    border-radius: 5px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.learning-box:hover .left-half, .learning-box:hover .floating-text {
    background-color: var(--primary);
}
button .learning-box:hover .left-half, button .learning-box:hover .floating-text {
    background-color: transparent;
}
.learning-box:hover .floating-text {
    color: var(--white);
}

/* modal style */
button.close-modal {
    height: 25px;
    width: 120px;
    padding: 0;
    background: no-repeat;
    border: none;
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    text-align: left;
    font-family: var(--heading-font);
    font-size: 24px;
    line-height: 27px;
}
button.close-modal:before, button.close-modal:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
    width: 28px;
    height: 2px;
    background-color: var(--white);
    border-radius: 2px;
}
button.close-modal:after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
}
.learning-modal .modal-dialog {
    max-width: 838px;
}
.learning-modal .modal-dialog .modal-content {
    background-color: var(--dark-blue);
    border-radius: 25px;
    border: none;
}
.learning-modal-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
}
.learning-modal-left-content {
    max-width: 334px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 51px 48px 54px;
}
.learning-modal-left-content h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 30px;
    color: var(--white);
}
.learning-modal-left-content h2 {
    font-size: 42px;
    line-height: 48px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}
.modal-logo {
    max-width: 172px;
}
.learning-modal-embed-youtube {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
}
.learning-modal-embed-youtube iframe {
    max-width: 100.9%;
    height: 100%;
    border-radius: 25px;
}
.modal-backdrop.show {
    background-color: var(--dark-blue);
    opacity: 0.9;
}

/* Two column info section style */
section.two-column-info-section {
    padding: 82px 0 90px;
}
.two-column-intro {
    max-width: 1000px;
    margin: 0 auto 60px;
}
.two-column-intro h6 {
    margin-bottom: 21px;
}
.two-column-intro h2 {
    margin-bottom: 20px;
}
.two-column-intro p {
    max-width: 700px;
    margin: 0 auto;
}
.single-info-column {
    background-color: var(--light-yellow);
    border-radius: 15px 15px 0 0;
    padding: 42px 52px 0 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 33px;
    height: 100%;
}
.top-content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.top-content h6 {
    margin-bottom: 17px;
}
.top-content h3 {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 11px;
}
.top-content p {
    margin-bottom: 25px;
}
.bottom-image img {
    border-radius: 15px 15px 0 0;
    width: 100%;
}

/* Standard Section Style */
section.standard-section {
    margin-top: 82px;
    padding: 108px 0 130px;
    background-color: var(--light-yellow);
}
.standard-section .plans {
    -webkit-column-gap: 100px;
       -moz-column-gap: 100px;
            column-gap: 100px;
    row-gap: 64px;
}
.standard-section .single-plan {
    gap: 19px;
}
.icon i {
    font-size: 36px;
}


.hero-inner-light {
    padding: 96px 0 100px;
    background-color: var(--light-yellow);
}

/* Hero Inner Two Section */
.hero-inner-two-section {
    padding: 96px 0 100px;
    background-color: var(--water-color);
}
.inner-hero-two-content {
    max-width: 1050px;
}
.inner-hero-two-content h6 {
    margin-bottom: 31px;
}
.inner-hero-two-content h1 {
    margin-bottom: 32px;
}
.inner-hero-two-content p {
    max-width: 770px;
    margin-bottom: 53px;
}
.inner-hero-two-content .button-group {
    gap: 36px;
}
.inner-hero-two-content .button-group .link-with-icon {
    color: var(--dark-blue);
}

/* Healthcare Team Section Style */
section.healthcare-team-section {
    padding: 65px 0 63px;
    background-color: var(--light-yellow);
}
.team-image img {
    border-radius: 20px;
}
.team-image {
    margin-bottom: 49px;
}
.team-info-area {
    max-width: 1000px;
    margin: 0 auto;
}
.team-info {
    max-width: 450px;
}
.team-info h2 {
    margin-bottom: 21px;
}
.team-info > p {
    line-height: 26px;
    margin-bottom: 21px;
}
ul.team-info-item {
    display: flex;
    flex-direction: column;
    gap: 21px;
}
ul.team-info-item li {
    line-height: 21px;
    padding-left: 45px;
    position: relative;
}
ul.team-info-item li:before {
    content: '';
    width: 25px;
    height: 25px;
    background: var(--primary);
    position: absolute;
    left: 0;
    top: 3px;
    border-radius: 50%;
}
ul.team-info-item li:after {
    content: '';
    position: absolute;
    left: 9px;
    top: 7px;
    width: 7px;
    height: 13px;
    border-right: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
    transform: rotate(45deg);
}

/* Content Section Style */
.content-section {
    padding: 80px 0 55px;
}
.content-box {
    padding: 49px 32px 49px 32px;
    border-radius: 20px;
}
.content-box  .left-content-area .card-label {
    margin-bottom: 38px;
}
.content-box  .left-content-area h3 {
    margin-bottom: 24px;
    font-size: 30px;
    line-height: 36px;
}
.content-box  .left-content-area p {
    margin-bottom: 53px;
}
.content-box .content-right-image {
    width: 100%;
    margin-left: auto;
}
.content-box .content-right-image img {
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
}
.water-color .content-box {
    background: var(--water-color);
}
.baby-blue .content-box {
    background: var(--primary);
}
.light-blue .content-box {
    background: var(--light-yellow);
}
.navy-blue .content-box {
    background: var(--dark-blue);
}
:is(.navy-blue, .baby-blue) .card-label,
:is(.navy-blue, .baby-blue) h3,
:is(.navy-blue, .baby-blue) p,
:is(.navy-blue, .baby-blue) .primary-transparent,
.navy-blue .primary-transparent span {
    color: var(--white);
}
.navy-blue .card-label {
    border-color: var(--white);
}
.navy-blue .primary-transparent span i {
    color: var(--semi-black);
}
.baby-blue .primary-transparent span {
    background-color: var(--white);
}
.baby-blue .primary-transparent span i {
    color: var(--primary);
}
.water-color .card-label {
    border-color: var(--primary);
    color: var(--primary);
}
.navy-blue .primary-transparent span {
    background-color: var(--white);
}
.navy-blue .primary-transparent span i {
    color: var(--semi-black);
}
.light-blue .primary-transparent {
    color: var(--dark-blue);
}
.light-blue .primary-transparent span {
    background-color: var(--dark-blue);
}
.light-blue .primary-transparent span i {
    color: var(--white);
}

/* FAQs Section Style */
section.faqs-section {
    padding: 107px 0 112px;
}
.faqs-intro {
    text-align: center;
}
.faqs-intro h2 {
    margin-bottom: 24px;
}
.faqs-intro p {
    line-height: 26px;
    margin-bottom: 58px;
}
.faqs-tab-area ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    border: none;
}
.faqs-tab-area {
    padding-bottom: 48px;
}
.faqs-tab-area ul .tab-btn {
    font-family: var(--jetbrains);
    border-color: var(--primary);
    color: var(--primary);
}
.faqs-tab-area ul .tab-btn.active {
    color: var(--white);
    background-color: var(--primary);
}
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq-item {
    background-color: var(--light-yellow);
    border-radius: 10px;
}
.faq-item button {
    border: none;
    background: no-repeat;
    padding: 24px 22px 15px 98px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
    position: relative;
}
.faq-item button.collapsed {
    padding: 20px 22px 20px 98px;
}
.faq-item button h5 {
    flex: 1;
    max-width: 700px;
    text-align: left;
    font-family: var(--body-font);
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    margin: 0;
}
.circle-icon {
    position: relative;
    border: 1px solid var(--dark-blue);
    height: 30px;
    width: 30px;
    border-radius: 50%;
    transition: all 0.3s;
}
.circle-icon > span {
    border: 2px;
    background-color: var(--dark-blue);
    position: absolute;
    transition: all 0.3s ease;
}
.circle-icon > span:first-child {
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
    height: 2px;
    width: 17px;
}
.circle-icon > span:last-child {
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%) rotate(0);
    height: 2px;
    width: 17px;
}
.faq-item button.collapsed .circle-icon span:last-child {
    transform: translate(50%, -50%) rotate(90deg);
}
.faq-item:has(button:not(.collapsed)) {
    padding-bottom: 31px;
}
.faq-body {
    max-width: 100%;
    padding-left: 98px;
    padding-right: 110px;
}
.faq-body p {
    line-height: 30px;
}

/* Four Box Hover Section Style */
section.four-box-hover-section {
    padding: 100px 0;
}
.four-box-left-image {
    width: 630px;
}
.four-box-left-image img {
    width: 100%;
    max-width: 100%;
    border-radius: 15px;
}
.content-area h2 {
    margin-bottom: 24px;
}
.content-area p {
    margin-bottom: 32px;
    line-height: 26px;
}
.content-area .primary-transparent span {
    height: 30px;
    width: 30px;
}
.content-area .primary-transparent span i {
    font-size: 17px;
}
.content-area {
    margin-bottom: 26px;
}
.instraction {
    font-family: var(--jetbrains);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
    color: var(
    --dark-blue);
    text-align: right;
    margin-bottom: 11px;
}
.four-box-hover {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 19px;
}
.single-box-hover {
    width: 100%;
    height: 200px;
    background-color: var(--light-yellow);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 34px 40px 28px;
    gap: 0;
    transition: all 0.4s ease;
}
.single-box-hover h5 {
    font-family: var(--body-font);
    font-size: 18px;
    line-height: 30px;
    margin: 0;
}
.single-box-hover p {
    font-size: 14px;
    height: 0;
    overflow: auto;
    transition: all 0.4s ease;
}
.single-box-hover p::-webkit-scrollbar {
        display: none;
}
.single-box-hover:hover p {
    height: 100%;
}
.single-box-hover:hover {
    gap: 9px;
}

/* Scroll Hover Section Style */
section.scroll-hover-section {
    padding: 100px 0 166px;
}
.scroll-hover-left-content {
    max-width: 473px;
}
.scroll-hover-left-content h2 {
    margin-bottom: 17px;
}
.scroll-hover-left-content p {
    margin-bottom: 31px;
}
.scroll-hover-left-content .nav-btn {
    height: 40px;
    width: 40px;
}
.scroll-hover-left-content .navigation-menu {
    justify-content: flex-start;
    gap: 15px;
}
.scroll-hover-left-content .card-label {
    color: var(--primary);
    border-color: var(
    --primary);
    margin-bottom: 30px;
}
.team-carousel-area {
    width: 780px;
}
.team-carousel .item {
    width: 300px;
}
.team-membar-image {
    max-width: 100%;
}
.team-membar-image img {
    display: block;
    width: 100%;
    border-radius: 15px;
    filter: grayscale(1);
    transition: filter 0.3s ease;
}
.single-team-member:hover img {
    filter: grayscale(0);
}
.single-team-member {
    position: relative;
}
.team-member-info {
    position: absolute;
    bottom: 20px;
    left: 27px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 14px 19px 18px 19px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}
.team-member-info.expand-bio {
    gap: 13px;
    transition: all 0.3s ease;
}
.team-member-info .circle-icon span:last-child {
    transform: translate(50%, -50%) rotate(90deg);
}
.team-member-info.expand-bio .circle-icon span:last-child {
    transform: translate(50%, -50%) rotate(0);
}
.details-with-icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.team-member-info h5 {
    font-family: var(--body-font);
    line-height: 30px;
    font-size: 16px;
    margin: 0;
}
.team-member-info span.title {
    display: inline-block;
    font-size: 14px;
    line-height: 21px;
}
.team-member-info p {
    font-size: 12px;
    line-height: 18px;
    max-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    transition: max-height 0.3s ease;
}
.team-member-info p::-webkit-scrollbar {
    display: none;
}

/* Text Image Section Style */
section.text-image-section {
    padding: 90px 0;
}
.left-text-area h2 {
    margin-bottom: 28px;
}
.left-text-area h6, .problem-tab-content h6 {
    font-family: var(--body-font);
    color: var(--dark-blue);
    line-height: 24px;
    margin-bottom: 24px;
}
.right-image-area {
    max-width: 500px;
}
.right-image-area img {
    width: 100%;
    border-radius: 25px;
}

/* Problem Toggle Section Style */
section.problem-toggle-section {
    padding: 100px 0 150px;
}
.problem-toggle-intro {
    max-width: 830px;
    text-align: center;
    margin: 0 auto 70px;
}
.problem-toggle-intro h2 {
    margin-bottom: 20px;
}
.problem-toggle-left-area {
    background-color: var(--light-yellow);
    width: 466px;
    border-radius: 20px;
    height: 100%;
}
.static-heading {
    border-bottom: 1px solid #E4DDC9;
    padding: 28px 24px 18px 66px;
}
.static-heading h6 {
    font-size: 21px;
    line-height: 36px;
    color: var(--dark-blue);
}
.problem-toggle-tab-area {
    padding: 39px 16px 24px 43px;
}
.problem-toggle-tab-area ul.nav-tabs {
    display: flex;
    flex-direction: column;
    gap: 6px;
    border: none;
}
.problem-toggle-tab-area .tab-btn {
    color: var(--dark-blue);
    font-size: 16px;
    line-height: 26px;
    padding: 11px 28px 11px 23px;
    border: 1px solid transparent;
    text-align: left;
}
.problem-toggle-tab-area .tab-btn:hover {
    border-color: var(--primary);
}
.problem-toggle-tab-area .tab-btn.active {
    border-color: var(--primary);
    background-color: var(--primary);
    color: var(--white);
}
.problem-toggle-right-area {
    background-color: var(--light-yellow);
    border-radius: 25px;
    height: 100%;
}
.problem-tab-content {
    padding: 30px 42px 44px 58px;
}


/* Blog Hero Section Style */
section.blog-hero-section {
    background-color: var(--water-color);
    padding: 104px 0 110px;
    text-align: center;
}
.blog-hero-content h6 {
    margin-bottom: 43px;
}
.blog-hero-content h2 {
    margin-bottom: 20px;
}
.blog-hero-content p.content {
    font-size: 21px;
    line-height: 30px;
    color: var(--dark-blue);
    max-width: 800px;
    margin: 0 auto 24px;
}
.author-name-and-duration p {
    font-size: 14px;
    line-height: 30px;
}
.author-name-and-duration {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 13px;
    justify-content: center;
    margin-bottom: 33px;
}
.author-name-and-duration p.duration {
    display: flex;
    align-items: center;
    gap: 9px;
}
.author-name-and-duration p.duration span {
    flex: 0 0 20px;
    display: flex;
}
.author-name-and-duration p.duration span i {
    font-size: 20px;
    color: #000;
}
.blog-hero-content .tags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.blog-hero-content .tags a {
    font-size: 14px;
    border: 1px solid var(--primary);
    border-radius: 5px;
    padding: 3px 14px;
}

section.blog-content-section {
    padding: 84px 0 194px;
}
.blog-content-area h3 {
    margin-bottom: 16px;
    color: var(--black);
}
.blog-content-area h4 {
    color: var(--black);
    margin-bottom: 16px;
}
.blog-content-area p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 45px;
}
.blog-content-area img {
    border-radius: 30px;
    margin-bottom: 60px;
}
.blog-content-section .key-takeaways h3 {
    color: var(--dark-blue);
    line-height: 48px;
    margin-bottom: 16px;
}
.key-takeaways ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
    border: 2px solid var(--dark-blue);
    border-radius: 15px;
    padding: 40px 52px 17px 86px;
    list-style: disc;
}
.key-takeaways ul li {
    font-size: 18px;
    line-height: 30px;
}

/* Compare Section Style */
section.compare-section {
    padding: 106px 0;
}
.compare-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 49px;
}
.compare-intro h6 {
    margin-bottom: 31px;
}
.compare-intro h1 {
    margin-bottom: 28px;
}
.compare-intro p {
    margin-bottom: 37px;
}
.compare-intro .button-group {
    justify-content: center;
}
.simple-arrow-btn {
    font-size: 16px;
    line-height: 1;
    color: var(--water-color);
    background-color: var(--primary);
    border-radius: 8px;
    padding: 12px 23px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.simple-arrow-btn:hover {
    color: var(--light-yellow);
}
.simple-arrow-btn span {
    width: 17px;
    display: flex;
}
.simple-arrow-btn span i {
    font-size: 17px;
}
.compare-intro .link-with-icon {
    color: var(--dark-blue);
}

/* Chart Style */
.compare-chart-container {
    background-color: #E9F6FB;
    border-radius: 20px;
    padding: 91px 143px 103px 98px;
}
.compare-chart-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
}
.compare-chart:not(:first-child) {
    margin-top: 54px;
}
.compare-chart table {
    width: 100%;
    table-layout: fixed;
}
.compare-chart tr th:nth-child(2),
.compare-chart tr td:nth-child(2),
.compare-chart tr th:nth-child(3),
.compare-chart tr td:nth-child(3),
.compare-chart tr th:nth-child(4),
.compare-chart tr td:nth-child(5) {
    width: 170px;
}
.compare-chart tr th:first-child,
.compare-chart tr td:first-child {
    width: auto;
}
.compare-chart table, .compare-chart tr, .compare-chart th, .compare-chart td {
    margin: 0;
    padding: 0;
    border-spacing: 0;
}
.compare-chart table tr th {
    border-collapse: separate;
    height: 77px;
}
.compare-chart thead tr th:nth-child(2) {
    background-color: #F9F6ED;
    position: relative;
}
.bridge-logo {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid var(--dark-blue);
    border-right: 1px solid var(--dark-blue);
    border-left: 1px solid var(--dark-blue);
    border-radius: 20px 20px 0 0;
    width: 171px;
}
.compare-chart thead tr th p {
    text-align: center;
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
    display: flex;
    height: 100%;
    align-items: end;
    justify-content: end;
    padding: 0 20px 14px;
}
.compare-chart thead tr th:first-child p {
    text-align: left;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
}
.compare-chart tbody tr {
    border-bottom: 1px solid var(--dark-blue);
    height: 50px;
}
.compare-chart tbody tr:first-child {
    border-top: 1px solid var(--dark-blue);
}
.compare-chart tbody tr td {
    border-right: 1px solid var(--dark-blue);
}
.compare-chart tr td:not(:first-child) > p {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.compare-chart tr td:not(:first-child) .cell-data {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.compare-chart tr td:not(:first-child) p {
    font-family: var(--jetbrains);
    font-size: 12px;
    line-height: 18px;
    color: #000;
    font-weight: 500;
}
.compare-chart tr td:not(:first-child) p span {
    margin-left: 8px;
}
.compare-chart tbody tr td:first-child p {
    font-size: 14px;
    line-height: 16px;
    margin-left: 20px;
    font-weight: 500;
    padding: 6px 0;
}
.compare-chart tbody tr td:nth-child(2) {
    background-color: #F9F6ED;
}
.compare-chart thead tr {
    height: 77px;
}
.bridge-logo.savings {
    flex-direction: column;
    justify-content: end;
}
.bridge-logo.savings strong {
    font-size: 16px;
    line-height: 18px;
}
.bridge-logo.savings p {
    font-size: 12px;
    line-height: 18px;
    padding: 0 2px 14px;
    height: auto;
    font-weight: 400;
}



/* Quote Calculator Section Style */
section.quote-calculator-section {
    padding: 120px 0;
}
.quote-calculator-intro {
    max-width: 750px;
    margin: 0 auto 22px;
    text-align: center;
}
.quote-calculator-intro h6 {
    margin-bottom: 30px;
}
.quote-calculator-intro h1 {
    margin-bottom: 15px;
}
.quote-calculator-box {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 52px 120px 60px;
    max-width: 850px;
    margin: 0 auto;
}
.quote-calculator-input-fields {
    display: flex;
    flex-direction: column;
    gap: 42px;
    height: 100%;
    margin-bottom: 18px;
}
.form-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
}
.section-header .section-info {
    display: flex;
    gap: 6px;
    align-items: flex-start;
}
.section-info .section-number, .section-content h6 {
    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 27px;
    display: inline-block;
}
.section-content p {
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}
.quick-tour-btn {
    flex-shrink: 0;
    border: 1px solid #ccc;
    background-color: transparent;
    border-radius: 5px;
    font-size: 14px;
    line-height: 24px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 2px 17px;
}
.quick-tour-btn i {
    font-size: 16px;
}
.field-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 19px;
}
.field-group.column-four {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
}
.field-group.fixed-with-field .single-field:last-child label {
    min-width: max-content;
}
.single-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.single-field label {
    font-size: 13px;
    color: var(--dark-blue);
    line-height: 1;
    max-width: max-content;
}
.single-field input, .single-field select {
    width: 100%;
    border: 1px solid #ccc;
    color: var(--dark-blue);
    font-size: 14px;
    line-height: 30px;
    border-radius: 5px;
    padding: 9px 12px 9px 17px;
    outline: none;
    appearance: none;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input::placeholder, select::placeholder {
  color: #ccc;
  opacity: 1;
}
.select-wrapper {
    position: relative;
}
.select-wrapper select {
    padding-right: 36px;
}
.select-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 22px;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
    height: 7px;
    width: 7px;
    transform: translate(0px, -50%) rotate(-45deg);
}
.select-wrapper select:has(option[value=""]:checked) {
  color: #ccc;
}
.select-wrapper select:not(:has(option[value=""]:checked)) {
  color: var(--dark-blue);
}
.select-wrapper select option {
    color: var(--dark-blue);
}
.radio-group {
    display: flex;
    gap: 20px;
    align-items: center;
}
.radio-group .radio-option {
    display: flex;
    align-items: center;
    gap: 9px;
    line-height: 30px;
    cursor: pointer;
}
.radio-option input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid var(--dark-blue);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    margin: 0;
    flex-shrink: 0;
}
.radio-option input[type="radio"]::before {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}
.radio-option input[type="radio"]:checked::before {
    background: var(--primary);
}
.radio-option label {
    font-size: 14px;
    color: var(--dark-blue);
    cursor: pointer;
    line-height: 30px;
    margin: 0;
}
.input-with-icon {
    position: relative;
}
.input-with-icon::before {
    content: "$";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dark-blue);
    font-size: 14px;
    line-height: 50px;
    pointer-events: none;
    border-right: 1px solid #ccc;
    padding-right: 8px;
}
.input-with-icon input {
    padding-left: 40px;
    transition: all 0.3s ease;
}
.input-with-icon input:focus {
    outline: 1px solid transparent;
    transition: all 0.3s ease;
}
.input-with-icon input:focus {
    border-color: #D40D09;
    outline-color: #D40D09;
}
.single-field .submit-btn {
    margin-top: 10px;
}
.submit-btn .primary-solid {
    width: 100%;
    max-width: 100%;
}
.submit-btn .primary-solid p {
    flex: 1;
}
.small-text {
    font-size: 12px;
    line-height: 16px;
    max-width: 550px;
    margin: 19px auto 0;
    text-align: center;
}
.disclaimer {
    max-width: 750px;
    font-size: 18px;
    line-height: 30px;
    margin: 36px auto 0;
    text-align: center;
}

/* Quote Results Section Style */
section.quote-results-section {
    padding: 120px 0;
}
.quote-results-intro {
    max-width: 750px;
    text-align: center;
    margin: 0 auto 62px;
}
.quote-results-intro h6 {
    margin-bottom: 30px;
}
.quote-results-intro h1 {
    margin-bottom: 12px;
}
.quote-results-box {
    max-width: 850px;
    margin: 0 auto 38px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 39px 67px 54px 66px;
}
.quote-results-box h2 {
    text-align: center;
    margin-bottom: 29px;
}
.cost-range-filter h5 {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}
.cost-range-filter {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-bottom: 24px;
}
.savings-chart-area.business-savings .cost-range-filter {
    position: sticky;
    left: 0;
}
.filter-actions {
    border: 1px solid var(--dark-blue);
    padding: 5px 6px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.filter-actions .filter-btn {
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    border: none;
    background-color: var(--white);
    border-radius: 5px;
    color: var(--dark-blue);
    padding: 3px 27px;
    transition: all 0.3s ease;
}
.filter-actions .filter-btn:hover {
    background-color: #eee;
}
.filter-actions .filter-btn.active:hover {
    background-color: var(--primary);
    color: var(--white);
}
.filter-actions .filter-btn.active {
    background-color: var(--primary);
    color: var(--white);
}
.premium-filter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    position: sticky;
    left: 0;
}
.premium-filter .cost-range-filter {
    margin: 0;
}
.premium-filter a {
    color: var(--dark-blue);
    font-size: 14px;
}
.savings-chart-area h3 {
    font-size: 30px;
    line-height: 1.2;
    text-align: center;
    color: var(--dark-blue);
    margin-bottom: 18px;
    position: sticky;
    left: 0;
}
.savings-chart {
    background: white;
}
.table-row {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    display: flex;
}
.table-header .table-row {
    border: 1px solid #ccc;
    border-radius: 10px 10px 0 0;
}
.table-body .table-row {
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
}
.table-row:not(:last-child) {
    border-bottom: 1px solid #ccc;
}
.table-header .table-cell:last-child,
.table-header .table-cell:nth-last-child(2),
.table-body .table-cell:last-child,
.table-body .table-cell:nth-last-child(2) {
    border-left: 1px solid #ccc;
}
.table-header .table-cell {
    min-height: 43px;
}
.table-cell {
    flex: 0 0 142px;
    display: flex;
    align-items: center;
    min-height: 36px;
    padding: 4px 0;
}
.table-footer .table-cell {
    min-height: 40px;
}
.table-cell:first-child {
    flex: 2;
    text-align: left;
}
.table-header .table-cell p {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}
.table-body .table-cell:first-child p, .table-footer .table-cell:first-child p {
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    padding: 0 16px 0 55px;
    margin: 0;
    width: 100%;
}
.table-body .table-cell:not(:first-child) p, .table-footer .table-cell:not(:first-child) p {
    font-size: 14px;
    margin: 0;
    display: flex;
    align-items: center;
    height: 100%;
}
.table-footer .table-row {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    font-weight: 700;
}
.table-footer .table-cell:first-child p {
    font-weight: 700;
}
.placeholder-div {
    padding-top: 19px;
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    background: var(--white);
    border-radius: 0 0 10px 10px;
}
/* Employee Savings  */
.savings-chart-area.employee-savings {
    margin-top: 45px;
}
.employee-savings .savings-chart .table-header .table-cell:nth-child(3) {
    justify-content: center;
}
.employee-savings .savings-chart .table-footer .table-cell:nth-child(3) p {
    padding-left: 42px;
}
.employee-savings .savings-chart .table-header .table-cell:last-child,
.employee-savings .savings-chart .table-body .table-cell:last-child {
    padding-left: 18px;
}
.employee-savings .savings-chart .table-body .table-cell:nth-child(3) p {
    justify-content: left;
    background-color: var(--water-color);
    margin: 0 20px 0 16px;
    border-radius: 5px;
    padding: 6px 12px 6px 12px;
    line-height: 1.15;
    min-width: -webkit-fill-available;
}
/* Business Savings */
.savings-chart-area.business-savings {
    margin-top: 65px;
}
.business-savings .savings-chart .table-cell:nth-child(2) {
    border: none;
}
.business-savings .savings-chart .table-cell:last-child {
    flex: 1;
    padding-left: 40px;
}
.create-account-btn-area {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    justify-content: center;
    max-width: 385px;
    margin: 32px auto 0;
    text-align: center;
}
.create-account-btn-area .submit-btn {
    color: var(--primary);
    background-color: transparent;
    border: 1px solid var(--primary);
    border-radius: 10px;
    width: 100%;
    padding: 12px 16px;
}
.create-account-btn-area p {
    font-size: 14px;
}

/* Contact Section Style */
section.contact-section {
    padding: 100px 0;
}
.contact-left-content {
    max-width: 550px;
}
.contact-left-content h6 {
    margin-bottom: 30px;
}
.contact-left-content h1 {
    margin-bottom: 28px;
}
.contact-left-content p.large {
    margin-bottom: 36px;
}
.quote-calculator-link {
    max-width: 387px;
    border: 1px solid #ccc;
    border-radius: 15px;
    padding: 22px 32px 29px;
}
.quote-calculator-link h4 {
    font-size: 21px;
    line-height: 30px;
    margin-bottom: 10px;
}
.quote-calculator-link .link-with-icon {
    color: var(--dark-blue);
}
.contact-form-box {
    max-width: 491px;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 31px 45px 37px 45px;
}
.contact-form-box h5 {
    font-size: 18px;
    line-height: 30px;
    font-family: var(--body-font);
    margin-bottom: 16px;
}
.all-input-fields {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.all-input-fields .field-group {
    display: flex;
    gap: 19px;
}
.all-input-fields .single-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.contact-form-box p.small-text {
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    margin-top: 26px;
}

/* Blog Feed Hero Section Style */
section.blog-feed-hero-section {
    padding: 104px 0 77px;
    background-color: var(--dark-blue);
    color: var(--white);
}
.blog-hero-left-content {
    max-width: 505px;
}
.blog-hero-left-content h6 {
    line-height: 21px;
    color: var(--water-color);
    margin-bottom: 41px;
}
.blog-hero-left-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}
.blog-hero-left-content p {
    font-size: 21px;
    line-height: 30px;
}

/* feed card design  */
.blog-hero-right-content .owl-carousel .owl-stage-outer {
    border-radius: 15px;
}
.feed-card {
    border-radius: 15px;
    max-width: 445px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.feed-card-img a, .feed-card-img img {
    width: 100%;
    border-radius: 15px 15px 0 0;
    display: block;
}
.feed-card-img img {
    object-fit: cover;
    object-position: center;
}
.feed-card-content {
    flex: 1;
    border-radius: 0 0 15px 15px;
    padding: 45px 44px 27px 27px;
    border-left: 1px solid #D9D9D9;
    border-right: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.feed-card-content .category {
    font-family: var(--jetbrains);
    font-size: 18px;
    line-height: 21px;
    font-weight: 500;
    margin-bottom: 25px;
    color: var(--primary);
}
.feed-card-content h5 {
    font-size: 21px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 42px;
    flex: 1;
}
.feed-card-content h5 a {
    color: var(--dark-blue);
}
.feed-card-content h5 a:hover {
    color: var(--primary);
}
.feed-author-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 16px;
    row-gap: 0;
    flex-wrap: wrap;
}
.feed-author-info p {
    font-size: 16px;
    color: var(--black);
    line-height: 30px;
}
.feed-author-info p a {
    text-decoration: none;
}
.feed-author-info .reading-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}
.feed-author-info .reading-time i {
    transform: rotate(235deg);
}
.most-recent-post .owl-stage {
    display: flex;
    align-items: stretch;
}
.most-recent-post .owl-stage .owl-item {
    height: auto;
}
.most-recent-post .item {
    height: 100%;
}
.most-recent-post .feed-card {
    max-width: 100%;
}
.most-recent-post .feed-card-img img {
    max-height: 193px;
}
.most-recent-post .feed-card-content h5 {
    margin-bottom: 32px;
}
.most-recent-post .feed-card-content {
    background-color: var(--light-yellow);
    border: none;
}
.most-recent-post .feed-author-info p {
    font-size: 14px;
}
.blog-hero-right-content .owl-dots {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-top: 20px;
}
.blog-hero-right-content .owl-dots .owl-dot span {
    height: 25px;
    width: 25px;
    display: flex;
    background-color: #F9F6ED;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.blog-hero-right-content .owl-dots .owl-dot.active span {
    background-color: var(--primary);
}

/* Reports and Guides Section Style */
section.reports-and-guides-section {
    padding: 62px 0 52px;
    overflow: hidden;
}
.report-title-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}
.reports-carousel-navigation {
    display: flex;
    align-items: center;
    gap: 22px;
}
button.prev, button.next {
    height: 40px;
    width: 40px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    padding: 0;
    margin: 0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
button.prev, button.next i {
    font-size: 24px;
}
.all-reports-and-guides-carousel .owl-stage-outer,
.testimonials-boxes-slider-carousel .owl-stage-outer,
.savings-carousel .owl-stage-outer {
    overflow: visible;
}
.all-reports-and-guides-carousel .owl-stage-outer .owl-stage,
.testimonials-boxes-slider-carousel .owl-stage-outer .owl-stage,
.savings-carousel .owl-stage-outer .owl-stage {
    display: flex;
    align-items: stretch;
}
.all-reports-and-guides-carousel .owl-stage-outer .owl-item,
.testimonials-boxes-slider-carousel .owl-stage-outer .owl-item,
.savings-carousel .owl-stage-outer .owl-item {
    height: auto;
}
.all-reports-and-guides-carousel .owl-stage-outer .item,
.testimonials-boxes-slider-carousel .owl-stage-outer .item,
.savings-carousel .owl-stage-outer .item {
    height: 100%;
}

/* All Articles Section style */
section.all-articles-section {
    padding: 52px 0 100px;
}
section.all-articles-section .title {
    margin-bottom: 22px;
    font-size: 30px;
    line-height: 36px;
}
.article-custom-gap {
    --bs-gutter-x: 30px;
}

/* Youtube Embed Modal Style */
.custom-modal {
    max-width: 846px;
}
.custom-modal .modal-content {
    aspect-ratio: 16/9;
    border-radius: 25px;
    background: transparent;
    border: none;
    margin: 0 16px;
}
.custom-modal iframe {
    width: 100%;
    height: 100%;
    border-radius: 25px;
}
.btn-close-custom {
    position: absolute;
    top: -52px;
    right: 0;
    z-index: 10;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0;
    margin: 0;
    font-size: 24px;
    line-height: 30px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}
.btn-close-custom:focus {
    outline: none;
    box-shadow: none !important;
}
.btn-close-custom i {
    font-size: 30px;
}

/* new contact form toggle style */
.new-contact-form-toggle {
    padding: 100px 0 70px;
}
section.new-contact-form-toggle .contact-left-content {
    max-width: 570px;
}
.new-agent-box {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 18px 20px 16px 32px;
    display: flex;
    align-items: center;
    gap: 38px;
    margin-bottom: 30px;
    margin-top: 38px;
    max-width: 525px;
}
.new-agent-box .agent-logo {
    flex: 0 0 80px;
}
.new-agent-box .agent-logo img {
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    width: 100%;
    max-width: 100%;
}
.new-agent-box .agent-info {
    flex: 1;
}
.agent-social-links {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}
.agent-social-links a i{
    color: #eee;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.agent-social-links a:hover i {
    color: var(--primary);
}
.agent-name-and-contact span {
    display: inline-block;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
}
.agent-name-and-contact h5 {
    line-height: 30px;
    margin: 0;
    font-weight: 600;
}
.agent-name-and-contact a {
    color: var(--dark-blue);
    font-size: 14px;
    line-height: 2.14;
    display: flex;
    align-items: center;
    gap: 6px;
    max-width: max-content;
}
.agent-name-and-contact a i {
    font-size: 18px;
}
.contact-form-box.new-toggle-form-box {
    position: relative;
}
.toggle-tabj-wrapper {
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 0 18px;
}
.new-toggle-form-buttons {
    border: 1px solid #ccc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    max-width: 400px;
    width: 100%;
    height: 50px;
    margin: 0 auto;
    overflow: hidden;
}
.new-toggle-form-buttons button {
    flex: 1;
    border: none;
    background-color: transparent;
    font-size: 14px;
    font-weight: 700;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}
.new-toggle-form-buttons button.active {
    background-color: var(--dark-blue);
    color: var(--white);
}
.new-single-form-box {
    margin-top: 40px;
}
.new-single-form-box h5 {
    margin-top: -10px;
    margin-bottom: 30px;
    font-size: 24px;
}

/* Testimonial Boxes Slider Style */
section.testimonials-boxes-slider-section {
    padding: 60px 0;
    overflow: hidden;
}
.testimonials-boxes-slider-intro {
    max-width: 700px;
    margin-bottom: 40px;
}
.testimonials-boxes-slider-intro p {
    font-weight: 500;
    color: var(--black);
    margin-bottom: 24px;
}
.testimonial-carousel-navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}
.testimonial-box {
    max-width: 319px;
    background-color: #D3EDF6;
    padding: 26px 32px 37px 31px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 33px;
    height: 100%;
}
.testimonial-box .top-quote {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
}
.testimonial-box .top-quote .quote-img {
    flex: 0 0 52px;
    height: 52px;
    background-color: var(--dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-box .top-quote .quote-img img {
    width: auto;
}
.testimonial-box .top-quote p {
    font-size: 14px;
    line-height: 16px;
    color: var(--light-yellow);
    background-color: var(--primary);
    padding: 5px 18px 6px;
    border-radius: 5px;
}
.testimonial-box .top-quote p span {
    display: inline-block;
    font-family: var(--jetbrains);
    font-weight: 600;
}
.testimonial-message {
    flex: 1;
}
.testimonial-message p {
    font-size: 21px;
    line-height: 28px;
    color: var(--dark-blue);
    font-family: var(--heading-font);
    font-style: italic;
}
.testimonial-botton-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    height: 140px;
}
.testimonial-image {
    flex: 1;
    display: flex;
    align-items: center;
}
.testimonial-image img {
    max-width: max-content;
}
.testimonial-author-name h6 {
    font-size: 14px;
    line-height: 18px;
    font-family: var(--body-font);
    color: var(--dark-blue);
    font-weight: 600;
}
.testimonial-author-name p {
    font-size: 12px;
    line-height: 2.5;
    color: var(--dark-blue);
}

/* Static Four Box Section Style */
section.static-four-box-section {
    padding: 60px 0 70px;
}
.static-four-box-intro {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}
.static-four-box-intro p {
    color: var(--black);
    font-weight: 500;
}
.static-single-box {
    background-color: var(--light-yellow);
    padding: 43px 40px 42px 38px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
    height: 100%;
}
.static-single-box .card-step {
    flex: 0 0 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    background-color: var(--water-color);
    border-radius: 50%;
    font-family: var(--heading-font);
    font-size: 24px;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 8px;
}
.static-single-box span.card-badge, .savings-highlight{
    font-size: 12px;
    line-height: 14px;
    font-weight: 500;
    color: var(--dark-blue);
    background-color: var(--water-color);
    max-width: max-content;
    padding: 7px 10px;
    border-radius: 15px;
}
.static-single-box .card-title {
    margin-bottom: 6px;
}
.static-single-box .card-description {
    flex: 1;
    font-size: 14px;
    line-height: 18px;
    color: var(--dark-blue);
}

/* Two Row Savings Section Style */
section.two-row-savings-section {
    padding: 60px 0 100px;
    overflow: hidden;
}
.savings-card {
    background: var(--light-yellow);
    border-radius: 20px;
    height: 100%;
    overflow: hidden;
}
.savings-card-top {
    padding: 26px 34px 25px 30px;
    border-bottom: 2px solid #F5F0E0;
}
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.card-icon {
    flex: 0 0 52px;
    height: 52px;
    background: var(--dark-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-icon.white {
    background-color: var(--white);
    color: var(--dark-blue);
}
.card-icon.water {
    background-color:  var(--water-color);
    color: var(--dark-blue);
}
.card-icon i {
    font-size: 24px;
}
.card-type {
    text-align: right;
}
.card-type span {
    font-size: 12px;
    line-height: 14px;
    color: var(--primary);
    font-style: italic;
    display: block;
}
.card-type strong {
    color: var(--primary);
    font-size: 14px;
    line-height: 18px;
}
.savings-description {
  font-size: 12px;
  color: #4a5568;
  line-height: 1.6;
}
.savings-amount {
    font-family: var(--heading-font);
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    display: inline-block;
    color: var(--dark-blue);
}
.savings-amount span {
    display: inline-block;
    font-size: 16px;
    line-height: 18px;
    font-weight: 600;
    color: var(--dark-blue);
}
.savings-title {
    line-height: 18px;
    font-weight: 500;
    color: var(--dark-blue);
    margin-bottom: 22px;
}
.savings-card-bottom {
    border-top: 2px solid var(--white);
    padding: 16px 30px 40px;
}

/* Large Hero Section Style */
section.large-hero-section {
    text-align: center;
    padding: 120px 0 112px;
}
.large-hero-section.dark-blue{
    background-color: var(--dark-blue);
}
.large-hero-section.light-blue {
    background-color: var(--water-color);
}
.large-hero-section.tan{
    background-color: var(--light-yellow);
}
.large-hero-content {
    max-width: 1300px;
    margin: 0 auto;
}
.large-hero-content h6 {
    margin-bottom: 28px;
}
.large-hero-content h1 {
    font-size: 96px;
    margin-bottom: 24px;
}
.large-hero-content p {
    max-width: 800px;
    margin: 0 auto 40px;
}
.large-hero-content .button-group {
    justify-content: center;
    column-gap: 36px;
    row-gap: 30px;
}
.large-hero-content .button-group .link-with-icon {
    color: var(--dark-blue);
}
.dark-blue .large-hero-content h1, .dark-blue .large-hero-content p, .dark-blue .large-hero-content .button-group .link-with-icon {
    color: var(--white);
}