﻿@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap");

/*@font-face {
    font-family: 'New York';
    src: url('/assets/fonts/NewYork.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}*/
/* Add this new rule for the ITALIC font style */
@font-face {
    font-family: 'New York'; /* <-- Use the SAME family name */
    src: url('/assets/fonts/NewYorkItalic.ttf') format('truetype'); /* <-- Path to your italic file */
    font-weight: normal;
    font-style: italic; /* <-- This tells the browser it's an italic font */
}

/* Rule for the REGULAR weight */
/*@font-face {
    font-family: 'PingFang SC';
    src: url('/assets/fonts/pingfang-sc-regular.ttf') format('truetype');
    font-weight: normal;*/ /* or 400 */
    /*font-style: normal;
}*/

/* Rule for the BOLD weight */
/*@font-face {
    font-family: 'PingFang SC';*/ /* <-- Same family name */
    /*src: url('/assets/fonts/pingfang-sc-bold.ttf') format('truetype');*/ /* <-- Path to bold file */
    /*font-weight: bold;*/ /* <-- Specifies this is the bold version (or 700) */
    /*font-style: normal;
}*/

@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


/*===========================
  COMMON css 
===========================*/
:root {
    --font-family: "Inter", sans-serif;
    --primary: #155bd5;
    --primary-dark: #1c3ab6;
    --primary-light: #e2f1ff;
    --accent: #00d4d7;
    --accent-dark: #00bac1;
    --accent-light: #dff9f8;
    --success: #13d527;
    --success-dark: #00ae11;
    --success-light: #eafbe7;
    --secondary: #8f15d5;
    --secondary-dark: #6013c7;
    --secondary-light: #f4e5fa;
    --info: #15b2d5;
    --info-dark: #0f8ca8;
    --info-light: #e0f5fa;
    --caution: #dbbb25;
    --caution-dark: #d58f15;
    --caution-light: #fbf9e4;
    --error: #e6185e;
    --error-dark: #bf1257;
    --error-light: #fce4eb;
    --black: #1d1d1d;
    --dark-1: #2d2d2d;
    --dark-2: #4d4d4d;
    --dark-3: #6d6d6d;
    --gray-1: #8d8d8d;
    --gray-2: #adadad;
    --gray-3: #cdcdcd;
    --gray-4: #e0e0e0;
    --light-1: #efefef;
    --light-2: #f5f5f5;
    --light-3: #fafafa;
    --white: #ffffff;
    --gradient-1: linear-gradient(180deg, #155bd5 0%, #1c3ab6 100%);
    --gradient-2: linear-gradient(180deg, #155bd5 13.02%, #00d4d7 85.42%);
    --gradient-3: linear-gradient(180deg, #155bd5 0%, #8f15d5 100%);
    --gradient-4: linear-gradient(180deg, #155bd5 0%, #13d527 100%);
    --gradient-5: linear-gradient(180deg, #155bd5 0%, #15bbd5 100%);
    --gradient-6: linear-gradient(180deg, #155bd5 0%, #dbbb25 100%);
    --gradient-7: linear-gradient(180deg, #155bd5 0%, #e6185e 100%);
    --gradient-8: linear-gradient(180deg, #1c3ab6 0%, #00bac1 100%);
    --gradient-9: linear-gradient(180deg, #00d4d7 13.02%, #155bd5 85.42%);
    --shadow-1: 0px 0px 1px rgba(40, 41, 61, 0.08), 0px 0.5px 2px rgba(96, 97, 112, 0.16);
    --shadow-2: 0px 0px 1px rgba(40, 41, 61, 0.04), 0px 2px 4px rgba(96, 97, 112, 0.16);
    --shadow-3: 0px 0px 2px rgba(40, 41, 61, 0.04), 0px 4px 8px rgba(96, 97, 112, 0.16);
    --shadow-4: 0px 2px 4px rgba(40, 41, 61, 0.04), 0px 8px 16px rgba(96, 97, 112, 0.16);
    --shadow-5: 0px 2px 8px rgba(40, 41, 61, 0.04), 0px 16px 24px rgba(96, 97, 112, 0.16);
    --shadow-6: 0px 2px 8px rgba(40, 41, 61, 0.08), 0px 20px 32px rgba(96, 97, 112, 0.24);
}

body {
    font-family: var(--font-family);
    color: var(--black);
    font-size: 16px;
    position: relative;
}

@media (max-width: 991px) {
    body {
        font-size: 14px;
    }
}

img {
    max-width: 100%;
}

a {
    display: inline-block;
}

    a,
    button,
    a:hover,
    a:focus,
    input:focus,
    textarea:focus,
    button:focus {
        text-decoration: none;
        outline: none;
    }

ul,
ol {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    color: var(--black);
    margin: 0px;
}

h1,
.h1 {
    font-size: 2.75em;
    line-height: 1.25;
}

h2,
.h2 {
    font-size: 2.25em;
    line-height: 1.25;
}

h3,
.h3 {
    font-size: 1.75em;
    line-height: 1.25;
}

h4,
.h4 {
    font-size: 1.5em;
    line-height: 1.25;
}

h5,
.h5 {
    font-size: 1.25em;
    line-height: 1.25;
}

h6,
.h6 {
    font-size: 0.875em;
    line-height: 1.25;
}

.display-1 {
    font-size: 5.5em;
    line-height: 1.25;
}

.display-2 {
    font-size: 4.75em;
    line-height: 1.25;
}

.display-3 {
    font-size: 4em;
    line-height: 1.25;
}

.display-4 {
    font-size: 3.25em;
    line-height: 1.25;
}

p {
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5;
    color: var(--dark-3);
    margin: 0px;
}

.text-small {
    font-size: 0.875em;
    line-height: 1.5;
}

.text-lg {
    font-size: 1.15em;
    line-height: 1.5;
}

.bg_cover {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

@media (max-width: 767px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.btn {
    /*font-weight: bold;*/
    font-size: 20px;
    line-height: 20px;
    text-align: center;
    /*letter-spacing: 0.08em;*/
    /*text-transform: uppercase;*/
    padding: 20px 40px;
    border-radius: 4px;
    border: 1px solid transparent;
    font-family: 'Inter', sans-serif
}

    .btn:hover {
        color: inherit;
    }

    .btn:focus {
        box-shadow: none;
        outline: none;
    }

    .btn.btn-lg {
        font-size: 1.15em;
        padding: 16px 24px;
    }

    .btn.btn-sm {
        padding: 8px 16px;
    }

    .btn.square {
        border-radius: 0px;
    }

    .btn.semi-rounded {
        border-radius: 12px;
    }

    .btn.rounded-full {
        border-radius: 50px;
    }

    .btn.icon-left span,
    .btn.icon-left i {
        margin-right: 8px;
    }

    .btn.icon-right span,
    .btn.icon-right i {
        margin-left: 8px;
    }

    .btn.icon-btn {
        width: 48px;
        height: 48px;
        padding: 0;
        line-height: 48px;
    }

        .btn.icon-btn.btn-lg {
            width: 56px;
            height: 56px;
            line-height: 56px;
        }

        .btn.icon-btn.btn-sm {
            width: 40px;
            height: 40px;
            line-height: 40px;
        }


/* ===== Buttons Css ===== */
.primary-btn {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-2);
}

    .active.primary-btn,
    .primary-btn:hover,
    .primary-btn:focus {
        background: var(--primary-dark);
        color: var(--white);
        box-shadow: var(--shadow-4);
    }

.deactive.primary-btn {
    background: var(--gray-4);
    color: var(--dark-3);
    pointer-events: none;
}

.primary-btn-outline {
    border-color: var(--primary);
    color: var(--primary);
}

    .active.primary-btn-outline,
    .primary-btn-outline:hover,
    .primary-btn-outline:focus {
        background: var(--primary-dark);
        color: var(--white);
    }

.deactive.primary-btn-outline {
    color: var(--dark-3);
    border-color: var(--gray-4);
    pointer-events: none;
}


/* One Click Scrool Top Button*/
.scroll-top {
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: var(--primary);
    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;
    font-size: 14px;
    color: #fff !important;
    border-radius: 0;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9;
    cursor: pointer;
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    border-radius: 5px;
}

    .scroll-top:hover {
        -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
        box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
        background-color: var(--dark-1);
    }

/*============================
  Section Title Six CSS
==============================*/
.section-title-six {
    text-align: center;
    max-width: 550px;
    margin: auto;
    margin-bottom: 50px;
    position: relative;
    z-index: 5;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-title-six {
        margin-bottom: 45px;
    }
}

@media (max-width: 767px) {
    .section-title-six {
        margin-bottom: 35px;
    }
}

.section-title-six h3 {
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    color: var(--primary);
    text-transform: capitalize;
    position: relative;
    line-height: 14px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-title-six h3 {
        font-size: 15px;
        margin-bottom: 16px;
    }
}

@media (max-width: 767px) {
    .section-title-six h3 {
        font-size: 15px;
        margin-bottom: 14px;
    }
}

.section-title-six h3::before {
    position: absolute;
    content: "";
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    width: 15px;
    background-color: var(--primary);
    border-radius: 8px;
}

.section-title-six h3::after {
    position: absolute;
    content: "";
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    width: 15px;
    background-color: var(--primary);
    border-radius: 8px;
}

.section-title-six h2 {
    margin-bottom: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-title-six h2 {
        font-size: 2rem;
        line-height: 2.8rem;
    }
}

@media (max-width: 767px) {
    .section-title-six h2 {
        font-size: 1.5rem;
        line-height: 1.9rem;
    }
}

.section-title-six p {
    color: var(--dark-3);
}


.made-in-ayroui {
    position: fixed;
    left: 5px;
    bottom: 5px;
    z-index: 999;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

    .made-in-ayroui:hover {
        transform: translateY(-5px);
    }


/* ===== Buttons Css ===== */
.primary-btn {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-2);
    margin-right: 5px;
}

    .active.primary-btn, .primary-btn:hover, .primary-btn:focus {
        background: var(--primary-dark);
        color: var(--white);
        box-shadow: var(--shadow-4);
    }

.deactive.primary-btn {
    background: var(--gray-4);
    color: var(--dark-3);
    pointer-events: none;
}

.primary-btn-outline {
    border-color: var(--primary);
    color: var(--primary);
}

    .active.primary-btn-outline, .primary-btn-outline:hover, .primary-btn-outline:focus {
        background: var(--primary-dark);
        color: var(--white);
    }

.deactive.primary-btn-outline {
    color: var(--dark-3);
    border-color: var(--gray-4);
    pointer-events: none;
}

/*===========================
  NAVBAR css 
===========================*/
.navbar-toggler:focus {
    box-shadow: none;
}
/*===== NAVBAR TWO =====*/
.navbar-area.navbar-two {
    background-color: var(--white);
    position: absolute;
    width: 100%;
    z-index: 99;
}

.sticky {
    position: fixed !important;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    top: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.048);
    background-color: var(--white) !important;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-area.navbar-two {
        padding: 20px 0;
    }
}

.navbar-area.navbar-two .navbar {
    position: relative;
    padding: 0;
}

    .navbar-area.navbar-two .navbar .navbar-toggler .toggler-icon {
        width: 30px;
        height: 2px;
        background-color: var(--black);
        margin: 5px 0;
        display: block;
        position: relative;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
    }

    .navbar-area.navbar-two .navbar .navbar-toggler.active .toggler-icon:nth-of-type(1) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 7px;
    }

    .navbar-area.navbar-two .navbar .navbar-toggler.active .toggler-icon:nth-of-type(2) {
        opacity: 0;
    }

    .navbar-area.navbar-two .navbar .navbar-toggler.active .toggler-icon:nth-of-type(3) {
        -webkit-transform: rotate(135deg);
        -moz-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
        -o-transform: rotate(135deg);
        transform: rotate(135deg);
        top: -7px;
    }

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-area.navbar-two .navbar .navbar-collapse {
        position: absolute;
        top: 140%;
        left: 0;
        width: 100%;
        background-color: var(--light-2);
        z-index: 8;
        padding: 10px 0;
    }
}

.navbar-area.navbar-two .navbar .navbar-nav .nav-item {
    margin: 0 12px;
    position: relative;
}

    .navbar-area.navbar-two .navbar .navbar-nav .nav-item a {
        font-size: 16px;
        line-height: 24px;
        font-weight: 600;
        padding: 28px 8px;
        color: var(--dark-2);
        text-transform: capitalize;
        position: relative;
        display: flex;
        align-items: center;
        z-index: 0;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
    }

        .navbar-area.navbar-two .navbar .navbar-nav .nav-item a::before {
            position: absolute;
            content: "";
            left: 0;
            bottom: 0;
            height: 3px;
            width: 0%;
            background-color: var(--primary);
            opacity: 0;
            visibility: hidden;
            -webkit-transition: all 0.3s ease-out 0s;
            -moz-transition: all 0.3s ease-out 0s;
            -ms-transition: all 0.3s ease-out 0s;
            -o-transition: all 0.3s ease-out 0s;
            transition: all 0.3s ease-out 0s;
            z-index: -1;
        }

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-area.navbar-two .navbar .navbar-nav .nav-item a::before {
        height: 100%;
    }
}

.navbar-area.navbar-two .navbar .navbar-nav .nav-item a i {
    font-weight: 700;
    padding-left: 8px;
    font-size: 14px;
    color: var(--dark-2);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.navbar-area.navbar-two .navbar .navbar-nav .nav-item a:hover i {
    color: var(--white);
}

.navbar-area.navbar-two .navbar .navbar-nav .nav-item a.active:hover i {
    color: var(--primary);
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-area.navbar-two .navbar .navbar-nav .nav-item a.active:hover i {
        color: var(--white);
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-area.navbar-two .navbar .navbar-nav .nav-item a {
        padding: 10px 10px;
        display: block;
    }
}

.navbar-area.navbar-two .navbar .navbar-nav .nav-item a.active {
    color: var(--primary);
}

    .navbar-area.navbar-two .navbar .navbar-nav .nav-item a.active::before {
        opacity: 1;
        visibility: visible;
        width: 100%;
    }

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-area.navbar-two .navbar .navbar-nav .nav-item a.active {
        color: var(--white);
    }
}

.navbar-area.navbar-two .navbar .navbar-nav .nav-item a.active i {
    color: var(--primary);
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-area.navbar-two .navbar .navbar-nav .nav-item a.active i {
        color: var(--white);
    }
}

.navbar-area.navbar-two .navbar .navbar-nav .nav-item:hover a {
    color: var(--primary);
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-area.navbar-two .navbar .navbar-nav .nav-item:hover a {
        color: var(--white);
    }
}

.navbar-area.navbar-two .navbar .navbar-nav .nav-item:hover a::before {
    opacity: 1;
    visibility: visible;
    width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-area.navbar-two .navbar .navbar-nav .nav-item:hover a i {
        color: var(--white);
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-area.navbar-two .navbar .navbar-nav .nav-item {
        margin-bottom: 5px;
    }

        .navbar-area.navbar-two .navbar .navbar-nav .nav-item:last-child {
            margin-bottom: 0;
        }
}

.navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu {
    position: absolute;
    right: 0;
    top: 100%;
    width: 260px;
    background-color: var(--white);
    box-shadow: var(--shadow-4);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    z-index: 99;
    padding: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu {
        position: relative !important;
        width: 100% !important;
        left: 0 !important;
        top: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        right: auto;
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%);
        -webkit-transition: all none ease-out 0s;
        -moz-transition: all none ease-out 0s;
        -ms-transition: all none ease-out 0s;
        -o-transition: all none ease-out 0s;
        transition: all none ease-out 0s;
        box-shadow: none;
        text-align: left;
        border-top: 0;
        height: 0;
    }
}

.navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
    height: auto;
    display: block;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
        height: 0;
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu.show {
        height: auto;
    }
}

.navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li {
    position: relative;
}

    .navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 24px;
        font-weight: 500;
        position: relative;
        color: var(--dark);
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
        z-index: 5;
        text-transform: capitalize;
    }

        .navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li a:hover {
            background-color: var(--primary);
            color: var(--white);
        }

        .navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li a::before {
            display: none;
        }

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li a:hover {
        background-color: var(--primary);
        color: var(--white);
    }

    .navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li a i {
        color: var(--primary);
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
    }

    .navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li a:hover i {
        color: var(--white);
    }
}

.navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li a i {
    font-size: 14px;
    font-weight: 700;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li a i {
        display: none;
    }
}

.navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li a .sub-nav-toggler i {
    display: inline-block;
}

.navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
    right: auto;
    left: 100%;
    top: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) {
    .navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
        margin-left: 10px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
        padding-left: 30px;
        height: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li .sub-menu.show {
        visibility: visible;
        height: auto;
        position: relative;
    }
}

.navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    height: auto;
}

.navbar-area.navbar-two .navbar .navbar-nav .nav-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    height: auto;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-nav-toggler {
        display: inline-block;
        position: absolute;
        top: 0;
        right: 0;
        padding: 10px 14px;
        font-size: 16px;
        background: none;
        border: 0;
        color: var(--white);
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-area.navbar-two .navbar .navbar-btn {
        position: absolute;
        right: 70px;
        top: 7px;
    }
}

@media (max-width: 767px) {
    .navbar-area.navbar-two .navbar .navbar-btn {
        position: absolute;
        right: 60px;
        top: 7px;
    }
}

.navbar-area.navbar-two .navbar .navbar-btn ul {
    display: flex;
}

    .navbar-area.navbar-two .navbar .navbar-btn ul li {
        display: inline-block;
        margin-right: 5px;
    }


/* ===== Buttons Css ===== */
.header-thirteen .header-content-wrapper .rounded-buttons .primary-btn {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-2);
}

    .header-thirteen .header-content-wrapper .rounded-buttons .active.primary-btn, .header-thirteen .header-content-wrapper .rounded-buttons .primary-btn:hover, .header-thirteen .header-content-wrapper .rounded-buttons .primary-btn:focus {
        background: var(--primary-dark);
        color: var(--white);
        box-shadow: var(--shadow-4);
    }

.header-thirteen .header-content-wrapper .rounded-buttons .deactive.primary-btn {
    background: var(--gray-4);
    color: var(--dark-3);
    pointer-events: none;
}

/*======================================
    header Area CSS
========================================*/
.header-thirteen {
    padding-top: 100px;
    position: relative;
    height: 870px;
    display: flex;
    align-items: center;
}

@media only screen and (min-width: 1400px) {
    .header-thirteen {
        height: 870px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .header-thirteen {
        height: 750px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header-thirteen {
        height: 650px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .header-thirteen {
        height: auto;
        padding-top: 120px;
    }
}

.header-thirteen .header-content-wrapper h5 {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.header-thirteen .header-content-wrapper h1 {
    font-weight: bold;
    font-size: 50px;
    line-height: 65px;
    margin-bottom: 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
    .header-thirteen .header-content-wrapper h1 {
        font-size: 45px;
        line-height: 60px;
    }
}

@media (max-width: 767px) {
    .header-thirteen .header-content-wrapper h1 {
        font-size: 40px;
        line-height: 52px;
    }
}

.header-thirteen .header-content-wrapper p {
    color: var(--dark-3);
    margin-bottom: 30px;
}

.header-thirteen .header-img {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 48%;
    text-align: right;
    margin: 60px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .header-thirteen .header-img {
        position: relative;
        width: 100%;
        top: 0;
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

.header-thirteen .header-img.header-img-2 {
    top: 50%;
}

.header-thirteen .header-img .header-img-right {
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-thirteen .header-img .header-img-right {
        position: static;
    }
}

@media (max-width: 767px) {
    .header-thirteen .header-img .header-img-right {
        position: static;
    }
}

.header-thirteen .header-img img.dot-shape {
    position: absolute;
    left: -60px;
    bottom: 60px;
    z-index: -1;
}

.header-thirteen .header-img .image {
    width: 100%;
    border-radius: 10px 0 0 10px;
}

.header-thirteen .header-img .video-btn {
    position: absolute;
    left: -40px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .header-thirteen .header-img .video-btn {
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}

.header-thirteen .header-img .video-btn a {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--primary);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    box-shadow: var(--shadow-4);
}

    .header-thirteen .header-img .video-btn a:hover {
        box-shadow: var(--shadow-6);
    }


/*===========================
  features css 
===========================*/
.features-eleven {
    background-color: var(--light-3);
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .features-eleven {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .features-eleven {
        padding: 60px 0;
    }
}

.features-eleven .section-title-two {
    text-align: center;
    max-width: 550px;
    margin: auto;
    margin-bottom: 50px;
    position: relative;
    z-index: 5;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .features-eleven .section-title-two {
        margin-bottom: 45px;
    }
}

@media (max-width: 767px) {
    .features-eleven .section-title-two {
        margin-bottom: 35px;
    }
}

.features-eleven .section-title-two span {
    text-transform: capitalize;
    color: var(--white);
    background: var(--primary);
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 15px;
    border-radius: 4px;
}

.features-eleven .section-title-two h2 {
    margin-bottom: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .features-eleven .section-title-two h2 {
        font-size: 2rem;
        line-height: 2.8rem;
    }
}

@media (max-width: 767px) {
    .features-eleven .section-title-two h2 {
        font-size: 1.5rem;
        line-height: 1.9rem;
    }
}

.features-eleven .section-title-two p {
    color: var(--dark-3);
}

.features-eleven .tab-head {
    position: relative;
}

.features-eleven .nav-head {
    text-align: center;
    border: 2px solid var(--gray-4);
    padding: 10px 10px;
    border-radius: 10px;
    max-width: max-content;
    margin: auto;
    display: flex;
}

.features-eleven .nav {
    margin-bottom: 0px;
    margin-bottom: 0 !important;
}

@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
    .features-eleven .nav {
        width: 100%;
        display: inline-block;
    }
}

.features-eleven .nav-link {
    background: transparent;
    color: var(--black);
    font-weight: 600;
    font-size: 14px;
    border-radius: 0px;
    padding: 18px 55px;
    position: relative;
    bottom: 0;
    border-radius: 5px;
}

@media (max-width: 767px) {
    .features-eleven .nav-link {
        width: 100%;
        display: block;
    }
}

.features-eleven .nav-link:hover {
    color: var(--primary);
}

.features-eleven .nav-link i {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: var(--primary);
}

.features-eleven .nav-link.active,
.features-eleven .show > .nav-link {
    color: var(--white);
    background: var(--primary);
}

    .features-eleven .nav-link.active i,
    .features-eleven .show > .nav-link i {
        color: var(--white);
    }

.features-eleven .tab-content-inner {
    margin-top: 80px;
}

    .features-eleven .tab-content-inner .tab-image img {
        width: 100%;
        border-radius: 6px;
        border: 1px solid #eee;
    }

@media (max-width: 767px) {
    .features-eleven .tab-content-inner .tab-image {
        padding-bottom: 40px;
    }
}

.features-eleven .tab-content-inner .tab-text {
    padding-left: 50px;
}

    .features-eleven .tab-content-inner .tab-text h3 {
        font-size: 32px;
        font-weight: 600;
        color: var(--black);
        margin-bottom: 20px;
        display: block;
        line-height: 45px;
    }

    .features-eleven .tab-content-inner .tab-text p {
        margin: 30px 0;
        color: var(--dark-3);
    }

    .features-eleven .tab-content-inner .tab-text ul {
        margin-top: 40px;
    }

        .features-eleven .tab-content-inner .tab-text ul li {
            display: block;
            margin-bottom: 30px;
            font-size: 14px;
            font-weight: 400;
            color: var(--dark-3);
            position: relative;
            padding-left: 100px;
        }

            .features-eleven .tab-content-inner .tab-text ul li i {
                position: absolute;
                left: 0;
                top: 3px;
                height: 70px;
                width: 70px;
                line-height: 70px;
                text-align: center;
                display: block;
                border-radius: 10px;
                background: var(--primary);
                color: var(--white);
                font-size: 20px;
            }

            .features-eleven .tab-content-inner .tab-text ul li span {
                font-size: 17px;
                color: var(--primary);
                font-weight: 600;
                display: block;
                margin-bottom: 10px;
            }

            .features-eleven .tab-content-inner .tab-text ul li:last-child {
                margin: 0;
            }


/*===========================
  about-06 css
===========================*/
.about-six {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-six {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .about-six {
        padding: 60px 0;
    }
}

.about-six .faq-title .sub-title {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
}

.about-six .faq-title .title {
    padding-top: 15px;
    line-height: 42px;
}

.about-six .faq-accordion {
    margin-top: 45px;
}

    .about-six .faq-accordion .accordion .card {
        border: 0;
        background: none;
    }

        .about-six .faq-accordion .accordion .card .card-header {
            padding: 0;
            border: 0;
            background: none;
            margin-top: 40px;
        }

            .about-six .faq-accordion .accordion .card .card-header a {
                font-size: 18px;
                font-weight: 500;
                color: var(--black);
                display: block;
                position: relative;
                padding-right: 20px;
            }

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about-six .faq-accordion .accordion .card .card-header a {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .about-six .faq-accordion .accordion .card .card-header a {
        font-size: 16px;
    }
}

.about-six .faq-accordion .accordion .card .card-header a::before {
    content: "\eb30";
    font-family: "LineIcons";
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.about-six .faq-accordion .accordion .card .card-header .collapsed::before {
    content: "\eb5c";
}

.about-six .faq-accordion .accordion .card .card-body {
    padding: 20px 20px 0;
}

.about-six .faq-image {
    margin-top: 50px;
    padding-left: 100px;
}

@media (max-width: 990px) {
    .about-six .faq-image {
        padding: 0;
    }
}

.about-six .faq-image img {
    width: 100%;
}


/* ===== Buttons Css ===== */
.pricing-style-twelve .primary-btn {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-2);
}

    .pricing-style-twelve .active.primary-btn, .pricing-style-twelve .primary-btn:hover, .pricing-style-twelve .primary-btn:focus {
        background: var(--primary-dark);
        color: var(--white);
        box-shadow: var(--shadow-4);
    }

.pricing-style-twelve .deactive.primary-btn {
    background: var(--gray-4);
    color: var(--dark-3);
    pointer-events: none;
}

/*===== PRICING TWELVE =====*/
.pricing-twelve {
    padding: 100px 0px;
    background-color: var(--light-3);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .pricing-twelve {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .pricing-twelve {
        padding: 60px 0;
    }
}

.pricing-style-twelve {
    box-shadow: var(--shadow-2);
    padding: 40px 40px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    background-color: var(--white);
    margin-top: 30px;
    text-align: center;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    border-top: 4px solid transparent;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .pricing-style-twelve {
        padding: 35px 30px;
    }
}

.pricing-style-twelve:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
    box-shadow: var(--shadow-4);
    border-color: var(--primary);
}

.pricing-style-twelve.active {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
    box-shadow: var(--shadow-4);
    border-color: var(--primary);
}

.pricing-style-twelve .pricing-icon {
    font-size: 45px;
    color: var(--primary);
}

.pricing-style-twelve .pricing-header {
    margin-top: 15px;
}

.pricing-style-twelve .sub-title {
    color: var(--black);
    display: block;
    margin-bottom: 10px;
}

.pricing-style-twelve .price {
    display: block;
    font-size: 48px;
    font-weight: 600;
    line-height: 60px;
    color: var(--black);
}

@media (max-width: 767px) {
    .pricing-style-twelve .price {
        font-size: 42px;
        margin-top: 16px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .pricing-style-twelve .price {
        font-size: 45px;
        margin-top: 20px;
    }
}

.pricing-style-twelve .year {
    color: var(--dark-3);
    margin-top: 5px;
}

.pricing-style-twelve .pricing-list {
    margin-top: 35px;
    text-align: left;
}

.pricing-style-twelve li {
    color: var(--dark-3);
    margin-top: 16px;
}

    .pricing-style-twelve li i {
        color: var(--primary);
        margin-right: 8px;
    }

.pricing-style-twelve .pricing-btn {
    margin-top: 35px;
}

/* ===== Buttons Css ===== */
.call-action-one .call-action-content .call-action-btn .primary-btn {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-2);
}

    .call-action-one .call-action-content .call-action-btn .active.primary-btn, .call-action-one .call-action-content .call-action-btn .primary-btn:hover, .call-action-one .call-action-content .call-action-btn .primary-btn:focus {
        background: var(--primary-dark);
        color: var(--white);
        box-shadow: var(--shadow-4);
    }

.call-action-one .call-action-content .call-action-btn .deactive.primary-btn {
    background: var(--gray-4);
    color: var(--dark-3);
    pointer-events: none;
}

/*===== call action one =====*/
.call-action-one {
    background-color: var(--light-2);
    padding: 100px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .call-action-one {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .call-action-one {
        padding: 60px 0;
    }
}

.call-action-one .call-action-content .call-action-text .action-title {
    font-weight: 600;
    color: var(--black);
}

.call-action-one .call-action-content .call-action-text .text-lg {
    color: var(--dark-3);
    margin-top: 16px;
}

.call-action-one .call-action-content .call-action-btn {
    margin-top: 30px;
}


/*===========================
 teams css 
===========================*/
.team-area {
    padding: 100px 0;
    background-color: var(--light-3);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .team-area {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .team-area {
        padding: 60px 0;
    }
}

.team-style-three {
    position: relative;
    margin-top: 30px;
}

    .team-style-three .team-image {
        overflow: hidden;
    }

        .team-style-three .team-image img {
            width: 100%;
            -webkit-transition: all 0.3s ease-out 0s;
            -moz-transition: all 0.3s ease-out 0s;
            -ms-transition: all 0.3s ease-out 0s;
            -o-transition: all 0.3s ease-out 0s;
            transition: all 0.3s ease-out 0s;
        }

    .team-style-three:hover .team-image img {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }

    .team-style-three .team-content {
        padding: 30px 25px;
        box-shadow: var(--shadow-2);
        position: absolute;
        left: 0;
        width: 100%;
        bottom: 0;
        background-color: var(--white);
        border-radius: 0 40px 0 0;
        text-align: left;
        display: flex;
        justify-content: space-between;
        border-bottom: 4px solid var(--primary);
    }

@media (max-width: 767px) {
    .team-style-three .team-content {
        padding: 18px;
    }
}

.team-style-three .team-content .name {
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    color: var(--black);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .team-style-three .team-content .name {
        font-size: 20px;
    }
}

.team-style-three .team-content .sub-title {
    font-size: 16px;
    line-height: 24px;
    color: var(--dark-3);
    margin-top: 2px;
    display: block;
}

.team-style-three .team-content .social {
    margin-top: 15px;
}

    .team-style-three .team-content .social li {
        display: inline-block;
        margin-right: 5px;
    }

        .team-style-three .team-content .social li:last-child {
            margin: 0;
        }

        .team-style-three .team-content .social li a {
            font-size: 16px;
            color: var(--gray-1);
            height: 35px;
            width: 35px;
            text-align: center;
            line-height: 35px;
            border: 1px solid var(--gray-4);
            border-radius: 50%;
            -webkit-transition: all 0.4s ease-out 0s;
            -moz-transition: all 0.4s ease-out 0s;
            -ms-transition: all 0.4s ease-out 0s;
            -o-transition: all 0.4s ease-out 0s;
            transition: all 0.4s ease-out 0s;
        }

            .team-style-three .team-content .social li a:hover {
                background-color: var(--primary);
                color: var(--white);
                border-color: transparent;
            }


/*===== TESTIMONIAL STYLE FOUR =====*/
.testimonial-four {
    padding-top: 100px;
    padding-bottom: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .testimonial-four {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .testimonial-four {
        padding: 60px 0;
    }
}

.testimonial-four .testimonial-left-content .sub-title {
    font-size: 18px;
    font-weight: 400;
    color: var(--primary);
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .testimonial-four .testimonial-left-content .sub-title {
        font-size: 16px;
    }
}

.testimonial-four .testimonial-left-content .title {
    font-size: 32px;
    padding-top: 10px;
    color: var(--black);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .testimonial-four .testimonial-left-content .title {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .testimonial-four .testimonial-left-content .title {
        font-size: 24px;
    }
}

.testimonial-four .testimonial-left-content .testimonial-line {
    padding-top: 10px;
}

    .testimonial-four .testimonial-left-content .testimonial-line li {
        height: 5px;
        background-color: var(--primary);
        opacity: 0.2;
        display: inline-block;
        border-radius: 50px;
        margin-right: 3px;
    }

        .testimonial-four .testimonial-left-content .testimonial-line li:nth-of-type(1) {
            width: 40px;
        }

        .testimonial-four .testimonial-left-content .testimonial-line li:nth-of-type(2) {
            width: 15px;
        }

        .testimonial-four .testimonial-left-content .testimonial-line li:nth-of-type(3) {
            width: 10px;
        }

        .testimonial-four .testimonial-left-content .testimonial-line li:nth-of-type(4) {
            width: 5px;
        }

.testimonial-four .testimonial-left-content .text {
    padding-top: 15px;
    color: var(--dark-3);
}

.testimonial-four .testimonial-right-content {
    position: relative;
    background-color: var(--light-1);
    box-shadow: var(--shadow-2);
    border-radius: 50px;
    max-width: 500px;
    padding-top: 50px;
    margin-top: 50px;
}

    .testimonial-four .testimonial-right-content .quota {
        position: absolute;
        top: 10px;
        left: 15px;
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
        opacity: 0.1;
        z-index: 5;
    }

        .testimonial-four .testimonial-right-content .quota i {
            font-size: 130px;
            line-height: 95px;
            color: var(--primary);
        }

    .testimonial-four .testimonial-right-content .tns-controls {
        position: absolute;
        z-index: 2;
        left: -660px;
        bottom: 0;
    }

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .testimonial-four .testimonial-right-content .tns-controls {
        left: -570px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .testimonial-four .testimonial-right-content .tns-controls {
        left: -480px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .testimonial-four .testimonial-right-content .tns-controls {
        left: 0;
        margin-top: 50px;
        position: static;
    }
}

.testimonial-four .testimonial-right-content .tns-controls button {
    border: none;
    background: none;
    font-size: 35px;
    margin-right: 15px;
}

    .testimonial-four .testimonial-right-content .tns-controls button:hover {
        color: var(--primary);
    }

.testimonial-four .testimonial-content-wrapper {
    position: relative;
}

.testimonial-four .single-testimonial {
    background-color: var(--white);
    padding: 40px 30px 50px;
    border-radius: 50px;
}

    .testimonial-four .single-testimonial .testimonial-text .text {
        font-size: 24px;
        font-weight: 400;
        line-height: 36px;
        color: var(--black);
        padding-bottom: 25px;
    }

@media (max-width: 767px) {
    .testimonial-four .single-testimonial .testimonial-text .text {
        font-size: 18px;
        line-height: 32px;
    }
}

.testimonial-four .single-testimonial .testimonial-author {
    border-top: 1px solid var(--light-1);
    padding-top: 50px;
}

    .testimonial-four .single-testimonial .testimonial-author .author-info .author-image img {
        border-radius: 50%;
        width: 70px;
    }

    .testimonial-four .single-testimonial .testimonial-author .author-info .author-name {
        padding-left: 30px;
    }

        .testimonial-four .single-testimonial .testimonial-author .author-info .author-name .name {
            font-size: 16px;
            font-weight: 700;
            color: var(--black);
        }

        .testimonial-four .single-testimonial .testimonial-author .author-info .author-name .sub-title {
            font-size: 14px;
            color: var(--dark-3);
            margin-top: 5px;
        }

@media (max-width: 767px) {
    .testimonial-four .single-testimonial .testimonial-author .author-review {
        padding-left: 100px;
        padding-top: 15px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .testimonial-four .single-testimonial .testimonial-author .author-review {
        padding-left: 0;
        padding-top: 15px;
    }
}

.testimonial-four .single-testimonial .testimonial-author .author-review .star li {
    display: inline-block;
    font-size: 14px;
    color: var(--caution-dark);
}

.testimonial-four .single-testimonial .testimonial-author .author-review .review {
    font-size: 14px;
    color: var(--black);
    margin-top: 5px;
}


/* ===== Buttons Css ===== */
.contact-us .form-main .form-group .primary-btn {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-2);
}

    .contact-us .form-main .form-group .active.primary-btn,
    .contact-us .form-main .form-group .primary-btn:hover,
    .contact-us .form-main .form-group .primary-btn:focus {
        background: var(--primary-dark);
        color: var(--white);
        box-shadow: var(--shadow-4);
    }

.contact-us .form-main .form-group .deactive.primary-btn {
    background: var(--gray-4);
    color: var(--dark-3);
    pointer-events: none;
}

/* ===== Buttons Css ===== */
.contact-area-three .standard-buttons .primary-btn {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-2);
}

    .contact-area-three .standard-buttons .active.primary-btn, .contact-area-three .standard-buttons .primary-btn:hover, .contact-area-three .standard-buttons .primary-btn:focus {
        background: var(--primary-dark);
        color: var(--white);
        box-shadow: var(--shadow-4);
    }

.contact-area-three .standard-buttons .deactive.primary-btn {
    background: var(--gray-4);
    color: var(--dark-3);
    pointer-events: none;
}

/*===== CONTACT THREE STYLE =====*/
.contact-area-three {
    background-color: var(--light-3);
    padding-top: 100px;
    padding-bottom: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-area-three {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .contact-area-three {
        padding: 60px 0;
    }
}

.contact-area-three .section-title-2 {
    margin-bottom: 50px;
}

    .contact-area-three .section-title-2 .title {
        font-size: 42px;
        font-weight: 600;
        line-height: 55px;
    }

@media (max-width: 767px) {
    .contact-area-three .section-title-2 .title {
        font-size: 24px;
        line-height: 35px;
    }
}

.contact-area-three .main-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.041);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-area-three .main-content {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .contact-area-three .main-content {
        padding: 20px;
    }
}

.contact-area-three .contact-map .gmap_canvas iframe {
    width: 100%;
    height: 430px;
    border-radius: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-area-three .contact-map .gmap_canvas iframe {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .contact-area-three .contact-map .gmap_canvas iframe {
        height: 300px;
    }
}

.contact-area-three .contact-form {
    padding-left: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-area-three .contact-form {
        padding: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .contact-area-three .contact-form {
        padding: 0;
        margin-bottom: 30px;
    }
}

.contact-area-three .standard-buttons {
    margin-top: 20px;
}

.contact-area-three .form-input {
    margin-top: 15px;
}

    .contact-area-three .form-input:first-child {
        margin: 0;
    }

    .contact-area-three .form-input .help-block {
        margin-top: 2px;
    }

    .contact-area-three .form-input label {
        font-size: 12px;
        line-height: 18px;
        color: var(--dark-3);
        margin-bottom: 8px;
        display: inline-block;
    }

    .contact-area-three .form-input .input-items {
        position: relative;
    }

        .contact-area-three .form-input .input-items input, .contact-area-three .form-input .input-items textarea {
            width: 100%;
            height: 45px;
            border: 1px solid;
            padding-left: 45px;
            padding-right: 12px;
            position: relative;
            font-size: 16px;
        }

        .contact-area-three .form-input .input-items textarea {
            padding-top: 8px;
            height: 130px;
            resize: none;
        }

        .contact-area-three .form-input .input-items i {
            position: absolute;
            top: 11px;
            left: 13px;
            font-size: 20px;
            z-index: 9;
        }

        .contact-area-three .form-input .input-items.default input, .contact-area-three .form-input .input-items.default textarea {
            border-color: var(--gray-4);
            color: var(--dark-3);
            border-radius: 5px;
        }

            .contact-area-three .form-input .input-items.default input:focus, .contact-area-three .form-input .input-items.default textarea:focus {
                border-color: var(--primary);
            }

            .contact-area-three .form-input .input-items.default input::placeholder, .contact-area-three .form-input .input-items.default textarea::placeholder {
                color: var(--dark-3);
                opacity: 1;
            }

        .contact-area-three .form-input .input-items.default i {
            color: var(--dark-3);
        }

        .contact-area-three .form-input .input-items.active input, .contact-area-three .form-input .input-items.active textarea {
            border-color: var(--primary-dark);
            color: var(--black);
        }

            .contact-area-three .form-input .input-items.active input::placeholder, .contact-area-three .form-input .input-items.active textarea::placeholder {
                color: var(--black);
                opacity: 1;
            }

        .contact-area-three .form-input .input-items.active i {
            color: var(--primary-dark);
        }

        .contact-area-three .form-input .input-items.error input, .contact-area-three .form-input .input-items.error textarea {
            border-color: var(--error);
            color: var(--error);
        }

            .contact-area-three .form-input .input-items.error input::placeholder, .contact-area-three .form-input .input-items.error textarea::placeholder {
                color: var(--error);
                opacity: 1;
            }

        .contact-area-three .form-input .input-items.error i {
            color: var(--error);
        }

        .contact-area-three .form-input .input-items.success input, .contact-area-three .form-input .input-items.success textarea {
            border-color: var(--success);
            color: var(--success);
        }

            .contact-area-three .form-input .input-items.success input::placeholder, .contact-area-three .form-input .input-items.success textarea::placeholder {
                color: var(--success);
                opacity: 1;
            }

        .contact-area-three .form-input .input-items.success i {
            color: var(--success);
        }

        .contact-area-three .form-input .input-items.disabled input, .contact-area-three .form-input .input-items.disabled textarea {
            border-color: var(--gray-3);
            color: var(--dark-3);
            background: none;
        }

            .contact-area-three .form-input .input-items.disabled input::placeholder, .contact-area-three .form-input .input-items.disabled textarea::placeholder {
                color: var(--dark-3);
                opacity: 1;
            }

        .contact-area-three .form-input .input-items.disabled i {
            color: var(--dark-3);
        }

/*===========================
    clients-03 css 
===========================*/
.client-logo-three {
    padding-top: 50px;
    padding-bottom: 70px;
    border-bottom: 1px solid #eee;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .client-logo-three {
        padding-top: 40px;
        padding-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .client-logo-three {
        padding-top: 30px;
        padding-bottom: 55px;
    }
}

.client-logo-three .section-title-four {
    text-align: center;
    max-width: 550px;
    margin: auto;
    margin-bottom: 50px;
    position: relative;
    z-index: 5;
    margin-top: 12px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .client-logo-three .section-title-four {
        margin-bottom: 45px;
    }
}

@media (max-width: 767px) {
    .client-logo-three .section-title-four {
        margin-bottom: 35px;
    }
}

.client-logo-three .section-title-four span {
    text-transform: uppercase;
    color: var(--primary);
    display: inline-block;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 767px) {
    .client-logo-three .section-title-four span {
        margin-bottom: 15px;
    }
}

.client-logo-three .section-title-four h2 {
    margin-bottom: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .client-logo-three .section-title-four h2 {
        font-size: 2rem;
        line-height: 2.8rem;
    }
}

@media (max-width: 767px) {
    .client-logo-three .section-title-four h2 {
        font-size: 1.5rem;
        line-height: 1.9rem;
    }
}

.client-logo-three .section-title-four h3 {
    font-size: 3.8rem;
    line-height: 3.8rem;
    font-weight: 800;
    text-transform: uppercase;
    position: absolute;
    top: -18px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    color: var(--gray-3);
    z-index: -1;
    -webkit-text-stroke-width: 1px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: var(--gray-3);
    opacity: 0.5;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .client-logo-three .section-title-four h3 {
        font-size: 3.3rem;
        line-height: 3.5rem;
        top: -18px;
    }
}

@media (max-width: 767px) {
    .client-logo-three .section-title-four h3 {
        font-size: 2.7rem;
        line-height: 3.2rem;
        top: -17px;
    }
}

.client-logo-three .section-title-four p {
    color: var(--dark-3);
}

.client-logo-three .single-client {
    margin-top: 30px;
}

    .client-logo-three .single-client img {
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
    }

    .client-logo-three .single-client:hover img {
        -webkit-filter: grayscale(0);
        filter: grayscale(0);
    }


/*======================================
	Footer CSS
========================================*/
.footer-thirteen {
    z-index: 2;
    position: relative;
    background: black;
}

    .footer-thirteen::before {
        position: absolute;
        content: "";
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        /*background-image: url("assets/images/footer/overlay-bg.png");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top;*/
        z-index: -1;
    }

    .footer-thirteen .logo {
        margin-bottom: 26px;
    }

    .footer-thirteen .f-about {
        padding-right: 85px;
    }

@media (max-width: 767px) {
    .footer-thirteen .f-about {
        padding: 0;
    }
}

.footer-thirteen .f-about p {
    color: var(--white);
}

.footer-thirteen .footer-social {
    margin-top: 30px;
}

    .footer-thirteen .footer-social li {
        display: inline-block;
        margin-right: 10px;
    }

        .footer-thirteen .footer-social li:last-child {
            margin-right: 0;
        }

    .footer-thirteen .footer-social a {
        font-size: 16px;
        display: block;
        background: transparent;
        border: none;
        color: var(--white);
        position: relative;
        z-index: 3;
        height: 38px;
        width: 38px;
        display: block;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.452);
        text-align: center;
        line-height: 38px;
        -webkit-transition: all 0.4s ease-out 0s;
        -moz-transition: all 0.4s ease-out 0s;
        -ms-transition: all 0.4s ease-out 0s;
        -o-transition: all 0.4s ease-out 0s;
        transition: all 0.4s ease-out 0s;
    }

        .footer-thirteen .footer-social a:hover {
            color: var(--primary);
            background-color: var(--white);
            border-color: transparent;
        }

.footer-thirteen .footer-middle {
    padding-bottom: 100px;
    padding-top: 70px;
}

@media (max-width: 767px) {
    .footer-thirteen .footer-middle {
        padding-bottom: 40px;
        padding-top: 40px;
    }
}

.footer-thirteen .footer-widget {
    margin-top: 30px;
}

    .footer-thirteen .footer-widget h3 {
        color: var(--white);
        font-size: 16px;
        font-weight: 600;
        position: relative;
        text-transform: capitalize;
        margin-bottom: 30px;
    }

.footer-thirteen .f-link li {
    margin-bottom: 18px;
    position: relative;
}

    .footer-thirteen .f-link li:last-child {
        margin: 0;
    }

.footer-thirteen .f-link a {
    display: inline-block;
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

    .footer-thirteen .f-link a:hover {
        opacity: 0.7;
    }

.footer-thirteen .f-contact ul {
    margin-top: 20px;
}

.footer-thirteen .f-contact li {
    display: block;
    margin-bottom: 15px;
    color: var(--white);
    position: relative;
    padding-left: 35px;
}

    .footer-thirteen .f-contact li i {
        display: inline-block;
        font-size: 18px;
        color: var(--white);
        position: absolute;
        left: 0;
        top: 0;
    }

    .footer-thirteen .f-contact li:last-child {
        margin: 0;
    }

.footer-thirteen .footer-bottom {
    padding: 30px 0;
    background-color: transparent;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

    .footer-thirteen .footer-bottom .inner {
        text-align: center;
    }

        .footer-thirteen .footer-bottom .inner p {
            color: var(--white);
        }

        .footer-thirteen .footer-bottom .inner a {
            font-weight: 400;
            display: inline-block;
            margin-left: 6px;
            color: var(--white);
        }

            .footer-thirteen .footer-bottom .inner a:hover {
                text-decoration: underline;
            }

/*# sourceMappingURL=footer-13.css.map */



.footer-bg-custom {
    background-image: url('/assets/images/footer/footer-background.png');
    background-size: contain;
    background-position-y: bottom;
    background-repeat: no-repeat;
    background-position-x: left;
}

/* Footer Badge Images */
.footer-badge-image {
    max-width: 60px;
    max-height: auto;
}

.footer-badge-spacing {
    margin-right: 0.5rem; /* Bootstrap's me-2 equivalent */
}


.request-demo-title {
    font-size: 2.4em !important;
    font-weight: bold;
    font-family: Inter, sans-serif;
}

.request-demo-description {
    font-family: Inter, sans-serif;
    color: black;
    font-size: 1.25em;
}

.features-eleven .nav-head {
    display: block;
    max-width: unset !important;
    margin: auto;
}

.request-demo {
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: bottom;
    background-size: auto;
    padding-top: 130px !important;
    padding-bottom: 130px !important;
}

@media (min-width: 992px) {
    .request-demo {
        background-image: url('/assets/images/home/cta_phone.png');
        background-repeat: no-repeat;
        background-position-x: right;
        background-position-y: bottom;
        background-size: cover;
        padding-top: 130px !important;
        padding-bottom: 130px !important;
    }
}

@media (min-width: 1200px) {
    .request-demo {
        background-image: url('/assets/images/home/cta_phone.png');
        background-repeat: no-repeat;
        background-position-x: right;
        background-position-y: bottom;
        background-size: auto;
        padding-top: 130px !important;
        padding-bottom: 130px !important;
    }
}