/**
 * Fonts Family
*/

@font-face {
    font-family: 'Montserrat-Regular';
    src: url('../fonts/Montserrat-Regular.ttf');
}

@font-face {
    font-family: 'Montserrat-SemiBold';
    src: url('../fonts/Montserrat-SemiBold.ttf');
}


@font-face {
    font-family: 'Oswald-Bold';
    src: url('../fonts/Oswald-Bold.ttf');
}

@font-face {
    font-family: 'Oswald-SemiBold';
    src: url('../fonts/Oswald-SemiBold.ttf');
}

@font-face {
    font-family: 'Gotham-Regular';
    src: url('../fonts/Gotham-Regular.ttf');
}

@font-face {
    font-family: 'Gotham-Medium';
    src: url('../fonts/Gotham-Medium.ttf');
}

/*******Globel CSS***********/
.orange {
    color: #F9A134;
}

.blue {
    color: #0091D5;
}

.green {
    color: #7ABC4C;
}

.bg-orange {
    background-color: #F9A134;
}

.bg-blue {
    background-color: #0091D5;
}

.bg-green {
    background-color: #7ABC4C;
}

.bg-gray {
    background-color: #EDEDED;
}

/*********Header**************/



/*******Hero Section*******/
.main-hero-section {
    background-color: #ededed;
    max-height: 849px;
    width: 100%;
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.main-hero-section .text-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
}

.main-hero-section .text-wrapper h1 {
    margin: 0;
    font-size: 146px;
    line-height: 155px;
    letter-spacing: 0.5px;
    font-family: 'Oswald-Bold',
        Arial,
        sans-serif;
}



.main-hero-section .text-wrapper h1 span {
    display: block;
}

.main-hero-section .container {
    height: 100%;
}


/********Our Work*********/


.our-work {
    padding-bottom: 100px;
    margin-top: -125px;
}

.our-work .container {
    max-width: 1590px;
}

.our-work .work-wrapper .work-box {
    padding: 30px 45px;
    display: inline-block;
    max-width: 512px;
    width: 100%;
    margin: 0 25px;
    position: relative;
    z-index: 0;
    transition: 0.5s;
}


.our-work .work-wrapper .work-box::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(/wp-content/uploads/2023/07/bg-patten.png);
    left: 0;
    right: 0;
    top: 0;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.5;
}

.our-work .work-wrapper .work-box:hover {
    background-color: #fff;
    box-shadow: 0px 20px 20px 0px #00000021;
    transition: 0.5s;
    cursor: pointer;
}


.our-work .work-wrapper .work-box a {
    font-size: 18px;
    color: #000;
    text-decoration: none;
    font-family: 'Gotham-Regular',
        Arial,
        sans-serif;
}


.our-work .work-wrapper {
    display: flex;
    justify-content: space-between;
}

.our-work .work-wrapper .work-box p {
    font-size: 24px;
    line-height: 30px;
    color: #000;
    font-family: 'Gotham-Regular',
        Arial,
        sans-serif;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.our-work .work-wrapper .work-box h5 {
    font-size: 31px;
    line-height: 36px;
    color: #000;
    font-family: 'Oswald-Bold',
        Arial,
        sans-serif;
    text-transform: uppercase;
}



/**********Search Section***********/

.search-section {
    background-color: #0091D5;
    padding: 85px 0;
    overflow: hidden;
}

.search-section h3 {
    font-size: 59px;
    line-height: 79px;
    color: #fff;
    text-align: center;
    margin: 0;
    font-weight: normal;
    font-family: 'Gotham-Regular',
        Arial,
        sans-serif;
}

.search-section h4 {
    color: #fff;
    font-size: 39px;
    line-height: 50px;
    text-align: center;
    padding-bottom: 20px;
    font-family: 'Gotham-Regular',
        Arial,
        sans-serif;
}


.search-section .search-wrapper input {
    width: 100%;
    /* max-width: 890px; */
    margin: 0 auto;
    display: table;
    padding: 15px 20px 15px 50px;
    font-size: 16px;
    border: 0;
    /* margin-bottom: 0; */
}

.search-section a {
    background-color: transparent;
    width: auto;
    margin: 0 auto;
    border: 2px solid #fff;
    padding: 15px 40px;
    /* border-radius: 10px; */
    font-family: 'Gotham-Regular',
        Arial,
        sans-serif;
    font-size: 20px;
    line-height: 30px;
    border-radius: 10px;
}

.search-section a:hover {
    background-color: #7abc4c;
    border: 2px solid #7abc4c;
}


/**********Banner Section***********/
.banner-section {
    padding: 130px 0;
    background-color: #ffffff;
    max-height: 774px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.banner-section .content-wrapper {
    width: 50%;
    /* height: 100%; */
    position: relative;
    z-index: 1;
}

.banner-section .content-wrapper h2 {
    color: #000;
    font-size: 65px;
    line-height: 66px;
    font-weight: normal;
    font-family: 'Oswald-SemiBold',
        Arial,
        sans-serif;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.banner-section .content-wrapper p {
    font-size: 18px;
    line-height: 30px;
    margin: 0;
    max-width: 600px;
    color: #000;
    font-family: 'Montserrat-Regular',
        Arial,
        sans-serif;
}

.banner-section .image-wrapper {
    position: absolute;
    height: 100vh;
    display: inline-block;
    right: 0;
    background-position: top;
    width: 50%;
    background-repeat: no-repeat;
    top: 0;
    z-index: 4;
    background-size: cover;
    max-height: 774px;
    background-color: #ededed;
}

.banner-section .image-wrapper::after {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    z-index: 4;
    background: linear-gradient(90deg, rgb(255 255 255) 2%, rgb(255 255 255 / 61%) 40%);
}

.banner-section .container {
    height: 100%;
}

.banner-section .container .row {
    height: 100%;
    align-items: center;
}


/*******Image and Content************/

.image-with-content {
    background-color: #0091D5;
    overflow: hidden;
}

.image-with-content .container {
    max-width: 1620px;
    margin: 0 0 0 auto;
}

.image-with-content .container .content-wrapper {
    width: 50%;
    padding: 100px 0;
}

.image-with-content .image-wrapper {
    width: 50%;
    background: #D9D9D9;
}

.image-with-content .container .content-wrapper p {
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    font-family: 'Montserrat-Regular',
        Arial,
        sans-serif;
    font-weight: normal;
    margin-bottom: 35px;
}

.image-with-content .container .content-wrapper h3 {
    font-size: 39px;
    line-height: 75px;
    color: #fff;
    font-family: 'Gotham-Regular',
        Arial,
        sans-serif;
    font-weight: normal;
    margin-bottom: 0;
}

.image-with-content .container .content-wrapper h3,
.image-with-content .container .content-wrapper p {
    max-width: 525px;
}

.image-with-content .container .content-wrapper .btn-transparent {
    background-color: transparent;
    border: 2px solid #fff;
    padding: 16px 35px;
    min-width: 224px;
    font-family: 'Gotham-Regular',
        Arial,
        sans-serif;
    font-size: 20px;
    border-radius: 10px;
}

.image-with-content .container .content-wrapper .btn-transparent:hover {
    background-color: #7abc4c;
    border: 2px solid #7abc4c;
}


/**********Service Box**********/
.service-section {
    padding: 100px 0;
    overflow: hidden;
}

.service-section h2 {
    text-align: center;
    margin: 0;
    font-size: 65px;
    font-family: 'Oswald-SemiBold',
        Arial,
        sans-serif;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 20px;
}

.service-section p {
    text-align: center;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 120px;
    display: table;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 25px auto;
}

.service-section .service-box {
    border-top: 1px solid #000;
    padding: 30px 0 35px 0;
    width: calc(100% / 4 - 50px);
    margin: 0 25px;
}

.service-section .service-box h6 {
    font-size: 35px;
    line-height: 36px;
    color: #000;
    font-family: 'Oswald-SemiBold',
        Arial,
        sans-serif;
    padding-bottom: 10px;
}

.service-section .service-box p {
    font-size: 18px;
    line-height: 30px;
    color: #000;
    text-align: left;
    font-family: 'Montserrat-Regular',
        Arial,
        sans-serif;
}

.service-section .service-box a {
    color: #000;
    font-family: 'Montserrat-Regular',
        Arial,
        sans-serif;
    text-decoration: none;
}

.service-section .service-box a:hover {
    color: #0091d5;
}

.search-section .search-wrapper {
    max-width: 890px;
    display: table;
    width: 100%;
    margin: 10px auto 40px auto;
    position: relative;
}

.search-section .row {
    flex-wrap: wrap;
    flex-direction: column;
}

.search-section .search-wrapper img {
    width: 30px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 31px;
}

.service-section .service-box.with-image {
    border: 0;
    padding: 10px;
    width: calc(100% / 3 - 40px);
    margin-bottom: 150px;
    margin: 0 20px 150px 20px;
    /* border: 1px solid red; */
}

.service-section .service-box .wrapper {
    display: flex;
    align-items: start;
    justify-content: start;
}

.service-section .service-box.with-image .wrapper img {
    width: 100%;
    height: 93px;
    object-fit: contain;
    text-align: center;
    object-position: right;
}

.service-section .container {
    max-width: 1560px;
}

.service-section .row {
    padding-top: 95px;
    display: flex;
}

.service-section .service-box .wrapper .img-wrapper {
    display: flex;
    align-items: self-start;
    min-width: 125px;
    justify-content: start;
    padding-right: 35px;
}

.service-section .service-box .wrapper:hover h6 {
    color: #0091d5;
}

.service-section .service-box .wrapper:hover a {
    color: #7abc4c;
}

/********Slider**********/
.feature-section {
    padding: 100px 0;
    overflow: hidden;
    background: #ededed;
    position: relative;
}

.feature-section h2 {
    text-align: center;
    margin: 0;
    font-size: 65px;
    font-family: 'Oswald-SemiBold',
        Arial,
        sans-serif;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 20px;
}

.feature-section .slider {
    padding-top: 95px;
    width: 100%;
    display: block;
}


.feature-section .content-wrapper {
    display: inline-block;
    width: auto;
    max-width: 964px;
    margin: 0 7rem;
}

.feature-section .content-wrapper img {
    width: 100%;
    height: 586px;
    object-fit: cover;
    background-color: #ededed;
}

.feature-section .content-wrapper h3 {
    font-size: 33px;
    line-height: 38px;
    color: #000;
    text-align: center;
    font-family: 'Montserrat-SemiBold',
        Arial,
        sans-serif;
    text-align: left;
    left: -1px;
    display: block;
    position: relative;
    padding-bottom: 1rem;
    padding-top: 3rem;
}

.feature-section .content-wrapper p {
    font-size: 18px;
    line-height: 30px;
    color: #000;
}

.feature-section .content-wrapper .text-wrapper {
    max-width: 796px;
    margin: 0 auto;
    text-align: left;
}


.feature-section .content-wrapper .text-wrapper a {
    color: #0091d5;
    font-size: 18px;
    line-height: 30px;
    text-decoration: none;
    margin-top: 2rem;
    display: inline-block;
}

.feature-section::after,
.feature-section::before {
    width: 10rem;
    background-color: #fffffff7;
    -webkit-filter: blur(20px);
    filter: blur(20px);
    z-index: 1;
    height: 100%;
    position: absolute;
    content: "";
    top: 0;
}

.feature-section::after {
    right: -3rem;
}

.feature-section::before {
    left: -3rem;
}


.client-review {
    background-color: #7ABC4C;
    padding: 100px 0;
    position: relative;
}

.client-review p {
    margin: 0;
    font-size: 35px;
    line-height: 47px;
    color: #fff;
    display: inline-block;
    width: auto;
    font-family: 'Montserrat-Regular',
        Arial,
        sans-serif;
    max-width: 1100px;
}

.client-review .client-slider {
    overflow: hidden;
    width: 100%;
    display: inline-block;
}

.client-review .client-slider .slick-list {
    overflow: hidden;
    padding: 0 !important;
    max-width: 1100px;
}


/***********Partner Section*********/
.partner-section {
    padding: 150px 0 0 0;
}

.partner-section h2 {
    text-align: center;
    margin: 0;
    font-size: 65px;
    font-family: 'Oswald-SemiBold',
        Arial,
        sans-serif;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 20px;
}

.partner-section h3 {
    text-align: center;
    margin: 0;
    font-size: 53px;
    font-family: 'Oswald-SemiBold',
        Arial,
        sans-serif;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 3rem;
    line-height: 66px;
}

.partner-section .company-logos {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 7rem;
    flex-wrap: wrap;
}

.partner-section .company-logos img {
    height: auto;
    padding: 0 2rem;
    object-fit: contain;
    width: auto;
    display: inline-block;
    max-width: 310px;
}

.partner-section .container {
    max-width: 1500px;
}


/*********Form *************/
.contact-us-section {
    padding: 100px 0;
    background-color: #7ABC4C;
    overflow: hidden;
}

.contact-us-section .content-wrapper {
    width: 30%;
}

.contact-us-section .content-wrapper h2 {
    text-align: left;
    margin: 0;
    font-size: 65px;
    font-family: 'Oswald-SemiBold',
        Arial,
        sans-serif;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 20px;
}

.contact-us-section .content-wrapper p {
    margin: 0;
    font-size: 18px;
    color: #000;

}


.contact-us-section .form-wrapper {
    width: 70%;
    padding-left: 85px;
}


.form-wrapper .frm_forms form .frm_form_fields textarea,
.form-wrapper .frm_forms form .frm_form_fields input {
    background: white;
    border-radius: 0;
    font-size: 24px;
    line-height: 30px;
    height: auto;
    padding: 9px 25px;
    color: #000 !important;
    border: 1px solid #fff;
    font-weight: normal;

}

.form-wrapper .frm_forms form .frm_form_fields textarea::placeholder,
.form-wrapper .frm_forms form .frm_form_fields input::placeholder {
    color: #A9A9A9 !important;
    opacity: 1;
    font-weight: normal;
}

.form-wrapper .frm_forms .frm_inside_container>label {
    display: none;
}

.form-wrapper .frm_forms form .frm_form_fields textarea {
    resize: none;
    height: 135px;
}

.form-wrapper .frm_forms form .form-field {
    margin-bottom: 0;
}

.form-wrapper .frm_forms .frm_submit .frm_button_submit {
    background: #0091D5 !important;
    border-color: #0091D5 !important;
    box-shadow: none;
    padding: 7px 40px;
    text-transform: capitalize;
    font-size: 18px;
    line-height: 30px;
    border-radius: 10px;
    margin-top: 30px;
}


/******Slider*********/
.slick-slider .slick-prev {
    left: 3rem;
    z-index: 5;
    width: auto;
    height: auto;
}

.slick-slider .slick-next {
    right: 3rem;
    z-index: 5;
}

.slick-slider .slick-next:before,
.slick-slider .slick-prev:before {
    content: '';
    width: 40px;
    height: 40px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 1;
}


.client-review .slick-slider .slick-prev:before {
    background-image: url('/wp-content/themes/riskresources-child/assets/images/arrow-left-white.svg');

}

.client-review .slick-slider .slick-next:before {
    background-image: url('/wp-content/themes/riskresources-child/assets/images/arrow-right-white.svg');

}

.slick-slider .slick-prev:before {
    background-image: url('/wp-content/themes/riskresources-child/assets/images/arrow-left-black.svg');

}

.slick-slider .slick-next:before {
    background-image: url('/wp-content/themes/riskresources-child/assets/images/arrow-right-black.svg');

}


/********Media Query*********/

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



    .main-hero-section .text-wrapper h1 {
        font-size: 100px;
        line-height: 108px;
    }

    .our-work .work-wrapper .work-box h5 {
        font-size: 25px;
        line-height: 30px;
    }

    .our-work .work-wrapper .work-box p {
        font-size: 18px;
        line-height: 24px;
    }

    .our-work .work-wrapper .work-box a {
        font-size: 16px;
    }

    .our-work {
        padding-bottom: 55px;
        margin-top: -75px;
    }

    .search-section h3 {
        font-size: 40px;
        line-height: 55px;
    }

    .search-section h4 {
        font-size: 28px;
        line-height: 33px;
        padding-bottom: 0;
    }

    .search-section .search-wrapper {
        max-width: 690px;
        margin-bottom: 30px;
    }


    .service-section,
    .search-section {
        padding: 65px 0;
    }

    .contact-us-section .content-wrapper h2,
    .banner-section .content-wrapper h2,
    .service-section h2,
    .feature-section h2,
    .partner-section h2 {
        font-size: 50px;
        margin-bottom: 15px;
        line-height: 60px;
    }

    .service-section p {
        max-width: 700px;
    }

    .feature-section .content-wrapper p,
    .banner-section .content-wrapper p,
    .service-section p,
    .service-section .service-box p,
    .contact-us-section .content-wrapper p {
        font-size: 16px;
        line-height: 25px;
    }


    .service-section .service-box h6 {
        font-size: 28px;
        line-height: 30px;
        margin-bottom: 10px;
    }

    .service-section .service-box.with-image .wrapper img {
        height: 75px;
    }

    .service-section .service-box .wrapper .img-wrapper {
        padding-right: 25px;
        min-width: 110px;
    }

    .service-section .service-box.with-image {
        margin-bottom: 100px;
    }

    .banner-section,
    .banner-section .image-wrapper {
        max-height: 570px;
    }

    .banner-section {
        max-height: 570px;
        padding: 100px 0;
    }

    .image-with-content .container .content-wrapper {
        padding: 80px 40px;
    }

    .image-with-content .container .content-wrapper .btn-transparent,
    .search-section a {
        padding: 11px 30px;
        font-size: 18px;
        line-height: 27px;
        border-radius: 8px;
        min-width: 165px;
    }

    .feature-section .slider,
    .service-section .row {
        padding-top: 65px;
    }

    .service-section .service-box {
        margin: 0 25px;
        padding: 20px 0 25px 0;
    }

    .feature-section .content-wrapper img {
        height: 445px;
    }

    .feature-section .content-wrapper {
        max-width: 700px;
        margin: 0 6rem;
    }

    .feature-section .content-wrapper h3 {
        font-size: 26px;
        line-height: 28px;
        padding-bottom: 0;
    }


    .feature-section .content-wrapper .text-wrapper a {
        font-size: 16px;
        line-height: 26px;
        margin-top: 1rem;
    }

    .client-review .client-slider .slick-list,
    .client-review p {
        font-size: 26px;
        line-height: 36px;
        max-width: 700px;
        margin: 0 auto;
    }

    .partner-section {
        padding-top: 80px;
    }

    .partner-section h3 {
        font-size: 35px;
    }

    .partner-section .company-logos {
        padding-bottom: 3rem;
    }

    .partner-section .company-logos img {
        max-width: 220px;
    }

    .form-wrapper .frm_forms form .frm_form_fields textarea,
    .form-wrapper .frm_forms form .frm_form_fields input {
        font-size: 18px;
        line-height: 24px;
        padding: 5px 20px;
    }

    .contact-us-section {
        padding: 70px 0;
    }

    .our-work .work-wrapper .work-box {
        padding: 20px 35px;
        margin: 0 20px;
    }

}


@media only screen and (max-width: 1199px) {
    .feature-section .content-wrapper img {
        height: 370px;
    }

    .feature-section .content-wrapper {
        max-width: 600px;
    }



    .our-work .work-wrapper .work-box h5 {
        font-size: 22px;
        line-height: 26px;
    }

    .service-section .service-box.with-image {
        width: calc(100% / 2 - 40px);
        margin-bottom: 55px;
        /* min-width: 225px; */
    }

    .contact-us-section .content-wrapper h2,
    .banner-section .content-wrapper h2,
    .service-section h2,
    .feature-section h2,
    .partner-section h2 {
        font-size: 40px;
        margin-bottom: 15px;
        line-height: 51px;
    }
}


@media only screen and (max-width: 991px) {
    .partner-section .company-logos img {
        margin-bottom: 2rem;
    }

    .client-review .client-slider .slick-list,
    .client-review p {
        max-width: 500px;
        font-size: 24px;
        line-height: 34px;
    }

    .client-review {
        padding: 80px 0;
    }

    .feature-section .content-wrapper img {
        height: 300px;
    }

    .feature-section .content-wrapper {
        max-width: 500px;
    }

    .feature-section::after,
    .feature-section::before {
        width: 8rem;
    }

    .service-section .service-box {
        width: calc(100% / 3 - 50px);
    }

    .banner-section,
    .banner-section .image-wrapper {
        max-height: 770px;
    }

    .our-work .work-wrapper .work-box {
        padding: 20px 24px;
        margin: 0 5px;
    }

    .our-work .work-wrapper .work-box h5 {
        font-size: 18px;
        line-height: 21px;
        margin-bottom: 0.5rem;
    }

    .our-work .work-wrapper .work-box p {
        font-size: 14px;
        line-height: 18px;
    }

    .our-work .work-wrapper .work-box a {
        font-size: 14px;
    }

}



@media only screen and (max-width: 767px) {
    .our-work .work-wrapper {
        overflow-y: auto;
        padding-bottom: 1rem;
    }

    .our-work .work-wrapper .work-box {
        min-width: 16rem;
        margin: 0px 0px 19px 15px;
    }

    .our-work .container {
        padding-right: 0;
    }

    .our-work {
        padding-bottom: 15px;
    }

    .search-section h3 {
        font-size: 28px;
        line-height: 47px;
    }

    .search-section h4 {
        font-size: 20px;
        line-height: 24px;
    }

    .service-section,
    .search-section {
        padding: 40px 0;
    }

    .search-section .search-wrapper input {
        padding: 10px 15px 10px 40px;
        font-size: 14px;
    }

    .search-section .search-wrapper img {
        width: 25px;
        left: 25px;
    }

    .image-with-content .container .content-wrapper .btn-transparent,
    .search-section a {
        padding: 9px 20px;
        font-size: 14px;
        line-height: 24px;
        border-radius: 8px;
        min-width: 150px;
    }

    .contact-us-section .content-wrapper h2,
    .banner-section .content-wrapper h2,
    .service-section h2,
    .feature-section h2,
    .partner-section h2 {
        font-size: 30px;
        margin-bottom: 10px;
        line-height: 40px;
    }

    .feature-section .content-wrapper p,
    .banner-section .content-wrapper p,
    .service-section p,
    .service-section .service-box p,
    .contact-us-section .content-wrapper p,
    .image-with-content .container .content-wrapper p {
        font-size: 14px;
        line-height: 21px;
    }

    .image-with-content .row {
        flex-direction: column;
    }

    .image-with-content .container .content-wrapper {
        width: 100%;
        padding: 30px 30px;
    }

    .image-with-content .image-wrapper {
        width: 100%;
        height: 300px;
    }

    .image-with-content .container .content-wrapper h3 {
        font-size: 30px;
        line-height: 65px;
    }

    .image-with-content .container .content-wrapper p {
        margin-bottom: 20px;
    }

    .banner-section .image-wrapper {
        width: 100%;
        padding: 50px;
    }

    .banner-section .container .row {
        flex-direction: column;
    }

    .banner-section .content-wrapper {
        width: 100%;
        padding-bottom: 35px;
    }

    .banner-section .image-wrapper {
        max-height: 400px;
        position: relative;
    }

    .banner-section {
        padding: 40px 0;
    }

    .banner-section .image-wrapper::after {
        background: linear-gradient(180deg, rgb(255 255 255) 2%, rgb(255 255 255 / 61%) 40%);
        top: 0px;
    }

    .main-hero-section .text-wrapper h1 {
        font-size: 65px;
        line-height: 80px;
    }

    .main-hero-section {
        max-height: 585px;
    }

    .service-section .service-box .wrapper {
        flex-direction: column;
    }

    .service-section .service-box .wrapper .img-wrapper {
        padding: 0 0 10px 0;
    }

    .service-section .service-box h6 {
        font-size: 20px;
        line-height: 25px;
        margin-bottom: 5px;
    }

    .service-section .service-box.with-image .wrapper img {
        text-align: left;
        object-position: left;
    }

    .service-section .row {
        flex-wrap: nowrap;
        overflow-y: scroll;
        padding-top: 45px;
        padding-bottom: 25px;
    }

    .service-section .service-box a {
        font-size: 14px;
        margin-top: 15px;
        display: block;
    }


    .service-section .service-box.with-image {
        min-width: 225px;
        border-right: 1px solid #0091d5;
        margin-bottom: 0;
    }

    .service-section .service-box.with-image:last-child {
        border: 0;
    }

    .service-section .service-box {
        min-width: 200px;
        border-top: 0px solid #000;
        border-right: 1px solid #7abc4c;
        padding: 0 10px 0 0;
        margin-right: 10px;
    }

    .service-section p {
        margin-bottom: 0;
    }

    .service-section .service-box:last-child {
        border: 0;
    }

    .feature-section .content-wrapper img {
        height: 200px;
    }

    .feature-section .content-wrapper {
        max-width: 300px;
    }

    .slick-slider .slick-next:before,
    .slick-slider .slick-prev:before {
        width: 25px;
        height: 25px;
    }

    .feature-section::after,
    .feature-section::before {
        display: none;
    }

    .slick-slider .slick-next {
        right: 0.5rem;
    }

    .slick-slider .slick-prev {
        left: 0.5rem;
    }

    .feature-section .content-wrapper h3 {
        font-size: 20px;
        line-height: 25px;
        padding-top: 25px;
    }

    .feature-section {
        padding: 50px 0;
    }

    .client-review .client-slider .slick-list,
    .client-review p {
        max-width: 280px;
        font-size: 18px;
        line-height: 28px;
    }

    .client-review {
        padding: 50px 0;
    }

    .partner-section h3 {
        font-size: 25px;
        margin-bottom: 2rem;
    }

    .partner-section .company-logos {
        padding-bottom: 2rem;
    }

    .partner-section .company-logos img {
        margin-bottom: 1rem;
        padding: 0 1rem;
        width: 50%;
    }

    .contact-us-section {
        padding: 50px 0 0 0;
    }

    .contact-us-section .row {
        flex-direction: column;
    }

    .contact-us-section .content-wrapper {
        width: 100%;
    }

    .contact-us-section .form-wrapper {
        width: 100%;
        padding: 30px 25px 0 25px;
    }

    .feature-section .slider {
        padding-top: 30px;
    }

    .feature-section .content-wrapper .text-wrapper a {
        font-size: 14px;
        line-height: 24px;
        margin-top: 0;
    }

}

.page-template-account-page-template .button-wrapper {
    border-top: none;
    max-width: 95%;
}

.page-template-account-page-template .multiple-checkbox p {
    margin-bottom: 40px;
}

.page-template-account-page-template .create-application-button {
    background-color: #5B9A1D !important;
    max-width: 202px;
}

.page-template-account-page-template .create-application-button h3 {
    color: #FFF !important;
}

.page-template-account-page-template .button-wrapper button {
    transition: opacity 0.5s;
}

.page-template-account-page-template .updated-account {
    font-size: 1.4rem;
    color: green;
    margin-bottom: 40px;
}

.page-template-account-page-template hr {
    margin-bottom: 40px;
}

.custom-dropdown {
    display: none;
    position: absolute;
    width: 100%;
    z-index: 10;
    padding: 14px 18px;
    border: 1px solid lightgrey;
    background-color: #FFF;
    max-width: 510px;
}

/* Style for individual options */
.dropdown-option {
    padding: 14px 5px;
    cursor: pointer;
    font-size: 1.2rem;
}
.dropdown-option:not(:last-child) {
    border-bottom: 1px solid lightgrey;
}
.page-template-account-page-template .input-wrapper:has(.organization-logo) {
    display: flex;
    flex-wrap: wrap;
}
.page-template-account-page-template .input-wrapper:has(.organization-logo) label {
    width: 100%;
}
.main-org-logo {
    max-width: 200px;
    max-height: 100px;
    margin: 0 auto;
    display: block;
}

.main-org-name {
    margin-top: 30px;
    text-align: center;
}
/* .organization-logo {
    max-height: 32px;
    max-width: 32px;
    transform: translate(-50px, 10px);
}

.organization-logo img {
    height: 100%;
    width: 100%;
    object-fit: cover;
} */

.menu-wrapper li a.btn {
    color: #FFF;
}

/* Styles for single applications */

.single-applications form > img {
    max-width: 100px;
    display: block;
    margin: 0 auto;
}

.single-applications form > h4 {
    text-align: center;
    font-size: 2rem;
    margin-top: 20px;
    margin-bottom: 40px;
    color: #000;
}

.single-applications .form-title {
    text-align: center;
}

@media print {
    .single-applications form .delete_build_block, .single-applications form .delete_sub_block {
        display: none !important;
    }
    .single-applications form .ui-sortable-handle {
        border: none !important;
    }
    .single-applications form .ui-sortable-handle input {
        height: 140px;
    }
}

/** Shepherd.js Tour **/

.shepherd-modal-overlay-container {
    height: 100% !important;
    width: 100% !important;
    opacity: 0.3 !important;
    background: #000;
    z-index: 9998 !important;
}

.shepherd-header {
    background-color: rgb(92,154,27) !important;
    color: #FFF !important;
}

.shepherd-header h3 {
    color: #FFF !important;
    font-size: 1.8rem;
}

.shepherd-modal-overlay {
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9998; /* Ensure it's below Shepherd's tooltip but above other elements */
}

.shepherd-highlight {
    position: relative;
    z-index: 9999; /* Ensure the highlighted element is above the overlay */
}

.shepherd-target {
    position: relative;
    z-index: 9999;
    background-image: radial-gradient(circle, white, transparent);
}

.shepherd-target button {
    /* background: #FFF !important; */
}

.shepherd-cancel-icon span {
    color: #FFF !important;
}

.shepherd-button {
    color: #FFF !important;
}

@media screen and (max-width: 1189px) {
    .user-form-steps {
        flex-direction: column;
    }

    .templates-details-wrapper {
        order: 1;
        max-width: 1116px;
        margin: 0 auto;
    }
    .faq-list-details {
        order: 3;
        max-width: 860px !important;
        margin: 0 auto;
        width: 100%;
    }

    .gform_wrapper {
        order: 2;
    }

    .user-form-steps .gform_wrapper .button-wrapper {
        flex-direction: column;
        row-gap: 12px;
    }
}

/* .shepherd-target:before {
    content: "";
    display: block;
    border-radius: 50%;
    height: 200px;
    width: 200px;
    position: absolute;
    top: 0px;
    left: 100px;
    background-image: radial-gradient(circle, white, transparent);
} */

