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

/*===========================
  COMMON css
===========================*/
:root {
    --font-family: 'Inter', sans-serif;
    --primary: #ff7052;
    --primary-dark: #DB4B3B;
    --primary-light: #FFD5B9;
    --accent: #00d4d7;
    --accent-dark: #00bac1;
    --accent-light: #dff9f8;
    --success: #13d527;
    --success-dark: #00ae11;
    --success-light: #eafbe7;
    --secondary: #5988fa;
    --secondary-dark: #4168D7;
    --secondary-light: #BCD5FE;
    --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: #eff4ff;
    --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
======================================== */

.custom-primary {
    color: var(--primary);
}

/* ===== 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 {
    
    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;
    }
}*/

/*============================
  CLIENT LOGO AREA
==============================*/
/*===== Client Logo Two =====*/
.client-logo-two {
    background: var(--light-2);
    padding-top: 50px;
    padding-bottom: 50px;
}
.client-logo-two .section-title-two {
    text-align: center;
    max-width: 600px;
    margin: auto;
    margin-bottom: 50px;
    position: relative;
    z-index: 5;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .client-logo-two .section-title-two {
        margin-bottom: 45px;
    }
}
@media (max-width: 767px) {
    .client-logo-two .section-title-two {
        margin-bottom: 35px;
    }
}
.client-logo-two .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;
}
.client-logo-two .section-title-two h2 {
    margin-bottom: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .client-logo-two .section-title-two h2 {
        font-size: 2rem;
        line-height: 2.8rem;
    }
}
@media (max-width: 767px) {
    .client-logo-two .section-title-two h2 {
        font-size: 1.5rem;
        line-height: 1.9rem;
    }
}
.client-logo-two .section-title-two p {
    color: var(--dark-3);
}
.client-logo-two .single-client {
    margin-top: 30px;
}

/*===== SLIDER ONE =====*/
/* ===== Buttons Css ===== */
.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .primary-btn {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-2);
}
.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .active.primary-btn, .slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .primary-btn:hover, .slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .primary-btn:focus {
    background: var(--primary-dark);
    color: var(--white);
    box-shadow: var(--shadow-4);
}
.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .deactive.primary-btn {
    background: var(--gray-4);
    color: var(--dark-3);
    pointer-events: none;
}

.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .primary-btn-outline {
    border-color: var(--primary);
    color: var(--primary);
}
.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .active.primary-btn-outline, .slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .primary-btn-outline:hover, .slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .primary-btn-outline:focus {
    background: var(--primary-dark);
    color: var(--white);
}
.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .deactive.primary-btn-outline {
    color: var(--dark-3);
    border-color: var(--gray-4);
    pointer-events: none;
}
.slider-one .bd-example .carousel .carousel-inner {
    background-color: var(--primary);
}
.slider-one .bd-example .carousel .carousel-inner .carousel-item {
    height: auto;
    padding: 300px 0;
    position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-one .bd-example .carousel .carousel-inner .carousel-item {
        padding: 200px 0;
    }
}
@media (max-width: 767px) {
    .slider-one .bd-example .carousel .carousel-inner .carousel-item {
        padding: 150px 0;
    }
}
.slider-one .bd-example .carousel .carousel-inner .carousel-item::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #222B45;
    opacity: 0.9;
}
@media (max-width: 767px) {
    .slider-one .bd-example .carousel .carousel-inner .carousel-item {
        height: 400px;
    }
}
.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption {
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    left: 0;
}
.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-title {
    font-size: 44px;
    font-weight: 700;
    color: var(--white);
    line-height: 55px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-title {
        font-size: 35px;
        line-height: 42px;
    }
}
@media (max-width: 767px) {
    .slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-title {
        font-size: 24px;
        line-height: 32px;
    }
}
.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .text {
    color: var(--white);
    display: block;
    margin: 20px 0;
}
.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li {
    display: inline-block;
    margin: 16px 8px 0;
}
@media (max-width: 767px) {
    .slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li {
        margin: 16px 3px 0;
    }
}
.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .primary-btn {
    background-color: var(--white);
    color: var(--primary);
    border: 1px solid transparent;
}
.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .primary-btn:hover {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}
.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .primary-btn-outline {
    border-color: var(--white);
    color: var(--white);
}
.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .primary-btn-outline:hover {
    border-color: transparent;
    background-color: var(--white);
    color: var(--primary);
}
.slider-one .bd-example .carousel .carousel-control-prev, .slider-one .bd-example .carousel .carousel-control-next {
    top: 50%;
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    border: 1px solid var(--white);
    font-size: 20px;
    color: var(--white);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    bottom: auto;
    left: 30px;
    opacity: 1;
    z-index: 2;
    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;
}
.slider-one .bd-example .carousel .carousel-control-prev:hover, .slider-one .bd-example .carousel .carousel-control-next:hover {
    background-color: var(--white);
    color: var(--primary);
    border-color: transparent;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .slider-one .bd-example .carousel .carousel-control-prev, .slider-one .bd-example .carousel .carousel-control-next {
        left: 30px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-one .bd-example .carousel .carousel-control-prev, .slider-one .bd-example .carousel .carousel-control-next {
        left: 30px;
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
}
@media (max-width: 767px) {
    .slider-one .bd-example .carousel .carousel-control-prev, .slider-one .bd-example .carousel .carousel-control-next {
        left: 20px;
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
}
.slider-one .bd-example .carousel .carousel-control-next {
    right: 30px;
    left: auto;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .slider-one .bd-example .carousel .carousel-control-next {
        right: 40px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-one .bd-example .carousel .carousel-control-next {
        right: 40px;
    }
}
@media (max-width: 767px) {
    .slider-one .bd-example .carousel .carousel-control-next {
        right: 20px;
    }
}
.slider-one .bd-example .carousel .carousel-indicators {
    margin-bottom: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-one .bd-example .carousel .carousel-indicators {
        margin-bottom: 40px;
    }
}
@media (max-width: 767px) {
    .slider-one .bd-example .carousel .carousel-indicators {
        margin-bottom: 30px;
    }
}
.slider-one .bd-example .carousel .carousel-indicators li {
    width: 10px;
    height: 10px;
    background-color: var(--white);
    border-radius: 50px;
    border: 0;
    margin: 0px 5px;
    -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;
}
.slider-one .bd-example .carousel .carousel-indicators li.active {
    width: 20px;
    background-color: var(--white);
    border-radius: 5px;
}
.slider-one .bd-example .carousel .carousel-indicators li:hover {
    opacity: 1;
}

/*===========================
  Features Three CSS
===========================*/
.features-three {
    background-color: var(--white);
    padding-top: 100px;
    padding-bottom: 100px;
    margin-top: 100px;
    margin-bottom: 100px;
}
.features-three .section-title {
    padding-bottom: 10px;
}
.features-three .title {
    font-size: 44px;
    font-weight: 600;
    color: var(--black);
    line-height: 55px;
}
@media (max-width: 767px) {
    .features-three .title {
        font-size: 30px;
        line-height: 35px;
    }
}
.features-three .text {
    font-size: 16px;
    line-height: 24px;
    color: var(--dark-3);
    margin-top: 24px;
}

.features-style-three {
    margin-top: 40px;
    background-color: var(--white);
    border-radius: 8px;
    padding: 35px;
    -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;
}

@media (max-width: 767px) {
    .features-style-three {
        padding: 20px;
    }
}
.features-style-three .features-icon {
    position: relative;
    display: inline-block;
}
.features-style-three .features-icon i {
    font-size: 60px;
    color: var(--primary);
    position: relative;
    z-index: 5;
}
.features-style-three .features-icon .shape {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.5;
}
.features-style-three .features-content {
    margin-top: 30px;
}
.features-style-three .features-title {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    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) {
    .features-style-three .features-title {
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    .features-style-three .features-title {
        font-size: 20px;
    }
}
.features-style-three .text {
    color: var(--dark-3);
    margin-top: 16px;
}

/*===========================
  about-03 css
===========================*/
.about-three {
    background-color: var(--light-2);
    padding-top: 90px;
    padding-bottom: 120px;
    margin-top: 100px;
    margin-bottom: 100px;
}

.about-feature-three .about-feature-image img {
    height: 100%;
    border-radius: 5px;
}

.about-feature-items-three {
    padding-left: 50px;
    padding-right: 100px;
    display: flex;
    align-items: center;
    height: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-feature-items-three {
        padding: 0;
        margin-top: 30px;
    }
}
@media (max-width: 767px) {
    .about-feature-items-three {
        padding: 0;
        margin-top: 30px;
    }
}
.about-feature-items-three ul li {
    position: relative;
    margin-bottom: 40px;
}
.about-feature-items-three ul li:last-child {
    margin: 0;
}
.about-feature-items-three ul li span {
    max-width: 45px;
    min-width: 45px;
    max-height: 45px;
    min-height: 45px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--secondary);
    color: var(--white);
    position: absolute;
    left: 0;
    top: 0;
    border: 3px solid transparent;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    font-size: 18px;
}
.about-feature-items-three ul li .content {
    display: inline-block;
    padding-left: 70px;
}
.about-feature-items-three ul li .content .list-title {
    margin-bottom: 10px;
}

/*# sourceMappingURL=about-03.css.map */


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

.team-style-six {
    position: relative;
    margin-top: 30px;
    box-shadow: var(--shadow-2);
    border-radius: 8px;
    overflow: hidden;
}
.team-style-six .team-image img {
    width: 100%;
}
.team-style-six .team-content {
    padding: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding-top: 25px;
    padding-bottom: 25px;
    z-index: 5;
    -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) {
    .team-style-six .team-content {
        padding-top: 15px;
        padding-bottom: 15px;
    }
}
.team-style-six .team-content::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--primary);
    z-index: -1;
    -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;
    opacity: 0;
}
.team-style-six .team-content .team-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 (max-width: 767px) {
    .team-style-six .team-content .team-name {
        font-size: 18px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .team-style-six .team-content .team-name {
        font-size: 20px;
    }
}
.team-style-six .team-content .sub-title {
    font-size: 16px;
    line-height: 24px;
    margin-top: 10px;
    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;
}
@media (max-width: 767px) {
    .team-style-six .team-content .sub-title {
        font-size: 14px;
    }
}
.team-style-six .team-content .team-social {
    position: absolute;
    top: 0;
    left: 0;
    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;
    visibility: hidden;
    opacity: 0;
}
.team-style-six .team-content .team-social .social {
    background-color: var(--white);
    display: inline-block;
    padding: 10px 20px 6px;
    border-radius: 50px;
}
.team-style-six .team-content .team-social .social li {
    display: inline-block;
    margin: 0 8px;
}
.team-style-six .team-content .team-social .social li a {
    font-size: 16px;
    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;
}
.team-style-six .team-content .team-social .social li a:hover {
    color: var(--primary);
}
.team-style-six:hover .team-content {
    padding-top: 50px;
}
@media (max-width: 767px) {
    .team-style-six:hover .team-content {
        padding-top: 35px;
    }
}
.team-style-six:hover .team-content::before {
    opacity: 1;
}
.team-style-six:hover .team-content .team-social {
    top: -20px;
    visibility: visible;
    opacity: 1;
}
.team-style-six:hover .team-content .team-name {
    color: var(--white);
}
.team-style-six:hover .team-content .sub-title {
    color: var(--white);
}

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

/*======================================
	Contact CSS
========================================*/
.contact-us {
    position: relative;
    background-color: var(--white);
    padding-bottom: 0;
    padding-top: 100px;
    padding-bottom: 100px;
}
.contact-us .contact-head {
    background: var(--white);
    border-radius: 7px;
    overflow: hidden;
    box-shadow: var(--shadow-4);
    position: relative;
    z-index: 5;
}
.contact-us .title {
    margin-bottom: 30px;
}
.contact-us .contact-inner-title {
    margin-bottom: 45px;
}
.contact-us .contact-inner-title h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--white);
    text-transform: capitalize;
}
.contact-us .contact-inner-title p {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    line-height: 23px;
    margin-top: 10px;
    display: block;
}
.contact-us .single-head {
    padding: 50px;
    height: 100%;
    background: var(--secondary);
    position: relative;
    z-index: 5;
    overflow: hidden;
}
.contact-us .single-info {
    text-align: left;
    margin-bottom: 16px;
    padding-left: 40px;
    position: relative;
}
.contact-us .single-info .title {
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--white);
    font-size: 18px;
}
.contact-us .single-info .title span {
    display: block;
    font-size: 14px;
    margin-top: 8px;
    font-weight: 500;
}
.contact-us .single-info i {
    color: var(--white);
    font-size: 22px;
    display: inline-block;
    margin-right: 20px;
    position: absolute;
    left: 0;
    top: 2px;
}
.contact-us .single-info ul {
    display: inline-block;
}
.contact-us .single-info ul li {
    color: var(--white);
    font-weight: 500;
    display: inline-block;
    font-size: 15px;
}
.contact-us .single-info ul li:last-child {
    margin-bottom: 0;
}
.contact-us .single-info ul li a {
    font-weight: 500;
    color: var(--white);
    display: inline-block;
    font-size: 15px;
}
.contact-us .single-info ul li a :hover {
    color: var(--white);
}
.contact-us .contact-social {
    display: block;
    margin-top: 65px;
}
.contact-us .contact-social h5 {
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
}
.contact-us .contact-social ul {
    display: inline-block;
    position: relative;
    left: -9px;
    margin-top: 15px;
}
.contact-us .contact-social ul li {
    display: inline-block;
    margin-right: 5px;
}
.contact-us .contact-social ul li:last-child {
    margin-right: 0;
}
.contact-us .contact-social ul li a {
    color: var(--white);
    font-size: 17px;
    position: relative;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    display: block;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    overflow: hidden;
}
.contact-us .contact-social ul li a span {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -15px;
    margin-top: -15px;
    height: 30px;
    width: 30px;
    line-height: 30px;
    display: block;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.contact-us .contact-social ul li a:hover .icon-1 {
    top: -15px;
}
.contact-us .contact-social ul li a .icon-2 {
    top: 50px;
}
.contact-us .contact-social ul li a:hover .icon-2 {
    top: 15px;
}
.contact-us .contact-social ul li a:hover {
    color: var(--white);
}
.contact-us .form-main {
    padding: 35px 50px 50px 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-us .form-main {
        padding: 25px 40px 40px 40px;
    }
}
@media (max-width: 767px) {
    .contact-us .form-main {
        padding: 15px 30px 30px 30px;
    }
}
.contact-us .form-main .form-group {
    margin-top: 15px;
    display: block;
}
.contact-us .form-main .form-group textarea,
.contact-us .form-main .form-group input {
    height: 55px;
    line-height: 55px;
    width: 100%;
    border: 1px solid var(--gray-4);
    padding: 0px 20px;
    color: var(--black);
    border-radius: 0px;
    font-weight: 400;
    border-radius: 5px;
}
.contact-us .form-main .form-group textarea:focus,
.contact-us .form-main .form-group input:focus {
    border-color: var(--primary);
}
.contact-us .form-main .form-group textarea {
    height: 180px;
}

/* ===== 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);
}
