/*===================================================
    Table of Contets
=====================================================

    01 Navigation
    02 Hero Section
    03 App Hero
    04 SaaS Hero
    05 Tech Hero Section
    06 Sponsor Section
    07 Promo Section
    08 App Promo Section
    09 Content Section
    10 Project Section
    11 Project Details
    12 WorkFlow Section
    13 Short Feature Section
    14 Features Tab Section
    15 Service Section
    16 Service Details
    17 Step Section
    18 Testimonial Section
    19 Counter Section
    20 Team Section
    21 Team Details
    22 Pricing Section
    23 Pricing Table Section
    24 FAQ Section
    25 CTA Section
    26 Contact Section
    27 Footer Section


=====================================================
    @ThemeEaster
====================================================*/

/*===================================================
    01 Navigation
====================================================*/
header.main-header.transparent {
    background-color: transparent;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    border: none;
    transition: all 0.3s ease-in-out;
    z-index: 99;
}

body:not(.viewport-lg) header.main-header.transparent {
    position: absolute;
}

.navigation-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Sticky Header */
header.main-header.transparent.sticky-fixed-top {
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    background-color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid #eee;
}

.saas-home header.main-header.transparent.sticky-fixed-top {
    background-color: #191fb3;
    box-shadow: 0px 1px 3px rgba(3, 4, 28, 0.10);
    border: none;
}

.main-menu {
    display: none;
    column-gap: 30px;
}

.navigation-inner .site-logo {
    max-width: 170px;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 14px;
}

@media (max-width: 1200px) {
    .navigation-inner {
        grid-template-columns: 130px 1fr 130px;
        grid-column-gap: 30px;
    }

    .navigation-menu {
        padding: 0 35px;
        column-gap: 20px;
    }

    .main-menu {
        column-gap: 20px;
    }
}

@media (min-width: 992px) {
    .navigation-wrapper {
        background-color: transparent;
    }

    .sticky-header {
        background-color: #fff;
        width: 100%;
        position: fixed;
        left: 0;
        top: 0;
        transform: translateY(-100%);
        z-index: 99;
    }

    .sticky-header header.main-header {
        background-color: #fff;
        border-bottom: 1px solid #eee;
    }

    .sticky-header .navigation-menu {
        box-shadow: none;
    }

    .sticky-header.sticky-fixed-top {
        transition: transform 1s ease;
        will-change: transform;
        transform: translateY(0);
    }

    header.main-header.transparent.sticky-fixed-top .navigation-menu {
        height: 80px;
    }

    .navigation-menu {
        height: 90px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: all 0.3s ease-in-out;
    }

    .main-menu {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        height: 100%;
    }

    .main-menu li {
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .main-menu li i.fa-solid {
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .main-menu li.dropdown_menu {
        padding-right: 14px;
    }

    .main-menu li.dropdown_menu i {
        transition: all 200ms linear;
        font-size: 14px;
    }

    .main-menu li.dropdown_menu:hover i {
        transform: rotateZ(-180deg);
    }

    .main-menu li a {
        font-family: var(--primary-font);
        color: var(--heading-color);
        font-size: 15px;
        line-height: 1;
        font-weight: 700;
        position: relative;
    }

    .main-menu li a:before {
        background-color: var(--primary-color);
        content: "";
        position: absolute;
        left: 0;
        bottom: -3px;
        display: inline-block;
        width: 100%;
        height: 2px;
        -webkit-transform-origin: left;
        -ms-transform-origin: left;
        transform-origin: left;
        -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transition: 0.3s cubic-bezier(0.45, 0.1, 0, 0.95);
        -o-transition: 0.3s cubic-bezier(0.45, 0.1, 0, 0.95);
        transition: 0.3s cubic-bezier(0.45, 0.1, 0, 0.95);
    }

    .main-menu li a:hover:before {
        -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
        transform: scaleX(1);
    }

    .main-menu li ul {
        background-color: #fff;
        border: 1px solid #eee;
        padding: 16px 0;
        width: 250px;
        position: absolute;
        top: 100%;
        left: -28px;
        border-radius: 10px;
        visibility: hidden;
        opacity: 0;
        z-index: 1;
        -webkit-transform: rotate3d(1, 0, 0, -90deg);
        transform: rotate3d(1, 0, 0, -90deg);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
        transition: all .6s ease;
    }

    .main-menu li:hover ul {
        visibility: visible;
        transition: all .6s ease;
        opacity: 1;
        transform: none;
    }

    .main-menu li li {
        margin: 0 10px;
        padding: 10px 18px;
    }

    .main-menu li li a {
        font-weight: 600;
        display: block;
        color: var(--gray-color);
        position: relative;
    }

    .main-menu li li a:before {
        background-color: var(--primary-color);
        content: "";
        width: 0;
        height: 2px;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        transition: all .5s ease-in-out;
    }

    .main-menu li:hover li.dropdown_menu > i {
        position: absolute;
        right: 0;
        top: 10px;
        transform: rotateZ(-90deg);
    }

    .main-menu li:hover li a:hover {
        color: var(--primary-color);
        padding-left: 15px;
    }

    .main-menu li:hover li a:hover:before {
        width: 10px;
    }

    .main-menu li:hover li ul {
        left: 100%;
        top: 10%;
        visibility: hidden;
        opacity: 0;
        transition: all 200ms linear;
    }

    .main-menu li:hover li:hover ul {
        top: 0;
        visibility: visible;
        transition: all 200ms linear;
        opacity: 1;
    }
}

.mobile-menu-icon,
.mobile-navigation-menu {
    display: none;
}

@media (max-width: 992px) {
    .navigation-inner {
        grid-template-columns: 1fr 1fr;
    }

    .navigation-inner .site-logo {
        padding: 15px 0;
    }

    /* Mobile Menu */
    .navigation-menu {
        display: none;
    }

    .mobile-menu-icon {
        display: block;
        margin-left: auto;
    }

    .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;
    }

    .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 {
        -webkit-backdrop-filter: blur(15px);
        backdrop-filter: blur(15px);
        background-color: rgba(255, 255, 255, 0.8);
        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;
        overflow-y: scroll;
        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;
    }
}

@media (max-width: 600px) {
    .mobile-navigation-menu {
        width: 100%;
    }
}


@keyframes sidebar-close-anim {
    0% {
        clip-path: inset(0 0 0 0);
        -webkit-clip-path: inset(0 0 0 0);
    }

    50% {
        clip-path: inset(0 0 0 100%);
        -webkit-clip-path: inset(0 0 0 100%);
    }

    51% {
        clip-path: inset(0 100% 0 0);
        -webkit-clip-path: inset(0 100% 0 0);
    }

    100% {
        clip-path: inset(0 0 0 0);
        -webkit-clip-path: inset(0 0 0 0);
    }
}

/* Popup Sidebox */
#sidebar-overlay,
.sidebar-trigger,
.sidebar-area {
    display: none;
}

@media (min-width: 992px) {
    .sidebar-trigger {
        display: block;
    }

    .sidebar-area {
        -webkit-backdrop-filter: blur(15px);
        backdrop-filter: blur(15px);
        background-color: rgba(255, 255, 255, 0.8);
        border-left: 1px solid #eee;
        padding: 100px 50px;
        position: fixed;
        right: -380px;
        top: 0;
        width: 380px;
        height: 100%;
        z-index: 9999;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        visibility: hidden;
        transition: all .6s cubic-bezier(.75, 0, .175, 1);
    }

    .open-sidebar .sidebar-area {
        right: 0;
        visibility: visible;
    }

    .sidebar-trigger.close {
        position: absolute;
        right: 30px;
        top: 30px;
        color: var(--grey-color);
    }

    .sidebar-trigger.close svg {
        fill: currentColor;
        stroke: none;
        width: 20px;
        height: 20px;
    }

    .sidebar-content {
        text-align: center;
    }

    .sidebar-content .site-logo {
        margin-bottom: 40px;
    }

    .sidebar-content .site-logo img {
        max-width: 200px;
    }

    .sidebar-content .sidebar-info li {
        font-size: 18px;
    }

    .sidebar-content .sidebar-social li {
        display: inline-block;
        margin: 0 3px;
        padding-top: 30px;
    }

    .sidebar-content .sidebar-social li a {
        display: inline-block;
        border: 1px solid #ddd;
        font-size: 16px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .sidebar-content .sidebar-social li a:after {
        background-color: var(--primary-color);
        width: 40px;
        height: 40px;
        border-radius: 59%;
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        opacity: 1;
        transform: translate(-50%, -50%) scale(0);
        z-index: -1;
        visibility: hidden;
        opacity: 0;
        transition: 0.4s;
    }

    .sidebar-content .sidebar-social li a:hover {
        border: 1px solid var(--primary-color);
        color: #fff;
    }

    .sidebar-content .sidebar-social li:hover a:after {
        visibility: visible;
        opacity: 1;
        transition: 0.4s;
        transform: translate(-50%, -50%) scale(1);
    }

    #sidebar-overlay {
        display: block;
        height: 100%;
        left: 0;
        opacity: 0;
        overflow: hidden;
        position: fixed;
        top: 0;
        transition: all 0s ease-in-out;
        width: calc(100% - 400px);
        z-index: -1;
    }

    .open-sidebar #sidebar-overlay {
        opacity: 1;
        z-index: 1002;
        transition: all 0.6s ease-in-out;
        transition-delay: 0.3s;
    }
}

/*===================================================
    02 Hero Section
====================================================*/
.hero-section {
    background-image: url(../img/gradiant-bg-1.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-content h3 {
    background-color: #f62b2be0;
    color: whitesmoke;
    display: inline-flex;
    align-items: center;
    column-gap: 5px;
    border-radius: 3px;
    padding: 5px 15px;
    font-size: 16px;
    line-height: 1;
    margin-bottom: 30px;
}

.hero-content .hand-waving {
    width: 20px;
}

.hero-content h1 {
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.hero-content p {
    margin-bottom: 20px;
}

.hero-img-holder {
    width: 100%;
    height: 600px;
    position: relative;
    z-index: 1;
}

.hero-img-holder .animated-shape {
    background: #eceeff99;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    width: 700px;
    height: 700px;
    max-width: inherit;
    position: absolute;
    right: -60%;
    top: -25%;
    opacity: 0.3;
}

.hero-img-holder .js-atropos {
    transform: translateY(90px);
}

.hero-img-holder img {
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: 600px;
}

.hero-img-holder .atropos-inner {
    position: relative;
}

.hero-elements {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.hero-elements > div {
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
}

@media (max-width: 992px) {
    p br {
        display: none;
    }

    .hero-section {
        height: auto;
        padding: 120px 0 0;
        overflow: hidden;
    }

    .hero-content {
        margin-bottom: 50px;
        text-align: center;
    }

    .hero-content .btn-group {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 40px;
        line-height: 48px;
        margin-bottom: 20px;
    }

    .hero-img-holder {
        margin-left: -50px;
    }

    .hero-img-holder .js-atropos {
        transform: translateY(0);
    }

    .hero-elements > div:nth-child(2) {
        right: 12%;
    }

    .hero-elements > div:nth-child(3) {
        right: 10%;
    }

    .hero-elements > div:nth-child(4) {
        right: 20%;
    }

    .hero-img-holder .animated-shape {
        right: -10%;
        top: 5%;
    }
}

@media (max-width: 767px) {
    .hero-section {
        overflow: hidden;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 20px;
    }

    .hero-img-holder {
        display: none;
    }

    .hexagon-pattern.left {
        width: 70%;
    }
}

/*===================================================
    05 Tech Hero Section
====================================================*/
.tech-hero {
    background-image: url(../img/gradiant-bg-2.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.tech-hero .hero-content h1 {
    font-size: 52px;
}

.tech-hero .hero-content h1 span {
    -webkit-text-stroke: 2px var(--heading-color);
    -webkit-text-fill-color: transparent;
}

.tech-hero .hero-content P {
    font-size: 18px;
    color: var(--heading-color);
}

.tech-hero .default-btn {
    background: #00c16e;
}

.tech-img-holder {
    position: relative;
    width: 100%;
    height: 100vh;
}

.tech-img-holder img {
    position: absolute;
    right: 0;
    bottom: 0;
}

.tech-img-holder:before {
    background-color: #f62b2b9c;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    content: "";
    position: absolute;
    left: 5%;
    top: 20%;
}

@media (max-width: 992px) {
    .tech-hero {
        height: auto;
    }

    .tech-hero .hero-content {
        padding-top: 150px;
    }

    .tech-img-holder {
        height: 770px;
        margin-top: 40px;
    }

    .it-content-img {
        margin: 0 auto;
    }
}


@media (max-width: 767px) {
    .tech-hero .hero-content h1 {
        font-size: 42px;
        line-height: 48px;
    }

    .tech-hero .hero-content h1 br {
        display: none;
    }

    .tech-hero .hero-content h1 span {
        -webkit-text-stroke: 1px var(--heading-color);
    }

    .tech-img-holder {
        height: 350px;
    }
}

/*===================================================
    07 Promo Section
====================================================*/
.promo-section {
    background-image: url(../img/geometric-bg01.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 60%;
    width: 100%;
    height: 100%;
    fill: #ddd;
}

.promo-items.zigzag > div:nth-child(4),
.promo-items.zigzag > div:nth-child(2) {
    margin-top: 30px;
}

.promo-item {
    background-color: #c3c8ff99;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    padding: 30px;
    border-radius: 5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.promo-item:hover {
    transform: translateY(-3px);
    cursor: pointer;
}

.promo-item .promo-icon {
    width: 100px;
    margin-bottom: 20px;
}

.promo-item .promo-icon img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-item:hover .promo-icon img {
    transform: scale(1.05);
}

.promo-item h3 {
    font-size: 20px;
    font-weight: 600;
}

.promo-item .read-more {
    background: transparent;
    font-size: 25px;
    color: var(--grey-color);
    border: 1px solid #acacb5;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.promo-item .read-more:hover {
    background-color: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
}

/* IT Promo */
.it-promo .promo-item {
    background-color: #fff;
    text-align: center;
    box-shadow: 0 0 40px 0 rgba(40.000000000000156, 20.000000000000014, 130, .10);
    position: relative;
}

.it-promo .promo-item:before {
    background: var(--bg-gradient);
    content: "";
    width: 0;
    height: 3px;
    left: auto;
    bottom: 0;
    position: absolute;
    right: 0;
    -webkit-transition: width .5s cubic-bezier(.25, .10, .25, 1) 0s;
    transition: width .5s cubic-bezier(.25, .10, .25, 1) 0s;
}

.it-promo .promo-item:hover:before {
    width: 100%;
    left: 0;
    right: auto;
    margin: 0;
}

.it-promo .promo-icon {
    margin: 0 auto;
    margin-bottom: 15px;
}

@media (max-width: 992px) {
    .promo-section {
        background-size: cover;
    }

    .promo-section .section-heading-wrap {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 40px;
    }

    .promo-section .section-heading {
        margin-bottom: 20px;
    }

    .promo-items > div:nth-child(4),
    .promo-items > div:nth-child(2) {
        margin-top: 0;
    }
}


/*===================================================
    09 Content Section
====================================================*/
.content-section {
    position: relative;
}

.content-area {
    background-color: #c3c8ff90;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    padding-left: 30px;
    padding-right: 30px;
    align-items: center;
    border-radius: 10px;
}

.content-img-holder {
    display: flex;
    align-items: center;
    column-gap: 20px;
    position: relative;
    padding-right: 40px;
}

.content-img-holder > div:nth-child(2) {
    margin-top: 50px;
}

.content-img-holder .element {
    position: absolute;
    right: 20px;
    top: 30%;
}

.content-img-holder .element img {
    width: 140px;
}

.anim-illustration {
    width: 140px;
    height: auto;
    position: absolute;
    left: 20%;
    top: 0;
}

.anim-illustration.bottom {
    width: 80px;
    left: auto;
    right: 5%;
    top: auto;
    bottom: 15%;
}


/*===================================================
    Services
====================================================*/
.service-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1); /* Initial subtle shadow */
}

.service-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -o-transform: translateY(-3px);
}

/*===================================================
    Why Us
====================================================*/
.why-us-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1); /* Initial subtle shadow */
}

.why-us-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -o-transform: translateY(-3px);
}

/*===================================================
    26 Contact Section
====================================================*/

.contact-section {
    background-image: url(../img/gradiant-bg-2.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 90%;
    padding-top: 160px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin: auto;
    margin-bottom: 50px;
    border-radius: 15px;
    padding: 20px;
}

.contact-heading {
    margin-bottom: 40px;
}

.contact-section .contact-details li {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    color: var(--heading-color);
    font-weight: 500;
}

.contact-section .contact-details li i {
    background: var(--bg-gradient);
    color: #fff;
    font-size: 25px;
    margin-right: 15px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 1px;
}

.contact-form-wrap {}

.contact-form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
}

.contact-form .form-field .form-control {
    background-color: transparent;
    border: 1px solid #bbb;
    height: 50px;
    border-radius: 0;
    box-shadow: none;
    outline: none;
}

.contact-form .form-field.message .form-control {
    height: auto;
}

.contact-form-group .form-field.message {
    grid-column-end: span 2;
}

.contact-form-group .form-field .form-control:focus {
    border: 1px solid var(--primary-color);
}

@media(max-width:992px) {

    .contact-section {
        background-position: center right;
        padding-top: 100px;
    }

    .contact-form .form-field.submit-btn {
        grid-column-end: span 2;
    }

    .contact-section .globe {
        display: none;
    }
}

@media(max-width:767px) {

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

}

/*===================================================
    27 Footer Section
====================================================*/
.footer-section {
    background-position: center center;
    background-size: cover;
    width: 100%;
    padding-top: 100px;
    position: relative;
    z-index: 1;
}

.footer-area {
    /* padding-bottom: 20px; */
    border-top: 1px solid rgba(34, 34, 34, 0.1);
    padding: 25px 0;
}

.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 {
    font-weight: 700;
}

.footer-widget li a,
.footer-widget p {
    color: var(--grey-color);
}

.footer-widget li:not(:last-of-type) {
    margin-bottom: 10px;
}

.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 {
    display: inline-block;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    color: var(--grey-color);
    border-radius: 2px;
    position: relative;
}


.footer-social li a:after {
    background-color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 2px;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(0);
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition: 0.4s;
}

.footer-social li a:hover {
    color: #fff;
}

.footer-social li:hover a:after {
    visibility: visible;
    opacity: 1;
    transition: 0.4s;
    transform: translate(-50%, -50%) scale(1);
}


.footer-widget.subscribe {
    position: relative;
    padding-top: 50px;
}

.copyright-text {
    border-top: 1px solid rgba(34, 34, 34, 0.1);
    padding: 25px 0;
    text-align: center;
    color: var(--grey-color);
}

.copyright-text a {
    color: var(--grey-color);
}


@media (max-width: 992px) {
    .footer-widget.subscribe {
        padding-top: 0;
    }

    .footer-area .col-lg-3:nth-child(2) {
        padding-left: 15px;
    }
}
