.quiz-content {

    /*hero*/
    .quiz-hero {
        background-color: #F8F8F8;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding-bottom: 40px;
        row-gap: 24px;
    }

    .quiz-hero .container-hero-img {
        display: flex;
        align-items: flex-end;
        width: 100%;
        min-height: 470px;
        background-blend-mode: multiply;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .container-hero-img .title {
        max-width: 1042px;
        margin: 0;
        color: var(--Miscellaneous-Floating-Tab---Pill-Fill, #FFF);
        font-family: Demo;
        font-size: 88px;
        font-style: normal;
        font-weight: normal;
        line-height: 1.14;
        padding-bottom: 40px;
    }

    .sub-title {
        color: #002B46;
        font-family: Inter;
        font-size: 32px;
        font-style: normal;
        font-weight: 300;
        line-height: 1.53;
        max-width: 792px;
        margin: 0;
    }

    @media (max-width: 768px) {
        /*hero*/
        .quiz-hero {
            padding-bottom: 24px;
            row-gap: 40px;
        }

        .quiz-hero .container-hero-img {
            height: 211px;
            min-height: 211px;
        }

        .container-hero-img .title {
            max-width: 100%;
            color: var(--Miscellaneous-Floating-Tab---Pill-Fill, #FFF);
            font-family: Demo;
            font-size: 28px;
            font-style: normal;
            font-weight: normal;
            line-height: 1.14;
            padding-bottom: 40px;
        }

        .sub-title {
            font-size: 20px;
            line-height: 1.3;
        }

    }

    /*quiz*/
    @media (min-width: 768px) {
        .gravity-form-container-quiz{
            padding-bottom: 250px !important;
        }
    }
    .gravity-form-container-quiz {
        padding: 40px 0 60px;
        max-width: 792px;

        .gform_heading {
            display: none;
        }

        .custom-progress-bar {
            display: flex;
            width: 792px;
            height: 20px;
            align-items: center;
            gap: 4px;
            margin-bottom: 40px;
        }

        .progress-step {
            height: 6px;
            flex: 1 0 0;
            border-radius: var(--radius-full, 9999px);
            background: #E4E4E4;
        }

        .progress-step.active {
            background: #00B5D3;
        }

        .gsection_title {
            /*margin-bottom: 24px;*/
        }

        .gquiz-field.gfield--type-quiz {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            padding: 0;
        }

        .gfield--type-quiz {
        .gfield_label.gform-field-label {
            margin: 0;
            padding-bottom: 24px;
            color: #002B46;
            font-family: Inter;
            font-size: 24px;
            font-style: normal;
            font-weight: 600 !important;
            line-height: 120%;
            width: 100%;
            margin-bottom: 0 !important;
            order: 0;
        }
        .gfield_description {
            color: #002B46;
            font-family: Inter;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 120%; /* 19.2px */
            margin-bottom: 40px;
            width: 100%;
            order: 1;
            padding: 0 !important;
        }
        .ginput_container.ginput_container_radio,
        .ginput_container.ginput_container_checkbox {
            padding-bottom: 40px;
            order: 2;
            row-gap: 40px;
            display: flex;
            flex-direction: column;
            width: 100%;
        }
        .ginput_container.ginput_container_radio .gfield_radio,
        .ginput_container.ginput_container_checkbox .gfield_checkbox {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            row-gap: 24px;
            margin: 0;
        }
        .ginput_container_radio .gchoice,
        .ginput_container_checkbox .gchoice {
            display: flex;
            padding: 0;
            align-items: flex-start;
            align-self: stretch;
            border: unset;
            /*gap: 14px;*/
            border-radius: 4px;
            border: 1px solid transparent;
        }
        .ginput_container_radio .gchoice .gfield-choice-input {
            appearance: none;
            width: 20px;
            min-width: 20px;
            height: 21px;
            background-image: url(../icons/radio-button.svg);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            cursor: pointer;
            margin-left: 24px;
            margin-top: 24px;
        }
        .gquiz-indicator {
            display: none;
        }
        .ginput_container_radio .gchoice:has(.gfield-choice-input:checked + label.gquiz-incorrect-choice) {
            border: 1px solid #E53935 ;
            background: rgba(251, 219, 223, 0.70);
        }
        .ginput_container_radio .gchoice:has(label.gquiz-incorrect-choice) .gfield-choice-input:checked {
            background-image: url(../icons/error-radio-button.svg);
        }
        .ginput_container_radio .gchoice:has(.gfield-choice-input:checked + label.gquiz-correct-choice) {
            border: 1px solid #43A047 ;
            background: #DEF7DF ;
        }
        .ginput_container_radio .gchoice:has(label.gquiz-correct-choice) .gfield-choice-input:checked {
            background-image: url(../icons/correct-radio-button.svg);
        }
        .gquiz-neutral-choice .ginput_container_radio .gchoice:has(label.gquiz-incorrect-choice) .gfield-choice-input:checked,
        .ginput_container_radio .gchoice .gfield-choice-input:checked {
            background-image: url(../icons/checked-radio-button.svg);
        }
        .ginput_container_checkbox .gchoice .gfield-choice-input {
            appearance: none;
            width: 20px !important;
            min-width: 20px !important;
            height: 20px;
            /*margin: 2px 0;*/
            display: flex;
            background-image: url(../icons/checkbox.svg);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            cursor: pointer;
            margin-left: 24px;
            margin-top: 26px;
        }
        .ginput_container_checkbox .gchoice .gfield-choice-input:checked {
            background-image: url(../icons/selected-checkbox.svg);
        }
        .gquiz-neutral-choice .ginput_container_radio .gchoice:has(.gfield-choice-input:checked + label.gquiz-incorrect-choice),
        .ginput_container_radio .gchoice:has(.gfield-choice-input:checked),
        .ginput_container_checkbox .gchoice:has(.gfield-choice-input:checked){
            border: 1px solid #00B5D3;
            background: linear-gradient(0deg, rgba(255, 255, 255, 0.70) 0%, rgba(255, 255, 255, 0.70) 100%), #E9F5F8;
        }
        .gfield_radio:not(:has(.gquiz-incorrect-choice)):not(:has(.gquiz-correct-choice)) .gchoice:hover,
        .gfield_checkbox .gchoice:hover{
            border: 1px solid #00B5D3;
            background: unset !important;
        }
        .gfield_radio:has(.gquiz-incorrect-choice) .gchoice .gform-field-label,
        .gfield_radio:has(.gquiz-correct-choice) .gchoice .gform-field-label{
            cursor: default;
        }
        .ginput_container_checkbox .gchoice .gfield-choice-input::before {
            display: none;
        }
        .ginput_container_radio .gchoice label,
        .ginput_container_checkbox .gchoice label {
            color: var(--Primary-blue, #002B46) !important;
            font-family: Inter;
            font-size: 18px;
            font-style: normal;
            font-weight: 400;
            line-height: 120%; /* 21.6px */
            text-align: left;
            padding: 24px 24px 24px 14px;
            width: 100% !important;
            cursor: pointer;
        }
    }
        .gquiz-neutral-choice .ginput_container_radio .gchoice:has(label.gquiz-incorrect-choice) .gfield-choice-input:checked{
            background-image: url(../icons/checked-radio-button.svg);
        }
        .gquiz-neutral-choice .ginput_container_radio .gchoice:has(.gfield-choice-input:checked + label.gquiz-incorrect-choice){
            border: 1px solid #00B5D3;
            background: linear-gradient(0deg, rgba(255, 255, 255, 0.70) 0%, rgba(255, 255, 255, 0.70) 100%), #E9F5F8;
        }
        .gform_page_footer {
            display: flex;
            width: 100%;
            align-items: center;
            gap: 24px;
            margin: 0 !important;
            padding: 0 !important;
        }
        .gform_previous_button {
            text-align: center;
            height: auto;
            min-height: 50px !important;
            width: 192px;
            padding: 10px;
            flex-shrink: 0;
            word-break: break-word;
            white-space: normal;
            border-radius: 5px;
            border: 1px solid var(--Primary-turquoise-blue, #00B5D3);
            background: unset;
            color: var(--Primary-turquoise-blue, #00B5D3) !important;
            font-family: Inter;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 19px !important;
            margin: 0 !important;
        }
        .gform_next_button,.gform_button,.retake-quiz-btn {
            text-align: center;
            min-height: 50px !important;
            height: auto;
            width: 192px;
            padding: 10px;
            flex-shrink: 0;
            border-radius: 5px;
            word-break: break-word;
            white-space: normal;
            background: var(--Primary-turquoise-blue, #00B5D3);
            border: unset;
            color: var(--white, #FFF);
            font-family: Inter;
            font-size: 18px;
            font-style: normal;
            font-weight: 400;
            line-height: normal !important;
            margin: 0 !important;
        }
        .gform_page:has(.gfield_contains_required) .gform_next_button {
            background: #E4E4E4;
            color: #98989A;
            pointer-events: none;
        }
        .gform_page:has(.gfield_contains_required) .gform_next_button.required_field_active {
            background: var(--Primary-turquoise-blue, #00B5D3);
            color: var(--white, #FFF);
            pointer-events: unset;
        }
        .gquiz-answer-explanation.gfield_description {
            margin-bottom: 0;
            border-radius: 4px;
            background: #E9F5F8;
            display: flex;
            width: 100%;
            padding: 24px !important;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            gap: 24px;
            font-size: 18px;
        }

        .explanation-message {
            display: flex;
            align-items: center;
            gap: 8px;
            align-self: stretch;
            width: 100%;
            font-weight: 500;
        }
        .explanation-message ul {
            list-style: unset;
        }
        .gquiz-answer-explanation .youtube-video a.venobox{
            height: auto;
            flex-shrink: 0;
            align-self: stretch;
            width: 580px;
            position: relative;
        }
        .gquiz-answer-explanation .youtube-video a.venobox img {
            width: 580px;
            height: auto;
        }
        .gquiz-answer-explanation .youtube-video a.venobox::before{
            content: "";
            display: block;
            width: 65px;
            height: 70px;
            background-image: url(../icons/playicon.svg);
            background-size: contain;
            background-repeat: no-repeat;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
        }
        /* Ensure quiz confirmation is visible and text is readable after submit */
      
        .gform_wrapper.gravity-theme .gfield--type-quiz .ginput_container_radio .gchoice label {
            color: #002B46 !important;
        }
        .custom-quiz-confirmation {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 40px;
            align-self: stretch;
            width: 100%;
        }
        .quiz-results-container {
            display: flex;
            width: 100%;
            padding-bottom: 40px;
            flex-direction: column;
            align-items: flex-start;
            gap: 24px;
        }
        .quiz-result-single {
            display: flex;
            padding: 24px;
            align-items: flex-start;
            gap: 24px;
            align-self: stretch;
            border-radius: 4px;
            background: rgba(132, 154, 166, 0.06);
        }
        .quiz-result-single.neutral {
            border-left: 6px rgba(0, 181, 211, 0.5) solid;
        }
        .quiz-result-single.incorrect {
            border-left: 6px rgba(229, 57, 53, 0.50) solid;
        }
        .quiz-result-single.correct {
            border-left: 6px rgba(67, 160, 71, 0.50) solid;
        }
        .quiz-result-icon {
            width: 24px;
            min-width: 24px;
            height: 24px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        .neutral .quiz-result-icon {
            background-image: url(../icons/Bulb.svg);
        }
        .correct .quiz-result-icon {
            background-image: url(../icons/Sucsses.svg);
        }
        .incorrect .quiz-result-icon {
            background-image: url(../icons/Error.svg);
        }
        .quiz-result-qa {
            display: flex;
            width: 100%;
            flex-direction: column;
            align-items: flex-start;
            gap: 24px;
        }
        .quiz-result-question,
        .quiz-result-answers {
            color: var(--Primary-blue, #002B46);
            font-family: Inter;
            font-size: 18px;
            font-style: normal;
            font-weight: 400;
            line-height: 130%;
            margin: 0;
        }
        .quiz-result-answers {
            margin: 0;
        }
        .quiz-thank-you {
            color: #002B46;
            font-family: Inter;
            font-size: 18px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            margin: 0;
        }
        .your-score-container {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }
        .your-score {
            color: #002B46;
            font-family: Inter;
            font-size: 24px;
            font-style: normal;
            font-weight: 700;
            line-height: normal;
            margin: 0;
        }
        .score-number {
            font-size: 32px;
        }
        .correct-answers {
            color: #002B46;
            font-family: Inter;
            font-size: 18px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            margin: 0;
        }
        .gfield--type-quiz .gfield_required {
            color: #E53935 !important;
            font-family: Inter;
            font-size: 24px !important;
            font-style: normal !important;
            font-weight: 600;
            line-height: 120%;
            margin-left: 2px;
        }
        .gfield.field_sublabel_below input[type=checkbox]{
            /*width: 20px !important;*/
            transform: translateY(0px);
        }
        .rich-text-wrap {
            font-size: 18px;
            font-family: inter;
            color: #002b46;
        }
        .rich-text-wrap ul:not(ul.quiz-result-answers) {
            list-style: unset;
            list-style-type: unset;
        }

        .rich-text-wrap li:not(.quiz-result-answers li) {
            margin-left: 20px;
        }

        @media (max-width: 768px) {
            padding: 32px 0;
            max-width: 100%;

            .custom-progress-bar {
                width: 100%;
                margin-bottom: 32px;
            }
            .gsection_title {
                /*margin-bottom: 16px;*/
            }
            .gfield--type-quiz {
                .gfield_label.gform-field-label {
                    font-size: 18px;
                    padding-bottom: 16px;
                }

                .gfield_description {
                    font-size: 14px;
                    margin-bottom: 16px;
                }

                .ginput_container.ginput_container_radio,
                .ginput_container.ginput_container_checkbox {
                    padding-bottom: 32px;
                    row-gap: 16px;
                }

                .ginput_container.ginput_container_radio .gfield_radio,
                .ginput_container.ginput_container_checkbox .gfield_checkbox {
                    row-gap: 12px;
                }

                .ginput_container_radio .gchoice .gfield-choice-input {
                    width: 17px;
                    min-width: 17px;
                    height: 19px;
                    margin-left: 12px;
                    margin-top: 12px;
                }

                .ginput_container_checkbox .gchoice .gfield-choice-input {
                    width: 17px !important;
                    min-width: 17px !important;
                    /*margin: 0;*/
                    margin-left: 12px;
                    margin-top: 12px;
                }

                .ginput_container_radio .gchoice label,
                .ginput_container_checkbox .gchoice label {
                    font-size: 16px;
                    padding: 12px 12px 12px 8px;
                }
            }
            .gform_page_footer {
                gap: 8px;
            }
            .gform_previous_button {
                width: calc(50% - 4px);
            }
            .gform_next_button,.gform_button,.retake-quiz-btn {
                width: calc(50% - 4px);
                font-size: 16px;
            }
            .gquiz-answer-explanation.gfield_description {
                margin-bottom: 0;
                padding: 16px !important;
                font-size: 16px;
            }
            .gquiz-answer-explanation .youtube-video a.venobox img {
                width: 100%;
            }
            .custom-quiz-confirmation {
                gap: 24px;
            }
            .quiz-results-container {
                padding-bottom: 0;
                gap: 20px;
            }
            .quiz-result-single {
                padding: 12px;
                gap: 8px;
                background: linear-gradient(0deg, rgba(0, 0, 0, 0.01) 0%, rgba(0, 0, 0, 0.01) 100%), #F8FCFD;
            }
            .quiz-result-single.neutral {
                border-left: 4px rgba(0, 181, 211, 0.5) solid;
            }
            .quiz-result-single.incorrect {
                border-left: 4px solid rgba(229, 57, 53, 0.50);
            }
            .quiz-result-single.correct {
                border-left: 4px solid rgba(67, 160, 71, 0.50);
            }
            .quiz-result-icon {
                width: 20px;
                min-width: 20px;
                height: 20px;
            }
            .quiz-result-qa {
                gap: 20px;
            }
            .quiz-result-question,
            .quiz-result-answers {
                font-size: 16px;
                line-height: 120%;
            }
            .quiz-thank-you {
                font-size: 16px;
            }
            .your-score {
                font-size: 20px;
            }
            .score-number {
                font-size: 28px;
            }
            .correct-answers {
                font-size: 16px;
            }
            .gfield--type-quiz .gfield_required {
                font-size: 18px !important;
            }
            .rich-text-wrap {
                font-size: 16px;
            }
        }
        .gfield_label {
            font-weight: 400 !important;
        }
        input:not(.ginput_container_radio input):not(.ginput_container_checkbox input):not(.gform_page_footer input):not(.gform_footer input):not(.ginput_container_consent input) {
            width: 100%;
            padding: 15px !important;
            margin-bottom: 32px ;
            height: 50px;
            font-family: Inter;
            font-size: 18px;
            font-weight: normal;
            font-stretch: normal;
            font-style: normal;
            line-height: normal;
            letter-spacing: normal;
            text-align: left;
            color: #002b46;
            border: 1px solid rgba(0, 43, 70, 0.5);
            border-radius: 5px;
        }
        textarea {
            font-family: "Inter" !important;
            font-size: 18px !important;
            font-weight: normal;
            font-stretch: normal;
            font-style: normal;
            line-height: normal;
            letter-spacing: normal;
            text-align: left;
            /*color: rgba(0, 43, 70, 0.5);*/
            border: 1px solid rgba(0, 43, 70, 0.5);
            border-radius: 5px;
            outline: unset;
            padding: 16px;
        }
        @media (max-width: 768px) {
            input:not(.ginput_container_radio input):not(.ginput_container_checkbox input):not(.gform_page_footer input):not(.gform_footer input):not(.ginput_container_consent input) {
                margin-bottom: 24px;
                font-size: 16px;
                line-height: 32px;
                border: solid 1px #c9c9c9;
            }
            textarea {
                font-size: 16px !important;
            }
        }
        .ginput_container_consent {
            margin-bottom: 24px;
        }
        .gfield.field_sublabel_below [type=checkbox]::before {
            transform: translate(0px, 0px) !important;
        }
        .gform_ajax_spinner {
            display: none;
        }

        .ginput_container_radio:not(.gfield--type-quiz .ginput_container_radio) {
            margin-bottom: 32px;
        }
        .gfield_radio:not(.gfield--type-quiz .gfield_radio) {
            margin-bottom: 0;
            display: flex;
            justify-content: flex-start;
            column-gap: 24px;
            row-gap: 24px;
        }

        .gfield_radio .gchoice:not(.gfield--type-quiz .gfield_radio .gchoice) {
            padding: 0 !important;
            width: auto !important;
            min-width: unset !important;
            border: 1px solid  #01b4d3;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #01b4d3;
            border-radius: 5px;
            font-family: "Inter";
            font-size: 14px;
            font-weight: 300;
        }

        .gfield-choice-input {
            display: none !important;
        }

        .gfield--type-quiz .gfield-choice-input {
            display: inline-block !important;
        }

        .gfield-choice-input + label:not(.gfield--type-quiz .gfield-choice-input + label) {
            max-width: unset !important;
            font-family: Inter;
            font-size: 18px;
            font-weight: normal;
            font-stretch: normal;
            font-style: normal;
            line-height: 1.56;
            letter-spacing: normal;
            text-align: center;
            color: #00b5d3;
            min-width: 162px !important;
            padding: 12px 30px;
            width: 100%;
        }
        .gfield_radio .gchoice.hli:not(.gfield--type-quiz .gfield_radio .gchoice) {
            background-color: #00b5d3 !important;
            color: #fff !important;
        }
        .hli label {
            color: #fff !important;
        }
        .gfield_radio:not(.gfield--type-quiz .gfield_radio) .gchoice:hover {
            cursor: pointer;
            background-color: #00b5d3;
            color: #fff !important;
        }
         .gfield_radio:not(.gfield--type-quiz .gfield_radio) .gchoice:hover label {
            color: #fff !important;
        }
        .gfield_radio .gchoice label:hover {
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .ginput_container_radio:not(.gfield--type-quiz .ginput_container_radio) {
                margin-bottom: 24px;
            }
            .gfield_radio:not(.gfield--type-quiz .gfield_radio) {
              flex-direction: row;
                flex-wrap: wrap;
                max-width: 100%;
            }
            .gfield_radio .gchoice:not(.gfield--type-quiz .gfield_radio .gchoice) {
                width: 100% !important;
            }
            .gfield-choice-input + label:not(.gfield--type-quiz .gfield-choice-input + label) {
                font-size: 16px;
                padding: 11px 30px;
            }
        }
        .gfield_description.gfield_validation_message {
            padding-top: 0 !important;
        }

    }

    /*--------------- People area css start ---------------*/

    .people__area .section-title {
        text-align: center;
        margin-bottom: 24px;
    }

    .people__area .section-title h2 {
        font-size: 48px;
        font-weight: 400;
        margin: 0;
        color: #002c45;
        font-family: "Demo";
    }

    @media (min-width: 1200px) and (max-width: 1449px) {
        .people_slider {
            padding: 0 70px;
        }
    }

    .people_slider {
        margin: 46px auto;
        margin-bottom: 40px;
    }

    .people_slider.slick-initialized.slick-slider button {
        position: absolute;
        left: 0;
        top: 30%;
        font-size: 29px !important;
        color: #00b5d3 !important;
        background: transparent !important;
        border: 0;
    }

    .people_slider.slick-initialized.slick-slider button.slick-next {
        left: auto;
        right: 0;
    }

    .people_slider.slick-initialized.slick-slider button i {
        font-weight: 200;
    }

    .p_img {
        width: 150px;
        height: 150px;
        margin: 0 auto;
        display: block;
        border-radius: 50%;
    }

    .p_img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

    .signle_p_slide {
        text-align: center;
    }

    .signle_p_slide h4 {
        font-size: 16px;
        font-weight: 700;
        font-family: "Inter", sans-serif;
        margin-bottom: 0;
        margin-top: 11px;
        padding: 0 14px;
        line-height: 1.56;
    }

    @media (max-width: 768px) {
        .signle_p_slide h4 {
            padding: unset;
        }
    }

    .signle_p_slide h4 span {
        display: block;
        font-weight: 400;
        color: #698291;
        margin-top: 8px;
    }

    .people__area .owl-dots {
        display: none;
    }

    .people__area .owl-nav button {
        position: absolute;
        left: -100px;
        top: 50%;
        transform: translateY(-50%);
    }

    .people__area .owl-nav button i {
        font-size: 32px;
        color: #50b2cf;
    }

    .people__area .owl-nav button.owl-next {
        left: auto;
        right: -100px;
    }


    .view_all_btn p {
        color: #002b46;
        font-size: 18px;
        font-size: 16px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.56;
        letter-spacing: normal;
    }

    .people__area {
        background: #f8f8f8;
        padding: 70px 0;
    }

    .people__area p {
        font-family: Inter;
        font-size: 18px;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.56;
        letter-spacing: normal;
        color: #002c45;
        display: flex;
        justify-content: center;
        align-items: center;
        word-break: break-word;
        /*text-align: left;*/
        margin-top: 6px;
    }

    .people__area .view_all_btn {
        padding-top: 40px;
    }

    .people__area .view_all_btn p {
        font-family: Inter;
        font-size: 18px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.56;
        letter-spacing: normal;
        text-align: center;
        color: #002c45;
    }

    .people__area .site-btn {
        background: transparent;
        color: #00b5d0;
        font-size: 18px;
        transition: 0.3s;
        height: 50px;
        display: inline-block;
        line-height: 50px;
        width: auto;
        text-align: center;
        border: 1px solid #00b5d3;
        border-radius: 5px;
        padding: 0 20px;
    }

    @media only screen and (min-width: 320px) and (max-width: 767px) {
        .people__area {
            padding-top: 30px;
            padding-bottom: 30px;
            margin-bottom: 0;
        }

        .people__area .section-title {
            text-align: left;
            margin-bottom: 16px;
        }

        .people__area .section-title p {
            margin-bottom: 24px;
            font-family: Inter;
            font-size: 16px;
            font-weight: bold;
            font-stretch: normal;
            font-style: normal;
            line-height: 1.56;
            letter-spacing: normal;
            text-align: left;
            color: #002c45;
            justify-content: left;
        }

        .people__area .section-title h2 {
            margin-bottom: 8px;
            line-height: normal;
            font-size: 28px;
            text-align: left;
        }

        .people__area .row.mt-30 {
            margin-top: 0;
        }

        .people__area .row.mt-70 {
            margin-top: 0px;
        }

        .people_slider {
            display: flex;
            justify-content: flex-start;
            column-gap: 40px;
            margin: 0;
            overflow-y: hidden;
            overflow-x: scroll;
            width: calc(100% + 40px);
            padding-left: 20px;
            margin-left: -20px !important;
            margin-bottom: 72px !important;
            margin-top: 0px !important;
            padding-right: 20px;
        }

        .people_slider::-webkit-scrollbar {
            display: none;
        }

        /* Hide scrollbar for IE, Edge and Firefox */
        .people_slider {
            -ms-overflow-style: none; /* IE and Edge */
            scrollbar-width: none; /* Firefox */
        }

        .signle_p_slide h4 span {
            opacity: 0.5;
            font-family: Inter;
            font-size: 16px;
            font-weight: bold;
            font-stretch: normal;
            font-style: normal;
            line-height: 1.56;
            letter-spacing: normal;
            text-align: center;
            color: #002c45;
        }

        .people__area a.site-btn.borderd-btn {
            display: inline-block;
            width: 100%;
            margin-left: 0;
            margin-right: 0;
        }

        .p_img {
            width: 100px;
            height: 100px;
            margin: 0 auto;
            display: block;
            border-radius: 50%;
        }

        .view_all_btn {
            padding-top: 10px;
        }

        .site-btn.borderd-btn {
            display: inline-block;
            width: 100%;
            margin-top: 10px;
        }

        .people__area .view_all_btn p {
            margin-top: -39px;
            margin-bottom: 6px;
        }
    }

    .people_slider.slick-initialized.slick-slider button i.fa-angle-left:before, .people_slider.slick-initialized.slick-slider button i.fa-angle-right:before {
        font-size: 64px;
    }

    .people_slider.slick-initialized.slick-slider button.slick-next.slick-arrow {
        transform: translate(80px, -27px);
    }

    .people_slider.slick-initialized.slick-slider button.slick-prev.slick-arrow {
        transform: translate(-80px, -28px);
    }

    @media (max-width: 1300px) {
        .people_slider.slick-initialized.slick-slider button.slick-next.slick-arrow {
            transform: translate(30px, -23px);
        }

        .people_slider.slick-initialized.slick-slider button.slick-prev.slick-arrow {
            transform: translate(-30px, -23px);
        }
    }
    /*--------------- People area css end ---------------*/

    /* Resources Carousel */

    .product_resource_slider {
        overflow-x: hidden;
        position: unset !important;
    }

    .product_resource_slider .slick-track {
        position: relative;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        margin: auto;
    }

    .product_resource_slider .slick-slide {
        width: 282px !important;
        margin: 0 12px 0 12px;
    }

    .product_resource_slider h4 {
        opacity: 1;
        font-family: Inter;
        font-size: 18px;
        font-weight: 500;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.39;
        letter-spacing: normal;
        text-align: left;
        color: #00b5d3;
        margin-bottom: 8px;
    }

    .product_resource_slider p {
        font-family: Inter;
        font-size: 18px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.56;
        letter-spacing: normal;
        text-align: left;
        color: #002c45;
    }

    .product_resource_slider img {
        width: 282px;
        height: 159px;
        border-radius: 5px;
        margin-bottom: 16px;
        object-fit: cover;
    }

    .section-resources .title-section-Demo {
        text-align: center;
        margin-bottom: 70px;
    }

    .section-resources {
        margin-bottom: 120px;
        margin-top: 60px;
    }

    /*    ARROWS*/

    .product_resource_slider button.slick-arrow i {
        font-weight: 500;
        font-size: 42px;
    }

    .product_resource_slider .slick-arrow {
        background-color: unset !important;
        border: unset;
        color: #00b5d3;
        position: absolute;
    }

    .product_resource_slider .slick-arrow.slick-prev {
        left: -34px;
        top: 180px;
    }

    .product_resource_slider .slick-arrow.slick-next {
        right: -34px;
        top: 180px;
    }

    .product_resource_slider .fal::before {
        font-size: 55px;
        font-weight: 200;
        height: auto;
        padding-top: 12px;
    }

    /*    ICONS  */

    .product_resource_slider .all-resources-playit {
        position: absolute;
        transition: 0.25s all !important;
        width: 60px !important;
        height: 70px !important;
        top: 45%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .product_resource_slider .single_hub_blk i {
        height: 24px;
        width: 24px;
        display: inline-block;
    }

    .product_resource_slider .single_hub_blk i:before {
        width: 24px;
        height: 24px;
        content: '';
        display: inline-block;
        vertical-align: middle;
        background-repeat: no-repeat;
    }

    .icon-article:before,
    .icon-testimonial:before {
        transform: translate(0px, -3px);
    }

    .icon-podcast:before {
        transform: translate(0, -4px);
    }

    .product_resource_slider .single_hub_blk .icon-ebook {
        width: 25px;
    }

    .icon-ebook:before {
        width: 25px !important;
        transform: translate(-2px, -3px);
    }

    .product_resource_slider .single_hub_blk .icon-event {
        width: 21px;
    }

    .icon-event:before {
        width: 18px !important;
        height: 20px !important;
        transform: translate(0px, -4px);
    }

    .icon-video:before {
        width: 20px !important;
        height: 20px !important;
        transform: translateY(-3px);
    }

    .icon-category:before,
    .icon-tag_results:before {
        width: 23px !important;
        height: 31px !important;
        transform: translate(-1px, -3px);
    }

    .icon-trial:before {
        width: 18px !important;
        height: 18px !important;
        transform: translate(2px, -2px);
    }

    .icon-news:before {
        width: 22px !important;
        height: 18px !important;
        transform: translate(0px, -3px);
    }

    .icon-crop:before,
    .icon-crop_category:before,
    .icon-guide:before {
        width: 20px !important;
    }

    /*END ICONS*/
    @media (max-width: 768px) {
        .product_resource_slider .slick-slide > div {
            height: 100%;
        }

        .product_resource_slider .slick-track {
            justify-content: unset;
            margin-left: -50px;
            align-items: normal;
        }

        .section-resources .title-section-Demo {
            font-size: 28px;
            text-align: left;
            margin-bottom: 24px;
        }

        .section-resources {
            margin-top: 60px;
            margin-bottom: 60px;
        }

        .product_resource_slider img {
            width: 246px;
            height: 139px;
        }

        .product_resource_slider .slick-slide {
            width: 246px !important;
            margin: 0 18px 0 0;
            height: inherit !important;
            border-bottom: 1px solid rgb(0 43 70 / 20%);
        }
    }

    /* End Resources Carousel*/
}
