/*===================================================
    Table of Contets
=====================================================

    01 Navigation
    02 Hero Section
    03 About Section
    04 Service Section
    05 Service Details    
    06 Testimonial Section   
    07 Sponsor Section
    08 Contact Section   
    09 Testimonial Section  
    10 Contact Section
    11 Footer Section
    
/*===================================================
    01 Navigation
====================================================*/

.main-header {
    background-color: #231F1F;
    position: relative;
    z-index: 2;
    overflow-x: clip;
    overflow-y: visible;
}

.main-header-wapper {
    display: grid;
    grid-template-columns: 200px auto;
    align-items: center;
}

.site-logo img {
    width: 205px;
}

.sticky-header {
    display: none;
}

.main-header-info {
    position: relative;
}

.main-header-info:before {
    background-color: #231F1F;
    clip-path: polygon(0 0, 0% 0%, 100% 100%, 0% 100%);
    width: 50px;
    height: 100%;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
}

.main-header-info:after {
    background-color: var(--secondary-color);
    transform: skewX(26deg);
    width: 8px;
    height: 100%;
    content: "";
    position: absolute;
    left: 7px;
    top: 0;
}

/* Top Header */

.top-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding-left: 80px;
}

.top-header:before {
    background-color: var(--secondary-color);
    content: "";
    width: 6000px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.top-left {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.top-header-nav li a,
.top-left li a,
.top-left li {
    font-family: var(--primary-font);
    color: var(--white-color);
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    line-height: 1;
}

.top-left li i {
    font-size: 20px;
    color: var(--white-color);
    margin-right: 5px;
}

.top-right {
    display: inline-flex;
    align-items: center;
}

.top-header-nav {
    min-height: 40px;
    display: flex;
    align-items: center;
    margin-right: 40px;
}

.top-header-nav li {
    position: relative;
}

.top-header-nav li:not(:first-of-type) {
    margin-left: 20px;
}

.top-header-nav li:not(:last-of-type):before {
    background-color: var(--primary-color);
    width: 2px;
    height: 15px;
    content: "";
    position: absolute;
    right: -13px;
    top: 50%;
    transform: translateY(-50%);
}

.header-social-share {
    display: flex;
    align-items: center;
}

.header-social-share li a {
    font-size: 16px;
    color: var(--white-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border-left: 1px solid var(--primary-color); */
}

.header-social-share li:last-child a {
    /* border-right: 1px solid var(--primary-color); */
}

.site-logo {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    left: -25%;
}

/* Navigation Menu */

.nav-menu-wrapper .site-logo {
    display: none;
}

.menu-right-item {
    display: flex;
    align-items: center;
    column-gap: 15px;
    height: 100%;
}

.menu-right-item>div {
    height: 100%;
    display: flex;
    align-items: center;
}

.menu-right-item .menu-action-btn {
    color: var(--heading-color);
    cursor: pointer;
    font-size: 25px;
    position: relative;
}

@media (max-width: 767px) {
    .menu-action-btn.cart {
        display: none;
    }
}

.menu-action-btn.cart i {
    font-size: 28px;
}

.menu-action-btn.cart span {
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    right: -5px;
    top: -8px;
    font-size: 14px;
    font-weight: 500;
}

.menu-right-item .default-btn {
    margin-left: 10px;
}

@media (max-width: 1170px) {
    .menu-right-item .default-btn {
        padding: 20px 25px;
    }
}

/* Menu Button */

.menu-right-item .menu-btn {
    background-color: var(--heading-color);
    color: var(--white-color);
    height: 100%;
    padding: 0 30px;
    display: flex;
    align-items: center;
}

.menu-right-item .menu-btn:hover {
    background-color: var(--bg-dark);
}

/* Burger Menu */

.menu-right-item .mobile-menu-icon {
    display: none;
}

.burger-menu {
    width: 20px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    -webkit-transition: transform 330ms ease-out;
    -moz-transition: transform 330ms ease-out;
    -o-transition: transform 330ms ease-out;
    transition: transform 330ms ease-out;
}

.burger-menu.menu-open {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.line-menu {
    background-color: var(--grey-color);
    border-radius: 0;
    width: 100%;
    height: 2px;
}

.line-menu.line-half {
    width: 50%;
}

.line-menu.first-line {
    transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    transform-origin: right;
}

.menu-open .line-menu.first-line {
    -webkit-transform: rotate(-90deg) translateX(3px);
    -moz-transform: rotate(-90deg) translateX(3px);
    -o-transform: rotate(-90deg) translateX(3px);
    transform: rotate(-90deg) translateX(3px);
}

.line-menu.last-line {
    align-self: flex-end;
    transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    transform-origin: left;
}

.menu-open .line-menu.last-line {
    -webkit-transform: rotate(-90deg) translateX(-3px);
    -moz-transform: rotate(-90deg) translateX(-3px);
    -o-transform: rotate(-90deg) translateX(-3px);
    transform: rotate(-90deg) translateX(-3px);
}

/* Menu Style */

@media (min-width: 993px) {
    .nav-menu-wrapper {
        margin-bottom: -30px;
    }

    .sticky-header .nav-menu-wrapper {
        margin: 0;
    }

    .sticky-header .header-menu-wrap ul {
        padding-left: 0;
    }

    .header-menu-wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        padding-left: 90px;
    }

    .header-menu-wrap:before {
        background-color: var(--white-color);
        width: 6000px;
        height: 100%;
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
    }

    .header-menu-wrap ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .header-menu-wrap ul li {
        display: inline-block;
        position: relative;
        padding: 22px 0;
        margin-right: 5rem;
    }

    .header-menu-wrap ul li>a {
        display: block;
        font-family: "Space Grotesk", sans-serif;
        font-size: 16px;
        letter-spacing: -0.2px;
        font-weight: 600;
        text-transform: capitalize;
        color: var(--heading-color);
        padding: 0;
        margin: 0;
        line-height: 1;
        text-decoration: none;
        -webkit-font-smoothing: antialiased;
        position: relative;
        z-index: 1;
    }

    .header-menu-wrap li ul {
        background-color: var(--white-color);
        box-shadow: 0px 2px 5px 0px rgb(0 0 0 / 10%);
        border-radius: 0;
        width: 220px;
        padding: 0;
        display: block;
        position: absolute;
        left: -35px;
        top: 70px;
        opacity: 0;
        visibility: hidden;
        z-index: 0;
        -webkit-transform: perspective(300px) rotateX(-18deg);
        transform: perspective(300px) rotateX(-18deg);
        -webkit-transition: all 0.2s;
        transition: all 0.2s;
    }

    .header-menu-wrap li:hover>ul {
        -webkit-transform: perspective(300px) rotateX(0deg);
        transform: perspective(300px) rotateX(0deg);
        opacity: 1;
        visibility: visible;
        top: 75px;
        z-index: 99;
    }

    .header-menu-wrap li li {
        display: flex;
        justify-content: space-between;
        padding: 15px 20px;
        margin: 0;
        border-bottom: 1px solid #ddd;
        text-align: left;
        position: relative;
        transition: all 0.2s ease-in-out;
    }

    .header-menu-wrap li li:last-child {
        margin: 0;
        border-bottom: 0;
    }

    .header-menu-wrap li li>a {
        font-family: var(--body-font);
        display: block;
        height: auto;
        line-height: inherit;
        color: var(--heading-color);
        font-weight: 500;
        font-size: 16px;
        text-transform: capitalize;
        line-height: 20px;
        letter-spacing: -0.2px;
        width: 100%;
        -webkit-font-smoothing: antialiased;
    }

    .header-menu-wrap li li:before {
        background-color: #f1f4f9;
        content: "";
        width: 0;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        transition: width .5s linear;
    }

    .header-menu-wrap li li:hover:before {
        width: 100%;
    }

    .header-menu-wrap li li:after {
        background-color: var(--primary-color);
        width: 3px;
        height: 100%;
        content: "";
        position: absolute;
        left: 0px;
        top: 0;
        visibility: hidden;
        opacity: 0;
        transition: all .2s cubic-bezier(.75, 0, .175, 1);
    }

    .header-menu-wrap li li:hover:after {
        visibility: visible;
        opacity: 1;
    }

    .header-menu-wrap li li>a:hover {
        color: var(--heading-color);
    }

    .header-menu-wrap li ul li ul {
        width: 220px;
        position: absolute;
        left: 100%;
        top: 0;
    }

    .header-menu-wrap li ul {
        display: block !important;
    }

    /* Sticky Header */
    .sticky-header {
        background-color: var(--white-color);
        width: 100%;
        position: fixed;
        left: 0;
        top: 0;
        display: block;
        transform: translateY(-100%);
        z-index: 99;
    }

    .sticky-header .top-header {
        display: none;
    }

    .sticky-header .main-header-info:after {
        transform: skewX(31.5deg);
    }

    .sticky-header .nav-menu-wrapper .site-logo {
        display: block;
        max-width: 150px;
    }

    .sticky-header.sticky-fixed-top {
        transition: transform 1s ease;
        will-change: transform;
    }

    .sticky-header.sticky-fixed-top {
        transform: translateY(0);
        box-shadow: 0 10px 60px rgb(0 0 0 / 10%);
    }

    .sticky-header.sticky-fixed-top .header-menu-wrap .nav-menu>li {
        padding: 32px 0;
    }

    .sticky-header.sticky-fixed-top .header-menu-wrap li:hover>ul {
        top: 79px;
    }

    .sticky-fixed-top .menu-right-item .menu-btn {
        height: auto;
        padding: 10px 30px;
    }
}

@media all and (max-width: 1200px) and (min-width: 993px) {
    .main-header-wapper {
        grid-template-columns: 150px 1fr;
    }

    .header-menu-wrap {
        padding-left: 70px;
    }

    .header-menu-wrap ul li {
        margin-right: 20px;
    }
}

.mobile-navigation-menu {
    display: none;
}

@media (max-width: 992px) {
    .top-header {
        display: none;
    }

    .header-menu-wrap {
        position: relative;
        padding: 15px 0;
    }

    .header-menu-wrap::before {
        background-color: #fff;
        width: 3000px;
        height: 100%;
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
    }

    .main-header-info:after {
        transform: skewX(35deg);
    }

    .header-menu-wrap .nav-menu {
        display: none;
    }

    /* Mobile Menu */
    .navigation-menu {
        display: none;
    }

    .menu-right-item .mobile-menu-icon {
        display: block;
    }

    .burger-menu {
        width: 20px;
        height: 18px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        -webkit-transition: transform 330ms ease-out;
        -moz-transition: transform 330ms ease-out;
        -o-transition: transform 330ms ease-out;
        transition: transform 330ms ease-out;
    }

    .menu-open .burger-menu {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .line-menu {
        background-color: #666;
        border-radius: 0;
        width: 100%;
        height: 2px;
    }

    .saas-home .line-menu {
        background-color: var(--white-color);
    }

    .line-menu.line-half {
        width: 50%;
    }

    .line-menu.first-line {
        transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
        transform-origin: right;
    }

    .menu-open .line-menu.first-line {
        -webkit-transform: rotate(-90deg) translateX(3px);
        -moz-transform: rotate(-90deg) translateX(3px);
        -o-transform: rotate(-90deg) translateX(3px);
        transform: rotate(-90deg) translateX(3px);
    }

    .line-menu.last-line {
        align-self: flex-end;
        transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
        transform-origin: left;
    }

    .menu-open .line-menu.last-line {
        -webkit-transform: rotate(-90deg) translateX(-3px);
        -moz-transform: rotate(-90deg) translateX(-3px);
        -o-transform: rotate(-90deg) translateX(-3px);
        transform: rotate(-90deg) translateX(-3px);
    }

    #mobile-menu-close {
        position: absolute;
        right: 18px;
        top: 20px;
        width: 60px;
        height: 60px;
        font-size: 40px;
        color: var(--dark-color);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    #mobile-menu-close:hover {
        color: var(--primary-color);
    }

    .mobile-navigation-menu {
        background-color: rgba(255, 255, 255, 1);
        border-right: 1px solid #eee;
        position: fixed;
        left: -100%;
        top: 0;
        width: 400px;
        height: 100vh;
        padding: 100px 0 50px;
        box-shadow: var(--shadow-sm);
        display: block;
        visibility: hidden;
        opacity: 0;
        transition: all .3s linear;
        z-index: 1000;
    }

    .open-mobile-menu.mobile-navigation-menu {
        left: 0;
        visibility: visible;
        opacity: 1;
        transition: all .3s linear;
    }

    .mobile-navigation-menu .main-menu {
        display: block;
    }

    .mobile-navigation-menu .dropdown-plus {
        width: 100px;
        height: 49px;
        line-height: 49px;
        position: absolute;
        top: 2px;
        right: 32px;
        cursor: pointer;
        z-index: 1;
    }

    .mobile-navigation-menu .dropdown-plus:before,
    .mobile-navigation-menu .dropdown-plus:after {
        position: absolute;
        content: "";
        top: 21px;
        right: 10px;
        width: 10px;
        height: 2px;
        background-color: var(--bg-dark);
    }

    .mobile-navigation-menu .dropdown-plus:after {
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .mobile-navigation-menu .dropdown-plus.dropdown-open:after {
        display: none;
    }

    .mobile-navigation-menu ul {
        padding-left: 0;
    }

    .mobile-navigation-menu ul li {
        position: relative;
        margin: 0;
        display: block;
        padding: 0;
    }

    .mobile-navigation-menu ul li>a {
        display: block;
        padding: 15px 40px;
        font-family: var(--primary-font);
        color: var(--dark-color);
        font-size: 18px;
        line-height: 1;
        font-weight: 700;
    }

    .mobile-navigation-menu ul li:hover>a,
    .mobile-navigation-menu li li:hover>a {
        color: var(--primary-color);
    }

    .mobile-navigation-menu ul li ul li ul,
    .mobile-navigation-menu ul li ul {
        background-color: transparent;
        width: 100%;
        opacity: 1;
        padding: 0;
        visibility: visible;
        position: inherit;
        display: none;
        top: inherit;
        left: inherit;
        box-shadow: none;
    }

    .mobile-navigation-menu li li {
        padding: 0 20px;
    }

    .mobile-navigation-menu li li {
        padding-left: 10px;
    }

    .mobile-navigation-menu li li:last-child {
        border-bottom: none;
    }

    .mobile-navigation-menu li li>a {
        color: var(--grey-color);
        font-weight: 600;
        font-size: 18px;
        padding: 14px 20px 14px 40px;
    }

    .menu-right-item {
        justify-content: flex-end;
    }
}

@media (max-width: 600px) {
    .mobile-navigation-menu {
        width: 100%;
    }
}

/* Search Box */

#popup-search-box {
    position: fixed;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    right: 0;
    white-space: nowrap;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 500ms ease all;
    -moz-transition: 500ms ease all;
    transition: 500ms ease all;
}

.open-search-box #popup-search-box {
    opacity: 1;
    visibility: visible;
}

#searchbox-overlay {
    height: 100%;
    left: 0;
    opacity: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    transition: all 0s ease-in-out;
    width: 100%;
    z-index: -1;
}

.open-search-box #searchbox-overlay {
    opacity: 1;
    z-index: 1002;
    cursor: none;
    transition: all 0.6s ease-in-out;
    transition-delay: 0.3s;
}

#popup-search-box .box-inner-wrap {
    background-color: var(--white-color);
    border-bottom: 1px solid #eee;
    padding: 80px 0;
    width: 100%;
    transform: translateY(-100%);
    transition: all ease-in-out 0.3s;
    box-shadow: 0 10px 60px rgb(0 0 0 / 10%);
}

.open-search-box #popup-search-box .box-inner-wrap {
    transform: translateY(0);
}

#popup-search-box .box-inner-wrap form {
    position: relative;
    margin: 0 auto;
}

#popup-search-box .box-inner-wrap input::-webkit-input-placeholder {
    /* Edge */
    color: var(--grey-color);
}

#popup-search-box .box-inner-wrap input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: var(--grey-color);
}

#popup-search-box .box-inner-wrap input::placeholder {
    color: var(--grey-color);
    font-size: 18px;
}

#popup-search-box .box-inner-wrap input {
    background: #fff;
    font-family: "Space Grotesk", sans-serif;
    width: 600px;
    padding: 15px 30px;
    padding-right: 80px;
    border: 1px solid #eee;
    font-size: 18px;
    color: var(--grey-color);
    border-radius: 50px;
}

#popup-search-box .box-inner-wrap input::-webkit-input-placeholder {
    color: #666 !important;
}

#popup-search-box .box-inner-wrap input::-moz-placeholder {
    /* Firefox 18- */
    color: #666 !important;
}

#popup-search-box .box-inner-wrap input::-moz-placeholder {
    /* Firefox 19+ */
    color: #666 !important;
}

#popup-search-box .box-inner-wrap input:-ms-input-placeholder {
    color: #666 !important;
}

#popup-search-box .box-inner-wrap input:focus {
    outline: none;
    border: 1px solid #ff9900;
}

#popup-search-box .box-inner-wrap button {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 100%;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--grey-color);
    font-size: 30px;
    -webkit-transition: 500ms ease all;
    -moz-transition: 500ms ease all;
    transition: 500ms ease all;
}

#popup-search-box .box-inner-wrap button:hover {
    color: var(--primary-color);
}

#popup-search-box .box-inner-wrap button:focus {
    outline: none;
}

.search-close {
    font-size: 30px;
    color: var(--grey-color);
    width: 40px;
    height: 40px;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.85, 0.45, 1);
}

.search-close:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

@media (max-width: 767px) {
    .main-header {
        background-color: #fff;
    }

    .top-header {
        display: none;
    }

    #popup-search-box .box-inner-wrap input {
        width: 95%;
    }

    #popup-search-box .box-inner-wrap button {
        right: 10px;
    }
}

@media screen and (max-width: 600px) {
    #popup-search-box .box-inner-wrap form {
        width: 90%;
    }
}

/*===================================================
    03 About Section
====================================================*/

.about-section {}

.about-img-wrap {
    position: relative;
}

.about-img-wrap img {
    border-radius: 3px;
}

.about-img-wrap img:nth-child(1) {
    width: 312px;
    height: 100%;
    height: 410px;
}

.about-img-wrap img:nth-child(2) {
    width: 340px;
    position: absolute;
    right: -60px;
    bottom: -30px;
    /* bottom: 11px; */
    height: 260px;
}

/* Img Style 2 */

.about-img-wrap.flip {
    text-align: right;
}

.about-img-wrap.flip img:nth-child(2) {
    right: auto;
    left: 0;
}

.experience {
    background-color: var(--primary-color);
    /* background-color: var(--secondary-color);    */
    /* border-top: 4px solid var(--primary-color);
    border-top: 4px solid var(--heading-color); */
    box-shadow: var(--box-shadow);
    padding: 20px;
    border-radius: 3px;
    position: absolute;
    right: 98px;
    top: 40px;
}

.experience h3 {
    color: white;
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
}

.experience h3 span {
    font-family: var(--body-font);
    /* color: var(--grey-color); */
    color: white;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0;
    display: block;
    margin-top: 5px;
}

/*Experience Text*/

.experience-text {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 20px;
    align-items: center;
    margin: 20px 0;
}

.experience-text h2 {
    background-image: url(../img/text-bg.jpg);
    background-repeat: repeat;
    background-size: contain;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 150px;
    line-height: 1;
    font-weight: 700;
    margin: 0;
}

.experience-text h3 {
    border-left: 1px solid #bbb;
    padding-left: 20px;
    line-height: 26px;
    font-size: 18px;
    margin: 0;
}

.about-features {
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin: 30px 0;
}

.about-features li {
    background-color: var(--bg-grey);
    display: grid;
    grid-template-columns: 70px 1fr;
    align-items: center;
    column-gap: 20px;
    padding: 30px 20px;
    position: relative;
}

.about-features li:before {
    background-color: var(--secondary-color);
    width: 50%;
    height: 3px;
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.about-features li .about-icon {
    background-color: var(--secondary-color);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.about-features li .about-icon i {
    color: var(--white-color);
    font-size: 50px;
}

.about-features li h3 {
    margin-bottom: 5px;
}

.about-features li p {
    margin: 0;
    font-size: 16px;
}

.about-author {
    display: flex;
    align-items: center;
    column-gap: 15px;
}

.about-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.about-author h3 {
    margin: 0;
    line-height: 1;
    font-size: 18px;
}

.about-author h3 span {
    font-family: var(--body-font);
    color: var(--grey-color);
    font-size: 16px;
    font-weight: 500;
    display: block;
    margin-top: 10px;
}

@media (max-width: 992px) {
    .about-img-wrap {
        margin-bottom: 40px;
    }

    .about-img-wrap.flip {
        margin-bottom: 0;
    }

    .about-img-wrap img:nth-child(2) {
        right: 0;
        bottom: 0;
    }

    .experience {
        right: 40%;
        top: 58px;
    }
}

@media (max-width: 767px) {
    .about-img-wrap img:nth-child(2) {
        width: 200px;
    }

    .experience {
        right: 0;
        top: 130px;
    }

    .about-features {
        display: grid;
        grid-gap: 20px;
    }

    .about-author {
        display: none;
    }

    .experience-text h2 {
        font-size: 80px;
    }

    .experience-text {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }

    .experience-text h3 {
        padding-left: 0;
        border-left: 0;
    }

    .about-img-wrap.flip {
        margin-top: 40px;
    }
}

/*===================================================
    04 Service Section
====================================================*/

.service-section {
    position: relative;
}

.service-section .bg-half {
    background-image: url(../img/service-background.jpg);
    height: 517px;
    filter: grayscale(50%);
}

.service-section .bg-half::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    /* Change the color and opacity as needed */
}

.service-item {
    box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.09);
    height: 500px;
    background-color: #fff;

}

.innvo h2,
.innvo p,
.software_use p,
.software_use .section-heading h2 {
    color: #fff !important;
}

.service-item-inner {
    background-color: #fff;
    border-radius: 3px;
    overflow: hidden;
}

.service-item .service-thumb {
    overflow: hidden;
}

.service-item .service-thumb img {
    transition: all .5s cubic-bezier(.160, .85, .45, 1);
}

.service-item:hover .service-thumb img {
    transform: scale(1.02);
}

.service-content {
    position: relative;
    padding: 25px 15px 25px;
    text-align: center;
    transition: all .5s cubic-bezier(.160, .85, .45, 1);
    background-color: #fff;
}

.service-content:before {
    background-color: var(--primary-color);
    content: "";
    width: 60%;
    height: 3px;
    border-radius: 3px;
    position: absolute;
    left: 50%;
    top: -1px;
    transform: translateX(-50%);
    transition: all .5s cubic-bezier(.160, .85, .45, 1);
}

.service-item:hover .service-content:before {
    width: 80%;
}

.service-icon {
    background-color: #fff;
    box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: -40px;
    transform: translateX(-50%);
}

.service-icon i {
    color: var(--primary-color);
    font-size: 45px;
}

.service-content h3 {
    color: var(--heading-color);
    font-weight: 600;
    line-height: 1.2;
}

.service-content p {
    margin: 0;
}

.service-content .read-more {
    background-color: var(--primary-color);
    font-family: var(--primary-font);
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--white-color);
    padding: 5px 20px;
    border-radius: 1px;
    position: absolute;
    left: 50%;
    bottom: -100%;
    transform: translateX(-50%);
}

.service-content .read-more:hover {
    background-color: var(--bg-dark);
    color: #fff;
}

.service-item:hover .read-more {
    transition-duration: 600ms;
    bottom: 0;
}

.service-item:hover .service-content {
    padding-bottom: 45px;
}

.service-cta {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.service-cta-inner {
    background-color: var(--bg-grey);
    border: 1px dashed #d5d5d5;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    column-gap: 30px;
}

.service-cta h4 {
    margin: 0;
}

@media (max-width: 767px) {
    .service-cta {
        margin-top: 30px;
    }

    .service-cta-inner {
        flex-direction: column;
        row-gap: 15px;
        text-align: center;
        padding: 20px;
    }
}

/*===================================================
    05 Service Details
====================================================*/

.service-details {}

.service-details .company-info li:not(:last-of-type) {
    margin-bottom: 15px;
}

.service-details .company-info li a {
    background-color: #fff;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-details .company-info li a div {
    display: flex;
    align-items: center;
}

.service-details .company-info li a div>i {
    font-size: 25px;
    color: var(--primary-color);
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid #ddd;
}

.service-details .company-info li a h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    margin: 0;
    transition: all 0.3s ease;
}

.service-details .company-info li a:hover h3 {
    color: var(--primary-color);
}

.service-details .company-info li a>i {
    background-color: var(--primary-color);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 2px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-form .contact-form-group .form-control {
    background-color: #fff;
}

.overview-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.overview-wrap ul {
    list-style: inside;
}

.overview-wrap h3 {
    font-weight: 700;
    font-size: 22px;
}

.overview-wrap .overview-list li:not(:last-of-type) {
    margin-bottom: 8px;
}

@media (max-width: 767px) {
    .overview-wrap {
        grid-template-columns: 1fr;
    }
}

/*===================================================
    08 Project Details
====================================================*/


.project-details .project-thumb {
    height: 380px;
}

/*===================================================
    10 Counter Section
====================================================*/

.counter-wrap {
    padding: 40px;
    position: relative;
}

.counter-wrap:before {
    background-color: var(--bg-dark);
    background-image: url(../img/square-pattern.png);
    background-size: 20px;
    content: "";
    width: 100%;
    /* width: 4000px; */
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.contact-form-group .form-control {
    background-color: var(--bg-grey);
    height: 50px;
    border-radius: 0;
    border: 1px solid #eee;
    box-shadow: none;
    outline: none;
}

.contact-form-group .message .form-control {
    height: 120px;
}

.ajax-form-msg {
    margin-top: 15px;
}

@media (min-width: 768px) {
    .contact-form-group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 15px;
    }
}
@media (min-width: 768px) {
    .form-field.submit-btn, .contact-form-group .form-field.message {
        grid-column-end: span 2;
    }
}
/*===================================================
    11 Testimonial Section
====================================================*/

.testimonial-section {
    position: relative;
    z-index: 1;
}

.testimonial-carousel {
    overflow: hidden;
    position: relative;
}

.testimonial-section .swiper-slide {
    width: 100% !important;

}

@media (min-width: 993px) {
    .testimonial-carousel {
        margin: -30px;
    }
}

.testimonial-carousel .carousel-pagination {
    position: absolute;
}

.testimonial-item {
    margin: 30px;
    position: relative;
}

.testimonial-item .quote {
    background-color: var(--primary-color);
    color: var(--heading-color);
    font-size: 25px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 50px;
    top: -20px;
}

.testimonial-item p {
    color: var(--white-color);
    font-size: 19px;
    line-height: 32px;
    font-weight: 500;
    letter-spacing: -0.5px;
    margin-top: 10px;
}

.carousel-item p {
    padding-left: 5rem;
    padding-right: 5rem;
    text-align: center;
}

.testi-meta {
    display: grid;
    grid-template-columns: 60px 1fr;
    grid-gap: 15px;
    align-items: center;
    margin-top: 20px;
}

.testi-thumb {
    display: flex;
    color: var(--white-color);
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testi-thumb img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.testi-content h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 10px;
    color: var(--white-color);
}

.testi-content h5 {
    font-family: var(--body-font);
    color: var(--white-color);
    font-size: 14px;
    /* letter-spacing: 2px;
    text-transform: uppercase; */
    margin: 0;
}

.testimonial-section .carousel-control-prev {
    left: -9%;
}

.testimonial-section .carousel-control-next {
    right: -9%;
}

.testimonial-section .carousel-indicators {
    bottom: -42%;
}

.testimonial-section .carousel-control-next,
.testimonial-section .carousel-control-prev {
    top: -80%;
    width: auto;
}

/*Testi Thumb*/

.testi-thumb-wrapper {
    width: 100%;
    height: 420px;
    position: relative;
}

.testi-thumb-active {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.testi-thumb-active .testi-thumb-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* border-radius: 50%;
    border: 6px solid #fff;
    box-shadow: 0px 0px 20px 0.5px rgb(0 0 0 / 20%); */
    transition: all 0.3s linear;
}

.testi-thumb-wrapper .testi-custom-pagination {
    position: absolute;
    width: 100%;
    height: 100%;
    left: auto;
    right: 0;
    top: 0;
    bottom: auto;
}

.testi-thumb-wrapper .testi-custom-pagination>span {
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border: 5px solid #fff;
    box-shadow: 0px 0px 20px 0.5px rgb(0 0 0 / 20%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%) scale(1);
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
}

/*===================================================
    13 Sponsor Section
====================================================*/

.sponsor-section {
    padding: 60px 0;
}

.sponsor-carousel {
    overflow: hidden;
}

.sponsor-carousel .swiper-slide {
    text-align: center;
}

.sponsor-carousel .swiper-slide img {
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
}

.sponsor-carousel .swiper-slide:hover img {
    cursor: pointer;
    opacity: 1;
    transform: translateY(-3px);
}

.service .swiper-slide {
    width: 399px !important;
    height: 540px;

}

.service .sponsor-carousel .swiper-slide img {
    width: 398px;
    height: 266px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service .service-item {
    border: 1px solid #ddd;
    padding: 8px !important;
    padding: 10;
    height: 520px;
    border-radius: 10px;
}

/*Sponsor Grid*/

.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border-left: 1px solid #ddd;
    align-items: center;
}

@media (max-width: 600px) {
    .sponsor-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sponsor-item {
    padding: 60px 40px;
    text-align: center;
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 100%;
    justify-content: center;
    border: 1px solid #ddd;
    border-left: 0;
}

.sponsor-item img {
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
}

.sponsor-item:hover img {
    cursor: pointer;
    opacity: 1;
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .sponsor-item {
        padding: 40px 20px;
    }
}

/*===================================================
    15 Contact Section
====================================================*/

.map-wrapper {
    height: 400px;
}

.contact-section {
    background-image: url(../img/gradiant-bg-2.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-heading {
    margin-bottom: 40px;
}

.contact-details li {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    color: var(--heading-color);
    font-weight: 500;
}

.contact-details li i {
    background: var(--primary-color);
    color: #fff;
    font-size: 25px;
    margin-right: 15px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 1px;
}

/*===================================================
    16 Footer Section
====================================================*/

.footer-section {
    background-image: url(../img/footer-bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    padding-top: 100px;
    position: relative;
    z-index: 1;
}

.footer-section:before {
    background: var(--bg-dark);
    opacity: 0.9;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.footer-section:after {
    background-image: url(../img/square-pattern.png);
    background-size: 20px;
    opacity: 0.8;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.footer-area {
    padding-bottom: 10px;
}

.footer-area .col-lg-3:nth-child(1) {
    padding: 20px;
    padding-bottom: 35px;
    background: #000;
    /* background: #00173c; */
    border-top: 4px solid #ff5e15;
}

.footer-widget .footer-logo {
    margin-bottom: 20px;
    display: block;
}

.footer-logo img {
    max-width: 190px;
}

.footer-area .col-lg-3:nth-child(2) {
    padding-left: 70px;
}

.footer-widget h3 {
    color: var(--white-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-widget li,
.footer-widget li a,
.footer-widget p {
    color: var(--light-grey-color);
}

.footer-widget li:not(:last-of-type) {
    margin-bottom: 10px;
}

.footer-widget ul:not(.footer-social) li a {
    position: relative;
}

.footer-widget ul:not(.footer-social) li a:before {
    position: absolute;
    content: "";
    height: 2px;
    width: 10px;
    left: -15px;
    top: 50%;
    opacity: 0;
    transform: translateY(-50%);
    border: 1px solid var(--primary-color);
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}

.footer-widget ul:not(.footer-social) li a:hover::before {
    opacity: 1;
}

.footer-widget ul:not(.footer-social) li a:hover {
    color: var(--primary-color);
    margin-left: 15px;
}

.footer-social {
    margin-top: 25px;
}

.footer-social li {
    display: inline-block;
}

.footer-social li:not(:last-of-type) {
    margin-right: 5px;
}

.footer-social li a {
    background-color: var(--primary-color);
    display: inline-block;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.footer-social li a:after {
    background-color: var(--secondary-color);
    width: 0;
    height: 40px;
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition: 0.4s;
}

.footer-social li a:hover {
    color: #fff;
}

.footer-social li:hover a:after {
    left: 0;
    width: 100%;
    visibility: visible;
    opacity: 1;
}

.subscribe-form .form-control {
    height: 50px;
    border-radius: 0;
    outline: none;
    border: none;
    box-shadow: none;
    padding-right: 80px;
}

.subscribe-form .mc-fields {
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.subscribe-form .submit {
    background-color: var(--primary-color);
    font-size: 28px;
    padding: 0;
    width: 70px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

#mc-form-messages {
    display: none;
}

#mc-form-messages.alert-danger,
#mc-form-messages.alert-success {
    display: block;
}

.copyright-text {
    background-color: var(--bg-dark);
    padding: 25px 0;
    text-align: center;
    /* color: var(--light-grey-color); */
}

.copyright-text a {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .footer-section {
        padding-top: 50px;
    }

    .footer-area {
        padding-bottom: 30px;
    }

    .footer-area .col-lg-3:nth-child(2) {
        padding-left: 15px;
    }
}

.bg_blue {
    background-color: #E7FBFF;
}

.free_quto {
    padding: 3rem 0 4rem;
}

/* call to action */
.call-action-bg {
    position: absolute;
    left: -10%;
    top: 0;
    transform: scale(1.2);
    z-index: -1;
}

.call-to-action-wrap {
    position: relative;
    z-index: 1;
}

.bg-bottom {
    background-repeat: no-repeat;
    background-position: bottom center;
}

.section-padding {
    padding: 120px 0px;
}

.bg-cover {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.text-white {
    color: #fff !important;
}

.call-to-action-wrap::before,
.call-to-action-wrap::after {
    width: 100%;
    height: 100%;
    position: absolute;
    background: #00255e;
    content: "";
    left: 0;
    top: 0;
    opacity: .77;
    z-index: -1;
}

.qc_polity_content {
    overflow: hidden;
    max-height: 100px;
    /* Adjust based on how much text you want visible initially */
    transition: max-height 0.3s ease;
}

.qc_polity_content.expanded {
    max-height: 500px;
    /* Adjust to fit the expanded content */
}

.read-more-show,
.read-more-hide {
    display: inline-block;
    margin-top: 10px;
    cursor: pointer;
    color: var(--primary-color);
    text-decoration: underline;
}

.policy img {
    width: 75%;
    padding: 3rem 0;
}

.innvo {
    position: relative;
}

.innvo-svg svg {
    position: absolute;
    left: 13%;
    top: -55px;
}



.service-grid {
    position: relative;
    margin-top: -40px
}

.service-grid .bg-shape {
    position: absolute;
    bottom: -200px;
    left: 0;
    width: 100%;
    opacity: 0;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    pointer-events: none
}

.service-grid .bg-shape img {
    width: 100%
}

.service-grid_content {
    box-shadow: 0px 10px 15px rgba(8, 14, 28, 0.06);
    background-color: var(--white-color);
    border-radius: 10px;
    text-align: center;
    padding: 70px 15px 0px 15px;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    overflow: hidden;
    height: 325px;
}

.service-grid_icon {
    height: 80px;
    width: 80px;
    line-height: 78px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    text-align: center;
    position: relative;
    z-index: 2;
    margin: 0 auto 0 auto;
    -webkit-transform: translateY(40px);
    -ms-transform: translateY(40px);
    transform: translateY(40px)
}

.service-grid_icon img {
    position: relative;
    z-index: 2;
    border-radius: 50px;
    width: 65px;
    /* -webkit-filter: brightness(0) invert(1); */
    /* filter: brightness(0) invert(1); */
    /* -webkit-transition: 0.4s ease-in-out; */
    /* transition: 0.4s ease-in-out;*/
}

.service-grid_icon:after,
.service-grid_icon:before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--secondary-color);
    z-index: -2;
    border-radius: 50%;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s
}

.service-grid_icon:after {
    -webkit-animation-delay: 2s;
    animation-delay: 2s
}

.service-grid .box-title {
    font-size: 19px;
    margin-bottom: 15px
}

.service-grid .box-title a:hover {
    color: var(--smoke-color2)
}

.service-grid_text {
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    max-width: 230px;
    margin: 0 auto 22px auto
}

.service-grid .th-btn {
    padding: 15.5px 18px
}

.service-grid:hover .bg-shape {
    bottom: 0;
    opacity: 1
}

.service-grid:hover .box-title {
    color: var(--white-color)
}

.service-grid:hover .th-btn {
    background-color: var(--white-color);
    color: var(--secondary-color)
}

.service-grid:hover .th-btn:hover {
    color: var(--white-color)
}

.service-grid:hover .service-grid_content {
    background-color: var(--secondary-color);
}

.service-grid:hover .service-grid_icon {
    background-color: var(--white-color)
}

.service-grid:hover .service-grid_icon img {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-filter: none;
    filter: none
}

.service-grid:hover .service-grid_icon:before,
.service-grid:hover .service-grid_icon:after {
    background-color: var(--white-color)
}

.service-grid:hover .service-grid_text {
    color: var(--white-color)
}

.service-grid_icon:after,
.service-grid_icon:before {
    -webkit-animation-duration: var(--ripple-ani-duration);
    animation-duration: var(--ripple-ani-duration);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: ripple;
    animation-name: ripple;
}

@-webkit-keyframes ripple {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }

    30% {
        opacity: 0.4
    }

    100% {
        -webkit-transform: scale(1.8);
        transform: scale(1.8);
        opacity: 0
    }
}

.commonspace-top .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    padding: 30px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box;
}

.curveWrap {
    background: #FFF;
    width: 100%;
    height: 300px;
}

.curveWrap .curve {
    stroke-linecap: round;
    stroke-opacity: 0.7;
}

.curveWrap .curve path {
    transform-origin: center;
}

.curveWrap .curve path:nth-child(6n + 1) {
    stroke: #3379B7;
}

.curveWrap .curve path:nth-child(6n + 2) {
    stroke: #1B3F5F;
}

.curveWrap .curve path:nth-child(6n + 3) {
    stroke: #67A1D5;
}

.curveWrap .curve path:nth-child(6n + 4) {
    stroke: #BFE2FF;
}

.curveWrap .curve path:nth-child(1) {
    stroke-width: 24;
    animation: curve 35s linear 1.4s infinite;
}

.curveWrap .curve path:nth-child(2) {
    stroke-width: 21;
    animation: curve 35s linear 2.8s infinite;
}

.curveWrap .curve path:nth-child(3) {
    stroke-width: 48;
    animation: curve 35s linear 4.2s infinite;
}

.curveWrap .curve path:nth-child(4) {
    stroke-width: 41;
    animation: curve 35s linear 5.6s infinite;
}

@keyframes curve {
    0% {
        transform: rotateX(0deg) skewY(0deg);
        stroke-opacity: 0.7;
    }

    50% {
        transform: rotateX(360deg) skewY(8deg);
        stroke-opacity: 1;
    }

    100% {
        transform: rotateX(0deg) skewY(0deg);
        stroke-opacity: 0.7;
    }
}


.wave-container {
    position: relative;
    z-index: 1;
}

.wave-container .wrap {
    position: relative;
}

.wave-container .wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
}

.wave-container .wave svg {
    position: absolute;
    bottom: 0px;
    left: 50%;
    height: 250%;
    width: 100%;
    transform: translateY(13%) translateX(-50%);
    min-height: 150px;
    min-width: 420px;
}

.wave-container path {
    stroke-width: 2;
    stroke: #fff;
    fill: white;
}

.hide {
    display: none;
}

.padding-left-5 {
    padding-left: 7%;
}

.footer-social path,
.header-social-share path {
    fill: white;
}

@media (max-width: 767px) {
    .main-header-info:before {
        /* height: calc(100% + 1px);
        left: -1px;
        top: -1px; */
        display: none;
    }

    .main-header-info:after {
        transform: skewX(41.5deg);
        display: none;
    }

    .site-logo {
        left: 0;
    }

    .wave-container .wave {
        display: none;
    }

    .commonspace-top .swiper-wrapper {
        flex-direction: column;
        align-items: center;

    }

    .swiper-slide {
        margin-right: 0 !important;
        margin-bottom: 3rem;
    }

    .outside-spacing {
        display: grid !important;
        grid-template-columns: auto 1fr;
        grid-gap: 2rem;
        text-align: center;
        padding-left: 2rem;
    }
}