:root {
    --primary-color: #1778BE;
    --secondary-color: ;
    --light-blue: #1E73BE0D;
}

.primary-color {
    background-color: var(--light-blue);
}

.light-blue {
    background-color: var(--light-blue);
}

.text-theme {
    color: var(--primary-color);
}

.button-primary {
    color: var(--white-color);
    background-color: var(--primary-color) !important;
    border-radius: 10px;
}

.button-primary:hover {
    color: var(--white-color) !important;
    background-color: var(--black-color) !important;
}

/* Hero Section */

.hero-section {
    background-image: url(../images/b2b-images/banner-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
    padding-block: 70px;
}

.hero-section ul,
.hero-section ul li {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-section ul {
    flex-direction: column;
    align-items: flex-start;
}

.hero-section ul li img {
    filter: brightness(0) invert(1);
}

/* Award Wrapper */

.award-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.award-img img {
    object-fit: contain;
}

/* Bordered Wrapper */

.bordered-card {
    padding: 40px 30px 50px;
    border-radius: 20px;
    border: 0.5px solid #96969630;
    transition: all 0.3s;
}

.bordered-card:hover {
    transition: all 0.3s;
    border-color: var(--primary-color);
}

.list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.check-icon {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 0 20px;
}

/* Cta Wrapper */

.cta-intro {
    background-image: url(../images/b2b-images/cta-intro-2.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

.cta-intro.cta-2 {
    background-image: url(../images/b2b-images/cta-intro.webp);
}

.bordered-cta {
    padding: 80px 50px;
    border: 3px solid #1778BE;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Faq Wrapper */

.new-faq {
    border: none;
}

.new-faq .accordion-item {
    padding: 0;
    border-radius: 10px;
    background: transparent;
    margin: 0 0 20px;
    border: none;
}

.new-faq .accordion-item .accordion-header .accordion-button {
    background: var(--light-blue) !important;
    padding: 24px 24px;
    border-radius: 14px;
    font-size: 18px !important;
    color: var(--primary-color);
    gap: 10px;
}

.new-faq .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    color: var(--white-color);
    background: var(--primary-color) !important;
}

.new-faq .accordion-body {
    padding: 5px;
    margin-top: 20px;
    font-size: 17px;
}

.new-faq .accordion-button::after {
    background-image: url(../images/b2b-images/accordion-plus.webp);
    background-size: contain !important;
    width: 20px;
    height: 20px;
}

.new-faq .accordion-button:not(.collapsed)::after {
    background-image: url(../images/b2b-images/accordion-minus.webp);
}


/* testimonial Slider */

.testimonial-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testi-slider .swiper-slide {
    display: flex;
    height: auto;
}

.testi-content {
    box-shadow: 0px 10px 8px 0px #00000029;
    background: #fff;
    padding: 25px 25px 70px;
    border-radius: 20px;
    padding-bottom: calc(58px - -46px);
    height: 100%;
}

.testi-imagebox {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: -46px 0 0;
}

.testi-img {
    border: 5px solid #ffff;
    margin: 0 0 10px;
    width: 100%;
    max-width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
}

.testi-prof {
    font-size: 12px;
}

.testi-rating {
    display: flex;
    align-items: center;
    margin: 5px 0 0;
}

.testimonial-wrapper svg {
    width: 40px;
    height: 50px;
    margin: 0 0 -10px 50px;
    z-index: 1;
}

.button-primary {
    border-radius: 10px;
    white-space: nowrap;
}

.column-box {
    padding: 20px 80px;
}


/* Responsive */

@media (max-width: 1920px) {

    .padding-left {
        --page-width: 1600px;
        padding-left: calc(50% - (var(--page-width) / 2) + 12px);
    }
    .padding-right {
        --page-width: 1600px;
        padding-right: calc(50% - (var(--page-width) / 2) + 12px);
    }
}

@media only screen and (max-width: 1599px) {

}

@media only screen and (max-width: 1440px) {
   
}

@media only screen and (max-width: 1200px) {

}

@media only screen and (max-width: 992px) {

    .bordered-card {
        padding: 20px;
    }

    .column-box {
        padding: 20px 0;
    }

    .hero-form {
        display: none;
    }
    
    .pt-2 {
        padding-top: 15px !important;
    }
}

@media only screen and (max-width: 767px) {

    .award-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .row-order {
        flex-direction: column-reverse;
    }

    .text-align-center {
        text-align: center;
    }

    .bordered-cta {
        padding: 30px 30px;
    }
}