:root {
    --heading-font: "Inter", sans-serif;
    --body-font: "Nunito Sans", sans-serif;
    --primary-color: #000;
    --secondary-color: #A01C20;
    --tertiary-color: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

h1 {
    font-size: clamp(1.75rem, 4vw, 3rem);
}

h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
}

h3 {
    font-size: clamp(1.35rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h5 {
    font-size: clamp(1.15rem, 2vw, 1.5rem);
}

h6 {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
}



img {
    border: 0;
    width: auto;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
    -ms-interpolation-mode: bicubic;
}

body {
    font-family: var(--body-font);
    color: var(--primary-color);
    font-size: 17px;
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.4;
}

span.featured-title {
    display: inline-block;
    margin-bottom: 10px;
    color: #1858bd;
    font-weight: 500;
    font-size: 16px;
}

.f-custom {
    font-size: 35px;

    @media (max-width: 991px) {
        font-size: 30px;
    }

    @media (max-width: 575px) {
        font-size: 25px;
    }
}

.header-area {
    position: sticky;
    top: 0px;
    background-color: rgb(255, 255, 255);
    padding: 6px 0px;
    transition: 0.3s;
    z-index: 9999;
    width: 100%;
}

.header-area.header-bg-on-scroll,
.header-area.header-bg-on-click {
    -webkit-animation: 600ms ease-out 0s normal none 1 running fadeInDown;
    animation: 600ms ease-out 0s normal none 1 running fadeInDown;
    background: #fff;
    -webkit-box-shadow: 0 5px 5px 0 rgb(0 0 0 / 10%);
    -moz-box-shadow: 0 5px 5px 0 rgb(0 0 0 / 10%);
    box-shadow: 0 5px 5px 0 rgb(0 0 0 / 10%);
    top: 0;
}

.site-logo img {
    max-width: 225px;
}

nav.custom-menu ul {
    list-style-type: none;
    display: flex;
    margin-bottom: 0px;
    align-items: center;
}

nav.custom-menu ul>li {
    position: relative;
}

.primary-btn {
    position: relative;
    padding: 10px 10px 7px 20px;
    transition: all 0.2s ease;
    border: 3px solid #1858bd;
    border-radius: 50px;
    background: #1858bd;
    color: var(--tertiary-color);
    text-decoration: none;
    display: inline-flex;
    line-height: normal;
    align-items: center;
    z-index: 55;

    &:hover {
        color: #fff;
        text-decoration: none
    }

    &::before {
        content: "";
        position: absolute;
        top: 0px;
        right: 0;
        border-radius: 50px;
        background: #000;
        width: 40px;
        height: 40px;
        transition: all 0.8s ease;
        z-index: -1;
    }

    &:hover:before {
        width: 100%;
        background: var(--primary-color)
    }

    &:hover i {
        transform: translateX(0);
        transition: all 2s ease
    }

    i {
        margin-left: 25px;
        transform: translateX(-3px);
        transition: all 0.5s ease;
        color: var(--fourth-color)
    }

    span {
        position: relative;
        z-index: 1
    }
}

.primary-btn.transparent {

    &::before {
        width: 48px;
        height: 48px;
    }

    &:hover:before {
        width: 100%;
    }


    i {
        margin-left: 40px;
        transform: translateX(-5px);
    }

    span {
        font-size: 22px;
    }
}

.main-slider {
    background-image: url(/images/restoration-holdings-video-banner.webp);
    overflow: hidden;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    height: 620px;
    width: 100%;
}

.slide-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    padding: 35px 0;
    border-radius: 0;
}

#myVideo {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.slide-text {
    position: relative;
    text-align: left;
}

.slide-text .slider-title {
    color: #fff;
    font-size: 4.2rem;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
    -webkit-animation: 0.6s;
    -moz-animation: 0.6s;
    -o-animation: 0.6s;
    animation: 0.6s;
    text-shadow: 1px 1px 1px rgb(0 0 0 / .35), 0 2px 3px rgb(0 0 0 / .35);
}

.padding-top-bottom {
    padding-top: 80px;
    padding-bottom: 80px;

    @media (max-width: 767px) {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    @media (max-width: 575px) {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.bg-blue {
    background-color: #1858bd17;
}

.padding-top-bottom img {
    border-radius: 8px;
}

.checked {
    list-style-type: none;
    margin: 0px;
    padding: 0px;

    li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 8px;

        &:before {
            content: "";
            color: var(--secondary-color);
            font-size: 18px;
            left: 0px;
            top: 2px;
            position: absolute;
            font-family: fontAwesome;
            width: 25px;
            height: 25px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center center;
        }
    }
}

.service-sec {
    background-color: #1858bd17;
}

.service-card {
    background-color: #fff;
    padding: 20px 20px 40px 20px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
    border-bottom-right-radius: 65px;
    height: 100%;
    transition: all 0.3s ease;

    .service-img {
        margin-bottom: 20px;
        border-radius: 10px;
        overflow: hidden;

        img {
            width: 100%;
        }
    }

    .service-heading {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 10px;
        font-size: 20px;
        font-weight: 700;

        @media (max-width: 1199px) {
            font-size: 15px;
        }

        @media (max-width: 991px) {
            font-size: 18px;
        }

        @media (max-width: 450px) {
            font-size: 15px;
        }

        i {
            color: var(--secondary-color);
            font-size: 30px;
        }

        svg {
            max-width: 35px;

            @media (max-width: 1199px) {
                max-width: 30px;
            }
        }
    }

    p {
        margin-bottom: 0px;

        @media (max-width: 1199px) {
            font-size: 15px;
        }
    }
}

.service-card:hover {
    background-color: #1858bd;
    transition: all 0.3s ease;
}

.service-card:hover .service-heading {
    color: #fff;
    transition: all 0.3s ease;
}

.service-card:hover path {
    fill: #fff;
    transition: all 0.3s ease;
}

.service-card:hover i {
    color: #fff;
    transition: all 0.3s ease;
}

.service-card:hover p {
    color: #fff;
    transition: all 0.3s ease;
}

.why-sec {
    position: relative;
}

.why-sec:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background-image: url(/images/why-choose-rhi.png);
    width: 51%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    @media (max-width: 1450px) {
        width: 48%;
        background-size: contain;
    }

    @media (max-width: 1199px) {
        content: none;
        display: none;
    }
}

.gallery-wrapper figure {
    position: relative;
    margin-bottom: 0px;
    border-radius: 5px;
    overflow: hidden;
}

.gallery-wrapper figure img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    overflow: hidden;
}

.zoom-btn {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s linear;
    opacity: 0;
}

.zoom-btn .svg {
    width: 40px;
    height: 40px;
}

.gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;

    @media (max-width: 991px) {
        grid-template-columns: repeat(2, 1fr);
    }

    @media (max-width: 767px) {
        grid-template-columns: repeat(1, 1fr);
    }
}

.gallery-wrapper figure:hover .zoom-btn {
    opacity: 1;
}

.gallery-sec {
    background-image: url(/images/gallery-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.cta-sec {
    background: rgb(33, 37, 41);
    padding: 60px 0px;
    margin: 0px 30px;
    border-radius: 6px;
    background-position: center bottom;

    @media (max-width: 575px) {
        padding: 35px 15px;
    }
}

.cta-left span {
    display: inline-block;
    position: relative;
    color: #fff;
    padding-left: 60px;
    font-size: 18px;

    @media (max-width: 400px) {
        padding-left: 50px;
        font-size: 14px;
    }
}

.cta-left span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 50px;
    height: 5px;
    background-color: #c26e71;
    transform: translateY(-50%);

    @media (max-width: 400px) {
        width: 35px;
    }
}

.cta-sec .small-heading {
    color: #fff;
    font-size: 60px;
    line-height: 70px;
    margin-bottom: 5px;
    font-weight: 800;

    @media (max-width: 991px) {
        font-size: 50px;
    }

    @media (max-width: 767px) {
        font-size: 40px;
    }

    @media (max-width: 490px) {
        font-size: 30px;
        line-height: 50px;
    }

    @media (max-width: 400px) {
        font-size: 25px;
        line-height: 50px;
    }
}

.cta-sec p {
    color: #e0e0e0;
    font-size: 17px;

    @media (max-width: 767px) {
        font-size: 16px;
    }
}

.cta-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
}

.cta-detail a[href^="tel:"] {
    font-size: 32px;
    color: var(--secondary-color);
    text-decoration: underline;
    text-decoration-style: wavy;
    text-underline-offset: 5px;
    text-decoration-color: #a01c20;
    text-shadow: -1px -1px 0 rgb(0 0 0 / 50%), 1px -1px 0 rgb(0 0 0 / 50%), -1px 1px 0 #2c2c2c, 1px 1px 0 #484848;
}

.footer-upper {
    background: #222;
    padding: 0;
    position: relative;
    box-shadow: rgba(108, 108, 108, 0.22) 0px -25px 20px -20px;
}

.footer-white-widget {
    background-color: #fff;
    padding: 70px;

    @media (max-width: 991px) {
        padding: 35px;
    }
}

.social-icon {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.social-icon li a {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-icon li i {
    color: #fff;
    font-size: 20px;
}

.footer-widget {
    padding-top: 100px;

    @media (max-width: 991px) {
        padding-top: 50px;
    }

    @media (max-width: 767px) {
        padding-top: 20px;
    }
}

.footer-widget .widget-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    line-height: normal;
}

.links-widget ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.links-widget ul li {
    line-height: 35px;
}

.menu-list li a {
    position: relative;
    transition: all 300ms ease;
    color: #ddd;
    text-decoration: none;
    font-size: 17px;
}

.menu-list li a::before {
    position: absolute;
    content: '\f054';
    font-family: "fontAwesome";
    left: 0;
    top: -6px;
    opacity: 0;
    width: 30px;
    height: 8px;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.menu-list li a:hover {
    color: #fff;
    padding-left: 25px;
    text-decoration: none;
}

.menu-list li a:hover::before {
    opacity: 1;
}

.link-flex {
    display: flex;
    align-items: start;
    gap: 20px;
    line-height: 1;
    margin-bottom: 30px !important;
}

.link-flex i {
    font-size: 28px;
    color: #a01c20;
    top: -2px;
    position: relative;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.link-flex .small-heading {
    color: #fff;
    font-size: 18px;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: normal;
}

.link-flex a {
    line-height: 1.5;
    text-decoration: none;
    color: rgb(255 255 255 / .6);
}

.footer-upper {
    background: #222;
    padding: 0;
    position: relative;
}

.social-icon {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.social-icon li a {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-icon li i {
    color: #fff;
    font-size: 20px;
}

.footer-widget .widget-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    line-height: normal;
}

.links-widget ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.links-widget ul li {
    line-height: 35px;
}

.menu-list li a {
    position: relative;
    transition: all 300ms ease;
    color: #ddd;
    text-decoration: none;
    font-size: 17px;
}

.menu-list li a::before {
    position: absolute;
    content: '\f054';
    font-family: "fontAwesome";
    left: 0;
    top: -6px;
    opacity: 0;
    width: 30px;
    height: 8px;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.menu-list li a:hover {
    color: #fff;
    padding-left: 25px;
    text-decoration: none;
}

.menu-list li a:hover::before {
    opacity: 1;
}

.link-flex {
    display: flex;
    align-items: start;
    gap: 20px;
    line-height: 1;
    margin-bottom: 30px !important;
}

.link-flex i {
    font-size: 28px;
    color: #a01c20;
    top: -2px;
    position: relative;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.link-flex .small-heading {
    color: #fff;
    font-size: 18px;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: normal;
}

.link-flex a {
    line-height: 1.5;
    text-decoration: none;
    color: rgb(255 255 255 / .6);
}

.footer-bottom {
    background: #000;
    color: whitesmoke;
    border-top: 1px solid #ad872e66;
    font-size: 14px;
    padding: 15px 0;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 5px;
    column-gap: 20px;
    z-index: 1;
    position: relative;
}

.designby {
    margin-bottom: 0;
}

#return-to-top {
    bottom: 50px;
    right: 90px;
    width: 60px;
    height: 80px;
    text-transform: uppercase;
    border-radius: 50px;
    color: #fff;
    display: none;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    border: none;
    background: var(--secondary-color);
    font-size: 12px;
    transition: all 500ms ease;
    position: fixed;
    text-align: center;
    z-index: 999;
    cursor: pointer;

    @media (max-width: 767px) {
        right: 20px;
        width: 50px;
        height: 70px;
    }
}

#return-to-top i {
    color: #fff;
    font-size: 1rem;
    position: relative;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    top: 12px;
}

#return-to-top:hover i {
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: leFadeInBottom;
    animation-iteration-count: infinite;
    color: #fff;
}

.breadcrumb {
    position: relative;
    background-color: #000;
    height: 150px;
    margin-bottom: 0px;
    margin-left: 15px;
    margin-right: 15px;
    border-radius: 8px;
}

.breadcrumb nav {
    background-color: rgb(255 255 255);
    left: 50%;
    top: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
    position: absolute;
    padding: 20px 50px;
    margin: 0px;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-radius: .25rem;

    @media (max-width: 575px) {
        padding: 20px 40px;
        width: 70%;
    }

    @media (max-width: 400px) {
        padding: 20px 40px;
        width: 85%;
    }
}

.breadcrumb nav ul {
    margin-left: 0px;
    padding-left: 0px;
    margin-bottom: 0px;
    list-style-type: none;
}

.breadcrumb ul>li {
    float: left;
}

.breadcrumb a,
.breadcrumb em {
    font-style: normal;
    display: inline-block;
    position: relative;
    line-height: 1.5;
    color: rgb(35 31 32) !important;
    padding: 0px;
    white-space: normal;
    text-decoration: none;
    text-wrap: wrap;
    font-size: 20px;
    font-weight: 600;

    @media (max-width: 767px) {
        font-size: 16px;
    }
}

.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    content: "/";
    color: rgb(218, 218, 218);
    margin-left: 10px;
    margin-right: 10px;
}

.breadcrumb li.active em {
    color: #a01c20 !important;
}

.team-member-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    grid-gap: 5px;

    @media (max-width: 1199px) {
        grid-template-columns: 1fr;
    }
}

.team-member-profile-details {
    border: 1px solid #e0dfdd;
    border-radius: 5px;
    background-color: #eee;
    padding: 5px;
}

.team-member-profile-details img {
    object-fit: contain;
    width: 100%;
    max-height: 100%;
    position: relative;
    z-index: 4;
}

.team-member-card-body {
    padding: 10px;
}

.profile-page-bio {
    border: 1px solid #e0dfdd;
    border-radius: 5px;
    padding: 15px;
}

button#wpforms-submit-75 {
    background-color: #1858bd;
    border-radius: 50px;
    min-width: 150px;
}

.contact-form-custom {
    background-color: #fff;
    padding: 10px 50px;
    border-radius: 8px;

    @media (max-width: 575px) {
        padding: 10px 30px;
    }

    @media (max-width: 400px) {
        padding: 10px 10px;
    }
}

.contact-form-custom input {
    max-width: 100% !important;
}

#contact-sec {
    scroll-margin-top: 100px;
}

.menu-icon {
    display: flex;
    margin-left: auto;
    text-align: center;
    width: 30px;
    height: 30px
}

.menu-icon-in {
    width: 30px;
    height: 30px;
    position: relative;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    display: inline-block
}

.menu-icon-in span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    border-radius: 1px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    background-color: #000000;
    border-radius: 10px
}

.menu-icon-in span:nth-child(1) {
    top: 10%
}

.menu-icon-in span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%)
}

.menu-icon-in span:nth-child(3) {
    bottom: 10%
}

.menu-icon-in.open span:nth-child(1) {
    top: 13px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    width: 100%;
    background-color: #000
}

.menu-icon-in.open span:nth-child(2) {
    opacity: 0;
    left: -60px
}

.menu-icon-in.open span:nth-child(3) {
    top: 13px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
    width: 100%;
    background-color: #000
}

.menu-icon-in:hover span {
    background-color: #000
}

.dvLeft {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    flex-direction: column;
    position: fixed;
    top: 0;
    height: 100%;
    z-index: 9998;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #fff;
    padding: 15px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
    transition: all .5s;
    box-shadow: 1px 0 5px #0000003d;
    -moz-box-shadow: 1px 0 5px #0000003d;
    -webkit-box-shadow: 1px 0 5px #0000003d
}

.navigation {
    min-height: 0;
    -webkit-box-flex: 1;
    flex: 1;
    margin: 20px 0
}

.overflow-nav {
    overflow-y: scroll
}

.dvLeft.open {
    left: 0
}

.mask-overlay {
    content: "";
    position: fixed;
    background: linear-gradient(180deg, rgb(0 0 0 / 50%), rgb(41 61 102 / 30%));
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99
}

#slidebar-out {
    color: #732525;
    font-size: 1.6rem;
    position: absolute;
    right: 12px;
    top: 8px;
    cursor: pointer
}

@media all and (min-width: 992px) {
    .dvLeft {
        display: none
    }
}

@media all and (max-width: 991.5px) {
    .dvRight {
        margin-left: 0
    }

    .dvLeft {
        left: -320px;
        width: 300px
    }

    .dvLeft {
        padding-top: 120px
    }
}

@media all and (max-width: 767px) {
    .dvLeft {
        padding-top: 86px
    }
}

.dvLeft .menu-item {
    position: relative
}

.dvLeft .menu-item a {
    color: #000000;
    position: relative;
    font-size: 1rem;
    font-weight: 700;
    display: block;
    line-height: 1.5;
    padding: 7px;
    z-index: 0;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.dvLeft .site-logo {
    display: none;
}

.dvLeft .menu-item a:hover {
    color: #fff;
    text-decoration: none;
    background: rgb(0 0 0 / 50%)
}

.dvLeft .menu-item a:before {
    top: 0;
    left: 0;
    right: 100%;
    bottom: 0;
    content: "";
    z-index: -1;
    position: absolute;
    background: #000;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out
}

.dvLeft .menu-item a:hover:before {
    right: 0
}

.dvLeft .menu-item.active>a {
    color: #ffffff !important;
    background: #0f0f0e !important
}

@keyframes leFadeInBottom {
    from {
        opacity: 0;
        transform: translateY(50%)
    }

    to {
        opacity: 1;
        transform: translateY(-50%)
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@media (min-width: 992px) {
    nav.custom-menu ul>li>a {
        font-size: 17px;
        font-weight: 500;
        color: var(--primary-color);
        transition: all 0.5s ease;
        text-decoration: none;
        position: relative;
        padding: 0.4rem 0px;
    }

    nav.custom-menu ul>li:not(:last-child)::after {
        top: 0;
        right: -1px;
        width: 1px;
        content: '';
        height: 100%;
        position: absolute;
        background-image: linear-gradient(to bottom, #fff0, #231f20, #e4bebf);
    }

    nav.custom-menu ul>li {
        padding: 0 1.5rem;
    }

    nav.custom-menu ul>li:first-child {
        padding-left: 0;
    }

    nav.custom-menu ul>li:last-child {
        padding-right: 0;
    }

    nav.custom-menu ul>li>a::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: 3px;
        left: 0px;
        visibility: hidden;
        transform: scaleX(0);
        background: var(--secondary-color);
        border-radius: 5px;
        transition: 0.25s linear;
    }

    nav.custom-menu ul>li>a:hover::before {
        visibility: visible;
        transform: scaleX(1);
    }
}

@media (min-width: 1450px) {
    .container {
        max-width: 1320px;
    }
}

@media (max-width: 1199px) {
    .slide-text .slider-title {
        font-size: 3.5rem;
    }

    .primary-btn.transparent span {
        font-size: 18px;
    }

    .primary-btn.transparent::before {
        width: 42px;
        height: 42px;
    }

    .main-slider {
        height: 500px;
    }

    .team-member-profile-details {
        grid-row: 1;
    }

    .profile-page-bio {
        grid-row: 2;
    }
}

@media (max-width: 991px) {
    .slide-text .slider-title {
        font-size: 3rem;
    }

    .main-slider {
        height: 450px;
    }
}

@media (max-width: 767px) {
    .slide-text .slider-title {
        font-size: 2.5rem;
    }

    .site-logo,
    .site-logo img {
        max-width: 175px;
    }
}

@media (max-width: 575px) {
    .slide-text .slider-title {
        font-size: 2rem;
    }

    .main-slider {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .slide-text .slider-title {
        font-size: 1.6rem;
    }

    .primary-btn.transparent i {
        margin-left: 32px;
        transform: translateX(-3px);
    }

    .primary-btn.transparent span {
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    div.wpforms-container-full input {
        height: 35px;
    }

    .wpforms-container .wpforms-field {
        padding: 10px 0;
    }
}

@media (max-width: 370px) {
    .slide-text .slider-title {
        font-size: 1.4rem;
    }
}