:root {
    --color-primary: #f90021;
    --color-secondary: #1e3654;
}

p, h1, h2, h3, h4, h5, h6 {
    margin: 0
}

/* Section */
.section-title,
.section-subtitle {
    text-align: center;
    max-width: 538px;
}

.section-title {
    color: #000;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-subtitle {
    color: #050505;
    font-size: 16px;
    opacity: 0.5;
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .section-title {
        margin-bottom: 16px;
    }
}


/* CTA BTN */
.btn-outline-secondary {
    color: var(--color-secondary);
    background: #FFFFFF;
    border: 1px solid var(--color-secondary);
    border-radius: 16px;
    font-size: 1rem;
    padding: 16px 24px;
    transition: 300ms ease-in-out;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus,
.btn-outline-secondary:active {
    color: #041223 !important;
    background: #ffffff !important;
    border-color: #041223 !important;
}

.btn-secondary {
    color: #ffffff;
    background: var(--color-secondary);
    border: 1px solid transparent;
    border-radius: 16px;
    font-size: 1rem;
    padding: 16px 24px;
    transition: 300ms ease-in-out;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary.active,
.open .dropdown-toggle.btn-secondary {
    background: #041223 !important;
    border: 1px solid transparent !important;
    box-shadow: none !important;
}

.btn-outline-primary {
    color: var(--color-primary);
    background: #FFFFFF;
    border: 1px solid var(--color-primary);
    border-radius: 16px;
    font-size: 1rem;
    padding: 16px 24px;
    transition: 300ms ease-in-out;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    color: #B50018 !important;
    background: #FFFFFF !important;
    border-color: #B50018 !important;
}

.btn-primary {
    color: #ffffff;
    background: var(--color-primary);
    border: 1px solid transparent;
    border-radius: 16px;
    font-size: 1rem;
    padding: 16px 24px;
    transition: 300ms ease-in-out;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:disabled,
.btn-primary.active {
    background: #B50018 !important;
    border: 1px solid transparent !important;
    box-shadow: none !important;
}


.btn-white {
    color: #000;
    background: #fff;
    border: 1px solid transparent;
    border-radius: 16px;
    font-size: 1rem;
    padding: 16px 24px;
    transition: 300ms ease-in-out;
}

.btn-white:hover,
.btn-white:focus,
.btn-white:active,
.btn-white.active {
    color: #fff !important;
    background: var(--color-secondary) !important;
    border: 1px solid transparent !important;
    box-shadow: none !important;
}


/* Language Dropdown */
.dropdown {
    margin-inline-end: 26px;
}

.dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    column-gap: 8px;
}

.dropdown .dropdown-menu .dropdown-item img {
    border-radius: 4px;
    width: 18px;
}

/* Divider */

.divider {
    margin-top: 24px;
    height: 8px;
    width: 100%;
    background: #F90021;
}

@media (min-width: 992px) {
    .divider {
        margin-top: 32px;
    }
}

/* Card */

.card {
    border-radius: 24px;
    border: 1px solid #E2EFFF;
    background: rgba(255, 255, 255, 0.70);
    box-shadow: -8px 12px 68px 0 rgba(0, 0, 0, 0.02);
    backdrop-filter: blur(22px);
    padding: 18px;
    height: 100%;
}

/* Typography */

.line-clamp-2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}


/* Partners Slider */
.hero-partners {
    display: flex;
    margin-top: 24px;
    margin-bottom: 24px;
    column-gap: 15px;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-partners {
        column-gap: 40px;
    }
}

.feedback-badge {
    flex-shrink: 0;
    display: inline-flex;
    padding: 12px;
    align-items: center;
    gap: 6px;
    border-radius: 18px;
    border: 0.75px solid #E2EFFF;
    background: rgba(255, 255, 255, 0.70);
    box-shadow: -6px 9px 51px 0 rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(16.5px);
}

.feedback-badge .avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.feedback-badge .avatars img:not(:first-child) {
    margin-inline-start: -20px;
}

.feedback-badge .description {
    font-size: 10.5px;
}

.feedback-badge .description p:first-child {
    color: #000;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.feedback-badge .description p:last-child {
    color: #000000;
    font-size: 10.5px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: .4;
}

html[dir='rtl'] .hero-partners .swiper.logos {
    margin-left: auto;
    margin-right: 0;
}

html[dir='ltr'] .hero-partners .swiper.logos {
    margin-left: 0;
    margin-right: auto;
}

.hero-partners .swiper.logos .swiper-slide {
    user-select: none;
}

.hero-partners .logos img {
    height: 49px;
    width: 106px;
    object-fit: contain;
}

@media (min-width: 992px) {
    .hero .hero-partners {
        column-gap: 29px;
    }
}

/* Reviews Slider */
.reviews {
    padding: 27px 0 32px 0;
    background: linear-gradient(180deg, #ECF5FF 0%, #FFF 100%), #D9D9D9;
}

@media (min-width: 992px) {
    .reviews {
        padding: 96px 0 133px 0;
    }
}

.reviews .section-title {
    font-size: 32px;
}

@media (min-width: 992px) {
    .reviews .section-title {
        font-size: 48px;
    }
}

.reviews .cards-container {
    margin-top: 13px;
    margin-left: 0;
    margin-right: 0;
}

@media (min-width: 992px) {
    .reviews .cards-container {
        margin-top: 59px;
    }
}

.reviews .cards-container .reviews-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    row-gap: 16px;
    flex-direction: column;
}

@media (min-width: 992px) {
    .reviews .cards-container .reviews-grid {
        row-gap: 40px;
    }
}

@media (min-width: 992px) {
    .reviews .cards-container .reviews-grid {
        column-gap: 20px;
    }
}

.reviews .cards-container .reviews-grid .reviews-row {
    width: 100%;
}

.reviews .cards-container .reviews-grid .card {
    padding: 18px 18.25px 18px 24px;
    user-select: none;
}

@media (min-width: 992px) {
    .reviews .cards-container .reviews-grid .card {
        padding: 24px 32.25px 32px 24px;
    }
}

.reviews-grid .card .card-body {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    row-gap: 18px;
}

@media (min-width: 992px) {
    .reviews-grid .card .card-body {
        row-gap: 24px;
    }
}

.reviews-grid .card .card-body .content {
    display: flex;
    flex-direction: column;
    align-items: start;
    row-gap: 12.5px;
}

@media (min-width: 992px) {
    .reviews-grid .card .card-body .content {
        row-gap: 16px;
    }
}

.star {
    width: 18px;
    height: 18px;
}

@media (min-width: 992px) {
    .star {
        width: 24px;
        height: 24px;
    }
}

.review-avatar {
    border-radius: 50%;
    overflow: hidden;
    width: 30px;
    height: 30px;
}

@media (min-width: 992px) {
    .review-avatar {
        width: 40px;
        height: 40px;
    }
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-info .reviewer-name {
    color: #000;
    font-size: 10.5px;
    font-weight: 510;
}

.reviewer-info .reviewer-country {
    color: #000;
    font-size: 10.5px;
    font-weight: 510;
    opacity: .5;
}

@media (min-width: 992px) {
    .reviewer-info .reviewer-name {
        font-size: 14px;
    }
}


/* Faqs */
.faqs {
    padding-top: 24px;
    padding-bottom: 48px;
    background: linear-gradient(180deg, #ECF5FF 0%, #FFF 100%);
}

@media (min-width: 992px) {
    .faqs {
        padding-top: 0;
        background: none;
    }
}

.faqs .cards-container {
    margin-top: 28px;
    row-gap: 16px;
}

@media (min-width: 992px) {
    .faqs .cards-container {
        margin-top: 80px;
    }
}

.faqs .cards-container .cards-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 16px;
    flex-basis: 100%;
}

@media (min-width: 992px) {
    .faqs .cards-container .cards-column {
        row-gap: 24px;
    }
}

.faqs .cards-column .card {
    padding: 16px;
    width: 100%;
}

@media (min-width: 992px) {
    .faqs .cards-column .card {
        padding: 24px 24px 24px 32px;
    }
}

.faqs .card .card-body .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faqs .card .card-body .title .question-title {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 510;
    line-height: normal;
}

@media (min-width: 992px) {
    .faqs .card .card-body .title .question-title {
        font-size: 20px;
    }
}

.faqs .card .card-body .title .toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #E2EFFF;
    border-radius: 50%;
    outline: none;
    transition: background-color 300ms ease;
    cursor: pointer;
    border: none;
}

@media (min-width: 992px) {
    .faqs .card .card-body .title .toggle-btn {
        width: 30px;
        height: 30px;
    }
}

.faqs .card .card-body .title .toggle-btn:hover {
    background-color: #323232;
}

.faqs .card .card-body .title .toggle-btn:hover .icon path {
    stroke: white;
}

/*.faqs .card .card-body .title .toggle-btn {*/
/*    background: #323232;*/
/*}*/

.faqs .card-body .title .toggle-btn .icon {
    width: 7.5px;
    height: 7.5px;
}

@media (min-width: 992px) {
    .faqs .card-body .title .toggle-btn .icon {
        width: 10px;
        height: 10px;
    }
}

.faqs .card .card-body .content {
    margin-top: 16px;
}

.faqs .card-body .content .answer {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.5;
}

/* Blogs */
.blogs {
    padding: 32px 0 32px 0;
    background: linear-gradient(180deg, #ECF5FF 0%, #FFF 100%), #D9D9D9;
}

@media (min-width: 992px) {
    .blogs {
        padding: 136px 0 55px 0;
    }
}

.blogs .cards-container {
    margin-top: 32px;
    row-gap: 24px;
}

@media (min-width: 992px) {
    .blogs .cards-container {
        margin-top: 64px;
    }
}

.blogs .blog-card {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.blogs .blog-card .cover {
    border-radius: 24px;
}

.blogs .blog-card .content {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.blogs .blog-card .content .title {
    color: #050505;
    font-size: 20px;
    font-weight: 510;
    transition: all 300ms;
}

.blogs .blog-card:hover .content .title {
    text-decoration: underline;
    text-underline-offset: 5px;
    color: var(--color-primary);
}

.blogs .blog-card .content .description {
    color: #050505;
    font-size: 16px;
    font-weight: 400;
    opacity: 0.5;
}

.blogs .view-blogs-btn {
    width: fit-content;
    margin-top: 48px;
    padding: 16px 32px;
    border-radius: 16px;
}

/* Swiper Nav Arrows */
.custom-swiper-button-next,
.custom-swiper-button-prev {
    outline: none;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #D6D6D6;
    background: #FCFCFC;
    /* Shadows/shadow-xs */
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    transition: 300ms all;
}

.custom-swiper-button-next:hover,
.custom-swiper-button-prev:hover,
.custom-swiper-button-next:focus,
.custom-swiper-button-prev:focus,
.custom-swiper-button-next:active,
.custom-swiper-button-prev:active {
    background: #1E3654;
    border: 1px solid #1E3654;
}

.custom-swiper-button-next:hover .icon path,
.custom-swiper-button-prev:hover .icon path,
.custom-swiper-button-next:focus .icon path,
.custom-swiper-button-prev:focus .icon path,
.custom-swiper-button-next:active .icon path,
.custom-swiper-button-prev:active .icon path {
    fill: #ffffff;
}

/* Burger Header */
.burger-header {
    height: auto;
    padding: 24px;
    /*background: white;*/
    /*border-bottom: 1px solid rgba(0, 0, 0, 0.05);*/
}

.items-wrapper {
    display: flex;
    align-items: center;
    column-gap: 24.4px;
    width: fit-content;
}

html[dir='rtl'] .items-wrapper {
    flex-direction: row-reverse;
}

.items-wrapper .logo {
    width: 83px;
    text-align: center;
    padding: 0;
}

/* Sidebar */
/* Sidebar */
.sidebar {
    background: #fff;
    padding: 24px;
    width: calc(100% / 4);
    position: fixed;
    top: 0;
    /*inset-inline-start: -100%; !* Replaces left *!*/
    height: 100%;
    transition: inset-inline-start 0.6s ease-in;
    z-index: 10;
}

/*!* Fast open *!*/
/*.sidebar-opening {*/
/*    inset-inline-start: 0 !important;*/
/*    transition: inset-inline-start 0.5s ease-out;*/
/*}*/

/*!* Slow close *!*/
/*.sidebar-closing {*/
/*    inset-inline-start: -100% !important;*/
/*    transition: inset-inline-start 0.4s ease-in;*/
/*}*/

.container {
    transition: 0.5s ease-in-out;
}

/* Push the container when sidebar is open */
/*.container-pushed {*/
/*    padding-inline-start: calc((100% / 4) + 20px); !* Logical padding *!*/
/*    margin-inline-start: 0;*/
/*}*/

/* Return to normal when sidebar is closed */
/*.container-unpushed {*/
/*    padding-inline-start: 12px;*/
/*    margin-inline-start: auto;*/
/*}*/

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

html[dir="rtl"] .sidebar-header {
    flex-direction: row-reverse;
}

.sidebar .sidebar-header .logo {
    width: 83px;
    text-align: center;
    padding: 0;
    transition: 300ms ease-in-out;
}

.sidebar .accordion {
    margin: 48px 0 0 0;
}

/* Sidebar Accordion Common */
.accordion-item:before {
    display: none;
}

.accordion-item .accordion-button {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.accordion-item .accordion-button:before {
    display: none;
}

.accordion-body {
    padding: 0;
}

.accordion-body ul li {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #1E3654;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.accordion-body ul label:before {
    display: none;
}

.accordion-button::after {
    background-image: url("../../img/new-chevron.svg");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("../../img/new-chevron.svg");
}

/* Steps Accordion */


.steps-accordion .accordion-item:first-of-type {
    margin-bottom: 40px;
}

.steps-accordion .accordion-body ul {
    margin: 32px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    row-gap: 32px;
}

.steps-accordion .check-icon-wrapper {
    display: flex;
    width: 24px;
    height: 24px;
    padding: 0 7px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: #D5D5D5;
    transition: 300ms background-color;
}

.steps-accordion .check-icon-wrapper.active {
    background: #61bf52;
}

/* Filters Accordion */
.filters-accordion .accordion-body ul {
    margin: 24px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    row-gap: 24px;
}

.filters-accordion .accordion-body ul label {
    margin: 0;
}

.filters-accordion .custom-checkbox {
    display: none;
    /*opacity: 0;*/
    /*pointer-events: none;*/
}

.filters-accordion .custom-label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    border: 1px solid #D5D5D5;
    border-radius: 4px;
    background: rgba(213, 213, 213, 0.10);
    cursor: pointer;
    transition: all 0.3s;
    opacity: 1 !important;
}

.filters-accordion .custom-checkbox:checked + .custom-label {
    background-color: #FF002E;
    border-color: #FF002E;
}

.filters-accordion .custom-checkbox:checked + .custom-label svg path {
    stroke: white;
}

.filters-accordion .custom-checkbox:not(:checked) + .custom-label svg path {
    stroke: #CCCCCC;
}

/* Custom Checkbox */
/*background: #1e3654 url(../img/chevron.svg) center center no-repeat;*/
/*background-size: 10px 10px;*/
/*transform: rotate(180deg);*/


/* Steps Container */
.steps-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 16px;
    padding: 16px;
    background-color: #FFF;
    margin-bottom: 24px;
}

.steps-container .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
}

.steps-container .step .step-label {
    color: #000;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
}

.steps-container .step .icon-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    background: #D5D5D5;
}

.steps-container .step .icon-container.active {
    background: #17C600;;
}

/* Nav Bar Home */
body.no-scroll {
    overflow: hidden;
    height: 100dvh;
}

.custom-navbar-wrapper {
    margin: 0;
    display: flex;
    align-items: center;
}

.custom-navbar-wrapper .navbar-nav {
    display: none;
}

@media (min-width: 992px) {
    .custom-navbar-wrapper .navbar-nav {
        display: flex;
        margin: 0 !important;
        flex-direction: row;
        column-gap: 16px;
    }
}

.custom-navbar-wrapper .lang-dropdown {
    display: none !important;
}

@media (min-width: 992px) {
    .custom-navbar-wrapper .lang-dropdown {
        display: flex !important;
    }
}

.custom-navbar-wrapper .burger-ico {
    display: block;
    margin-inline-start: 24px;
}

@media (min-width: 992px) {
    .custom-navbar-wrapper .burger-ico {
        display: none;
    }
}


.custom-navbar-wrapper .navbar-nav .modal-toggler {
    cursor: pointer;
}

.custom-navbar-wrapper .lang-dropdown {
    margin-inline-start: 16px;
}

/* Desktop Subitems */
.sub-items-container {
    margin-top: 32px;
    width: 100%;
    display: none;
}

.modal-toggler svg {
    transition: transform 0.3s ease;
}

.modal-toggler.active svg {
    transform: rotate(180deg);
}

.sub-items-container .items-wrapper {
    display: flex;
    column-gap: 6px;
    width: 100%;
}

.sub-items-container .items-wrapper .card {
    padding: 0 !important;
    flex-grow: 1;
}

.sub-items-container .items-wrapper .card .card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 76px 16px;
    background: none;
    border-bottom: 1px solid #E2EFFF;
}

.sub-items-container .items-wrapper .card .card-body {
    padding: 16px;
    width: 100%;
}

.modal-blur {
    background: rgba(0, 0, 0, 0.20);
    backdrop-filter: blur(14px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 6;
    display: none;
}

/* Mobile Navbar */
.navbar .container-fluid {
    /*border-bottom: 1px solid #E2EFFF;*/
}

@media (min-width: 992px) {
    .navbar .container-fluid {
        padding: 0;
    }
}

.navbar .mobile-navbar-nav {
    width: 100%;
    display: none;
    max-height: 75dvh;
    overflow: scroll;
}

.navbar .mobile-navbar-nav .nav-item-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.menu-toggler svg {
    transition: transform 0.3s ease;
}

.menu-toggler.active svg {
    transform: rotate(180deg);
}

/*.navbar .mobile-navbar-nav .menu-toggler {*/
/*    width: 100%;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*}*/

.navbar .mobile-navbar-nav .lang-dropdown {
    width: fit-content;
    margin: 0 auto;
    padding: 8px 0;
}

.navbar .mobile-navbar-nav .navbar-nav {
    width: 100%;
    margin: 20px 0 0 0 !important;
    padding-top: 24px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #E2EFFF;
}

.mobile-navbar-nav .navbar-nav .mobile-sub-items-container {
    width: 100%;
}

.mobile-navbar-nav .navbar-nav .mobile-sub-items-container .mobile-items-wrapper {
    /*margin-top: 16px;*/
    display: none;
    flex-wrap: wrap;
    /*border-radius: 24px 0 0 0;*/
    /*border: 1px solid #E2EFFF;*/
    /*overflow: hidden;*/
}

html[dir="ltr"] .mobile-sub-items-container .mobile-items-wrapper .card:nth-child(1){
    border-top-left-radius: 24px;
    overflow: hidden;
}
html[dir="rtl"] .mobile-sub-items-container .mobile-items-wrapper .card:nth-child(1){
    border-top-right-radius: 24px;
    overflow: hidden;
}
html[dir="ltr"] .mobile-sub-items-container .mobile-items-wrapper .card:nth-child(2){
    border-top-right-radius: 24px;
    overflow: hidden;
}
html[dir="rtl"] .mobile-sub-items-container .mobile-items-wrapper .card:nth-child(2){
    border-top-left-radius: 24px;
    overflow: hidden;
}
html[dir="ltr"] .mobile-sub-items-container .mobile-items-wrapper .card:nth-child(5){
    border-bottom-left-radius: 24px;
    overflow: hidden;
}
html[dir="rtl"] .mobile-sub-items-container .mobile-items-wrapper .card:nth-child(5){
    border-bottom-right-radius: 24px;
    overflow: hidden;
}
html[dir="ltr"] .mobile-sub-items-container .mobile-items-wrapper .card:nth-child(6){
    border-bottom-right-radius: 24px;
    overflow: hidden;
}
html[dir="rtl"] .mobile-sub-items-container .mobile-items-wrapper .card:nth-child(6){
    border-bottom-left-radius: 24px;
    overflow: hidden;
}

.mobile-sub-items-container .mobile-items-wrapper .card {
    padding: 0 !important;
    flex-grow: 1;
    box-shadow: none;
    width: 50%;
    border-radius: 0;
    border: 1px solid #E2EFFF;
    background: #FFF;
    backdrop-filter: blur(22px);
}

.mobile-items-wrapper .card {
    padding: 0 !important;
    flex-grow: 1;
}

.mobile-items-wrapper .card .card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border-bottom: 1px solid #E2EFFF;
    background: inherit !important;
}

.mobile-items-wrapper .card .card-body {
    padding: 12px;
    background: inherit !important
}
