.width-2560 {
    max-width: 2560px;
    width: 100%;
    margin: 0 auto;
}

/* ----------------------------------------Smart board popup---------------------------------------- */

/* Loader code--------> */


.loader {
    margin: auto;
    width: 40px;
    aspect-ratio: 4;
    --_g: no-repeat radial-gradient(circle closest-side, #FFF 90%, #0000);
    background:
        var(--_g) 0% 50%,
        var(--_g) 50% 50%,
        var(--_g) 100% 50%;
    background-size: calc(100%/3) 100%;
    animation: l7 1.5s infinite linear;
}

@keyframes l7 {
    33% {
        background-size: calc(100%/3) 0%, calc(100%/3) 100%, calc(100%/3) 100%
    }

    50% {
        background-size: calc(100%/3) 100%, calc(100%/3) 0%, calc(100%/3) 100%
    }

    66% {
        background-size: calc(100%/3) 100%, calc(100%/3) 100%, calc(100%/3) 0%
    }
}

.smart-board-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    border-radius: 14px;
    width: 582px;
    height: auto;
    z-index: 101;
    padding: 40px 50px 35px 50px;
    overflow: hidden;
}

.smart-board-popup-cross {
    position: absolute;
    top: 4%;
    right: 5%;
    cursor: pointer;
}

.smart-board-popup-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.smart-board-popup-top-step {
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 105;
    justify-content: start;
    align-items: center;
}

.count-select {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-family: Inter;
    font-size: 17.347px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.003px;
}

.count-select-text {
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.003px;
}

.count-select.inactive-count {
    border: 1px solid #C9C9C9;
    color: #C9C9C9;
    background-color: white;
}


.count-select.active-count {
    background: linear-gradient(135deg, #ABE4FA 14.64%, #13B4E8 85.36%);
    color: #ffffff;
    border: none;
}

.count-select-text.inactive-count-text {
    color: #C9C9C9;
}

.count-select-text.active-count-text {
    color: #212121;
}

.smart-board-popup-top-line {
    height: 2px;
    width: 200px;
    background: #C9C9C9;
    z-index: 102;
    position: absolute;
    top: 9.5%;
    left: 36%;
    transition: background-color 0.5s ease;
}

.popup-line-step2 {
    top: 9%;
}

.smart-board-form-row {
    margin-top: 6px;
}

label {
    color: #666666;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.056px;
    margin-bottom: 4px;
    width: 100%;
    height: auto;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
}


input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #FFFFFF inset;
    -webkit-text-fill-color: #212121 !important;
    -webkit-text-font-weight: 500 !important;
}

input,
select,
textarea {
    color: #212121 !important;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    height: 38px;
    padding: 8px;
    border-radius: 4px;
    border: 0.6px solid #DEDEDE;
    background: #FFFFFF;
    width: 100%;
}

textarea {
    height: 80px;
    resize: none;
}

select {
    appearance: none;
}

.select-svg {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: start;
    position: relative;
}

.select-svg>svg {
    position: absolute;
    right: 2%;
}

.smart-board-popup-content-heading>h3 {
    font-family: Inter;
    font-size: 24px;
    font-weight: 700;
    line-height: 29.05px;
    letter-spacing: 0.005em;
    text-align: center;
    color: #212121;
    width: 90%;
    margin: auto;
    margin-top: 30px;
}

.smart-board-popup-content-subheading>p {
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
    line-height: 24.2px;
    letter-spacing: 0.004em;
    text-align: center;
    color: #9E9E9E;
    margin-top: 16px;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #212121 !important;
    font-weight: 500;
}

.error {
    font-size: 10px !important;
    font-weight: inherit !important;
    color: red;
    font-family: 'Open Sans' !important;
    margin-bottom: 10px;
    line-height: 1.2;
}

.submit-button-1 {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.submit-button-1>button {
    color: #9e9e9e;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.2px;
    border-radius: 5px;
    display: flex;
    background-color: #F7F9FB;
    cursor: not-allowed;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 455px;
    border: none;
    transition: background-color 0.2s ease-in;
}

.submit-button-1>button.active-button-step1 {
    background-color: #1BB1E7;
    cursor: pointer;
    color: #ffffff;
}

/* Step 2-------------> */

.smart-board-form-step2 {
    display: none;
}


.smart-board-form-card {
    width: 50%;
}

.smart-board-form-row.smart-board-form-name-phone {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 18px;
}


.submit-button-2 {
    display: none;
    justify-content: center;
    margin-top: 20px;
}

.submit-button-2>button {
    color: #9e9e9e;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.2px;
    border-radius: 5px;
    display: flex;
    background-color: #F7F9FB;
    cursor: not-allowed;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 455px;
    border: none;
    transition: background-color 0.2s ease-in;
}

.submit-button-2>button.active-button-step2 {
    background-color: #1BB1E7;
    cursor: pointer;
    color: #ffffff;
}

@media screen and (max-width: 767px) {

    .smart-board-popup {
        width: 450px;
    }

    .smart-board-popup-content-heading>h3 {
        font-size: 18px;
        line-height: 1.4;
    }

    .smart-board-popup-content-subheading>p {
        font-size: 14px;
        line-height: 1.4;
    }

    svg.smart-board-popup-cross {
        width: 16px;
        height: 16px;
    }

    .submit-button-1>button,
    .submit-button-2>button {
        font-size: 14px;
        width: 100%;
        height: 45px;
    }

    .count-select-text {
        font-size: 14px;
    }

    .count-select {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .smart-board-popup-top-line {
        width: 160px;
    }

    .active-count>svg {
        width: 12px;
        height: 12px;
    }

    input,
    select,
    textarea {
        font-size: 12px;
    }

    label {
        font-size: 10px;
    }

    .select-svg>svg {
        width: 20px;
        height: 20px;
    }

    .smart-board-popup-top-line {
        top: 9.4%;
    }

    .one-stop-destination-features-mobile {
        margin-top: 16px;
    }

    .one-stop-destination-button {
        margin-top: 24px;
    }
}

@media screen and (max-width: 500px) {
    .smart-board-popup {
        width: 90%;
        margin: auto;
        padding: 40px 30px 35px 30px;
    }

    .smart-board-popup-content-heading>h3 {
        width: 100%;
    }

    .smart-board-form-row.smart-board-form-name-phone {
        flex-direction: column;
        gap: 6px;
    }

    .smart-board-form-card {
        width: 100%;
    }

    .smart-board-form-step2 {

        max-height: 220px;
        min-height: 220px;
        overflow-y: scroll;
    }



    .smart-board-form-step2::-webkit-scrollbar {
        width: 3px;
        margin-left: 5px;
        border: none;
    }

    .smart-board-form-step2::-webkit-scrollbar-track {
        background-color: #F2F2F2;
    }

    .smart-board-form-step2::-webkit-scrollbar-thumb {
        background-color: #0077FFB2;
        border-radius: 2px;
    }

    .smart-board-form-step2::-webkit-scrollbar-thumb:hover {
        background-color: #0077FF;
    }

    .smart-board-form-step2::-webkit-scrollbar-corner {
        background-color: transparent;
    }

    .smart-board-form-step2::-webkit-scrollbar-thumb:vertical {
        height: 1px;
    }

    .smart-board-form-step2::-webkit-scrollbar-thumb:horizontal {
        width: 2px;
        border-radius: 2px;
    }

    .smart-board-form-step2::-webkit-scrollbar-thumb:vertical:hover,
    .smart-board-form-step2::-webkit-scrollbar-thumb:horizontal:hover {
        background-color: #0077FF;
    }

    label {
        margin-bottom: 0;
    }

    .smart-board-form-row {
        margin-top: 2px;
    }

}

@media screen and (max-width: 450px) {
    .smart-board-popup-top-line {
        left: 30%;
        width: 180px;
    }
}

@media screen and (max-width: 420px) {
    .count-select-text {
        font-size: 12px;
    }

    .smart-board-popup-top-line {
        width: 165px;
    }
}

@media screen and (max-width: 400px) {
    .smart-board-popup-content-heading>h3 {
        font-size: 16px;
    }
}

@media screen and (max-width: 380px) {

    .submit-button-1>button,
    .submit-button-2>button {
        font-size: 12px;
        height: 40px;
    }

    .smart-board-popup-top {
        gap: 30px;
    }

    .smart-board-popup-top-line {
        width: 150px;
    }
}



/*-----------------------------------------------------------Mail and Call---------------------------------- */

.mail-and-call {
    display: flex;
    align-items: center;
    gap: 35px;
    position: fixed;
    top: 20%;
    right: 2.8%;
    z-index: 99;
    transform: rotate(-90deg);
    transform-origin: top right;
}

.call-us-button>a {
    width: 200px;
    height: 43px;
    border-radius: 9px 9px 0px 0px;
    background: #1BB1E7;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    z-index: 1001;
    cursor: pointer;
    transition: height 0.6s ease;
}

.mail-us-button>a {
    width: 160px;
    height: 43px;
    border-radius: 9px 9px 0px 0px;
    background: #FDC500;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: height 0.6s ease;
}


.call-us-button>a>span,
.mail-us-button>a>span {
    color: #ffffff;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.4;
}

/* ---------------------------------------Hero section- One stop destination--------------------------- */


.one-stop-destination {
    margin-top: 120px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
}


.one-stop-destination-content {
    width: 50%;
    display: flex;
    flex-direction: column;

}

.one-stop-destination-slider {
    width: 50%;
}

.one-stop-destination .one-stop-destination-slider-mobile {
    display: none;
}

.one-stop-destination-heading>h1 {
    color: #212121;
    font-family: Poppins;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 72px;
    margin-top: 0;
}


.one-stop-destination-paragraph>p {
    color: #575756;
    font-family: "Open Sans";
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    margin-top: 16px;
}

.one-stop-destination-button {
    display: flex;
    justify-content: start;
    gap: 24px;
    align-items: start;
    margin-top: 40px;
}

.request-quote>a>button {
    border-radius: 8px;
    background: #14B1E7;
    color: #FFFFFF;
    text-align: center;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.4;
    border: none;
    width: 250px;
    height: 55px;
    cursor: pointer;
}

button {
    cursor: pointer;
}

.one-stop-destination-features {
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 22px;
    width: 100%;
    margin-top: 50px;
}

.one-stop-destination-features-mobile {
    display: none;
}

.one-stop-destination-feature-card {
    border-radius: 10.277px;
    background: #F3FCFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 115px;
    height: 100px;
    padding-left: 10px;
    padding-right: 10px;
}

.one-stop-destination-feature-card>p {
    color: #575756;
    text-align: center;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    margin-top: 8px;
}

.one-stop-destination-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.one-stop-destination .one-stop-destination-slider {
    border-radius: 20px;
    background: #F3FCFF;
    padding: 100px 30px 0px 30px;
    height: auto;
}


.one-stop-destination-image-brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 6.078px;
    background: #FFF;
    padding: 10px 60px;
    width: fit-content;

}

.one-stop-destination-image-brand>p {
    color: #212121;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.one-stop-destination-image>img {
    width: 485px;
    height: 285px;
}


.arrows-hero-section {
    position: absolute;
    display: flex;
    width: 130px;
    justify-content: space-between;
    align-items: center;
    top: 10%;
    right: 4%;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 14px !important;
    font-weight: 700 !important;
}

.swiper-button-prev {
    background-color: white !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 12px !important;
    border-radius: 50% !important;
    width: 36px !important;
    height: 36px !important;
}

.swiper-button-prev::after {
    color: #212121 !important;
}

.swiper-button-next {
    background-color: black !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 12px !important;
    border-radius: 50% !important;
    width: 36px !important;
    height: 36px !important;
}

.swiper-button-next::after {
    color: #ffffff !important;
}

.swiper-button-prev.clicked {
    background-color: black !important;
}

.swiper-button-prev.clicked::after {
    color: #ffffff !important;
}


/* ---------------------------------------------Top IFP Brands-----------------------------------------------*/


.top-ifp-brands {
    margin-top: 100px;
}

.top-ifp-brands-heading>h2 {
    color: #212121;
    text-align: center;
    font-family: Poppins;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.share-button-page {
    position: relative;
    margin-top: 70px;
}

.top-ifp-brands-header>ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin-top: 25px;
}

.top-ifp-brands-header>ul>li {
    color: #666666;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    border-radius: 25px;
    border: 1px solid #DEDEDE;
    padding: 11px 45px;
    cursor: pointer;
}

.active-brand {
    background-color: #EDFAFF !important;
    border: none !important;
    color: #14B1E7 !important;
}

/* Top IFP brand image container styling-----> */

.top-ifp-brands-images {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 40px;
}

.top-brands-image {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

.bottom-brands-images {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
}


.benq-hero-image-slide,
.lg-hero-image-slide {
    display: flex;
    justify-content: center;
}

.active-image-slider {
    border: 3px solid #1BB1E7;
    border-radius: 14px;
}

.benq-hero-image-slide>img,
.lg-hero-image-slide>img {
    width: 80%;
    cursor: pointer;
}

.image-button-slider>svg {
    cursor: pointer;
}



/* Top IFP brand form styling---------------> */


.top-ifp-brands-form {
    margin-top: 16px;
}

.top-ifp-brands-form-row {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 20px;
}


.top-ifp-brand-label {
    color: #1BB1E7;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.072px;
    margin-bottom: 0;
    width: 20%;
}

.top-ifp-brands-select-svg {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    height: 45px;
}

.top-ifp-brands-select-svg>select {
    height: 45px;
    color: #575756;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.072px;
}

.top-ifp-brands-select-svg>svg {
    position: absolute;
    right: 2%;
}

.top-ifp-brands-counter-submit {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 36px;
    width: 100%;
}

.top-ifp-brands-submit {
    width: 100%;
}

.top-ifp-brands-submit>button {
    color: #FFFFFF;
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.2px;
    border-radius: 8px;
    display: flex;
    background-color: #1BB1E7;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 100%;
    border: none;
}


.item-counter {
    display: flex;
    border-radius: 8px;
    background: #E8FBFF;
    flex-shrink: 0;
    justify-content: space-between;
    align-items: center;
    width: 159px;
    padding: 0px 16px;
}

.item-counter-subtract,
.item-counter-add {
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    cursor: pointer;
}

.item-counter-number>input {
    color: #212121;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    height: auto;
    border: none;
    text-align: center;
    background-color: #E8FBFF;
}


/* -------------------------------------BENQ Specifications---------------------------------------------------- */



.top-ifp-brand-heading>h3 {
    color: #3c3c3c;
    font-family: Poppins;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.top-ifp-brands-paragraph>p {
    color: #575756;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.top-brands-main-image-benq>img,
.top-brands-main-image-lg>img {
    width: 587px;
    height: 740px;
}

.top-ifp-brands-benq,
.top-ifp-brands-lg {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.top-ifp-brands-lg {
    display: none;
}

.top-ifp-brands-benq-image {
    width: 50%;
}


.top-ifp-brands-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}


.brand-specifications-table {
    margin-top: 50px;
}

.brand-weight,
.brand-power-consumption,
.brand-speaker,
.brand-resolution,
.brand-touch {

    display: flex;
    align-items: center;
    width: 100%;
}


hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eee;
}

.brand-specification-heading {
    color: #575756;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: 1px solid #E4E4E4;
    border-left: none;
    margin-bottom: 0;
    padding: 12px 6px 12px 6px;
    width: 40%;
    margin: 0;

}


.brand-specification-value {
    color: #575756;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: 1px solid #E4E4E4;
    border-right: none;
    margin-bottom: 0;
    padding: 12px 6px 12px 6px;
    width: 60%;
    margin: 0;
}


.brand-features {
    border-radius: 14px;
    border: 1px solid #E4E4E4;
    padding: 17px 30px 21px 17px;
    margin-top: 48px;
}

.brand-feature-row {
    display: flex;
    align-items: start;
    gap: 14px;
}

.brand-feature-row-heading {
    display: flex;
    align-items: start;
    gap: 16px;
}

.brand-feature-row-heading>h3 {
    color: #1D364D;
    font-family: Inter;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 0;
    margin-bottom: 0.5rem;
}


.brand-feature-row-paragraph>p {
    color: #726C6C;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.brand-features-horizontal-row {
    background: #E4E4E4;
    height: 1px;
    margin-top: 10px;
    margin-bottom: 10px;
}


/* Next step form container------> */

.next-step-form-container {
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    border-radius: 14px;
    z-index: 101;
    padding: 40px 50px 35px 50px;
    overflow: hidden;
    height: 580px;
    width: 528px;
}

/**-------------------------Share button of smart board page---------------------------------- */

.share-button-smart-board-page {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background-color: #F8FEFF;
    position: absolute;
    top: 0%;
    right: 0%;
    border-radius: 50%;
    cursor: pointer;
}



/* share functionality */
.share-functionality {
    z-index: 999;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    display: none;
    background-color: white;
    max-width: 700px !important;
    border-radius: 12px;
    padding: 25px 30px;
    width: 94%;
    margin: 0px 0px;
    opacity: 0;
    animation: zoomIn 0.3s ease-out forwards;
}

@keyframes zoomIn {
    0% {
        transform: translate(-50%, -50%) scale(0.5);

    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

.share-functionality-main-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.share-functionality-main-container p {
    font-family: Inter;
    font-size: 20px;
    font-weight: 600;
    margin: 0px;
    color: #000;
}

.share-field-input-clip {
    display: flex;
}

.share-field-input-clip input {
    padding: 20px 15px;
    outline: none;
    border: 1px solid #000;
    border-radius: 0px;
    width: 82%;
    font-size: 14px;
    margin: 0px;
}

.share-field-input-clip button {
    border: 1px solid #212121;
    border-radius: 0px;
    width: 18%;
    padding: 0px;
    background-color: #212121;
    font-family: 'Inter';
    color: white;
    cursor: pointer;
    font-size: 14px;
}

.share-field-input-clip {
    margin: 18px 0px;
}

.share-field-social-icons {
    display: flex;
    gap: 10px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.share-functionality-close-icon {
    cursor: pointer;
}

/* share functionality code end */


@media screen and (max-width: 480px) {
    .share-field-input-clip {
        display: flex;
        flex-direction: column;
    }

    .share-field-input-clip input {
        padding: 12px 15px;
        width: 100%;
    }

    .share-field-input-clip button {
        padding: 8px 0px;
        width: 100%;
        margin: 0px;
    }
}

/* -----------------------------------------Why choose idreameducation--------------------------------*/



.why-choose-idream {
    margin-top: 100px;
}


.why-choose-idream-heading>h2 {
    color: #212121;
    text-align: center;
    font-family: Poppins;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 70%;
    margin: auto;
}


.why-choose-idream .choose-our-classroom-mobile-carousel {
    display: none;
}

.choose-our-classroom-web-carousel {
    position: relative;
    max-width: 100%;
    margin: auto;
    margin-top: 48px;
    overflow: hidden;
}

.choose-our-classroom-web-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.choose-our-classroom-row {
    min-width: 100%;
    box-sizing: border-box;
}

.choose-our-classroom-row img {
    width: 100%;
}

.choose-our-classroom-carousel-dot.choose-our-classroom-active-dot {
    background-color: #212121;
    width: 12px;
    border: none;
    border-radius: 40%;
}

.choose-our-classroom-row {
    width: 100%;
    border-radius: 0;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: start;
}

.choose-our-classroom-row-card {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    width: 100%;
}

.choose-our-classroom-row-card>img {
    width: 625px;
    height: 382px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 12px;
}

.icon-paragraph-section {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 20px;
}

.icon-paragraph-section>svg {
    width: 22px;
    height: 32px;
}

.content-section>h3 {
    margin-top: 0;
    color: #212121;
    font-family: Poppins;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 34px;
}

.content-section>p {
    color: #575756;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
}

.swiper-wrapper {
    margin-bottom: 36px !important;
}

.swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    background-color: #c9c9c9 !important;
    opacity: 1 !important;
    margin: 0 4px !important;
}

.swiper-pagination-bullet-active {
    background: #212121 !important;
    width: 12px !important;
    border-radius: 4px !important;
}

.why-choose-idream-button {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.why-choose-idream-button>a>button {
    border-radius: 8px;
    background: #14B1E7;
    color: #FFF;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.4;
    padding: 5px 30px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
}

/* ----------------------------------------------------------Discover the power of IFP------------------------------------------------------------ */



.power-of-ifp {
    margin-top: 100px;
}


.power-of-ifp-heading>h2 {
    color: #212121;
    text-align: center;
    font-family: Poppins;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}


.power-of-ifp-paragraph>p {
    color: #575756;
    text-align: center;
    font-family: "Open Sans";
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    width: 100%;
    margin: auto;
}


.power-of-ifp-video-container {
    margin-top: 32px;
}


.power-of-ifp-video-container {
    display: flex;
    width: 100%;
    height: 80vh;
    margin: auto;
    overflow: hidden;
    border-radius: 15px;
    margin-top: 32px;
}

.power-of-ifp-video-container>iframe {
    aspect-ratio: 16 / 9;
    width: 100% !important;
    -moz-border-radius: 15px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #DEDEDE;
}

/* -----------------------------------------------VERSATILE DIGITAL SOLUTIONS---------------------------------------- */

.versatile-digital-solution {
    margin-top: 100px;
}

.versatile-digital-solution-heading>h2 {
    font-family: Poppins;
    font-size: 48px;
    font-weight: 400;
    line-height: 72px;
    text-align: center;
    color: #212121;
}


.versatile-digital-solution-subheading>p {
    font-family: Inter;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
    color: #575756;
    margin-top: 24px;
}

.versatile-digital-solution-card-container {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: start;
    width: 100%;
    margin-top: 40px;

}

.versatile-digital-solution-card {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 14px;
    width: 390px;
}


.versatile-digital-solution-card>h4 {
    color: #212121;
    font-family: Poppins;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.versatile-digital-solution-card>p {
    color: #666666;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    width: 90%;
}

/*------------------------------------------------READY TO TRANSFORM------------------------------------------------------------------------------------*/

.ready-to-transform {
    margin-top: 60px;
}

.ready-to-transform-container {
    width: 100%;
    height: 328px;
    flex-shrink: 0;
    background: linear-gradient(90deg, #F5FCFF 0%, #C2EBFA 100%);
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;

}

.ready-to-transform-container>p {
    color: #212121;
    text-align: center;
    font-family: Poppins;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0;

}

.ready-to-transform-container-button {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ready-to-transform-container-button>a>button {

    border-radius: 8px;
    background: #14B1E7;
    color: #FFF;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.4;
    padding: 5px 30px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
}


/* --------------------------------------Frequently Asked Questions-------------------------------------- */

.faq-main-container {
    margin-top: 100px;
}

.faq-main-container>h2 {
    color: #212121;
    text-align: center;
    font-family: Poppins;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
}

.faq-container {
    margin-top: 33px;
    margin-bottom: 55px;
    padding: 31px 80px;
    border-radius: 40px;
    height: 450px;
    overflow-y: scroll;
    background: #FFF;
    box-shadow: 12px 12px 10px 0px #EFF9FF;
}

.accordion .accordion-item {
    border-bottom: 1px solid #e5e5e5;
}

.accordion-title {
    color: #212121;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 48px;
    width: 80%;
}

.accordion button {
    text-align: left;
    width: 100%;
    padding: 16px 0;
    border: none;
    background: none;
    outline: none;
}

.accordion button:hover,
.accordion button:focus {
    cursor: pointer;
}

.accordion button[aria-expanded='true']+.accordion-content {
    opacity: 1;
    max-height: 1000px;
    transition: max-height ease-out, opacity ease-out;
    /* Smoother transition */
}

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height ease, opacity ease;
    /* Smoother transition */
}

.accordion .accordion-content p {
    font-size: 16px;
    color: #666666;
}

#accordion-button-3 {
    color: black;
    font-family: "Inter", sans-serif;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}


.accordion-content p {
    color: black;
    font-family: "Inter", sans-serif !important;
}



@media screen and (max-width: 1380px) {
    .one-stop-destination-image>img {
        width: 420px;
        height: 240px;
    }

    .one-stop-destination-slider {
        padding-top: 120px;
    }
}

@media screen and (max-width: 1330px) {

    .ready-to-transform-container>p {
        padding: 0 30px;
    }
}

@media screen and (max-width:1280px) {

    .one-stop-destination-heading>h1 {
        font-size: 48px;
        line-height: 1.4;
    }

    .top-ifp-brand-label {
        width: 30%;
    }
}



@media screen and (max-width: 1200px) {

    .why-choose-idream,
    .top-ifp-brands,
    .power-of-ifp,
    .versatile-digital-solution,
    .faq-main-container {
        margin-top: 80px;
    }


    .ready-to-transform-container>p {
        padding: 0 30px;
        font-size: 32px;
        line-height: 1.4;
    }


    .project-proposal-button>a>button {
        font-size: 16px;
        padding: 4px 25px;
        height: 56px;
    }

    .top-ifp-brands-submit>button {
        font-size: 16px;
    }

    .item-counter-subtract,
    .item-counter-add,
    .item-counter-number>input {
        font-size: 16px;
    }

    .one-stop-destination-heading>h1 {
        font-size: 42px;
    }

    .one-stop-destination-paragraph>p {
        font-size: 20px;
        line-height: 1.4;
    }


    .power-of-ifp-heading>h2,
    .why-choose-idream-heading>h2,
    .versatile-digital-solution-heading>h2,
    .top-ifp-brands-heading>h2,
    .faq-main-container>h2 {
        font-size: 40px;
        line-height: 1.4;
        width: 100%;
    }

    .versatile-digital-solution-subheading>p,
    .power-of-ifp-paragraph>p {
        font-size: 18px;
        line-height: 1.4;
    }

    .versatile-digital-solution-card>h4 {
        font-size: 20px;
    }

    .versatile-digital-solution-card>p {
        font-size: 16px;
    }

    .versatile-digital-solution-card>img {
        margin-bottom: 12px;
    }

    .versatile-digital-solution-card {
        gap: 5px;
    }

    .versatile-digital-solution-subheading>p,
    .power-of-ifp-paragraph>p {
        margin-top: 0;
    }

    .one-stop-destination-image>img {
        width: 380px;
        height: 215px;
    }


    .one-stop-destination-image-brand>p {
        font-size: 18px;
    }

    .one-stop-destination-content {
        width: 48%;
    }

    .one-stop-destination-feature-card>svg {
        width: 26px;
        height: 26px;
    }

    .one-stop-destination-feature-card>p {
        font-size: 10px;
    }

    .one-stop-destination-feature-card>svg {
        width: 24px;
        height: 24px;
    }

    .one-stop-destination-feature-card {
        width: 100px;
        height: 90px;
    }

    .request-quote>a>button {
        width: 230px;
        height: 50px;
        font-size: 16px;
    }

    .one-stop-destination-slider {
        padding-top: 100px;
    }

    .top-ifp-brands-paragraph>p {
        font-size: 16px;
        line-height: 1.4;

    }

    .top-ifp-brands-form {
        margin-top: 0;
    }

    .choose-our-classroom-row-card>img {
        width: 100%;
        height: 100%;
    }

    .top-ifp-brand-label {
        font-size: 16px;
    }

    .brand-specification-heading,
    .brand-specification-value {
        font-size: 14px;
    }

    .top-ifp-brands-images {
        gap: 40px;
    }

    .top-brands-main-image-benq>img,
    .top-brands-main-image-lg>img {
        height: 700px;
    }

    .content-section>h3 {
        font-size: 24px;
        line-height: 1.4;
    }

    .content-section>p {
        font-size: 16px;
        line-height: 1.4;
    }
}

@media screen and (max-width: 1100px) {

    .mail-and-call {
        display: none;
    }

    .one-stop-destination-heading>h1 {
        font-size: 38px;
    }

    .one-stop-destination-slider {
        padding-top: 90px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .accordion-title {
        font-size: 20px;
    }

    .top-ifp-brands-header>ul>li {
        font-size: 16px;
    }

    .top-ifp-brands-benq,
    .top-ifp-brands-lg {
        gap: 24px;
    }

    .brand-features {
        margin-top: 30px;
        padding: 14px 6px 14px 13px;
    }

    .brand-specification-heading {
        width: 46.5%;
    }

    .share-button-page {
        margin-top: 30px;
    }
}


@media screen and (max-width: 992px) {


    .container-1440 {
        padding: 0 30px;
    }

    .why-choose-idream,
    .top-ifp-brands,
    .power-of-ifp,
    .versatile-digital-solution,
    .faq-main-container {
        margin-top: 60px;
    }

    .one-stop-destination-heading>h1 {
        font-size: 36px;
    }

    .one-stop-destination-paragraph>p {
        font-size: 18px;
    }

    .why-choose-idream-heading>h2,
    .power-of-ifp-heading>h2,
    .versatile-digital-solution-heading>h2,
    .top-ifp-brands-heading>h2,
    .faq-main-container>h2 {
        font-size: 32px;
    }

    .versatile-digital-solution-subheading>p,
    .power-of-ifp-paragraph>p {
        font-size: 16px;
    }

    .versatile-digital-solution-card>p {
        width: 100%;
        font-size: 15px;
    }

    .versatile-digital-solution-card-container {
        gap: 12px;
        margin-top: 24px;
    }

    .ready-to-transform-container {
        height: 260px;
    }

    .one-stop-destination-slider {
        padding-top: 75px;
    }

    .request-quote>a>button {
        width: 220px;
        height: 47px;
        border-radius: 5px;
    }

    .choose-our-classroom-row-card>img {
        width: 100%;
        height: 100%;
    }

    .bottom-brands-images {
        width: 100%;
        justify-content: center;
        gap: 36px;
    }

    .top-ifp-brands-content {
        width: 100%;
    }

    .item-counter {
        width: 135px;
    }

    .top-ifp-brands-benq,
    .top-ifp-brands-lg {
        flex-direction: column;
    }

    .one-stop-destination-paragraph>p {
        margin-top: 0;
    }

    .one-stop-destination {
        margin-top: 120px;
    }

    .mail-and-call {
        right: 3%;
    }

    .call-us-button>a>span,
    .mail-us-button>a>span {
        font-size: 14px;
    }

    .call-us-button>a {
        width: 170px;
    }

    .mail-us-button>a {
        width: 130px;
    }

    .call-us-button>a>svg {
        width: 18px;
        height: 18px;
    }

    .mail-us-button>a>svg {
        width: 22px;
        height: 22px;
    }


    .share-button-smart-board-page {
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1rem;
        background-color: #F8FEFF;
        position: absolute;
        left: 5%;
        border-radius: 50%;
        cursor: pointer;
        top: 4%;
    }

    .share-button-page {
        position: static;
    }

    .top-ifp-brands {
        position: relative;
    }

}

@media screen and (max-width: 900px) {

    .one-stop-destination {
        flex-direction: column;

    }

    .one-stop-destination-content,
    .one-stop-destination-slider {
        width: 100%;
    }

    .one-stop-destination-slider {
        display: none;
    }

    .one-stop-destination .one-stop-destination .one-stop-destination-slider-mobile {
        display: block;
        width: 100%;
        border-radius: 20px;
        background: #F3FCFF;
        height: auto;
        padding: 75px 30px 0px 30px;
        margin-top: 36px;
    }

    .one-stop-destination-features {
        display: none;
    }

    .one-stop-destination-features-mobile {
        display: flex;
        align-items: start;
        justify-content: start;
        gap: 22px;
        width: 100%;
        margin-top: 50px;
    }


    .one-stop-destination-button {
        justify-content: center;
        margin-top: 32px;
    }

    .one-stop-destination-image>img {
        width: 80%;
        height: 80%;
        margin: auto;
        display: flex;
        justify-content: center;
        padding-top: 40px;
    }

    .one-stop-destination-features-mobile {
        margin-top: 30px;
        justify-content: space-evenly;
    }

    .arrows-hero-section {
        position: static;
    }

    .one-stop-destination-image-brand>p {
        font-size: 16px;
    }

    .one-stop-destination-image-brand>svg {
        width: 24px;
        height: 36px;
    }

    .mail-and-call {
        right: 4%;
    }
}


@media screen and (max-width: 767px) {


    .container-1440 {
        padding: 0 22px;
    }

    .one-stop-destination-heading>h1 {
        font-size: 28px;
        text-align: center;
    }

    .one-stop-destination-paragraph>p {
        font-size: 16px;
        text-align: center;
    }

    .why-choose-idream,
    .top-ifp-brands,
    .power-of-ifp,
    .versatile-digital-solution,
    .faq-main-container {
        margin-top: 40px;
    }

    .why-choose-idream-heading>h2,
    .power-of-ifp-heading>h2,
    .versatile-digital-solution-heading>h2,
    .top-ifp-brands-heading>h2,
    .faq-main-container>h2 {
        font-size: 24px;
    }

    .power-of-ifp-video-container {
        height: 100%;
    }

    .versatile-digital-solution-card-container {
        flex-direction: column;
        justify-content: start;
        gap: 20px;
    }

    .versatile-digital-solution-card {
        width: 100%;
    }

    .versatile-digital-solution-card>img {
        width: 100%;
    }

    .versatile-digital-solution-card>p {
        width: 100%;
        font-size: 14px;
    }

    .versatile-digital-solution-card>img {
        margin-bottom: 6px;
    }

    .versatile-digital-solution-card>h4 {
        font-size: 18px;
    }

    .choose-our-classroom-row-card {
        width: 100%;
    }

    .choose-our-classroom-web-carousel {
        display: none;
    }

    .why-choose-idream .choose-our-classroom-mobile-carousel {
        display: block;
        margin: 30px auto;
    }

    .choose-our-classroom-row {
        margin-bottom: 10px;
    }

    .faq-container {
        border: none;
        border-radius: 12px;
        padding: 0 16px;
    }

    .accordion-title {
        font-size: 20px;
        line-height: 1.4;
    }

    .accordion .accordion-content p {
        font-size: 16px;
        line-height: 1.2;
    }

    .ready-to-transform {
        margin-top: 40px;
    }

    .ready-to-transform {
        padding: 0 !important;
    }

    .ready-to-transform-container>p {
        font-size: 26px;
        font-weight: 400;
        line-height: normal;
    }

    .project-proposal-button>a>button {
        font-size: 14px;
        padding: 4px 20px;
        height: 45px;
        border-radius: 5px;
    }

    .top-ifp-brands-submit>button {
        font-size: 14px;
        border-radius: 5px;
    }

    .item-counter-subtract,
    .item-counter-add,
    .item-counter-number>input {
        font-size: 14px;
    }

    .request-quote>a>button {
        font-size: 14px;
        width: 200px;
    }

    .ready-to-transform-container {
        height: 100%;
        width: 100%;
        padding: 40px 30px;
        gap: 15px;
        border-radius: 0;
    }

    .choose-our-classroom-row-card>img {
        width: 100%;
        height: 100%;
    }

    .content-section>h3 {
        font-size: 20px;
        margin-bottom: 0;
        line-height: 1.2;
    }

    .choose-our-classroom-row-icon>svg {
        width: 20px;
        height: 26px;
    }

    .content-section>p {
        font-size: 16px;
        margin-bottom: 0;
        line-height: 1.4;
        margin-top: 8px;
    }

    .icon-paragraph-section {
        gap: 15px;
    }

    .why-choose-idream-button>a>button,
    .ready-to-transform-container-button>a>button {
        height: 45px;
        font-size: 14px;
        padding: 5px 20px;
        border-radius: 5px;
    }

    .why-choose-idream-button {
        margin-top: 16px;
    }

    .request-quote>a>button {
        border-radius: 5px;
    }

    .top-ifp-brand-heading>h3 {
        font-size: 20px;
    }

    .top-ifp-brand-label {
        font-size: 16px;
    }

    .top-ifp-brands-paragraph>p {
        font-size: 14px;
        line-height: 1.4;
        margin-top: 12px;
    }


    .breakpoint {
        display: none;
    }

    .power-of-ifp-video-container>iframe {
        border-radius: 8px;
    }


    .one-stop-destination-image>img {
        padding-top: 50px;
    }

    .one-stop-destination .one-stop-destination-slider-mobile {
        padding-top: 30px;
    }

    .one-stop-destination {
        margin-top: 100px;
    }

    .swiper-button-prev:after,
    .swiper-button-next:after {
        font-size: 10px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        height: 30px;
        width: 30px;
    }

    .one-stop-destination-image-brand>svg {
        width: 18px;
        height: 24px;
    }

    .one-stop-destination-image-brand>p {
        font-size: 14px;
    }

    .one-stop-destination-image-brand {
        padding: 8px 45px;
    }

    .brand-feature-row-heading>h3 {
        font-size: 14px;
    }

    .share-button-smart-board-page {
        top: 3.5%;
    }
}


@media screen and (max-width: 600px) {


    .why-choose-idream,
    .top-ifp-brands,
    .power-of-ifp,
    .versatile-digital-solution,
    .faq-main-container {
        margin-top: 32px;
    }



    .ready-to-transform-container>p {
        padding: 0;
        font-size: 22px;
        font-weight: 500;
    }

    .project-proposal-button>a>button {
        font-size: 14px;
        padding: 4px 18px;
        height: 45px;
        border-radius: 5px;
    }

    .faq-container {
        border: none;
        padding: 0 16px;
        margin-top: 25px;
    }

    .accordion-title {
        font-size: 16px;
        line-height: 1.4;
    }

    .accordion .accordion-content p {
        font-size: 14px;
        line-height: 1.2;
    }

    #accordion-button-3 {
        padding-right: 15px;
    }

    .icon>svg {
        width: 16px;
        height: 16px;
    }

    .bottom-brands-images {
        gap: 0px;
    }

    .top-brands-main-image-benq>img,
    .top-brands-main-image-lg>img {
        width: 100%;
        height: 100%;
    }

    .top-ifp-brands-header>ul>li {
        font-size: 14px;
        padding-left: 35px;
        padding-right: 35px;
    }

    .top-ifp-brands-form-row {
        margin-top: 12px;
    }

    .top-ifp-brand-label {
        font-size: 14px;
    }

    .share-button-smart-board-page {
        width: 32px;
        height: 32px;
        top: 3.7%;
    }

    .top-ifp-brands-select-svg {
        height: 100%;
    }

    .top-ifp-brands-select-svg>select {
        height: 40px;
    }

    .top-ifp-brands-counter-submit {
        margin-top: 24px;
    }

    .request-quote>a>button {
        width: 160px;
        height: 38px;
    }

    .image-button-slider>svg {
        height: 16px;
        width: 16px;
    }

}

@media screen and (max-width: 560px) {

    .one-stop-destination-image>img {
        width: 90%;
        height: 90%;
    }

    .one-stop-destination-features-mobile {
        gap: 8px;
    }

    .top-ifp-brands-submit>button {
        height: 42px;
    }

    .choose-our-classroom-row-icon>svg {
        width: 13px;
        height: 20px;
    }

    .swiper-button-next {
        position: absolute;
        top: 12%;
        right: 34%;
    }

    .swiper-button-prev {
        position: absolute;
        top: 12%;
        left: 35%;
    }

}

@media screen and (max-width: 490px) {


    .one-stop-destination-image>img {
        width: 100%;
        height: 100%;
    }

    .one-stop-destination-feature-card {
        border-radius: 5px;

    }

    .one-stop-destination-features-mobile {
        justify-content: space-between;
    }

    .mail-and-call {
        right: 8%;
    }

    .share-button-smart-board-page {
        top: 4%;
    }


}

@media screen and (max-width: 450px) {
    .one-stop-destination-feature-card>p {
        font-size-adjust: 8px;
    }

    .one-stop-destination-feature-card {
        padding-left: 6px;
        padding-right: 6px;
    }

    .top-ifp-brands-select-svg>select {
        height: 35px;
    }

    .top-ifp-brands-select-svg>select,
    .top-ifp-brand-label {
        font-size: 12px;
    }

    .content-section>h3 {
        font-size: 16px;
    }

    .content-section>p {
        font-size: 14px;
    }

    .share-button-smart-board-page {
        top: 4.3%;
    }
}


@media screen and (max-width: 415px) {
    .one-stop-destination-feature-card>p {
        font-size: 8px;
    }

    .image-button-slider>svg {
        width: 16px;
        height: 16px;
    }
}

@media screen and (max-width: 380px) {

    .brand-specification-heading,
    .brand-specification-value {
        font-size: 12px;
    }
}

/* -----------Best Quote form style------------> */

.best-quote-form {
    position: fixed;
    display: none;
    gap: 0;
    border-radius: 14px;
    width: 80%;
    margin: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: auto;
    border-radius: 14px;
    z-index: 101;
    margin: auto;
    margin-top: 20px;
    animation: zoomIn 0.3s ease-out forwards;
}

@keyframes zoomIn {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.left-best-quote-form,
.right-best-quote-form {
    width: 50%;
}

.left-best-quote-form {
    background-color: #F3FCFF;
    padding: 40px 50px 40px 50px;
}

.left-best-quote-form-table {
    margin-top: 32px;
}

.form-table-row {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.form-table-heading {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 50%;
}

.form-table-paragraph {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 50%;
}

.form-table-heading>h4 {
    color: #212121;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    padding: 20px;
}

.form-table-heading {
    border-bottom: 1px solid #5757563D;
}

.form-table-paragraph {
    border-left: 1px solid #5757563D;
    border-bottom: 1px solid #5757563D;

}

.form-table-paragraph>p {
    color: #575756;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    padding: 20px;
}

.form-table-row {
    background-color: #ffffff;
    border-radius: 10px;
}

.right-best-quote-form {
    background-color: #ffffff;
    position: relative;
    padding: 40px 30px 40px 30px;
}

.right-best-quote-form>svg {
    position: absolute;
    top: 3%;
    cursor: pointer;
    right: 4%;
}

.left-best-quote-form-heading>h2 {
    color: #3C3C3C;
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.4;
}

.left-best-quote-form-paragraph>p {
    color: #575756;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;

}

.right-best-quote-form-heading>h2 {
    font-family: Inter;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    color: #212121;
    text-align: center;
}

.right-best-quote-paragraph>p {
    font-family: Inter;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    text-align: center;
    color: #9E9E9E;
    margin: 0;
}


.best-quote-form-row {
    margin-top: 10px;
}


.best-quote-form-row.best-quote-form-name-phone {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 18px;
    margin: 0;
}


.best-quote-form-main {
    margin-top: 16px;
}

.best-quote-form-card {
    width: 50%;
}


.submit-button-best-quote-form {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.submit-button-best-quote-form>button {
    color: #9e9e9e;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.2px;
    border-radius: 5px;
    display: flex;
    background-color: #F7F9FB;
    cursor: not-allowed;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 455px;
    border: none;
    transition: background-color 0.2s ease-in;
}

.submit-button-best-quote-form>button.active-button-quote {
    background-color: #1BB1E7;
    cursor: pointer;
    color: #ffffff;
}

/* --------Best quote form responsiveness-----------> */

@media screen and (max-width: 1350px) {

    .form-table-heading>h4,
    .form-table-paragraph>p {
        font-size: 18px;
    }
}

@media screen and (max-width: 1280px) {

    .form-table-heading>h4,
    .form-table-paragraph>p {
        font-size: 14px;
    }

    .right-best-quote-paragraph>p {
        font-size: 16px;
    }

    .left-best-quote-form-paragraph>p,
    .right-best-quote-paragraph>p {
        font-size: 16px;
    }

    .left-best-quote-form-heading>h2,
    .right-best-quote-form-heading>h2 {
        font-size: 20px;
    }

    .form-table-paragraph>p,
    .form-table-heading>h4 {
        padding: 20px 10px;
    }

    .right-best-quote-form,
    .left-best-quote-form {
        padding: 30px 20px 30px 20px;
    }

    .submit-button-best-quote-form {
        margin-top: 20px;
    }
}

@media screen and (max-width: 992px) {

    .left-best-quote-form-paragraph>p,
    .right-best-quote-paragraph>p {
        font-size: 14px;
    }
}

@media screen and (max-width: 767px) {
    .left-best-quote-form {
        display: none;
    }

    .right-best-quote-form {
        width: 100%;
    }

    .best-quote-form {
        width: 100%;
    }
}


@media screen and (max-width: 450px) {
    .submit-button-best-quote-form>button {
        font-size: 14px;
    }

    .best-quote-form {
        top: 45%;
    }
}


.swiper-button-prev,
.swiper-button-next {
    background-image: none;
}