@import url('/assets/css/google_fonts/inter.css');

.sticky {
    top: 0;
    width: 100%;
    position: fixed;
    z-index: 99;
}
/*===========================
  COMMON css
===========================*/
:root {
    --font-family: 'Inter', sans-serif;
    --primary: #217bac;
    --primary-dark: #274bdb;
    --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: #f7f9fc;
    --light-2: #f3f4fe;
    --light-3: #e4e9f2;
    --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;
}
@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: 16px;
    line-height: 20px;
    text-align: center;
    letter-spacing: 0.08em;
    padding: 12px 24px;
    border-radius: 4px;
    border: 1px solid transparent;
}
.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.light-rounded {
    border-radius: 5px;
}
.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;
}

/*======================================
   Custom Properties
======================================== */

/* ===== Buttons Css ===== */
.navbar-six .navbar-btn .primary-btn {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-2);
}
.navbar-six .navbar-btn .active.primary-btn, .navbar-six .navbar-btn .primary-btn:hover, .navbar-six .navbar-btn .primary-btn:focus {
    background: var(--primary-dark);
    color: var(--white);
    box-shadow: var(--shadow-4);
}
.navbar-six .navbar-btn .deactive.primary-btn {
    background: var(--gray-4);
    color: var(--dark-3);
    pointer-events: none;
}

/*===========================
  NAVBAR css
===========================*/
.navbar-toggler:focus {
    box-shadow: none;
}

.mb-100 {
    margin-bottom: 100px;
}

/*===== NAVBAR SIX =====*/
.navbar-six {
    background-color: var(--light-2);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-six {
        padding: 10px 0;
    }
}
.navbar-six .navbar {
    position: relative;
    padding: 0;
}
.navbar-six .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-six .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-six .navbar-toggler.active .toggler-icon:nth-of-type(2) {
    opacity: 0;
}
.navbar-six .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-six .navbar-collapse {
        position: absolute;
        top: 116%;
        left: 0;
        width: 100%;
        background-color: var(--light-2);
        z-index: 8;
        padding: 10px 16px;
    }
}
.navbar-six .navbar-nav {
    margin-right: 24px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-six .navbar-nav {
        margin-right: 0;
    }
}
.navbar-six .navbar-nav .nav-item {
    position: relative;
}
.navbar-six .navbar-nav .nav-item a {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    color: var(--black);
    text-transform: capitalize;
    position: relative;
    border-radius: 5px;
    -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;
    font-weight: 500;
    margin: 22px 6px;
    border: 1px solid transparent;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-six .navbar-nav .nav-item a {
        padding: 10px;
        display: block;
        border: 0;
        margin: 0;
    }
    .navbar-six .navbar-nav .nav-item a.active i {
        color: var(--white);
    }
}
.navbar-six .navbar-nav .nav-item a.active {
    opacity: 1;
    background-color: var(--primary);
    color: var(--white);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-six .navbar-nav .nav-item a.active {
        border: 0;
    }
}
.navbar-six .navbar-nav .nav-item a i {
    font-size: 14px;
    font-weight: 700;
    padding-left: 8px;
}
.navbar-six .navbar-nav .nav-item:hover > a {
    background-color: var(--primary);
    color: var(--white);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-six .navbar-nav .nav-item:hover > a {
        border: 0;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-six .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(--black);
    }
}
.navbar-six .navbar-nav .nav-item .sub-menu {
    position: absolute;
    left: 0;
    top: 100%;
    width: 260px;
    background-color: var(--white);
    border-radius: 5px;
    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;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
    padding: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-six .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-six .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-six .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-six .navbar-nav .nav-item .sub-menu.show {
        height: auto;
    }
}
.navbar-six .navbar-nav .nav-item .sub-menu li {
    position: relative;
    margin-bottom: 6px;
}
.navbar-six .navbar-nav .nav-item .sub-menu li:last-child {
    margin-bottom: 0px;
}
.navbar-six .navbar-nav .nav-item .sub-menu li .sub-nav-toggler {
    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;
}
.navbar-six .navbar-nav .nav-item .sub-menu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 24px;
    position: relative;
    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;
    border-radius: 0;
    margin: 0 0;
    opacity: 1;
    border: 0;
    border-radius: 5px;
}
.navbar-six .navbar-nav .nav-item .sub-menu li a .sub-nav-toggler {
    color: var(--black);
}
.navbar-six .navbar-nav .nav-item .sub-menu li a i {
    font-weight: 700;
    font-size: 14px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-six .navbar-nav .nav-item .sub-menu li a i {
        display: none;
    }
}
.navbar-six .navbar-nav .nav-item .sub-menu li a.active {
    color: var(--white);
}
.navbar-six .navbar-nav .nav-item .sub-menu li a.active i {
    color: var(--white);
}
.navbar-six .navbar-nav .nav-item .sub-menu li a .sub-nav-toggler i {
    display: inline-block;
}
.navbar-six .navbar-nav .nav-item .sub-menu li a::after, .navbar-six .navbar-nav .nav-item .sub-menu li a::before {
    display: none;
}
.navbar-six .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-six .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-six .navbar-nav .nav-item .sub-menu li .sub-menu {
        padding-left: 30px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-six .navbar-nav .nav-item .sub-menu li .sub-menu.show {
        visibility: visible;
        height: auto;
        position: relative;
    }
}
.navbar-six .navbar-nav .nav-item .sub-menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
}
.navbar-six .navbar-nav .nav-item .sub-menu li:hover .sub-nav-toggler {
    color: var(--white);
}
.navbar-six .navbar-nav .nav-item .sub-menu li:hover > a {
    background: var(--primary);
    color: var(--white);
}
.navbar-six .navbar-nav .nav-item .sub-menu li:hover > a::before {
    opacity: 1;
}
.navbar-six .navbar-nav .nav-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-six .navbar-btn {
        position: absolute;
        right: 70px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}
@media (max-width: 767px) {
    .navbar-six .navbar-btn {
        position: absolute;
        right: 60px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}
.navbar-six .navbar-btn .primary-btn {
    font-weight: 500;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .navbar-six .navbar-btn .primary-btn {
        padding: 12px 20px;
    }
}

/*======================================
    Hero Area CSS
========================================*/
/* ===== Buttons Css ===== */
.rounded-buttons .primary-btn {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-2);
}
.rounded-buttons .active.primary-btn, .rounded-buttons .primary-btn:hover, .rounded-buttons .primary-btn:focus {
    background: var(--primary-dark);
    color: var(--white);
    box-shadow: var(--shadow-4);
}
.rounded-buttons .deactive.primary-btn {
    background: var(--gray-4);
    color: var(--dark-3);
    pointer-events: none;
}
.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: 700px;
    }
}
@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: 100px;
    }
}
.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-image img {
    /*width: 100%;*/
    border-radius: 8px;
}
/*@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .header-thirteen .header-image {
        margin-top: 40px;
    }
}*/

/*============================
  Section Title Three CSS
==============================*/
.section-title-three {
    text-align: center;
    max-width: 800px;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 5;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-title-three {
        margin-bottom: 45px;
    }
}
@media (max-width: 767px) {
    .section-title-three {
        margin-bottom: 35px;
    }
}
.section-title-three h5 {
    font-weight: 600;
    margin-bottom: 7px;
    color: var(--primary);
    font-size: 1rem;
}
@media (max-width: 767px) {
    .section-title-three h5 {
        font-size: 0.8rem;
    }
}
.section-title-three h2 {
    margin-bottom: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-title-three h2 {
        font-size: 2rem;
        line-height: 2.8rem;
    }
}
@media (max-width: 767px) {
    .section-title-three h2 {
        font-size: 1.5rem;
        line-height: 1.9rem;
    }
}
.section-title-three p {
    color: var(--dark-3);
}

/*===========================
  features css
===========================*/
.features-twelve {
    background-color: var(--white);
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    /* Section Title Two */
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .features-twelve {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}
.features-twelve .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-twelve .section-title-two {
        margin-bottom: 45px;
    }
}
@media (max-width: 767px) {
    .features-twelve .section-title-two {
        margin-bottom: 35px;
    }
}
.features-twelve .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-twelve .section-title-two h2 {
    margin-bottom: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .features-twelve .section-title-two h2 {
        font-size: 2rem;
        line-height: 2.8rem;
    }
}
@media (max-width: 767px) {
    .features-twelve .section-title-two h2 {
        font-size: 1.5rem;
        line-height: 1.9rem;
    }
}
.features-twelve .section-title-two p {
    color: var(--dark-3);
}

.features-style-twelve {
    height: 90%;
    padding: 50px 30px;
    border: 2px solid var(--gray-4);
    border-radius: 10px;
    background-color: var(--white);
    text-align: left;
    margin-top: 30px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .features-style-twelve {
        padding: 40px 20px;
    }
}
.features-style-twelve:hover {
    box-shadow: var(--shadow-4);
}
.features-style-twelve .feature-icon {
    width: 80px;
    height: 80px;
    box-shadow: var(--shadow-2);
    border-radius: 5px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 35px;
    margin-bottom: 30px;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}
.features-style-twelve .feature-icon i {
    transition: all 0.4s ease-in-out;
}
.features-style-twelve h4 {
    display: block;
    margin-bottom: 20px;
}
.features-style-twelve p {
    color: var(--dark-3);
}
.features-style-twelve:hover {
    border-color: var(--primary);
}

/*============================
 Header Benefits
==============================*/
.header-benefits {
    text-align: start;
    max-width: 550px;
    margin-top: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 5;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-benefits {
        margin-bottom: 45px;
    }
}
@media (max-width: 767px) {
    .header-benefits {
        margin-bottom: 35px;
    }
}
.header-benefits h5 {
    font-weight: 600;
    margin-bottom: 7px;
    color: var(--primary);
    font-size: 1rem;
}
@media (max-width: 767px) {
    .header-benefits h5 {
        font-size: 0.8rem;
    }
}
.header-benefits h2 {
    margin-bottom: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-benefits h2 {
        font-size: 2rem;
        line-height: 2.8rem;
    }
}
@media (max-width: 767px) {
    .header-benefits h2 {
        font-size: 1.5rem;
        line-height: 1.9rem;
    }
}
.header-benefits p {
    color: var(--dark-3);
}

/* tabs-five */
.tabs-five {
    /*box-shadow: var(--shadow-4); */
    border-radius: 4px;
}
.tabs-five .nav {
    height: 100%;
}
.tabs-five .nav a {
    font-size: 16px;
    line-height: 24px;
    color: var(--dark-3);
    font-weight: 700;
    padding: 13px;
    -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;
    display: block;
    position: relative;
    text-align: start;
    border-radius: 4px;
}
.tabs-five .nav a i {
    margin-right: 5px;
    font-size: 18px;
}
.tabs-five .nav a.active {
    color: var(--white);
    background: var(--primary);
}
.tabs-five .tab-content .tab-text {
    padding-left: 15px;
    padding-right: 15px;
}
.tabs-five .tab-content .tab-text .text {
    color: var(--dark-3);
    list-style: inside;
}


/*===========================
  Features 2
===========================*/
.features-2 {
    padding-top: 100px;
    padding-bottom: 100px;
}

/*===========================
  teams css
===========================*/
.team-area {
    margin-bottom: 70px;
    padding-top: 100px;
    padding-bottom: 100px;
}

.team-area.dark {
    background-color: var(--light-2);
}

.team-card {
    background-color: var(--white);
}

.team-style-four {
    position: relative;
    margin-top: 30px;
    box-shadow: var(--shadow-2);
    border-radius: 8px;
    overflow: hidden;
}
.team-style-four .team-image img {
    width: 100%;
}
.team-style-four .team-content {
    padding: 25px 30px;
    border-radius: 8px;
    position: relative;
    background-color: var(--white);
}
.team-style-four .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-four .team-content .name {
        font-size: 20px;
    }
}
.team-style-four .team-content p {
    font-size: 15px;
    margin: 18px 0 12px 0;
}
.team-style-four .team-content .sub-title {
    font-size: 16px;
    line-height: 24px;
    color: var(--dark-3);
    margin-top: 2px;
    display: block;
}
.team-style-four .team-content .social {
    margin-top: 20px;
}
.team-style-four .team-content .social li {
    display: inline-block;
    margin-right: 12px;
}
.team-style-four .team-content .social li:last-child {
    margin: 0;
}
.team-style-four .team-content .social li a {
    font-size: 18px;
    color: var(--primary);
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -ms-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}
.team-style-four .team-content .social li a:hover {
    color: var(--primary-dark);
}

/* ===== Buttons Css ===== */
.contact-form-wrapper .contact-form .primary-btn {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-2);
}
.contact-form-wrapper .contact-form .active.primary-btn, .contact-form-wrapper .contact-form .primary-btn:hover, .contact-form-wrapper .contact-form .primary-btn:focus {
    background: var(--primary-dark);
    color: var(--white);
    box-shadow: var(--shadow-4);
}
.contact-form-wrapper .contact-form .deactive.primary-btn {
    background: var(--gray-4);
    color: var(--dark-3);
    pointer-events: none;
}

/*======================================
	Contact CSS
========================================*/
.contact-section-main {
    position: relative;
    z-index: 3;
    padding-top: 130px;
}
.contact-section-main .contact-item-wrapper .contact-item {
    display: flex;
    border: 1px solid var(--gray-4);
    border-radius: 10px;
    background: var(--white);
    margin-bottom: 30px;
    padding: 20px 30px;
    -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;
}
.contact-section-main .contact-item-wrapper .contact-item:hover {
    box-shadow: var(--shadow-4);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .contact-section-main .contact-item-wrapper .contact-item {
        padding: 20px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-section-main .contact-item-wrapper .contact-item {
        flex-direction: column;
    }
}
@media (max-width: 767px) {
    .contact-section-main .contact-item-wrapper .contact-item {
        flex-direction: column;
    }
}
.contact-section-main .contact-item-wrapper .contact-item .contact-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    -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;
}
.contact-section-main .contact-item-wrapper .contact-item .contact-content {
    margin-left: 25px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .contact-section-main .contact-item-wrapper .contact-item .contact-content {
        margin-left: 20px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-section-main .contact-item-wrapper .contact-item .contact-content {
        margin-left: 0px;
        margin-top: 20px;
    }
}
@media (max-width: 767px) {
    .contact-section-main .contact-item-wrapper .contact-item .contact-content {
        margin-left: 0px;
        margin-top: 20px;
    }
}
.contact-section-main .contact-item-wrapper .contact-item .contact-content h4 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-form-wrapper {
    padding: 50px 40px;
    background: var(--white);
    border: 1px solid var(--gray-4);
    margin-left: 0px;
    border-radius: 10px;
    -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;
}
.contact-form-wrapper:hover {
    box-shadow: var(--shadow-4);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .contact-form-wrapper {
        margin-left: 30px;
    }
}
.contact-form-wrapper .section-title {
    margin-bottom: 30px;
}
.contact-form-wrapper .section-title span {
    font-size: 20px;
    color: var(--primary);
    font-weight: 700;
}
.contact-form-wrapper .section-title h2 {
    margin-bottom: 10px;
}
.contact-form-wrapper .section-title p {
    color: var(--dark-3);
}
.contact-form-wrapper .contact-form input,
.contact-form-wrapper .contact-form textarea {
    padding: 15px 25px;
    border-radius: 30px;
    border: 1px solid var(--gray-4);
    margin-bottom: 25px;
    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;
}
@media (max-width: 767px) {
    .contact-form-wrapper .contact-form input,
    .contact-form-wrapper .contact-form textarea {
        padding: 12px 25px;
    }
}
.contact-form-wrapper .contact-form input:focus,
.contact-form-wrapper .contact-form textarea:focus {
    border-color: var(--primary);
}
.contact-form-wrapper .contact-form textarea {
    border-radius: 18px;
}
.map-style-9 {
    margin-top: -130px;
}

.map-container {
    background-color: var(--light-2);
}

/* ===== 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-top: 50px;
    padding-bottom: 100px;
    margin-bottom: 100px;
}
.call-action-one .call-action-content .call-action-text {
    margin-top: 50px;
}
.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: 50px;
}

/* ===== Buttons Css ===== */
.error-text .button .primary-btn {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-2);
}
.error-text .button .active.primary-btn, .error-text .button .primary-btn:hover, .error-text .button .primary-btn:focus {
    background: var(--primary-dark);
    color: var(--white);
    box-shadow: var(--shadow-4);
}
.error-text .button .deactive.primary-btn {
    background: var(--gray-4);
    color: var(--dark-3);
    pointer-events: none;
}

/*======================================
	ERROR TWO Style
========================================*/
.error-two {
    background-color: var(--white);
    min-height: 500px;
    height: 100vh;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    z-index: 2;
}
@media (max-width: 767px) {
    .error-two {
        height: auto;
        padding: 50px 0;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .error-two {
        height: auto;
        padding: 60px 0;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .error-two {
        height: auto;
        padding: 80px 0;
    }
}
.error-two .d-table {
    width: 100%;
    height: 100%;
}
.error-two .d-table {
    display: table !important;
}
.error-two .d-table-cell {
    vertical-align: middle;
}
.error-two .d-table-cell {
    display: table-cell !important;
}

.error-image img {
    width: 60%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .error-image img {
        width: 40%;
    }
}

@media (max-width: 767px) {
    .error-text {
        text-align: center;
        margin-top: 40px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .error-text {
        text-align: center;
        margin-top: 40px;
    }
}
.error-text h3 {
    color: var(--primary);
    display: block;
    font-size: 100px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}
@media (max-width: 767px) {
    .error-text h3 {
        font-size: 70px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .error-text h3 {
        font-size: 60px;
    }
}
.error-text .text {
    color: var(--dark-3);
    font-weight: 500;
    color: var(--dark-2);
}
.error-text p {
    margin-bottom: 8px;
}
.error-text .button {
    margin-top: 30px;
}








/*======================================
	FOOTER TWO
========================================*/
.footer-two {
    background-color: var(--light-2);
}
.footer-two .f-about {
    margin-top: 30px;
}
.footer-two .f-about .text {
    margin-top: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) {
    .footer-two .f-about {
        padding-right: 200px;
    }
}
.footer-two .footer-widget {
    padding-top: 70px;
    padding-bottom: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-two .footer-widget {
        padding-top: 40px;
        padding-bottom: 70px;
    }
}
@media (max-width: 767px) {
    .footer-two .footer-widget {
        padding-top: 20px;
        padding-bottom: 50px;
    }
}
.footer-two .footer-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    color: var(--black);
    position: relative;
}
.footer-two .footer-support {
    padding-top: 21px;
}
.footer-two .footer-support span {
    font-size: 16px;
    line-height: 24px;
    color: var(--black);
    font-weight: 500;
    margin-top: 9px;
    display: block;
}
@media (max-width: 767px) {
    .footer-two .footer-support span {
        display: block;
    }
}
.footer-two .social {
    padding-top: 27px;
}
.footer-two .social li {
    display: inline-block;
    margin-right: 15px;
}
.footer-two .social li:last-child {
    margin-right: 0;
}
.footer-two .social a {
    font-size: 18px;
    color: var(--dark-3);
    -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;
}
.footer-two .social a:hover {
    color: var(--primary);
}
.footer-two .footer-link {
    margin-top: 32px;
}
.footer-two .footer-link ul {
    margin-top: 8px;
}
.footer-two .footer-link ul a {
    font-size: 16px;
    line-height: 24px;
    color: var(--dark-3);
    margin-top: 16px;
    font-weight: 400;
    -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 (max-width: 767px) {
    .footer-two .footer-link ul a {
        margin-top: 12px;
    }
}
.footer-two .footer-link ul a:hover {
    color: var(--primary);
}
.footer-two .footer-copyright {
    border-top: 1px solid var(--gray-4);
}
.footer-two .copyright {
    padding-bottom: 23px;
    padding-top: 13px;
}
.footer-two .copyright .text {
    color: var(--dark-3);
    margin-top: 10px;
}

.back-to-top {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: var(--primary);
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 5px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    color: var(--white);
}

.back-to-top:hover {
    color: var(--white);
    background: var(--primary-dark);
}
