/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
    --envens-font: "DM Sans", sans-serif;
    --envens-font-two: "Lora", serif;
    --envens-font-three: 'reeyregular';
    --envens-gray: #878c8f;
    --envens-gray-rgb: 135, 140, 143;
    --envens-white: #ffffff;
    --envens-white-rgb: 255, 255, 255;
    --envens-base: #e21e8c;
    --envens-base-rgb: 226, 30, 140;
    --envens-black: #030215;
    --envens-black-rgb: 3, 2, 21;
    --envens-primary: #554bb9;
    --envens-primary-rgb: 85, 75, 185;
}

.row {
    --bs-gutter-x: 24px;
}

.gutter-y-24 {
    --bs-gutter-y: 24px;
}

body {
    font-family: var(--envens-font);
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    color: var(--envens-gray);
}

    body.locked {
        overflow: hidden;
    }

a {
    color: var(--envens-base);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

    a,
    a:hover,
    a:focus,
    a:visited {
        text-decoration: none;
    }

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--envens-black);
    margin: 0;
    font-family: var(--envens-font-two);
}

p {
    margin: 0;
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

.container {
    padding-left: 12px;
    padding-right: 12px;
}

.list-unstyled {
    padding-left: 0;
}

@media (min-width: 1344px) {
    .container {
        max-width: 1344px;
    }
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

.section-separator {
    border-color: var(--envens-border);
    border-width: 1px;
    margin-top: 0;
    margin-bottom: 0;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-position: 50% 50%;
    opacity: 0.4;
    z-index: -1;
}

.section-title {
    position: relative;
    display: block;
    margin-top: -7px;
    margin-bottom: 52px;
}

.section-title__tagline-box {
    position: relative;
    display: inline-flex;
    align-items: flex-end;
    gap: 15px;
}

.section-title__tagline {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-size: 18px;
    line-height: 28px;
    color: #b8b2b5;
    font-weight: 500;
    letter-spacing: 0.025em;
    text-transform: capitalize;
    gap: 10px;
}

.section-title__tagline--two {
    color: var(--envens-gray);
}

.section-title__title {
    margin: 0;
    color: white;
    font-size: 55px;
    line-height: 65px;
    font-weight: 500;
}

    .section-title__title > span {
        color: var(--envens-base);
        font-style: italic;
    }

.thm-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    -webkit-appearance: none;
    appearance: none;
    outline: none !important;
    font-weight: 500;
    font-size: 12px;
    color: var(--envens-white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 16px 26px 16px;
    background-color: var(--envens-primary);
    border-radius: 5px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    overflow: hidden;
    gap: 5px;
    z-index: 1;
}

    .thm-btn::after {
        content: "";
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 150%;
        height: 150%;
        border-bottom-left-radius: 50%;
        border-bottom-right-radius: 50%;
        background-color: var(--envens-base);
        transition-duration: 700ms;
        transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
        z-index: -1;
    }

    .thm-btn:hover {
        color: var(--envens-white);
    }

        .thm-btn:hover::after {
            bottom: -50%;
        }



.thm-btn-two {
    position: relative;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    -webkit-appearance: none;
    appearance: none;
    outline: none !important;
    font-weight: 500;
    font-size: 12px;
    color: var(--envens-white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 16px 37px 16px;
    background-color: var(--envens-base);
    border-radius: 5px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    overflow: hidden;
    gap: 5px;
    z-index: 1;
}

    .thm-btn-two::after {
        content: "";
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 150%;
        height: 150%;
        border-bottom-left-radius: 50%;
        border-bottom-right-radius: 50%;
        background-color: #554bb8;
        transition-duration: 700ms;
        transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
        z-index: -1;
    }

    .thm-btn-two:hover {
        color: var(--envens-white);
    }

        .thm-btn-two:hover::after {
            bottom: -50%;
        }

.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
.bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
.bootstrap-select .show > .btn-light.dropdown-toggle {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.bootstrap-select > .dropdown-toggle {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
    outline: none !important;
}

.bootstrap-select .dropdown-menu {
    border: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    z-index: 991;
    border-radius: 0;
}

    .bootstrap-select .dropdown-menu > li + li > a {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .bootstrap-select .dropdown-menu > li.selected > a {
        background: var(--envens-base);
        color: var(--envens-white);
    }

    .bootstrap-select .dropdown-menu > li > a {
        font-size: 16px;
        font-weight: 500;
        padding: 4px 12px;
        color: #ffffff;
        text-transform: uppercase;
        background: var(--envens-black);
        -webkit-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }

        .bootstrap-select .dropdown-menu > li > a:hover {
            background: var(--envens-base);
            color: var(--envens-white);
            cursor: pointer;
        }

.preloader {
    position: fixed;
    background-color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    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;
    text-align: center;
}

.preloader__image {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    background-image: url(../images/loader.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 60px auto;
    width: 100%;
    height: 100%;
}

/* scroll to top */
.scroll-to-top {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--envens-black);
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 99;
    text-align: center;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    display: none;
    border-radius: 0;
}

    .scroll-to-top i {
        color: var(--envens-white);
        font-size: 18px;
        line-height: 60px;
        -webkit-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }

    .scroll-to-top:hover {
        background-color: var(--envens-base);
    }

        .scroll-to-top:hover i {
            color: var(--envens-white);
        }



/** xs sidebar **/
.xs-sidebar-group .xs-overlay {
    left: 0%;
    top: 0;
    position: fixed;
    height: 100%;
    opacity: 0;
    width: 100%;
    visibility: hidden;
    -webkit-transition: all .4s ease-in .8s;
    -o-transition: all .4s ease-in .8s;
    transition: all .4s ease-in .8s;
    cursor: url(../images/icon/cross-out.png), pointer;
    z-index: 9999;
}

.xs-sidebar-group.isActive .xs-overlay {
    opacity: .8;
    visibility: visible;
    -webkit-transition: all .8s ease-out 0s;
    -o-transition: all .8s ease-out 0s;
    transition: all .8s ease-out 0s;
    right: 100%;
}

.xs-sidebar-group .widget-heading {
    position: absolute;
    top: 0;
    right: 0;
    padding: 25px;
}

    .xs-sidebar-group .widget-heading a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        line-height: 30px;
        text-align: center;
        border: 2px solid #fff;
        border-radius: 50%;
        color: #fff;
        font-size: 16px;
        font-weight: 400;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .xs-sidebar-group .widget-heading a:hover {
            color: var(--envens-base);
            border-color: var(--envens-base);
        }

.xs-sidebar-widget {
    position: fixed;
    left: -100%;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 360px;
    z-index: 999999;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
    -o-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
    transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
    visibility: hidden;
    opacity: 0;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
    opacity: 1;
    visibility: visible;
    left: 0;
    background-color: var(--envens-black);
    -webkit-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
    -o-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
    transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
}

.sidebar-textwidget {
    padding: 70px 30px;
}

.sidebar-widget-container {
    position: relative;
    top: 150px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s ease-in .3s;
    -o-transition: all .3s ease-in .3s;
    transition: all .3s ease-in .3s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
    top: 0px;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 1s ease-out 1.2s;
    -o-transition: all 1s ease-out 1.2s;
    transition: all 1s ease-out 1.2s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.xs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: .8;
    z-index: 0;
}

.xs-bg-black {
    background-color: #000000;
}

.xs-sidebar-group .content-inner .logo {
    position: relative;
    max-width: 172px;
    width: 100%;
    margin-bottom: 30px;
}

.xs-sidebar-group .content-inner h4 {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.xs-sidebar-group .content-inner .content-box {
    margin-bottom: 30px;
    padding-right: 15px;
}

    .xs-sidebar-group .content-inner .content-box p {
        color: #ffffff;
    }

.xs-sidebar-group .content-inner .form-inner .form-group {
    position: relative;
    margin-bottom: 20px;
}

    .xs-sidebar-group .content-inner .form-inner .form-group:last-child {
        margin-bottom: 0px;
    }

    .xs-sidebar-group .content-inner .form-inner .form-group input[type='text'],
    .xs-sidebar-group .content-inner .form-inner .form-group input[type='email'],
    .xs-sidebar-group .content-inner .form-inner .form-group textarea {
        position: relative;
        display: block;
        width: 100%;
        height: 50px;
        font-size: 15px;
        padding: 10px 20px;
        color: #848484;
        border: none;
        outline: none;
        transition: all 500ms ease;
    }

    .xs-sidebar-group .content-inner .form-inner .form-group .form-inner__btn {
        border: none;
        outline: none;
        background-color: var(--envens-white);
        color: var(--envens-black);
        display: inline-block;
        font-size: 16px;
        font-weight: 600;
        padding: 13px 45px;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .xs-sidebar-group .content-inner .form-inner .form-group .form-inner__btn:hover {
            color: var(--envens-white);
        }

        .xs-sidebar-group .content-inner .form-inner .form-group .form-inner__btn:after {
            background-color: var(--envens-base);
        }

    .xs-sidebar-group .content-inner .form-inner .form-group textarea {
        resize: none;
        height: 120px;
    }

        .xs-sidebar-group .content-inner .form-inner .form-group input:focus,
        .xs-sidebar-group .content-inner .form-inner .form-group textarea:focus {
            border-color: #00224f;
        }


/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    width: 100%;
    background: transparent;
    transition: all 500ms ease;
    z-index: 999;
}

.main-menu {
    position: relative;
    display: block;
    z-index: 1;
}

.main-menu__wrapper {
    position: relative;
    display: block;
    z-index: 1;
}

.main-menu__wrapper-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 70px;
    z-index: 1;
}

    .main-menu__wrapper-inner:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background-color: rgba(var(--envens-white-rgb), .20);
        z-index: -1;
    }

.main-menu__left {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.main-menu__logo {
    position: relative;
    display: block;
    padding: 0;
    z-index: 1;
}

    .main-menu__logo a {
        position: relative;
        display: block;
    }

.main-menu__login-box {
    position: relative;
    display: flex;
    min-height: 35px;
    align-items: center;
    gap: 15px;
    padding: 22.5px 0;
}

    .main-menu__login-box .icon {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--envens-white);
        font-size: 30px;
        height: 75px;
        width: 65px;
        background-color: rgba(var(--envens-white-rgb), .05);
    }

    .main-menu__login-box .select-box {
        position: relative;
        display: block;
        width: 130px;
    }

    .main-menu__login-box .nice-select {
        position: relative;
        display: block;
        background-color: transparent;
        border-radius: 0;
        border: 0;
        width: 100%;
        height: 35px;
        color: var(--envens-white);
        font-size: 18px;
        font-weight: 500;
        line-height: 35px;
        outline: none;
        padding-left: 0px;
        padding-right: 0px;
        transition: all 0.2s ease-in-out;
        padding: 0px 0;
    }

        .main-menu__login-box .nice-select:after {
            position: absolute;
            content: "\e902";
            font-family: 'icomoon' !important;
            color: var(--envens-white);
            font-size: 16px;
            top: 0px;
            right: 0px;
            margin: 0px;
            font-weight: 600;
            border: none !important;
            transform: rotate(0deg) !important;
            height: 20px;
            width: 12px;
        }

        .main-menu__login-box .nice-select .list {
            background-color: var(--envens-black);
            border-radius: 0px;
            box-shadow: 0 0 10px rgb(0 0 0 / 10%);
            padding: 0px 0 0px;
            width: 130px;
            left: auto !important;
        }

        .main-menu__login-box .nice-select .option {
            padding-left: 15px;
            padding-right: 15px;
            font-size: 15px;
            line-height: 35px;
            min-height: 35px;
        }

.main-menu__right {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.main-menu__main-menu-box {
    position: relative;
    display: block;
}

.main-menu__social-and-search-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 25px 0;
}

.main-menu__social {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

    .main-menu__social a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 70px;
        width: 55px;
        background: linear-gradient( 135deg, rgba(123, 97, 255, 0.45), rgb(255 79 163 / 53%), rgb(255 159 28 / 45%) );
        font-size: 16px;
        color: white;
        overflow: hidden;
        z-index: 1;
        backdrop-filter: blur(8px);
    }

        .main-menu__social a:hover {
            color: var(--envens-white);
        }

        .main-menu__social a + a {
            border-left: 1px solid rgba(var(--envens-black-rgb), .10);
        }

        .main-menu__social a:after {
            position: absolute;
            content: "";
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: linear-gradient( 135deg, #7b61ff 0%, #ff4fa3 70%, #ff9f1c 100%);
            -webkit-transition-delay: .1s;
            transition-delay: .1s;
            -webkit-transition-timing-function: ease-in-out;
            transition-timing-function: ease-in-out;
            -webkit-transition-duration: .4s;
            transition-duration: .4s;
            -webkit-transition-property: all;
            transition-property: all;
            opacity: 1;
            -webkit-transform-origin: top;
            transform-origin: top;
            -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
            -webkit-transform: scaleY(0);
            transform: scaleY(0);
            z-index: -1;
        }

        .main-menu__social a:hover:after {
            opacity: 1;
            -webkit-transform: scaleY(1);
            transform: scaleY(1);
        }

.main-menu__search-box {
    position: relative;
    display: block;
}

.main-menu__search {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background-color: var(--envens-primary);
    padding: 22px 35px 22px;
    gap: 20px;
}

    .main-menu__search span {
        position: relative;
        display: inline-block;
        font-size: 26px;
        color: var(--envens-white);
    }

.main-menu__search-text {
    font-size: 20px;
    font-weight: 500;
    color: var(--envens-white);
    font-family: var(--envens-font);
    line-height: 20px;
}

.stricky-header.main-menu {
    background-color: var(--envens-black);
}

.main-menu .main-menu__list,
.main-menu .main-menu__list > li > ul,
.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: none;
}



@media (min-width: 1200px) {

    .main-menu .main-menu__list,
    .main-menu .main-menu__list > li > ul,
    .main-menu .main-menu__list > li > ul > li > ul,
    .stricky-header .main-menu__list,
    .stricky-header .main-menu__list > li > ul,
    .stricky-header .main-menu__list > li > ul > li > ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.main-menu .main-menu__list > li,
.stricky-header .main-menu__list > li {
    padding-top: 46px;
    padding-bottom: 46px;
    position: relative;
}

    .main-menu .main-menu__list > li + li,
    .stricky-header .main-menu__list > li + li {
        margin-left: 30px;
        padding-left: 30px;
        border-left: 1px solid rgba(var(--envens-white-rgb), .20);
    }

    .main-menu .main-menu__list > li > a,
    .stricky-header .main-menu__list > li > a {
        font-size: 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        color: var(--envens-white);
        font-weight: 500;
        position: relative;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

    .main-menu .main-menu__list > li.dropdown > a {
        padding-right: 16px;
    }

        .main-menu .main-menu__list > li.dropdown > a:after {
            position: absolute;
            top: 55%;
            right: 0;
            font-family: "Font Awesome 5 Free";
            content: "\f067";
            font-size: 11px;
            color: var(--envens-white);
            transform: translateY(-50%);
            font-weight: 700;
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
            z-index: 1;
        }

    .main-menu .main-menu__list > li.current > a::after,
    .main-menu .main-menu__list > li:hover > a::after,
    .stricky-header .main-menu__list > li.current > a::after,
    .stricky-header .main-menu__list > li:hover > a::after {
        color: var(--envens-base);
    }

    .main-menu .main-menu__list > li.current > a,
    .main-menu .main-menu__list > li:hover > a,
    .stricky-header .main-menu__list > li.current > a,
    .stricky-header .main-menu__list > li:hover > a {
        color: var(--envens-base);
    }

    .main-menu .main-menu__list > li > ul,
    .main-menu .main-menu__list > li > ul > li > ul,
    .stricky-header .main-menu__list > li > ul,
    .stricky-header .main-menu__list > li > ul > li > ul {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 250px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        opacity: 0;
        visibility: hidden;
        -webkit-transform-origin: top center;
        transform-origin: top center;
        -webkit-transform: scaleY(0) translateZ(100px);
        transform: scaleY(0) translateZ(100px);
        -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
        transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
        transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
        transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
        z-index: 99;
        background-color: #fff;
        box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
    }

        .main-menu .main-menu__list > li > ul > li > ul > li > ul,
        .stricky-header .main-menu__list > li > ul > li > ul > li > ul {
            display: none;
        }

        .main-menu .main-menu__list > li:hover > ul,
        .main-menu .main-menu__list > li > ul > li:hover > ul,
        .stricky-header .main-menu__list > li:hover > ul,
        .stricky-header .main-menu__list > li > ul > li:hover > ul {
            opacity: 1;
            visibility: visible;
            -webkit-transform: scaleY(1) translateZ(0px);
            transform: scaleY(1) translateZ(0px);
        }

        .main-menu .main-menu__list > li > ul > li,
        .main-menu .main-menu__list > li > ul > li > ul > li,
        .stricky-header .main-menu__list > li > ul > li,
        .stricky-header .main-menu__list > li > ul > li > ul > li {
            -webkit-box-flex: 1;
            -ms-flex: 1 1 100%;
            flex: 1 1 100%;
            width: 100%;
            position: relative;
            border-bottom: 1px solid rgba(var(--envens-black-rgb), .10);
        }

            .main-menu .main-menu__list > li > ul > li:last-child,
            .main-menu .main-menu__list > li > ul > li > ul > li:last-child,
            .stricky-header .main-menu__list > li > ul > li:last-child,
            .stricky-header .main-menu__list > li > ul > li > ul > li:last-child {
                border-bottom: 0;
            }

            .main-menu .main-menu__list > li > ul > li + li,
            .main-menu .main-menu__list > li > ul > li > ul > li + li,
            .stricky-header .main-menu__list > li > ul > li + li,
            .stricky-header .main-menu__list > li > ul > li > ul > li + li {
                border-top: none;
                margin-top: 0px;
            }

            .main-menu .main-menu__list > li > ul > li > a,
            .main-menu .main-menu__list > li > ul > li > ul > li > a,
            .stricky-header .main-menu__list > li > ul > li > a,
            .stricky-header .main-menu__list > li > ul > li > ul > li > a {
                position: relative;
                font-size: 18px;
                line-height: 30px;
                color: var(--envens-black);
                font-weight: 500;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                padding: 10px 20px 10px;
                -webkit-transition: 500ms;
                transition: 500ms;
            }

            .main-menu .main-menu__list > li > ul > li:hover > a,
            .main-menu .main-menu__list > li > ul > li > ul > li:hover > a,
            .stricky-header .main-menu__list > li > ul > li:hover > a,
            .stricky-header .main-menu__list > li > ul > li > ul > li:hover > a {
                background-color: var(--envens-base);
                color: var(--envens-white);
            }

            .main-menu .main-menu__list > li > ul > li > ul,
            .stricky-header .main-menu__list > li > ul > li > ul {
                top: 0;
                left: 100%;
            }

.main-menu .main-menu__list li ul li > ul.right-align,
.stricky-header .main-menu__list li ul li > ul.right-align {
    top: 0;
    left: auto;
    right: 100%;
}


.stricky-header {
    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    visibility: hidden;
    -webkit-transform: translateY(-120%);
    transform: translateY(-120%);
    -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
    transition: visibility 500ms ease, -webkit-transform 500ms ease;
    transition: transform 500ms ease, visibility 500ms ease;
    transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
    -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
    .stricky-header {
        display: none !important;
    }
}

.stricky-header.stricky-fixed {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
}

.mobile-nav__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    margin-right: 10px;
}

@media (min-width: 1200px) {
    .mobile-nav__buttons {
        display: none;
    }
}

.mobile-nav__buttons a {
    font-size: 20px;
    color: var(--envens-base);
    cursor: pointer;
}

    .mobile-nav__buttons a + a {
        margin-left: 10px;
    }

    .mobile-nav__buttons a:hover {
        color: var(--envens-base);
    }

.main-menu .mobile-nav__toggler {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: var(--envens-base);
    cursor: pointer;
    -webkit-transition: 500ms;
    transition: 500ms;
}

    .main-menu .mobile-nav__toggler:hover {
        color: var(--envens-white);
    }

@media (min-width: 1200px) {
    .main-menu .mobile-nav__toggler {
        display: none;
    }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
    transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    visibility: hidden;
}

    .mobile-nav__wrapper .container {
        padding-left: 0;
        padding-right: 0;
    }

    .mobile-nav__wrapper.expanded {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        visibility: visible;
        -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
        transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
        transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
        transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    }

.mobile-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    opacity: 0.5;
    cursor: pointer;
}

.mobile-nav__content {
    width: 300px;
    background-color: var(--envens-black);
    z-index: 10;
    position: relative;
    height: 100%;
    overflow-y: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__content .logo-box {
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.mobile-nav__close {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 18px;
    color: var(--envens-white);
    cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list > li > ul,
.mobile-nav__content .main-menu__list > li > ul > li > ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

    .mobile-nav__content .main-menu__list > li > ul,
    .mobile-nav__content .main-menu__list > li > ul > li > ul {
        display: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-left: 0.5em;
    }

        .mobile-nav__content .main-menu__list > li:not(:last-child),
        .mobile-nav__content .main-menu__list > li > ul > li:not(:last-child),
        .mobile-nav__content .main-menu__list > li > ul > li > ul > li:not(:last-child) {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

    .mobile-nav__content .main-menu__list > li > a > .main-menu-border {
        display: none !important;
    }

    .mobile-nav__content .main-menu__list > li > a,
    .mobile-nav__content .main-menu__list > li > ul > li > a,
    .mobile-nav__content .main-menu__list > li > ul > li > ul > li > a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        line-height: 30px;
        color: #ffffff;
        font-size: 14px;
        font-family: var(--envens-font);
        font-weight: 500;
        height: 46px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-transition: 500ms;
        transition: 500ms;
    }

        .mobile-nav__content .main-menu__list > li > a.expanded .mobile-nav__content .main-menu__list > li > ul > li > a.expanded .mobile-nav__content .main-menu__list > li > ul > li > ul > li > a.expanded {
            color: var(--envens-base);
        }

    .mobile-nav__content .main-menu__list li a.expanded {
        color: var(--envens-base);
    }

    .mobile-nav__content .main-menu__list > li > a > button,
    .mobile-nav__content .main-menu__list > li > ul > li > a > button,
    .mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button {
        width: 30px;
        height: 30px;
        background-color: var(--envens-base);
        border: none;
        outline: none;
        color: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        -webkit-transition: -webkit-transform 500ms ease;
        transition: -webkit-transform 500ms ease;
        transition: transform 500ms ease;
        transition: transform 500ms ease, -webkit-transform 500ms ease;
        padding: 0;
    }

        .mobile-nav__content .main-menu__list > li > a > button.expanded,
        .mobile-nav__content .main-menu__list > li > ul > li > a > button.expanded,
        .mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button.expanded {
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
            background-color: #fff;
            color: var(--envens-base);
        }

    /* no menu after 2rd level dropdown */
    .mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button,
    .mobile-nav__content .main-menu__list > li > ul > li > ul > li > ul {
        display: none !important;
    }

    .mobile-nav__content .main-menu__list li.cart-btn span {
        position: relative;
        top: auto;
        right: auto;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    .mobile-nav__content .main-menu__list li.cart-btn i {
        font-size: 16px;
    }

.mobile-nav__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 30px;
}

    .mobile-nav__top .main-menu__login a {
        color: var(--envens-text-dark);
    }

.mobile-nav__container {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .mobile-nav__social a {
        font-size: 16px;
        color: var(--envens-white);
        -webkit-transition: 500ms;
        transition: 500ms;
    }

        .mobile-nav__social a + a {
            margin-left: 30px;
        }

        .mobile-nav__social a:hover {
            color: var(--envens-base);
        }

.mobile-nav__contact {
    margin-bottom: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

    .mobile-nav__contact li {
        color: var(--envens-text-dark);
        font-size: 14px;
        font-weight: 500;
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .mobile-nav__contact li + li {
            margin-top: 15px;
        }

        .mobile-nav__contact li a {
            color: #ffffff;
            -webkit-transition: 500ms;
            transition: 500ms;
        }

            .mobile-nav__contact li a:hover {
                color: var(--envens-base);
            }

        .mobile-nav__contact li > i {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: var(--envens-base);
            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;
            text-align: center;
            font-size: 11px;
            margin-right: 10px;
            color: #fff;
        }

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
    display: none;
}

/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/
.main-menu-two .main-menu__social a {
    background-color: rgba(var(--envens-white-rgb), 0.05);
    color: var(--envens-white);
}

    .main-menu-two .main-menu__social a + a {
        border-left: 1px solid rgba(var(--envens-white-rgb), .10);
    }

    .main-menu-two .main-menu__social a:after {
        background-color: rgba(var(--envens-white-rgb), 0.10);
    }

.main-menu-two .main-menu__search {
    background-color: var(--envens-base);
}


/*--------------------------------------------------------------
# Navigations Three
--------------------------------------------------------------*/
.main-header-three {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    width: 100%;
    background: transparent;
    transition: all 500ms ease;
    z-index: 999;
}

.main-header-three__top {
    position: relative;
    display: block;
}

.main-header-three__top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: rgba(var(--envens-black-rgb), .90);
    padding: 0px 70px 0px;
}

.main-header-three__contact-list {
    position: relative;
    display: flex;
    align-items: center;
}

    .main-header-three__contact-list li {
        position: relative;
        display: flex;
        align-items: center;
    }

        .main-header-three__contact-list li + li {
            margin-left: 40px;
        }

        .main-header-three__contact-list li .icon {
            position: relative;
            display: flex;
            align-items: center;
        }

            .main-header-three__contact-list li .icon i {
                font-size: 15px;
                color: var(--envens-base);
            }

        .main-header-three__contact-list li .text {
            margin-left: 10px;
        }

            .main-header-three__contact-list li .text p {
                font-size: 14px;
                color: var(--envens-gray);
                font-weight: 500;
            }

                .main-header-three__contact-list li .text p a {
                    color: var(--envens-gray);
                    -webkit-transition: all 500ms ease;
                    transition: all 500ms ease;
                }

                    .main-header-three__contact-list li .text p a:hover {
                        color: var(--envens-base);
                    }

.main-header-three__social-and-top-menu {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background-color: var(--envens-base);
    padding: 11px 50px 11px;
    gap: 130px;
}

.main-header-three__social {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

    .main-header-three__social a {
        position: relative;
        display: flex;
        align-items: center;
        font-size: 15px;
        color: var(--envens-white);
    }

        .main-header-three__social a:hover {
            color: var(--envens-black);
        }

.main-header-three__top-menu {
    position: relative;
    display: block;
}

.main-header-three__top-menu-list {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 35px;
}

    .main-header-three__top-menu-list li {
        position: relative;
        display: block;
    }

        .main-header-three__top-menu-list li:before {
            content: "";
            position: absolute;
            top: 8px;
            bottom: 7px;
            left: -20px;
            width: 1px;
            background-color: var(--envens-white);
            transform: rotate(15deg);
        }

        .main-header-three__top-menu-list li:first-child:before {
            display: none;
        }

        .main-header-three__top-menu-list li a {
            font-size: 14px;
            font-weight: 500;
            color: var(--envens-white);
        }

            .main-header-three__top-menu-list li a:hover {
                color: var(--envens-black);
            }

.main-menu-three__wrapper {
    position: relative;
    display: block;
    z-index: 1;
}

.main-menu-three__wrapper-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 70px;
    z-index: 1;
}

    .main-menu-three__wrapper-inner:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background-color: rgba(var(--envens-white-rgb), .20);
        z-index: -1;
    }

.main-menu-three__left {
    position: relative;
    display: flex;
    align-items: center;
    gap: 100px;
    flex-wrap: wrap;
}

.main-menu-three__logo {
    position: relative;
    display: block;
    padding: 29px 0;
}

.main-menu-three__main-menu-box {
    position: relative;
    display: block;
}

.main-menu-three__right {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.main-menu-three__login-box {
    position: relative;
    display: flex;
    min-height: 35px;
    align-items: center;
    gap: 15px;
    padding: 22.5px 0;
}

    .main-menu-three__login-box .icon {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--envens-white);
        font-size: 30px;
        height: 75px;
        width: 65px;
        background-color: rgba(var(--envens-white-rgb), .05);
    }

    .main-menu-three__login-box .select-box {
        position: relative;
        display: block;
        width: 130px;
    }

    .main-menu-three__login-box .nice-select {
        position: relative;
        display: block;
        background-color: transparent;
        border-radius: 0;
        border: 0;
        width: 100%;
        height: 35px;
        color: var(--envens-white);
        font-size: 18px;
        font-weight: 500;
        line-height: 35px;
        outline: none;
        padding-left: 0px;
        padding-right: 0px;
        transition: all 0.2s ease-in-out;
        padding: 0px 0;
    }

        .main-menu-three__login-box .nice-select:after {
            position: absolute;
            content: "\e902";
            font-family: 'icomoon' !important;
            color: var(--envens-white);
            font-size: 16px;
            top: 0px;
            right: 0px;
            margin: 0px;
            font-weight: 600;
            border: none !important;
            transform: rotate(0deg) !important;
            height: 20px;
            width: 12px;
        }

        .main-menu-three__login-box .nice-select .list {
            background-color: var(--envens-black);
            border-radius: 0px;
            box-shadow: 0 0 10px rgb(0 0 0 / 10%);
            padding: 0px 0 0px;
            width: 130px;
            left: auto !important;
        }

        .main-menu-three__login-box .nice-select .option {
            padding-left: 15px;
            padding-right: 15px;
            font-size: 15px;
            line-height: 35px;
            min-height: 35px;
        }

.main-menu-three__search-box {
    position: relative;
    display: block;
}

.main-menu-three__search {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background-color: var(--envens-base);
    padding: 22px 35px 22px;
    gap: 20px;
}

    .main-menu-three__search span {
        position: relative;
        display: inline-block;
        font-size: 26px;
        color: var(--envens-white);
    }

.main-menu-three__search-text {
    font-size: 20px;
    font-weight: 500;
    color: var(--envens-white);
    font-family: var(--envens-font);
    line-height: 20px;
}


.stricky-header.main-menu-three {
    background-color: var(--envens-black);
}





/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    padding-left: 20px;
    padding-right: 20px;
    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;
    -webkit-transform: translateY(-110%);
    transform: translateY(-110%);
    -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}

    .search-popup.active {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }

.search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--envens-black);
    opacity: 0.75;
    cursor: pointer;
}

.search-popup__content {
    width: 100%;
    max-width: 560px;
}

    .search-popup__content form {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        position: relative;
        background-color: #fff;
        border-radius: 0;
        overflow: hidden;
    }

        .search-popup__content form input[type="search"],
        .search-popup__content form input[type="text"] {
            width: 100%;
            background-color: #fff;
            font-size: 16px;
            border: none;
            outline: none;
            height: 66px;
            padding-left: 30px;
        }

    .search-popup__content .thm-btn {
        padding: 0;
        width: 68px;
        height: 68px;
        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;
        text-align: center;
        position: absolute;
        top: 0;
        right: -1px;
        border-radius: 0;
        background-color: var(--envens-primary);
        border: 0;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        clip-path: none;
    }

        .search-popup__content .thm-btn i {
            height: auto;
            width: auto;
            background-color: transparent;
            border-radius: 50%;
            color: var(--envens-white);
            font-size: 22px;
            line-height: inherit;
            text-align: center;
            top: 0;
            margin-right: 0;
            padding-left: 0;
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
        }

        .search-popup__content .thm-btn:hover i {
            color: var(--envens-white);
        }


/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider {
    position: relative;
    display: block;
    background-color: #171627;
    z-index: 91;
    overflow: hidden;
}

    .main-slider .swiper-slide {
        position: relative;
        background-color: #171627;
    }

.main-slider__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    transition: transform 7000ms ease, opacity 1500ms ease-in;
    transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    z-index: -1;
}

    .main-slider__bg:before {
        position: absolute;
        top: 0px;
        left: 0;
        bottom: 0;
        width: 100%;
        content: "";
        background-color: #171627;
        opacity: 0.94;
        z-index: -1;
    }

.main-slider .swiper-slide-active .main-slider__bg {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.main-slider__img {
    position: absolute;
    top: 0;
    right: 0;
    border-bottom-left-radius: 590px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(400px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(400px);
    transform: perspective(400px) rotateY(0deg) translateX(400px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 2000ms ease;
    -moz-transition: all 2000ms ease;
    -ms-transition: all 2000ms ease;
    -o-transition: all 2000ms ease;
    transition: all 2000ms ease;
}

    .main-slider__img img {
        width: auto;
        border-bottom-left-radius: 590px;
    }

.main-slider .swiper-slide-active .main-slider__img {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
    transform: perspective(400px) rotateY(0deg) translateX(0px);
    -webkit-transition-delay: 2000ms;
    -moz-transition-delay: 2000ms;
    -ms-transition-delay: 2000ms;
    -o-transition-delay: 2000ms;
    transition-delay: 2000ms;
}

.main-slider__img:before {
    content: "";
    position: absolute;
    top: 320px;
    bottom: 0;
    left: 45px;
    right: 0;
    background-image: -moz-linear-gradient(180deg, rgb(252, 9, 124) 0%, rgb(85, 75, 185) 100%);
    background-image: -webkit-linear-gradient(180deg, rgb(252, 9, 124) 0%, rgb(85, 75, 185) 100%);
    background-image: -ms-linear-gradient(180deg, rgb(252, 9, 124) 0%, rgb(85, 75, 185) 100%);
    border-bottom-left-radius: 420px;
    z-index: -1;
}

.main-slider__shape-1 {
    position: absolute;
    left: 0px;
    right: 0;
    top: 0px;
    height: 325px;
    background-image: -moz-linear-gradient(-90deg, rgb(13, 2, 32) 0%, rgba(23, 22, 39, 0) 100%);
    background-image: -webkit-linear-gradient(-90deg, rgb(13, 2, 32) 0%, rgba(23, 22, 39, 0) 100%);
    background-image: -ms-linear-gradient(-90deg, rgb(13, 2, 32) 0%, rgba(23, 22, 39, 0) 100%);
    opacity: 0.902;
    z-index: 1;
}

.main-slider__shape-2 {
    position: absolute;
    top: -30px;
    right: 0;
    animation: topBottom 3s ease-in-out infinite;
    z-index: 1;
}

    .main-slider__shape-2 img {
        width: auto;
    }

.main-slider__shape-3 {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 600px;
    width: 100%;
    height: 120px;
    background: rgb(87, 74, 184);
    background: linear-gradient(90deg, rgba(87, 74, 184, 0) 36%, rgba(182, 37, 150, 1) 58%, rgba(87, 74, 184, 1) 80%);
    opacity: .90;
}

.main-slider .container {
    position: relative;
    padding-top: 192px;
    padding-bottom: 191px;
    z-index: 30;
}

.main-slider__content {
    position: relative;
    display: block;
    max-width: 710px;
    width: 100%;
    margin-left: -100px;
    padding: 95px 0 157px;
    padding-left: 100px;
    clip-path: polygon(10% 0, 92% 8%, 100% 100%, 0 88%);
    z-index: 15;
}

    .main-slider__content:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: -moz-linear-gradient( 180deg, rgb(255, 183, 77) 0%, rgba(252, 9, 124, 0.75) 45%, rgb(85, 75, 185) 100% );
        background-image: -webkit-linear-gradient( 180deg, rgb(255, 183, 77) 0%, rgba(252, 9, 124, 0.75) 45%, rgb(85, 75, 185) 100% );
        background-image: -ms-linear-gradient( 180deg, rgb(255, 183, 77) 0%, rgba(252, 9, 124, 0.75) 45%, rgb(85, 75, 185) 100% );
        opacity: 0;
        -webkit-transform: perspective(400px) rotateY(0deg) translateX(-400px);
        -ms-transform: perspective(400px) rotateY(0deg) translateX(-400px);
        transform: perspective(400px) rotateY(0deg) translateX(-400px);
        -webkit-transform-origin: top;
        -ms-transform-origin: top;
        transform-origin: top;
        -webkit-transition: all 1000ms ease;
        -moz-transition: all 1000ms ease;
        -ms-transition: all 1000ms ease;
        -o-transition: all 1000ms ease;
        transition: all 1000ms ease;
        z-index: -1;
    }

.main-slider .swiper-slide-active .main-slider__content:before {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
    transform: perspective(400px) rotateY(0deg) translateX(0px);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.main-slider__sub-title {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 500;
    font-style: italic;
    font-family: var(--envens-font-two);
    color: var(--envens-white);
    border: 1px solid var(--envens-white);
    padding: 15px 40px 15px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(120px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(120px);
    transform: perspective(400px) rotateY(0deg) translateY(120px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.main-slider .swiper-slide-active .main-slider__sub-title {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
}

.main-slider__title {
    position: relative;
    font-size: 95px;
    color: var(--envens-white);
    font-weight: 600;
    text-transform: uppercase;
    line-height: 115px;
    margin-top: 25px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-120px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-120px);
    transform: perspective(400px) rotateY(0deg) translateY(-120px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.main-slider .swiper-slide-active .main-slider__title {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
}

.main-slider__curved-circle {
    position: absolute;
    bottom: 100px;
    right: 100px;
    height: 140px;
    width: 140px;
    border-radius: 50%;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(120px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(120px);
    transform: perspective(400px) rotateY(0deg) translateX(120px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    z-index: 1;
}

.main-slider .swiper-slide-active .main-slider__curved-circle {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
    transform: perspective(400px) rotateY(0deg) translateX(0px);
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
}


@keyframes textRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.main-slider__curved-circle .curved-circle {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    color: var(--envens-white);
    text-transform: uppercase;
    letter-spacing: 0.20em;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: textRotate 10s linear 0s forwards infinite alternate;
}

.main-slider__arrow-icon-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 2;
}

.main-slider__arrow-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    font-size: 55px;
    color: var(--envens-white);
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

    .main-slider__arrow-icon:hover {
        color: var(--envens-black);
    }


#main-slider-pagination {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
    max-width: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 56%;
    transform: translateY(-50%);
    padding: 0 50px;
    margin: 0 auto !important;
    height: 0;
    line-height: 0;
    z-index: 100;
}

    #main-slider-pagination .swiper-pagination-bullet {
        position: relative;
        display: block;
        width: 14px;
        height: 14px;
        padding: 6px 0;
        margin: 4px 0px;
        background: transparent;
        border: 1px solid var(--envens-white);
        opacity: 1;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

        #main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
            opacity: 1;
        }

        #main-slider-pagination .swiper-pagination-bullet::before {
            position: absolute;
            top: 2px;
            left: 2px;
            right: 2px;
            bottom: 2px;
            border-radius: 50%;
            background-color: var(--envens-white);
            transform: scale(0);
            transition: all 200ms linear;
            transition-delay: 0.1s;
            content: "";
        }

        #main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before,
        #main-slider-pagination .swiper-pagination-bullet:hover {
            transform: scale(1.0);
        }


/*--------------------------------------------------------------
# Main Slider Two
--------------------------------------------------------------*/
.main-slider-two {
    position: relative;
    display: block;
    background-color: var(--envens-black);
    z-index: 91;
}

    .main-slider-two .swiper-slide {
        position: relative;
        background-color: var(--envens-black);
    }

.main-slider-two__bg {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    mix-blend-mode: luminosity;
    opacity: .12;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    transition: transform 7000ms ease, opacity 1500ms ease-in;
    transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    z-index: -1;
}

.main-slider-two .swiper-slide-active .main-slider-two__bg {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.main-slider-two__img {
    position: absolute;
    bottom: 0;
    right: 185px;
    opacity: 0;
    transform: translateX(300px);
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    z-index: 1;
}

.main-slider-two .swiper-slide-active .main-slider-two__img {
    opacity: 1;
    transform: translateX(0);
    -webkit-transition-delay: 2500ms;
    -moz-transition-delay: 2500ms;
    -ms-transition-delay: 2500ms;
    -o-transition-delay: 2500ms;
    transition-delay: 2500ms;
}

.main-slider-two__img img {
    width: auto;
}

.main-slider-two__shape-1 {
    position: absolute;
    top: 126px;
    left: 0;
}

    .main-slider-two__shape-1 img {
        width: auto;
    }

.main-slider-two__shape-2 {
    position: absolute;
    bottom: -80px;
    left: 0;
    animation-name: border-round;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

    .main-slider-two__shape-2 img {
        width: auto;
    }

@keyframes border-round {

    0% {
        transform: rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: rotate(-180deg);
    }

    100% {
        transform: rotate(-360deg);
        opacity: 1;
    }
}

.main-slider-two__shape-3 {
    position: absolute;
    top: 142px;
    right: 0;
    animation: topBottom 3s ease-in-out infinite;
}

    .main-slider-two__shape-3 img {
        width: auto;
    }

.main-slider-two__shape-4 {
    position: absolute;
    top: -90px;
    left: 900px;
    opacity: .37;
    z-index: -1;
}

    .main-slider-two__shape-4 img {
        width: auto;
        opacity: .37;
    }

.main-slider-two__shape-5 {
    position: absolute;
    bottom: -580px;
    right: -100px;
    opacity: .86;
    animation-name: border-round;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    z-index: -1;
}

    .main-slider-two__shape-5 img {
        width: auto;
    }

.main-slider-two .container {
    position: relative;
    padding-top: 295px;
    padding-bottom: 148px;
    z-index: 30;
}

.main-slider-two__content {
    position: relative;
    display: block;
    margin-left: 75px;
    z-index: 15;
}

.main-slider-two__content-shape-1 {
    position: absolute;
    top: -30px;
    left: 440px;
}

    .main-slider-two__content-shape-1 img {
        width: auto;
    }

.main-slider-two__title {
    position: relative;
    color: var(--envens-white);
    font-size: 90px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 110px;
    margin-bottom: 30px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-120px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-120px);
    transform: perspective(400px) rotateY(0deg) translateY(-120px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

    .main-slider-two__title .color-text {
        position: relative;
        display: inline-flex;
        background-color: var(--envens-base);
        padding: 0 17px;
        border-radius: 50px;
        line-height: 100px;
    }

    .main-slider-two__title .italic-text {
        font-style: italic;
    }

.main-slider-two .swiper-slide-active .main-slider-two__title {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
}

.main-slider-two__title:before {
    content: "";
    position: absolute;
    bottom: -11px;
    left: 0;
    width: 230px;
    height: 3px;
    background-color: var(--envens-base);
}

.main-slider-two__curved-circle {
    position: relative;
    display: block;
    height: 140px;
    width: 140px;
    border-radius: 50%;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(120px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(120px);
    transform: perspective(400px) rotateY(0deg) translateY(120px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    z-index: 1;
}

.main-slider-two .swiper-slide-active .main-slider-two__curved-circle {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
}


@keyframes textRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.main-slider-two__curved-circle .curved-circle {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    color: var(--envens-white);
    text-transform: uppercase;
    letter-spacing: 0.20em;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: textRotate 10s linear 0s forwards infinite alternate;
}

.main-slider-two__arrow-icon-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 2;
}

.main-slider-two__arrow-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    font-size: 55px;
    color: var(--envens-base);
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

    .main-slider-two__arrow-icon:hover {
        color: var(--envens-white);
    }


.main-slider-two #main-slider-pagination {
    top: 55%;
}


/*--------------------------------------------------------------
# Main Slider Three
--------------------------------------------------------------*/
.main-slider-three {
    position: relative;
    display: block;
    background-color: var(--envens-black);
    z-index: 91;
}

    .main-slider-three .swiper-slide {
        position: relative;
        background-color: var(--envens-black);
    }

.main-slider-three__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transform: scale(1);
    transform: scale(1);
    mix-blend-mode: luminosity;
    opacity: .12;
    ;
    -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    transition: transform 7000ms ease, opacity 1500ms ease-in;
    transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    z-index: -1;
}

.main-slider-three .swiper-slide-active .main-slider-three__bg {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.main-slider-three__shape-1 {
    position: absolute;
    bottom: -180px;
    left: -10px;
    z-index: -1;
}

    .main-slider-three__shape-1 img {
        width: auto;
    }

.main-slider-three__shape-2 {
    position: absolute;
    bottom: 100px;
    right: 220px;
    opacity: .86;
    z-index: -1;
}

    .main-slider-three__shape-2 img {
        width: auto;
    }

.main-slider-three__shape-3 {
    position: absolute;
    top: 190px;
    right: 0px;
    z-index: -1;
}

    .main-slider-three__shape-3 img {
        width: auto;
    }

.main-slider-three__img {
    position: absolute;
    bottom: 0;
    right: 110px;
    opacity: 0;
    transform: translateX(300px);
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
}

.main-slider-three .swiper-slide-active .main-slider-three__img {
    opacity: 1;
    transform: translateX(0);
    -webkit-transition-delay: 2500ms;
    -moz-transition-delay: 2500ms;
    -ms-transition-delay: 2500ms;
    -o-transition-delay: 2500ms;
    transition-delay: 2500ms;
}

.main-slider-three__img img {
    width: auto;
}

.main-slider-three .container {
    position: relative;
    padding-top: 353px;
    padding-bottom: 183px;
    z-index: 30;
}

.main-slider-three__content {
    position: relative;
    display: block;
    z-index: 15;
}

.main-slider-three__content-shape-1 {
    position: absolute;
    bottom: 235px;
    left: 540px;
    animation: topBottom 3s ease-in-out infinite;
}

    .main-slider-three__content-shape-1 img {
        width: auto;
    }

.main-slider-three__sbu-title-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(0deg) translateY(-120px);
    -ms-transform: perspective(400px) rotateX(0deg) translateY(-120px);
    transform: perspective(400px) rotateX(0deg) translateY(-120px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.main-slider-three .swiper-slide-active .main-slider-three__sbu-title-box {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1800ms;
    -moz-transition-delay: 1800ms;
    -ms-transition-delay: 1800ms;
    -o-transition-delay: 1800ms;
    transition-delay: 1800ms;
}

.main-slider-three__sbu-title-shape-1 {
    position: absolute;
    bottom: -25px;
    left: 0;
    width: 360px;
    height: 11px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.main-slider-three__sbu-title {
    font-size: 18px;
    color: var(--envens-white);
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0.050em;
    text-transform: uppercase;
}

.main-slider-three__title {
    position: relative;
    font-size: 80px;
    color: var(--envens-white);
    font-weight: 600;
    text-transform: uppercase;
    line-height: 96px;
    margin-top: 41px;
    margin-bottom: 20px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-120px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-120px);
    transform: perspective(400px) rotateY(0deg) translateY(-120px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.main-slider-three .swiper-slide-active .main-slider-three__title {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
}

.main-slider-three__curved-circle {
    position: relative;
    display: block;
    height: 140px;
    width: 140px;
    border-radius: 50%;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(120px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(120px);
    transform: perspective(400px) rotateY(0deg) translateY(120px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    z-index: 1;
}

.main-slider-three .swiper-slide-active .main-slider-three__curved-circle {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
}


@keyframes textRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.main-slider-three__curved-circle .curved-circle {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    color: var(--envens-white);
    text-transform: uppercase;
    letter-spacing: 0.20em;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: textRotate 10s linear 0s forwards infinite alternate;
}

.main-slider-three__arrow-icon-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 2;
}

.main-slider-three__arrow-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    font-size: 55px;
    color: var(--envens-base);
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

    .main-slider-three__arrow-icon:hover {
        color: var(--envens-white);
    }

.main-slider-three #main-slider-pagination {
    top: 58%;
}


/*--------------------------------------------------------------
# Feature One
--------------------------------------------------------------*/
.feature-one {
    position: relative;
    display: block;
    background-color: var(--envens-black);
    counter-reset: count;
    padding: 120px 0 90px;
    z-index: 1;
}

.feature-one__shape-1 {
    position: absolute;
    top: -253px;
    left: -132px;
}

    .feature-one__shape-1 img {
        width: auto;
        opacity: .35;
    }

.feature-one__shape-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    animation-name: border-round;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

    .feature-one__shape-2 img {
        width: auto;
        opacity: .25;
    }

.feature-one .section-title__title {
    color: var(--envens-white);
}

.feature-one__single {
    position: relative;
    display: block;
    margin-left: 52px;
    margin-right: 2px;
    margin-bottom: 30px;
}

    .feature-one__single:hover {
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }

.feature-one__single-shape-1 {
    position: absolute;
    bottom: -2px;
    left: -2px;
    right: -2px;
    height: 382px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    background-position: center bottom;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    transform-origin: bottom;
    transform-style: preserve-3d;
    transform: scaleY(0);
}

.feature-one__single:hover .feature-one__single-shape-1 {
    transform: scaleY(1.0);
}

.feature-one__img-box {
    position: relative;
    display: block;
}

.feature-one__img {
    position: relative;
    display: block;
}

.feature-one__single:hover .feature-one__img {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.feature-one__img img {
    width: 100%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.feature-one__single:hover .feature-one__img img {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.feature-one__img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(13, 2, 32);
    background: linear-gradient(0deg, rgba(13, 2, 32, 1) 0%, rgba(253, 187, 45, 0) 100%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.feature-one__single:hover .feature-one__img::before {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.feature-one__content {
    position: absolute;
    bottom: 35px;
    left: 20px;
    right: 20px;
    text-align: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 2;
}

.feature-one__single:hover .feature-one__content {
    transform: translateY(-70px);
}

.feature-one__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: var(--envens-primary);
    margin: 0 auto;
    border-radius: 10px;
    z-index: 1;
}

    .feature-one__icon::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 10px;
        background-image: -moz-linear-gradient(180deg, rgba(252, 9, 124, 0.70196) 0%, rgba(85, 75, 185, 0.9) 67%, rgb(85, 75, 185) 100%);
        background-image: -webkit-linear-gradient(180deg, rgba(252, 9, 124, 0.70196) 0%, rgba(85, 75, 185, 0.9) 67%, rgb(85, 75, 185) 100%);
        background-image: -ms-linear-gradient(180deg, rgba(252, 9, 124, 0.70196) 0%, rgba(85, 75, 185, 0.9) 67%, rgb(85, 75, 185) 100%);
        transform: scaleY(0.7) rotateY(20deg);
        opacity: 0;
        transition: all 0.4s linear;
        z-index: -1;
    }

.feature-one__single:hover .feature-one__icon::before {
    transform: scaleY(1.0) rotateY(0deg);
    transition: all 0.4s linear;
    opacity: .92;
}

.feature-one__icon > span {
    position: relative;
    display: inline-block;
    font-size: 52px;
    color: var(--envens-white);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.feature-one__single:hover .feature-one__icon > span {
    transform: scale(0.9);
}

.feature-one__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    margin-top: 23px;
    margin-bottom: 4px;
}

.feature-one__title {
    color: var(--envens-white);
}

    .feature-one__title:hover {
        color: var(--envens-base);
    }

.feature-one__text {
    color: #b8b2b5;
}

.feature-one__count {
    position: absolute;
    top: 20px;
    left: -52px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 110px;
    height: 100px;
    background-color: var(--envens-black);
    border-radius: 50%;
    z-index: 2;
}

    .feature-one__count:before {
        position: relative;
        font-size: 80px;
        line-height: 80px;
        font-weight: 600;
        counter-increment: count;
        content: "0"counter(count);
        font-family: var(--envens-font-two);
        background: rgb(85, 75, 185);
        background: linear-gradient( 90deg, rgb(85, 75, 185) 35%, rgb(252, 9, 124) 78%, rgb(255, 183, 77) 100%);
        -webkit-background-clip: text;
        -moz-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

.feature-one__btn-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    background-color: var(--envens-black);
    background-position: center bottom;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    transform-origin: bottom;
    transform-style: preserve-3d;
    transform: scaleY(0);
    z-index: 2;
}

.feature-one__single:hover .feature-one__btn-box {
    transform: scaleY(1.0);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.feature-one__btn-box > a {
    color: #b8b2b5;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    line-height: 22px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 24px 30px 24px;
    gap: 6px;
}

    .feature-one__btn-box > a > span {
        position: relative;
        margin-right: 6px;
    }

/*--------------------------------------------------------------
# About One
--------------------------------------------------------------*/
.about-one {
    position: relative;
    display: block;
    background-color: var(--envens-black);
    padding: 0 0 100px;
    z-index: 2;
}

.about-one__shape-2 {
    position: absolute;
    top: 20px;
    right: -160px;
    z-index: -1;
}

    .about-one__shape-2 img {
        width: auto;
        opacity: .20;
    }

.about-one__left {
    position: relative;
    display: block;
}

    .about-one__left .section-title {
        margin-bottom: 29px;
    }

    .about-one__left .section-title__title {
        color: var(--envens-white);
    }

.about-one__text {
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    color: #b8b2b5;
}

.about-one__points {
    position: relative;
    display: block;
    margin-top: 28px;
    margin-bottom: 55px;
}

    .about-one__points li {
        position: relative;
        display: flex;
        align-items: center;
        gap: 27px;
    }

        .about-one__points li + li {
            margin-top: 12px;
        }

        .about-one__points li .icon {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 19px;
            height: 19px;
            background-color: var(--envens-primary);
            border-radius: 50%;
        }

            .about-one__points li .icon > span {
                position: relative;
                display: inline-block;
                font-size: 13px;
                color: var(--envens-black);
            }

        .about-one__points li p {
            font-size: 16px;
            font-weight: 500;
            line-height: 28px;
            color: var(--envens-primary);
        }

.about-one__timer-box {
    position: relative;
    display: block;
}

    .about-one__timer-box .timer-box {
        position: relative;
        display: block;
    }

    .about-one__timer-box .countdown-timer .default-coundown .box {
        position: relative;
        display: block;
    }

    .about-one__timer-box .countdown-timer li {
        position: relative;
        display: inline-block;
        float: none;
        padding: 0;
        text-align: center;
        margin: 0px 8px 0px;
        clip-path: polygon(50% 0%, 100% 0, 100% 91%, 55% 100%, 44% 100%, 0 91%, 0 0);
    }

        .about-one__timer-box .countdown-timer li:first-child {
            margin-left: 0;
            clip-path: polygon(50% 0%, 100% 0, 100% 91%, 55% 100%, 44% 100%, 0 91%, 0 0);
        }

        .about-one__timer-box .countdown-timer li:nth-child(2) {
            clip-path: polygon(50% 0%, 100% 8%, 100% 60%, 100% 100%, 0 100%, 0% 60%, 0 6%);
        }

        .about-one__timer-box .countdown-timer li:last-child {
            margin-right: 0;
        }

        .about-one__timer-box .countdown-timer li span.days,
        .about-one__timer-box .countdown-timer li span.hours,
        .about-one__timer-box .countdown-timer li span.minutes,
        .about-one__timer-box .countdown-timer li span.seconds {
            position: relative;
            display: block;
            width: 100px;
            height: 90px;
            color: var(--envens-white);
            font-size: 36px;
            line-height: 67px;
            text-align: center;
            border-radius: 0;
            background-color: #171627;
            font-weight: 600;
            font-family: var(--envens-font-two);
        }

        .about-one__timer-box .countdown-timer li:last-child span.seconds {
            color: var(--envens-primary);
            background-color: var(--envens-white);
        }

        .about-one__timer-box .countdown-timer li:nth-child(2) span.hours {
            color: var(--envens-primary);
            background-color: var(--envens-white);
        }

        .about-one__timer-box .countdown-timer li span.timeRef {
            position: absolute;
            bottom: 10px;
            left: 50%;
            color: #b8b2b5;
            font-size: 16px;
            line-height: 26px;
            font-weight: 500;
            display: block;
            text-align: center;
            transform: translateX(-50%);
            font-family: var(--envens-font);
        }

        .about-one__timer-box .countdown-timer li:last-child span.timeRef {
            color: var(--envens-black);
        }

.countdown-timer li:nth-child(2) span.timeRef {
    color: var(--envens-black);
}

.about-one__right {
    position: relative;
    display: block;
    margin-right: 295px;
    margin-top: 83px;
}

.about-one__img-box {
    position: relative;
    display: block;
}

.about-one__img {
    position: relative;
    display: block;
    z-index: 1;
}

    .about-one__img img {
        width: 100%;
        border-radius: 50%;
    }

.about-one__img-2 {
    position: absolute;
    top: -119px;
    right: -275px;
}

    .about-one__img-2 img {
        width: auto;
        border-radius: 50%;
    }

.about-one__img-3 {
    position: absolute;
    bottom: -119px;
    right: -275px;
}

    .about-one__img-3 img {
        width: auto;
        border-radius: 50%;
    }

.about-one__shape-1 {
    position: absolute;
    right: -230px;
    top: -119px;
    z-index: -1;
}

    .about-one__shape-1 img {
        width: auto;
    }

/*--------------------------------------------------------------
# Team One
--------------------------------------------------------------*/
.team-one {
    position: relative;
    display: block;
    background-color: var(--envens-black);
    padding: 120px 0 90px;
    z-index: 1;
}

.team-one__bg-shape {
    position: absolute;
    height: 800px;
    top: 0;
    left: 0;
    right: 0;
    border-top-right-radius: 300px;
    background-image: -moz-linear-gradient(90deg, rgb(85, 75, 185) 0%, rgb(3, 2, 21) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(85, 75, 185) 0%, rgb(3, 2, 21) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(85, 75, 185) 0%, rgb(3, 2, 21) 100%);
    z-index: -1;
}

.team-one__bg-shape-2 {
    position: absolute;
    height: 800px;
    top: 0;
    left: 0;
    right: 0;
    border-top-right-radius: 470px;
    background-image: -moz-linear-gradient(90deg, rgb(252, 9, 124) 0%, rgb(85, 75, 185) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(252, 9, 124) 0%, rgb(85, 75, 185) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(252, 9, 124) 0%, rgb(85, 75, 185) 100%);
    z-index: -1;
}

.team-one__bg-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #171627;
    border-top-right-radius: 580px;
    z-index: -1;
}

.team-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.04;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-top-right-radius: 580px;
}

.team-one .section-title {
    position: relative;
    display: block;
    margin-top: -7px;
    margin-bottom: 79px;
}

.team-one .section-title__title {
    color: var(--envens-white);
}

.team-one__single {
    position: relative;
    display: block;
    margin-left: 24px;
    margin-right: 24px;
    text-align: center;
    margin-bottom: 30px;
}

.team-one__img-box {
    position: relative;
    display: block;
}

.team-one__img {
    position: relative;
    display: block;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

    .team-one__img img {
        width: 100%;
    }

.team-one__single-shape-1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity: 1;
}

    .team-one__single-shape-1 img {
        width: auto;
        opacity: .10;
    }

.team-one__single:hover .team-one__single-shape-1 {
    opacity: 0;
}

.team-one__single-hover-shape-1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity: 0;
}

.team-one__single:hover .team-one__single-hover-shape-1 {
    opacity: 1;
}

.team-one__single-hover-shape-1 img {
    width: auto;
}

.team-one__content {
    position: relative;
    display: inline-block;
    background-color: rgba(var(--envens-white-rgb), 0.04);
    padding: 11px 38px 17px;
    margin-top: 45px;
}

.team-one__sub-title {
    font-weight: 500;
    letter-spacing: 0.075em;
    color: #b8b2b5;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.team-one__single:hover .team-one__sub-title {
    color: var(--envens-base);
}

.team-one__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
}

    .team-one__title > a {
        color: var(--envens-white);
    }

        .team-one__title > a:hover {
            color: var(--envens-base);
        }

.team-one__share-and-social {
    position: absolute;
    top: 52px;
    right: 68px;
}

.team-one__share {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    transform: rotate(45deg);
    background-color: var(--envens-white);
}

    .team-one__share > a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 65px;
        height: 65px;
        transform: rotate(-45deg);
        color: var(--envens-base);
        font-size: 16px;
    }

.team-one__social {
    position: absolute;
    top: 36px;
    left: -148px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: right center;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0) rotate(-45deg);
}

.team-one__share-and-social:hover .team-one__social {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1) rotate(-45deg);
    transform-origin: right center;
}

.team-one__social > a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: rgba(var(--envens-primary-rgb), .70);
    font-size: 16px;
    color: var(--envens-white);
}

    .team-one__social > a:hover {
        background-color: rgba(var(--envens-base-rgb), .70);
    }

    .team-one__social > a > span {
        position: relative;
        transform: rotate(45deg);
    }

/*--------------------------------------------------------------
# Counter One
--------------------------------------------------------------*/
.counter-one {
    position: relative;
    display: block;
    background-color: var(--envens-black);
    z-index: 1;
}

.counter-one__wrap {
    position: relative;
    display: block;
    max-width: 1700px;
    width: 100%;
    background-image: -moz-linear-gradient(180deg, rgb(255, 183, 77) 0%, rgba(252, 9, 124, 0.70) 40%, rgba(85, 75, 185, 0.90) 67%, rgb(85, 75, 185) 100%);
    background-image: -webkit-linear-gradient(180deg, rgb(255, 183, 77) 0%, rgba(252, 9, 124, 0.70) 40%, rgba(85, 75, 185, 0.90) 67%, rgb(85, 75, 185) 100%);
    background-image: -ms-linear-gradient(180deg, rgb(255, 183, 77) 0%, rgba(252, 9, 124, 0.70) 40%, rgba(85, 75, 185, 0.90) 67%, rgb(85, 75, 185) 100%);
    border-radius: 175px;
    margin: 0 auto;
}

.counter-one__inner {
    position: relative;
    display: block;
    padding: 65px 0 65px;
}

.counter-one__count-list {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .counter-one__count-list li {
        position: relative;
        display: block;
    }

.counter-one__single {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 220px;
    height: 220px;
    background-color: rgba(var(--envens-white-rgb), .15);
    border-radius: 50%;
}

.counter-one__single-bg-black {
    background-color: var(--envens-black);
}

.counter-one__count {
    position: relative;
    display: block;
}

    .counter-one__count > h3 {
        font-size: 80px;
        font-weight: 600;
        line-height: 80px;
        color: var(--envens-white);
    }

.counter-one__text {
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    letter-spacing: 0.050em;
    color: var(--envens-white);
    margin-top: 7px;
}

.counter-one__shape-1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

    .counter-one__shape-1 img {
        width: auto;
        opacity: .15;
    }

/*--------------------------------------------------------------
# Gallery One
--------------------------------------------------------------*/
.gallery-one {
    position: relative;
    display: block;
    background-color: var(--envens-black);
    padding: 50px 0 30px;
    z-index: 1;
}

.gallery-one__shape-1 {
    position: absolute;
    bottom: -80px;
    right: -300px;
    z-index: -1;
}

    .gallery-one__shape-1 img {
        width: auto;
        opacity: .20;
    }

.gallery-one__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 52px;
}

    .gallery-one__top .section-title {
        margin-bottom: 0;
    }

    .gallery-one__top .section-title__title {
        color: var(--envens-white);
    }

.gallery-one__single {
    position: relative;
    display: block;
    padding-left: 112px;
    margin-right: -12px;
    margin-bottom: 24px;
}

.gallery-one__single-2 {
    padding-left: 100px;
    margin-right: 0;
}

.gallery-one__single-3 {
    padding-left: 0px;
    padding-right: 100px;
    margin-right: 0;
}

.gallery-one__single-4 {
    margin-left: -12px;
    padding-right: 112px;
    margin-right: 0;
    padding-left: 0;
}

.gallery-one__single-3 .gallery-one__title-box {
    right: -595px;
}

.gallery-one__single-4 .gallery-one__title-box {
    right: -595px;
}

.gallery-one__img-box {
    position: relative;
    display: block;
    border-radius: 50px;
}

.gallery-one__img {
    position: relative;
    display: block;
    clip-path: polygon(0 0, 87% 0, 94% 0, 94% 86%, 100% 100%, 0 100%, 0% 80%, 0% 20%);
    border-radius: 50px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    overflow: hidden;
}

.gallery-one__single-3 .gallery-one__img {
    clip-path: polygon(0 0, 100% 0, 90% 15%, 91% 83%, 91% 100%, 0 100%, 0% 80%, 0% 20%);
}

.gallery-one__single-4 .gallery-one__img {
    clip-path: polygon(0 0, 100% 0, 95% 15%, 96% 83%, 96% 100%, 0 100%, 0% 80%, 0% 20%);
}

.gallery-one__img img {
    width: 100%;
    border-radius: 50px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
}

.gallery-one__single:hover .gallery-one__img img {
    transform: scale(1.05) rotate(0deg);
}

.gallery-one__title-box {
    position: absolute;
    left: -78px;
    top: 136px;
    text-align: center;
    transform: rotate(-90deg);
}

    .gallery-one__title-box > p {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        color: #b8b2b5;
    }

        .gallery-one__title-box > p > span {
            color: var(--envens-primary);
        }

    .gallery-one__title-box > h3 {
        font-size: 24px;
        font-weight: 500;
        line-height: 34px;
    }

        .gallery-one__title-box > h3 > a {
            color: var(--envens-white);
        }

            .gallery-one__title-box > h3 > a:hover {
                color: var(--envens-base);
            }

/*--------------------------------------------------------------
# Category One
--------------------------------------------------------------*/
.category-one {
    position: relative;
    display: block;
    background-color: var(--envens-black);
    counter-reset: count;
    padding: 120px 0 90px;
    z-index: 1;
}

.category-one__bg-shape {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    border-top-right-radius: 300px;
    background-image: -moz-linear-gradient(90deg, rgb(85, 75, 185) 0%, rgb(3, 2, 21) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(85, 75, 185) 0%, rgb(3, 2, 21) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(85, 75, 185) 0%, rgb(3, 2, 21) 100%);
    z-index: -1;
}

.category-one__bg-shape-2 {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    border-top-right-radius: 470px;
    background-image: -moz-linear-gradient(90deg, rgb(255, 140, 0) 0%, rgb(255, 140, 0) 30%, rgb(252, 9, 124) 50%, rgb(85, 75, 185) 85%);
    background-image: -webkit-linear-gradient(90deg, rgb(255, 140, 0) 0%, rgb(255, 140, 0) 30%, rgb(252, 9, 124) 50%, rgb(85, 75, 185) 85%);
    background-image: -ms-linear-gradient(90deg, rgb(255, 140, 0) 0%, rgb(255, 140, 0) 30%, rgb(252, 9, 124) 50%, rgb(85, 75, 185) 85%);
    z-index: -1;
}

.category-one__bg-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #171627;
    border-top-right-radius: 580px;
    z-index: -1;
}

.category-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.04;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-top-right-radius: 580px;
}

.category-one .section-title__title {
    color: var(--envens-white);
}

.category-one .row {
    --bs-gutter-x: 75px;
}

.category-one__single-inner {
    position: relative;
    display: block;
    z-index: 1;
}

.category-one__single {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    width: 390px;
    height: 390px;
    background-color: #363442;
    border-radius: 50%;
    margin-bottom: 30px;
    z-index: 2;
}

.category-one__shape-1 {
    position: absolute;
    left: -155px;
    bottom: 0;
    z-index: -1;
}

    .category-one__shape-1 img {
        width: auto;
    }

.category-one__shape-2 {
    position: absolute;
    right: -165px;
    top: 0;
    z-index: -1;
}

    .category-one__shape-2 img {
        width: auto;
    }

.category-one__single::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--envens-white);
    border-radius: 50%;
    transform: scaleX(0.7) rotateX(30deg);
    opacity: 0;
    transition: all 0.4s linear;
    z-index: 1;
}

.category-one__single:hover::before {
    transform: scaleX(1.0) rotateX(0deg);
    transition: all 0.4s linear;
    opacity: 1;
}

.category-one__single::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background-image: -moz-linear-gradient(90deg, rgb(255, 140, 0) 0%, rgb(252, 9, 124) 50%, rgb(85, 75, 185) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(255, 140, 0) 0%, rgb(252, 9, 124) 50%, rgb(85, 75, 185) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(255, 140, 0) 0%, rgb(252, 9, 124) 50%, rgb(85, 75, 185) 100%);
    transform: scaleX(0.7) rotateX(30deg);
    opacity: 0;
    transition: all 0.4s linear;
    z-index: -1;
}

.category-one__single:hover::after {
    transform: scaleX(1.0) rotateX(0deg);
    transition: all 0.4s linear;
    opacity: 1;
}

.category-one__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 95px;
    background-color: var(--envens-primary);
    border-radius: 10px;
    z-index: 2;
}

    .category-one__icon::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 10px;
        background-image: -moz-linear-gradient(90deg, rgb(252, 9, 124) 0%, rgb(85, 75, 185) 100%);
        background-image: -webkit-linear-gradient(90deg, rgb(252, 9, 124) 0%, rgb(85, 75, 185) 100%);
        background-image: -ms-linear-gradient(90deg, rgb(252, 9, 124) 0%, rgb(85, 75, 185) 100%);
        background-position: center top;
        transition-delay: .1s;
        transition-timing-function: ease-in-out;
        transition-duration: .5s;
        transition-property: all;
        transform-origin: top;
        transform-style: preserve-3d;
        transform: scaleY(0);
        z-index: -1;
    }


.category-one__single:hover .category-one__icon::before {
    transform: scaleY(1.0);
}

.category-one__icon span {
    position: relative;
    display: inline-block;
    font-size: 65px;
    color: var(--envens-white);
}

.category-one__text-box {
    position: relative;
    display: block;
    z-index: 2;
}

.category-one__text {
    color: #b8b2b5;
    margin-top: 28px;
    margin-bottom: 19px;
    webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.category-one__single:hover .category-one__text {
    color: #878c8f;
}

.category-one__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
}

    .category-one__title > a {
        color: var(--envens-white);
    }

.category-one__single:hover .category-one__title > a {
    color: var(--envens-black);
}

.category-one__count {
    position: absolute;
    right: 34px;
    top: 62px;
    opacity: 0;
    webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 2;
}

.category-one__single:hover .category-one__count {
    opacity: 1;
}

.category-one__count:before {
    position: relative;
    font-size: 72px;
    line-height: 72px;
    font-weight: 600;
    color: rgba(var(--envens-black-rgb), .10);
    counter-increment: count;
    content: "0"counter(count);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    font-family: var(--envens-font-two);
}

/*--------------------------------------------------------------
# Contact One
--------------------------------------------------------------*/
.contact-one {
    position: relative;
    display: block;
    background-color: var(--envens-black);
    padding: 80px 0 0;
    z-index: 2;
}

    .contact-one .section-title__title {
        color: var(--envens-white);
    }

.contact-one__inner {
    position: relative;
    display: block;
    background-image: -moz-linear-gradient(180deg, rgba(252, 9, 124, 0.70196) 0%, rgb(85, 75, 185) 100%);
    background-image: -webkit-linear-gradient(180deg, rgb(255, 183, 77) 0%, rgba(252, 9, 124, 0.70) 40%, rgba(85, 75, 185, 0.90) 67%, rgb(85, 75, 185) 100%);
    background-image: -ms-linear-gradient(180deg, rgba(252, 9, 124, 0.70196) 0%, rgb(85, 75, 185) 100%);
    padding: 60px 130px 60px;
    border-radius: 135px;
}

.contact-one__form {
    position: relative;
    display: block;
}

    .contact-one__form .row {
        --bs-gutter-x: 20px;
    }

.contact-one__input-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

    .contact-one__input-box input[type="text"],
    .contact-one__input-box input[type="email"] {
        height: 60px;
        width: 100%;
        border: none;
        background-color: var(--envens-white);
        padding-left: 25px;
        padding-right: 55px;
        outline: none;
        font-size: 16px;
        color: var(--envens-gray);
        display: block;
        font-weight: 500;
        border-radius: 10px;
    }

.contact-one__input-box-icon {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}

    .contact-one__input-box-icon span {
        position: relative;
        display: inline-block;
        font-size: 16px;
        color: var(--envens-black);
    }

.contact-one__input-box .select-box {
    width: 100%;
}

.contact-one__input-box .nice-select {
    height: 60px;
    width: 100%;
    border: none;
    background-color: var(--envens-white);
    padding-left: 25px;
    padding-right: 30px;
    outline: none;
    font-size: 16px;
    color: var(--envens-gray);
    display: block;
    font-weight: 500;
    border-radius: 10px;
    line-height: 60px;
    float: none;
}

    .contact-one__input-box .nice-select:after {
        position: absolute;
        top: 25px;
        right: 30px;
        width: 8px;
        height: 8px;
        border-bottom: 2px solid var(--envens-black);
        border-right: 2px solid var(--envens-black);
        margin-top: 0px;
        z-index: 10;
    }

.contact-one__btn-box {
    position: relative;
    display: block;
    text-align: center;
}

.contact-one__btn {
    border: none;
    padding: 16px 41px 16px;
    background-color: var(--envens-black);
}

/*--------------------------------------------------------------
# Event One
--------------------------------------------------------------*/
.event-one {
    position: relative;
    display: block;
    background-color: var(--envens-black);
    padding: 120px 0 120px;
    z-index: 3;
}

.event-one__shape-1 {
    position: absolute;
    bottom: -175px;
    left: -120px;
    opacity: .35;
    z-index: -1;
}

    .event-one__shape-1 img {
        width: auto;
        opacity: .35;
    }

.event-one__inner {
    position: relative;
    display: block;
}

    .event-one__inner .section-title {
        position: absolute;
        top: 0;
        left: 0;
        margin-bottom: 0;
        z-index: 20;
    }

    .event-one__inner .section-title__title {
        color: var(--envens-white);
    }

.event-one__main-tab-box {
    position: relative;
    display: block;
}

.event-one__main-tab-box {
    position: relative;
    display: block;
}


    .event-one__main-tab-box .tab-buttons {
        position: relative;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        max-width: 750px;
        width: 100%;
        margin-left: auto;
        margin-bottom: 120px;
    }

        .event-one__main-tab-box .tab-buttons .tab-btn {
            position: relative;
            cursor: pointer;
            flex: 0 0 33.333333%;
            max-width: 33.333333%;
            width: 100%;
            background-color: var(--envens-white);
            text-align: center;
            border-top-left-radius: 55px;
            border-top-right-radius: 55px;
            padding: 14px 0 19px;
            z-index: 1;
        }

            .event-one__main-tab-box .tab-buttons .tab-btn:first-child {
                border-bottom-left-radius: 55px;
            }

            .event-one__main-tab-box .tab-buttons .tab-btn:last-child {
                border-bottom-right-radius: 55px;
            }

            .event-one__main-tab-box .tab-buttons .tab-btn:first-child::before {
                border-bottom-left-radius: 55px;
            }

            .event-one__main-tab-box .tab-buttons .tab-btn:last-child::before {
                border-bottom-right-radius: 55px;
            }

            .event-one__main-tab-box .tab-buttons .tab-btn:before {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                height: 0%;
                content: "";
                background-color: var(--envens-primary);
                border-top-left-radius: 55px;
                border-top-right-radius: 55px;
                transition: all 0.3s ease;
                z-index: -1;
            }

            .event-one__main-tab-box .tab-buttons .tab-btn.active-btn:before {
                height: 100%;
            }

            .event-one__main-tab-box .tab-buttons .tab-btn::after {
                content: "";
                position: absolute;
                bottom: -18px;
                left: 50%;
                transform: translateX(-50%);
                border-top: 18px solid var(--envens-primary);
                border-left: 12px solid transparent;
                border-right: 12px solid transparent;
                opacity: 0;
                transition: all 0.3s ease;
            }

            .event-one__main-tab-box .tab-buttons .tab-btn.active-btn::after {
                opacity: 1;
            }

            .event-one__main-tab-box .tab-buttons .tab-btn p {
                position: relative;
                display: block;
                transition: all 200ms linear;
                transition-delay: 0.1s;
                font-size: 16px;
                line-height: 16px;
                color: var(--envens-base);
                font-weight: 500;
                transition: all 0.3s ease;
                z-index: 1;
            }

            .event-one__main-tab-box .tab-buttons .tab-btn.active-btn p {
                color: var(--envens-white);
            }

            .event-one__main-tab-box .tab-buttons .tab-btn h3 {
                font-size: 45px;
                font-weight: 600;
                line-height: 45px;
                margin-bottom: 16px;
                transition: all 0.3s ease;
            }

                .event-one__main-tab-box .tab-buttons .tab-btn h3 span {
                    font-size: 20px;
                    line-height: 20px;
                    position: relative;
                    top: -18px;
                }

            .event-one__main-tab-box .tab-buttons .tab-btn.active-btn h3 {
                color: var(--envens-white);
            }

    .event-one__main-tab-box .tabs-content {
        position: relative;
        display: block;
        z-index: 1;
    }

        .event-one__main-tab-box .tabs-content .tab {
            position: relative;
            display: none;
            -webkit-transform: translateY(35px);
            -ms-transform: translateY(35px);
            transform: translateY(35px);
            -webkit-transition: all 600ms ease;
            -moz-transition: all 600ms ease;
            -ms-transition: all 600ms ease;
            -o-transition: all 600ms ease;
            transition: all 600ms ease;
            z-index: 10;
        }

            .event-one__main-tab-box .tabs-content .tab.active-tab {
                display: block;
                margin-top: 0px;
                -webkit-transform: translateY(0px);
                -ms-transform: translateY(0px);
                transform: translateY(0px);
            }

.event-one__main-content-box {
    position: relative;
    display: block;
    z-index: 1;
}

    .event-one__main-content-box:before {
        content: "";
        position: absolute;
        top: -70px;
        bottom: -70px;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        background-color: rgba(var(--envens-white-rgb), .25);
        z-index: -1;
    }

.event-one__circle-one {
    position: absolute;
    top: 227px;
    left: 50%;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background: rgb(252, 9, 124);
    background: linear-gradient(90deg, rgba(252, 9, 124, 1) 18%, rgba(85, 75, 185, 1) 87%);
    transform: translateX(-50%);
    z-index: 1;
}

    .event-one__circle-one:before {
        position: absolute;
        content: "";
        top: 8px;
        left: 8px;
        right: 8px;
        bottom: 8px;
        border-radius: 50%;
        background-color: var(--envens-white);
        z-index: 1;
    }

.event-one__circle-two {
    position: absolute;
    bottom: 227px;
    left: 50%;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background: rgb(252, 9, 124);
    background: linear-gradient(90deg, rgba(252, 9, 124, 1) 18%, rgba(85, 75, 185, 1) 87%);
    transform: translateX(-50%);
    z-index: 1;
}

    .event-one__circle-two:before {
        position: absolute;
        content: "";
        top: 8px;
        left: 8px;
        right: 8px;
        bottom: 8px;
        border-radius: 50%;
        background-color: var(--envens-white);
        z-index: 1;
    }


.event-one__main-content-left {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #171627;
    margin-right: -40px;
    padding: 10px 10px;
    padding-right: 45px;
    border-radius: 90px;
}

.event-one__main-content-img-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.event-one__main-content-img {
    position: relative;
    display: block;
    width: 240px;
}

    .event-one__main-content-img img {
        width: 100%;
        border-radius: 80px;
    }

.event-one__main-content-img-title {
    font-size: 24px;
    font-weight: 500;
    color: var(--envens-white);
    line-height: 34px;
}

    .event-one__main-content-img-title a {
        color: var(--envens-white);
    }

        .event-one__main-content-img-title a:hover {
            color: var(--envens-base);
        }

.event-one__main-content-address-box {
    position: relative;
    display: block;
}

    .event-one__main-content-address-box li {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }

        .event-one__main-content-address-box li + li {
            margin-top: 13px;
        }

        .event-one__main-content-address-box li .icon {
            position: relative;
            display: block;
            top: 2px;
        }

            .event-one__main-content-address-box li .icon span {
                position: relative;
                display: inline-block;
                font-size: 16px;
                color: var(--envens-primary);
            }

        .event-one__main-content-address-box li .text {
            position: relative;
            display: block;
        }

            .event-one__main-content-address-box li .text p {
                color: #b8b2b5;
            }

.event-one__main-content-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-left: 76px;
    margin-top: 5px;
    z-index: 1;
}

.event-one__main-content-right-shape-1 {
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
}

    .event-one__main-content-right-shape-1 img {
        width: auto;
    }

.event-one__main-content-img-list-box {
    position: relative;
    display: flex;
    align-items: center;
}

    .event-one__main-content-img-list-box li {
        position: relative;
        display: block;
    }

        .event-one__main-content-img-list-box li + li {
            margin-left: -30px;
        }

        .event-one__main-content-img-list-box li:nth-child(1) {
            z-index: 6;
        }

        .event-one__main-content-img-list-box li:nth-child(2) {
            z-index: 5;
        }

.event-one__main-content-img-list {
    position: relative;
    display: block;
    clip-path: polygon(50% 0, 50% 0, 100% 48%, 53% 100%, 53% 100%, 0 49%);
    z-index: 1;
}

    .event-one__main-content-img-list img {
        width: auto;
    }

.event-one__main-content-btn-box {
    position: relative;
    display: block;
}

.event-one__main-content-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 170px;
    width: 170px;
    background-color: #171627;
    border-radius: 50%;
    color: var(--envens-white);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.1em;
    font-size: 12px;
}

    .event-one__main-content-btn:before {
        content: "";
        position: absolute;
        bottom: 77px;
        left: 50px;
        right: 34px;
        height: 1px;
        background-color: var(--envens-white);
    }

    .event-one__main-content-btn span {
        position: relative;
        display: block;
        padding-right: 5px;
    }

    .event-one__main-content-btn:hover {
        color: var(--envens-base);
    }

.event-one__main-content-single--two {
    margin: 120px 0 120px;
}

    .event-one__main-content-single--two .event-one__main-content-left {
        margin-right: 0;
        margin-left: -40px;
        padding: 10px 45px;
        padding-right: 10px;
    }

.event-one__main-content-title-and-address-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.event-one__main-content-single--two .event-one__main-content-right {
    margin-left: 0;
    margin-right: 76px;
}

.event-one__main-content-single--two .event-one__main-content-right-shape-1 {
    left: auto;
    right: -50px;
}

/*--------------------------------------------------------------
# Sliding Text One
--------------------------------------------------------------*/
.sliding-text-one {
    position: relative;
    display: block;
    padding: 53px 0 56px;
    background-color: var(--envens-black);
    z-index: 1;
}

.sliding-text-one__wrap {
    position: relative;
    display: block;
}

.sliding-text__list {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-wrap: nowrap;
    width: fit-content;
}

    .sliding-text__list li {
        osition: relative;
        display: block;
        float: left;
        margin-right: 30px;
    }

.sliding-text__title {
    position: relative;
    color: transparent;
    -webkit-text-stroke: 1px #4f4e5c;
    font-size: 110px;
    line-height: 110px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    font-family: var(--envens-font-two);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.sliding-text__list li .sliding-text__title:hover {
    color: transparent;
    -webkit-text-stroke: 1px transparent;
}

.sliding-text__title:before {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    color: var(--envens-base);
    white-space: nowrap;
    content: attr(data-hover);
    transition: all 0.5s cubic-bezier(0.17, 0.67, 0.32, 0.87);
}

.sliding-text__list li:hover .sliding-text__title:before {
    width: 100%;
    background: rgb(252, 9, 124);
    background: linear-gradient(90deg, rgba(252, 9, 124, 1) 18%, rgba(85, 75, 185, 1) 87%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.venue-one {
    position: relative;
    display: block;
    background-color: var(--envens-black);
    padding: 120px 0 120px;
    overflow: hidden;
    z-index: 1;
}

.venue-one__shape {
    position: absolute;
    left: 0px;
    right: 0;
    bottom: 0;
    height: 800px;
    background-image: -moz-linear-gradient(180deg, rgb(85, 75, 185) 68%, rgb(3, 2, 21) 100%);
    background-image: -webkit-linear-gradient(180deg, rgb(85, 75, 185) 68%, rgb(3, 2, 21) 100%);
    background-image: -ms-linear-gradient(180deg, rgb(85, 75, 185) 68%, rgb(3, 2, 21) 100%);
    border-bottom-left-radius: 300px;
    z-index: -1;
}

.venue-one__shape-2 {
    position: absolute;
    left: 0px;
    right: 0;
    bottom: 0;
    height: 800px;
    background-image: -moz-linear-gradient(-65deg, rgb(85, 75, 185) 0%, rgb(252, 9, 124) 100%);
    background-image: -webkit-linear-gradient(-65deg, rgb(85, 75, 185) 0%, rgb(252, 9, 124) 100%);
    background-image: -ms-linear-gradient(-65deg, rgb(85, 75, 185) 0%, rgb(252, 9, 124) 100%);
    border-bottom-left-radius: 470px;
    z-index: -1;
}

.venue-one__shape-3 {
    position: absolute;
    top: 0px;
    right: 0;
    opacity: .5;
}

    .venue-one__shape-3 img {
        width: auto;
    }

.venue-one__bg-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #171627;
    border-bottom-left-radius: 580px;
    z-index: -1;
}

.venue-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.04;
    border-bottom-left-radius: 580px;
}

.venue-one .section-title__title {
    color: var(--envens-white);
}

.venue-one__left {
    position: relative;
    display: block;
    background-color: rgba(var(--envens-white-rgb), .05);
    border-radius: 90px;
    margin-right: 48px;
    padding: 50px 30px 30px;
    z-index: 1;
}

    .venue-one__left:before {
        content: "";
        position: absolute;
        top: 50%;
        right: -30px;
        border-top: 20px solid transparent;
        border-bottom: 20px solid transparent;
        border-left: 30px solid #232232;
        transform: translateY(-50%);
    }

.venue-one__address {
    position: relative;
    display: block;
    margin-left: 20px;
}

    .venue-one__address li {
        position: relative;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

        .venue-one__address li:before {
            content: "";
            position: absolute;
            bottom: -32px;
            left: -20px;
            right: 70px;
            height: 1px;
            background-color: rgba(var(--envens-white-rgb), .10);
        }

        .venue-one__address li:last-child:before {
            display: none;
        }

        .venue-one__address li + li {
            margin-top: 64px;
        }

        .venue-one__address li .icon {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 75px;
            width: 75px;
            border-radius: 50%;
            z-index: 1;
        }

.venue-one__address-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.venue-one__address li .icon span {
    position: relative;
    display: inline-block;
    font-size: 40px;
    color: var(--envens-white);
}

.venue-one__address li .content {
    position: relative;
    display: block;
}

    .venue-one__address li .content h4 {
        font-size: 24px;
        font-weight: 500;
        line-height: 24px;
        color: var(--envens-white);
        position: relative;
        display: inline-flex;
        align-items: center;
        padding: 3px 10px;
        background: rgb(252, 9, 124);
        background: linear-gradient(90deg, rgba(252, 9, 124, 0.9976365546218487) 26%, rgba(85, 75, 185, 0) 81%);
        border-radius: 15px;
        margin-bottom: 16px;
    }

.venue-one__address li:last-child .content h4 {
    background: rgb(85, 75, 185);
    background: linear-gradient(90deg, rgba(85, 75, 185, 1) 26%, rgba(85, 75, 185, 0) 81%);
}

.venue-one__address li .content p {
    color: #b8b2b5;
    letter-spacing: 0.05em;
}

.venue-one__address-two {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
    background-color: var(--envens-primary);
    padding: 48px 45px 41px;
    border-radius: 85px;
    border-top-left-radius: 0;
    margin-top: 41px;
}

    .venue-one__address-two li {
        position: relative;
        display: block;
    }

        .venue-one__address-two li h4 {
            position: relative;
            display: inline-block;
            font-size: 24px;
            font-weight: 500;
            color: var(--envens-white);
            line-height: 24px;
            margin-bottom: 28px;
        }

            .venue-one__address-two li h4:before {
                content: "";
                position: absolute;
                bottom: -16px;
                left: 0;
                height: 4px;
                width: 40px;
                background-color: rgba(var(--envens-white-rgb), .25);
                border-radius: 2px;
            }

        .venue-one__address-two li p {
            font-weight: 500;
            color: #b8b2b5;
            letter-spacing: 0.050em;
        }

            .venue-one__address-two li p + p {
                margin-top: 4px;
            }

            .venue-one__address-two li p a {
                color: #b8b2b5;
            }

                .venue-one__address-two li p a:hover {
                    color: var(--envens-white);
                }

.venue-one__right {
    position: relative;
    display: block;
    margin-top: 20px;
    margin-left: -44px;
}

.venue-one__img {
    position: relative;
    display: block;
}

    .venue-one__img img {
        width: 100%;
    }

/*--------------------------------------------------------------
# Blog One
--------------------------------------------------------------*/
.blog-one {
    position: relative;
    display: block;
    background-color: var(--envens-black);
    padding: 120px 0 76px;
    z-index: 1;
}

.blog-one__left {
    position: relative;
    display: block;
    margin-right: -24px;
}

    .blog-one__left .section-title {
        margin-bottom: 42px;
    }

    .blog-one__left .section-title__title {
        color: var(--envens-white);
    }

.blog-one__text-1 {
    font-weight: 500;
    color: #b8b2b5;
    margin-bottom: 41px;
}

.blog-one__right {
    position: relative;
    display: block;
    margin-top: 20px;
    margin-left: 80px;
}

.blog-one__list {
    position: relative;
    display: block;
}

    .blog-one__list li {
        position: relative;
        display: block;
    }

.blog-one__single {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 44px;
    z-index: 1;
}

    .blog-one__single:before {
        content: "";
        position: absolute;
        top: -20px;
        left: 0;
        right: 0;
        bottom: 20px;
        border: 2px solid rgba(var(--envens-white-rgb), .15);
        border-radius: 8px;
        z-index: -1;
    }

    .blog-one__single:after {
        content: "";
        position: absolute;
        top: -20px;
        left: 0;
        right: 0;
        bottom: 20px;
        z-index: -1;
        border-radius: 8px;
        border: 2px solid transparent;
        background: linear-gradient(-45deg, #b2075d, #3d3588) border-box;
        -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        -webkit-transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        -ms-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        transition: all 500ms ease;
        opacity: 0;
        visibility: hidden;
    }

.blog-one__list li:hover .blog-one__single:after {
    opacity: 1;
    visibility: visible;
}

.blog-one__img {
    position: relative;
    display: block;
    max-width: 320px;
    width: 100%;
    border-radius: 30px;
    border-top-left-radius: 0;
    overflow: hidden;
    z-index: 1;
}

    .blog-one__img img {
        width: 100%;
        border-radius: 30px;
        border-top-left-radius: 0;
        transform: scale(1.01);
        transition: transform .5s cubic-bezier(.27, .48, .45, .94);
        transform-origin: 70% 80%
    }

.blog-one__list li:hover .blog-one__img img {
    transform: scale(1.036);
    transition-duration: .9s
}

.blog-one__content {
    position: relative;
    display: block;
    margin-top: 18px;
    margin-left: 35px;
}

.blog-one__sub-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    color: #b8b2b5;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 7px 15px;
    background: rgb(85, 75, 185);
    background: linear-gradient(90deg, rgba(85, 75, 185, 1) 26%, rgba(85, 75, 185, 0) 81%);
    border-radius: 15px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.blog-one__list li:hover .blog-one__sub-title {
    color: var(--envens-white);
}

.blog-one__sub-title:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 15px;
    background: rgb(252, 9, 124);
    background: linear-gradient(90deg, rgba(252, 9, 124, 0.9976365546218487) 26%, rgba(85, 75, 185, 0) 81%);
    transform: scaleX(0.7) rotateX(20deg);
    transition: all 0.4s linear;
    opacity: 0;
    z-index: -1;
}

.blog-one__list li:hover .blog-one__sub-title:after {
    transform: scaleX(1.0) rotateX(0deg);
    transition: all 0.4s linear;
    opacity: 1;
}

.blog-one__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    margin-top: 14px;
}

    .blog-one__title a {
        color: var(--envens-white);
    }

        .blog-one__title a:hover {
            color: var(--envens-base);
        }

.blog-one__text {
    color: #b8b2b5;
    font-weight: 500;
    margin-top: 12px;
    opacity: 1;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    transition-delay: 0.7s;
    width: 0%;
    white-space: nowrap;
    overflow: hidden;
}

.blog-one__list li:hover .blog-one__text {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0);
    -moz-transform: perspective(400px) rotateY(0deg) translateY(0);
    -o-transform: perspective(400px) rotateY(0deg) translateY(0);
    transform: perspective(400px) rotateY(0deg) translateY(0);
    -webkit-transition: width 0.7s ease-in-out;
    -moz-transition: width 0.7s ease-in-out;
    -o-transition: width 0.7s ease-in-out;
    transition: width 0.7s ease-in-out;
    width: 100%;
}

.blog-one__date {
    position: absolute;
    top: 75px;
    right: -121px;
    transform: rotate(-90deg);
}

    .blog-one__date p {
        font-size: 16px;
        color: #b8b2b5;
        font-weight: 500;
        line-height: 16px;
    }

        .blog-one__date p span {
            font-size: 30px;
            font-weight: 500;
            color: var(--envens-primary);
            line-height: 30px;
            font-family: var(--envens-font-two);
        }

/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/
.brand-one {
    position: relative;
    display: block;
    background-color: var(--envens-black);
    padding: 60px 0 90px;
    z-index: 3;
}

.brand-one__shape-1 {
    position: absolute;
    top: -535px;
    left: -98px;
    opacity: .35;
    z-index: -1;
}

    .brand-one__shape-1 img {
        width: auto;
        opacity: .35;
    }

.brand-one__list {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

    .brand-one__list li {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 30px;
    }

.brand-one__img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 225px;
    width: 225px;
    border: 2px dashed rgba(var(--envens-white-rgb), .15);
    border-radius: 50%;
    overflow: hidden;
    transition: all 500ms ease;
    z-index: 1;
}

.brand-one__list li:hover .brand-one__img {
    border: 2px solid transparent;
}

.brand-one__img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 50%;
    background-image: -moz-linear-gradient(180deg, rgba(252, 9, 124, 0.70196) 0%, rgba(85, 75, 185, 0.9) 67%, rgb(85, 75, 185) 100%);
    background-image: -webkit-linear-gradient(180deg, rgba(252, 9, 124, 0.70196) 0%, rgba(85, 75, 185, 0.9) 67%, rgb(85, 75, 185) 100%);
    background-image: -ms-linear-gradient(180deg, rgba(252, 9, 124, 0.70196) 0%, rgba(85, 75, 185, 0.9) 67%, rgb(85, 75, 185) 100%);
    background-position: center bottom;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    transform-origin: bottom;
    transform-style: preserve-3d;
    transform: scaleY(0);
    z-index: -1;
}

.brand-one__list li:hover .brand-one__img:before {
    transform: scaleY(1.0);
}

.brand-one__img img {
    width: auto;
    opacity: .70;
    transition: all 500ms ease;
}

.brand-one__list li:hover .brand-one__img img {
    opacity: 1;
}


/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
    position: relative;
    display: block;
    background-color: var(--envens-black);
    padding: 85px 0 40px;
    z-index: 1;
}

.site-footer__shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 632px;
    border-top-left-radius: 300px;
    background-image: -moz-linear-gradient(90deg, rgb(255, 140, 0) 0%, rgb(255, 140, 0) 55%, rgb(252, 9, 124) 70%, rgb(85, 75, 185) 95%);
    background-image: -webkit-linear-gradient(90deg, rgb(255, 140, 0) 0%, rgb(255, 140, 0) 55%, rgb(252, 9, 124) 70%, rgb(85, 75, 185) 95%);
    background-image: -ms-linear-gradient(90deg, rgb(255, 140, 0) 0%, rgb(255, 140, 0) 55%, rgb(252, 9, 124) 70%, rgb(85, 75, 185) 95%);
    z-index: -1;
}

.site-footer__bg-box {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #171627;
    border-top-left-radius: 385px;
    z-index: -1;
}

.site-footer__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-top-left-radius: 385px;
    opacity: 0.04;
}


.site-footer__top {
    position: relative;
    display: block;
    padding: 0px 0px 30px;
}

.site-footer__top-inner {
    position: relative;
    display: block;
}

.footer-widget__contact {
    position: relative;
    display: block;
}

.footer-widget__title-box {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(var(--envens-white-rgb), .10);
    padding: 9px 20px;
    border-radius: 23px;
    margin-bottom: 37px;
}

.footer-widget__title {
    font-size: 24px;
    color: var(--envens-white);
    font-weight: 500;
    line-height: 24px;
}

.footer-widget__contact-inner {
    position: relative;
    display: block;
    margin-left: 20px;
}

.footer-widget__contact-text {
    color: #b8b2b5;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 20px;
}

.footer-widget__contact-list {
    position: relative;
    display: block;
    margin-bottom: 22px;
}

    .footer-widget__contact-list li {
        position: relative;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }

        .footer-widget__contact-list li + li {
            margin-top: 4px;
        }

        .footer-widget__contact-list li .icon {
            position: relative;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }

            .footer-widget__contact-list li .icon span {
                position: relative;
                display: inline-block;
                font-size: 13px;
                color: var(--envens-primary);
            }

        .footer-widget__contact-list li .text {
            position: relative;
            display: block;
        }

            .footer-widget__contact-list li .text p {
                font-size: 16px;
                color: var(--envens-white);
                font-weight: 500;
                line-height: 26px;
            }

                .footer-widget__contact-list li .text p a {
                    color: var(--envens-white);
                }

                    .footer-widget__contact-list li .text p a:hover {
                        color: var(--envens-primary);
                    }

.footer-widget__link {
    position: relative;
    display: block;
}

.footer-widget__link-list {
    position: relative;
    display: block;
    margin-left: 20px;
}

    .footer-widget__link-list li {
        position: relative;
        display: block;
        font-size: 16px;
        color: #b8b2b5;
    }

        .footer-widget__link-list li + li {
            margin-top: 4px;
        }

        .footer-widget__link-list li a {
            position: relative;
            display: inline-block;
            font-size: 16px;
            color: #b8b2b5;
        }

            .footer-widget__link-list li a:hover {
                color: var(--envens-white);
            }

.footer-widget__events {
    position: relative;
    display: block;
    margin-left: 31px;
}

.footer-widget__gallery {
    position: relative;
    display: block;
    margin-right: -408px;
}

.footer-widget__gallery-list {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 8px;
}

    .footer-widget__gallery-list li {
        position: relative;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
        width: 100%;
    }

.footer-widget__gallery-img {
    position: relative;
    display: block;
    overflow: hidden;
    transition: all 700ms ease;
    z-index: 1;
}

.footer-widget__gallery-list li:hover .footer-widget__gallery-img {
    border-radius: 87.5px;
}

.footer-widget__gallery-img:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 87.5px;
    content: "";
    background-image: -moz-linear-gradient(180deg, rgba(252, 9, 124, 0.70196) 0%, rgb(85, 75, 185) 100%);
    background-image: -webkit-linear-gradient(180deg, rgba(252, 9, 124, 0.70196) 0%, rgb(85, 75, 185) 100%);
    background-image: -ms-linear-gradient(180deg, rgba(252, 9, 124, 0.70196) 0%, rgb(85, 75, 185) 100%);
    transition: all 700ms ease;
    transform: translateY(-100%);
    z-index: 1;
}

.footer-widget__gallery-list li:hover .footer-widget__gallery-img:before {
    transform: translateY(0%);
}

.footer-widget__gallery-img img {
    width: 100%;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}

.footer-widget__gallery-list li:hover .footer-widget__gallery-img img {
    transform: scale(1.1) rotate(2deg);
    border-radius: 87.5px;
}

.footer-widget__gallery-img a {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--envens-white);
    border: 2px dashed var(--envens-white);
    padding: 7px 20px;
    border-radius: 23px;
    font-family: var(--envens-font-two);
    transform: translateY(-30%) translateX(-50%);
    opacity: 0;
    transition: all 700ms ease;
    z-index: 2;
}

.footer-widget__gallery-list li:hover .footer-widget__gallery-img a {
    transform: translateY(-50%) translateX(-50%);
    opacity: 1;
    transition-delay: 0.3s;
}

.footer-widget__gallery-list li .footer-widget__gallery-img a:hover {
    color: var(--envens-white);
}

.site-footer__bottom {
    position: relative;
    display: block;
}

.site-footer__bottom-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: rgba(var(--envens-white-rgb), .04);
    padding: 18px 55px;
    border-radius: 8px;
}

.site-footer__bottom-logo-and-social {
    position: relative;
    display: flex;
    align-items: center;
}

.site-footer__bottom-logo {
    position: relative;
    display: block;
}

.site-footer__social {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    margin-left: 120px;
}

    .site-footer__social:before {
        content: "";
        position: absolute;
        top: -7px;
        bottom: -7px;
        left: -60px;
        width: 1px;
        background-color: rgba(var(--envens-white-rgb), .20);
    }

    .site-footer__social a {
        position: relative;
        height: 46px;
        width: 46px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
        color: var(--envens-white);
        background-color: rgba(var(--envens-white-rgb), .15);
        font-size: 18px;
        border-radius: 8px;
        overflow: hidden;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        z-index: 1;
    }

        .site-footer__social a:after {
            position: absolute;
            content: "";
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            background-image: -moz-linear-gradient(-63deg, rgba(252, 9, 124, 0.70196) 0%, rgba(85, 75, 185, 0.9) 67%, rgb(85, 75, 185) 100%);
            background-image: -webkit-linear-gradient(-63deg, rgba(252, 9, 124, 0.70196) 0%, rgba(85, 75, 185, 0.9) 67%, rgb(85, 75, 185) 100%);
            background-image: -ms-linear-gradient(-63deg, rgba(252, 9, 124, 0.70196) 0%, rgba(85, 75, 185, 0.9) 67%, rgb(85, 75, 185) 100%);
            -webkit-transition-delay: .1s;
            transition-delay: .1s;
            -webkit-transition-timing-function: ease-in-out;
            transition-timing-function: ease-in-out;
            -webkit-transition-duration: .4s;
            transition-duration: .4s;
            -webkit-transition-property: all;
            transition-property: all;
            opacity: 1;
            -webkit-transform-origin: top;
            transform-origin: top;
            -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
            -webkit-transform: scaleY(0);
            transform: scaleY(0);
            z-index: -1;
        }

        .site-footer__social a:hover:after {
            opacity: 1;
            -webkit-transform: scaleY(1);
            transform: scaleY(1);
        }

.site-footer__bottom-text {
    font-size: 16px;
    color: #777777;
}

.site-footer__bottom-text {
    font-size: 16px;
    color: #b8b2b5;
    font-weight: 500;
    letter-spacing: 0.01em;
}

    .site-footer__bottom-text a {
        color: #b8b2b5;
    }

        .site-footer__bottom-text a:hover {
            color: var(--envens-white);
        }


/*--------------------------------------------------------------
# About Two
--------------------------------------------------------------*/
.about-two {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.about-two__left {
    position: relative;
    display: block;
    margin-right: 48px;
}

.about-two__img {
    position: relative;
    display: block;
    max-width: 601px;
    width: 100%;
    height: 624px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

    .about-two__img:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-image: url(../images/resources/about-two-img-1.jpg);
        background-size: 100%;
        background-position: center;
        mix-blend-mode: screen;
    }

.about-two__right {
    position: relative;
    display: block;
    margin-top: 18px;
}

    .about-two__right .section-title {
        margin-bottom: 30px;
    }

.about-two__solution-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 22px;
    margin-bottom: 25px;
}

.about-two__solution-single {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #e4e4ea;
    border-radius: 10px;
    max-width: 250px;
    width: 100%;
    padding: 18px 25px 13px;
}

    .about-two__solution-single .icon {
        position: relative;
        display: inline-block;
    }

        .about-two__solution-single .icon > span {
            position: relative;
            display: inline-block;
            font-size: 20px;
            color: var(--envens-base);
        }

.about-two__solition-text {
    font-weight: 600;
    color: var(--envens-black);
    line-height: 26px;
}

.about-two__points {
    position: relative;
    display: block;
}

    .about-two__points li {
        position: relative;
        display: flex;
        align-items: center;
        gap: 27px;
    }

        .about-two__points li + li {
            margin-top: 12px;
        }

        .about-two__points li .icon {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: 19px;
            width: 100%;
            height: 19px;
            background-color: var(--envens-base);
            border-radius: 50%;
        }

            .about-two__points li .icon span {
                position: relative;
                display: inline-block;
                font-size: 12px;
                color: var(--envens-white);
            }

        .about-two__points li > p {
            font-weight: 500;
            color: var(--envens-black);
        }

.about-two__btn-and-client-info {
    position: relative;
    display: flex;
    align-items: center;
    gap: 55px;
    margin-top: 45px;
}

.about-two__btn-box {
    position: relative;
    display: block;
}

.about-two__client-info {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-two__client-img {
    position: relative;
    display: block;
    max-width: 64px;
    width: 100%;
}

    .about-two__client-img > img {
        width: 100%;
        border-radius: 50%;
    }

.about-two__btn-and-client-info .content {
    position: relative;
    display: block;
}

    .about-two__btn-and-client-info .content > h4 {
        font-size: 20px;
        font-weight: 400;
        line-height: 20px;
        font-family: var(--envens-font-three);
    }

    .about-two__btn-and-client-info .content > p {
        font-weight: 500;
        padding-left: 85px;
        top: -5px;
        position: relative;
    }

/*--------------------------------------------------------------
# Countdown One
--------------------------------------------------------------*/
.countdown-one {
    position: relative;
    display: block;
    background-color: var(--envens-base);
    padding: 120px 0 70px;
    overflow: hidden;
    z-index: 1;
}

.countdown-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.04;
    mix-blend-mode: luminosity;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.countdown-one .container {
    max-width: 1168px;
}

.countdown-one__shape-1 {
    position: absolute;
    top: 105px;
    left: 55px;
}

    .countdown-one__shape-1 img {
        width: auto;
    }

.countdown-one__shape-2 {
    position: absolute;
    top: 154px;
    left: 185px;
    z-index: -1;
}

    .countdown-one__shape-2 img {
        width: auto;
    }

.countdown-one__shape-3 {
    position: absolute;
    bottom: -30px;
    left: 0px;
    opacity: .60;
    z-index: -1;
}

    .countdown-one__shape-3 img {
        width: auto;
    }

.countdown-one__shape-4 {
    position: absolute;
    bottom: 28px;
    left: 51%;
    opacity: .26;
    transform: translateX(-50%);
    z-index: -1;
}

    .countdown-one__shape-4 img {
        width: auto;
    }

.countdown-one__shape-5 {
    position: absolute;
    top: 138px;
    right: 215px;
    z-index: -1;
}

    .countdown-one__shape-5 img {
        width: auto;
    }

.countdown-one__shape-6 {
    position: absolute;
    top: 210px;
    right: 126px;
    opacity: 0.09;
    animation: topBottom 3s ease-in-out infinite;
    z-index: -1;
}

    .countdown-one__shape-6 img {
        width: auto;
    }

.countdown-one__shape-7 {
    position: absolute;
    bottom: 230px;
    right: 178px;
    animation: leftRight 4s ease-in-out infinite;
    z-index: -1;
}

    .countdown-one__shape-7 img {
        width: auto;
    }

.countdown-one__shape-8 {
    position: absolute;
    bottom: -150px;
    right: -30px;
    opacity: 0.30;
    z-index: -1;
}

    .countdown-one__shape-8 img {
        width: auto;
    }

.countdown-one__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 27px;
}

    .countdown-one__top .section-title {
        margin-bottom: 0;
    }

    .countdown-one__top .section-title__tagline--two {
        color: var(--envens-white);
    }

    .countdown-one__top .section-title__title {
        color: var(--envens-white);
    }

.countdown-one__btn-box {
    position: relative;
    display: block;
}

.countdown-one__btn {
    background-color: rgba(var(--envens-white-rgb), .15);
}

.countdown-one__inner {
    position: relative;
    display: block;
}

.time-countdown-one {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

    .time-countdown-one li {
        position: relative;
        display: flex;
        float: none;
        padding: 0;
        text-align: center;
        width: 210px;
        height: 225px;
        align-items: center;
        justify-content: center;
        margin-bottom: 30px;
    }

        .time-countdown-one li:first-child {
            margin-left: 0;
        }

        .time-countdown-one li:nth-child(2) {
            margin-top: 84px;
        }

        .time-countdown-one li:nth-child(3) {
            margin-top: 12px;
        }

        .time-countdown-one li:last-child {
            margin-top: 84px;
            margin-right: 0;
        }

        .time-countdown-one li::before {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            background-image: url(../images/shapes/countdown-one-single-shape.png);
            background-size: cover;
            background-position: center;
        }

        .time-countdown-one li span.days,
        .time-countdown-one li span.hours,
        .time-countdown-one li span.minutes,
        .time-countdown-one li span.seconds {
            position: relative;
            display: block;
            color: var(--envens-white);
            font-size: 50px;
            line-height: 60px;
            text-align: center;
            font-weight: 500;
            font-family: var(--envens-font-two);
        }

        .time-countdown-one li span.timeRef {
            position: relative;
            color: var(--envens-white);
            font-size: 16px;
            line-height: 16px;
            font-weight: 500;
            display: block;
            text-align: center;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            font-family: var(--envens-font);
        }

/*--------------------------------------------------------------
# Team Two
--------------------------------------------------------------*/
.team-two {
    position: relative;
    display: block;
    background-color: var(--envens-black);
    padding: 120px 0 90px;
    z-index: 1;
}

.team-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .12;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    mix-blend-mode: luminosity;
}

.team-two__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 52px;
}

    .team-two__top .section-title {
        margin-bottom: 0;
    }

    .team-two__top .section-title__tagline {
        color: var(--envens-white);
    }

    .team-two__top .section-title__title {
        color: var(--envens-white);
    }

.team-two__text {
    color: #a2a5ae;
}

.team-two__single {
    position: relative;
    display: block;
    border: 2px dashed var(--envens-base);
    border-radius: 156px;
    padding-bottom: 50px;
    margin-bottom: 30px;
    background-color: rgba(var(--envens-white-rgb), .10);
    overflow: hidden;
    z-index: 1;
}

    .team-two__single::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 156px;
        background-color: var(--envens-white);
        background-position: center bottom;
        transition-delay: .1s;
        transition-timing-function: ease-in-out;
        transition-duration: .5s;
        transition-property: all;
        transform-origin: bottom;
        transform-style: preserve-3d;
        transform: scaleY(0);
        z-index: -1;
    }

    .team-two__single:hover::before {
        transform: scaleY(1.0);
    }

.team-two__img {
    position: relative;
    display: block;
    max-width: 283px;
    width: 100%;
    height: 279px;
    margin: 0 auto;
}

    .team-two__img img {
        width: 100%;
    }

.team-two__social {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 17px;
    margin-top: -4px;
}

    .team-two__social > a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: #29bfe8;
        font-size: 18px;
        color: var(--envens-white);
        border-radius: 50%;
    }

        .team-two__social > a:hover {
            background-color: var(--envens-black);
            color: var(--envens-white);
        }

a.team-two__social-two {
    background-color: #3c75e8;
    margin-top: 25px;
}

a.team-two__social-three {
    background-color: #ea1b29;
    margin-top: 25px;
}

.team-two__content {
    position: relative;
    display: block;
    text-align: center;
    margin-top: 30px;
}

.team-two__sub-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    color: var(--envens-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.team-two__single:hover .team-two__sub-title {
    color: var(--envens-black);
}

.team-two__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    margin-bottom: 8px;
}

    .team-two__title > a {
        color: var(--envens-white);
    }

.team-two__single:hover .team-two__title > a {
    color: var(--envens-black);
}

.team-two__single-text {
    font-size: 18px;
    line-height: 30px;
}

/*--------------------------------------------------------------
# Event Two
--------------------------------------------------------------*/
.event-two {
    position: relative;
    display: block;
    padding: 0px 0 90px;
    z-index: 1;
}

.event-two__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 52px;
}

    .event-two__top .section-title {
        margin-bottom: 0;
    }

.event-two__btn-box {
    position: relative;
    display: block;
}

.event-two__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.event-two__day-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 47px;
    max-width: 100%;
    width: 100%;
    border-radius: 52px;
    background-image: -webkit-linear-gradient( 180deg, rgba(255, 184, 77, 0.644) 0%, rgba(252, 9, 124, 0.70) 25%, rgba(85, 75, 185, 0.90) 67%, rgb(85, 75, 185) 100% );
    padding-left: 30px;
    margin-bottom: 31px;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s ease;
}

.event-two__info {
    position: relative;
    display: block;
    padding-right: 26px;
}
/* Soft Hover Effect */
.event-two__day-box:hover {
    background-color: rgba(255,255,255,0.08);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: rgba(255,255,255,0.15);
}

    /* Soft text transition */
    .event-two__day-box:hover .event-two__info h3 {
        color: #ffffff;
        font-weight: 700;
    }

    .event-two__day-box:hover .event-two__info p {
        color: rgba(255,255,255,0.75);
    }

.event-two__info h3 {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 12px;
    color: white;
}

.event-two__info p {
    margin: 0;
    line-height: 30px;
    color: white;
}


.event-two__day-box:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0px;
    z-index: -1;
    border: 2px solid transparent;
    background: linear-gradient(-85deg, #e32590, #ffffff, #e32590) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    border-radius: 50px;
}

.event-two__day {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 213px;
    height: 233px;
    z-index: 1;
}

.event-two__day-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: -1;
    padding-left: 0px;
}

    .event-two__day-shape img {
        width: auto;
    }

.event-two__day > h4 {
    font-size: 26px;
    font-weight: 500;
    line-height: 34px;
    color: var(--envens-base);
    text-align: center;
    white-space: nowrap;
}

.event-two__day > p {
    font-weight: 500;
    color: var(--envens-white);
    margin-top: 4px;
}

.event-two__list-box {
    position: relative;
    display: block;
}

.event-two__list {
    position: relative;
    display: block;
}

    .event-two__list li {
        position: relative;
        display: flex;
        align-items: center;
        gap: 30px;
    }

        .event-two__list li + li {
            margin-top: 53px;
        }

.event-two__client-img-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 92px;
    width: 100%;
    height: 92px;
    border: 1px solid #dadcdd;
    border-radius: 50%;
}

.event-two__client-img {
    position: relative;
    display: block;
    width: 75px;
    border-radius: 50%;
}

    .event-two__client-img img {
        width: auto;
        border-radius: 50%;
    }

.event-two__content {
    position: relative;
    display: block;
}

.event-two__meta {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .event-two__meta > p {
        position: relative;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
    }

        .event-two__meta > p > span {
            color: var(--envens-base);
        }

.event-two__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    margin-top: 10px;
    margin-bottom: 18px;
}

    .event-two__title > a {
        color: var(--envens-black);
    }

        .event-two__title > a:hover {
            color: var(--envens-base);
        }

.event-two__btn-box {
    position: relative;
    display: block;
    margin-top: 19px;
}

.event-two__btn-2 {
    color: var(--envens-gray);
    background-color: #f8f7f3;
    padding: 5px 50px 5px;
}

    .event-two__btn-2 > span {
        color: var(--envens-black);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

    .event-two__btn-2:hover > span {
        color: var(--envens-white);
    }

.event-two__single-2 {
    margin-left: 30px;
}

    .event-two__single-2::before {
        content: "";
        position: absolute;
        bottom: 0;
        top: 245px;
        left: -42px;
        width: 2px;
        background-color: #e5e7e8;
    }

/*.event-two__single-2::after {
  content: "";
  position: absolute;
  bottom: 219px;
  width: 14px;
  height: 14px;
  left: -48px;
  background-color: var(--envens-white);
  border: 2px solid var(--envens-base);
  border-radius: 50%;
}*/

/*--------------------------------------------------------------
# Pricing One
--------------------------------------------------------------*/
.pricing-one {
    position: relative;
    display: block;
    background-color: #f6f6f6;
    padding: 175px 0 120px;
    overflow: hidden;
    z-index: 1;
}

.pricing-one__shape-1 {
    position: absolute;
    left: 0;
    bottom: -136px;
    opacity: .30;
    z-index: -1;
}

    .pricing-one__shape-1 img {
        width: auto;
    }

.pricing-one__shape-2 {
    position: absolute;
    top: 20px;
    right: 0;
    opacity: .30;
    z-index: -1;
}

    .pricing-one__shape-2 img {
        width: auto;
    }

.pricing-one__inner {
    position: relative;
    display: block;
}

    .pricing-one__inner .section-title {
        position: absolute;
        top: -56px;
        left: 0;
        margin-bottom: 0;
    }

.pricing-one__main-tab-box {
    position: relative;
    display: block;
}

.pricing-one__main-tab-buttons {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 106px;
}

    .pricing-one__main-tab-buttons .tab-buttons {
        position: relative;
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .pricing-one__main-tab-buttons .tab-buttons .tab-btn {
            position: relative;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            cursor: pointer;
            border: 1px solid #9b9b9b;
            padding: 12px 32px 11px;
            border-radius: 28px;
            overflow: hidden;
            transition: all 0.3s ease;
            z-index: 1;
        }

            .pricing-one__main-tab-buttons .tab-buttons .tab-btn.active-btn {
                border: 1px solid var(--envens-base);
            }

            .pricing-one__main-tab-buttons .tab-buttons .tab-btn:before {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                height: 0%;
                content: "";
                border-radius: 28px;
                background-color: var(--envens-base);
                transition: all 0.3s ease;
                z-index: -1;
            }

            .pricing-one__main-tab-buttons .tab-buttons .tab-btn.active-btn:before {
                height: 100%;
            }

            .pricing-one__main-tab-buttons .tab-buttons .tab-btn p {
                font-size: 24px;
                font-weight: 500;
                line-height: 30px;
                font-family: var(--envens-font-two);
                color: white;
            }

            .pricing-one__main-tab-buttons .tab-buttons .tab-btn.active-btn p {
                color: var(--envens-white);
            }

.pricing-one__main-tab-content .tabs-content {
    position: relative;
    display: block;
}

    .pricing-one__main-tab-content .tabs-content .tab {
        position: relative;
        display: none;
        -webkit-transform: translateY(35px);
        -ms-transform: translateY(35px);
        transform: translateY(35px);
        -webkit-transition: all 600ms ease;
        -moz-transition: all 600ms ease;
        -ms-transition: all 600ms ease;
        -o-transition: all 600ms ease;
        transition: all 600ms ease;
        z-index: 10;
    }

        .pricing-one__main-tab-content .tabs-content .tab.active-tab {
            display: block;
            margin-top: 0px;
            -webkit-transform: translateY(0px);
            -ms-transform: translateY(0px);
            transform: translateY(0px);
        }

.pricing-one__main-tab-img-box {
    position: relative;
    display: block;
    margin-right: -20px;
}

.pricing-one__main-tab-img {
    position: relative;
    display: block;
}

    .pricing-one__main-tab-img img {
        width: 100%;
        border-top-left-radius: 160px;
        border-bottom-left-radius: 160px;
    }

.pricing-one__main-tab-price-and-points {
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 15px;
    z-index: 1;
}

    .pricing-one__main-tab-price-and-points::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border: 1px solid #c4c2d8;
        border-radius: 15px;
        z-index: -1;
    }

    .pricing-one__main-tab-price-and-points::before {
        content: "";
        position: absolute;
        top: -5px;
        left: -5px;
        bottom: 0;
        right: 0;
        z-index: -1;
    }

.pricing-one__main-tab-price-box {
    position: relative;
    display: block;
    max-width: 270px;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.pricing-one__main-tab-price {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 133px;
    height: 133px;
    margin: 0 auto 22px;
    z-index: 1;
}

.pricing-one__main-tab-price-shape-1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: -1;
}

    .pricing-one__main-tab-price-shape-1 img {
        width: auto;
    }

.pricing-one__main-tab-price > h4 {
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 3px;
    color: var(--envens-white);
}

    .pricing-one__main-tab-price > h4 > span {
        font-size: 16px;
        font-family: var(--envens-font);
        letter-spacing: 0.025em;
    }

.pricing-one__main-tab-price > p {
    font-size: 12px;
    font-weight: 500;
    line-height: 12px;
    letter-spacing: 0.025em;
    color: var(--envens-white);
}

.pricing-one__main-tab-price-btn-box {
    position: relative;
    display: block;
}

.pricing-one__main-tab-price-btn {
    background-color: #f8f7f3;
    color: var(--envens-black);
    padding: 16px 42px 16px;
}

.pricing-one__main-tab-points-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 78px;
    padding: 51px 0 52px;
    padding-left: 25px;
    border-left: 1px solid #c4c2d8;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.pricing-one__main-tab-points-list {
    position: relative;
    display: block;
}

.pricing-one__main-tab-points-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    margin-bottom: 17px;
    color: white;
}

.pricing-one__main-tab-points {
    position: relative;
    display: block;
}

.pricing-one__main-tab-points-list-2::before {
    content: "";
    position: absolute;
    top: 13px;
    left: -25px;
    bottom: 8px;
    width: 1px;
    background-color: #c4c2d8;
}

.pricing-one__main-tab-points li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .pricing-one__main-tab-points li + li {
        margin-top: 18px;
    }

    .pricing-one__main-tab-points li .icon {
        position: relative;
        display: inline-block;
    }

        .pricing-one__main-tab-points li .icon > span {
            position: relative;
            display: inline-block;
            font-size: 16px;
            color: var(--envens-gray);
        }

/*--------------------------------------------------------------
# Project Three
--------------------------------------------------------------*/
.project-one {
    position: relative;
    display: block;
    padding: 177px 0 96px;
    background-color: var(--envens-black);
    z-index: 1;
}

.project-one__inner {
    position: relative;
    display: block;
}

.project-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .12;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    mix-blend-mode: luminosity;
    z-index: -1;
}

.project-one .container {
    max-width: 1572px;
}

.project-one .section-title {
    position: absolute;
    top: -58px;
    left: 0;
}

.project-one .section-title__tagline--two {
    color: #8b827d;
}

.project-one .section-title__title {
    color: var(--envens-white);
}

.project-one__filter-box {
    position: relative;
    display: block;
    margin-bottom: 110px;
}

.project-one__filter {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

    .project-one__filter.style1 li {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

        .project-one__filter.style1 li + li {
            margin-left: 20px;
        }

        .project-one__filter.style1 li .filter-text {
            position: relative;
            display: inline-block;
            color: #878f8c;
            font-size: 24px;
            font-weight: 500;
            cursor: pointer;
            border: 1px solid #687476;
            background-color: transparent;
            padding: 11px 35px 9px;
            border-radius: 25px;
            transition: all 0.4s ease;
            font-family: var(--envens-font-two);
            z-index: 1;
        }

        .project-one__filter.style1 li:hover .filter-text,
        .project-one__filter.style1 li.active .filter-text {
            color: var(--envens-white);
            background-color: var(--envens-base);
            border: 1px solid var(--envens-base);
        }

.project-one__single {
    position: relative;
    display: block;
    margin-bottom: 24px;
}

.project-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 35px;
    z-index: 1;
}

    .project-one__img::before {
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--envens-black);
        opacity: 0;
        transition: background-color 0.5s ease;
        transition: all 0.5s ease;
        z-index: 1;
    }

.project-one__single:hover .project-one__img::before {
    opacity: .40;
}

.project-one__img > img {
    width: 100%;
    border-radius: 35px;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
}

.project-one__single:hover .project-one__img img {
    transform: scale(1.05) rotate(0deg);
}

.project-one__content {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 369px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 20px;
    padding-top: 69px;
    padding-right: 27px;
    padding-bottom: 27px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 3;
}

.project-one__single:hover .project-one__content {
    opacity: 1;
    visibility: visible;
    transition-delay: 500ms;
}

.project-one__shpae-1 {
    position: absolute;
    top: 0;
    left: -240px;
    right: 0;
    bottom: -226px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.project-one__title-box {
    position: relative;
    display: block;
}

.project-one__sub-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--envens-gray);
    line-height: 14px;
    margin-top: 13px;
}

.project-one__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
}

    .project-one__title a {
        color: var(--envens-base);
    }

        .project-one__title a:hover {
            color: var(--envens-black);
        }

.project-one__arrow {
    position: relative;
    display: block;
    top: -7px;
}

    .project-one__arrow a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 72px;
        width: 72px;
        font-size: 24px;
        color: var(--envens-white);
        background-color: var(--envens-base);
        border: 1px solid #b7b7b7;
        border-radius: 50%;
        z-index: 1;
    }

        .project-one__arrow a:hover {
            background-color: var(--envens-black);
        }

        .project-one__arrow a::before {
            content: "";
            position: absolute;
            top: -13px;
            left: -13px;
            bottom: -13px;
            right: -13px;
            border: 13px solid var(--envens-white);
            border-radius: 50%;
        }

/*--------------------------------------------------------------
# Join Event
--------------------------------------------------------------*/
.join-event {
    position: relative;
    display: block;
    padding: 120px 0 70px;
}

.join-event__title-and-btn-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 52px;
}

    .join-event__title-and-btn-box .section-title {
        margin-bottom: 0px;
    }

.join-event__top {
    position: relative;
    display: block;
}

.join-event__single {
    position: relative;
    display: block;
    text-align: center;
    border: 1px solid #d6d6d8;
    padding: 40px 30px 34px;
    margin-bottom: 50px;
}

.join-event__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 109px;
    height: 109px;
    margin: 0 auto;
    z-index: 1;
}

    .join-event__icon:after {
        content: "";
        position: absolute;
        top: 0px;
        left: 0;
        right: 0;
        bottom: 0px;
        z-index: -1;
        border: 2px solid transparent;
        background: linear-gradient(-85deg, #80c0fa, #ffffff, #80c0fa) border-box;
        -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
    }

    .join-event__icon span {
        position: relative;
        display: inline-block;
        font-size: 64px;
        color: var(--envens-black);
        transition: all 500ms linear;
        transition-delay: 0.1s;
        transform: scale(1);
    }

.join-event__single:hover .join-event__icon span {
    transform: scale(0.9);
}

.join-event__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    margin-top: 28px;
    margin-bottom: 21px;
}

    .join-event__title > a {
        color: var(--envens-black);
    }

        .join-event__title > a:hover {
            color: var(--envens-base);
        }

.join-event__text {
    line-height: 26px;
}

.join-event__single-2 {
    position: relative;
    display: block;
}

.join-event__img {
    position: relative;
    display: block;
    width: 517px;
    height: 307px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 14px auto 0;
}

    .join-event__img:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-image: url(../images/resources/join-event-img-1.jpg);
        background-size: 100%;
        background-position: center;
        mix-blend-mode: screen;
    }

.join-event__bottom {
    position: relative;
    display: block;
    margin-left: 121px;
    margin-right: 121px;
}

    .join-event__bottom .row {
        --bs-gutter-x: 70px;
    }

.join-event__single.mr-50px {
    margin-top: 50px;
}

/*--------------------------------------------------------------
# Brand Two
--------------------------------------------------------------*/
.brand-two {
    position: relative;
    display: block;
    background-color: var(--envens-black);
    padding: 120px 0 90px;
    z-index: 1;
}

.brand-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .12;
    mix-blend-mode: luminosity;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.brand-two__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 52px;
}

    .brand-two__top .section-title {
        margin-bottom: 0;
    }

    .brand-two__top .section-title__title {
        color: var(--envens-white);
    }

.brand-two__btn::after {
    background-color: var(--envens-white);
}

.brand-two__btn:hover {
    color: var(--envens-base);
}

.brand-two__inner {
    position: relative;
    display: block;
}

.brand-two__list {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

    .brand-two__list li {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 30px;
    }

.brand-two__img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 228px;
    width: 228px;
    border: 3px dashed var(--envens-white);
    border-radius: 50%;
    overflow: hidden;
    transition: all 500ms ease;
    z-index: 1;
}

.brand-two__list li:hover .brand-two__img {
    border: 3px solid transparent;
}

.brand-two__img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 50%;
    background-color: var(--envens-base);
    background-position: center bottom;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    transform-origin: bottom;
    transform-style: preserve-3d;
    transform: scaleY(0);
    z-index: -1;
}

.brand-two__list li:hover .brand-two__img:before {
    transform: scaleY(1.0);
}

.brand-two__img img {
    width: auto;
    opacity: .50;
    transition: all 500ms ease;
}

.brand-two__list li:hover .brand-two__img img {
    opacity: 1;
}

/*--------------------------------------------------------------
# Testimonial One
--------------------------------------------------------------*/
.testimonial-one {
    position: relative;
    display: block;
    background-color: #f6f6f6;
    padding: 120px 0 120px;
    overflow: hidden;
    z-index: 1;
}

.testimonial-one__shape-1 {
    position: absolute;
    top: -250px;
    right: 180px;
    opacity: .20;
    z-index: -1;
}

    .testimonial-one__shape-1 img {
        width: auto;
    }

.testimonial-one__shape-2 {
    position: absolute;
    right: -30px;
    bottom: -52px;
    z-index: -1;
}

    .testimonial-one__shape-2 img {
        width: auto;
    }

.testimonial-one__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 52px;
}

    .testimonial-one__top .section-title {
        margin-bottom: 0px;
    }

.testimonial-one__bottom {
    position: relative;
    display: block;
}

.testimonial-one__single {
    position: relative;
    display: block;
    background-color: var(--envens-white);
    padding: 70px 40px 0;
    z-index: 1;
}

    .testimonial-one__single:after {
        content: "";
        position: absolute;
        top: 7px;
        left: 0;
        right: 0;
        bottom: 0px;
        z-index: -1;
        border: 2px solid transparent;
        background: linear-gradient(-85deg, #80c0fa, #ffffff, #80c0fa) border-box;
        -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
    }

    .testimonial-one__single::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 7px;
        background-color: var(--envens-base);
        background-position: left center;
        transition-delay: .1s;
        transition-timing-function: ease-in-out;
        transition-duration: .5s;
        transition-property: all;
        transform-origin: left;
        transform-style: preserve-3d;
        transform: scaleX(0);
        z-index: -1;
    }


    .testimonial-one__single:hover::before {
        transform: scaleX(1.0);
    }

.testimonial-one__ratting {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #e0e0e0;
    padding: 11px 20px 11px;
}

    .testimonial-one__ratting span {
        position: relative;
        display: inline-block;
        font-size: 16px;
        color: var(--envens-black);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

.testimonial-one__single:hover .testimonial-one__ratting span {
    color: var(--envens-base);
}

.testimonial-one__text {
    margin-top: 27px;
    margin-bottom: 36px;
}

.testimonial-one__client-info {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--envens-black);
    padding: 12px 28px 12px;
    margin-left: 10px;
    z-index: 1;
}

    .testimonial-one__client-info::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--envens-base);
        background-position: bottom center;
        transition-delay: .1s;
        transition-timing-function: ease-in-out;
        transition-duration: .5s;
        transition-property: all;
        transform-origin: bottom;
        transform-style: preserve-3d;
        transform: scaleY(0);
        z-index: -1;
    }


.testimonial-one__single:hover .testimonial-one__client-info::before {
    transform: scaleY(1.0);
}

.testimonial-one__client-img {
    position: relative;
    display: block;
    max-width: 66px;
    width: 100%;
}

    .testimonial-one__client-img img {
        width: 100%;
        border-radius: 50%;
    }

.testimonial-one__client-content {
    position: relative;
    display: block;
}

    .testimonial-one__client-content > h3 {
        font-size: 24px;
        font-weight: 500;
        line-height: 34px;
    }

        .testimonial-one__client-content > h3 > a {
            color: var(--envens-white);
        }

    .testimonial-one__client-content > p {
        font-size: 14px;
        font-weight: 500;
        line-height: 14px;
        color: #e8d9da;
        margin-top: 5px;
    }

.testimonial-one__quote {
    position: absolute;
    top: 46px;
    right: 75px;
}

    .testimonial-one__quote span {
        position: relative;
        display: inline-block;
        font-size: 62px;
        color: var(--envens-black);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

.testimonial-one__single:hover .testimonial-one__quote span {
    color: var(--envens-base);
}

.testimonial-one__dot-style {
    position: relative;
    display: block;
}

    .testimonial-one__dot-style .swiper-dot-style1 {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 224px;
        height: 70px;
        background-color: var(--envens-base);
    }

        .testimonial-one__dot-style .swiper-dot-style1 .swiper-pagination-bullet {
            position: relative;
            display: block;
            width: 14px;
            height: 14px;
            margin: 0px 15px;
            background: transparent;
            border-radius: 50%;
            border: 2px solid var(--envens-white);
            opacity: 1;
            transition: all 200ms linear;
            transition-delay: 0.1s;
        }

            .testimonial-one__dot-style .swiper-dot-style1 .swiper-pagination-bullet.swiper-pagination-bullet-active {
                opacity: 1.0;
            }

            .testimonial-one__dot-style .swiper-dot-style1 .swiper-pagination-bullet::before {
                position: absolute;
                top: -12px;
                left: -12px;
                bottom: -12px;
                right: -12px;
                background-color: transparent;
                border-radius: 50%;
                border: 2px solid var(--envens-white);
                transform: scale(0);
                transition: all 200ms linear;
                transition-delay: 0.1s;
                content: "";
            }

            .testimonial-one__dot-style .swiper-dot-style1 .swiper-pagination-bullet.swiper-pagination-bullet-active::before,
            .testimonial-one__dot-style .swiper-dot-style1 .swiper-pagination-bullet:hover {
                transform: scale(1.0);
            }

/*--------------------------------------------------------------
# blog Two
--------------------------------------------------------------*/
.blog-two {
    position: relative;
    display: block;
    padding: 120px 0 95px;
    z-index: 1;
}

.blog-two__top {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 52px;
}

    .blog-two__top .section-title {
        margin-bottom: 0px;
    }

.blog-two__btn-box {
    position: relative;
    display: block;
}

.blog-two__single {
    position: relative;
    display: block;
    margin-bottom: 25px;
}

.blog-two__img-box {
    position: relative;
    display: block;
}

.blog-two__img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

    .blog-two__img:before {
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--envens-black);
        opacity: 0;
        transition: background-color 0.5s ease;
        transition: all 0.5s ease;
        z-index: 1;
    }

.blog-two__single:hover .blog-two__img:before {
    opacity: .60;
}

.blog-two__img img {
    width: 100%;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
}

.blog-two__single:hover .blog-two__img img {
    transform: scale(1.05) rotate(0deg);
}

.blog-two__content-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 69px;
    background-color: var(--envens-white);
    padding: 30px 35px 32px;
    padding-right: 0;
    z-index: 2;
}

.blog-two__sub-title {
    font-weight: 500;
    letter-spacing: 0.050em;
    color: var(--envens-base);
}

.blog-two__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    margin-top: 4px;
    border-bottom: 1px solid #eaeaeb;
    padding-bottom: 12px;
    margin-bottom: 15px;
}

    .blog-two__title > a {
        color: var(--envens-black);
    }

        .blog-two__title > a:hover {
            color: var(--envens-base);
        }

.blog-two__read-more-and-comment {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-two__read-more {
    font-weight: 500;
    letter-spacing: 0.075em;
    color: var(--envens-gray);
}

    .blog-two__read-more:hover {
        color: var(--envens-base);
    }

.blog-two__comment {
    font-weight: 500;
    letter-spacing: 0.075em;
    color: var(--envens-gray);
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

    .blog-two__comment:hover {
        color: var(--envens-base);
    }

    .blog-two__comment > span {
        color: var(--envens-base);
    }

.blog-two__read-more-and-comment > p {
    font-weight: 500;
    letter-spacing: 0.075em;
    color: var(--envens-gray);
}

.blog-two__single-2 {
    position: relative;
    display: block;
    margin-bottom: 25px;
}

.blog-two__date {
    position: absolute;
    top: -38px;
    left: 0;
    background-color: var(--envens-white);
    padding: 7px 22px 7px;
}

    .blog-two__date > p {
        font-size: 14px;
        font-weight: 500;
        color: var(--envens-base);
        line-height: 24px;
    }

.blog-two__date-2 {
    position: relative;
    display: inline-block;
    background-color: var(--envens-base);
    padding: 7px 22px 7px;
}

    .blog-two__date-2 > p {
        font-size: 14px;
        font-weight: 500;
        color: var(--envens-white);
        line-height: 24px;
    }

.blog-two__content-box-2 {
    position: relative;
    display: block;
    background-color: var(--envens-white);
    padding: 33.5px 35px 37px;
    z-index: 2;
}

    .blog-two__content-box-2:after {
        content: "";
        position: absolute;
        top: 0px;
        left: 0;
        right: 0;
        bottom: 0px;
        z-index: -1;
        border: 2px solid transparent;
        background: linear-gradient(-85deg, #80c0fa, #ffffff, #80c0fa) border-box;
        -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
    }

.blog-two__sub-title-2 {
    font-weight: 500;
    letter-spacing: 0.050em;
    color: var(--envens-base);
}

.blog-two__title-2 {
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    margin-top: 4px;
    border-bottom: 1px solid #eaeaeb;
    padding-bottom: 12px;
    margin-bottom: 15px;
}

    .blog-two__title-2 > a {
        color: var(--envens-black);
    }

        .blog-two__title-2 > a:hover {
            color: var(--envens-base);
        }

.blog-two__read-more-and-comment-2 {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-two__read-more-2 {
    font-weight: 500;
    letter-spacing: 0.075em;
    color: var(--envens-gray);
}

    .blog-two__read-more-2:hover {
        color: var(--envens-base);
    }

.blog-two__comment-2 {
    font-weight: 500;
    letter-spacing: 0.075em;
    color: var(--envens-gray);
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

    .blog-two__comment-2:hover {
        color: var(--envens-base);
    }

    .blog-two__comment-2 > span {
        color: var(--envens-base);
    }

.blog-two__read-more-and-comment-2 > p {
    font-weight: 500;
    letter-spacing: 0.075em;
    color: var(--envens-gray);
}

/*--------------------------------------------------------------
# About Three
--------------------------------------------------------------*/
.about-three {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.about-three__left {
    position: relative;
    display: block;
}

    .about-three__left .section-title {
        margin-bottom: 30px;
    }

.about-three__text {
    position: relative;
    display: block;
    margin-right: 149px;
}

.about-three__points {
    position: relative;
    display: block;
    margin-top: 33px;
    margin-bottom: 31px;
}

    .about-three__points li {
        position: relative;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }

        .about-three__points li + li {
            margin-top: 41px;
        }

        .about-three__points li .icon {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 80px;
            width: 80px;
            z-index: 1;
        }

.about-three__points-icon-shape {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.about-three__points li .icon span {
    position: relative;
    display: inline-block;
    font-size: 42px;
    color: var(--envens-base);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.about-three__points li:hover .icon span {
    transform: scale(0.9);
}

.about-three__points li .content {
    position: relative;
    display: block;
    margin-left: 25px;
}

    .about-three__points li .content:before {
        content: "";
        position: absolute;
        bottom: -21px;
        left: 0;
        right: 188px;
        height: 1px;
        background-color: rgba(var(--envens-black-rgb), .15);
    }

.about-three__points li:last-child .content:before {
    display: none;
}

.about-three__points li .content h4 {
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    margin-bottom: 8px;
}

.about-three__btn-and-user-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 55px;
}

.about-three__user-info {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-three__user-img {
    position: relative;
    display: block;
    width: 64px;
}

    .about-three__user-img img {
        width: 100%;
        border-radius: 50%;
    }

.about-three__user-sign {
    position: relative;
    display: block;
}

    .about-three__user-sign p {
        font-size: 20px;
        font-weight: 400;
        font-family: var(--envens-font-three);
        color: #262638;
    }

    .about-three__user-sign span {
        position: absolute;
        bottom: -20px;
        right: -48px;
        font-size: 16px;
        font-weight: 500;
        color: #757873;
    }

.about-three__right {
    position: relative;
    display: block;
    margin-left: -53px;
    margin-right: 8px;
}

.about-three__img {
    position: relative;
    display: block;
    width: 693px;
    height: 628px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

    .about-three__img:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-image: url(../images/resources/about-three-img-1.jpg);
        background-size: 100%;
        background-position: center;
        mix-blend-mode: screen;
    }

    .about-three__img img {
        width: 100%;
    }

.about-three__experience {
    position: absolute;
    bottom: 0;
    left: 15px;
    padding: 26px 43px 24px;
    z-index: 1;
}

    .about-three__experience:after {
        content: "";
        position: absolute;
        top: 0px;
        left: 0;
        right: 0;
        bottom: 0px;
        z-index: -1;
        border: 2px solid transparent;
        background: linear-gradient(-85deg, #ff9a9c, #ffffff, #ff9a9c) border-box;
        -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
    }

.about-three__experience-count {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

    .about-three__experience-count h3 {
        font-size: 72px;
        font-weight: 600;
        color: var(--envens-base);
        line-height: 72px;
    }

    .about-three__experience-count span {
        position: relative;
        display: inline-block;
        font-size: 44px;
        color: var(--envens-base);
        top: -21px;
    }

    .about-three__experience-count p {
        position: relative;
        display: inline-block;
        font-size: 30px;
        font-family: var(--envens-font-two);
        color: var(--envens-base);
        line-height: 30px;
        font-weight: 500;
        margin-left: 10px;
        top: 12px;
    }

.about-three__experience-text {
    position: relative;
    display: inline-block;
    font-size: 30px;
    font-family: var(--envens-font-two);
    color: var(--envens-black);
    line-height: 30px;
    font-weight: 500;
    margin-top: 9px;
}

/*--------------------------------------------------------------
# Countdown Two
--------------------------------------------------------------*/
.countdown-two {
    position: relative;
    display: block;
    z-index: 3;
}

.countdown-two__inner {
    position: relative;
    display: block;
    background-color: var(--envens-black);
    padding: 19px 75px 19px;
    border-radius: 60px;
    overflow: hidden;
    z-index: 1;
}

.countdown-two__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: .10;
    z-index: -1;
}

.countdown-two__countdown-timer-box {
    position: relative;
    display: block;
}

    .countdown-two__countdown-timer-box .time-countdown-three {
        position: relative;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .countdown-two__countdown-timer-box li {
        position: relative;
        display: block;
        text-align: center;
        z-index: 2;
    }

        .countdown-two__countdown-timer-box li:before {
            content: "";
            position: absolute;
            top: 35px;
            bottom: 35px;
            left: -90px;
            width: 5px;
            border: 2px solid var(--envens-base);
            border-radius: 2px;
        }

        .countdown-two__countdown-timer-box li:first-child:before {
            display: none;
        }

        .countdown-two__countdown-timer-box li .box {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            height: 222px;
            width: 162px;
            border: 2px dashed #8a8f8d;
            margin: 0 auto 0;
            border-radius: 36px;
            text-align: center;
        }

        .countdown-two__countdown-timer-box li span.days,
        .countdown-two__countdown-timer-box li span.hours,
        .countdown-two__countdown-timer-box li span.minutes,
        .countdown-two__countdown-timer-box li span.seconds {
            position: relative;
            display: block;
            width: 124px;
            height: 121px;
            color: var(--envens-white);
            font-size: 45px;
            line-height: 100px;
            text-align: center;
            font-weight: 600;
            font-family: var(--envens-font-two);
            margin: 0 auto;
        }

        .countdown-two__countdown-timer-box li span.timeRef {
            position: relative;
            display: block;
            color: var(--envens-white);
            font-size: 24px;
            line-height: 0px;
            font-weight: 600;
            text-align: center;
            font-family: var(--envens-font-two);
            text-transform: capitalize;
            margin-top: 20px;
        }

        .countdown-two__countdown-timer-box li span.days::before,
        .countdown-two__countdown-timer-box li span.hours::before,
        .countdown-two__countdown-timer-box li span.minutes::before,
        .countdown-two__countdown-timer-box li span.seconds::before {
            content: "";
            position: absolute;
            top: 44%;
            left: 50%;
            width: 124px;
            height: 121px;
            background-image: urL(../images/shapes/countdown-two-shape-1.png);
            opacity: .10;
            visibility: visible;
            background-repeat: no-repeat;
            transform: translateX(-50%) translateY(-50%);
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
            z-index: -1;
        }

        .countdown-two__countdown-timer-box li:hover span.days::before,
        .countdown-two__countdown-timer-box li:hover span.hours::before,
        .countdown-two__countdown-timer-box li:hover span.minutes::before,
        .countdown-two__countdown-timer-box li:hover span.seconds::before {
            opacity: 0;
            visibility: hidden;
        }

        .countdown-two__countdown-timer-box li span.days::after,
        .countdown-two__countdown-timer-box li span.hours::after,
        .countdown-two__countdown-timer-box li span.minutes::after,
        .countdown-two__countdown-timer-box li span.seconds::after {
            content: "";
            position: absolute;
            top: 44%;
            left: 50%;
            width: 124px;
            height: 121px;
            background-image: urL(../images/shapes/countdown-two-shape-2.png);
            opacity: 0;
            visibility: hidden;
            background-repeat: no-repeat;
            transform: translateX(-50%) translateY(-50%);
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
            z-index: -1;
        }

        .countdown-two__countdown-timer-box li:hover span.days::after,
        .countdown-two__countdown-timer-box li:hover span.hours::after,
        .countdown-two__countdown-timer-box li:hover span.minutes::after,
        .countdown-two__countdown-timer-box li:hover span.seconds::after {
            opacity: 1;
            visibility: visible;
        }

/*--------------------------------------------------------------
# Feature Two
--------------------------------------------------------------*/
.feature-two {
    position: relative;
    display: block;
    counter-reset: count;
    margin-top: -140px;
    z-index: 1;
}

.feature-two__wrap {
    position: relative;
    display: block;
    max-width: 1700px;
    width: 100%;
    margin: 0 auto;
    padding: 240px 0 70px;
    background-color: #f5f6f7;
    overflow: hidden;
    z-index: 1;
}

.feature-two__shape-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: -30px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    mix-blend-mode: luminosity;
    opacity: .10;
    z-index: -1;
}

.feature-two__shape-1 {
    position: absolute;
    bottom: -10px;
    right: -58px;
    opacity: .10;
}

    .feature-two__shape-1 img {
        width: auto;
    }

.feature-two__shape-2 {
    position: absolute;
    bottom: -50px;
    left: 0px;
    opacity: .15;
}

    .feature-two__shape-2 img {
        width: auto;
    }

.feature-two__shape-3 {
    position: absolute;
    bottom: -90px;
    left: 190px;
    opacity: .35;
}

    .feature-two__shape-3 img {
        width: auto;
    }

.feature-two__shape-4 {
    position: absolute;
    top: 30px;
    left: 35px;
    opacity: .30;
}

    .feature-two__shape-4 img {
        width: auto;
    }

.feature-two__single {
    position: relative;
    display: block;
    background-color: var(--envens-white);
    border-radius: 50px;
    padding: 44px 30px 44px;
    margin-bottom: 30px;
    z-index: 1;
}

    .feature-two__single:after {
        content: "";
        position: absolute;
        top: 0px;
        left: 0;
        right: 0;
        bottom: 0px;
        border: 2px solid transparent;
        border-radius: 50px;
        background: linear-gradient(-85deg, #81baf0, #ffffff, #81baf0) border-box;
        -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        z-index: -1;
    }

    .feature-two__single:hover:after {
        opacity: 1;
    }

.feature-two__img {
    position: relative;
    display: block;
    border-bottom-right-radius: 100px;
    overflow: hidden;
    z-index: 1;
}

    .feature-two__img::before {
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--envens-black);
        opacity: 0;
        border-bottom-right-radius: 100px;
        transition: background-color 0.5s ease;
        transition: all 0.5s ease;
        z-index: 1;
    }

.feature-two__single:hover .feature-two__img::before {
    opacity: .50;
}

.feature-two__img img {
    width: 100%;
    border-bottom-right-radius: 100px;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
}

.feature-two__single:hover .feature-two__img img {
    transform: scale(1.05) rotate(0deg);
}

.feature-two__content {
    position: relative;
    display: block;
    margin-top: 23px;
}

.feature-two__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
}

    .feature-two__title a {
        color: var(--envens-black);
    }

        .feature-two__title a:hover {
            color: var(--envens-base);
        }

.feature-two__icon-and-text {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 36px;
    margin-bottom: 15px;
}

.feature-two__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    width: 90px;
    background-color: var(--envens-base);
    border-radius: 8px;
}

    .feature-two__icon span {
        position: relative;
        display: inline-block;
        font-size: 52px;
        color: var(--envens-white);
        transition: all 500ms linear;
        transition-delay: 0.1s;
        transform: scale(1);
    }

.feature-two__single:hover .feature-two__icon span {
    transform: scale(.9);
}

.feature-two__text {
    position: relative;
    display: block;
    font-size: 18px;
}

.feature-two__btn-box {
    position: relative;
    display: block;
}

.feature-two__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--envens-gray);
    letter-spacing: 0.075em;
}

    .feature-two__btn:before {
        content: "";
        position: absolute;
        bottom: 25px;
        left: 0;
        right: 66px;
        height: 1px;
        background-color: rgba(var(--envens-black-rgb), .30);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

    .feature-two__btn:hover:before {
        background-color: rgba(var(--envens-base-rgb), 1);
    }

    .feature-two__btn span {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 66px;
        width: 66px;
        border: 1px solid rgba(var(--envens-black-rgb), .30);
        border-radius: 50%;
        font-size: 30px;
        color: #0281f6;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

    .feature-two__btn:hover {
        color: var(--envens-base);
    }

        .feature-two__btn:hover span {
            border: 1px solid rgba(var(--envens-base-rgb), 1);
            color: var(--envens-base);
        }

.feature-two__count {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 70px;
    bottom: 31px;
    right: 33px;
}

    .feature-two__count:before {
        position: relative;
        font-size: 70px;
        line-height: 70px;
        font-weight: 600;
        font-family: var(--envens-font-two);
        counter-increment: count;
        content: "0"counter(count);
        color: transparent;
        background-image: url(../images/backgrounds/feature-two-count-bg-1.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-clip: text;
        -webkit-background-clip: text;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

/*--------------------------------------------------------------
# Events Three
--------------------------------------------------------------*/
.events-three {
    position: relative;
    display: block;
    padding: 0px 0 90px;
    z-index: 1;
}

.events-three__main-tab-box {
    position: relative;
    display: block;
}

    .events-three__main-tab-box .tab-buttons {
        position: relative;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        margin: 0 -0.5px;
    }

        .events-three__main-tab-box .tab-buttons .tab-btn {
            position: relative;
            flex: 0 0 16.66%;
            max-width: 16.66%;
            width: 100%;
            padding: 0 0.5px;
        }

            .events-three__main-tab-box .tab-buttons .tab-btn + .tab-btn {
                margin-left: 0;
            }

            .events-three__main-tab-box .tab-buttons .tab-btn .events-three__tab-btn-content {
                border: 1px solid #e5e7e8;
                position: relative;
                display: block;
                text-align: center;
                cursor: pointer;
                padding: 13px 20px 12px;
                transition: all 200ms linear;
                transition-delay: 0.1s;
                transition: all 0.3s ease;
                z-index: 1;
            }

            .events-three__main-tab-box .tab-buttons .tab-btn.active-btn .events-three__tab-btn-content {
                border: 1px solid var(--envens-base);
            }

            .events-three__main-tab-box .tab-buttons .tab-btn .events-three__tab-btn-content:before {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                height: 0%;
                content: "";
                background-color: var(--envens-base);
                transition: all 0.3s ease;
                z-index: -1;
            }

            .events-three__main-tab-box .tab-buttons .tab-btn.active-btn .events-three__tab-btn-content:before {
                height: 100%;
            }

            .events-three__main-tab-box .tab-buttons .tab-btn .events-three__tab-btn-content::after {
                content: "";
                position: absolute;
                bottom: -18px;
                left: 50%;
                transform: translateX(-50%);
                border-top: 18px solid var(--envens-base);
                border-left: 12px solid transparent;
                border-right: 12px solid transparent;
                opacity: 0;
                transition: all 0.3s ease;
            }

            .events-three__main-tab-box .tab-buttons .tab-btn.active-btn .events-three__tab-btn-content::after {
                opacity: 1;
            }

.tab-btn .events-three__tab-btn-content p {
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 0.025em;
    color: var(--envens-base);
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.events-three__main-tab-box .tab-buttons .tab-btn.active-btn .events-three__tab-btn-content p {
    color: var(--envens-white);
}

.tab-btn .events-three__tab-btn-content h3 {
    font-size: 36px;
    font-weight: 500;
    line-height: 55px;
    transition: all 0.3s ease;
    color: #554bb9;
}

.events-three__main-tab-box .tab-buttons .tab-btn.active-btn .events-three__tab-btn-content h3 {
    color: var(--envens-white);
}

.tab-btn .events-three__tab-btn-content h3 span {
    position: relative;
    font-size: 25px;
    top: -16px;
    margin-right: 12px;
    margin-left: 4px;
    transition: all 0.3s ease;
}

.events-three__main-tab-box .tab-buttons .tab-btn.active-btn .events-three__tab-btn-content h3 span {
    color: var(--envens-white);
}

.events-three__main-tab-box .tabs-content {
    position: relative;
    display: block;
    margin-top: 68px;
}

    .events-three__main-tab-box .tabs-content .tab {
        position: relative;
        display: none;
        -webkit-transform: translateY(35px);
        -ms-transform: translateY(35px);
        transform: translateY(35px);
        -webkit-transition: all 600ms ease;
        -moz-transition: all 600ms ease;
        -ms-transition: all 600ms ease;
        -o-transition: all 600ms ease;
        transition: all 600ms ease;
        z-index: 10;
    }

        .events-three__main-tab-box .tabs-content .tab.active-tab {
            display: block;
            margin-top: 0px;
            -webkit-transform: translateY(0px);
            -ms-transform: translateY(0px);
            transform: translateY(0px);
        }

.events-three__main-content-box {
    position: relative;
    display: block;
    padding-bottom: 42px;
}

.events-three__content-list {
    position: relative;
    display: block;
}

.events-three__content-single {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 18px 30px 18px;
    margin-bottom: 30px;
    border-radius: 30px;
    z-index: 1;
}

    .events-three__content-single:after {
        content: "";
        position: absolute;
        top: 0px;
        left: 0px;
        right: 0px;
        bottom: 0px;
        z-index: -1;
        border-radius: 30px;
        border: 2px solid transparent;
        background: linear-gradient(-85deg, #ff9a9c, #ffffff, #ff9a9c) border-box;
        -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
    }

.events-three__content-left {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 450px;
}

.events-three__content-img {
    position: relative;
    display: block;
    width: 150px;
}

    .events-three__content-img img {
        width: 100%;
    }

.events-three__video-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.events-three__video-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 18px;
    color: var(--envens-white);
    background-color: var(--envens-base);
    border-radius: 50%;
    margin: 0 auto 0;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

    .events-three__video-icon:hover {
        background-color: var(--envens-white);
        color: var(--envens-base);
    }

    .events-three__video-link .ripple,
    .events-three__video-icon .ripple:before,
    .events-three__video-icon .ripple:after {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        -ms-box-shadow: 0 0 0 0 rgba(var(--envens-white-rgb), 0.6);
        -o-box-shadow: 0 0 0 0 rgba(var(--envens-white-rgb), 0.6);
        -webkit-box-shadow: 0 0 0 0 rgba(var(--envens-white-rgb), 0.6);
        box-shadow: 0 0 0 0 rgba(var(--envens-white-rgb), 0.6);
        -webkit-animation: ripple 3s infinite;
        animation: ripple 3s infinite;
    }

    .events-three__video-icon .ripple:before {
        -webkit-animation-delay: 0.9s;
        animation-delay: 0.9s;
        content: "";
        position: absolute;
    }

    .events-three__video-icon .ripple:after {
        -webkit-animation-delay: 0.6s;
        animation-delay: 0.6s;
        content: "";
        position: absolute;
    }

.events-three__content-user {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 50px;
}

.events-three__content-user-img {
    position: relative;
    display: block;
    width: 55px;
    height: 55px;
    border-radius: 50%;
}

    .events-three__content-user-img img {
        width: 100%;
        border-radius: 50%;
    }

.events-three__content-user-info {
    position: relative;
    display: block;
    margin-left: 20px;
}

.events-three__content-user-name {
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
    margin-bottom: 4px;
    color: white;
}

.events-three__content-user-sub-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--envens-base);
    line-height: 20px;
}

.events-three__content-right {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.events-three__content-right-content {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 57px;
    margin-right: 70px;
}

    .events-three__content-right-content:before {
        content: "";
        position: absolute;
        top: -10px;
        left: -30px;
        bottom: -16px;
        width: 1px;
        background-color: rgba(var(--envens-black-rgb), .15);
    }

    .events-three__content-right-content:after {
        content: "";
        position: absolute;
        top: -10px;
        right: -30px;
        bottom: -16px;
        width: 1px;
        background-color: rgba(var(--envens-black-rgb), .15);
    }

.events-three__content-right-content-left {
    position: relative;
    display: block;
    max-width: 278px;
    text-align: justify;
}

.events-three__content-right-content-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    margin-bottom: 13px;
    color: white;
}

.events-three__content-right-content-title {
    color: white;
    font-size: 14px;
}

    .events-three__content-right-content-title a:hover {
        color: var(--envens-base);
    }

.events-three__content-right-content-list {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

    .events-three__content-right-content-list li {
        position: relative;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }

        .events-three__content-right-content-list li .icon {
            position: relative;
            display: flex;
            align-items: center;
        }

            .events-three__content-right-content-list li .icon span {
                position: relative;
                display: inline-block;
                font-size: 22px;
                color: var(--envens-base);
            }

        .events-three__content-right-content-list li .text {
            position: relative;
            display: block;
        }

            .events-three__content-right-content-list li .text p {
                font-size: 14px;
                font-weight: 500;
                letter-spacing: 0.050em;
            }

.events-three__content-right-content-right {
    position: relative;
    display: block;
}

.events-three__content-right-content-title-two {
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    margin-bottom: 9px;
    color: white;
}

.events-three__content-right-content-time {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

    .events-three__content-right-content-time .icon {
        position: relative;
        display: flex;
        align-items: center;
    }

        .events-three__content-right-content-time .icon span {
            position: relative;
            display: inline-block;
            font-size: 15px;
            color: var(--envens-base);
        }

    .events-three__content-right-content-time .text {
        position: relative;
        display: block;
    }

        .events-three__content-right-content-time .text p {
            font-size: 14px;
            letter-spacing: 0.1em;
        }

.events-three__btn-box {
    position: relative;
    display: block;
}

.events-three__content-right-content-time .icon span {
    position: relative;
    display: inline-block;
    font-size: 15px;
    color: var(--envens-base);
}

.icon-location:before {
    content: "\e919";
}

.events-three__month-heading {
    display: flex;
    align-items: center;
    gap: 20px;
    gap: 18px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.events-three__search-box {
    position: relative;
    width: 320px;
    max-width: 100%;
    margin-left: auto;
}

    .events-three__search-box input {
        width: 100%;
        height: 58px;
        border: 1px solid rgba(255,255,255,0.12);
        background: rgba(255,255,255,0.04);
        padding: 0 60px 0 20px;
        color: #fff;
        border-radius: 60px;
        outline: none;
    }

        .events-three__search-box input::placeholder {
            color: rgba(255,255,255,0.60);
        }

    .events-three__search-box button {
        position: absolute;
        top: 50%;
        right: 6px;
        transform: translateY(-50%);
        width: 46px;
        height: 46px;
        border: none;
        border-radius: 50%;
        background: var(--envens-base);
        color: #fff;
        transition: 0.4s;
    }

        .events-three__search-box button:hover {
            transform: translateY(-50%) scale(1.05);
        }



.events-three__month-line {
    width: 60px;
    height: 2px;
    background: var(--envens-base);
}

.events-three__month-heading h2 {
    font-size: 47px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    margin: 0;
    letter-spacing: -2px;
    text-transform: uppercase;
}

/*--------------------------------------------------------------
# Team Three
--------------------------------------------------------------*/
.team-three {
    position: relative;
    display: block;
    background-color: var(--envens-black);
    overflow: hidden;
    padding: 120px 0 120px;
    z-index: 1;
}

.team-three__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    mix-blend-mode: luminosity;
    opacity: .12;
    z-index: -1;
}

.team-three__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.team-three__top-left {
    position: relative;
    display: block;
}

    .team-three__top-left .section-title {
        margin-bottom: 0;
    }

    .team-three__top-left .section-title__tagline {
        color: var(--envens-white);
    }

    .team-three__top-left .section-title__title {
        color: var(--envens-white);
    }

.team-three__top-right {
    position: relative;
    display: block;
}

.team-three__nav {
    position: relative;
    display: flex;
    align-items: center;
}

    .team-three__nav .swiper-button-prev1,
    .team-three__nav .swiper-button-next1 {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 52px;
        height: 52px;
        border-radius: 50%;
        color: rgba(var(--envens-white-rgb), .15);
        border: 2px solid rgba(var(--envens-white-rgb), .15);
        font-size: 20px;
        margin: 0px 0px;
        text-align: center;
        transition: all 500ms ease;
        z-index: 100;
    }

        .team-three__nav .swiper-button-prev1:hover,
        .team-three__nav .swiper-button-next1:hover {
            color: rgba(var(--envens-white-rgb), 1);
            border: 2px solid rgba(var(--envens-white-rgb), 1);
        }

    .team-three__nav .swiper-button-next1 {
        margin-right: 15px;
    }

.team-three__bottom {
    position: relative;
    display: block;
}

.team-three__single {
    position: relative;
    display: block;
}

.team-three__img-box {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.team-three__img {
    position: relative;
    display: block;
    margin-right: 24px;
    overflow: hidden;
    border-top-right-radius: 150px;
    clip-path: polygon(50% 0%, 75% 0, 100% 0, 100% 70%, 100% 100%, 50% 100%, 0 100%, 0% 70%, 0 0, 17% 1%);
    z-index: 1;
}

    .team-three__img::before {
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--envens-black);
        opacity: 0;
        transition: background-color 0.5s ease;
        transition: all 0.5s ease;
        z-index: 1;
    }

.team-three__single:hover .team-three__img::before {
    opacity: .50;
}

.team-three__img img {
    width: 100%;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
}

.team-three__single:hover .team-three__img img {
    transform: scale(1.05) rotate(0deg);
}

.team-three__share-and-social {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
}

.team-three__share {
    position: relative;
    display: inline-block;
}

    .team-three__share a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        background-color: var(--envens-base);
        font-size: 18px;
        color: var(--envens-white);
        z-index: 1;
    }

        .team-three__share a::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: var(--envens-black);
            background-position: center bottom;
            transition-delay: .1s;
            transition-timing-function: ease-in-out;
            transition-duration: .5s;
            transition-property: all;
            transform-origin: bottom;
            transform-style: preserve-3d;
            transform: scaleY(0);
            z-index: -1;
        }

.team-three__share-and-social:hover .team-three__share a::before {
    transform: scaleY(1.0);
}

.team-three__social {
    position: absolute;
    bottom: 0;
    left: 70px;
    gap: 40px;
    display: flex;
    align-items: center;
    background-color: var(--envens-base);
    padding: 21px 35px 21px;
    border-top-right-radius: 45px;
    background-position: center bottom;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    transform-origin: bottom;
    transform-style: preserve-3d;
    transform: scaleX(0);
    z-index: 2;
}

.team-three__share-and-social:hover .team-three__social {
    transform: scaleX(1.0);
}

.team-three__social a {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    font-size: 18px;
    color: var(--envens-white);
}

    .team-three__social a:hover {
        color: var(--envens-black);
    }

.team-three__content {
    position: absolute;
    bottom: 114px;
    right: -114px;
    background-color: var(--envens-white);
    padding: 20px 85px 15px;
    text-align: center;
    border-radius: 45px;
    transform: rotate(-90deg) translateY(180%);
    transition: transform 1000ms ease;
    z-index: 3;
}

.team-three__single:hover .team-three__content {
    transform: rotate(-90deg) translateY(-10px);
    transition-delay: 500ms;
}

.team-three__sub-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 14px;
    color: var(--envens-base);
    letter-spacing: 0.075em;
    margin-bottom: 11px;
}

.team-three__title {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
}

    .team-three__title a {
        color: var(--envens-black);
    }

        .team-three__title a:hover {
            color: var(--envens-base);
        }

/*--------------------------------------------------------------
# Pricing Two Start
--------------------------------------------------------------*/
.pricing-two {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
}

.pricing-two__single {
    position: relative;
    display: block;
    background-color: rgba(245, 246, 247, 0.8);
    border-radius: 50px;
    padding: 2px 22px;
    overflow: hidden;
    margin-bottom: 30px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

    .pricing-two__single:hover {
        border-radius: 0;
    }

    .pricing-two__single:after {
        content: "";
        position: absolute;
        top: 0px;
        left: 0;
        right: 0;
        bottom: 0px;
        border: 2px solid transparent;
        background: linear-gradient(-85deg, #ff9a9c, #ffffff, #ff9a9c) border-box;
        -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        z-index: -1;
    }

    .pricing-two__single:hover:after {
        opacity: 1;
    }

.pricing-two__single-inner {
    position: relative;
    display: block;
    background-color: var(--envens-white);
    border-radius: 150px;
    padding: 53px 0 45px;
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

.pricing-two__title {
    font-size: 30px;
    font-weight: 500;
    line-height: 35px;
    margin-bottom: 28px;
}

.pricing-two__price-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center;
    height: 150px;
    width: 150px;
    margin: 0 auto 0;
    border: 2px solid #f0f0f1;
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.pricing-two__single:hover .pricing-two__price-box {
    border: 2px solid var(--envens-base);
    background-color: var(--envens-base);
}

.pricing-two__price-box h2 {
    font-size: 50px;
    font-weight: 500;
    color: var(--envens-base);
    line-height: 42px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

    .pricing-two__price-box h2 span {
        position: relative;
        display: inline-block;
        font-size: 16px;
        color: var(--envens-black);
        font-family: var(--envens-font);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

.pricing-two__single:hover .pricing-two__price-box h2 {
    color: var(--envens-white);
}

    .pricing-two__single:hover .pricing-two__price-box h2 span {
        color: var(--envens-white);
    }

.pricing-two__price-box p {
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    color: var(--envens-black);
    letter-spacing: 0.025em;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.pricing-two__single:hover .pricing-two__price-box p {
    color: var(--envens-white);
}

.pricing-two__points {
    position: relative;
    display: block;
    margin-top: 28px;
    margin-bottom: 41px;
}

    .pricing-two__points li {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

        .pricing-two__points li + li {
            margin-top: 21px;
        }

        .pricing-two__points li .icon {
            position: relative;
            display: block;
            height: 6px;
            width: 6px;
            background-color: var(--envens-base);
            transform: rotate(45deg);
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
        }

.pricing-two__single:hover .pricing-two__points li .icon {
    background-color: #0281f6;
}

.pricing-two__btn-box {
    position: relative;
    display: block;
}

.pricing-two__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    color: var(--envens-black);
    padding: 15px 45px;
    background-color: var(--envens-white);
    z-index: 1;
}

    .pricing-two__btn:hover {
        color: var(--envens-white);
        background-color: var(--envens-base);
    }

    .pricing-two__btn:after {
        content: "";
        position: absolute;
        top: 0px;
        left: 0;
        right: 0;
        bottom: 0px;
        border: 2px solid transparent;
        background: linear-gradient(-85deg, #ff9a9c, #ffffff, #ff9a9c) border-box;
        -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        z-index: -1;
    }

.pricing-two__shape-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 1;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

    .pricing-two__shape-1 img {
        width: auto;
    }

.pricing-two__single:hover .pricing-two__shape-1 {
    opacity: 0;
}

.pricing-two__shape-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

    .pricing-two__shape-2 img {
        width: auto;
    }

.pricing-two__single:hover .pricing-two__shape-2 {
    opacity: 1;
}

.pricing-two__popular {
    position: absolute;
    top: 165px;
    right: -50px;
    background-color: var(--envens-base);
    padding: 13px 28px 13px;
    transform: rotate(-90deg) translateY(180%);
    transition: transform 1000ms ease;
    z-index: 2;
}

    .pricing-two__popular p {
        font-size: 18px;
        font-weight: 500;
        color: var(--envens-white);
        line-height: 18px;
        letter-spacing: 0.2em;
    }

.pricing-two__single:hover .pricing-two__popular {
    transform: rotate(-90deg) translateY(0px);
}

/*--------------------------------------------------------------
# Gallery Two
--------------------------------------------------------------*/
.gallery-two {
    position: relative;
    display: block;
    padding: 0 0 110px;
    z-index: 1;
}

.gallery-two__bottom .container {
    max-width: 1600px;
}

.gallery-two__bottom .row {
    --bs-gutter-x: 24px; /* horizontal gap */
    --bs-gutter-y: 24px; /* vertical gap */
}

.gallery-two__single {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

.gallery-two__img {
    position: relative;
    overflow: hidden;
    height: 340px;
    border-radius: 18px;
}

    .gallery-two__img::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
        opacity: 0;
        transition: 0.5s ease;
        z-index: 1;
    }

.gallery-two__single:hover .gallery-two__img::before {
    opacity: 1;
}

.gallery-two__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.gallery-two__single:hover .gallery-two__img img {
    transform: scale(1.08);
}

.gallery-two__content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 220px;
    height: 220px;
    background: rgba(var(--envens-base-rgb), 0.92);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    transform: translate(-50%, -40%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    z-index: 2;
}

.gallery-two__single:hover .gallery-two__content {
    transform: translate(-50%, -50%);
    opacity: 1;
    visibility: visible;
}

.gallery-two__zoom-and-link {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

    .gallery-two__zoom-and-link a {
        width: 48px;
        height: 48px;
        border: 1px solid rgba(255,255,255,0.5);
        color: var(--envens-white);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        transition: all 0.4s ease;
    }

        .gallery-two__zoom-and-link a:hover {
            background: var(--envens-white);
            color: var(--envens-base);
        }

.gallery-two__content-text {
    position: relative;
}

    .gallery-two__content-text::before {
        content: "";
        position: absolute;
        top: -12px;
        left: -10px;
        right: -10px;
        height: 1px;
        background: rgba(255,255,255,0.35);
    }

    .gallery-two__content-text p {
        font-size: 14px;
        color: var(--envens-white);
        margin-bottom: 6px;
    }

    .gallery-two__content-text h5 {
        font-size: 20px;
        color: var(--envens-white);
        margin: 0;
        line-height: 1.4;
    }

/* Tablet */
@media (max-width: 991px) {
    .gallery-two__img {
        height: 300px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .gallery-two__bottom .row {
        --bs-gutter-x: 16px;
        --bs-gutter-y: 16px;
    }

    .gallery-two__img {
        height: 250px;
    }

    .gallery-two__content {
        width: 180px;
        height: 180px;
    }

    .gallery-two__zoom-and-link a {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .gallery-two__content-text h5 {
        font-size: 17px;
    }
}
/*--------------------------------------------------------------
# Brand Three
--------------------------------------------------------------*/
.brand-three {
    position: relative;
    display: block;
    padding: 0 0 120px;
    z-index: 1;
}

.brand-three__wrap {
    position: relative;
    display: block;
    max-width: 1700px;
    width: 100%;
    margin: 0 auto 0;
    padding: 100px 0 100px;
    background-color: #f5f6f7;
    overflow: hidden;
    z-index: 1;
}

.brand-three__shape-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: -30px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    mix-blend-mode: luminosity;
    opacity: 0.05;
    z-index: -1;
}

.brand-three__shape-1 {
    position: absolute;
    bottom: -395px;
    right: -60px;
    opacity: .10;
}

    .brand-three__shape-1 img {
        width: auto;
    }

.brand-three__shape-2 {
    position: absolute;
    bottom: -345px;
    left: 0px;
    opacity: .15;
}

    .brand-three__shape-2 img {
        width: auto;
    }

.brand-three__shape-3 {
    position: absolute;
    bottom: -380px;
    left: 190px;
    opacity: .20;
}

    .brand-three__shape-3 img {
        width: auto;
    }

.brand-three__shape-4 {
    position: absolute;
    bottom: -60px;
    left: 35px;
    opacity: .15;
}

    .brand-three__shape-4 img {
        width: auto;
    }


.brand-three__inner {
    position: relative;
    display: block;
}

.brand-three__list {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

    .brand-three__list li {
        position: relative;
        flex: 0 0 25%;
        max-width: 25%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        border: 1px solid rgba(var(--envens-black-rgb), .08);
        background-color: var(--envens-white);
        padding: 36px 0;
        z-index: 1;
    }

        .brand-three__list li:before {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--envens-base);
            transform: scaleX(0.7) rotateX(20deg);
            transition: all 0.4s linear;
            opacity: 0;
            z-index: -1;
        }

        .brand-three__list li:hover:before {
            transform: scaleX(1.0) rotateX(0deg);
            transition: all 0.4s linear;
            opacity: 1;
        }

.brand-three__img-box {
    position: relative;
    display: block;
}

.brand-three__img {
    position: relative;
    display: block;
}

    .brand-three__img img {
        width: auto;
        opacity: 1;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

.brand-three__list li:hover .brand-three__img img {
    opacity: 0;
}

.brand-three__img-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

    .brand-three__img-hover img {
        width: auto;
        opacity: 0;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

.brand-three__list li:hover .brand-three__img-hover img {
    opacity: .90;
}

.brand-three__list--two {
    justify-content: center;
}

/*--------------------------------------------------------------
# Testimonial Two
--------------------------------------------------------------*/
.testimonial-two {
    position: relative;
    display: block;
    background-color: var(--envens-black);
    padding: 120px 0 120px;
    z-index: 1;
}

.testimonial-two__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    mix-blend-mode: luminosity;
    opacity: .12;
    z-index: -1;
}

.testimonial-two__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

    .testimonial-two__top .section-title {
        margin-bottom: 0;
    }

    .testimonial-two__top .section-title__tagline {
        color: var(--envens-white);
    }

    .testimonial-two__top .section-title__title {
        color: var(--envens-white);
    }

.testimonial-two__nav {
    position: relative;
    display: flex;
    align-items: center;
}

    .testimonial-two__nav .swiper-button-prev1,
    .testimonial-two__nav .swiper-button-next1 {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 52px;
        height: 52px;
        border-radius: 50%;
        color: rgba(var(--envens-white-rgb), .15);
        border: 2px solid rgba(var(--envens-white-rgb), .15);
        font-size: 20px;
        margin: 0px 0px;
        text-align: center;
        transition: all 500ms ease;
        z-index: 100;
    }

        .testimonial-two__nav .swiper-button-prev1:hover,
        .testimonial-two__nav .swiper-button-next1:hover {
            color: rgba(var(--envens-white-rgb), 1);
            border: 2px solid rgba(var(--envens-white-rgb), 1);
        }

    .testimonial-two__nav .swiper-button-next1 {
        margin-right: 15px;
    }

.testimonial-two__bottom {
    position: relative;
    display: block;
}

.testimonial-two__single {
    position: relative;
    display: block;
}

.testimonial-two__client-info {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background-color: var(--envens-white);
    border: 5px solid #ededef;
    border-top-left-radius: 40px;
    border-right: 0;
    padding: 10px 25px 10px;
    max-width: 300px;
    width: 100%;
    margin-left: auto;
    z-index: 2;
}

    .testimonial-two__client-info:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        border-top-left-radius: 40px;
        background-color: var(--envens-base);
        transform: scaleY(0.7) rotateX(20deg);
        transition: all 0.4s linear;
        opacity: 0;
        z-index: -1;
    }

.testimonial-two__single:hover .testimonial-two__client-info:before {
    transform: scaleY(1.0) rotateX(0deg);
    transition: all 0.4s linear;
    opacity: 1;
}

.testimonial-two__client-img {
    position: relative;
    display: block;
    width: 70px;
    border-radius: 50%;
    overflow: hidden;
}

    .testimonial-two__client-img img {
        width: 100%;
        border-radius: 50%;
    }

.testimonial-two__client-content {
    position: relative;
    display: block;
    margin-left: 15px;
}

.testimonial-two__client-name {
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 2px;
}

    .testimonial-two__client-name a {
        color: var(--envens-black);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

.testimonial-two__single:hover .testimonial-two__client-name a {
    color: var(--envens-white);
}

.testimonial-two__client-sub-title {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2em;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.testimonial-two__single:hover .testimonial-two__client-sub-title {
    color: var(--envens-white);
}

.testimonial-two__content {
    position: relative;
    display: block;
    background-color: var(--envens-white);
    padding: 75px 30px 31px;
    margin-top: -60px;
}

.testimonial-two__icon {
    position: relative;
    display: flex;
    align-items: center;
}

    .testimonial-two__icon span {
        position: relative;
        display: inline-block;
        font-size: 75px;
        color: #878c8f;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

.testimonial-two__single:hover .testimonial-two__icon span {
    color: var(--envens-base);
}

.testimonial-two__text {
    margin-top: 21px;
    margin-bottom: 20px;
}

.testimonial-two__rating-box {
    position: relative;
    display: block;
}

.testimonial-two__rating {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

    .testimonial-two__rating span {
        position: relative;
        display: inline-block;
        font-size: 16px;
        color: var(--envens-base);
    }

.testimonial-two__rating-text {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.050em;
    margin-top: 4px;
}

/*--------------------------------------------------------------
# Blog Three
--------------------------------------------------------------*/
.blog-three {
    position: relative;
    display: block;
    padding: 120px 0px 90px;
    z-index: 1;
}

.blog-three__single {
    position: relative;
    display: block;
    padding: 39px 0 31px;
    margin-bottom: 30px;
    z-index: 1;
}

    .blog-three__single:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        border: 1px solid rgba(50, 52, 59, .25);
        border-bottom-right-radius: 100px;
        z-index: -1;
    }

.blog-three__img {
    position: relative;
    display: block;
    overflow: hidden;
    margin-left: 39px;
    border-top-left-radius: 100px;
    z-index: 1;
}

    .blog-three__img::before {
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--envens-black);
        opacity: 0;
        transition: background-color 0.5s ease;
        transition: all 0.5s ease;
        z-index: 1;
    }

.blog-three__single:hover .blog-three__img::before {
    opacity: .50;
}

.blog-three__img img {
    width: 100%;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
}

.blog-three__single:hover .blog-three__img img {
    transform: scale(1.05) rotate(0deg);
}

.blog-three__date-and-tag {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
    margin-bottom: 21px;
}

.blog-three__date {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--envens-base);
    padding: 12px 22px 12px;
}

    .blog-three__date p {
        font-size: 14px;
        font-weight: 500;
        color: var(--envens-white);
        line-height: 14px;
    }

.blog-three__tag {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.blog-three__tag-border {
    position: relative;
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--envens-base);
}

.blog-three__tag-text {
    font-weight: 500;
    letter-spacing: 0.050em;
}

.blog-three__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    margin-left: 39px;
}

    .blog-three__title a {
        color: var(--envens-black);
    }

        .blog-three__title a:hover {
            color: var(--envens-base);
        }

/*--------------------------------------------------------------
# Site Footer Two
--------------------------------------------------------------*/
.site-footer-two {
    position: relative;
    display: block;
    background-color: var(--envens-black);
    z-index: 1;
}

.site-footer-two__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    mix-blend-mode: luminosity;
    opacity: 0.05;
    z-index: -1;
}

.site-footer-two__shape-bg-1 {
    position: absolute;
    top: 145px;
    left: 0;
    right: 0;
    bottom: -130px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    mix-blend-mode: luminosity;
    opacity: .12;
    animation: topBottom 3s ease-in-out infinite;
    z-index: -1;
}

.site-footer-two__top {
    position: relative;
    display: block;
    background-color: var(--envens-base);
    overflow: hidden;
    z-index: 1;
}

.site-footer-two__top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    overflow: hidden;
    padding: 45px 0px;
    background-color: var(--envens-base);
    z-index: 1;
}

.site-footer-two__top-shape-1 {
    position: absolute;
    top: -145px;
    left: 0;
    right: 0;
    text-align: center;
    mix-blend-mode: luminosity;
    z-index: -1;
}

    .site-footer-two__top-shape-1 img {
        width: auto;
        opacity: .20;
    }

.site-footer-two__top-shape-2 {
    position: absolute;
    bottom: -115px;
    left: 0;
    opacity: .50;
    z-index: -1;
}

    .site-footer-two__top-shape-2 img {
        width: auto;
    }

.site-footer-two__top-shape-3 {
    position: absolute;
    bottom: -235px;
    right: 0;
    opacity: .50;
    z-index: -1;
}

    .site-footer-two__top-shape-3 img {
        width: auto;
    }



.site-footer-two__top-icon-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.site-footer-two__top-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 85px;
    width: 70px;
    background-color: var(--envens-white);
}

    .site-footer-two__top-icon span {
        position: relative;
        display: inline-block;
        font-size: 35px;
        color: var(--envens-base);
    }

.site-footer-two__top-icon-content {
    position: relative;
    display: block;
}

    .site-footer-two__top-icon-content p {
        color: var(--envens-white);
        margin-bottom: 4px;
    }

    .site-footer-two__top-icon-content h5 {
        font-size: 24px;
        font-weight: 500;
        color: var(--envens-white);
        line-height: 24px;
    }

        .site-footer-two__top-icon-content h5 a {
            color: var(--envens-white);
        }

            .site-footer-two__top-icon-content h5 a:hover {
                color: var(--envens-black);
            }

.site-footer-two__logo {
    position: relative;
    display: block;
}

    .site-footer-two__logo a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--envens-white);
        padding: 23px 40px;
    }

.site-footer-two__middle {
    position: relative;
    display: block;
    padding: 118px 0 111px;
}

.site-footer-two__middle-inner {
    position: relative;
    display: block;
}

.footer-widget-two__about {
    position: relative;
    display: block;
}

.footer-widget-two__title-box {
    position: relative;
    display: block;
    margin-bottom: 39px;
}

.footer-widget-two__title {
    font-size: 24px;
    color: var(--envens-white);
    font-weight: 500;
    line-height: 24px;
}

.footer-widget-two__link-list-box {
    position: relative;
    display: flex;
}

.footer-widget-two__link-list {
    position: relative;
    display: block;
}

    .footer-widget-two__link-list li {
        position: relative;
        display: block;
    }

        .footer-widget-two__link-list li + li {
            margin-top: 29px;
        }

        .footer-widget-two__link-list li a {
            position: relative;
            display: inline-block;
            font-size: 18px;
            color: #a2a5ae;
            letter-spacing: 0.075em;
        }

            .footer-widget-two__link-list li a:hover {
                color: var(--envens-base);
            }

.footer-widget-two__link-list--two {
    margin-left: 40px;
}

.footer-widget-two__link {
    position: relative;
    display: block;
}

.footer-widget-two__gallery {
    position: relative;
    display: block;
    margin-left: -24px;
}

.footer-widget-two__gallery-list {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-right: -7.5px;
    margin-left: -7.5px;
    padding-top: 7px;
}

    .footer-widget-two__gallery-list li {
        position: relative;
        display: inline-block;
        padding-left: 7.5px;
        padding-right: 7.5px;
        margin-bottom: 15px;
    }

.footer-widget-two__gallery-img {
    position: relative;
    display: block;
    overflow: hidden;
    width: 95px;
    z-index: 1;
}

    .footer-widget-two__gallery-img:before {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        content: "";
        background-color: rgba(var(--envens-black-rgb), .30);
        transition: all 700ms ease;
        transform: translateY(-100%);
        z-index: 1;
    }

.footer-widget-two__gallery-list li:hover .footer-widget-two__gallery-img:before {
    transform: translateY(0%);
}

.footer-widget-two__gallery-img img {
    width: 100%;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}

.footer-widget-two__gallery-list li:hover .footer-widget-two__gallery-img img {
    transform: scale(1.1) rotate(2deg);
}

.footer-widget-two__gallery-img a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: var(--envens-white);
    transform: translateY(100px);
    opacity: 0;
    transition: all 700ms ease;
    z-index: 2;
}

.footer-widget-two__gallery-list li:hover .footer-widget-two__gallery-img a {
    transform: translateY(0px);
    opacity: 1;
    transition-delay: 0.3s;
}

.footer-widget-two__gallery-img a span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 60px;
    background-color: rgba(var(--envens-black-rgb), .90);
    border-radius: 50%;
    font-size: 18px;
    color: var(--envens-white);
    transition: all 700ms ease;
}

    .footer-widget-two__gallery-img a span:hover {
        background-color: rgba(var(--envens-white-rgb), 1);
        color: var(--envens-base);
    }

.footer-widget-two__social {
    position: relative;
    display: block;
    margin-left: 75px;
}

.site-footer-two__bottom {
    position: relative;
    display: block;
    border-top: 1px solid rgba(var(--envens-white-rgb), .15);
}

.site-footer-two__bottom-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 30.5px 0;
}

.site-footer-two__bottom-text {
    font-size: 18px;
    color: var(--envens-white);
    letter-spacing: 0.1em;
}

.site-footer-two__botom-menu {
    position: relative;
    display: flex;
    align-items: center;
}

    .site-footer-two__botom-menu li {
        position: relative;
        display: block;
    }

        .site-footer-two__botom-menu li + li {
            margin-left: 20px;
        }

        .site-footer-two__botom-menu li:before {
            content: "";
            position: absolute;
            bottom: 10px;
            left: -10px;
            height: 2px;
            width: 2px;
            background-color: var(--envens-white);
            border-radius: 50%;
        }

        .site-footer-two__botom-menu li:first-child:before {
            display: none;
        }

        .site-footer-two__botom-menu li a {
            font-size: 18px;
            color: var(--envens-white);
            letter-spacing: 0.1em;
        }

            .site-footer-two__botom-menu li a:hover {
                color: var(--envens-base);
            }

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
    position: relative;
    display: block;
    padding: 275px 0 174px;
    background-color: var(--envens-black);
    overflow: hidden;
    z-index: 1;
}

.page-header__shape-1 {
    position: absolute;
    left: -30px;
    bottom: -308px;
    animation: leftRight 4s ease-in-out infinite;
}

    .page-header__shape-1 img {
        width: auto;
    }

.page-header__shape-2 {
    position: absolute;
    top: 143px;
    right: 0;
    animation: topBottom 3s ease-in-out infinite;
    z-index: -1;
}

    .page-header__shape-2 img {
        width: auto;
    }

.page-header__shape-3 {
    position: absolute;
    top: -59px;
    left: 60%;
    transform: translateX(-60%);
    -webkit-animation-name: float-bob-y-3;
    animation-name: float-bob-y-3;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    z-index: -1;
}

    .page-header__shape-3 img {
        width: auto;
        opacity: .37;
    }

.page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .5;
    mix-blend-mode: luminosity;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.page-header__inner {
    position: relative;
    display: block;
    margin-left: 112px;
}

    .page-header__inner h2 {
        font-size: 70px;
        font-weight: 500;
        line-height: 80px;
        margin-bottom: 36px;
        color: var(--envens-white);
    }

.thm-breadcrumb__box {
    position: relative;
    display: inline-block;
    border: 1px solid rgba(var(--envens-white-rgb), 0.6);
    padding: 12px 57px 11px;
    border-radius: 10px;
    z-index: 1;
}

.thm-breadcrumb {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .thm-breadcrumb li {
        position: relative;
        display: inline-block;
        font-size: 18px;
        font-weight: 400;
        font-family: var(--envens-font-two);
        color: var(--envens-white);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .thm-breadcrumb li a {
            position: relative;
            display: inline-block;
            color: var(--envens-white);
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
        }

        .thm-breadcrumb li:hover a {
            color: var(--envens-base);
        }

/*--------------------------------------------------------------
# Quick Contact
--------------------------------------------------------------*/
.quick-contact {
    position: relative;
    display: block;
    padding: 140px 0 90px;
    z-index: 1;
    background: var(--envens-black);
}

.quick-contact__single {
    position: relative;
    display: block;
    border-radius: 15px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 30px 0px rgba(18, 18, 18, 0.08);
    padding: 33px 30px 38px;
    margin-bottom: 30px;
    z-index: 1;
}

    .quick-contact__single::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 15px;
        background-color: var(--envens-base);
        transform: scaleX(0.7) rotateX(20deg);
        opacity: 0;
        transition: all 0.4s linear;
        z-index: -1;
    }

    .quick-contact__single:hover::before {
        transform: scaleX(1.0) rotateX(0deg);
        transition: all 0.4s linear;
        opacity: 1;
    }

.quick-contact__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.quick-contact__single:hover .quick-contact__title {
    color: var(--envens-white);
}

.quick-contact__text {
    color: #8b827d;
    line-height: 26px;
    margin-bottom: 17px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.quick-contact__single:hover .quick-contact__text {
    color: var(--envens-white);
}

.quick-contact__contact-list {
    position: relative;
    display: block;
}

    .quick-contact__contact-list > p {
        font-weight: 500;
        color: #8b827d;
        line-height: 26px;
    }

.quick-contact__single:hover .quick-contact__contact-list > p {
    color: var(--envens-white);
}

.quick-contact__contact-list > p > a {
    color: #8b827d;
}

.quick-contact__single:hover .quick-contact__contact-list > p > a {
    color: var(--envens-white);
}

.quick-contact__icon {
    position: absolute;
    top: -20px;
    right: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 80px;
    background-color: var(--envens-base);
    border-bottom-left-radius: 35px;
    border-bottom-right-radius: 35px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.quick-contact__single:hover .quick-contact__icon {
    background-color: var(--envens-black);
}

.quick-contact__icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: -16px;
    border-top: 20px solid transparent;
    border-right: 16px solid var(--envens-base);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.quick-contact__single:hover .quick-contact__icon::before {
    border-right: 16px solid var(--envens-black);
}

.quick-contact__icon span {
    position: relative;
    display: inline-block;
    font-size: 25px;
    color: var(--envens-white);
}

/*--------------------------------------------------------------
# Contact Two
--------------------------------------------------------------*/
.contact-two {
    position: relative;
    display: block;
    padding: 0 0 120px;
    z-index: 1;
    background: var(--envens-black);
}

.contact-two__left {
    position: relative;
    display: block;
    margin-left: -300px;
    margin-right: 32px;
}

.contact-two__google-map {
    position: relative;
    display: block;
    border: none;
    height: 708px;
    width: 100%;
    border-radius: 100px;
}

.contact-two__right {
    position: relative;
    display: block;
}

.contact-two__form-box {
    position: relative;
    display: block;
    background-color: #262636c9;
    padding: 50px 50px 50px;
    border-radius: 30px;
    z-index: 1;
}

.contact-two__form-img {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: .30;
    z-index: -1;
}

    .contact-two__form-img img {
        width: auto;
    }

.contact-two__form {
    position: relative;
    display: block;
}

.contact-two__input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

    .contact-two__input-box input[type="text"],
    .contact-two__input-box input[type="email"] {
        height: 60px;
        width: 100%;
        border: none;
        background-color: rgba(var(--envens-white-rgb), .20);
        padding-left: 30px;
        padding-right: 30px;
        outline: none;
        font-size: 16px;
        color: var(--envens-white);
        display: block;
        font-weight: 500;
        line-height: 60px;
        border-radius: 15px;
    }

    .contact-two__input-box .select-box {
        width: 100%;
    }

    .contact-two__input-box .nice-select {
        height: 60px;
        width: 100%;
        border: none;
        background-color: rgba(var(--envens-white-rgb), .20);
        padding-left: 20px;
        padding-right: 20px;
        outline: none;
        font-size: 16px;
        color: var(--envens-white);
        display: block;
        font-weight: 500;
        line-height: 60px;
        float: none;
        letter-spacing: 0.030em;
        border-radius: 15px;
    }

        .contact-two__input-box .nice-select:after {
            position: absolute;
            top: 25px;
            right: 15px;
            margin-top: 0px;
            z-index: 10;
            border-bottom: 2px solid var(--envens-white);
            border-right: 2px solid var(--envens-white);
            height: 8px;
            width: 8px;
        }

        .contact-two__input-box .nice-select .option {
            color: var(--envens-white);
        }

.contact-two__input-box-icon {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}

    .contact-two__input-box-icon span {
        position: relative;
        display: inline-block;
        font-size: 18px;
        color: var(--envens-white);
    }

.contact-page__input-box textarea {
    color: var(--envens-white);
    font-weight: 500;
    font-size: 16px;
    height: 150px;
    width: 100%;
    background-color: rgba(var(--envens-white-rgb), .20);
    padding: 20px 30px 30px;
    border: none;
    outline: none;
    margin-bottom: 0;
    border-radius: 15px;
}

.contact-page__input-box.text-message-box {
    height: 150px;
    margin-bottom: 30px;
}

.contact-two__btn-box {
    position: relative;
    display: block;
}

.contact-two__btn {
    border: none;
    background-color: var(--envens-base);
    font-weight: 500;
    font-size: 18px;
    text-transform: capitalize;
    letter-spacing: 0.075em;
    padding: 18px 26px 18px;
    border-radius: 32px;
}

    .contact-two__btn:hover {
        color: var(--envens-base);
    }

    .contact-two__btn::after {
        background-color: var(--envens-white);
    }

/* Date Picker Css Start */

#ui-datepicker-div.ui-widget-content {
    background: #fff none repeat scroll 0 0;
    border: 1px solid var(--envens-black);
    color: #252525;
    font-size: 14px;
    border-radius: 0px;
    width: 270px;
    padding: 5px;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-header {
    background: var(--envens-base) none repeat scroll 0 0;
    border: 2px solid var(--envens-base);
    border-radius: 0;
    color: var(--envens-white);
    font-weight: 700;
    padding: 5px 0;
    position: relative;
}

.ui-datepicker td a {
    color: #000000 !important;
    text-align: center;
    background-image: none !important;
    background: #f5f5f5 !important;
    border: 1px solid #f9f9f9 !important;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border: 1px solid #333333 !important;
    background: #333333 !important;
    color: #ffffff !important;
}

.ui-datepicker .ui-datepicker-prev {
    left: 5px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    border-radius: 30%;
    height: 20px;
    position: absolute;
    top: 7px;
    width: 20px;
    transition: all 500ms ease;
    cursor: pointer;
}

.ui-datepicker .ui-datepicker-next {
    right: 5px;
}

    .ui-datepicker .ui-datepicker-prev:hover,
    .ui-datepicker .ui-datepicker-next:hover {
        top: 7px;
        background: #fff;
        border: none;
    }

.ui-datepicker table {
    border-collapse: collapse;
    font-size: 13px;
    margin: 0 0 0.4em;
    width: 100%;
}

.ui-datepicker th {
    border: medium none;
    font-weight: 600;
    padding: 2px 3px;
    text-align: center;
}

.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-state-default:active {
    background: var(--envens-base);
    color: #fff;
    border-color: var(--envens-base);
}

#ui-datepicker-div.ui-widget {
    font-family: var(--envens-font);
}

#ptTimeSelectCntr .ui-widget {
    font-family: var(--envens-font);
}

/* Date Picker Css End */

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
    position: relative;
    display: block;
    margin-top: -10px;
}

.sidebar__single + .sidebar__single {
    margin-top: 60px;
}

.sidebar__title {
    position: relative;
    display: inline-block;
    font-size: 30px;
    font-weight: 500;
    line-height: 40px;
    padding-left: 45px;
    margin-bottom: 31px;
    color: white;
}

    .sidebar__title::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 9px;
        width: 30px;
        height: 3px;
        background-color: var(--envens-base);
    }

.sidebar__search {
    position: relative;
    display: block;
}

.sidebar__search-form {
    position: relative;
    display: block;
}

    .sidebar__search-form input[type="search"] {
        display: block;
        outline: none;
        background-color: transparent;
        border: 1px solid rgba(var(--envens-black-rgb), .12);
        font-size: 16px;
        font-weight: 500;
        height: 65px;
        width: 100%;
        padding-left: 30px;
        padding-right: 75px;
        color: var(--envens-gray);
        border-radius: 0px;
    }

    .sidebar__search-form button[type="submit"] {
        color: var(--envens-black);
        font-size: 21px;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        max-width: 70px;
        width: 100%;
        outline: none;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        border-radius: 0px;
        background-color: transparent;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

.sidebar__category {
    position: relative;
    display: block;
}

.blog-details__catagories-list {
    position: relative;
    display: block;
}

    .blog-details__catagories-list li {
        position: relative;
        display: block;
    }

        .blog-details__catagories-list li + li {
            margin-top: 15px;
        }

        .blog-details__catagories-list li > a {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 20px;
            font-weight: 500;
            line-height: 30px;
            letter-spacing: -0.04em;
            color: var(--envens-black);
            padding: 16px 30px 17px;
            font-family: var(--envens-font-two);
        }

        .blog-details__catagories-list li:hover a {
            color: var(--envens-white);
        }

        .blog-details__catagories-list li.active a {
            color: var(--envens-white);
        }

        .blog-details__catagories-list li > a::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: var(--envens-base);
            transition: -webkit-transform 0.5s ease;
            transition: transform 0.5s ease;
            transition: transform 0.5s ease, -webkit-transform 0.5s ease;
            transform-origin: bottom right;
            -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
            z-index: -1;
        }

        .blog-details__catagories-list li:hover a::before {
            -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
            transform-origin: top center;
        }

        .blog-details__catagories-list li.active a::before {
            -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
            transform-origin: top center;
        }

        .blog-details__catagories-list li > a > span {
            color: var(--envens-white);
            -webkit-transform: scale(0);
            transform: scale(0);
            opacity: 0;
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
        }

        .blog-details__catagories-list li:hover a > span {
            -webkit-transform: scale(1);
            transform: scale(1);
            transition-delay: 500ms;
            opacity: 1;
        }

        .blog-details__catagories-list li.active a > span {
            -webkit-transform: scale(1);
            transform: scale(1);
            transition-delay: 500ms;
            opacity: 1;
        }

.sidebar__post {
    position: relative;
    display: block;
}

.sidebar__post-list {
    position: relative;
    display: block;
    border: 1px solid rgba(var(--envens-black-rgb), .12);
    padding: 29px 29px 29px;
}

    .sidebar__post-list li {
        position: relative;
        display: flex;
        align-items: center;
    }

        .sidebar__post-list li + li {
            margin-top: 25px;
        }

.sidebar__post-image {
    position: relative;
    display: block;
    max-width: 70px;
    width: 100%;
}

    .sidebar__post-image img {
        width: 100%;
    }

.sidebar__post-content {
    position: relative;
    display: block;
    margin-left: 20px;
}

    .sidebar__post-content h3 {
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
    }

        .sidebar__post-content h3 > a {
            color: var(--envens-black);
        }

            .sidebar__post-content h3 > a:hover {
                color: var(--envens-base);
            }

.sidebar__post-content-date {
    font-size: 12px;
}

.sidebar__tags {
    position: relative;
    display: block;
}

.sidebar__tags-list {
    position: relative;
    display: block;
    border: 1px solid rgba(var(--envens-black-rgb), .12);
    padding: 34px 34px 34px;
}

    .sidebar__tags-list > a {
        position: relative;
        font-size: 16px;
        color: var(--envens-black);
        -webkit-transition: all 0.4s ease;
        transition: all 0.4s ease;
        display: inline-block;
        padding: 10px 24px 12px;
        margin-left: 6px;
        font-weight: 400;
        border: 1px solid rgba(var(--envens-black-rgb), .12);
        overflow: hidden;
        z-index: 1;
    }

        .sidebar__tags-list > a + a {
            margin-left: 6px;
            margin-top: 1px;
        }

        .sidebar__tags-list > a::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: var(--envens-base);
            transform: scaleX(0.7) rotateX(20deg);
            opacity: 0;
            transition: all 0.4s linear;
            z-index: -1;
        }

        .sidebar__tags-list > a:hover::before {
            transform: scaleX(1.0) rotateX(0deg);
            transition: all 0.4s linear;
            opacity: 1;
        }

    .sidebar__tags-list a:hover {
        color: var(--envens-white);
    }

/*--------------------------------------------------------------
# Blog Details   
--------------------------------------------------------------*/
.blog-details {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
    background: var(--envens-black);
}

.blog-details__right {
    position: relative;
    display: block;
    margin-left: 22px;
}

.blog-details__img {
    position: relative;
    display: block;
}

    .blog-details__img img {
        width: 100%;
    }

.blog-details__content {
    position: relative;
    display: block;
    margin-top: 32px;
}

.blog-details__meta {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
}

    .blog-details__meta li {
        position: relative;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .blog-details__meta li .icon {
            position: relative;
            display: inline-block;
        }

            .blog-details__meta li .icon span {
                position: relative;
                display: inline-block;
                font-size: 16px;
                font-weight: 600;
                color: var(--envens-base);
            }

        .blog-details__meta li a {
            color: #a49ea0;
        }

            .blog-details__meta li a:hover {
                color: var(--envens-base);
            }

.blog-details__title-1 {
    font-size: 30px;
    font-weight: 500;
    line-height: 40px;
    margin-top: 20px;
    margin-bottom: 22px;
    color: white;
}

.blog-details__text-1 {
    color: #a49ea0;
}

.blog-details__quote-and-text {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 23px;
    margin-bottom: 21px;
}

.blog-details__quote {
    position: relative;
    display: inline-block;
    top: 5px;
}

    .blog-details__quote > span {
        position: relative;
        display: inline-block;
        font-size: 40px;
        color: #32343b;
    }

.blog-details__quote-text {
    color: #a49ea0;
}

.blog-details__points {
    position: relative;
    display: block;
}

    .blog-details__points li {
        position: relative;
        display: flex;
        align-items: center;
        gap: 10px;
    }

.blog-details__points-shape {
    position: relative;
    display: block;
    width: 10px;
    height: 10px;
    background-color: #bfc2c3;
    border-radius: 50%;
}

.blog-details__points li > p {
    color: #a49ea0;
}

.blog-details__points li + li {
    margin-top: 16px;
}

.blog-details__quote-text-2 {
    color: #a49ea0;
    margin-top: 26px;
    margin-bottom: 34px;
}

.blog-details__social-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
}

    .blog-details__social-box > p {
        font-weight: 500;
        font-family: var(--envens-font-two);
        color: var(--envens-black);
    }

.blog-details__social {
    position: relative;
    display: flex;
    align-items: center;
    gap: 13px;
}

    .blog-details__social > a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: transparent;
        font-size: 16px;
        color: var(--envens-black);
    }

        .blog-details__social > a:hover {
            color: var(--envens-white);
            background-color: var(--envens-base);
        }

.comment-one {
    position: relative;
    display: block;
    margin-top: 33px;
}

.comment-one__title {
    font-size: 30px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: -0.05em;
    margin-bottom: 36px;
}

.comment-one__single {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
}

    .comment-one__single + .comment-one__single {
        margin-top: 26px;
    }

.comment-one__image {
    position: relative;
    display: block;
    max-width: 100px;
    width: 100%;
    top: -10px;
}

    .comment-one__image img {
        width: 100%;
    }

.comment-one__content {
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(var(--envens-black-rgb), .12);
    padding-bottom: 29px;
}

.comment-one__single-2 {
    margin-left: 130px;
}

.comment-one__single-3 .comment-one__content {
    border-bottom: 0;
}

.comment-one__content > h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
}

.comment-one__content > p {
    margin-top: 8px;
    margin-bottom: 11px;
    color: #a49ea0;
}

.comment-one__date-and-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.comment-one__date {
    font-weight: 500;
    color: var(--envens-black);
}

.comment-one__btn {
    font-weight: 500;
}

    .comment-one__btn:hover {
        color: var(--envens-black);
    }

.comment-form__form-inner {
    position: relative;
    display: block;
    margin-top: 15px;
}

.comment-form__title {
    font-size: 30px;
    font-weight: 500;
    line-height: 40px;
    margin-bottom: 33px;
}

.comment-form__form {
    position: relative;
    display: block;
}

    .comment-form__form .row {
        --bs-gutter-x: 20px;
    }

.comment-form__input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

    .comment-form__input-box input[type="text"] {
        height: 65px;
        width: 100%;
        background-color: transparent;
        padding-left: 25px;
        padding-right: 25px;
        outline: none;
        font-weight: 500;
        color: #a49ea0;
        display: block;
        letter-spacing: 0.030em;
        border: 1px solid rgba(var(--envens-black-rgb), .12);
    }

    .comment-form__input-box textarea {
        color: #a49ea0;
        height: 150px;
        width: 100%;
        padding: 20px 25px 30px;
        border: none;
        outline: none;
        letter-spacing: 0.030em;
        background-color: transparent;
        border: 1px solid rgba(var(--envens-black-rgb), .12);
        margin-bottom: 0;
    }

.comment-form__btn {
    position: relative;
    display: inline-block;
    border: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: 0.075em;
    background-color: transparent;
    padding: 17px 32px 17px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    overflow: hidden;
    z-index: 1;
}

    .comment-form__btn:hover {
        color: var(--envens-white);
    }

    .comment-form__btn:after {
        content: "";
        position: absolute;
        top: 0px;
        left: 0;
        right: 0;
        bottom: 0px;
        z-index: -1;
        border: 2px solid transparent;
        background: linear-gradient(-85deg, #9dcefb, #ffffff, #9dcefb) border-box;
        -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
    }

    .comment-form__btn:before {
        content: "";
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 150%;
        height: 150%;
        background-color: var(--envens-base);
        transition-duration: 700ms;
        transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
        z-index: -1;
    }

    .comment-form__btn:hover:before {
        bottom: -50%;
    }

.comment-form__input-box.text-message-box {
    height: 150px;
    margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Blog Page
--------------------------------------------------------------*/
.blog-page {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
}

.blog-page__right {
    position: relative;
    display: block;
    margin-left: 22px;
}

.blog-page__single {
    position: relative;
    display: block;
    margin-bottom: 40px;
}

.blog-page__img {
    position: relative;
    display: block;
}

    .blog-page__img img {
        width: 100%;
    }

.blog-page__date {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--envens-base);
    padding: 7px 22px 7px;
}

    .blog-page__date > p {
        font-size: 14px;
        font-weight: 500;
        line-height: 24px;
        color: var(--envens-white);
    }

.blog-page__content {
    position: relative;
    display: block;
    margin-top: 32px;
}

.blog-page__meta {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
}

    .blog-page__meta li {
        position: relative;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .blog-page__meta li .icon {
            position: relative;
            display: inline-block;
        }

            .blog-page__meta li .icon span {
                position: relative;
                display: inline-block;
                font-size: 16px;
                font-weight: 600;
                color: var(--envens-base);
            }

        .blog-page__meta li a {
            color: #a49ea0;
        }

            .blog-page__meta li a:hover {
                color: var(--envens-base);
            }

.blog-page__title {
    font-size: 30px;
    font-weight: 500;
    line-height: 40px;
    margin-top: 20px;
    margin-bottom: 22px;
}

    .blog-page__title a {
        color: var(--envens-black);
    }

        .blog-page__title a:hover {
            color: var(--envens-base);
        }

.blog-page__text-2 {
    margin-top: 18px;
    margin-bottom: 30px;
}

.blog-page__btn-box {
    position: relative;
    display: inline-block;
}

.blog-page__btn {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    overflow: hidden;
    letter-spacing: 0.075em;
    color: var(--envens-black);
    padding: 11px 39px 10px;
    z-index: 1;
}

    .blog-page__btn:hover {
        color: var(--envens-base);
    }

    .blog-page__btn::before {
        content: "";
        position: absolute;
        top: 0px;
        left: 0;
        right: 0;
        bottom: 0px;
        z-index: -1;
        border: 2px solid transparent;
        background: linear-gradient(-85deg, #9fcffb, #ffffff, #9fcffb) border-box;
        -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
    }

    .blog-page__btn::after {
        content: "";
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 150%;
        height: 150%;
        border-bottom-left-radius: 50%;
        border-bottom-right-radius: 50%;
        background-color: var(--envens-base);
        transition-duration: 700ms;
        transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
        z-index: -1;
    }

    .blog-page__btn:hover {
        color: var(--envens-white);
    }

        .blog-page__btn:hover::after {
            bottom: -50%;
        }

.blog-page__pagination {
    position: relative;
    display: block;
    padding-top: 30px;
}

    .blog-page__pagination .pg-pagination li {
        display: inline-block;
        margin-right: 16px;
    }

        .blog-page__pagination .pg-pagination li a {
            height: 60px;
            width: 60px;
            text-align: center;
            line-height: 60px;
            display: inline-block;
            color: var(--envens-black);
            border: 1px solid rgba(var(--envens-black-rgb), .12);
            font-weight: 500;
            font-size: 18px;
            font-family: var(--envens-font-two);
            background-color: transparent;
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
        }

            .blog-page__pagination .pg-pagination li a:hover {
                background-color: var(--envens-base);
                color: var(--envens-white);
                border: 1px solid var(--envens-base);
            }

/*--------------------------------------------------------------
# FAQ page
--------------------------------------------------------------*/
.faq-page {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
}

.faq-page__left {
    position: relative;
    display: block;
    border: 1px solid #dddddd;
    padding: 13px 60px 60px;
    margin-right: 72px;
}

    .faq-page__left .faq-one-accrodion .accrodion {
        position: relative;
        display: block;
        border-bottom: 1px solid #dddddd;
        background-color: transparent;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

    .faq-page__left .faq-one-accrodion .accrodion-title {
        position: relative;
        display: block;
        cursor: pointer;
        padding: 23px 0px 24px;
        transition: all 200ms linear;
        transition-delay: 0.1s;
    }

        .faq-page__left .faq-one-accrodion .accrodion-title h4 {
            margin: 0;
            font-size: 24px;
            font-weight: 500;
            line-height: 34px;
            letter-spacing: -0.04em;
            color: var(--envens-black);
            position: relative;
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
        }

    .faq-page__left .faq-one-accrodion .accrodion + .accrodion {
        margin-top: 10px;
    }

    .faq-page__left .faq-one-accrodion .accrodion-title h4::before {
        content: "\f067";
        font-family: "Font Awesome 5 Free";
        font-weight: 700;
        font-size: 13px;
        color: var(--envens-base);
        position: absolute;
        top: 50%;
        right: 0;
        line-height: 15px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        text-align: center;
        width: 20px;
        height: 20px;
        border: 1px solid var(--envens-base);
    }

    .faq-page__left .faq-one-accrodion .accrodion.active .accrodion-title h4::before {
        content: "\f068";
    }

    .faq-page__left .faq-one-accrodion .accrodion-content {
        position: relative;
        padding-bottom: 32px;
    }

        .faq-page__left .faq-one-accrodion .accrodion-content p {
            margin: 0;
            color: #888888;
            line-height: 30px;
        }

.faq-page__right {
    position: relative;
    display: block;
}

.faq-page__solution-box {
    position: relative;
    display: block;
    background-color: var(--envens-base);
    padding: 58px 30px 83px;
    border-radius: 20px;
}

.faq-page__solution-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    color: var(--envens-white);
    margin-bottom: 30px;
}

.faq-page__form {
    position: relative;
    display: block;
}

.faq-page__input-box {
    position: relative;
    display: block;
    margin-bottom: 15px;
}

    .faq-page__input-box input[type="text"],
    .faq-page__input-box input[type="email"] {
        height: 60px;
        width: 100%;
        background-color: transparent;
        padding-left: 20px;
        padding-right: 20px;
        outline: none;
        font-size: 16px;
        color: var(--envens-white);
        display: block;
        font-weight: 400;
        border-radius: 0;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        border: 1px solid rgba(var(--envens-white-rgb), .20);
    }

    .faq-page__input-box textarea {
        font-size: 16px;
        color: var(--envens-white);
        display: block;
        font-weight: 400;
        height: 150px;
        width: 100%;
        background-color: transparent;
        padding: 20px 30px 30px;
        outline: none;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        border: 1px solid rgba(var(--envens-white-rgb), .20);
    }

    .faq-page__input-box .select-box {
        width: 100%;
    }

    .faq-page__input-box .nice-select {
        height: 60px;
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        outline: none;
        font-size: 16px;
        display: block;
        font-weight: 400;
        border-radius: 0px;
        line-height: 60px;
        float: none;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--envens-white);
        border: 1px solid rgba(var(--envens-white-rgb), .20);
        border-bottom-left-radius: 30px;
        border-top-right-radius: 30px;
    }

        .faq-page__input-box .nice-select:after {
            position: absolute;
            top: 25px;
            right: 30px;
            width: 8px;
            height: 8px;
            border-bottom: 2px solid var(--envens-white);
            border-right: 2px solid var(--envens-white);
            margin-top: 0px;
            z-index: 10;
        }

.faq-page__form .nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    color: var(--envens-base) !important;
    background-color: var(--envens-white);
}

.faq-page__btn-box {
    position: relative;
    display: block;
}

.faq-page__btn {
    border: none;
    width: 100%;
    justify-content: center;
    background-color: var(--envens-white);
    font-size: 16px;
    letter-spacing: 0.075em;
    color: var(--envens-black);
}

.faq-page__need-help {
    position: relative;
    display: block;
    margin-top: 70px;
}

.faq-page__need-help-inner {
    position: relative;
    display: block;
    background-color: #f3f3f3;
    margin-right: -40px;
    padding: 52px 60px 54px;
    padding-right: 100px;
}

.faq-page__need-help-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    letter-spacing: -0.04em;
}

.faq-page__search-form {
    position: relative;
    display: block;
    margin-top: 11px;
    margin-bottom: 12px;
}

    .faq-page__search-form input[type="search"] {
        display: block;
        outline: none;
        background-color: var(--envens-white);
        border: none;
        font-size: 16px;
        font-weight: 500;
        height: 55px;
        width: 100%;
        padding-left: 50px;
        padding-right: 70px;
        color: var(--envens-gray);
        border-radius: 0px;
    }

    .faq-page__search-form button[type="submit"] {
        color: var(--envens-black);
        font-size: 21px;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 70px;
        outline: none;
        border: none;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 0;
        border-radius: 0px;
        background-color: transparent;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

.faq-page__need-help-text {
    color: #888888;
    letter-spacing: -0.02em;
}

.faq-page__need-help-contact {
    position: relative;
    display: block;
    margin-left: 16px;
    background-color: var(--envens-base);
    padding: 52px 150px 60px;
    z-index: 1;
}

.faq-page__need-help-contact-bg {
    position: absolute;
    top: 0;
    left: 88px;
    right: 50px;
    bottom: 0;
    opacity: .10;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    mix-blend-mode: luminosity;
    z-index: -1;
}

.faq-page__need-help-contact-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 29px;
    letter-spacing: -0.04em;
    color: var(--envens-white);
    margin-bottom: 35px;
}

.faq-page__need-help-contact-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

    .faq-page__need-help-contact-box .icon {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: var(--envens-black);
        border-radius: 50%;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .faq-page__need-help-contact-box .icon:hover {
            background-color: var(--envens-white);
        }

        .faq-page__need-help-contact-box .icon > span {
            position: relative;
            display: inline-block;
            font-size: 16px;
            color: var(--envens-white);
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
        }

        .faq-page__need-help-contact-box .icon:hover span {
            color: var(--envens-base);
        }

    .faq-page__need-help-contact-box .content {
        position: relative;
        display: block;
    }

        .faq-page__need-help-contact-box .content > p {
            font-size: 12px;
            line-height: 16px;
            color: var(--envens-white);
            letter-spacing: -0.02em;
        }

        .faq-page__need-help-contact-box .content > h4 {
            font-size: 18px;
            font-weight: 700;
            line-height: 25px;
            letter-spacing: -0.02em;
            font-family: var(--envens-font);
        }

            .faq-page__need-help-contact-box .content > h4 > a {
                color: var(--envens-white);
            }

                .faq-page__need-help-contact-box .content > h4 > a:hover {
                    color: var(--envens-black);
                }

/*--------------------------------------------------------------
# Venue Page
--------------------------------------------------------------*/
.venue-page {
    position: relative;
    display: block;
    padding: 120px 0 0;
}

.venue-page__inner {
    position: relative;
    display: block;
    z-index: 1;
}

.venue-page__img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.venue-page__venu-box {
    position: relative;
    display: block;
    background-color: var(--envens-black);
    border-radius: 195px;
    max-width: 600px;
    width: 100%;
    margin-left: auto;
    padding: 123px 50px 50px;
    z-index: 1;
}

.venue-page__venu-box-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.07;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.venue-page__address-title {
    font-size: 45px;
    font-weight: 500;
    line-height: 54px;
    color: var(--envens-white);
    margin-bottom: 56px;
}

.venue-page__address {
    position: relative;
    display: block;
    margin-left: 20px;
}

    .venue-page__address li {
        position: relative;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

        .venue-page__address li:before {
            content: "";
            position: absolute;
            bottom: -32px;
            left: -20px;
            right: 70px;
            height: 1px;
            background-color: rgba(var(--envens-white-rgb), .10);
        }

        .venue-page__address li:last-child:before {
            display: none;
        }

        .venue-page__address li + li {
            margin-top: 64px;
        }

        .venue-page__address li .icon {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 75px;
            width: 75px;
            border: 2px solid rgba(var(--envens-white-rgb), .40);
            border-radius: 50%;
            z-index: 1;
        }

            .venue-page__address li .icon span {
                position: relative;
                display: inline-block;
                font-size: 40px;
                color: var(--envens-white);
            }

        .venue-page__address li .content {
            position: relative;
            display: block;
        }

            .venue-page__address li .content h4 {
                font-size: 24px;
                font-weight: 500;
                line-height: 24px;
                color: var(--envens-white);
                position: relative;
                display: inline-flex;
                align-items: center;
                margin-bottom: 23px;
                letter-spacing: 0.05em;
            }

                .venue-page__address li .content h4::before {
                    content: "";
                    position: absolute;
                    bottom: -16px;
                    left: 0;
                    width: 30px;
                    height: 3px;
                    background-color: var(--envens-base);
                    border-radius: 1px;
                }

            .venue-page__address li .content p {
                color: var(--envens-white);
                letter-spacing: 0.05em;
            }

.venue-page__address-two {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
    background-color: rgba(var(--envens-white-rgb), .10);
    padding: 48px 33px 41px;
    border-radius: 95px;
    margin-top: 41px;
}

    .venue-page__address-two li {
        position: relative;
        display: block;
    }

        .venue-page__address-two li h4 {
            position: relative;
            display: inline-block;
            font-size: 24px;
            font-weight: 500;
            color: var(--envens-white);
            line-height: 24px;
            margin-bottom: 28px;
        }

            .venue-page__address-two li h4:before {
                content: "";
                position: absolute;
                bottom: -16px;
                left: 0;
                height: 4px;
                width: 40px;
                background-color: rgba(var(--envens-white-rgb), .25);
                border-radius: 2px;
            }

        .venue-page__address-two li p {
            font-weight: 500;
            color: var(--envens-white);
            letter-spacing: 0.050em;
        }

            .venue-page__address-two li p + p {
                margin-top: 4px;
            }

            .venue-page__address-two li p a {
                color: var(--envens-white);
            }

                .venue-page__address-two li p a:hover {
                    color: var(--envens-base);
                }

/*--------------------------------------------------------------
# Google Map One
--------------------------------------------------------------*/
.google-map-one {
    position: relative;
    display: block;
}

.google-map__one {
    position: relative;
    display: block;
    border: none;
    height: 600px;
    width: 100%;
}

/*--------------------------------------------------------------
# Brand Four
--------------------------------------------------------------*/
.brand-four .brand-three__wrap {
    max-width: 100%;
}

/*--------------------------------------------------------------
# Speaker Single
--------------------------------------------------------------*/
.speaker-single {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
}

.speaker-single__left {
    position: relative;
    display: block;
    margin-left: 127px;
}

    .speaker-single__left .section-title {
        margin-bottom: 39px;
    }

.speaker-single__info-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 55px;
}

.speaker-single__info-list {
    position: relative;
    display: block
}

    .speaker-single__info-list li {
        position: relative;
        display: block
    }

        .speaker-single__info-list li + li {
            margin-top: 30px;
        }

        .speaker-single__info-list li > p {
            font-size: 20px;
            font-weight: 500;
            line-height: 30px;
            font-family: var(--envens-font-two);
            color: var(--envens-black);
        }

            .speaker-single__info-list li > p > span {
                font-size: 16px;
                font-weight: 500;
                line-height: 26px;
                font-family: var(--envens-font);
                color: #8b827d;
                position: relative;
                margin-left: 5px;
            }

            .speaker-single__info-list li > p > a {
                font-size: 16px;
                font-weight: 500;
                line-height: 26px;
                font-family: var(--envens-font);
                color: #8b827d;
                position: relative;
                margin-left: 5px;
            }

                .speaker-single__info-list li > p > a:hover {
                    color: var(--envens-base);
                }

.speaker-single__contact-us {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-top: 52px;
}

.speaker-single__btn {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: 0.075em;
    color: var(--envens-black);
}

    .speaker-single__btn:hover {
        color: var(--envens-base);
    }

    .speaker-single__btn::before {
        content: "";
        position: absolute;
        bottom: 4px;
        left: 0;
        right: 0;
        height: 2px;
        background-color: #a6a6a6;
    }

.speaker-single__btn-arrow {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 105px;
    height: 105px;
    border: 1px solid #dcdcdc;
    border-radius: 50%;
    font-size: 28px;
    color: var(--envens-base);
    margin-left: -23px;
}

.speaker-single__right {
    position: relative;
    display: block;
    margin-right: 127px;
    margin-left: 104px;
}

.speaker-single__img-box {
    position: relative;
    display: block;
}

.speaker-single__img {
    position: relative;
    display: block;
    z-index: 1;
}

    .speaker-single__img img {
        width: 100%;
        clip-path: polygon(18% 0, 100% 0, 84% 100%, 0% 100%);
    }

.speaker-single__img-shape {
    position: absolute;
    top: 14px;
    left: 0;
    right: 0;
    bottom: -14px;
    background-color: var(--envens-base);
    clip-path: polygon(0 0, 86% 0, 100% 100%, 15% 100%);
    z-index: -1;
}

.speaker-single__share-and-social {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.speaker-single__share {
    position: relative;
    display: inline-block;
}

    .speaker-single__share > a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 55px;
        height: 50px;
        font-size: 16px;
        color: var(--envens-black);
        background-color: var(--envens-white);
    }

        .speaker-single__share > a:hover {
            color: var(--envens-base);
        }

.speaker-single__social {
    position: absolute;
    top: -66px;
    left: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: right center;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
}

.speaker-single__share-and-social:hover .speaker-single__social {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: bottom center;
}

.speaker-single__social > a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 50px;
    font-size: 16px;
    color: var(--envens-black);
    background-color: var(--envens-white);
}

    .speaker-single__social > a:hover {
        color: var(--envens-base);
    }

.speaker-single__content {
    position: relative;
    display: block;
    text-align: center;
    margin-top: 14px;
    background-color: var(--envens-base);
    border-top: 1px solid #4aa5f8;
    margin-right: 67px;
    padding: 20px 20px 20px;
}

    .speaker-single__content > h3 {
        font-size: 24px;
        font-weight: 500;
        line-height: 34px;
    }

        .speaker-single__content > h3 > a {
            color: var(--envens-white);
        }

            .speaker-single__content > h3 > a:hover {
                color: var(--envens-black);
            }

    .speaker-single__content > p {
        color: var(--envens-white);
        letter-spacing: 0.05em;
        margin-top: 2px;
    }

.speaker-single__bottom {
    position: relative;
    display: block;
    margin-left: 230px;
    margin-right: 230px;
    margin-top: 52px;
}

.speaker-bottom__img-and-content {
    position: relative;
    display: flex;
    align-items: center;
}

.speaker-bottom__img {
    position: relative;
    display: block;
    max-width: 249px;
    width: 100%;
    z-index: 1;
}

    .speaker-bottom__img img {
        width: 100%;
    }

.speaker-bottom__content {
    position: relative;
    display: block;
    border: 1px solid rgba(var(--envens-black-rgb), .10);
    padding: 41px 91px 42px;
    padding-right: 40px;
    margin-left: -45px;
}

.speaker-bottom__meta {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .speaker-bottom__meta li {
        position: relative;
        display: block;
    }

        .speaker-bottom__meta li > p {
            position: relative;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 400;
        }

            .speaker-bottom__meta li > p > span {
                color: var(--envens-base);
            }

.speaker-bottom__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    margin-top: 11px;
    margin-bottom: 10px;
}

.speaker-bottom__client-name {
    font-weight: 500;
    color: var(--envens-base);
    margin-top: 8px;
}

    .speaker-bottom__client-name > span {
        color: var(--envens-black);
    }

.speaker-bottom__social {
    position: absolute;
    top: 50%;
    right: -17px;
    transform: translateY(-50%);
}

    .speaker-bottom__social > a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 35px;
        font-size: 14px;
        color: var(--envens-white);
        border-radius: 50%;
        background-color: var(--envens-black);
    }

        .speaker-bottom__social > a:hover {
            background-color: var(--envens-base);
        }

        .speaker-bottom__social > a + a {
            margin-top: 20px;
        }

/*--------------------------------------------------------------
# Schedule List
--------------------------------------------------------------*/
.schedule-list {
    position: relative;
    display: block;
    background-color: var(--envens-black);
    padding: 120px 0 120px;
    z-index: 1;
}

.schedule-list__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .12;
    mix-blend-mode: luminosity;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.schedule-list__inner {
    position: relative;
    display: block;
}

.schedule-list__main-tab-content {
    position: relative;
    display: block;
}

.schedule-list__content-inner {
    position: relative;
    display: block;
    padding-top: 50px;
    padding-bottom: 108px;
}

    .schedule-list__content-inner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        bottom: 0;
        width: 2px;
        background-color: var(--envens-white);
        transform: translateX(-50%);
    }

.schedule-list__main-tab-box {
    position: relative;
    display: block;
    max-width: 935px;
    margin: 0 auto;
}

.schedule-list__main-tab-buttons {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 68px;
}

    .schedule-list__main-tab-buttons .tab-buttons {
        position: relative;
        display: flex;
        align-items: center;
    }

        .schedule-list__main-tab-buttons .tab-buttons::before {
            content: "";
            position: absolute;
            top: 15px;
            left: 0;
            right: 0;
            height: 1px;
            background-color: var(--envens-white);
        }

        .schedule-list__main-tab-buttons .tab-buttons .tab-btn + .tab-btn {
            margin-left: 125px;
        }

        .schedule-list__main-tab-buttons .tab-buttons .tab-btn {
            position: relative;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            cursor: pointer;
            background-color: var(--envens-white);
            padding: 5px 30px 5px;
            border-radius: 3px;
            transition: all 0.3s ease;
            z-index: 1;
        }

            .schedule-list__main-tab-buttons .tab-buttons .tab-btn.active-btn {
                background-color: 1px solid var(--envens-base);
            }

            .schedule-list__main-tab-buttons .tab-buttons .tab-btn:before {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                height: 0%;
                content: "";
                border-radius: 3px;
                background-color: var(--envens-base);
                transition: all 0.3s ease;
                z-index: -1;
            }

            .schedule-list__main-tab-buttons .tab-buttons .tab-btn.active-btn:before {
                height: 100%;
            }

            .schedule-list__main-tab-buttons .tab-buttons .tab-btn p {
                font-size: 12px;
                font-weight: 500;
                line-height: 22px;
                font-family: var(--envens-font-two);
                color: var(--envens-black);
                text-transform: uppercase;
            }

            .schedule-list__main-tab-buttons .tab-buttons .tab-btn.active-btn p {
                color: var(--envens-white);
            }

.schedule-list__main-tab-content .tabs-content {
    position: relative;
    display: block;
}

    .schedule-list__main-tab-content .tabs-content .tab {
        position: relative;
        display: none;
        -webkit-transform: translateY(35px);
        -ms-transform: translateY(35px);
        transform: translateY(35px);
        -webkit-transition: all 600ms ease;
        -moz-transition: all 600ms ease;
        -ms-transition: all 600ms ease;
        -o-transition: all 600ms ease;
        transition: all 600ms ease;
        z-index: 10;
    }

        .schedule-list__main-tab-content .tabs-content .tab.active-tab {
            display: block;
            margin-top: 0px;
            -webkit-transform: translateY(0px);
            -ms-transform: translateY(0px);
            transform: translateY(0px);
        }

.schedule-list__single {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 466px;
    width: 100%;
    border-radius: 4px;
    padding: 12px 48px 12px;
    background-image: -moz-linear-gradient(90deg, rgb(2, 129, 246) 0%, rgb(2, 129, 246) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(2, 129, 246) 0%, rgb(2, 129, 246) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(2, 129, 246) 0%, rgb(2, 129, 246) 100%);
    margin-left: auto;
    margin-bottom: 44px;
}

.schedule-list__single-2 {
    margin-left: 0;
    margin-right: auto;
    margin-bottom: 90px;
}

.schedule-list__img {
    position: relative;
    display: block;
    max-width: 64px;
    width: 100%;
}

    .schedule-list__img > img {
        width: 100%;
        border-radius: 4px;
    }

.schedule-list__content {
    position: relative;
    display: block;
    margin-left: 10px;
}

    .schedule-list__content > h3 {
        font-size: 14px;
        font-weight: 400;
        line-height: 24px;
        text-transform: uppercase;
        color: var(--envens-white);
    }

    .schedule-list__content > p {
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        color: var(--envens-white);
        margin-top: 5px;
    }

.schedule-list__date {
    position: absolute;
    top: 9px;
    left: -72px;
}

    .schedule-list__date::before {
        content: "";
        position: absolute;
        top: 0;
        right: -31px;
        width: 24px;
        height: 24px;
        border: 3px solid var(--envens-black);
        background-color: var(--envens-white);
        border-radius: 50%;
    }

.schedule-list__single-2 .schedule-list__date::before {
    left: -31px;
}

.schedule-list__single-2 .schedule-list__date {
    left: inherit;
    right: -72px;
}

.schedule-list__single-4 .schedule-list__date {
    left: inherit;
    right: -93px;
}

.schedule-list__single-3 .schedule-list__date {
    left: inherit;
    left: -81px;
}

.schedule-list__single-4 {
    margin-bottom: 0;
}

.schedule-list__date > p {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: var(--envens-white);
}

.schedule-list__first-half {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 128px;
    height: 26px;
    background-color: var(--envens-base);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}

    .schedule-list__first-half > p {
        font-size: 12px;
        font-weight: 400;
        line-height: 22px;
        text-transform: uppercase;
        color: var(--envens-white);
    }

.schedule-list__second-half {
    position: absolute;
    top: 44.7%;
    left: 50%;
    transform: translateX(-50%);
    width: 128px;
    height: 26px;
    background-color: var(--envens-base);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}

    .schedule-list__second-half > p {
        font-size: 12px;
        font-weight: 400;
        line-height: 22px;
        text-transform: uppercase;
        color: var(--envens-white);
    }

.schedule-list__more {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 128px;
    height: 26px;
    background-color: var(--envens-base);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}

    .schedule-list__more > p {
        font-size: 12px;
        font-weight: 400;
        line-height: 22px;
        text-transform: uppercase;
        color: var(--envens-white);
    }

/*--------------------------------------------------------------
# Events Four
--------------------------------------------------------------*/
.events-four .events-three__content-single:after {
    background: linear-gradient(-85deg, #80c0fa, #ffffff, #80c0fa) border-box;
}

/*--------------------------------------------------------------
# Speaker Page
--------------------------------------------------------------*/
.speaker-page {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
}

.speaker-page__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.speaker-page__img-box {
    position: relative;
    display: block;
}

.speaker-page__img {
    position: relative;
    display: block;
    overflow: hidden;
    clip-path: polygon(18% 0, 100% 0, 84% 100%, 0% 100%);
    z-index: 1;
}

    .speaker-page__img img {
        width: 100%;
        transform: scale3d(1, 1, 1);
        transition: transform 1s ease-in-out;
    }

.speaker-page__single:hover .speaker-page__img img {
    transform: scale(1.05) rotate(0deg);
}

.speaker-page__img-shape {
    position: absolute;
    top: 14px;
    left: 0;
    right: 0;
    bottom: -14px;
    background-color: var(--envens-base);
    clip-path: polygon(0 0, 86% 0, 100% 100%, 15% 100%);
    z-index: -1;
}

.speaker-page__share-and-social {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.speaker-page__share {
    position: relative;
    display: inline-block;
}

    .speaker-page__share > a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 55px;
        height: 50px;
        font-size: 16px;
        color: var(--envens-black);
        background-color: var(--envens-white);
    }

        .speaker-page__share > a:hover {
            color: var(--envens-base);
        }

.speaker-page__social {
    position: absolute;
    top: -66px;
    left: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: right center;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
}

.speaker-page__share-and-social:hover .speaker-page__social {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: bottom center;
}

.speaker-page__social > a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 50px;
    font-size: 16px;
    color: var(--envens-black);
    background-color: var(--envens-white);
}

    .speaker-page__social > a:hover {
        color: var(--envens-base);
    }

.speaker-page__content {
    position: relative;
    display: block;
    text-align: center;
    margin-top: 14px;
    background-color: var(--envens-base);
    border-top: 1px solid #4aa5f8;
    margin-right: 67px;
    padding: 20px 20px 20px;
}

    .speaker-page__content h3 {
        font-size: 24px;
        font-weight: 500;
        line-height: 34px;
    }

        .speaker-page__content h3 a {
            color: var(--envens-white);
        }

            .speaker-page__content h3 a:hover {
                color: var(--envens-black);
            }

    .speaker-page__content p {
        color: var(--envens-white);
        letter-spacing: 0.05em;
        margin-top: 2px;
    }

/*--------------------------------------------------------------
# Archives Speakers
--------------------------------------------------------------*/
.archives-speakers {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
}

.archives-speakers__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.archives-speakers__img-box {
    position: relative;
    display: block;
    margin-left: 40px;
    margin-right: 40px;
    z-index: 1;
}

.archives-speakers__img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

    .archives-speakers__img:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        top: 0;
        right: 0;
        pointer-events: none;
        opacity: 0;
        transition: opacity .5s ease-out;
        background-color: rgba(var(--envens-black-rgb), .30);
    }

.archives-speakers__single:hover .archives-speakers__img:after {
    opacity: 1
}

.archives-speakers__img img {
    width: 100%;
    transform: scale(1.01);
    transition: transform .5s cubic-bezier(.27, .48, .45, .94);
    transform-origin: 70% 80%
}

.archives-speakers__single:hover .archives-speakers__img img {
    transform: scale(1.036);
    transition-duration: .9s
}

.archives-speakers__content {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background-color: var(--envens-white);
    text-align: center;
    padding: 29px 0 29px;
    transform: translateY(100%);
    transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
    visibility: hidden;
    opacity: 0;
    z-index: 2;
}

.archives-speakers__single:hover .archives-speakers__content {
    visibility: visible;
    transform: translateY(0%);
    opacity: 1;
    transition-delay: 300ms;
}

.archives-speakers__title-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.archives-speakers__sub-title {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 16px;
    margin-bottom: 14px;
}

.archives-speakers__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    font-family: var(--envens-font);
}

    .archives-speakers__title a {
        color: var(--envens-black);
    }

        .archives-speakers__title a:hover {
            color: var(--envens-base);
        }

.archives-speakers__border {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2px;
    width: 100px;
    background-color: rgba(var(--envens-black-rgb), .12);
    margin-bottom: 16px;
}

    .archives-speakers__border:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 20px;
        transform: translateX(-50%);
        background-color: var(--envens-base);
    }

.archives-speakers__social {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

    .archives-speakers__social a {
        position: relative;
        display: flex;
        align-items: center;
        color: var(--envens-black);
        font-size: 15px;
    }

        .archives-speakers__social a:hover {
            color: var(--envens-base);
        }

.archives-speakers__pagination {
    position: relative;
    display: block;
    text-align: center;
}

    .archives-speakers__pagination .blog-page__pagination {
        padding-top: 70px;
    }

/*--------------------------------------------------------------
# Brand Five
--------------------------------------------------------------*/
.brand-five {
    padding: 120px 0 120px;
}

/*--------------------------------------------------------------
# Gallery Page
--------------------------------------------------------------*/
.gallery-page {
    position: relative;
    display: block;
    padding: 120px 0 110px;
    background: var(--envens-black);
}

/*--------------------------------------------------------------
# Pricing Three
--------------------------------------------------------------*/
.pricing-three .pricing-two__single:after {
    background: linear-gradient(-85deg, #80c0fa, #ffffff, #80c0fa) border-box;
}

.pricing-three .pricing-two__btn:after {
    background: linear-gradient(-85deg, #80c0fa, #ffffff, #80c0fa) border-box;
}

/*--------------------------------------------------------------
## Error Page
--------------------------------------------------------------*/
.error-page {
    position: relative;
    display: block;
    padding: 68px 0 120px;
    z-index: 1;
}

.error-page__inner {
    position: relative;
    display: block;
    text-align: center;
}

.error-page__title-box {
    position: relative;
    display: inline-block;
    z-index: 2;
}

.error-page__title {
    position: relative;
    display: inline-block;
    font-size: 350px;
    line-height: 350px;
    font-weight: 500;
    color: var(--envens-base);
    z-index: 2;
}

.error-page__tagline {
    font-size: 40px;
    line-height: 49px;
    font-weight: 400;
    color: var(--envens-black);
    text-transform: capitalize;
    margin-bottom: 15px;
}

.error-page__text {
    font-size: 20px;
}

.error-page__form {
    position: relative;
    display: block;
    margin: 47px auto 20px;
}

.error-page__form-input {
    position: relative;
    display: block;
    max-width: 550px;
    width: 100%;
    margin: 0 auto;
}

.error-page__form input[type="search"] {
    height: 52px;
    width: 100%;
    outline: none;
    background-color: #f4f5f8;
    border: 0;
    font-size: 14px;
    color: var(--envens-gray);
    font-weight: 500;
    padding-left: 50px;
    padding-right: 75px;
    border-radius: 0;
}

.error-page__form button[type="submit"] {
    background-color: transparent;
    color: var(--envens-black);
    font-size: 22px;
    position: absolute;
    top: 0;
    right: 0px;
    bottom: 0;
    width: 72px;
    outline: none;
    border: none;
    display: flex;
    align-items: center;
    padding: 0;
}


/*--------------------------------------------------------------
# Coming Soon Page
--------------------------------------------------------------*/
.coming-soon-page {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 10;
}

.coming-soon-page__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: var(--envens-black);
    background-blend-mode: luminosity;
    z-index: -1;
}

    .coming-soon-page__bg:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: linear-gradient(0deg, #000000 5%, rgba(0, 0, 0, 0.5) 100%);
    }

.coming-soon-page__content {
    position: relative;
    display: block;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    top: 50%;
    transform: translateY(-50%);
}

    .coming-soon-page__content .inner {
        position: relative;
        display: block;
        width: 100%;
        height: 100%;
        text-align: center;
    }

    .coming-soon-page__content .big-title {
        position: relative;
        display: inline-block;
        color: transparent;
        font-size: 80px;
        line-height: 1.1em;
        font-family: var(--envens-font-2);
        font-weight: 700;
        text-transform: uppercase;
        -webkit-background-clip: text;
        -webkit-text-stroke: 1px var(--envens-white);
        word-spacing: 15px;
    }

.coming-soon-page .timer-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 57px 0 42px;
    z-index: 2;
}

    .coming-soon-page .timer-box .countdown-timer li {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        float: left;
        width: 170px;
        height: 170px;
        margin: 0px 15px;
        border: 2px solid rgba(255, 255, 255, 0.1);
        background-color: transparent;
        border-radius: 50%;
    }

        .coming-soon-page .timer-box .countdown-timer li span.days,
        .coming-soon-page .timer-box .countdown-timer li span.hours,
        .coming-soon-page .timer-box .countdown-timer li span.minutes,
        .coming-soon-page .timer-box .countdown-timer li span.seconds {
            color: #ffffff;
            font-size: 55px;
            line-height: 60px;
            font-weight: 700;
            font-family: var(--envens-font);
        }

        .coming-soon-page .timer-box .countdown-timer li span.timeRef {
            position: relative;
            display: block;
            color: #ffffff;
            font-size: 18px;
            line-height: 20px;
            font-weight: 700;
            text-transform: uppercase;
            margin-top: 11px;
            font-family: var(--envens-font);
        }

.coming-soon-page__content .inner .text {
    position: relative;
    display: block;
    padding-bottom: 60px;
}

    .coming-soon-page__content .inner .text p {
        color: #ffffff;
        font-size: 20px;
        line-height: 30px;
        font-weight: 400;
    }

.coming-soon-page__subscribe-box {
    position: relative;
    display: block;
    max-width: 770px;
    width: 100%;
    margin: 0 auto;
}

    .coming-soon-page__subscribe-box form {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
        width: 100%;
    }

        .coming-soon-page__subscribe-box form input[type="email"] {
            position: relative;
            display: block;
            max-width: 490px;
            width: 100%;
            height: 60px;
            border-radius: 5px;
            background: #ffffff;
            border: 1px solid #ffffff !important;
            color: var(--envens-gray);
            font-size: 16px;
            font-weight: 400;
            padding-left: 30px;
            padding-right: 30px;
            transition: all 500ms ease 0s;
            font-family: var(--envens-font);
            outline: none;
        }

.coming-soon-page__btn {
    position: relative;
    align-items: center;
    border: 0;
    padding: 15px 40px 16px;
    background-color: var(--envens-base);
}

    .coming-soon-page__btn:hover {
        color: var(--envens-black);
    }

    .coming-soon-page__btn:after {
        background-color: var(--envens-white);
    }


/*--------------------------------------------------------------
# Testimonials Page
--------------------------------------------------------------*/
.testimonials-page {
    position: relative;
    display: block;
    background-color: #f5f6f7;
    padding: 120px 0 90px;
    z-index: 1;
}

    .testimonials-page .testimonial-two__single {
        margin-bottom: 30px;
    }




.service-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 42px;
    color: #fffffe;
}






.blog-details__catagories-list li > a {
    display: block;
    padding: 22px 25px;
}

.event-detail-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.event-detail-modern__left {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .event-detail-modern__left i {
        font-size: 18px;
        color: var(--envens-base);
        transition: all .4s ease;
    }

    .event-detail-modern__left strong {
        font-size: 22px;
        font-weight: 500;
        color: white;
        transition: all .4s ease;
    }

.event-detail-modern small {
    font-size: 20px;
    color: #7d7d7d;
    text-align: right;
    transition: all .4s ease;
}

.blog-details__catagories-list li:hover .event-detail-modern__left i,
.blog-details__catagories-list li:hover .event-detail-modern__left strong,
.blog-details__catagories-list li:hover .event-detail-modern small {
    color: #fff;
}



.event-header-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 18px;
    margin-bottom: 20px;
}

.event-header-meta__item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.85);
    font-size: 15px;
}

    .event-header-meta__item i {
        color: var(--envens-base);
        font-size: 16px;
    }




.event-highlights-list li + li {
    margin-top: 15px;
}

.event-highlight-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 25px;
    transition: all .4s ease;
}

    .event-highlight-item i {
        font-size: 18px;
        color: var(--envens-base);
        transition: all .4s ease;
    }

    .event-highlight-item span {
        font-size: 18px;
        font-weight: 500;
        color: white;
        font-family: var(--envens-font-two);
        transition: all .4s ease;
    }

    .event-highlight-item:hover {
        background-color: var(--envens-base);
        border-color: var(--envens-base);
    }

        .event-highlight-item:hover i,
        .event-highlight-item:hover span {
            color: #fff;
        }

@media (min-width: 1200px) {
    .footer-contact-offset {
        margin-left: 90px;
    }
}

@media (max-width: 1199px) {
    .footer-contact-offset {
        margin-left: 0;
    }
}



/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/


/* RIGHT SIDE CONTAINER */
.main-menu__social-and-search-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* SOCIAL ICONS */
.main-menu__social {
    display: flex;
    align-items: center;
}

    .main-menu__social a {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        color: #fff;
        background: linear-gradient(135deg, rgba(255,80,150,0.75), rgba(120,60,255,0.75));
        border-right: 1px solid rgba(255,255,255,0.08);
        transition: all 0.3s ease;
    }

        .main-menu__social a:first-child {
            border-radius: 10px 0 0 10px;
        }

        .main-menu__social a:last-child {
            border-radius: 0 10px 10px 0;
            border-right: none;
        }

        .main-menu__social a:hover {
            transform: translateY(-2px);
            background: linear-gradient(135deg, #ff4f9a, #7b4dff);
        }

/* LANGUAGE SWITCHER */
.main-menu__language-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
}

.language-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 0 16px;
    border-radius: 50px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    transition: all 0.3s ease;
    min-width: 145px;
}

    .language-switcher:hover {
        background: rgba(255,255,255,0.14);
    }

    .language-switcher i {
        color: #fff;
        font-size: 14px;
        flex-shrink: 0;
    }

.language-select {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 18px;
    line-height: 1;
}

    .language-select option {
        color: #000;
    }

/* CUSTOM DROPDOWN ARROW */
.language-switcher::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #fff;
    font-size: 12px;
    margin-left: -10px;
}


/* LANGUAGE SWITCHER FIX */
.language-switcher .nice-select {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    height: auto !important;
    line-height: normal !important;
    padding-left: 0 !important;
    padding-right: 20px !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    float: none !important;
    min-width: 90px;
}

/* REMOVE EXTRA CUSTOM ARROW */
.language-switcher::after {
    display: none !important;
}

/* NICE SELECT ARROW */
.language-switcher .nice-select:after {
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    width: 7px;
    height: 7px;
    right: 2px;
    margin-top: -5px;
}

/* CURRENT TEXT */
.language-switcher .nice-select .current {
    color: #fff !important;
    line-height: 1;
}

/* DROPDOWN */
.language-switcher .nice-select .list {
    margin-top: 12px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(20,20,30,0.96);
    border: 1px solid rgba(255,255,255,0.08);
    min-width: 140px;
}

/* OPTIONS */
.language-switcher .nice-select .option {
    color: #fff !important;
    font-size: 14px;
    padding: 10px 18px;
    background: transparent;
}

    .language-switcher .nice-select .option:hover,
    .language-switcher .nice-select .option.focus,
    .language-switcher .nice-select .option.selected.focus {
        background: linear-gradient(135deg, #ff4f9a, #7b4dff);
        color: #fff !important;
    }


/* RESPONSIVE */
@media (max-width: 1199px) {
    .main-menu__social a {
        width: 42px;
        height: 42px;
        font-size: 14px;
    }

    .language-switcher {
        height: 42px;
        padding: 0 14px;
    }

    .language-select {
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    .main-menu__social-and-search-box {
        display: none;
    }
}
