@import url("https://fonts.googleapis.com/css2?family=Play:wght@400;700&display=swap");

@import url("animate.css");
@import url("swiper.min.css");
:root {
    --theme-color1: #16171b;
    --theme-color2: #31ba9c;
    --theme-color3: #f4f5f8;
    --bg-theme-color1: var(--theme-color1);
    --bg-theme-color2: var(--theme-color2);
    --bg-theme-color3: var(--theme-color3);
    --border-theme-color1: var(--theme-color1);
    --border-theme-color2: var(--theme-color2);
    --border-theme-color3: var(--theme-color3);
    --text-color-bg-theme-color1: #fff;
    --text-color-bg-theme-color2: #164333;
    --text-color-bg-theme-color3: #fff;
    --text-color: #fff;
    --headings-color: var(--theme-color1);
    --link-color: var(--theme-color1);
    --link-hover-color: var(--theme-color1);
    --text-font: "Play", sans-serif;
    --body-font-size: 18px;
    --body-line-height: 30px;
    --body-font-weight: 400;
    --line-height-heading-h1: 1em;
    --line-height-heading: 1.2em;
    --line-height-heading-small: 1.4em;
    --h1-font-size: 90px;
    --h2-font-size: 48px;
    --h3-font-size: 36px;
    --h4-font-size: 28px;
    --h5-font-size: 22px;
    --h6-font-size: 18px;
    --h1-font-weight: 700;
    --h2-font-weight: 700;
    --h3-font-weight: 700;
    --h4-font-weight: 700;
    --h5-font-weight: 700;
    --h6-font-weight: 700;
    --sec-title-subtitle-color: var(--theme-color2);
    --sec-title-subtitle-font-size: 14px;
    --sec-title-subtitle-font-family: var(--text-font);
    --sec-title-subtitle-font-weight: 700;
    --sec-title-subtitle-line-height: 1.2em;
    --sec-title-color: var(--headings-color);
    --sec-title-font-size: var(--h2-font-size);
    --sec-title-font-family: var(--title-font);
    --sec-title-font-weight: var(--h2-font-weight);
    --theme-light-background: #f8f6f1;
    --theme-light-background-text-color: var(--headings-color);
    --theme-black: #16171b;
    --container-width: 1200px;
    --small-container-width: 1000px;
    --large-container-width: 1550px;
    --container-pt: 120px;
    --container-pb: 120px;
    --dark-color1: #16171b;
    --dark-color2: #16171b;
    --dark-color3: #0d0e0f;
}

/*
 * typography.scss
 * -----------------------------------------------
*/
::-moz-selection {
    background: var(--theme-color2);
    color: #fff;
    text-shadow: none;
}
::selection {
    background: var(--theme-color2);
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: var(--theme-color2); /* Firefox */
    color: #fff;
    text-shadow: none;
}

::-webkit-selection {
    background: var(--theme-color2); /* Safari */
    color: #fff;
    text-shadow: none;
}

:active,
:focus {
    outline: none !important;
}

::-webkit-input-placeholder {
    color: #7c858c;
}

::-moz-input-placeholder {
    color: #7c858c;
}

::-ms-input-placeholder {
    color: #7c858c;
}

body {
    background-color: #fff;
    background-attachment: fixed;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    counter-reset: my-sec-counter;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    color: var(--text-color);
    font-size: var(--body-font-size);
    font-family: var(--text-font);
    font-weight: var(--body-font-weight);
    line-height: var(--body-line-height);
}

p,
.text {
    color: var(--text-color);
    font-size: var(--body-font-size);
    font-family: var(--text-font);
    font-weight: var(--body-font-weight);
    line-height: var(--body-line-height);
}

/* -------- Headings ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--headings-color);
    font-family: var(--title-font);
    position: relative;
    line-height: var(--line-height-heading-);
}
h1 small,
h1 .small,
h2 small,
h2 .small,
h3 small,
h3 .small,
h4 small,
h4 .small,
h5 small,
h5 .small,
h6 small,
h6 .small {
    font-weight: normal;
    line-height: 1;
    color: var(--headings-color);
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
    font-weight: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 1rem;
}

h1 {
    font-size: var(--h1-font-size);
    font-weight: var(--h1-font-weight);
    line-height: var(--line-height-heading-h1);
}

h2 {
    font-size: var(--h2-font-size);
    font-weight: var(--h2-font-weight);
    line-height: var(--line-height-heading);
}

h3 {
    font-size: var(--h3-font-size);
    font-weight: var(--h3-font-weight);
    line-height: var(--line-height-heading);
}

h4 {
    font-size: var(--h4-font-size);
    font-weight: var(--h4-font-weight);
    line-height: var(--line-height-heading);
}

h5 {
    font-size: var(--h5-font-size);
    font-weight: var(--h5-font-weight);
    line-height: var(--line-height-heading);
}

h6 {
    font-size: var(--h6-font-size);
    font-weight: var(--h6-font-weight);
    line-height: var(--line-height-heading-small);
}

/* -------- Body Text ---------- */
table p {
    margin-bottom: 0;
}

p {
    margin-bottom: 20px;
}
p a:not(.button):not(.btn):hover,
p a:not(.button):not(.btn):focus {
    text-decoration: underline;
}

/* -------- other ---------- */
a {
    color: var(--link-color);
    text-decoration: none;
    font-weight: var(--body-font-weight);
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    outline: none;
}
a b,
a strong {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
a img {
    border: none;
}

pre,
ul,
ol,
dl,
dd,
blockquote,
address,
table,
fieldset {
    margin-bottom: 10px;
}

ol,
ul {
    list-style-position: inside;
    margin: 0;
    padding: 0;
}

strong {
    color: #333;
    font-weight: var(--body-font-weight-bold);
}

iframe {
    border: none !important;
}

#servicii {
    scroll-margin-top: 70px;
}

/*
 * container.scss
 * -----------------------------------------------
*/
.container .container {
    width: 100%;
}

.container .container,
.container .container-fluid,
.container-fluid .container,
.container-fluid .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: var(--container-width);
    }
}
/*=== Default Form ===*/
.form-control,
.input-text {
    height: calc(2.25rem + 27px);
    padding: 14px 30px;
    outline: 0;
    background-color: #f4f5f8;
    border: 1px solid #f4f5f8;
    color: #686a6f;
    font-size: 0.9rem;
    width: 100%;
}
.form-control::-webkit-input-placeholder,
.input-text::-webkit-input-placeholder {
    color: #686a6f;
    opacity: 1;
}
.form-control::-moz-placeholder,
.input-text::-moz-placeholder {
    color: #686a6f;
    opacity: 1;
}
.form-control:-ms-input-placeholder,
.input-text:-ms-input-placeholder {
    color: #686a6f;
    opacity: 1;
}
.form-control::-ms-input-placeholder,
.input-text::-ms-input-placeholder {
    color: #686a6f;
    opacity: 1;
}
.form-control::placeholder,
.input-text::placeholder {
    color: #686a6f;
    opacity: 1;
}
.form-control:-ms-input-placeholder,
.input-text:-ms-input-placeholder {
    color: #686a6f;
}
.form-control::-ms-input-placeholder,
.input-text::-ms-input-placeholder {
    color: #686a6f;
}

textarea.form-control {
    height: auto;
    padding-top: 15px;
    padding-bottom: 15px;
}

/***

====================================================================
Reset
====================================================================

***/
* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    font-size: 100%;
}

/***

====================================================================
Global Settings
====================================================================

***/
textarea {
    overflow: hidden;
    resize: none;
}

button {
    outline: none !important;
    cursor: pointer;
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

ul,
li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.title a {
    color: inherit;
}

.color1 {
    color: var(--theme-color1);
}

.color2 {
    color: var(--theme-color2);
}

.color3 {
    color: var(--theme-color3);
}

.page-wrapper {
    /* position: relative; */
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
    z-index: 99;
    background-color: #ffffff;
}

.large-container {
    position: static;
    max-width: var(--large-container-width);
    padding: 0px 15px;
    margin: 0 auto;
    width: 100%;
}

.auto-container {
    position: static;
    max-width: var(--container-width);
    padding: 0px 15px;
    margin: 0 auto;
    width: 100%;
}

.small-container {
    position: static;
    max-width: var(--small-container-width);
    padding: 0px 15px;
    margin: 0 auto;
    width: 100%;
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.dropdown-toggle::after {
    display: none;
}

/*=======================
    Preloader
=======================*/
.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: #021011;
}

.preloader:after {
    position: absolute;
    left: calc(50% - 60px);
    top: calc(50% - 50px);
    height: 100px;
    width: 120px;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../images/logo-cc-transparent.svg);
    content: "";
}

.preloader:before {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    margin-top: 20px;
    color: var(--theme-color1);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    -webkit-transition: none;
    transition: none;
}

@media only screen and (max-width: 575px) {
    .preloader:after {
        position: absolute;
        left: calc(50% - 50px);
        top: calc(50% - 42px);
        height: 84px;
        width: 100px;
    }
}

/*=======================
Scroll To Top style
=======================*/
.scroll-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    font-size: 16px;
    line-height: 40px;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    background-color: var(--theme-color2);
    z-index: 100;
    display: none;
    border-radius: 50%;
    margin: 0 auto;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.scroll-to-top:hover {
    background: var(--theme-color1);
    color: #ffffff;
}

/*Social Icon One*/
.social-icon-one {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.social-icon-one li {
    position: relative;
    margin-left: 27px;
}
.social-icon-one li:first-child {
    margin-left: 0;
}
.social-icon-one li a {
    position: relative;
    display: block;
    line-height: 40px;
    height: 40px;
    text-align: center;
    font-size: 14px;
    color: var(--theme-color1);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.social-icon-one li a:hover {
    color: var(--theme-color2);
}

/*Social Icon Two*/
.social-icon-two {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.social-icon-two li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 10px;
}
.social-icon-two li:first-child {
    margin-left: 0;
}
.social-icon-two li a {
    position: relative;
    display: block;
    line-height: 40px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    text-align: center;
    font-size: 14px;
    color: #ffffff;
    border-radius: 50%;
    background-color: #16171b;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.social-icon-two li a:hover {
    color: var(--theme-color1);
    background-color: var(--bg-theme-color2);
}

/*Social Icon Three*/
.social-icon-three {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.social-icon-three li {
    position: relative;
    margin-left: 20px;
}

.social-icon-three li a {
    position: relative;
    display: block;
    line-height: 40px;
    text-align: center;
    font-size: 15px;
    color: #2f3529;
    border-radius: 50%;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.social-icon-three li a:hover {
    color: var(--theme-color2);
}

/*======================
    Tabs Box
======================*/
.tabs-box {
    position: relative;
}

.tabs-box .tab {
    display: none;
}

.tabs-box .active-tab {
    display: block;
}

/*======================
    Media Play Button
======================*/
.play-now {
    position: relative;
    display: block;
    z-index: 9;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.play-now .icon {
    position: relative;
    display: inline-block;
    height: 70px;
    width: 70px;
    text-align: center;
    line-height: 70px;
    background-color: #ffffff;
    color: var(--bg-theme-color1);
    z-index: 1;
    padding-left: 5px;
    font-size: 14px;
    display: block;
    border-radius: 50%;
    -webkit-box-shadow: 0 0px 10px 0 rgba(255, 255, 255, 0.3);
    box-shadow: 0 0px 10px 0 rgba(255, 255, 255, 0.3);
    -webkit-transform-origin: center;
    transform-origin: center;
}

.play-now .ripple,
.play-now .ripple:before,
.play-now .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 70px;
    width: 70px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.play-now .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.play-now .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

@-webkit-keyframes ripple {
    70% {
        -webkit-box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}
@keyframes ripple {
    70% {
        -webkit-box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}
.play-now-two {
    height: 92px;
    width: 92px;
    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;
    padding-left: 5px;
    font-size: 12px;
    border: 0.5px solid var(--border-theme-color1);
    color: #ffffff;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    -webkit-animation: zoom-one 3s infinite linear;
    animation: zoom-one 3s infinite linear;
}
.play-now-two:before {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 62px;
    width: 62px;
    border-radius: 50%;
    background-color: var(--bg-theme-color1);
    content: "";
}
.play-now-two i {
    position: relative;
}
.play-now-two:hover {
    color: #ff9205;
    background-color: #ffffff;
}

.theme-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 0;
}
.theme-btn .btn-title {
    position: relative;
}

.btn-style-one {
    position: relative;
    font-size: 14px;
    line-height: 22px;
    padding: 15px 50px;
    font-weight: 700;
    letter-spacing: 0.1em;
    overflow: hidden;
    text-transform: uppercase;
    color: var(--theme-color1);
    background: var(--theme-color2);
}
.btn-style-one:before {
    position: absolute;
    left: 0;
    top: 0%;
    height: 100%;
    width: 100%;
    content: "";
    background-color: var(--bg-theme-color1);
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    z-index: -1;
}
.btn-style-one:hover:before {
    -webkit-transform-origin: top right;
    transform-origin: top right;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    background-color: var(--dark-color3);
    border: 1.4px solid #808287;
}
.btn-style-one:hover {
    color: #ffffff;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.btn-style-one.hvr-light:hover {
    color: var(--theme-color2);
}
.btn-style-one.hvr-light:before {
    background-color: #ffffff;
}
.btn-style-one.bg-light:not(hover) {
    background-color: #ffffff !important;
}

/*Btn Style two*/
.btn-style-two {
    position: relative;
    font-size: 13px;
    line-height: 24px;
    padding: 15px 50px;
    font-weight: 700;
    letter-spacing: 0.1em;
    overflow: hidden;
    text-transform: uppercase;
    color: #ffffff;
    background: var(--bg-theme-color1);
}
.btn-style-two:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background-color: var(--bg-theme-color2);
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.btn-style-two:hover:before {
    -webkit-transform-origin: top right;
    transform-origin: top right;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}
.btn-style-two:hover {
    color: #ffffff;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.btn-style-two.hvr-light:hover {
    color: var(--theme-color2);
}
.btn-style-two.hvr-light:before {
    background-color: #ffffff;
}

/*Btn Style Three*/
.btn-style-three {
    position: relative;
    font-size: 13px;
    line-height: 24px;
    padding: 15px 50px;
    font-weight: 700;
    letter-spacing: 0.1em;
    overflow: hidden;
    text-transform: uppercase;
    color: var(--theme-color1);
    background: var(--bg-theme-color3);
}
.btn-style-three:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background-color: var(--bg-theme-color1);
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.btn-style-three:hover:before {
    -webkit-transform-origin: top right;
    transform-origin: top right;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}
.btn-style-three:hover {
    color: #ffffff;
}

.theme-btn.small {
    padding: 10px 40px;
    line-height: 20px;
    font-size: 12px;
}

/***

====================================================================
  Anim Icons
====================================================================

***/
.anim-icons {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
}

.anim-icons.full-width {
    max-width: 100%;
}

.anim-icons .icon {
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.icon-dots {
    width: 120px;
    height: 250px;
    background-image: url(../images/icons/icon-dots.png);
}

.icon-lines {
    width: 530px;
    height: 227px;
    background-image: url(../images/icons/icon-lines.png);
}

.icon-quote {
    width: 64px;
    height: 46px;
    background-image: url(../images/icons/icon-quote.png);
}

.bounce-y {
    -webkit-animation: bounce-y 10s infinite linear;
    animation: bounce-y 10s infinite linear;
}

.bounce-x {
    -webkit-animation: bounce-x 10s infinite linear;
    animation: bounce-x 10s infinite linear;
}

.zoom-one {
    -webkit-animation: zoom-one 10s infinite linear;
    animation: zoom-one 10s infinite linear;
}

@-webkit-keyframes float {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@-webkit-keyframes bounce-y {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes bounce-y {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@-webkit-keyframes bounce-x {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes bounce-x {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@-webkit-keyframes zoom-one {
    0% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }
    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
    100% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }
}
@keyframes zoom-one {
    0% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }
    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
    100% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }
}
.overlay-anim {
    position: relative;
}
.overlay-anim:after {
    background: rgba(255, 255, 255, 0.3);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
}
.overlay-anim:hover:after {
    height: 100%;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

/***

====================================================================
  Search Popup
====================================================================

***/
.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    overflow: hidden;
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
}
.search-popup .search-back-drop {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--bg-theme-color1);
    opacity: 0.95;
}
.search-popup .close-search {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 26px;
    color: var(--theme-color2);
    z-index: 3;
    border-radius: 50%;
    background-color: transparent;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.search-popup .search-inner {
    position: relative;
    display: block;
    top: 40%;
    height: auto;
    z-index: 1;
    width: calc(100% - 60px);
    max-width: 800px;
    margin: auto;
    opacity: 0;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.search-popup .form-group {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.search-popup .form-group input[type="search"],
.search-popup .form-group input[type="text"] {
    position: relative;
    display: block;
    line-height: 20px;
    font-size: 16px;
    width: 100%;
    height: 50px;
    border: 1px solid #e1e6dc;
    padding: 15px 20px;
    color: #fff;
    background: #ffffff;
    border-radius: 5px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.search-popup .form-group input[type="search"]:focus,
.search-popup .form-group input[type="text"]:focus {
    border-color: var(--border-theme-color2);
}
.search-popup .form-group button {
    position: absolute;
    right: 5px;
    top: 5px;
    height: 40px;
    width: 40px;
    display: block;
    font-size: 14px;
    color: #fff;
    line-height: 40px;
    border-radius: 5px;
    font-weight: normal;
    background: var(--theme-color2);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.search-popup .form-group button:hover {
    background: var(--theme-color2);
    color: #ffffff;
}
.search-popup textarea::-webkit-input-placeholder,
.search-popup input::-webkit-input-placeholder {
    color: inherit;
}
.search-popup textarea::-moz-placeholder,
.search-popup input::-moz-placeholder {
    color: inherit;
}
.search-popup textarea:-ms-input-placeholder,
.search-popup input:-ms-input-placeholder {
    color: inherit;
}
.search-popup textarea::-ms-input-placeholder,
.search-popup input::-ms-input-placeholder {
    color: inherit;
}
.search-popup textarea::placeholder,
.search-popup input::placeholder {
    color: inherit;
}

.moblie-search-active .search-popup {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
    border-radius: 0%;
}
.moblie-search-active .search-popup .search-inner {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 500ms;
    transition-delay: 500ms;
}

/***

====================================================================
Main Header
====================================================================

***/
.header-span {
    position: relative;
    height: 110px;
    display: block;
    width: 100%;
}

.header-top {
    position: relative;
    margin-left: 313px;
    padding-right: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.header-top .inner-container {
    position: relative;
    padding: 0 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: var(--bg-theme-color3);
    width: 100%;
}
.header-top .top-left {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header-top .top-right {
    position: relative;
}
.header-top .useful-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 0;
}
.header-top .useful-links li {
    position: relative;
    padding-left: 15px;
    margin-left: 15px;
    font-size: 13px;
    color: #808287;
    line-height: 20px;
}
.header-top .useful-links li:first-child {
    margin-left: 0;
    padding-left: 0;
}
.header-top .useful-links li:before {
    position: absolute;
    left: -3px;
    top: 0;
    content: "/";
}
.header-top .useful-links li:first-child:before {
    display: none;
}
.header-top .useful-links li a {
    color: #808287;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.header-top .useful-links li a:hover {
    color: var(--theme-color1);
}
.header-top .outer-box {
    min-width: 210px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.main-header {
    position: relative;
    width: 100%;
    z-index: 999;
    background-color: #0d0e0f;
}

.sticky-header.fixed-header {
    background-color: #0d0e0f;
}

.main-header .header-lower {
    position: relative;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.main-header .header-lower .logo-box {
    position: relative;
    padding: 24px 0;
    min-width: 280px;
}

.main-header .logo {
    position: relative;
    display: block;
}
.main-header .logo img {
    width: 94px;
    max-width: 100%;
    height: auto;
}
.main-header .main-box {
    position: relative;
    left: 0px;
    top: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    justify-content: space-between;
}
.main-header .main-box .nav-outer {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.main-menu {
    position: relative;
}

.main-menu .navbar-header {
    display: none;
}

.main-menu .navbar-collapse {
    padding: 0px;
}

.main-menu .navigation {
    position: relative;
    margin: 0px;
}

.main-menu .navigation > li {
    position: relative;
    float: left;
    padding: 20px 0px;
    margin-right: 55px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.main-menu .navigation > li:last-child {
    margin-right: 0;
}
.main-menu .navigation > li:before {
    position: absolute;
    left: 50%;
    bottom: 23px;
    height: 2px;
    width: 0%;
    background-color: var(--bg-theme-color2);
    content: "";
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.main-menu .navigation > li:hover:before,
.main-menu .navigation > li.current:before {
    left: 0;
    width: 100%;
}
.main-menu .navigation > li > a {
    position: relative;
    display: block;
    text-align: center;
    opacity: 1;
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.main-menu .navigation > li > a .icon {
    position: relative;
    font-size: 22px;
    line-height: 24px;
    margin-left: 10px;
}
.main-menu .navigation > li > a:hover {
    color: var(--theme-color2);
}
.main-menu .navigation > li.current > a {
    color: var(--theme-color2);
    font-weight: 700;
}
.main-menu .navigation > li.dropdown > a {
    padding-right: 14px;
    margin-right: -14px;
}
.main-menu .navigation > li.dropdown > a:after {
    content: "\f107";
    position: absolute;
    right: 0;
    top: 50%;
    width: 10px;
    height: 20px;
    display: block;
    line-height: 24px;
    font-size: 12px;
    z-index: 5;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-top: -2px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.main-menu .navigation > li.dropdown:hover > ul {
    visibility: visible;
    opacity: 1;
    top: 100%;
    margin-top: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    -webkit-box-shadow: 0 0 20px rgba(142, 142, 142, 0.1);
    box-shadow: 0 0 20px rgba(142, 142, 142, 0.1);
}

.main-menu .navigation > li > ul {
    position: absolute;
    left: 0px;
    top: 100%;
    width: 220px;
    z-index: 100;
    background-color: #0d0e0f;
    margin-top: 30px;
    opacity: 0;
    display: none;
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}

.main-menu .navigation > li > ul.from-right {
    left: auto;
    right: 0px;
}
.main-menu .navigation > li > ul > li {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #ebf1f5;
}
.main-menu .navigation > li > ul > li:last-child {
    border-bottom: none;
}
.main-menu .navigation > li > ul > li > a {
    position: relative;
    display: block;
    padding: 10px 0px;
    line-height: 29px;
    font-weight: 400;
    font-size: 18px;
    color: #fff;
    text-align: left;
    margin: 0 30px;
    text-transform: capitalize;
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
}
.main-menu .navigation > li > ul > li:hover {
    background-color: #fff;
}
.main-menu .navigation > li > ul > li:hover > a {
    color: var(--theme-color2);
}
.main-menu .navigation > li > ul > li.dropdown > a:after {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    position: absolute;
    right: 0;
    top: 11px;
    display: block;
    line-height: 24px;
    font-size: 11px;
    font-weight: 900;
    z-index: 5;
}
.main-menu .navigation > li > ul > li.dropdown:hover > ul {
    visibility: visible;
    opacity: 1;
    top: 0px;
    margin-top: 20px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-menu .navigation > li > ul > li > ul {
    position: absolute;
    left: 100%;
    top: 0px;
    width: 220px;
    z-index: 100;
    display: none;
    background-color: #000;
    opacity: 0;
    padding: 10px 0 0;
    margin-top: 10px;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
    -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
.main-menu .navigation > li > ul > li > ul > li {
    position: relative;
    border-bottom: 1px solid #ebf1f5;
    width: 100%;
}
.main-menu .navigation > li > ul > li > ul > li:last-child {
    border-bottom: none;
}
.main-menu .navigation > li > ul > li > ul > li > a {
    position: relative;
    display: block;
    padding: 10px 0;
    line-height: 24px;
    font-weight: 400;
    font-size: 16px;
    color: var(--theme-color1);
    text-align: left;
    margin: 0 30px;
    text-transform: capitalize;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.main-menu .navigation > li > ul > li > ul > li > a:hover {
    color: var(--theme-color2);
}

.main-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 10px;
    top: 8px;
    width: 34px;
    height: 30px;
    border: 1px solid #ffffff;
    text-align: center;
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
    cursor: pointer;
    z-index: 5;
    display: none;
}

.main-header .header-lower .outer-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    padding: 10px 0;
}
.main-header .header-lower .outer-box .theme-btn {
    font-size: 11px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 40px;
    margin-left: 30px;
}
.main-header .header-lower .outer-box .ui-btn-outer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 6px 0;
    padding-right: 30px;
    margin-right: 30px;
    border-right: 1px solid #e6e8ed;
}

.main-header .ui-btn {
    position: relative;
    display: block;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    background: none;
    font-size: 26px;
    color: var(--theme-color1);
    margin-left: 26px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.main-header .ui-btn:hover {
    color: var(--theme-color2);
}

.main-header .info-btn {
    position: relative;
    display: block;
    font-size: 14px;
    padding: 8px 0;
    padding-left: 54px;
    color: var(--theme-color1);
    text-align: left;
    font-weight: 600;
    line-height: 20px;
}
.main-header .info-btn small {
    font-size: 12px;
    font-weight: 400;
    color: #808287;
}
.main-header .info-btn i {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -22px;
    line-height: 44px;
    height: 44px;
    width: 44px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    background-color: var(--bg-theme-color1);
    font-size: 18px;
}
.main-header .info-btn:hover {
    color: var(--bg-theme-color2);
}

.sticky-header {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    left: 0px;
    top: 0px;
    width: 100%;
    padding: 0px 0px;
    z-index: 99999;
    background: #ffffff;
    -webkit-box-shadow: 0 0 20px rgba(142, 142, 142, 0.1);
    box-shadow: 0 0 20px rgba(142, 142, 142, 0.1);
}

.sticky-header.fixed-header {
    opacity: 1;
    z-index: 9999;
    visibility: visible;
}

.sticky-header .logo {
    padding: 10px 0;
}
.sticky-header .nav-outer {
    position: relative;
    background: none;
}
.sticky-header .inner-container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.sticky-header .main-menu .navigation > li {
    margin: 0;
    margin-left: 40px;
    padding: 20px 0;
}

.sticky-header .main-menu .navigation > li > a {
    color: #fff;
}

.sticky-header .main-menu .navigation > li.current > a,
.sticky-header .main-menu .navigation > li:hover > a {
    color: var(--theme-color2);
}

.sticky-header .main-menu .navigation > li:before {
    display: none;
}

.sticky-header .outer-box,
.sticky-header .navbar-header {
    display: none;
}

.sticky-header .mobile-nav-toggler {
    color: #fff;
}

.mobile-nav-toggler {
    position: relative;
    font-size: 24px;
    line-height: 20px;
    cursor: pointer;
    color: var(--theme-color1);
    display: none;
    top: 0px;
    margin-left: 25px;
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
}

.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    max-width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
}
.mobile-menu .menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
}
.mobile-menu .upper-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 20px 20px;
}
.mobile-menu .close-btn {
    position: relative;
    top: -10px;
    text-align: center;
    font-size: 18px;
    color: var(--theme-color3);
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
}
.mobile-menu .close-btn:hover {
    opacity: 0.5;
}
.mobile-menu .nav-logo {
    position: relative;
    text-align: left;
    width: 100%;
}
.mobile-menu .nav-logo img {
    max-height: 44px;
}
.mobile-menu .menu-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: #141519;
    padding: 0px 0px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    border-radius: 0px;
    -webkit-transform: translateX(101%);
    transform: translateX(101%);
}

.mobile-menu-visible {
    overflow: hidden;
}
.mobile-menu-visible .mobile-menu {
    opacity: 1;
    visibility: visible;
}
.mobile-menu-visible .mobile-menu .menu-backdrop {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.4s ease 200ms;
    transition: all 0.4s ease 200ms;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}
.mobile-menu-visible .mobile-menu .close-btn {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}
.mobile-menu-visible .scroll-to-top {
    opacity: 0;
    visibility: hidden;
}

.mobile-menu .navigation {
    position: relative;
    display: block;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .navigation li {
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .navigation li > ul > li:last-child {
    border-bottom: none;
}
.mobile-menu .navigation li > ul > li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .navigation li > a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 10px 20px;
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    text-transform: capitalize;
}
.mobile-menu .navigation li:hover > a,
.mobile-menu .navigation li.current > a {
    color: var(--theme-color2);
}
.mobile-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 44px;
    height: 44px;
    text-align: center;
    font-size: 16px;
    line-height: 44px;
    color: #ffffff;
    cursor: pointer;
    z-index: 5;
    width: 100%;
}
.mobile-menu .navigation li.dropdown .dropdown-btn:hover {
    color: #31ba9c;
}
.mobile-menu .navigation li.dropdown .dropdown-btn:after {
    /* content: "";
    position: absolute;
    left: 0px;
    top: 10px;
    width: 1px;
    height: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.1); */
}
.mobile-menu .navigation li.dropdown .dropdown-btn i {
    margin: 14px 16px;
    float: right;
}
.mobile-menu .navigation li.dropdown .dropdown-btn.active i:before {
    content: "\f106";
}
.fa-angle-down:before {
    content: "\f107";
}

.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul {
    display: none;
}

.mobile-menu .navigation li > ul > li {
    padding-left: 20px;
}

.contact-list-one {
    position: relative;
    padding: 30px 20px 20px;
}
.contact-list-one li {
    position: relative;
    margin-bottom: 20px;
}
.contact-list-one li:last-child {
    margin-right: 0;
}
.contact-list-one li .contact-info-box {
    position: relative;
    padding-left: 54px;
    font-size: 14px;
    line-height: 24px;
    color: #ffffff;
}
.contact-list-one li .contact-info-box a {
    color: #ffffff;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.contact-list-one li .contact-info-box .icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 34px;
    line-height: 50px;
    color: var(--theme-color2);
}
.contact-list-one li .contact-info-box .title {
    display: block;
    font-size: 12px;
    color: #b2c1c0;
    font-weight: 400;
    text-transform: uppercase;
}

.mobile-menu .social-links {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: var(--bg-theme-color1);
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}
.mobile-menu .social-links li {
    position: relative;
    text-align: center;
    width: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .social-links li a {
    position: relative;
    display: block;
    line-height: 50px;
    height: 50px;
    font-size: 14px;
    text-align: center;
    color: var(--theme-color3);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.mobile-menu .social-links li a:hover {
    color: var(--theme-color2);
}

section.main .container {
    position: absolute;
    width: 1200px;
    top: 120px;
    left: calc(50% - 585px);
}
section.main .container._sec {
    top: calc(50% - 44px);
}

section.main .container._sec._seo {
    top: calc(50% - 78px);
}

/* Header */
section.main .large-header {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-image: url("../images/dots-bg-main.svg");
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: -30px;
    background-color: #131516;
}

section.main .large-header._sec_page {
    margin: 0;
    background-image: url("../images/dots-bg-sec.svg");
}

.large-header .coming-soon .container {
    top: 10%;
    width: 100%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.large-header .coming-soon span {
    font-size: 116px;
    line-height: 1.1;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.45);
    padding: 0 15px;
}

.large-header .coming-soon span.green {
    color: var(--theme-color2);
}

.large-header .coming-soon span.white {
    color: #fff;
}

@media only screen and (max-width: 767px) {
    .large-header .coming-soon .container {
        max-width: 100%;
        width: 100%;
        left: 0;
    }
}
@media only screen and (max-width: 599px) {
    .large-header .coming-soon span {
        font-size: 72px;
    }
}
@media only screen and (max-width: 575px) {
    section.main .large-header {
        background-position: center;
    }
    section.main .large-header._sec_page {
        background-image: url("../images/dots-bg-sec-mob.svg");
    }
    section.main .large-header._sec_page #demo-canvas {
        position: relative;
        top: 120px;
    }
    .main-header .logo img {
        width: 80px;
    }
}

section.main .main-title {
    display: flex;
    width: fit-content;
    padding: 10px 15px;
    background-color: rgba(0, 0, 0, 0.45);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.1;
    margin-left: -10px;
    color: #fff;
    margin-bottom: 48px;
}

section.main .subhead {
    font-size: 24px;
    color: #fff;
    margin-top: 48px;
    margin-left: -15px;
    padding: 16px 24px;
    display: block;
    max-width: 60%;
    position: absolute;
    top: 200px;
    background-color: rgba(0, 0, 0, 0.67);
}

span.underlined {
    display: inline-block;
    color: #31ba9c;
    font-size: 96px;
    line-height: 85px;
    font-weight: bold;
    padding: 0 10px;
    margin-left: -10px;
    background-position: bottom;
    background-image: url("../images/underline.png");
    background-repeat: repeat-x;
}

span.underlined._2 {
    position: relative;
    top: 0;
}

@media only screen and (max-width: 1920px) {
    section.main .container {
        top: 50px;
    }
}
@media only screen and (max-width: 1200px) {
    section.main .container {
        width: 960px;
        left: calc(50% - 480px);
    }
    span.underlined {
        font-size: 84px;
        line-height: 78px;
    }
    section.main .subhead {
        max-width: 70%;
        top: 180px;
        font-size: 20px;
    }
    .about-section .floating-ic {
        margin-left: -30px;
    }
}

@media only screen and (max-width: 991px) {
    section.main .container {
        top: 36px;
        width: 720px;
        left: calc(50% - 360px);
    }
    section.main .container._sec {
        top: calc(50% - 88px);
    }
    section.main .container._sec._cont {
        top: calc(50% - 40px);
    }

    span.underlined {
        display: initial;
        background-position: center;
        padding: 0;
        margin: 0;
    }

    section.main .subhead {
        margin-top: 60px;
        max-width: 70%;
        top: 210px;
        font-size: 22px;
        line-height: 26px;
    }
    .contact-form {
        width: 100% !important;
        margin-left: 0 !important;
    }
    .about-section .floating-ic {
        display: none;
    }
}

/***

====================================================================
Section Title
====================================================================

***/
.sec-title {
    position: relative;
    margin-bottom: 40px;
}
.sec-title .sub-title {
    position: relative;
    top: -8px;
    font-size: 16px;
    color: var(--sec-title-subtitle-color);
    line-height: var(--sec-title-subtitle-line-height);
    font-weight: var(--sec-title-subtitle-font-weight);
    font-family: var(--sec-title-subtitle-font-family);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}
.sec-title .sub-title:before {
    position: absolute;
    left: 100%;
    top: 50%;
    height: 2px;
    width: 40px;
    margin-left: 10px;
    margin-top: -1px;
    background: var(--bg-theme-color2);
    content: "";
}
.sec-title h1 {
    position: relative;
    font-size: 60px;
    line-height: 1em;
    color: var(--sec-title-color);
    font-family: var(--sec-title-font-family);
    font-weight: var(--sec-title-font-weight);
}
.sec-title h2 {
    position: relative;
    font-size: 48px;
    /* color: var(--sec-title-color); */
    font-family: var(--sec-title-font-family);
    font-weight: var(--sec-title-font-weight);
    letter-spacing: 0.01em;
    margin-top: -5px;
    margin-bottom: 0;
}

.service._sp .sec-title h2,
.service._ec .sec-title h2,
.service._gd .sec-title h2,
.service._seo .sec-title h2 {
    background-color: #000;
    width: fit-content;
    padding: 0 16px;
    margin-left: -16px;
}

.sec-title .text {
    margin-top: 30px;
}

.sec-title.light h2,
.sec-title.light h1 {
    color: #fff;
}
.sec-title.light .text {
    color: #8c8f94;
}
.sec-title.light .sub-title {
    color: var(--theme-color2);
}

.sec-title.light h2,
.sec-title.light h1 {
    color: #fff;
}
.sec-title.light .text {
    color: #8c8f94;
}
.sec-title.light .sub-title.light {
    color: #fff;
}
.sec-title.light .sub-title.light:before {
    content: none;
}

@media only screen and (max-width: 479px) {
    .sec-title {
        margin-bottom: 20px;
    }
    .services-section .sec-title .sub-title {
        background-color: var(--dark-color3);
        padding: 8px 12px;
    }
}

/***

====================================================================
  Main Slider
====================================================================

***/
.main-slider {
    position: relative;
}

.main-slider .title {
    position: relative;
    display: inline-block;
    line-height: 30px;
    padding: 7px 30px;
    padding-left: 80px;
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    background-color: rgba(255, 255, 255, 0.1);
}
.main-slider .title:before {
    position: absolute;
    left: 30px;
    top: 50%;
    margin-top: -1px;
    height: 2px;
    width: 40px;
    background-color: var(--bg-theme-color2);
    content: "";
}
.main-slider h1 {
    position: relative;
    display: block;
    font-size: 90px;
    line-height: 1.1em;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: capitalize;
}
.main-slider .text {
    font-size: 18px;
    line-height: 36px;
    color: #fff;
}
.main-slider .btn-box {
    position: relative;
}
.main-slider .theme-btn {
    display: inline-block;
    white-space: nowrap;
    min-width: 200px !important;
}

.tp-dottedoverlay {
    background-color: #16171b;
    opacity: 0;
}

.tp-bannertimer {
    display: none;
}

/* Animate 1 */
.owl-carousel .animate-7,
.owl-carousel .animate-6,
.owl-carousel .animate-5,
.owl-carousel .animate-4,
.owl-carousel .animate-3,
.owl-carousel .animate-2,
.owl-carousel .animate-1 {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.owl-carousel .animate-x {
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.owl-carousel .active .animate-7,
.owl-carousel .active .animate-6,
.owl-carousel .active .animate-5,
.owl-carousel .active .animate-4,
.owl-carousel .active .animate-3,
.owl-carousel .active .animate-2,
.owl-carousel .active .animate-1 {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.owl-carousel .active .animate-2 {
    -webkit-transition-delay: 300ms;
    transition-delay: 300ms;
}
.owl-carousel .active .animate-3 {
    -webkit-transition-delay: 600ms;
    transition-delay: 600ms;
}
.owl-carousel .active .animate-4 {
    -webkit-transition-delay: 900ms;
    transition-delay: 900ms;
}
.owl-carousel .active .animate-5 {
    -webkit-transition-delay: 1200ms;
    transition-delay: 1200ms;
}
.owl-carousel .active .animate-6 {
    -webkit-transition-delay: 1500ms;
    transition-delay: 1500ms;
}
.owl-carousel .active .animate-7 {
    -webkit-transition-delay: 1800ms;
    transition-delay: 1800ms;
}

.banner-carousel .owl-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    max-width: 1170px;
    margin: -25px auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.banner-carousel .owl-nav .owl-next,
.banner-carousel .owl-nav .owl-prev {
    display: block;
    margin: 10px 0;
    height: 50px;
    width: 50px;
    color: #ffffff;
    border-radius: 50%;
    border: 2px solid #ffffff;
    font-size: 20px;
    line-height: 48px;
    font-weight: 700;
    text-align: center;
    opacity: 0.2;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.banner-carousel .owl-nav .owl-next:hover,
.banner-carousel .owl-nav .owl-prev:hover {
    opacity: 1;
}

/***

====================================================================
    Features Section
====================================================================

***/
.features-section {
    position: relative;
    padding: 100px 0 70px;
}

.feature-block {
    margin-top: -70px;
}
.feature-block .inner-box {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 40px 40px 30px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    background-image: url(../images/test-bg.png);
}
/* .feature-block .inner-box._web {
    background-image: url(../images/test-bg.png);
    background-position: right;
}

.feature-block .inner-box._seo {
    background-image: url(../images/feature-shape-2.png);
    background-position: left;
}

.feature-block .inner-box._cg {
    background-image: url(../images/feature-shape-mid.png);
} */

.feature-block .inner-box:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}
.feature-block .inner-box:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    background-size: cover;
}
.feature-block .inner-box:hover:before {
    height: 0;
}
.feature-block .inner-box:hover .title,
.feature-block .inner-box:hover .title a {
    color: #ffffff;
    /* text-shadow: 1px 2px 2px black; */
}
.feature-block .inner-box:hover .text {
    color: #fff;
    /* text-shadow: 1px 2px 2px black; */
}
.feature-block .inner-box:hover .icon {
    /* box-shadow: 2px 2px 4px 1px rgba(0, 0, 0, 0.63); */
}
.feature-block .title-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 90px;
    min-height: 70px;
    margin-bottom: 10px;
}
.feature-block .icon {
    position: absolute;
    left: 0;
    top: 0;
    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;
    height: 70px;
    width: 70px;
    background-color: var(--bg-theme-color2);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    padding: 5px;
}
.feature-block .title {
    margin-bottom: 0;
}
.feature-block .title:hover {
    color: var(--theme-color1);
}
.feature-block .text {
    position: relative;
    font-size: 18px;
}

@media (max-width: 1200px) {
    .feature-block .inner-box {
        padding: 24px 36px;
    }
}
@media (max-width: 991px) {
    /* .feature-block .inner-box._cg {
        background-image: url("../images/feature-shape-2.png");
    }
    .feature-block .inner-box._seo {
        background-image: url("../images/feature-shape-mid.png");
    } */
    .feature-block.last {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    /* .feature-block .inner-box._web,
    .feature-block .inner-box._seo,
    .feature-block .inner-box._cg {
        background-image: url("../images/feature-shape-1.png");
        background-position: right;
    } */
    .feature-block.sec {
        margin-top: 20px;
    }
    .feature-block .inner-box {
        max-width: 360px;
        margin: 0 auto;
    }
}

@media (max-width: 599px) {
    /* .feature-block .inner-box._web,
    .feature-block .inner-box._seo,
    .feature-block .inner-box._cg {
        background-image: url("../images/feature-shape-mid.png");
        background-position: right;
        background-size: cover;
    } */
}

@media (max-width: 599px) {
    /* .feature-block .inner-box._web,
    .feature-block .inner-box._seo,
    .feature-block .inner-box._cg {
        background-position: center;
    } */
}

.about-section {
    position: relative;
    padding: 120px 0 40px;
}

.about-section._mp {
    background-color: #0d0e0f;
}
.about-section._mp .inner-column {
    margin-left: 20px;
}

.about-section .floating-ic {
    margin-top: 15px;
}

.about-section .content-column .sec-title {
    margin-bottom: 40px;
}
.about-section._mp .content-column .content-box {
    /* width: 85%; */
}
.about-section .content-column .btm-box {
    margin-top: 10px;
}

@media (max-width: 1200px) {
    .about-section._mp:before {
        width: 320px;
        height: 250px;
        top: calc(50% - 100px);
    }
}
@media (max-width: 1200px) {
    .about-section._mp:before {
        display: none;
    }
    .about-section._mp .content-column .content-box {
        width: 100%;
    }
}

/* About Block */
.about-block {
    position: relative;
    min-height: 120px;
    padding-bottom: 30px;
    border: none;
    margin-bottom: 30px;
}

.about-block .sub-title {
    color: #fff;
    font-size: 28px;
    margin-bottom: 20px;
}

.about-block .sub-title i {
    font-style: normal;
    color: #31ba9c;
    background-color: var(--dark-color3);
    padding: 0 6px;
}

.about-block .text {
    font-size: 20px;
    margin-top: 15px;
    padding-right: 120px;
}
.about-block .text .ben {
    position: relative;
    font-size: 20px;
    padding-left: 34px;
}
.about-block .text .ben::before {
    color: #31ba9c;
    content: "\f058";
    position: absolute;
    right: auto;
    left: 0;
    top: 50%;
    width: 20px;
    height: 20px;
    display: block;
    line-height: 24px;
    font-size: 24px;
    z-index: 5;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-top: -2px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.about-block .text b {
    font-weight: bold;
    color: #fff;
}

.about-block .sub-title:before {
    content: "";
    position: absolute;
    top: 0;
    left: -16px;
    width: 8px;
    height: 100%;
    background-color: var(--theme-color2);
}

@media (max-width: 767px) {
    .about-block {
        /* margin-bottom: 0; */
        padding-bottom: 0;
    }
    .about-block .text {
        padding-right: 0;
        margin-top: 10px;
    }
    .about-section._sec,
    .services-section._sec {
        padding: 60px 0;
    }
    .about-section._sec .content-column {
        margin-bottom: 0;
    }
    .about-block .sub-title {
        margin-left: 15px;
        font-size: 20px;
    }
    .about-block .text .ben {
        font-size: 18px;
        padding-left: 24px;
        margin-bottom: 12px;
    }
    .about-block .text .ben::before {
        font-size: 18px;
    }
}
.about-section .image-column .image-1 img {
    width: 100%;
}
.about-section .image-column .image-2 {
    position: absolute;
    right: 75px;
    bottom: 0;
    margin-bottom: 0;
}
.about-section .image-column .image-2 img {
    width: 100%;
    max-width: 300px;
}

.about-section .experience:hover .icon {
    -webkit-transform: rotateY(-360deg);
    transform: rotateY(-360deg);
}

.about-section .experience .icon {
    position: absolute;
    left: 0;
    top: 20px;
    height: 80px;
    width: 80px;
    -webkit-transition: all 800ms ease;
    transition: all 800ms ease;
}

.about-section .experience .icon._2 {
    left: 80px;
    top: 110px;
}
.about-section .experience .icon._3 {
    top: 200px;
}

.about-section .experience strong {
    position: relative;
    margin-top: 7px;
    font-size: 34px;
    line-height: 36px;
    color: var(--theme-color2);
    font-weight: 700;
    display: block;
}

.services-section {
    position: relative;
    padding: 120px 0 90px;
    /* background-color: #0d0e0f; */
}

.services-section .sec-title {
    /* text-align: center; */
}
.services-section h5.sub-title {
    font-size: 28px;
    color: #fff;
    margin-bottom: 40px;
}

.services-section::before {
    background-image: url("../images/icons/hex.png");
    position: absolute;
    right: 0;
    left: auto;
    top: 0;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    width: 350px;
    max-width: 100%;
    content: "";
}

@media only screen and (max-width: 1200px) {
    .services-section {
        padding: 60px 0;
    }
}
@media only screen and (max-width: 991px) {
    .services-section .sec-title {
        text-align: left;
    }
    .services-section::before {
        display: none;
    }
}

@media only screen and (max-width: 575px) {
    .services-section {
        padding: 30px 0;
    }
    .about-section._mp .inner-column {
        margin-left: 10px;
    }
}

.service-block {
    position: relative;
    margin-bottom: 30px;
    z-index: 1;
    display: flex;
}
.service-block .inner-box {
    position: relative;
    background-color: #ffffff;
    padding: 15px;
    border: 1px solid #e6e8ed;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    background-image: url("../images/circ.png");
    background-repeat: no-repeat;
    background-position: right bottom;
}
.service-block .inner-box._p {
    background-image: none;
    background-color: #16171b;
}
.service-block .inner-box:hover .image-box img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.service-block .inner-box:hover .image-box .image:after {
    left: 0;
    right: 0;
    opacity: 0;
}
.service-block .image-box {
    position: relative;
}
.service-block .image-box .image {
    overflow: hidden;
    margin-bottom: 0;
}
.service-block .image-box .image img {
    width: 100%;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-block .image-box .image:after {
    background: rgba(255, 255, 255, 0.3);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    pointer-events: none;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}
.service-block .image-box .icon-box {
    height: 90px;
    width: 90px;
    background: var(--bg-theme-color2);
    color: var(--theme-color1);
    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;
    font-size: 58px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-block .content-box {
    position: relative;
    padding: 20px 25px 15px;
}
.service-block .content-box .title {
    margin-bottom: 14px;
}
.service-block .content-box .text {
    position: relative;
    margin-bottom: 0;
    font-size: 18px;
}
.service-block .content-box .read-more {
    font-size: 14px;
    line-height: 30px;
    color: var(--theme-color2);
    font-weight: 700;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    letter-spacing: 0.1em;
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear;
    margin-top: 15px;
}
.service-block .content-box .read-more i {
    margin-left: 10px;
    color: var(--theme-color2);
    font-size: 16px;
    line-height: 30px;
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear;
}
.service-block .content-box .read-more:hover {
    color: #fff;
}
.service-block .content-box .read-more:hover i {
    -webkit-transform: translateX(-15px);
    transform: translateX(-15px);
    opacity: 0;
}

@media only screen and (max-width: 768px) {
    .service-block {
        margin: 0 auto 30px;
        max-width: 480px;
    }
}

.call-to-action {
    background-image: url("../images/slider-1og.png");
    position: relative;
    padding: 140px 0 120px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 2;
}
.call-to-action .title-box {
    position: relative;
    text-align: center;
}
.call-to-action .title-box .icon {
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 480px;
}
.call-to-action .title-box .title {
    font-size: 60px;
    line-height: 1.2em;
    color: #fff;
    margin-bottom: 0;
}
.call-to-action .title-box .theme-btn {
    margin-top: 45px;
}
.call-to-action.alternate::before {
    background-color: #090909;
    opacity: 0.8;
}

.contact-section {
    position: relative;
    background-color: #0d0e0f;
}

.contact-section.cont .sec-title {
    margin-bottom: 0;
}

.contact-section.cont h2 {
    margin-bottom: 10px;
}

@media only screen and (min-width: 992px) {
    .contact-section.cont .col-lg-5 {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
}

.contact-section.cont .form-column {
    position: relative;
}

.contact-section::before {
    content: "";
    position: absolute;
    background-image: url(../images/cont-right.png);
    top: 0;
    bottom: 0;
    right: 0;
    left: auto;
    background-repeat: no-repeat;
    background-size: contain;
    height: auto;
    width: 630px;
    z-index: 0;
}
.contact-section.cont::before {
    position: absolute;
    width: 600px;
    z-index: 0;
    opacity: 0.6;
}
.contact-section.cont::after {
    position: absolute;
    z-index: 0;
    opacity: 0.6;
}

.contact-section::after {
    content: "";
    position: absolute;
    background-image: url(../images/cont-left.png);
    right: auto;
    top: 0;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: contain;
    height: auto;
    width: 630px;
    z-index: 0;
}
.contact-section .form-column {
    z-index: 10;
}

.contact-section .form-bg {
    position: absolute;
    right: 15px;
    left: -375px;
    top: 0;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.contact-section .form-bg:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #16171b;
    opacity: 0.8;
    content: "";
}
.contact-section .faq-bg {
    position: absolute;
    left: 15px;
    right: -375px;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.contact-section {
    padding: 70px 0;
}
.contact-section .sec-title {
    margin-bottom: 24px;
}
.contact-section h2 {
    margin-bottom: 20px;
}

.contact-section h5 {
    font-size: 32px;
    line-height: 1;
    color: #31ba9c;
    width: fit-content;
    padding-left: 10px;
    margin-left: -10px;
}
.contact-section h5::before {
    content: "";
    position: absolute;
    top: 0;
    left: -16px;
    width: 8px;
    height: 100%;
    background-color: #fff;
}

.contact-section .text p {
    font-size: 22px;
}

.contact-section .text p.g {
    color: #31ba9c;
    font-size: 24px;
    margin-top: 15px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 20px;
}

.contact-form {
    max-width: 100%;
    width: 60%;
    margin-left: 20%;
    position: relative;
    background-color: #16171b;
    padding: 55px 55px 55px;
    border-top: 5px solid var(--border-theme-color2);
}

.contact-form._2 {
    width: 100%;
    margin: 0;
}

.contact-form._2 .title-box h3 {
    /* color: #31ba9c; */
}

.contact-form form.disabled {
    pointer-events: none;
    opacity: 0.7;
}

.contact-form .title-box {
    position: relative;
    margin-bottom: 25px;
}
.contact-form .title-box .sub-title {
    display: block;
    font-size: 14px;
    color: var(--theme-color2);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2px;
}
.contact-form .title-box h3 {
    font-size: 34px;
    color: #fff;
    font-weight: 700;
}
.contact-form .form-group {
    position: relative;
    margin-bottom: 20px;
}
.contact-form .form-group:last-child {
    margin-bottom: 0;
}
.contact-form .form-group .select2-container--default .select2-selection--single,
.contact-form .form-group input:not([type="submit"]),
.contact-form .form-group textarea,
.contact-form .form-group select {
    position: relative;
    display: block;
    height: 54px;
    width: 100%;
    padding: 15px 30px;
    font-size: 14px;
    color: #fff;
    line-height: 22px;
    font-weight: 400;
    background-color: #16171b;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.contact-form .form-group ::-webkit-input-placeholder {
    color: #8c8f94;
}
.contact-form .form-group ::-moz-input-placeholder {
    color: #8c8f94;
}
.contact-form .form-group ::-ms-input-placeholder {
    color: #8c8f94;
}
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    border-color: var(--border-theme-color2);
}
.contact-form .form-group textarea {
    height: 100px;
    resize: none;
}
.contact-form .form-group input[type="submit"],
.contact-form .form-group button {
    margin-top: 5px;
    text-transform: uppercase;
}

.contact-form .msg-status {
    display: none;
    width: 100%;
    background-color: #0000007e;
    margin-top: 15px;
    padding: 8px 12px 8px 24px;
}

@media only screen and (max-width: 768px) {
    .contact-section.cont::after {
        display: none;
    }
}
@media only screen and (max-width: 575px) {
    .contact-form {
        padding: 36px 28px;
    }
    .service-block .inner-box {
        padding: 20px 16px;
    }
    .contact-form .form-group .select2-container--default .select2-selection--single,
    .contact-form .form-group input:not([type="submit"]),
    .contact-form .form-group textarea,
    .contact-form .form-group select {
        padding: 15px;
    }
    .contact-form .title-box h3 {
        font-size: 32px;
    }
    .modal-content {
        padding: 16px;
    }
    .modal-content .btn-close {
        width: 12px;
        height: 12px;
        padding: 2px;
    }
}

.background-image {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-repeat: repeat;
    background-position: center;
    background-size: cover;
}

.error-page__inner {
    position: relative;
    display: block;
    text-align: center;
}
.error-page__inner .error-page__title-box {
    position: relative;
    display: block;
}
.error-page__inner .error-page__title {
    position: relative;
    display: inline-block;
    font-size: 280px;
    line-height: 280px;
    margin-bottom: 0;
    color: var(--theme-color1);
}
.error-page__inner .error-page__sub-title {
    font-size: 40px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 50px;
    margin-top: -16px;
}
.error-page__inner .error-page__text {
    font-size: 20px;
    line-height: 30px;
    text-align: center;
}
.error-page__inner .error-page__form {
    position: relative;
    display: block;
    margin: 42px auto 20px;
}
.error-page__inner .error-page__form input[type="search"] {
    height: 60px;
    width: 100%;
    border: none;
    outline: none;
    background-color: #f5f5f5;
    font-size: 14px;
    color: #333;
    padding-left: 50px;
    padding-right: 75px;
    border-radius: 7px;
}
.error-page__inner .error-page__form button[type="submit"] {
    background-color: transparent;
    font-size: 22px;
    position: absolute;
    top: 0;
    right: 0px;
    bottom: 0;
    width: 72px;
    outline: none;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
}
.error-page__inner .error-page__form-input {
    position: relative;
    display: block;
    max-width: 570px;
    width: 100%;
    margin: 0 auto;
}

/* Nav Links */
.nav-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 53px;
}
@media only screen and (max-width: 767px) {
    .nav-links {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px;
    }
}
.nav-links .prev {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    width: calc(50% - 15px);
    margin-right: 30px;
}
@media only screen and (max-width: 767px) {
    .nav-links .prev {
        width: 100%;
    }
}
.nav-links .prev .thumb {
    margin-right: 20px;
}
.nav-links .next {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    width: calc(50% - 15px);
}
@media only screen and (max-width: 767px) {
    .nav-links .next {
        width: 100%;
    }
}
.nav-links .next .thumb {
    margin-left: 20px;
}
.nav-links > div {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.nav-links > div .thumb {
    display: inline-block;
    min-width: 60px;
    width: 60px;
    height: 60px;
    overflow: hidden;
}
.nav-links > div .thumb a {
    display: inline-block;
}
.nav-links > div > a {
    display: inline-block;
    word-wrap: break-word;
    white-space: -moz-pre-wrap;
    white-space: pre-wrap;
    font-size: 20px;
    line-height: 1.637;
    font-weight: var(--body-font-weight-bold);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    color: var(--theme-light-background-text-color);
    background-color: var(--theme-light-background);
    padding: 52px 50px;
    border-radius: 10px;
    width: 100%;
}
@media only screen and (max-width: 767px) {
    .nav-links > div > a {
        padding: 30px;
    }
}
.nav-links > div > a:hover {
    color: var(--text-color-bg-theme-color1);
    background-color: var(--theme-color1);
}

.main-footer {
    position: relative;
}

.main-footer.black {
    background-color: #0d0e0f;
}

.main-footer::before {
    background-image: url("../images/globe-vector.png");
    opacity: 0.76;
    position: absolute;
    right: auto;
    left: auto;
    right: -1px;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    width: 320px;
    height: 300px;
    content: "";
}

/* Widget Section */
.main-footer .widgets-section {
    position: relative;
    padding: 80px 0 25px;
}
.main-footer .footer-column {
    position: relative;
    margin-bottom: 40px;
}
.main-footer .footer-widget {
    position: relative;
}
.main-footer .widget-title {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2em;
    padding-bottom: 18px;
    margin-bottom: 25px;
}
.main-footer .widget-title:after {
    position: absolute;
    left: 0%;
    bottom: 0;
    height: 2px;
    width: 25px;
    background-color: var(--bg-theme-color2);
    content: "";
}
.main-footer .widget-title:before {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    content: "";
    background-color: rgba(255, 255, 255, 0.1);
}

.main-footer .about-widget {
    position: relative;
}
.main-footer .about-widget .logo {
    position: relative;
    margin-bottom: 22px;
}
.main-footer .about-widget .logo img {
    width: 240px;
}
.main-footer .about-widget .text {
    font-size: 18px;
    line-height: 26px;
    color: #fff;
    margin-bottom: 20px;
}

.main-footer .about-widget .text .imagine {
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear;
    display: inline-flex;
    background-color: #000;
    padding: 0 5px;
    font-weight: 600;
}
.main-footer .about-widget .text .imagine:hover {
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear;
    cursor: pointer;
    padding-left: 10px;
}
.main-footer .about-widget .text .i {
    position: relative;
}
.main-footer .about-widget .text .i:before {
    position: absolute;
    content: "";
    background-color: transparent;
    top: 10px;
    left: 1px;
    width: 3.5px;
    height: 4px;
    border-radius: 25%;
}

.main-footer .about-widget .text .imagine:hover > .mag {
    color: #31ba9c;
}

.main-footer .about-widget .text .imagine:hover > .i {
    color: #31ba9c;
    transform: translateX(-3px);
    margin-right: 6px;
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear;
}

.main-footer .about-widget .text .imagine:hover > .i:before {
    transform: translateY(-9px);
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear;
    background-color: #31ba9c;
}

@media only screen and (max-width: 1200px) {
    .main-footer .about-widget .text {
        font-size: 14px;
    }
    .services-section h5.sub-title {
        font-size: 24px;
    }
    .service-block .content-box {
    }
    .service-block .content-box .text {
        /* font-size: 16px; */
        line-height: 1.3;
    }
}
@media only screen and (max-width: 991px) {
    .main-footer .about-widget .text {
        font-size: 17px;
    }
}
@media only screen and (max-width: 768px) {
    .main-footer .widget-title {
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    .main-footer .widget-title:before {
        width: 200px;
    }
    .main-footer .widget-title:after {
        width: 50px;
    }
    .main-footer .footer-column {
        margin-bottom: 20px;
    }
    .main-footer .about-widget .text {
        margin-bottom: 0;
    }
}
@media only screen and (max-width: 575px) {
    .main-footer .about-widget .logo img {
        /* width: 120px; */
    }
    .main-footer::before {
        width: 300px;
        height: 280px;
    }
    .services-section h5.sub-title {
        margin-left: 10px;
        font-size: 20px;
        font-weight: 400;
    }
    .scroll-to-top {
        bottom: 40px;
    }
}

/*=== User LInks ===*/
.user-links {
    position: relative;
}
.user-links li {
    position: relative;
    font-size: 16px;
    line-height: 24px;
    color: #8c8f94;
    font-weight: 400;
    margin-bottom: 14px;
}
.user-links li:last-child {
    margin-bottom: 0;
}
.user-links li a {
    position: relative;
    display: inline-block;
    color: #fff;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.user-links li a:hover {
    color: #31ba9c;
}
.user-links li a:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #31ba9c;
    content: "";
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.user-links li a:hover:before {
    width: 100%;
}

/* Contact Widget */
.contact-widget {
    position: relative;
}
.contact-widget .text {
    font-size: 16px;
    line-height: 30px;
    color: #8c8f94;
    margin-bottom: 25px;
}
.contact-widget .contact-info {
    position: relative;
}
.contact-widget .contact-info li {
    position: relative;
    padding-left: 24px;
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 5px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.contact-widget .contact-info li a {
    color: inherit;
    -webkit-transition: none;
    transition: none;
}
.contact-widget .contact-info li i {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--theme-color2);
    line-height: 26px;
    width: 20px;
    font-size: 16px;
    text-align: center;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.copyright-text {
    font-size: 16px;
    margin-top: 24px;
    text-align: center;
    color: #fff;
}

.page-wrapper,
body {
    background-color: var(--dark-color1);
}
.about-section .content-column .info-box,
.about-section-two,
.contact-form-two .form-group input:not([type="submit"]),
.contact-form-two.style-two textarea,
.contact-section-two .info-column .inner-column:before,
.feature-block .inner-box:before,
.feature-block-two .inner-box:before,
.header-top .inner-container,
.news-block .content-box,
.team-block .info-box,
.team-block-two .inner-box:before {
    background-color: var(--dark-color2);
}
.contact-form-two .form-group input:not([type="submit"]),
.contact-form-two .form-group textarea,
.news-block .content-box,
.service-block .inner-box {
    background-color: var(--dark-color3);
    border: none;
}
.contact-section-two .info-column .info-box {
    border-color: var(--dark-color2) !important;
}
.about-block .title,
.about-block-two .title,
.about-block:hover .icon,
.about-section .content-column .info-box .title,
.contact-section-two .info-column .info-box .title,
.feature-block .title,
.feature-block-two .title,
.main-header .info-btn,
.main-header .ui-btn,
.mobile-nav-toggler,
.news-block .content-box .title,
.sec-title h2,
.service-block .content-box .title,
.team-block .info-box .name,
.team-block-two .info-box .name,
.title a {
    color: #fff;
}
.about-section .content-column .info-box:hover .title {
    color: var(--dark-color1);
}

/* .features-section-two:before {
    background-image: url(../images/icons/pattern-16.png);
}
.team-section-two::before {
    background-image: url(../images/icons/pattern-20-dark.png);
}
.contact-section.style-two:before {
    background-image: url(../images/icons/pattern-21-dark.png);
}
.news-section-two::before {
    background-image: url(../images/icons/shape-4-dark.png);
    opacity: 0.15;
} */

.services .service {
    padding: 80px 0 60px;
}
.services .service._blk {
    background-color: #0d0e0f;
}

.services .service .about-block {
    margin-bottom: 0;
    padding-bottom: 0;
}

.services .service .content-column {
    position: relative;
}

.services .service .cnt-box {
    margin-top: 24px;
}

.services .service._sp .content-column:before {
    position: absolute;
    content: "";
    background-image: url(../images/laptop-sp.png);
    background-repeat: no-repeat;
    background-size: contain;
    left: auto;
    right: -550px;
    top: calc(50% - 170px);
    bottom: 0;
    height: 340px;
    width: 500px;
}

.services .service._ec .content-column:before {
    position: absolute;
    content: "";
    background-image: url(../images/laptop-mo.png);
    background-repeat: no-repeat;
    background-size: contain;
    right: auto;
    left: -550px;
    top: calc(50% - 170px);
    bottom: 0;
    height: 340px;
    width: 500px;
}

.services .service._gd .content-column:before {
    position: absolute;
    content: "";
    background-image: url(../images/g-d.png);
    background-repeat: no-repeat;
    background-size: contain;
    left: auto;
    right: -360px;
    bottom: 0;
    height: 390px;
    width: 500px;
}

.services .service._seo .content-column:before {
    position: absolute;
    content: "";
    background-image: url(../images/seo.png);
    background-repeat: no-repeat;
    background-size: contain;
    left: auto;
    right: -500px;
    bottom: 0;
    height: 300px;
    width: 500px;
}

.mobile-img {
    margin-top: 24px;
    display: none;
}

.mobile-img img {
    display: block;
    margin: 0 auto;
    width: 400px;
    max-width: 100%;
}

.feature-option {
    margin-bottom: 24px;
}

@media (max-width: 1400px) {
    .services .service._sp .content-column:before {
        right: -400px;
    }
    .services .service._seo .content-column:before {
        right: -430px;
    }
}

@media (max-width: 1200px) {
    .about-block {
        padding-bottom: 0;
    }
    .services .service._sp .content-column:before,
    .services .service._ec .content-column:before {
        width: 420px;
        height: 287px;
        top: auto;
        bottom: 0;
    }
    .services .service._ec .content-column:before {
        left: -440px;
    }
    .services .service._gd .content-column:before {
        width: 380px;
        height: 300px;
        right: -220px;
    }
    .services .service._seo .content-column:before {
        height: 240px;
        bottom: 18px;
    }
}

@media only screen and (max-width: 991px) {
    .services .service._sp .content-column:before,
    .services .service._ec .content-column:before {
        width: 320px;
        height: 237px;
    }
    .services .service._sp .content-column:before {
        right: -240px;
    }
    .services .service._ec .content-column:before {
        left: -340px;
    }
    .services .service._gd .content-column:before {
        width: 320px;
        height: 280px;
    }

    .about-block .sub-title {
        font-size: 24px;
    }
}
@media only screen and (max-width: 767px) {
    .services .service._ec .content-column:before,
    .services .service._sp .content-column:before,
    .services .service._gd .content-column:before,
    .services .service._seo .content-column:before {
        background: none;
    }
    .container {
        padding: 0 25px;
    }
    .mobile-img {
        display: block;
    }
    .sec-title {
        margin-bottom: 24px;
    }
}

@media (max-width: 575px) {
    .services .service {
        padding: 60px 0;
    }
    .feature-option p {
        /* display: none; */
    }
}

.services .service .feature-option h3 {
    font-size: 32px;
    line-height: 1;
    color: #31ba9c;
    width: fit-content;
    /* padding: 10px; */
    /* margin-left: -10px; */
    margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
    section.main .container {
        width: 598px;
        left: 15px;
    }
    #typewriting {
        margin: 0;
    }
    section.main .subhead {
        margin-top: 65px;
        max-width: 100%;
    }
    header.main-header .container {
        max-width: 100%;
    }
    span.underlined {
        background-image: url(../images/underline-mob.png);
        font-size: 76px;
        line-height: 80px;
    }
}

@media only screen and (max-width: 599px) {
    section.main .main-title {
        font-size: 20px;
        margin-left: 0;
        margin-bottom: 54px;
    }

    section.main .container {
        top: 60px;
        width: 540px;
        max-width: 100%;
        left: 15px;
        padding: 0;
    }

    span.underlined {
        font-size: 64px;
        line-height: 72px;
        background-position: bottom;
    }
    section.main .subhead {
        font-size: 19px;
        line-height: 24px;
        margin-left: 0;
    }
}

@media only screen and (max-width: 479px) {
    section.main .container {
        top: 28px;
        width: calc(100% - 30px);
    }

    span.underlined {
        font-size: 56px;
        line-height: 62px;
        letter-spacing: -2px;
    }

    ._sec._cont span.underlined {
        font-size: 64px;
        letter-spacing: 1px;
    }
    .service._sp .sec-title h2,
    .service._ec .sec-title h2,
    .service._gd .sec-title h2,
    .service._seo .sec-title h2 {
        margin-left: 0;
        padding: 0;
        background-color: transparent;
    }

    section.main .main-title {
        margin-bottom: 28px;
    }

    section.main .subhead {
        top: 150px;
    }
    .main-header {
        padding: 8px 0;
    }

    .features-section .feature-block .inner-box {
        padding: 16px 20px;
    }

    section.main .subhead {
        padding: 12px 20px;
    }

    .feature-block .icon {
        width: 60px;
        height: 60px;
    }

    .about-block .sub-title {
        display: none;
    }

    .feature-block .icon {
        margin: 0 auto 15px;
    }
}
