@import url("https://fonts.googleapis.com/css2?family=Mona+Sans:ital,wght@0,200..900;1,200..900&amp;display=swap");

:root {
    --color-primary: #1a747b;
    --color-primary-2: #1a747b;
    --color-secondary: #ff7029;
    --color-secondary: rgb(255, 112, 41, .20);
    --color-body: #6e777d;
    --color-body-2: #717580;
    --color-border: #e4e4e4;
    --color-heading-1: #0c1e21;
    --color-black: #000;
    --color-white: #fff;
    --shadow-1: 0 6px 34px rgba(215, 216, 222, 0.41);
    --primary-50: #effcfd;
    --primary-100: #dffafc;
    --primary-200: #ccf9fe;
    --primary-300: #3adae5;
    --primary-400: #31bcc6;
    --primary-500: #289fa8;
    --primary-600: #1f838b;
    --primary-700: #1a747b;
    --primary-900: #17686f;
    --secondary-100: #fff1ea;
    --secondary-200: #ffd4bf;
    --secondary-300: #ffc6a9;
    --secondary-400: #ffa97f;
    --secondary-500: #ff9b69;
    --secondary-600: #ff8d54;
    --secondary-700: #ff7029;
    --secondary-900: #e66525;
    --color-success: #3eb75e;
    --color-danger: #ff0003;
    --color-warning: #ff8f3c;
    --color-info: #1ba2db;
    --color-facebook: #3b5997;
    --color-twitter: #1ba1f2;
    --color-youtube: #ed4141;
    --color-linkedin: #0077b5;
    --color-pinterest: #e60022;
    --color-instagram: #c231a1;
    --color-vimeo: #00adef;
    --color-twitch: #6441a3;
    --color-discord: #7289da;
    --p-light: 300;
    --p-regular: 400;
    --p-medium: 500;
    --p-semi-bold: 600;
    --p-bold: 700;
    --p-extra-bold: 800;
    --p-black: 900;
    --s-light: 300;
    --s-regular: 400;
    --s-medium: 500;
    --s-semi-bold: 600;
    --s-bold: 700;
    --s-extra-bold: 800;
    --s-black: 900;
    --transition: all .4s ease;
    --font-primary: "Mona Sans", sans-serif;
    --font-secondary: "Mona Sans", sans-serif;
    --font-awesome: "FontAwesome";
    --font-size-b1: 16px;
    --font-size-b2: 16px;
    --font-size-b3: 22px;
    --line-height-b1: 26px;
    --line-height-b2: 26px;
    --line-height-b3: 1.7;
    --h1: 66px;
    --h2: 44px;
    --h3: 36px;
    --h4: 30px;
    --h5: 24px;
    --h6: 20px
}

* {
    box-sizing: border-box
}

html {
    margin: 0;
    padding: 0;
    font-size: 10px;
    overflow: hidden;
    overflow-y: auto;
    scroll-behavior: auto !important
}

body {
    font-size: var(--font-size-b1);
    line-height: var(--line-height-b1);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Mona Sans", sans-serif;
    color: var(--color-body);
    font-weight: var(--p-regular);
    position: relative;
    overflow-x: hidden
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    body {
        overflow: hidden
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    body {
        overflow: hidden
    }
}

@media only screen and (max-width:767px) {
    body {
        overflow: hidden
    }
}

body::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: .05
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
address,
p,
pre,
blockquote,
menu,
ol,
ul,
table,
hr {
    margin: 0;
    margin-bottom: 20px
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    word-break: break-word;
    font-family: "Mona Sans", sans-serif;
    line-height: 1.4074;
    color: var(--color-heading-1)
}

h1,
.h1 {
    font-size: var(--h1);
    line-height: 91px;
    font-weight: 600
}

h2,
.h2 {
    font-size: var(--h2);
    line-height: 1.23
}

h3,
.h3 {
    font-size: var(--h3);
    line-height: 1.3
}

h4,
.h4 {
    font-size: var(--h4);
    line-height: 1.25
}

h5,
.h5 {
    font-size: var(--h5);
    line-height: 1.24
}

h6,
.h6 {
    font-size: var(--h6);
    line-height: 1.4
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a {
    color: inherit
}

@media only screen and (min-width:768px) and (max-width:991px) {

    h1,
    .h1 {
        font-size: 38px
    }

    h2,
    .h2 {
        font-size: 32px
    }

    h3,
    .h3 {
        font-size: 28px
    }

    h4,
    .h4 {
        font-size: 24px
    }

    h5,
    .h5 {
        font-size: 18px
    }
}

@media only screen and (max-width:767px) {

    h1,
    .h1 {
        font-size: 34px
    }

    h2,
    .h2 {
        font-size: 28px
    }

    h3,
    .h3 {
        font-size: 24px
    }

    h4,
    .h4 {
        font-size: 20px
    }

    h5,
    .h5 {
        font-size: 20px
    }
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
    font-weight: var(--s-semi-bold)
}

h4,
.h4,
h5,
.h5 {
    font-weight: var(--s-semi-bold)
}

h6,
.h6 {
    font-weight: var(--s-semi-bold)
}

p {
    font-size: var(--font-size-b2);
    line-height: var(--line-height-b2);
    font-weight: var(--p-regular);
    color: var(--color-body);
    margin: 0 0 40px
}

@media only screen and (max-width:767px) {
    p {
        margin: 0 0 20px;
        font-size: 16px;
        line-height: 28px
    }
}

p.has-large-font-size {
    line-height: 1.5;
    font-size: 36px
}

p.has-medium-font-size {
    font-size: 24px;
    line-height: 36px
}

p.has-small-font-size {
    font-size: 13px
}

p.has-very-light-gray-color {
    color: var(--color-white)
}

p.has-background {
    padding: 20px 30px
}

p:last-child {
    margin-bottom: 0
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0 0 20px;
    width: 100%
}

table a,
table a:link,
table a:visited {
    text-decoration: none
}

cite,
.wp-block-pullquote cite,
.wp-block-pullquote.is-style-solid-color blockquote cite,
.wp-block-quote cite {
    color: var(--color-heading)
}

var {
    font-family: "Mona Sans", sans-serif
}

ul,
ol {
    padding-left: 18px
}

ul {
    list-style: square;
    margin-bottom: 30px;
    padding-left: 20px
}

ul li {
    font-size: var(--font-size-b1);
    line-height: var(--line-height-b1);
    margin-top: 10px;
    margin-bottom: 10px;
    color: var(--color-body)
}

ul li a {
    text-decoration: none;
    color: var(--color-gray)
}

ul li a:hover {
    color: var(--color-primary)
}

ul ul {
    margin-bottom: 0
}

ol {
    margin-bottom: 30px
}

ol li {
    font-size: var(--font-size-b1);
    line-height: var(--line-height-b1);
    color: var(--color-body);
    margin-top: 10px;
    margin-bottom: 10px
}

ol li a {
    color: var(--color-heading);
    text-decoration: none
}

ol li a:hover {
    color: var(--color-primary)
}

ol ul {
    padding-left: 30px
}

@media only screen and (max-width:1199px) {
    h1 {
        font-size: 64px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    h1 {
        font-size: 54px
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    h1 {
        font-size: 40px;
        line-height: 56px
    }
}

@media only screen and (max-width:767px) {
    h1 {
        font-size: 30px;
        line-height: 45px
    }
}

@media only screen and (max-width:576px) {
    h1 {
        font-size: 28px;
        line-height: 36px
    }
}

@media only screen and (max-width:479px) {
    h1 {
        font-size: 26px;
        line-height: 30px
    }
}

@media only screen and (max-width:1199px) {
    h2 {
        font-size: 54px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    h2 {
        font-size: 44px
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    h2 {
        font-size: 36px;
        line-height: 56px
    }
}

@media only screen and (max-width:767px) {
    h2 {
        font-size: 30px;
        line-height: 45px
    }
}

@media only screen and (max-width:576px) {
    h2 {
        font-size: 26px;
        line-height: 36px
    }
}

@media only screen and (max-width:479px) {
    h2 {
        font-size: 26px;
        line-height: 38px
    }
}

@media only screen and (max-width:1199px) {
    h3 {
        font-size: 40px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    h3 {
        font-size: 36px
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    h3 {
        font-size: 30px;
        line-height: 56px
    }
}

@media only screen and (max-width:767px) {
    h3 {
        font-size: 30px;
        line-height: 45px
    }
}

@media only screen and (max-width:576px) {
    h3 {
        font-size: 24px;
        line-height: 36px
    }
}

@media only screen and (max-width:479px) {
    h3 {
        font-size: 22px;
        line-height: 30px
    }
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
nav,
section,
summary {
    display: block
}

audio,
canvas,
video {
    display: inline-block
}

audio:not([controls]) {
    display: none;
    height: 0
}

[hidden] {
    display: none
}

a {
    color: var(--color-heading);
    text-decoration: none;
    outline: 0;
    transition: var(--transition)
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: 0;
    color: var(--color-primary)
}

a:focus {
    outline: 0
}

address {
    margin: 0 0 24px
}

abbr[title] {
    border-bottom: 1px dotted
}

b,
strong {
    font-weight: bold
}

mark {
    background: var(--color-primary);
    color: #fff
}

code,
kbd,
pre,
samp {
    font-size: var(--font-size-b3);
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
    color: var(--color-primary)
}

kbd,
ins {
    color: #fff
}

pre {
    font-family: "Raleway", sans-serif;
    font-size: var(--font-size-b3);
    margin: 10px 0;
    overflow: auto;
    padding: 20px;
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
    color: var(--color-body);
    background: var(--color-lighter)
}

small {
    font-size: smaller
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sup {
    top: -.5em
}

sub {
    bottom: -.25em
}

dl {
    margin-top: 0;
    margin-bottom: 10px
}

dd {
    margin: 0 15px 15px
}

dt {
    font-weight: bold;
    color: var(--color-heading)
}

menu,
ol,
ul {
    margin: 16px 0;
    padding: 0 0 0 40px
}

nav ul,
nav ol {
    list-style: none;
    list-style-image: none
}

li>ul,
li>ol {
    margin: 0
}

ol ul {
    margin-bottom: 0
}

img {
    -ms-interpolation-mode: bicubic;
    border: 0;
    vertical-align: middle;
    max-width: 100%;
    height: auto
}

svg:not(:root) {
    overflow: hidden
}

figure {
    margin: 0
}

form {
    margin: 0
}

fieldset {
    border: 1px solid var(--color-border);
    margin: 0 2px;
    min-width: inherit;
    padding: .35em .625em .75em
}

legend {
    border: 0;
    padding: 0;
    white-space: normal
}

button,
input,
select,
textarea {
    font-size: 100%;
    margin: 0;
    max-width: 100%;
    vertical-align: baseline
}

button,
input {
    line-height: normal
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    cursor: pointer
}

button[disabled],
input[disabled] {
    cursor: default
}

input[type=checkbox],
input[type=radio] {
    padding: 0
}

input[type=search] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
    appearance: textfield;
    padding-right: 2px;
    width: 270px
}

input[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
    appearance: none
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0
}

textarea {
    overflow: auto;
    vertical-align: top
}

caption,
th,
td {
    font-weight: normal
}

th {
    font-weight: 500;
    text-transform: uppercase
}

td,
.wp-block-calendar tfoot td {
    border: 1px solid var(--color-border);
    padding: 7px 10px
}

del {
    color: #333
}

ins {
    background: rgba(255, 47, 47, 0.4);
    text-decoration: none
}

hr {
    background-size: 4px 4px;
    border: 0;
    height: 1px;
    margin: 0 0 24px
}

table a,
table a:link,
table a:visited {
    text-decoration: underline
}

dt {
    font-weight: bold;
    margin-bottom: 10px
}

dd {
    margin: 0 15px 15px
}

caption {
    caption-side: top
}

kbd {
    background: var(--heading-color)
}

dfn,
cite,
em {
    font-style: italic
}

blockquote,
q {
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
    quotes: none
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none
}

blockquote {
    font-size: var(--font-size-b1);
    font-style: italic;
    font-weight: var(--p-light);
    margin: 24px 40px
}

blockquote blockquote {
    margin-right: 0
}

blockquote cite,
blockquote small {
    font-size: var(--font-size-b3);
    font-weight: normal
}

blockquote strong,
blockquote b {
    font-weight: 700
}

input,
button,
select,
textarea {
    background: transparent;
    border: 1px solid var(--color-border);
    transition: all .4s ease-out 0s;
    color: var(--color-body);
    width: 100%
}

input:focus,
input:active,
button:focus,
button:active,
select:focus,
select:active,
textarea:focus,
textarea:active {
    outline: 0;
    border-color: var(--color-primary)
}

button,
[type=button],
[type=reset],
[type=submit] {
    -webkit-appearance: button
}

input {
    height: 40px;
    padding: 0 15px
}

input[type=text],
input[type=password],
input[type=email],
input[type=number],
input[type=tel],
textarea {
    font-size: var(--font-size-b2);
    font-weight: 400;
    height: auto;
    line-height: 28px;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0 15px;
    outline: 0;
    border: var(--border-width) solid var(--color-border);
    border-radius: var(--radius)
}

input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=email]::placeholder,
input[type=number]::placeholder,
input[type=tel]::placeholder,
textarea::placeholder {
    color: var(--body-color);
    opacity: 1
}

input[type=text]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: var(--body-color)
}

input[type=text]::-ms-input-placeholder,
input[type=password]::-ms-input-placeholder,
input[type=email]::-ms-input-placeholder,
input[type=number]::-ms-input-placeholder,
input[type=tel]::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    color: var(--body-color)
}

input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=tel]:focus,
textarea:focus {
    border-color: var(--color-primary)
}

input[type=checkbox],
input[type=radio] {
    opacity: 0;
    position: absolute
}

input[type=checkbox]~label,
input[type=radio]~label {
    position: relative;
    font-size: 15px;
    line-height: 25px;
    color: var(--body-color);
    font-weight: 400;
    padding-left: 20px;
    cursor: pointer;
    margin-bottom: 0
}

input[type=checkbox]~label::before,
input[type=radio]~label::before {
    content: " ";
    position: absolute;
    top: 5px;
    left: 0;
    width: 14px;
    height: 14px;
    background-color: #fff;
    border: 2px solid var(--color-border);
    border-radius: 2px;
    transition: all .3s
}

input[type=checkbox]~label::after,
input[type=radio]~label::after {
    content: " ";
    position: absolute;
    top: 9px;
    left: 2px;
    width: 10px;
    height: 5px;
    background-color: transparent;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    border-radius: 2px;
    transform: rotate(-45deg);
    opacity: 0;
    transition: all .3s
}

input[type=checkbox]:checked~label::before,
input[type=radio]:checked~label::before {
    background-color: var(--color-primary);
    border-color: var(--color-primary)
}

input[type=checkbox]:checked~label::after,
input[type=radio]:checked~label::after {
    opacity: 1
}

input[type=radio]~label::before {
    border-radius: 50%
}

input[type=radio]~label::after {
    width: 8px;
    height: 8px;
    left: 3px;
    background: #fff;
    border-radius: 50%
}

input[type=submit] {
    width: auto;
    padding: 0 30px;
    border-radius: 500px;
    display: inline-block;
    font-weight: 500;
    transition: .3s;
    height: 60px;
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: var(--p-medium);
    font-size: var(--font-size-b2);
    line-height: var(--line-height-b3);
    height: 50px;
    border: 2px solid var(--color-primary);
    transition: var(--transition)
}

input[type=submit]:hover {
    background: transparent;
    color: var(--color-primary);
    transform: translateY(-5px)
}

.slick-initialized .slick-slide {
    margin-bottom: -10px
}

.slick-gutter-15 {
    margin: -30px -15px
}

.slick-gutter-15 .slick-slide {
    padding: 30px 15px
}

iframe {
    width: 100%
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    opacity: 1;
    -ms-filter: "alpha(opacity=100)"
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    opacity: 1;
    -ms-filter: "alpha(opacity=100)"
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    opacity: 1;
    -ms-filter: "alpha(opacity=100)"
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    opacity: 1;
    -ms-filter: "alpha(opacity=100)"
}

[data-overlay],
[data-black-overlay],
[data-white-overlay] {
    position: relative;
    z-index: 2
}

[data-overlay]>div,
[data-overlay]>*,
[data-black-overlay]>div,
[data-black-overlay]>*,
[data-white-overlay]>div,
[data-white-overlay]>* {
    position: relative;
    z-index: 2
}

[data-overlay]:before,
[data-black-overlay]:before,
[data-white-overlay]:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1
}

[data-overlay]:before {
    background: var(--color-primary)
}

[data-black-overlay]:before {
    background-color: #000
}

[data-white-overlay]:before {
    background-color: #fff
}

[data-overlay="1"]:before,
[data-black-overlay="1"]:before,
[data-white-overlay="1"]:before {
    opacity: .1
}

[data-overlay="2"]:before,
[data-black-overlay="2"]:before,
[data-white-overlay="2"]:before {
    opacity: .2
}

[data-overlay="3"]:before,
[data-black-overlay="3"]:before,
[data-white-overlay="3"]:before {
    opacity: .3
}

[data-overlay="4"]:before,
[data-black-overlay="4"]:before,
[data-white-overlay="4"]:before {
    opacity: .4
}

[data-overlay="5"]:before,
[data-black-overlay="5"]:before,
[data-white-overlay="5"]:before {
    opacity: .5
}

[data-overlay="6"]:before,
[data-black-overlay="6"]:before,
[data-white-overlay="6"]:before {
    opacity: .6
}

[data-overlay="7"]:before,
[data-black-overlay="7"]:before,
[data-white-overlay="7"]:before {
    opacity: .7
}

[data-overlay="8"]:before,
[data-black-overlay="8"]:before,
[data-white-overlay="8"]:before {
    opacity: .8
}

[data-overlay="9"]:before,
[data-black-overlay="9"]:before,
[data-white-overlay="9"]:before {
    opacity: .9
}

[data-overlay="10"]:before,
[data-black-overlay="10"]:before,
[data-white-overlay="10"]:before {
    opacity: 1
}

#scrollUp {
    width: 70px;
    height: 80px;
    right: 100px;
    bottom: 60px;
    text-align: center;
    z-index: 9811 !important;
    text-decoration: none;
    background: #fff;
    line-height: 80px;
    color: #757589;
    font-size: 15px;
    font-weight: 400;
    transition: var(--transition);
    display: inline-block;
    background: #fff
}

@media only screen and (min-width:768px) and (max-width:991px) {
    #scrollUp {
        right: 20px;
        bottom: 40px
    }
}

@media only screen and (max-width:767px) {
    #scrollUp {
        right: 20px;
        bottom: 40px
    }
}

#scrollUp::before {
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 2, 72, 0.1);
    content: "";
    position: absolute;
    z-index: -1;
    transform-style: preserve-3d;
    transform: rotateY(-10deg);
    filter: blur(50px)
}

#scrollUp::after {
    background: #fff;
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform-style: preserve-3d;
    transform: rotateY(-10deg)
}

@media only screen and (max-width:767px) {
    #scrollUp {
        right: 20px;
        bottom: 30px;
        width: 50px;
        height: 60px;
        line-height: 60px
    }
}

#scrollUp span.text {
    position: relative;
    display: inline-block;
    margin-top: 7px
}

@media only screen and (max-width:767px) {
    #scrollUp span.text {
        margin-top: 3px
    }
}

#scrollUp span.text::after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 5px 7px 5px;
    border-color: transparent transparent var(--color-primary) transparent;
    position: absolute;
    content: "";
    left: 50%;
    top: 21%;
    transform: translateX(-50%)
}

#scrollUp:hover span.text {
    color: var(--color-primary)
}

body {
    scroll-behavior: auto;
    background: #fff;
    overflow-x: hidden;
    padding: 0;
    padding-right: 0 !important
}

::placeholder {
    color: #5d666f !important;
    opacity: 1 !important;
    font-size: 16px
}

:-ms-input-placeholder {
    color: #5d666f !important;
    font-size: 16px
}

::-ms-input-placeholder {
    color: #5d666f !important;
    font-size: 16px
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px
}

.over_link {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 9;
    left: 0;
    top: 0
}

#menu-btn .icon {
    margin: 0 !important
}

@media(min-width:576px) {

    .container,
    .container-sm {
        max-width: 540px
    }
}

@media(min-width:768px) {

    .container,
    .container-md,
    .container-sm {
        max-width: 720px
    }
}

@media(min-width:992px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 960px
    }
}

@media(min-width:1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1140px
    }
}

@media(min-width:1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1346px
    }
}

@media(min-width:1500px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1370px
    }
}

@media(min-width:576px) {

    .container-3,
    .container-3-sm {
        max-width: 540px
    }
}

@media(min-width:768px) {

    .container-3,
    .container-3-md,
    .container-3-sm {
        max-width: 720px
    }
}

@media(min-width:992px) {

    .container-3,
    .container-3-lg,
    .container-3-md,
    .container-3-sm {
        max-width: 960px
    }
}

@media(min-width:1200px) {

    .container-3,
    .container-3-lg,
    .container-3-md,
    .container-3-sm,
    .container-3-xl {
        max-width: 1140px
    }
}

@media(min-width:1400px) {

    .container-3,
    .container-3-lg,
    .container-3-md,
    .container-3-sm,
    .container-3-xl,
    .container-3-xxl {
        max-width: 1320px
    }
}

.container-3,
.container-header {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto
}

.section-title-area-3 .sub-title {
    margin: 0 auto;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: var(--color-primary);
    font-family: var(--font-primary);
    position: relative;
    max-width: max-content;
    z-index: 1;
    padding: 0 35px
}

.section-title-area-3 .sub-title::before {
    content: "";
    position: absolute;
    width: 56px;
    height: 2px;
    background: linear-gradient(-90deg, var(--color-primary), rgba(33, 38, 45, 0)) !important;
    left: -30px;
    top: 50%;
    transform: translateY(-50%)
}

.section-title-area-3 .sub-title::after {
    content: "";
    position: absolute;
    width: 56px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), rgba(33, 38, 45, 0)) !important;
    right: -30px;
    top: 50%;
    transform: translateY(-50%)
}

.section-title-area-3 .section-title {
    font-weight: 600;
    line-height: 58px;
    text-align: center
}

.section-title-area-3 .section-title span {
    color: var(--color-primary)
}

.section-title-area-4 .sub-title {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    font-family: var(--font-primary);
    position: relative;
    z-index: 1;
    padding-left: 0;
    max-width: max-content
}

.section-title-area-4 .sub-title::after {
    content: "";
    position: absolute;
    width: 42px;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), rgba(33, 38, 45, 0)) !important
}

.section-title-area-4 .section-title {
    font-weight: 600;
    line-height: 58px
}

.section-title-area-4 .section-title span {
    color: var(--color-primary)
}

ul {
    padding: 0;
    margin: 0
}

ul li {
    list-style: none;
    padding: 0;
    margin: 0
}

@media only screen and (max-width:576px) {
    p.desc br {
        display: none
    }
}

.cg {
    color: var(--color-primary-2) !important
}

.cg::after,
.cg::before {
    background: var(--color-primary-2) !important
}

.radius-small {
    border-radius: 6px !important
}

.swiper-slider {
    overflow: hidden
}

.bg-project2 {
    background: #f7fdff !important
}

.hover-moving-primary {
    position: relative;
    display: inline-block;
    transition: .3s
}

.hover-moving-primary::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform .3s
}

.hover-moving-primary:hover {
    color: var(--color-primary) !important
}

.hover-moving-primary:hover::after {
    transform-origin: bottom left;
    transform: scaleX(1)
}

.swiper-default-btn-style {
    position: relative
}

.swiper-default-btn-style .swiper-btn {
    transform: translateY(-50%);
    font-size: 18px;
    background: #fff;
    box-shadow: 0 5px 22px rgba(0, 0, 0, 0.06);
    width: 60px;
    height: 60px;
    line-height: 62px;
    display: block;
    text-align: center;
    border-radius: 50%;
    transition: .3s;
    color: var(--color-heading-1)
}

@media only screen and (max-width:767px) {
    .swiper-default-btn-style .swiper-btn {
        font-size: 16px;
        width: 45px;
        height: 45px;
        line-height: 47px
    }
}

.swiper-default-btn-style .swiper-btn i {
    color: var(--color-primary)
}

.swiper-default-btn-style .swiper-btn::after {
    display: none
}

.swiper-default-btn-style .swiper-btn.swiper-button-prev {
    left: 0;
    opacity: 0
}

@media only screen and (max-width:1199px) {
    .swiper-default-btn-style .swiper-btn.swiper-button-prev {
        left: -30px;
        opacity: 1
    }
}

@media only screen and (max-width:767px) {
    .swiper-default-btn-style .swiper-btn.swiper-button-prev {
        left: 0
    }
}

.swiper-default-btn-style .swiper-btn.swiper-button-next {
    right: 0;
    opacity: 0
}

@media only screen and (max-width:1199px) {
    .swiper-default-btn-style .swiper-btn.swiper-button-next {
        right: -30px;
        opacity: 1
    }
}

@media only screen and (max-width:767px) {
    .swiper-default-btn-style .swiper-btn.swiper-button-next {
        right: 0
    }
}

.swiper-default-btn-style .swiper-btn:hover {
    background: var(--color-primary);
    transform: translateY(-50%) scale(1.15)
}

.swiper-default-btn-style .swiper-btn:hover i {
    color: #fff
}

.swiper-default-btn-style:hover .swiper-button-prev {
    left: -90px;
    opacity: 1
}

@media only screen and (min-width:1200px) and (max-width:1599px) {
    .swiper-default-btn-style:hover .swiper-button-prev {
        left: -60px
    }
}

@media only screen and (max-width:1199px) {
    .swiper-default-btn-style:hover .swiper-button-prev {
        left: -30px;
        opacity: 1
    }
}

@media only screen and (max-width:767px) {
    .swiper-default-btn-style:hover .swiper-button-prev {
        left: 0
    }
}

.swiper-default-btn-style:hover .swiper-button-next {
    right: -90px;
    opacity: 1
}

@media only screen and (min-width:1200px) and (max-width:1599px) {
    .swiper-default-btn-style:hover .swiper-button-next {
        right: -60px
    }
}

@media only screen and (max-width:1199px) {
    .swiper-default-btn-style:hover .swiper-button-next {
        right: -30px;
        opacity: 1
    }
}

@media only screen and (max-width:767px) {
    .swiper-default-btn-style:hover .swiper-button-next {
        right: 0
    }
}

.sticky-bottom-section {
    position: relative;
    z-index: 10
}

.corva-svg-animate svg path {
    fill: var(--color-primary);
    stroke: var(--color-primary);
    stroke-width: 0;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: fill .6s ease
}

.corva-svg-animate.is-animating svg path {
    fill: transparent;
    stroke-width: 2px
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

@-webkit-keyframes bounce {

    from,
    20%,
    53%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0)
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0)
    }
}

@keyframes bounce {

    from,
    20%,
    53%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0)
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0)
    }
}

@keyframes jump-1 {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    40% {
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes jump-2 {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    50% {
        -webkit-transform: translate3d(0, 30px, 0);
        transform: translate3d(0, 30px, 0)
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes jump-3 {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    40% {
        -webkit-transform: translate3d(0, 50px, 0) scale(0.7);
        transform: translate3d(0, 50px, 0) scale(0.7)
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes jump-4 {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    40% {
        -webkit-transform: translate3d(0, 20px, 0) scale(0.8);
        transform: translate3d(0, 20px, 0) scale(0.8)
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes jump-5 {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    40% {
        transform: translate3d(0, 10px, 0)
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes flash {

    from,
    50%,
    to {
        opacity: 1
    }

    25%,
    75% {
        opacity: 0
    }
}

@keyframes flash {

    from,
    50%,
    to {
        opacity: 1
    }

    25%,
    75% {
        opacity: 0
    }
}

@-webkit-keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05)
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05)
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes pulse-border {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    50% {
        -webkit-transform: scale3d(1.3, 1.3, 1.3);
        transform: scale3d(1.3, 1.3, 1.3)
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@-webkit-keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1)
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1)
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1)
    }

    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1)
    }

    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1)
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1)
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1)
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1)
    }

    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1)
    }

    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1)
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@-webkit-keyframes shake {

    from,
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
}

@keyframes shake {

    from,
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg)
    }

    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg)
    }

    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg)
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg)
    }

    to {
        -webkit-transform: rotate3d(0, 0, 1, 0);
        transform: rotate3d(0, 0, 1, 0)
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg)
    }

    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg)
    }

    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg)
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg)
    }

    to {
        -webkit-transform: rotate3d(0, 0, 1, 0);
        transform: rotate3d(0, 0, 1, 0)
    }
}

@-webkit-keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    10%,
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg)
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
    }

    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    10%,
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg)
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
    }

    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@-webkit-keyframes wobble {
    from {
        -webkit-transform: none;
        transform: none
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes wobble {
    from {
        -webkit-transform: none;
        transform: none
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@-webkit-keyframes jello {

    from,
    11.1%,
    to {
        -webkit-transform: none;
        transform: none
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }

    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg)
    }

    77.7% {
        -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
        transform: skewX(0.390625deg) skewY(0.390625deg)
    }

    88.8% {
        -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg)
    }
}

@keyframes jello {

    from,
    11.1%,
    to {
        -webkit-transform: none;
        transform: none
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }

    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg)
    }

    77.7% {
        -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
        transform: skewX(0.390625deg) skewY(0.390625deg)
    }

    88.8% {
        -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg)
    }
}

@-webkit-keyframes bounceIn {

    from,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3)
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }

    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03)
    }

    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97)
    }

    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes bounceIn {

    from,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3)
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }

    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03)
    }

    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97)
    }

    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@-webkit-keyframes bounceInDown {

    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInDown {

    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@-webkit-keyframes bounceInLeft {

    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInLeft {

    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@-webkit-keyframes bounceInRight {

    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInRight {

    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@-webkit-keyframes bounceInUp {

    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes bounceInUp {

    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9)
    }

    50%,
    55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3)
    }
}

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9)
    }

    50%,
    55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3)
    }
}

@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

@-webkit-keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

@-webkit-keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@-webkit-keyframes fadeInDownBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInDownBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@-webkit-keyframes fadeInLeftBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInLeftBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@-webkit-keyframes fadeInRightBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInRightBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInUp2 {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 40%, 0);
        transform: translate3d(0, 40%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@-webkit-keyframes fadeInUpBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInUpBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@-webkit-keyframes fadeOutDown {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

@-webkit-keyframes fadeOutDownBig {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

@keyframes fadeOutDownBig {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

@-webkit-keyframes fadeOutLeft {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

@keyframes fadeOutLeft {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

@-webkit-keyframes fadeOutLeftBig {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

@keyframes fadeOutLeftBig {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

@-webkit-keyframes fadeOutRight {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

@keyframes fadeOutRight {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

@-webkit-keyframes fadeOutRightBig {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

@keyframes fadeOutRightBig {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

@-webkit-keyframes fadeOutUp {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

@keyframes fadeOutUp {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

@-webkit-keyframes fadeOutUpBig {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

@keyframes fadeOutUpBig {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

@-webkit-keyframes flip {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

@keyframes flip {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

@-webkit-keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@-webkit-keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@-webkit-keyframes flipOutX {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1
    }

    to {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0
    }
}

@keyframes flipOutX {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1
    }

    to {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0
    }
}

@-webkit-keyframes flipOutY {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1
    }

    to {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0
    }
}

@keyframes flipOutY {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1
    }

    to {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0
    }
}

@-webkit-keyframes lightSpeedIn {
    from {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0
    }

    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1
    }

    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes lightSpeedIn {
    from {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0
    }

    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1
    }

    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@-webkit-keyframes lightSpeedOut {
    from {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0
    }
}

@keyframes lightSpeedOut {
    from {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0
    }
}

@-webkit-keyframes rotateIn {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateIn {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@-webkit-keyframes rotateInDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@-webkit-keyframes rotateInDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@-webkit-keyframes rotateInUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@-webkit-keyframes rotateInUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@-webkit-keyframes rotateOut {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1
    }

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0
    }
}

@keyframes rotateOut {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1
    }

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0
    }
}

@-webkit-keyframes rotateOutDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
}

@keyframes rotateOutDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
}

@-webkit-keyframes rotateOutDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

@keyframes rotateOutDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

@-webkit-keyframes rotateOutUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

@keyframes rotateOutUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

@-webkit-keyframes rotateOutUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0
    }
}

@keyframes rotateOutUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0
    }
}

@-webkit-keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    20%,
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    40%,
    80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0
    }
}

@keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    20%,
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    40%,
    80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0
    }
}

@-webkit-keyframes rollIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes rollIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@-webkit-keyframes rollOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
    }
}

@keyframes rollOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
    }
}

@-webkit-keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3)
    }

    50% {
        opacity: 1
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3)
    }

    50% {
        opacity: 1
    }
}

@-webkit-keyframes zoomInDown {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

@keyframes zoomInDown {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

@-webkit-keyframes zoomInLeft {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

@keyframes zoomInLeft {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

@-webkit-keyframes zoomInRight {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

@keyframes zoomInRight {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

@-webkit-keyframes zoomInUp {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

@keyframes zoomInUp {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

@-webkit-keyframes zoomOut {
    from {
        opacity: 1
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3)
    }

    to {
        opacity: 0
    }
}

@keyframes zoomOut {
    from {
        opacity: 1
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3)
    }

    to {
        opacity: 0
    }
}

@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
        transform: scale(0.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center
    }
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
        transform: scale(0.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center
    }
}

@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
        transform: scale(0.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center
    }
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
        transform: scale(0.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center
    }
}

@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

@-webkit-keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes slideInLeft2 {
    from {
        -webkit-transform: translate3d(-10%, 0, 0);
        transform: translate3d(-10%, 0, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes slideInUp2 {
    from {
        -webkit-transform: translate3d(0, 20%, 0);
        transform: translate3d(0, 20%, 0);
        visibility: hidden
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible
    }
}

@keyframes slideInUp3 {
    from {
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
        visibility: hidden
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible
    }
}

[data-aos=slideInUp2] {
    opacity: 0;
    transition-property: transform, opacity
}

@media screen and (min-width:768px) {
    [data-aos=slideInUp2] {
        transform: translateY(30px)
    }
}

@-webkit-keyframes slideOutDown {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

@keyframes slideOutDown {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

@-webkit-keyframes slideOutLeft {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

@keyframes slideOutLeft {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

@-webkit-keyframes slideOutRight {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

@keyframes slideOutRight {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

@-webkit-keyframes slideOutUp {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

@keyframes slideOutUp {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

@keyframes jump-1 {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    40% {
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes jump-2 {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    50% {
        -webkit-transform: translate3d(0, 30px, 0);
        transform: translate3d(0, 30px, 0)
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes rotateIt {
    to {
        transform: rotate(-360deg)
    }
}

@keyframes rotateIt2 {
    to {
        transform: rotate(360deg)
    }
}

@keyframes shape-service-1 {
    0% {
        right: -40%;
        top: 30%
    }

    100% {
        right: -23%;
        top: 0
    }
}

@keyframes animate-floting {
    0% {
        transform: translateX(50%)
    }

    50% {
        transform: translateX(-40%)
    }

    100% {
        transform: translateX(40%)
    }
}

@keyframes animate-floting-2 {
    0% {
        transform: translateX(-50%)
    }

    50% {
        transform: translateX(40%)
    }

    100% {
        transform: translateX(-40%)
    }
}

@keyframes animate-floting-3 {
    0% {
        transform: translateX(-20%)
    }

    50% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-20%)
    }
}

@keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
        -ms-filter: "alpha(opacity=0)"
    }

    50% {
        opacity: .9;
        -ms-filter: "alpha(opacity=90)"
    }

    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
        -ms-filter: "alpha(opacity=0)"
    }
}

@keyframes vsmorph {
    0% {
        border-radius: var(--morp-value)
    }

    50% {
        border-radius: var(--morp-md-value)
    }

    100% {
        border-radius: 40% 60%
    }
}

@keyframes morpspin {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-100%)
    }
}

[data-aos=reveal-top],
[data-aos=reveal-start],
[data-aos=reveal-end],
[data-aos=reveal-bottom] {
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-delay: 1s;
    transition-delay: 1s
}

[data-aos=reveal-top] {
    -webkit-transform: scaleY(1);
    transform: scaleY(1)
}

[data-aos=reveal-start] {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
}

[data-aos=reveal-end] {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
}

[data-aos=reveal-bottom] {
    -webkit-transform: scaleY(1);
    transform: scaleY(1)
}

[data-aos=reveal-item] {
    visibility: hidden;
    -webkit-transition-property: visibility;
    transition-property: visibility;
    -webkit-transition-duration: 0s;
    transition-duration: 0s
}

@-webkit-keyframes slideInLeftBanner {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes slideInLeftBanner {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes customOne {
    0% {
        -webkit-transform: translateY(-50%) scale(0);
        transform: translateY(-50%) scale(0);
        opacity: 1
    }

    100% {
        -webkit-transform: translateY(-50%) scale(1.3);
        transform: translateY(-50%) scale(1.3);
        opacity: 0
    }
}

@keyframes liveAuction {
    0% {
        background: var(--color-white)
    }

    100% {
        background: var(--color-danger)
    }
}

[data-sal] {
    transition-duration: .2s;
    transition-delay: 0s;
    transition-duration: var(--sal-duration, 0.2s);
    transition-delay: var(--sal-delay, 0s);
    transition-timing-function: var(--sal-easing, ease)
}

[data-sal][data-sal-duration="200"] {
    transition-duration: .2s
}

[data-sal][data-sal-duration="250"] {
    transition-duration: .25s
}

[data-sal][data-sal-duration="300"] {
    transition-duration: .3s
}

[data-sal][data-sal-duration="350"] {
    transition-duration: .35s
}

[data-sal][data-sal-duration="400"] {
    transition-duration: .4s
}

[data-sal][data-sal-duration="450"] {
    transition-duration: .45s
}

[data-sal][data-sal-duration="500"] {
    transition-duration: .5s
}

[data-sal][data-sal-duration="550"] {
    transition-duration: .55s
}

[data-sal][data-sal-duration="600"] {
    transition-duration: .6s
}

[data-sal][data-sal-duration="650"] {
    transition-duration: .65s
}

[data-sal][data-sal-duration="700"] {
    transition-duration: .7s
}

[data-sal][data-sal-duration="750"] {
    transition-duration: .75s
}

[data-sal][data-sal-duration="800"] {
    transition-duration: .8s
}

[data-sal][data-sal-duration="850"] {
    transition-duration: .85s
}

[data-sal][data-sal-duration="900"] {
    transition-duration: .9s
}

[data-sal][data-sal-duration="950"] {
    transition-duration: .95s
}

[data-sal][data-sal-duration="1000"] {
    transition-duration: 1s
}

[data-sal][data-sal-duration="1050"] {
    transition-duration: 1.05s
}

[data-sal][data-sal-duration="1100"] {
    transition-duration: 1.1s
}

[data-sal][data-sal-duration="1150"] {
    transition-duration: 1.15s
}

[data-sal][data-sal-duration="1200"] {
    transition-duration: 1.2s
}

[data-sal][data-sal-duration="1250"] {
    transition-duration: 1.25s
}

[data-sal][data-sal-duration="1300"] {
    transition-duration: 1.3s
}

[data-sal][data-sal-duration="1350"] {
    transition-duration: 1.35s
}

[data-sal][data-sal-duration="1400"] {
    transition-duration: 1.4s
}

[data-sal][data-sal-duration="1450"] {
    transition-duration: 1.45s
}

[data-sal][data-sal-duration="1500"] {
    transition-duration: 1.5s
}

[data-sal][data-sal-duration="1550"] {
    transition-duration: 1.55s
}

[data-sal][data-sal-duration="1600"] {
    transition-duration: 1.6s
}

[data-sal][data-sal-duration="1650"] {
    transition-duration: 1.65s
}

[data-sal][data-sal-duration="1700"] {
    transition-duration: 1.7s
}

[data-sal][data-sal-duration="1750"] {
    transition-duration: 1.75s
}

[data-sal][data-sal-duration="1800"] {
    transition-duration: 1.8s
}

[data-sal][data-sal-duration="1850"] {
    transition-duration: 1.85s
}

[data-sal][data-sal-duration="1900"] {
    transition-duration: 1.9s
}

[data-sal][data-sal-duration="1950"] {
    transition-duration: 1.95s
}

[data-sal][data-sal-duration="2000"] {
    transition-duration: 2s
}

[data-sal][data-sal-delay="50"] {
    transition-delay: .05s
}

[data-sal][data-sal-delay="100"] {
    transition-delay: .1s
}

[data-sal][data-sal-delay="150"] {
    transition-delay: .15s
}

[data-sal][data-sal-delay="200"] {
    transition-delay: .2s
}

[data-sal][data-sal-delay="250"] {
    transition-delay: .25s
}

[data-sal][data-sal-delay="300"] {
    transition-delay: .3s
}

[data-sal][data-sal-delay="350"] {
    transition-delay: .35s
}

[data-sal][data-sal-delay="400"] {
    transition-delay: .4s
}

[data-sal][data-sal-delay="450"] {
    transition-delay: .45s
}

[data-sal][data-sal-delay="500"] {
    transition-delay: .5s
}

[data-sal][data-sal-delay="550"] {
    transition-delay: .55s
}

[data-sal][data-sal-delay="600"] {
    transition-delay: .6s
}

[data-sal][data-sal-delay="650"] {
    transition-delay: .65s
}

[data-sal][data-sal-delay="700"] {
    transition-delay: .7s
}

[data-sal][data-sal-delay="750"] {
    transition-delay: .75s
}

[data-sal][data-sal-delay="800"] {
    transition-delay: .8s
}

[data-sal][data-sal-delay="850"] {
    transition-delay: .85s
}

[data-sal][data-sal-delay="900"] {
    transition-delay: .9s
}

[data-sal][data-sal-delay="950"] {
    transition-delay: .95s
}

[data-sal][data-sal-delay="1000"] {
    transition-delay: 1s
}

[data-sal][data-sal-easing=linear] {
    transition-timing-function: linear
}

[data-sal][data-sal-easing=ease] {
    transition-timing-function: ease
}

[data-sal][data-sal-easing=ease-in] {
    transition-timing-function: ease-in
}

[data-sal][data-sal-easing=ease-out] {
    transition-timing-function: ease-out
}

[data-sal][data-sal-easing=ease-in-out] {
    transition-timing-function: ease-in-out
}

[data-sal][data-sal-easing=ease-in-cubic] {
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
}

[data-sal][data-sal-easing=ease-out-cubic] {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
}

[data-sal][data-sal-easing=ease-in-out-cubic] {
    transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1)
}

[data-sal][data-sal-easing=ease-in-circ] {
    transition-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.335)
}

[data-sal][data-sal-easing=ease-out-circ] {
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1)
}

[data-sal][data-sal-easing=ease-in-out-circ] {
    transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86)
}

[data-sal][data-sal-easing=ease-in-expo] {
    transition-timing-function: cubic-bezier(0.95, 0.05, 0.795, 0.035)
}

[data-sal][data-sal-easing=ease-out-expo] {
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1)
}

[data-sal][data-sal-easing=ease-in-out-expo] {
    transition-timing-function: cubic-bezier(1, 0, 0, 1)
}

[data-sal][data-sal-easing=ease-in-quad] {
    transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53)
}

[data-sal][data-sal-easing=ease-out-quad] {
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

[data-sal][data-sal-easing=ease-in-out-quad] {
    transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955)
}

[data-sal][data-sal-easing=ease-in-quart] {
    transition-timing-function: cubic-bezier(0.895, 0.03, 0.685, 0.22)
}

[data-sal][data-sal-easing=ease-out-quart] {
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1)
}

[data-sal][data-sal-easing=ease-in-out-quart] {
    transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1)
}

[data-sal][data-sal-easing=ease-in-quint] {
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06)
}

[data-sal][data-sal-easing=ease-out-quint] {
    transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1)
}

[data-sal][data-sal-easing=ease-in-out-quint] {
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1)
}

[data-sal][data-sal-easing=ease-in-sine] {
    transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715)
}

[data-sal][data-sal-easing=ease-out-sine] {
    transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1)
}

[data-sal][data-sal-easing=ease-in-out-sine] {
    transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95)
}

[data-sal][data-sal-easing=ease-in-back] {
    transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045)
}

[data-sal][data-sal-easing=ease-out-back] {
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275)
}

[data-sal][data-sal-easing=ease-in-out-back] {
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55)
}

[data-sal|=fade] {
    opacity: 0;
    transition-property: opacity
}

[data-sal|=fade].sal-animate,
body.sal-disabled [data-sal|=fade] {
    opacity: 1
}

[data-sal|=slide] {
    opacity: 0;
    transition-property: opacity, transform
}

[data-sal=slide-up] {
    transform: translateY(20%)
}

[data-sal=slide-up-large] {
    transform: translateY(50%)
}

[data-sal=slide-down] {
    transform: translateY(-20%)
}

[data-sal=slide-left] {
    transform: translateX(20%)
}

[data-sal=slide-right] {
    transform: translateX(-20%)
}

[data-sal|=slide].sal-animate,
body.sal-disabled [data-sal|=slide] {
    opacity: 1;
    transform: none
}

[data-sal|=zoom] {
    opacity: 0;
    transition-property: opacity, transform
}

[data-sal=zoom-in] {
    transform: scale(0.5)
}

[data-sal=zoom-out] {
    transform: scale(1.1)
}

[data-sal|=zoom].sal-animate,
body.sal-disabled [data-sal|=zoom] {
    opacity: 1;
    transform: none
}

[data-sal|=flip] {
    backface-visibility: hidden;
    transition-property: transform
}

[data-sal=flip-left] {
    transform: perspective(2000px) rotateY(-91deg)
}

[data-sal=flip-right] {
    transform: perspective(2000px) rotateY(91deg)
}

[data-sal=flip-up] {
    transform: perspective(2000px) rotateX(-91deg)
}

[data-sal=flip-down] {
    transform: perspective(2000px) rotateX(91deg)
}

[data-sal|=flip].sal-animate,
body.sal-disabled [data-sal|=flip] {
    transform: none
}

.tmp-btn {
    padding: 0 26px;
    font-family: var(--font-secondary);
    line-height: 10px;
    max-width: max-content;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .05em;
    transition: .3s;
    border-radius: 50px;
    display: flex;
    align-items: center;
    min-width: max-content;
    position: relative;
    z-index: 1;
    height: 60px;
    justify-content: center
}

.tmp-btn:focus,
.tmp-btn:active {
    box-shadow: none
}

.tmp-btn.btn-sm {
    padding: 0 22px;
    font-size: 16px;
    height: 45px;
    line-height: 43px
}

.tmp-btn.btn-md {
    padding: 0 25px;
    font-size: 16px;
    height: 50px;
    line-height: 48px
}

.tmp-btn.button-flip.bg-white {
    background: #fff
}

.tmp-btn.button-flip span {
    display: inline-flex;
    position: relative;
    z-index: 3;
    transition: opacity .65s, transform .85s;
    transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1)
}

.tmp-btn.button-flip span::after {
    content: attr(data-text);
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    top: 50%;
    opacity: 0;
    transition: inherit;
    left: 100%;
    transform: translate(50%, -50%)
}

.tmp-btn.button-flip:hover {
    transform: none
}

.tmp-btn.button-flip:hover span {
    transform: translateX(-200%)
}

.tmp-btn.button-flip:hover span::after {
    opacity: 1;
    transform: translate(100%, -50%)
}

.tmp-btn.btn-primary {
    background: var(--color-primary);
    color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 1
}

.tmp-btn.btn-primary::after {
    content: "";
    position: absolute;
    -webkit-transition-duration: 800ms;
    transition-duration: 800ms;
    width: 200%;
    height: 200%;
    top: 110%;
    left: 50%;
    background: var(--color-heading-1);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    z-index: -1
}

.tmp-btn.btn-primary:hover {
    color: white
}

.tmp-btn.btn-primary:hover::after {
    top: -40%
}

.tmp-btn.btn-primary:focus {
    box-shadow: none;
    border: 0;
    outline: 0
}

.tmp-btn.btn-primary.hover-white:hover {
    color: var(--color-heading-1)
}

.tmp-btn.btn-primary.hover-white:hover::after {
    background: var(--color-white)
}

.tmp-btn.btn-seconday {
    background: var(--color-secondary);
    color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 1
}

.tmp-btn.btn-seconday::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: var(--color-primary);
    transform: translateY(110%);
    transition: .3s;
    z-index: -1
}

.tmp-btn.btn-seconday:hover::after {
    transform: translateY(0)
}

.tmp-btn.hover-icon-reverse:hover .icon-reverse-wrapper .btn-text {
    transition-delay: .1s;
    transform: translateX(23px)
}

.tmp-btn.hover-icon-reverse:hover .icon-reverse-wrapper .btn-icon {
    opacity: 0;
    transition-delay: 0s;
    transform: translateX(10px)
}

.tmp-btn.hover-icon-reverse:hover .icon-reverse-wrapper .btn-icon+.btn-icon {
    opacity: 1;
    transform: translateX(0);
    transition-delay: .225s
}

.tmp-btn.hover-icon-reverse .icon-reverse-wrapper {
    display: flex;
    align-items: center;
    justify-content: center
}

.tmp-btn.hover-icon-reverse .icon-reverse-wrapper i {
    padding-left: 6px;
    display: inline-block;
    top: 1px;
    position: relative;
    font-size: 16px
}

.tmp-btn.hover-icon-reverse .icon-reverse-wrapper .btn-text {
    display: inline-block;
    transition: transform .6s .125s cubic-bezier(0.1, 0.75, 0.25, 1);
    margin-inline-start: -23px
}

.tmp-btn.hover-icon-reverse .icon-reverse-wrapper .btn-icon {
    display: inline-block;
    transition: opacity .4s .25s, transform .6s .25s;
    transition-timing-function: cubic-bezier(0.1, 0.75, 0.25, 1)
}

.tmp-btn.hover-icon-reverse .icon-reverse-wrapper .btn-icon+.btn-icon {
    margin-inline-end: 0;
    margin-inline-start: 8px;
    display: inline-block;
    margin-inline-start: 0;
    margin-inline-end: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition-delay: 0s;
    order: -2
}

.tmp-btn.hover-icon-reverse .icon-reverse-wrapper .btn-icon+.btn-icon i {
    padding-right: 6px
}

.text-btn {
    color: var(--color-heading-1)
}

.tmp-btn-marquo {
    overflow: hidden;
    padding: 15px 5px
}

.tmp-btn-marquo::before {
    content: "";
    z-index: -1;
    top: 3px;
    left: 3px;
    position: absolute;
    background: transparent;
    width: calc(100% - 6px);
    height: calc(100% - 6px)
}

.tmp-btn-marquo span {
    display: inline-flex;
    position: relative;
    z-index: 3;
    line-height: 1.2;
    animation: btnMarqueeX 2s linear infinite
}

.tmp-btn-marquo span::after {
    content: attr(data-text);
    position: absolute;
    white-space: nowrap;
    top: 50%;
    left: 75%;
    transform: translate(75%, -50%)
}

@keyframes btnMarqueeX {
    100% {
        transform: translateX(-150%)
    }
}

@keyframes rippleBorder {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 1
    }

    75% {
        -webkit-transform: scale(1.9);
        transform: scale(1.9);
        opacity: .5
    }

    100% {
        -webkit-transform: scale(2.3);
        transform: scale(2.3);
        opacity: 0
    }
}

@keyframes rippleBorder_03 {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        opacity: .1
    }

    75% {
        -webkit-transform: scale(1.9);
        transform: scale(1.9);
        opacity: .1
    }

    100% {
        -webkit-transform: scale(2.3);
        transform: scale(2.3);
        opacity: .1
    }
}

.tmp-icon-overlay-link-btn {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    color: var(--color-primary);
    font-size: 14px;
    text-align: center;
    background: 0;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1
}

.tmp-icon-overlay-link-btn.btn-sm {
    min-height: 35px;
    min-width: 35px
}

.tmp-icon-overlay-link-btn.btn-md {
    min-height: 38px;
    min-width: 38px
}

.tmp-icon-overlay-link-btn::after {
    transition: var(--transition);
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--primary-50);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    z-index: -1
}

.tmp-icon-overlay-link-btn i.tmp-icon {
    transition: var(--transition);
    color: var(--color-primary);
    transform: rotate(-45deg)
}

.tmp-icon-overlay-link-btn i.tmp-icon-bottom {
    position: absolute;
    transition: var(--transition);
    transform: translateY(300%) translateX(-475%) rotate(-45deg);
    color: var(--color-white)
}

.tmp-icon-overlay-link-btn .tmp-btn-overlay {
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.tmp-icon-overlay-link-btn:hover {
    background: var(--color-primary);
    border-color: transparent;
    color: var(--color-white)
}

.tmp-icon-overlay-link-btn:hover i.tmp-icon {
    transform: translateY(-300%) translateX(475%)
}

.tmp-icon-overlay-link-btn:hover i.tmp-icon-bottom {
    transform: translateY(0) translateX(0) scale(1.1) rotate(-45deg)
}

.tmp-icon-overlay-link-btn:hover::after {
    background: var(--color-primary);
    border: 2px solid var(--color-primary);
    color: var(--color-white)
}

.tmp-button-overlay-with-text {
    display: flex;
    align-items: center;
    gap: 15px
}

.tmp-button-overlay-with-text.btn-sm .tmp-icon-overlay-link-btn {
    min-height: 35px;
    min-width: 35px
}

.tmp-button-overlay-with-text.btn-sm .tmp-icon-overlay-link-btn i {
    font-size: 14px
}

.tmp-button-overlay-with-text.btn-sm .text-btn {
    font-size: 16px
}

.tmp-button-overlay-with-text.btn-md .tmp-icon-overlay-link-btn {
    min-height: 40px;
    min-width: 40px
}

.tmp-button-overlay-with-text.btn-md .tmp-icon-overlay-link-btn i {
    font-size: 14px
}

.tmp-button-overlay-with-text.btn-md .text-btn {
    font-size: 18px
}

.tmp-button-overlay-with-text .tmp-btn-overlay {
    transition: .3s
}

.tmp-button-overlay-with-text:hover .tmp-btn-overlay {
    background: var(--color-primary)
}

.tmp-button-overlay-with-text .text-btn {
    font-size: 30px;
    line-height: 37px;
    color: var(--color-black);
    font-family: var(--font-secondary);
    font-weight: 500
}

.tmp-button-overlay-with-text:hover {
    background: 0;
    border-color: transparent;
    color: var(--color-white)
}

.tmp-button-overlay-with-text:hover i.tmp-icon {
    transform: translateY(-300%) translateX(475%)
}

.tmp-button-overlay-with-text:hover i.tmp-icon-bottom {
    transform: translateY(0) translateX(0) scale(1.1) rotate(-45deg)
}

.tmp-button-overlay-with-text:hover::after {
    background: var(--color-primary);
    border: 2px solid var(--color-primary);
    color: var(--color-white)
}

header {
    position: relative;
    z-index: 99
}

.header-main-2 {
    position: relative;
    z-index: 1;
    margin: auto
}

.header-main-2 .header-mid-one-wrapper .logo-area::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 585px;
    background: var(--color-heading-1);
    z-index: -1;
    right: 0;
    top: 0;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%)
}

@media only screen and (max-width:991px) {
    .header-main-2 .header-mid-one-wrapper .logo-area::before {
        width: 613px
    }
}

@media only screen and (max-width:576px) {
    .header-main-2 .header-mid-one-wrapper .logo-area::before {
        clip-path: none
    }
}

@media(min-width:1900px) {
    .header-main-2 .header-mid-one-wrapper .logo-area::before {
        width: 350%
    }
}

.header-mid-one-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative
}

.header-mid-one-wrapper .logo-area {
    flex-basis: 22%;
    padding: 21px 0 21px;
    position: relative;
    z-index: 1
}

.header-mid-one-wrapper .logo-area::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 108%;
    background: var(--color-primary);
    bottom: 0;
    right: -10px;
    z-index: -1;
    clip-path: polygon(92% 0, 100% 0, 73% 100%, 65% 100%)
}

@media(max-width:1900px) {
    .header-mid-one-wrapper .logo-area::after {
        clip-path: polygon(92% 0, 101% 0, 84% 100%, 75% 100%)
    }
}

@media only screen and (max-width:1199px) {
    .header-mid-one-wrapper .logo-area::after {
        display: none
    }
}

@media only screen and (max-width:991px) {
    .header-mid-one-wrapper .logo-area::after {
        display: block
    }
}

@media only screen and (max-width:1199px) {
    .header-mid-one-wrapper .nav-area {
        display: none
    }
}

.header-mid-one-wrapper .header-right {
    display: flex;
    align-items: center;
    flex-basis: 25%;
    gap: 40px;
    justify-content: end
}

.header-mid-one-wrapper .header-right .single-component {
    display: flex;
    align-items: center
}

.header-mid-one-wrapper .header-right .single-component .icon {
    margin-right: 15px
}

.header-mid-one-wrapper .header-right .single-component .icon i {
    display: block;
    width: 45px;
    height: 45px;
    background: #fff;
    box-shadow: 0 4px 24px #dde2eb;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #0c0a0a;
    font-weight: 500;
    font-size: 20px
}

.header-mid-one-wrapper .header-right .single-component a.tmp-btn {
    display: flex;
    align-items: center
}

@media only screen and (max-width:576px) {
    .header-mid-one-wrapper .header-right .single-component a.tmp-btn {
        display: none
    }
}

.header-mid-one-wrapper .header-right .single-component a.tmp-btn svg {
    margin-left: 6px;
    margin-top: 3px
}

.header-mid-one-wrapper .header-right .single-component .menu-area {
    margin-left: 20px
}

.header-mid-one-wrapper .header-right .single-component .menu-area .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background: var(--color-primary);
    border-radius: 2px
}

.header-mid-one-wrapper .header-right .single-component .menu-area svg rect {
    fill: #fff
}

.nav-area ul {
    padding: 0;
    margin: 0
}

.nav-area ul li {
    margin: 0
}

.nav-area ul li a {
    font-family: var(--font-primary);
    color: var(--color-heading-1);
    font-weight: 700;
    letter-spacing: .02em;
    font-size: 16px;
    line-height: 24px
}

.nav-area nav ul {
    display: flex;
    align-items: center;
    gap: 40px
}

.nav-area nav ul li {
    margin: 0
}

.tmp-banner-four-area {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 2
}

header {
    position: relative;
    z-index: 99
}

.social-wrapper-1 {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 20px
}

.social-wrapper-1 li {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative
}

.social-wrapper-1 li a {
    color: var(--color-white);
    font-family: var(--font-primary);
    font-weight: 600;
    transition: .3s
}

.social-wrapper-1 li a:hover {
    color: var(--color-primary)
}

.social-wrapper-1.hover-bg-white {
    gap: 0
}

.social-wrapper-1.hover-bg-white li a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1
}

.social-wrapper-1.hover-bg-white li a::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--color-white);
    transform: scale(0.5);
    opacity: 0;
    transition: .3s;
    border-radius: 100%;
    border: 2px solid var(--color-white)
}

.social-wrapper-1.hover-bg-white li a:hover::after {
    transform: scale(1);
    opacity: 1
}

.social-wrapper-1.ml_-10 {
    margin-left: -10px
}

header {
    position: relative;
    z-index: 99
}

header.header-seven .header-mid-one-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px
}

header.header-seven .header-mid-one-wrapper .logo-area {
    flex-basis: 20%;
    padding: 16px 0 21px;
    position: relative;
    z-index: 1;
    overflow: hidden
}

@media only screen and (max-width:1199px) {
    header.header-seven .header-mid-one-wrapper .logo-area {
        flex-basis: 100%
    }
}

@media only screen and (max-width:576px) {
    header.header-seven .header-mid-one-wrapper .logo-area {
        padding: 10px 0 10px
    }
}

header.header-seven .header-mid-one-wrapper .logo-area::after {
    display: none
}

header.header-seven .header-mid-one-wrapper .header-right {
    display: flex;
    align-items: center;
    flex-basis: 25%;
    gap: 30px;
    justify-content: end
}

header.header-seven .header-mid-one-wrapper .header-right .single-component {
    display: flex;
    align-items: center
}

header.header-seven .header-mid-one-wrapper .header-right .single-component .icon {
    margin-right: 15px
}

header.header-seven .header-mid-one-wrapper .header-right .single-component .icon i {
    display: block;
    width: 45px;
    height: 45px;
    background: #fff;
    box-shadow: 0 4px 24px #dde2eb;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #0c0a0a;
    font-weight: 500;
    font-size: 20px
}

header.header-seven .header-mid-one-wrapper .header-right .single-component a.tmp-btn {
    display: flex;
    align-items: center
}

@media only screen and (max-width:576px) {
    header.header-seven .header-mid-one-wrapper .header-right .single-component a.tmp-btn {
        display: none
    }
}

header.header-seven .header-mid-one-wrapper .header-right .single-component a.tmp-btn svg {
    margin-left: 6px;
    margin-top: 3px
}

header.header-seven .header-mid-one-wrapper .header-right .single-component .menu-area {
    margin-left: 20px
}

header.header-seven .header-mid-one-wrapper .header-right .single-component .menu-area .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background: var(--color-primary-2);
    border-radius: 50% !important
}

@media only screen and (max-width:1199px) {
    header.header-seven .header-mid-one-wrapper .header-right .single-component .menu-area .icon {
        height: 45px;
        width: 45px
    }
}

@media only screen and (max-width:767px) {
    header.header-seven .header-mid-one-wrapper .header-right .single-component .menu-area .icon {
        height: 40px;
        width: 40px
    }
}

header.header-seven .header-mid-one-wrapper .header-right .single-component .menu-area svg rect {
    fill: #fff
}

header.header-seven .header-main-2::after {
    display: none
}

@media only screen and (max-width:991px) {
    body.home-inner .header-mid-one-wrapper .logo-area {
        flex-basis: 49% !important
    }
}

header {
    position: relative;
    z-index: 99
}

.logo-area.shape-none::before {
    display: none !important
}

.header--sticky.sticky {
    position: fixed !important;
    top: 0;
    display: block;
    z-index: 50;
    width: 100%;
    background: #fff;
    box-shadow: 0 7px 18px rgba(24, 16, 16, 0.0509803922);
    animation: headerSticky .75s ease forwards
}

@keyframes headerSticky {
    0% {
        transform: translateY(-100%)
    }

    100% {
        transform: translateY(0)
    }
}

.modal-backdrop.show {
    opacity: 1
}

.modal-backdrop {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px)
}

header.header-center-short.header-seven {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    box-shadow: none;
    background: transparent
}

header.header-center-short.header-seven.narrow .header-mid-one-wrapper {
    top: 10px;
    border-radius: 6px;
    padding: 0 25px
}

header.header-center-short.header-seven .header-mid-one-wrapper {
    background: var(--color-white);
    border-radius: 0 0 6px 6px
}

header.header-center-short.header-seven.sticky {
    left: auto;
    transform: translateX(-50%)
}

header.header-center-short.header-seven.sticky .header-mid-one-wrapper {
    border-radius: 6px;
    top: 10px;
    box-shadow: var(--shadow-1)
}

.mobile-menu nav ul {
    padding: 0
}

.mobile-menu nav ul li {
    margin: 0;
    padding: 0
}

.mobile-menu nav ul li a.main {
    padding: 10px 0;
    border-bottom: 1px dashed var(--color-border);
    cursor: pointer
}

.mobile-menu nav ul li.has-droupdown {
    position: relative
}

.mobile-menu nav ul li.has-droupdown .submenu {
    padding-left: 14px
}

.mobile-menu nav ul li.has-droupdown ul li {
    padding: 10px 0 !important;
    border-bottom: 1px dashed var(--color-border)
}

.mobile-menu nav ul li.has-droupdown ul li:last-child {
    border-bottom: 0
}

.mobile-menu nav ul li.has-droupdown>a {
    position: relative
}

.mobile-menu nav ul li.has-droupdown>a::after {
    position: absolute;
    content: "+";
    font-family: "Font Awesome 6 pro" !important;
    font-size: 16px;
    right: 0;
    font-weight: 400;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-body);
    pointer-events: none;
    cursor: pointer
}

.mobile-menu nav ul li.has-droupdown.mm-active>a::after {
    content: ""
}

.mobile-menu nav ul li a {
    display: block
}

.breadcrumb-style-1 {
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../portfolio-og-cover.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin: 15px 15px 0 15px;
    border-radius: 16px
}

@media only screen and (max-width:576px) {
    .breadcrumb-style-1 {
        height: 350px
    }
}

.breadcrumb-style-1::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: var(--color-primary);
    mix-blend-mode: multiply;
    z-index: -1
}

.breadcrumb-style-1 .inner-content {
    padding-top: 70px;
    text-align: center
}

.breadcrumb-style-1 .inner-content .title {
    color: var(--color-white)
}

.breadcrumb-style-1 .inner-content .page-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px
}

.breadcrumb-style-1 .inner-content .page-breadcrumb li a {
    color: var(--color-white)
}

.breadcrumb-style-1 .inner-content .page-breadcrumb li a i {
    margin-right: 10px;
    font-size: 18px
}

.breadcrumb-style-1 .inner-content .page-breadcrumb li span.dot {
    display: block;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background: var(--color-primary)
}

.offcanvas-trigger {
    display: block;
    color: var(--color-heading-1);
    position: relative;
    cursor: pointer;
    font-size: .25em;
    line-height: 1
}

.offcanvas-trigger .offcanvas-bars {
    display: inline-block;
    width: 21px;
    margin: 0;
    vertical-align: middle;
    height: 20px
}

.offcanvas-trigger .offcanvas-bars span {
    display: inline-block;
    height: 2px;
    margin-left: 0;
    -webkit-transform-origin: left center;
    transform-origin: left center;
    background-color: var(--color-heading-1);
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 5px;
    background-color: transparent;
    transition: transform .3s, opacity .3s, width .3s, background-color .3s .3s, -webkit-transform .3s;
    border-radius: 1px
}

@media only screen and (max-width:767px) {
    .offcanvas-trigger .offcanvas-bars span {
        margin-bottom: 4px
    }
}

.offcanvas-trigger .offcanvas-bars span::before,
.offcanvas-trigger .offcanvas-bars span::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--color-heading-1)
}

.offcanvas-trigger .offcanvas-bars span::before {
    transform: translate(-100%, 0);
    transition: all .325s cubic-bezier(0.38, 0.98, 0.4, 1)
}

.offcanvas-trigger .offcanvas-bars span::after {
    transition: all .325s cubic-bezier(0.38, 0.98, 0.4, 1)
}

.offcanvas-trigger:hover .offcanvas-bars span::before {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
}

.offcanvas-trigger:hover .offcanvas-bars span::after {
    -webkit-transform: translate(100%, 0);
    transform: translate(100%, 0)
}

.offcanvas-trigger:hover .offcanvas-bars span:first-child::before {
    -webkit-transition-delay: .18s;
    transition-delay: .18s
}

.offcanvas-trigger:hover .offcanvas-bars span:nth-child(2)::before {
    -webkit-transition-delay: .24s;
    transition-delay: .24s
}

.offcanvas-trigger:hover .offcanvas-bars span:nth-child(2)::after {
    -webkit-transition-delay: .06s;
    transition-delay: .06s
}

.offcanvas-trigger:hover .offcanvas-bars span:last-child::before {
    -webkit-transition-delay: .3s;
    transition-delay: .3s
}

.offcanvas-trigger:hover .offcanvas-bars span:last-child::after {
    -webkit-transition-delay: .12s;
    transition-delay: .12s
}

.side-bar {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: -100%;
    width: 510px;
    padding: 40px 30px;
    padding-top: 50px;
    height: 100%;
    display: block;
    background-color: white;
    z-index: 111111;
    transition: all 600ms ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow: visible;
    border-radius: 10px 0 0 10px
}

@media only screen and (max-width:991px) {
    .side-bar {
        width: 50%
    }
}

@media only screen and (max-width:767px) {
    .side-bar {
        width: 70%
    }
}

@media only screen and (max-width:576px) {
    .side-bar {
        width: 320px
    }
}

.side-bar .inner-main-wrapper-desk .thumbnail {
    display: flex;
    justify-content: center
}

.side-bar .inner-main-wrapper-desk .thumbnail img {
    width: 85%;
    margin: auto
}

.side-bar .inner-main-wrapper-desk .inner-content {
    text-align: center;
    margin-top: 30px
}

.side-bar .inner-main-wrapper-desk .inner-content p {
    max-width: 95%;
    text-align: center;
    margin: auto
}

.side-bar .inner-main-wrapper-desk .inner-content .title {
    font-weight: 600
}

.side-bar .inner-main-wrapper-desk .inner-content .footer {
    padding-top: 50px;
    margin-top: 80px;
    border-top: 1px solid #c2c2c2
}

.side-bar .inner-main-wrapper-desk .inner-content .footer .title {
    font-weight: 500
}

.side-bar .inner-main-wrapper-desk .inner-content .footer a.tmp-btn {
    margin: auto
}

.side-bar .inner-main-wrapper-desk.style-one-sidebar .header-area-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.side-bar .inner-main-wrapper-desk.style-one-sidebar .header-area-wrapper .logo {
    max-width: 140px;
    display: block
}

.side-bar .inner-main-wrapper-desk.style-one-sidebar .header-area-wrapper .close-icon-menu {
    position: relative;
    max-width: max-content;
    margin: 0;
    color: #000;
    height: 50px;
    width: 50px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 14px;
    margin-top: 0;
    font-size: 27px;
    background: #f6f6f6;
    border-radius: 100%
}

.side-bar .inner-main-wrapper-desk.style-one-sidebar .header-area-wrapper .close-icon-menu i {
    margin-top: 0;
    margin: 0;
    font-size: 18px;
    transition: .3s
}

.side-bar .inner-main-wrapper-desk.style-one-sidebar .header-area-wrapper .close-icon-menu:hover i {
    transform: scale(1.2);
    color: var(--color-white)
}

.side-bar .inner-main-wrapper-desk.style-one-sidebar .header-bottom-qhick-action {
    margin-top: 20px
}

.side-bar .inner-main-wrapper-desk.style-one-sidebar .header-bottom-qhick-action p.disc {
    font-size: 18px;
    padding-right: 18%;
    margin-bottom: 0;
    padding-bottom: 35px;
    border-bottom: 1px dashed #e7e7e7
}

.side-bar .inner-main-wrapper-desk.style-one-sidebar .header-bottom-qhick-action .info-list-wrapper {
    margin-top: 25px;
    padding-bottom: 25px;
    border-bottom: 1px dashed #e7e7e7
}

.side-bar .inner-main-wrapper-desk.style-one-sidebar .header-bottom-qhick-action .info-list-wrapper ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 30px
}

.side-bar .inner-main-wrapper-desk.style-one-sidebar .header-bottom-qhick-action .info-list-wrapper ul li {
    margin: 0;
    padding: 0
}

.side-bar .inner-main-wrapper-desk.style-one-sidebar .header-bottom-qhick-action .info-list-wrapper ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-heading-1)
}

.side-bar .inner-main-wrapper-desk.style-one-sidebar .header-bottom-qhick-action .info-list-wrapper ul li a i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background: #f6f6f6;
    font-size: 14px;
    color: var(--color-primary)
}

.side-bar.show {
    right: 0;
    overflow-y: auto
}

.side-bar button {
    max-width: max-content;
    margin-right: auto;
    margin-left: -53px;
    margin-top: 0;
    position: absolute;
    border: 0
}

.side-bar button i {
    color: #000;
    height: 40px;
    min-width: 40px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 43px;
    margin-top: -37px;
    font-size: 20px;
    border-radius: 50%;
    position: relative;
    background: #f6f6f6;
    z-index: 1
}

.side-bar button i::after {
    position: absolute;
    top: 50%;
    left: 50%;
    content: "";
    transform: translate(-50%, -50%) scale(0.2);
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    z-index: -1;
    opacity: 0;
    transition: .3s;
    border-radius: 50%
}

.side-bar button i:hover {
    color: var(--color-white)
}

.side-bar button i:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1
}

.offcanvas-search {
    padding: 40px 0;
    height: max-content !important;
    z-index: 99999;
    background-color: var(--color-white);
    visibility: hidden;
    overflow-y: scroll;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: all .2s ease-in-out, clip-path .4s ease-in-out
}

.offcanvas-search.offcanvas.show {
    visibility: visible !important;
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    display: block
}

.offcanvas-search .tmp-container {
    max-width: 1440px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px
}

.offcanvas-search .title {
    margin-bottom: 16px;
    font-size: 24px
}

.offcanvas-search .list {
    gap: 12px 20px
}

@media only screen and (max-width:576px) {
    .offcanvas-search .list {
        gap: 8px
    }
}

.offcanvas-search .list a {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 0 20px;
    border: 1px solid #e9e9e9;
    border-radius: 33px;
    color: var(--color-heading-1)
}

@media only screen and (max-width:576px) {
    .offcanvas-search .list a {
        padding: 0 10px;
        height: 30px;
        font-size: 14px
    }
}

.offcanvas-search .list a:hover {
    background-color: var(--color-heading-1);
    color: var(--color-white);
    border-color: var(--color-heading-1)
}

.offcanvas-search .btn-close-search {
    position: absolute;
    right: 20px;
    top: 20px;
    background-color: unset;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    color: var(--color-heading-1);
    width: unset;
    border: 0;
    height: 45px;
    width: 45px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 22px rgba(0, 0, 0, 0.06)
}

@media only screen and (max-width:576px) {
    .offcanvas-search .btn-close-search {
        right: 9px;
        top: 9px
    }
}

.offcanvas-search .btn-close-search i {
    font-size: 16px
}

.offcanvas-search .btn-close-search:hover {
    transform: rotate(-180deg)
}

@media(min-width:768px) {
    .offcanvas-search .wrap-form {
        margin-bottom: 40px
    }
}

@media only screen and (max-width:767px) {
    .offcanvas-search .wrap-form {
        margin-bottom: 20px
    }
}

.offcanvas-search .wrap-form form {
    position: relative;
    z-index: 30
}

.offcanvas-search .tmp-line {
    display: block;
    width: 100%;
    height: 1px;
    margin: 24px 0
}

.offcanvas-search .form-search fieldset {
    border: 0;
    margin: 0;
    padding: 0
}

.offcanvas-search .form-search fieldset input {
    border-radius: 70px;
    outline: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    width: 100%;
    padding: 10px 14px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    background-color: var(--color-white);
    border: 2px solid #e9e9e9;
    color: var(--color-heading-1);
    overflow: hidden;
    margin-bottom: 0
}

.offcanvas-search .form-search fieldset input:focus {
    border-color: var(--color-primary)
}

@media(min-width:768px) {
    .offcanvas-search .form-search fieldset input {
        height: 60px
    }
}

.offcanvas-search .form-search .btn-submit1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 8px
}

@media(max-width:576px) {
    .offcanvas-search .form-search .btn-submit1 {
        right: 0 !important
    }
}

@media only screen and (max-width:767px) {
    .offcanvas-search .form-search .btn-submit1 {
        right: 0
    }
}

@media only screen and (max-width:576px) {
    .offcanvas-search .form-search .btn-submit1 {
        right: 0
    }
}

.offcanvas-search .form-search .btn-submit1 .tmp-btn {
    border: 0
}

.tmp-grid-layout {
    display: grid;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap
}

.offcanvas-search .tmp-line {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #e9e9e9;
    margin: 25px 0
}

.side-bar .inner-main-wrapper-desk.style-one-sidebar .header-area-wrapper .logo.logo-yellow {
    display: none
}

.tmp-about-area {
    position: relative;
    z-index: 1
}

@media only screen and (max-width:1199px) {
    .tmp-about-area {
        padding-bottom: 120px !important
    }
}

@media only screen and (max-width:991px) {
    .tmp-about-area {
        padding-bottom: 70px !important
    }
}

.tmp-about-area.area-4 .left-side-content .desc {
    max-width: 527px;
    margin-bottom: 15px
}

.tmp-about-area.area-4 .left-side-content .about-feature-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 85%
}

@media only screen and (max-width:991px) {
    .tmp-about-area.area-4 .left-side-content .about-feature-list {
        max-width: 100%
    }
}

.tmp-about-area.area-4 .left-side-content .about-feature-list .single {
    display: flex;
    align-items: center;
    padding: 10px 0;
    gap: 18px
}

@media only screen and (max-width:991px) {
    .tmp-about-area.area-4 .left-side-content .about-feature-list .single {
        max-width: max-content
    }
}

.tmp-about-area.area-4 .left-side-content .about-feature-list .single:not(:last-child) {
    border-bottom: 1px solid rgba(217, 217, 217, 0.32)
}

.tmp-about-area.area-4 .left-side-content .about-feature-list .single .icon {
    width: 25px;
    min-width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--primary-50);
    display: block;
    text-align: center;
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center
}

.tmp-about-area.area-4 .left-side-content .about-feature-list .single .icon i {
    color: var(--color-primary)
}

.tmp-about-area.area-4 .left-side-content .about-feature-list .single span {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-body);
    font-family: var(--font-secondary)
}

.tmp-about-area.area-4 .left-side-content .button-area-about {
    display: flex;
    align-items: center;
    gap: 20px;
    transition-delay: 2s;
    margin-top: 40px
}

@media only screen and (max-width:576px) {
    .tmp-about-area.area-4 .left-side-content .button-area-about {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start
    }
}

.tmp-about-area.area-4 .left-side-content .button-area-about .tmp-btn {
    font-family: var(--font-primary);
    font-weight: 700;
    padding: 21px 33px;
    display: flex;
    align-items: center;
    gap: 10px
}

.tmp-about-area.area-4 .left-side-content .button-area-about .text-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--color-heading-1);
    transition: .3s
}

.tmp-about-area.area-4 .left-side-content .button-area-about .text-btn:hover {
    color: var(--color-primary)
}

.about-image-area3 {
    position: relative;
    z-index: 1
}

@media only screen and (max-width:991px) {
    .about-image-area3 img {
        width: 100%
    }
}

.about-image-area3 .counter-area {
    background: var(--color-white);
    box-shadow: 0 4px 21px rgba(0, 0, 0, 0.07);
    border-radius: 6px;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    padding: 20px 30px
}

@media only screen and (max-width:576px) {
    .about-image-area3 .counter-area {
        top: 11px;
        left: 11px
    }
}

.tmp-about-area5 {
    position: relative;
    z-index: 1;
    padding-bottom: 220px
}

@media only screen and (max-width:767px) {
    .tmp-about-area5 {
        padding-bottom: 140px
    }
}

.tmp-about-area5 .section-title-area-3 {
    position: relative;
    z-index: 2
}

.tmp-about-area5 .section-inner {
    position: relative;
    z-index: 1
}

.cg {
    color: var(--color-primary-2) !important
}

.cg::after {
    background: var(--color-primary-2) !important
}

.tmp-career-area {
    background: rgba(135, 171, 66, 0.05)
}

.tmp-solar-energy-area {
    position: relative;
    z-index: 1
}

.tmp-solar-energy-area .section-inner {
    margin-top: 60px
}

.tmp-faq-area.career .section-title-area-3 p.desc {
    max-width: 60%;
    margin: auto;
    text-align: center
}

@media only screen and (max-width:767px) {
    .tmp-faq-area.career .section-title-area-3 p.desc {
        max-width: 100%
    }
}

.tmp-faq-area.career .section-inner {
    margin-top: 60px
}

.tmp-faq-area.career .section-inner .accordion-one .accordion-item {
    padding-bottom: 0;
    margin-bottom: 20px;
    border: 0
}

.tmp-faq-area.career .section-inner .accordion-one .accordion-item:last-child {
    margin-bottom: 0
}

.tmp-faq-area.career .section-inner .accordion-one .accordion-item h2 {
    margin-bottom: 0
}

.tmp-faq-area.career .section-inner .accordion-one .accordion-item h2 button {
    padding: 18px 30px 17px;
    border-radius: 33px;
    color: var(--color-heading-1);
    background: #f4f4f4
}

@media only screen and (max-width:576px) {
    .tmp-faq-area.career .section-inner .accordion-one .accordion-item h2 button {
        padding: 16px 15px 17px
    }
}

.tmp-faq-area.career .section-inner .accordion-one .accordion-item .accordion-body {
    margin-left: 30px;
    padding-top: 20px
}

@media only screen and (max-width:576px) {
    .tmp-faq-area.career .section-inner .accordion-one .accordion-item .accordion-body {
        margin-left: 5px
    }
}

.tmp-faq-area.career .section-inner .accordion-one .accordion-item .accordion-body p.desc {
    font-size: 16px
}

.tmp-faq-area.career .section-inner .accordion-one .accordion-item .accordion-body p.desc:not(:last-child) {
    margin-bottom: 10px
}

.tmp-faq-area.career .section-inner .accordion-one .accordion-item h2 button[aria-expanded=true] {
    color: var(--color-white);
    background: var(--primary-700)
}

.tmp-faq-area.career .section-inner .accordion-one .accordion-item h2 button[aria-expanded=true]::after {
    margin-top: 0
}

.tmp-social-area ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 60px
}

.tmp-social-area ul li {
    font-size: 38px
}

.tmp-social-area ul li a {
    width: 58px;
    height: 58px;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-100);
    border-radius: 50%;
    position: relative;
    z-index: 1
}

.tmp-social-area ul li a::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--color-primary);
    transform: scale(0.5);
    opacity: 0;
    transition: .3s;
    border-radius: 100%;
    border: 2px solid var(--color-primary)
}

.tmp-social-area ul li a i {
    font-size: 22px
}

.tmp-social-area ul li a:hover i {
    color: var(--color-white)
}

.tmp-social-area ul li a:hover::after {
    transform: scale(1);
    opacity: 1
}

.tmp-application-form-area {
    margin-top: 50px;
    display: flex;
    align-items: center;
    background: var(--color-white);
    gap: 70px;
    padding-right: 40px;
    box-shadow: var(--shadow-1);
    border-radius: 6px;
    overflow: hidden
}

@media only screen and (max-width:991px) {
    .tmp-application-form-area {
        padding: 20px
    }
}

@media only screen and (max-width:767px) {
    .tmp-application-form-area {
        padding: 20px
    }
}

.tmp-timeline-area .section-inner {
    position: relative;
    z-index: 1
}

.tmp-timeline-area .section-inner::after {
    content: "";
    position: absolute;
    background: rgba(135, 171, 66, 0.1);
    width: 100%;
    height: 1px;
    top: 75px;
    left: 0;
    z-index: -1
}

.about-card-new {
    padding: 35px 30px;
    background: var(--color-white);
    box-shadow: 0 6px 34px rgba(215, 216, 222, 0.41);
    height: 100%;
    border-radius: 4px
}

.about-card-new .content {
    margin-top: 190px
}

@media only screen and (min-width:1200px) and (max-width:1599px) {
    .about-card-new .content {
        margin-top: 120px
    }
}

@media only screen and (max-width:1199px) {
    .about-card-new .content {
        margin-top: 58px
    }
}

.about-card-new p.desc {
    margin-bottom: 10px;
    font-size: 24px;
    color: var(--color-heading-1);
    font-weight: 500
}

.about-card-new .title {
    font-size: 80px;
    font-weight: 700;
    margin-bottom: 0
}

.about-card-new:hover .icon svg {
    animation: bounceIn .8s ease
}

.hover-grascale img {
    filter: grayscale(0.5);
    transition: .3s
}

.hover-grascale:hover img {
    filter: grayscale(0)
}

.tmp-banner-one {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: linear-gradient(3deg, #fff 0, #ffeee3 100%)
}

.tmp-banner-one::after {
    position: absolute;
    content: "";
    z-index: -1;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    top: 0;
    left: 0;
    opacity: .5;
    display: none
}

@media only screen and (max-width:1199px) {
    .tmp-banner-one::after {
        display: block
    }
}

@media only screen and (max-width:767px) {
    .tmp-banner-one::after {
        opacity: 1
    }
}

.tmp-banner-slider-area {
    position: relative;
    z-index: 10
}

.custom-overfolow-btn {
    position: relative;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    overflow: hidden
}

.custom-overfolow-btn i {
    position: absolute;
    top: 50%;
    left: 50%;
    overflow: hidden;
    margin-top: -8px;
    margin-left: -8px;
    z-index: 1;
    font-size: 16px
}

.custom-overfolow-btn i.invers-icon-top {
    position: absolute;
    transition: transform .4s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform .4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transform: translateX(300%)
}

.custom-overfolow-btn .invers-icon {
    transition: transform .4s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform .4s cubic-bezier(0.785, 0.135, 0.15, 0.86)
}

.swiper-button-next .custom-overfolow-btn i.invers-icon-top,
.swiper-button-next2 .custom-overfolow-btn i.invers-icon-top,
.swiper-button-next3 .custom-overfolow-btn i.invers-icon-top,
.slide-next .custom-overfolow-btn i.invers-icon-top {
    transform: translateX(-300%)
}

.swiper-button-next:hover i.invers-icon,
.swiper-button-next2:hover i.invers-icon,
.swiper-button-next3:hover i.invers-icon,
.slide-next:hover i.invers-icon {
    transform: translateX(300%)
}

.swiper-button-next:hover i.invers-icon-top,
.swiper-button-next2:hover i.invers-icon-top,
.swiper-button-next3:hover i.invers-icon-top,
.slide-next:hover i.invers-icon-top {
    transform: translateX(0)
}

.swiper-button-prev:hover i.invers-icon,
.swiper-button-prev2:hover i.invers-icon,
.swiper-button-prev3:hover i.invers-icon,
.slide-prev:hover i.invers-icon {
    transform: translateX(-300%)
}

.swiper-button-prev:hover i.invers-icon-top,
.swiper-button-prev2:hover i.invers-icon-top,
.swiper-button-prev3:hover i.invers-icon-top,
.slide-prev:hover i.invers-icon-top {
    transform: translateX(0)
}

.tmp-banner-main-area-swiper {
    position: relative
}

.tmp-banner-main-area-swiper .swiper-pagination {
    position: absolute;
    bottom: 0;
    right: 0
}

.tmp-banner-main-area-swiper .swiper-pagination {
    position: absolute;
    bottom: 0;
    right: 0;
    width: auto !important;
    left: auto !important;
    margin: 0
}

@media only screen and (max-width:576px) {
    .tmp-banner-main-area-swiper .swiper-pagination {
        display: none
    }
}

.tmp-banner-main-area-swiper .swiper-pagination-bullet {
    padding: 40px 80px;
    border-radius: 0;
    width: auto;
    height: 30px;
    text-align: center;
    line-height: 4px;
    font-weight: 600;
    font-size: 14px;
    color: #000;
    opacity: 1;
    text-transform: uppercase;
    background: #fff;
    letter-spacing: .05em;
    margin: 0 !important
}

@media only screen and (max-width:1199px) {
    .tmp-banner-main-area-swiper .swiper-pagination-bullet {
        padding: 30px
    }
}

@media only screen and (max-width:767px) {
    .tmp-banner-main-area-swiper .swiper-pagination-bullet {
        padding: 20px 10px;
        font-size: 13px
    }
}

.tmp-banner-main-area-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
    position: relative
}

.tmp-banner-main-area-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    position: absolute;
    left: 50%;
    bottom: 25px;
    content: "";
    height: 1px;
    background: #0c0a0a;
    width: 51%;
    transform: translateX(-50%)
}

@media only screen and (max-width:1199px) {
    .tmp-banner-main-area-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
        display: none
    }
}

.tmp-banner-main-area-swiper .swiper-pagination-bullet-active {
    color: #000;
    background: #fff
}

@media only screen and (max-width:1199px) {
    .tmp-banner-main-area-swiper .swiper-pagination-bullet-active {
        color: var(--color-primary)
    }
}

.tmp-banner-three-area {
    background: #151515;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.tmp-banner-three-area .tmp-to-bottom-start {
    position: absolute;
    bottom: -70px;
    left: 15px
}

.tmp-banner-three-area .tmp-to-bottom-start::after {
    position: absolute;
    content: "";
    height: 7px;
    width: 2px;
    background: #fff;
    left: 47%;
    top: 30%;
    transform: translate(-50%, -30%);
    animation: jump-5 3s linear infinite
}

.tmp-banner-area-two {
    position: relative;
    max-width: 1920px;
    margin: auto
}

.tmp-banner-slider-area2 {
    position: relative;
    z-index: 1
}

@media only screen and (max-width:576px) {
    .tmp-banner-slider-area2 {
        padding-top: 80px
    }
}

.tmp-banner-slider-area2::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    max-width: 526px;
    right: 0;
    top: 0;
    z-index: -1;
    background: var(--color-primary-2)
}

.tmp-banner-slider-area3 {
    padding: 210px 0 120px;
    background: var(--primary-100)
}

@media only screen and (max-width:767px) {
    .tmp-banner-slider-area3 {
        padding: 140px 0 60px 0 !important
    }
}

@media only screen and (max-width:576px) {
    .tmp-banner-slider-area3 {
        padding: 110px 0 60px 0 !important
    }
}

@-webkit-keyframes fadeInDownslideshow {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -40px, 0);
        transform: translate3d(0, -40px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInDownslideshow {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -40px, 0);
        transform: translate3d(0, -40px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@media only screen and (max-width:767px) {
    .section-title-area-4 {
        flex-wrap: wrap
    }
}

@-webkit-keyframes textrotate {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0);
        transform: translate(-50%, -50%) rotate(0)
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

@keyframes textrotate {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0);
        transform: translate(-50%, -50%) rotate(0)
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

@media only screen and (max-width:576px) {
    br {
        display: none
    }
}

.tmp-brand-area.area-5 {
    background: var(--primary-50)
}

@keyframes bounceIn {

    0%,
    20%,
    40%,
    60%,
    80%,
    100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3)
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }

    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03)
    }

    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97)
    }

    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

.tmp-social-wrapper-three ul {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin-top: 34px
}

.tmp-social-wrapper-three ul li {
    margin: 0;
    padding: 0
}

.tmp-social-wrapper-three ul li a i {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: block;
    background: #22282c;
    color: #fff;
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    justify-content: center;
    transition: .3s
}

.tmp-social-wrapper-three ul li a:hover i {
    background: var(--color-primary)
}

.social-share-wrapper-1 .short-title {
    display: block;
    font-size: 12px;
    padding-bottom: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 6px;
    border-bottom: 1px dashed var(--color-border)
}

.social-share-wrapper-1 .social-stylle-one {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
    justify-content: center;
    margin: -5px
}

.social-share-wrapper-1 .social-stylle-one li {
    margin: 5px
}

.social-share-wrapper-1 .social-stylle-one li a {
    width: 48px;
    background-color: transparent;
    height: 48px;
    line-height: 45px;
    text-align: center;
    display: inline-block;
    border-radius: 100%;
    transition: .3s;
    color: var(--color-body);
    z-index: 2;
    position: relative;
    line-height: 41px;
    background: transparent;
    border: 2px solid var(--color-border)
}

.social-share-wrapper-1 .social-stylle-one li a i {
    vertical-align: middle
}

.social-share-wrapper-1 .social-stylle-one li a::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--color-primary);
    transform: scale(0.5);
    opacity: 0;
    transition: .3s;
    border-radius: 100%;
    border: 2px solid var(--color-primary)
}

.social-share-wrapper-1 .social-stylle-one li a:hover {
    border-color: transparent !important
}

.social-share-wrapper-1 .social-stylle-one li a:hover i {
    color: #fff
}

.social-share-wrapper-1 .social-stylle-one li a:hover::after {
    transform: scale(1);
    opacity: 1
}

.tmp-project-area.two .section-inner {
    padding: 0 55px
}

@media only screen and (max-width:1199px) {
    .tmp-project-area.two .section-inner {
        padding: 0 20px
    }
}

.tmp-project-area.three {
    position: relative;
    z-index: 1
}

.tmp-project-area.three .shape-area img {
    position: absolute;
    z-index: 1;
    z-index: -1
}

.tmp-project-area.three .shape-area img:nth-child(1) {
    left: 0;
    top: 0
}

.tmp-project-area.three .shape-area img:nth-child(2) {
    right: 0;
    bottom: 0
}

.accordion-one .accordion-item {
    background: transparent;
    border: 0;
    box-shadow: none;
    border-bottom: 1px solid rgba(217, 217, 217, 0.3882352941);
    margin-bottom: 20px;
    padding-bottom: 20px
}

.accordion-one .accordion-item h2 {
    border: 0;
    box-shadow: none;
    padding: 0;
    margin-bottom: 10px;
    background: transparent
}

.accordion-one .accordion-item h2 button {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #0c0a0a;
    border: 0;
    background: transparent;
    padding: 0
}

@media only screen and (max-width:576px) {
    .accordion-one .accordion-item h2 button {
        font-size: 18px;
        line-height: 1.4;
        align-items: flex-start !important
    }
}

.accordion-one .accordion-item h2 button::after {
    background-image: none;
    content: "";
    font-family: "Font Awesome 5 Pro";
    height: unset;
    width: unset;
    font-size: 14px
}

.accordion-one .accordion-item h2 button[aria-expanded=true] {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    color: var(--color-primary)
}

.accordion-one .accordion-item h2 button[aria-expanded=true]::after {
    background-image: none;
    content: "";
    transform: none;
    font-family: "Font Awesome 5 Pro";
    margin-top: -17px
}

@media only screen and (max-width:576px) {
    .accordion-one .accordion-item h2 button[aria-expanded=true]::after {
        margin-top: 0
    }
}

.accordion-one .accordion-item h2 button:focus {
    box-shadow: none
}

.accordion-one .accordion-item .accordion-body {
    padding: 0
}

.accordion-one .accordion-item .accordion-body p.desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px
}

.accordion-one .accordion-item:last-child {
    border: 0;
    margin-bottom: 0
}

.tmp-trending-area .section-inner .swiper-btn {
    transform: translateY(-50%);
    font-size: 22px;
    background: #fff;
    box-shadow: 0 5px 22px rgba(0, 0, 0, 0.06);
    width: 60px;
    height: 60px;
    line-height: 62px;
    display: block;
    text-align: center;
    border-radius: 50%;
    transition: .3s;
    color: var(--color-heading-1)
}

@media only screen and (max-width:576px) {
    .tmp-trending-area .section-inner .swiper-btn {
        font-size: 18px;
        width: 45px;
        height: 45px;
        line-height: 47px
    }
}

.tmp-trending-area .section-inner .swiper-btn i {
    color: var(--color-primary)
}

.tmp-trending-area .section-inner .swiper-btn::after {
    display: none
}

.tmp-trending-area .section-inner .swiper-btn.swiper-button-prev {
    left: -60px;
    opacity: 0
}

@media only screen and (max-width:1199px) {
    .tmp-trending-area .section-inner .swiper-btn.swiper-button-prev {
        left: 30px
    }
}

@media only screen and (max-width:991px) {
    .tmp-trending-area .section-inner .swiper-btn.swiper-button-prev {
        left: -30px;
        opacity: 1
    }
}

@media only screen and (max-width:576px) {
    .tmp-trending-area .section-inner .swiper-btn.swiper-button-prev {
        left: 0
    }
}

.tmp-trending-area .section-inner .swiper-btn.swiper-button-next {
    right: -60px;
    opacity: 0
}

@media only screen and (max-width:1199px) {
    .tmp-trending-area .section-inner .swiper-btn.swiper-button-next {
        right: -30px
    }
}

@media only screen and (max-width:991px) {
    .tmp-trending-area .section-inner .swiper-btn.swiper-button-next {
        right: -30px;
        opacity: 1
    }
}

@media only screen and (max-width:576px) {
    .tmp-trending-area .section-inner .swiper-btn.swiper-button-next {
        right: 0
    }
}

.tmp-trending-area .section-inner .swiper-btn:hover {
    background: var(--color-primary);
    transform: translateY(-50%) scale(1.15)
}

.tmp-trending-area .section-inner .swiper-btn:hover i {
    color: #fff
}

.tmp-trending-area .section-inner:hover .swiper-btn.swiper-button-prev {
    left: -90px;
    opacity: 1
}

@media only screen and (min-width:1200px) and (max-width:1599px) {
    .tmp-trending-area .section-inner:hover .swiper-btn.swiper-button-prev {
        left: -60px
    }
}

@media only screen and (max-width:1199px) {
    .tmp-trending-area .section-inner:hover .swiper-btn.swiper-button-prev {
        left: -30px
    }
}

@media only screen and (max-width:576px) {
    .tmp-trending-area .section-inner:hover .swiper-btn.swiper-button-prev {
        left: 0
    }
}

.tmp-trending-area .section-inner:hover .swiper-btn.swiper-button-next {
    right: -90px;
    opacity: 1
}

@media only screen and (min-width:1200px) and (max-width:1599px) {
    .tmp-trending-area .section-inner:hover .swiper-btn.swiper-button-next {
        right: -60px
    }
}

@media only screen and (max-width:1199px) {
    .tmp-trending-area .section-inner:hover .swiper-btn.swiper-button-next {
        right: -30px
    }
}

@media only screen and (max-width:576px) {
    .tmp-trending-area .section-inner:hover .swiper-btn.swiper-button-next {
        right: 0
    }
}

.project-flip-style {
    background: var(--color-white);
    box-shadow: var(--shadow-1);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px
}

.project-flip-style:last-child {
    margin-bottom: 0
}

.project-flip-style .thumbnail {
    display: block;
    overflow: hidden
}

.project-flip-style .thumbnail img {
    transition: .3s
}

.project-flip-style .content {
    padding: 50px;
    display: flex;
    justify-content: end;
    flex-direction: column;
    height: 100%;
    position: relative
}

@media only screen and (max-width:576px) {
    .project-flip-style .content {
        padding: 30px 20px
    }
}

.project-flip-style .content .icon {
    position: absolute;
    left: 50px;
    top: 50px
}

@media only screen and (max-width:991px) {
    .project-flip-style .content .icon {
        position: relative;
        left: 0;
        top: 0;
        margin-bottom: 20px
    }
}

.project-flip-style .content .title {
    margin-bottom: 10px;
    font-size: 30px
}

@media only screen and (max-width:576px) {
    .project-flip-style .content .title {
        font-size: 20px
    }
}

.project-flip-style .content .sub-title {
    font-weight: 500
}

.project-flip-style:hover .thumbnail img {
    transform: scale(1.04)
}

.tmp-single-service-two {
    padding: 50px;
    border: 1px solid #e9e9e9;
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    transition: .3s;
    height: 100%
}

@media(max-width:400px) {
    .tmp-single-service-two {
        padding: 30px 20px
    }
}

.tmp-single-service-two::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 250px;
    width: 250px;
    background: var(--color-primary);
    border-radius: 50%;
    filter: blur(50px);
    z-index: -1;
    top: -30%;
    left: -10%;
    transition: .3s;
    opacity: 0
}

.tmp-single-service-two a .title {
    font-weight: 600;
    font-size: 30px;
    line-height: 46px;
    color: #0c0a0a;
    font-family: var(--font-primary);
    margin-bottom: 8px
}

@media only screen and (max-width:1199px) {
    .tmp-single-service-two a .title {
        font-size: 26px
    }
}

.tmp-single-service-two:hover {
    border: 1px solid var(--color-primary)
}

.tmp-single-service-two:hover::after {
    opacity: .5
}

.tmp-single-offer {
    padding: 40px;
    border: 1px solid #e9e9e9;
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    transition: .3s
}

@media only screen and (max-width:767px) {
    .tmp-single-offer {
        padding: 15px
    }
}

.tmp-single-offer::after {
    position: absolute;
    content: "";
    left: -10%;
    top: -30%;
    height: 250px;
    width: 250px;
    filter: blur(50px);
    background: var(--color-primary);
    z-index: -1;
    opacity: 0;
    transition: .3s
}

.tmp-single-offer a.thumbnail {
    overflow: hidden;
    display: block;
    max-height: max-content;
    margin-bottom: 30px
}

.tmp-single-offer a.thumbnail:hover img {
    transform: scale(1.3)
}

.tmp-single-offer a.thumbnail img {
    transition: 1.3s;
    max-height: max-content;
    width: 100%
}

.tmp-single-offer:hover {
    border-color: var(--color-primary)
}

.tmp-single-offer:hover::after {
    opacity: .6
}

.sticky-top {
    z-index: 30 !important
}

.tmp-case-studies-area .section-inner {
    padding-bottom: 135px;
    position: relative;
    z-index: 1
}

.tmp-team-area2 {
    background: #f6f6f6
}

.tmp-team-area3,
.tmp-team-area2 {
    background: rgba(149, 149, 149, 0.1)
}

.tmp-team-area3 .section-inner,
.tmp-team-area2 .section-inner {
    position: relative;
    z-index: 1;
    padding-left: 15px;
    padding-right: 15px
}

.tmp-team-area3 .section-inner .swiper-btn,
.tmp-team-area2 .section-inner .swiper-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-white);
    width: 55px;
    height: 55px;
    line-height: 54px;
    text-align: center;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-heading-1);
    transition: var(--transition);
    z-index: 50;
    opacity: 0
}

@media only screen and (max-width:991px) {

    .tmp-team-area3 .section-inner .swiper-btn,
    .tmp-team-area2 .section-inner .swiper-btn {
        height: 60px;
        width: 60px;
        line-height: 60px
    }

    .tmp-team-area3 .section-inner .swiper-btn i,
    .tmp-team-area2 .section-inner .swiper-btn i {
        font-size: 18px
    }
}

@media only screen and (max-width:767px) {

    .tmp-team-area3 .section-inner .swiper-btn,
    .tmp-team-area2 .section-inner .swiper-btn {
        opacity: 1
    }
}

@media only screen and (max-width:576px) {

    .tmp-team-area3 .section-inner .swiper-btn,
    .tmp-team-area2 .section-inner .swiper-btn {
        height: 45px;
        width: 45px;
        line-height: 43px
    }

    .tmp-team-area3 .section-inner .swiper-btn i,
    .tmp-team-area2 .section-inner .swiper-btn i {
        font-size: 16px
    }
}

.tmp-team-area3 .section-inner .swiper-btn:hover,
.tmp-team-area2 .section-inner .swiper-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-50%) scale(1.2)
}

.tmp-team-area3 .section-inner .swiper-button-prev3,
.tmp-team-area2 .section-inner .swiper-button-prev3 {
    left: 0
}

@media only screen and (max-width:991px) {

    .tmp-team-area3 .section-inner .swiper-button-prev3,
    .tmp-team-area2 .section-inner .swiper-button-prev3 {
        left: -50px
    }
}

@media only screen and (max-width:576px) {

    .tmp-team-area3 .section-inner .swiper-button-prev3,
    .tmp-team-area2 .section-inner .swiper-button-prev3 {
        left: -10px
    }
}

.tmp-team-area3 .section-inner .swiper-button-next3,
.tmp-team-area2 .section-inner .swiper-button-next3 {
    right: 0
}

@media only screen and (max-width:991px) {

    .tmp-team-area3 .section-inner .swiper-button-next3,
    .tmp-team-area2 .section-inner .swiper-button-next3 {
        right: -50px
    }
}

@media only screen and (max-width:576px) {

    .tmp-team-area3 .section-inner .swiper-button-next3,
    .tmp-team-area2 .section-inner .swiper-button-next3 {
        right: -10px
    }
}

.tmp-team-area3:hover .section-inner .swiper-btn,
.tmp-team-area2:hover .section-inner .swiper-btn {
    opacity: 1
}

.tmp-team-area3:hover .section-inner .swiper-button-prev3,
.tmp-team-area2:hover .section-inner .swiper-button-prev3 {
    left: -60px
}

@media only screen and (max-width:1199px) {

    .tmp-team-area3:hover .section-inner .swiper-button-prev3,
    .tmp-team-area2:hover .section-inner .swiper-button-prev3 {
        left: -15px
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {

    .tmp-team-area3:hover .section-inner .swiper-button-prev3,
    .tmp-team-area2:hover .section-inner .swiper-button-prev3 {
        left: -15px
    }
}

@media only screen and (max-width:767px) {

    .tmp-team-area3:hover .section-inner .swiper-button-prev3,
    .tmp-team-area2:hover .section-inner .swiper-button-prev3 {
        left: -10px
    }
}

.tmp-team-area3:hover .section-inner .swiper-button-next3,
.tmp-team-area2:hover .section-inner .swiper-button-next3 {
    right: -60px
}

@media only screen and (max-width:1199px) {

    .tmp-team-area3:hover .section-inner .swiper-button-next3,
    .tmp-team-area2:hover .section-inner .swiper-button-next3 {
        right: -15px
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {

    .tmp-team-area3:hover .section-inner .swiper-button-next3,
    .tmp-team-area2:hover .section-inner .swiper-button-next3 {
        right: -15px
    }
}

@media only screen and (max-width:767px) {

    .tmp-team-area3:hover .section-inner .swiper-button-next3,
    .tmp-team-area2:hover .section-inner .swiper-button-next3 {
        right: -10px
    }
}

.tmp-team-area {
    position: relative;
    z-index: 1
}

.tmp-team-area .shape-area img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    filter: brightness(0) saturate(100%) invert(40%) sepia(13%) saturate(2194%) hue-rotate(136deg) brightness(92%) contrast(95%)
}

.tmp-service-area {
    border-radius: 20px;
    background: #f6f6f6
}

@media only screen and (max-width:479px) {
    .tmp-service-area {
        border-radius: 0
    }
}

.tmp-service-area.area-4 {
    background: var(--primary-100);
    position: relative;
    z-index: 1
}

.tmp-service-area.area-5 {
    background: #f7f7f7;
    margin: 0 40px;
    border-radius: 10px;
    overflow: hidden
}

@media only screen and (min-width:1200px) and (max-width:1599px) {
    .tmp-service-area.area-5 {
        margin: 0;
        border-radius: 0
    }
}

@media only screen and (max-width:1199px) {
    .tmp-service-area.area-5 {
        margin: 0
    }
}

.tmp-why-choose-us-area {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(179, 179, 179, 0.09) 0, rgba(246, 246, 246, 0.4) 100%)
}

.tmp-why-choose-us-area::after {
    content: "";
    position: absolute;
    width: 385px;
    height: 390px;
    background: var(--secondary-100);
    top: 0;
    left: 0;
    z-index: -1
}

.tmp-why-choose-us-area2 {
    background: rgba(255, 112, 41, 0.05)
}

.service-wrapper6 {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 26px 30px;
    border-radius: 3px;
    box-shadow: 0 6px 34px rgba(215, 216, 222, 0.41);
    transition: .3s;
    height: 100%
}

@media only screen and (min-width:1200px) and (max-width:1599px) {
    .service-wrapper6 {
        flex-direction: column;
        gap: 20px
    }
}

.service-wrapper6 .icon img {
    opacity: .6;
    transition: .3s
}

.service-wrapper6 .icon svg {
    max-width: 48px;
    height: 48px
}

.service-wrapper6:hover {
    transform: scale(1.04)
}

.service-wrapper6:hover .icon img {
    opacity: 1
}

.service-wrapper6 h4 {
    margin-bottom: -5px;
    font-size: 20px
}

.service-wrapper6 .content p.desc {
    margin-top: 7px;
    font-weight: 500
}

.service-wrapper7 {
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 6px 34px rgba(215, 216, 222, 0.41);
    padding: 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: .3s;
    height: 100%
}

@media only screen and (max-width:1199px) {
    .service-wrapper7 {
        padding: 30px 20px
    }
}

@media only screen and (max-width:576px) {
    .service-wrapper7 {
        padding: 20px !important
    }
}

.service-wrapper7 .icon {
    margin-bottom: 120px;
    height: 86px
}

@media only screen and (max-width:991px) {
    .service-wrapper7 .icon {
        height: 70px;
        margin-bottom: 50px
    }
}

.service-wrapper7 .icon img {
    max-width: 55px
}

.service-wrapper7 .title {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 10px;
    transition: .3s
}

.service-wrapper7 .desc {
    color: var(--color-body-2);
    font-size: 16px;
    margin-bottom: 0;
    line-height: 1.5
}

.service-wrapper7:hover {
    transform: scale(1.02)
}

.service-wrapper7:hover .title {
    color: var(--color-primary)
}

@media only screen and (max-width:991px) {
    .tmp-award-area p.desc br {
        display: none
    }
}

.over_link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.tmp-service-details-area {
    position: relative;
    z-index: 1
}

.tmp-solar-solution-area .accordion-one .accordion-item .accordion-body p.desc {
    font-size: 16px;
    max-width: 478px
}

.tmp-solar-solution-area .accordion-one .accordion-item h2 button[aria-expanded=true] {
    color: var(--color-primary-2)
}

.radious-0 {
    border-radius: 0
}

.col-lg-3 .service-with-thumbnail {
    padding: 20px
}

.service-with-thumbnail {
    padding: 30px;
    border-radius: 8px;
    background: var(--color-white);
    transition: .3s;
    height: 100%
}

@media only screen and (max-width:767px) {
    .service-with-thumbnail {
        padding: 15px
    }
}

.service-with-thumbnail:hover {
    transform: scale(1.02)
}

.service-with-thumbnail:hover .thumbnail::after {
    opacity: 1
}

.service-with-thumbnail:hover .thumbnail .tmp-btn {
    opacity: 1;
    transform: translate(-50%, -50%)
}

.service-with-thumbnail .thumbnail {
    display: block;
    overflow: hidden;
    border-radius: 6px;
    position: relative
}

.service-with-thumbnail .thumbnail::after {
    position: absolute;
    content: "";
    background: linear-gradient(0, rgba(33, 37, 41, 0.7490196078) 0, rgba(0, 0, 0, 0) 100%);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .3s;
    opacity: 0;
    border-radius: 8px
}

.service-with-thumbnail .thumbnail .tmp-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -20%)
}

.service-with-thumbnail .content {
    margin-top: 30px
}

.service-with-thumbnail .content a {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.service-with-thumbnail .content a .title {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 0;
    font-weight: 700;
    transition: .3s
}

@media only screen and (max-width:767px) {
    .service-with-thumbnail .content a .title {
        font-size: 20px
    }
}

.service-with-thumbnail .content a:hover .title {
    color: var(--color-primary)
}

.service-with-thumbnail .content p.disc {
    margin-top: 20px
}

@media only screen and (max-width:991px) {
    .service-with-thumbnail .content p.disc {
        margin-top: 8px
    }
}

@media only screen and (max-width:576px) {
    .service-with-thumbnail .content p.disc {
        margin-top: 8px
    }
}

.tmp-testimonials-area.area-4 .section-inner {
    margin: 60px 100px 0
}

.tmp-testimonials-area2 {
    background: var(--primary-50)
}

.tmp-testimonials-area3 {
    background: var(--primary-50);
    border-radius: 6px;
    margin: 0 60px
}

.tmp-testimonials-area4 {
    background: #f4f4f4;
    padding-bottom: 180px
}

@media only screen and (max-width:576px) {
    .tmp-testimonials-area4 {
        padding-bottom: 150px
    }
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        transform: translateX(0)
    }

    to {
        -webkit-transform: translateX(-webkit-calc(-250px * 7));
        -moz-transform: translateX(-moz-calc(-250px * 7));
        transform: translateX(-1750px)
    }
}

@keyframes scrollLeft {
    0% {
        -webkit-transform: translateX(-webkit-calc(-250px * 7));
        -moz-transform: translateX(-moz-calc(-250px * 7));
        transform: translateX(-1750px)
    }

    to {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        transform: translateX(0)
    }
}

.scroll-right-left {
    -webkit-animation: scroll 80s linear infinite;
    -moz-animation: scroll 80s linear infinite;
    animation: scroll 80s linear infinite;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards
}

.scroll-left-right {
    -webkit-animation: scrollLeft 80s linear infinite;
    -moz-animation: scrollLeft 80s linear infinite;
    animation: scrollLeft 80s linear infinite;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards
}

.scroll-animation {
    display: flex;
    width: -webkit-calc((420px* 16) +(30px* 16));
    width: -moz-calc((420px* 16) +(30px* 16));
    width: 7200px;
    position: relative
}

.single-swiper-item-testimonials {
    text-align: center;
    max-width: 65%;
    margin: auto
}

@media only screen and (max-width:991px) {
    .single-swiper-item-testimonials {
        max-width: 100%
    }
}

.single-swiper-item-testimonials .stars-area {
    display: flex;
    align-items: center;
    gap: 7px;
    justify-content: center;
    margin-bottom: 30px
}

.single-swiper-item-testimonials .stars-area i {
    color: #f9cc3a;
    font-size: 22px
}

.single-swiper-item-testimonials p {
    font-size: 20px;
    line-height: 2
}

.single-swiper-item-testimonials .information .name {
    font-size: 20px;
    margin-bottom: 10px
}

.single-swiper-item-testimonials .information span {
    font-size: 16px
}

.swiper-free-mode>.swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto
}

.testimonial-three--slider .swiper-btn {
    color: var(--color-primary-2);
    display: flex;
    align-items: center;
    gap: 5px;
    position: unset;
    margin: 0;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    transition: var(--transition);
    position: absolute;
    z-index: 10;
    transform: translateY(-50%);
    transition: .3s;
    opacity: 0;
    box-shadow: var(--shadow-1)
}

.testimonial-three--slider .swiper-btn::after {
    display: none
}

.testimonial-three--slider .swiper-btn.swiper-button-prev {
    position: absolute;
    left: 120px;
    top: 50%
}

@media only screen and (max-width:576px) {
    .testimonial-three--slider .swiper-btn.swiper-button-prev {
        left: 30px
    }
}

.testimonial-three--slider .swiper-btn.swiper-button-next {
    position: absolute;
    right: 120px;
    top: 50%;
    left: auto
}

@media only screen and (max-width:576px) {
    .testimonial-three--slider .swiper-btn.swiper-button-next {
        right: 30px
    }
}

.testimonial-three--slider:hover .swiper-navigation .swiper-btn {
    opacity: 1
}

.testimonial-three--slider:hover .swiper-navigation .swiper-btn.swiper-button-next {
    right: 90px
}

@media only screen and (max-width:576px) {
    .testimonial-three--slider:hover .swiper-navigation .swiper-btn.swiper-button-next {
        right: 20px
    }
}

.testimonial-three--slider:hover .swiper-navigation .swiper-btn.swiper-button-prev {
    left: 90px
}

@media only screen and (max-width:576px) {
    .testimonial-three--slider:hover .swiper-navigation .swiper-btn.swiper-button-prev {
        left: 20px
    }
}

.testimonial-three--slider-thumb {
    max-width: 300px;
    margin: 0 auto;
    margin-top: 30px;
    padding: 10px
}

.testimonial-three--slider-thumb .testimonial-three__image {
    width: 80px;
    cursor: pointer
}

.testimonial-three--slider-thumb .testimonial-three__image img {
    transition: .4s
}

.testimonial-three--slider-thumb .swiper-slide-thumb-active img {
    transform: scale(1.1)
}

.tmp-working-process-area3 {
    background: #f6f6f6
}

.tmp-working-process-area2 {
    margin: 0 60px
}

.tmp-working-process-area2 .section-inner {
    position: relative;
    z-index: 1
}

.tmp-working-process-area2 .section-inner::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 1px;
    background: #e4e4e4;
    top: 199px;
    left: 0
}

.work-process-area-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 1;
    margin-top: 50px
}

@media only screen and (max-width:1199px) {
    .work-process-area-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px
    }
}

.work-process-area-wrapper .single-process-item {
    width: 260px;
    text-align: center
}

@media only screen and (max-width:767px) {
    .work-process-area-wrapper .single-process-item {
        width: 237px
    }
}

.work-process-area-wrapper .single-process-item .thumbnail {
    width: 190px;
    height: 190px;
    line-height: 190px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.work-process-area-wrapper .single-process-item .thumbnail img {
    border-radius: 100%
}

.work-process-area-wrapper .single-process-item .thumbnail .number {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    transition: .5s;
    font-size: 24px;
    font-weight: 500;
    color: var(--color-white);
    background-color: var(--color-primary)
}

.work-process-area-wrapper .single-process-item .inner-content .title {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 10px
}

.work-process-area-wrapper .single-process-item:hover .number {
    animation: bounceIn 1s forwards;
    animation-delay: .5s;
    top: 0;
    left: calc(100% - 50px)
}

.tmp-form-area {
    background: var(--color-white);
    box-shadow: 0 5px 22px rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    padding: 50px
}

@media only screen and (max-width:1199px) {
    .tmp-form-area {
        padding: 30px
    }
}

.tmp-get-in-touch-area .section-inner {
    position: relative;
    z-index: 1;
    background: #fff;
    box-shadow: 0 4px 53px rgba(0, 0, 0, 0.07);
    border-radius: 6px;
    overflow: hidden;
    transition: .3s
}

.tmp-get-in-touch-area .section-inner:hover .icon a i {
    animation: bounceIn .8s ease
}

.tmp-get-in-touch-area .section-inner .content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 37px 50px 37px;
    gap: 31px;
    margin-left: 85px
}

@media only screen and (min-width:1200px) and (max-width:1599px) {
    .tmp-get-in-touch-area .section-inner .content {
        margin-left: 222px
    }
}

@media only screen and (max-width:576px) {
    .tmp-get-in-touch-area .section-inner .content {
        padding: 30px
    }
}

.tmp-get-in-touch-area .section-inner .icon a {
    display: block;
    width: 125px;
    height: 125px;
    line-height: 130px;
    border-radius: 50%;
    text-align: center;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 40px
}

.tmp-get-in-touch-area .section-inner .text {
    max-width: 543px
}

.tmp-get-in-touch-area .section-inner .text .title {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 24px;
    line-height: 1.4
}

.tmp-get-in-touch-area .section-inner .text .desc {
    margin-top: 10px;
    color: #717580
}

.tmp-contact-area .left-side-content {
    background: var(--color-white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border-radius: 6px;
    padding: 30px;
    height: 100%
}

@media only screen and (max-width:479px) {
    .tmp-contact-area .left-side-content {
        padding: 20px
    }
}

.tmp-contact-area .left-side-content .content {
    max-width: 537px;
    margin-bottom: 30px
}

.tmp-contact-area .left-side-content .content .title {
    margin-bottom: 10px;
    line-height: 1;
    font-size: 30px
}

.tmp-top-contact-area {
    padding-bottom: 60px
}

.tmp-top-contact-area .section-inner {
    display: flex;
    align-items: center;
    justify-content: space-between
}

@media only screen and (max-width:1199px) {
    .tmp-top-contact-area .section-inner {
        flex-wrap: wrap
    }
}

.tmp-top-contact-area .section-inner .desc {
    max-width: 585px;
    padding-left: 20px;
    position: relative;
    z-index: 1
}

.tmp-top-contact-area .section-inner .desc::after {
    content: "";
    position: absolute;
    z-index: 1;
    width: 5px;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--color-primary-2)
}

.tmp-contact-area.contact {
    background: rgba(149, 149, 149, 0.1)
}

.tmp-contact-area.contact label {
    display: block;
    margin: 20px 0 8px;
    font-weight: 500;
    color: #333
}

.tmp-contact-area.contact label i {
    margin-right: 5px
}

.tmp-contact-area.contact input[type=text],
.tmp-contact-area.contact input[type=email],
.tmp-contact-area.contact textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color .3s ease
}

.tmp-contact-area.contact input:focus,
.tmp-contact-area.contact textarea:focus {
    border-color: var(--color-primary);
    outline: 0
}

.tmp-contact-area.contact button {
    width: 100%;
    max-width: 100%;
    border: 0
}

.tmp-error-area .section-inner .tmp-btn {
    margin: auto
}

.tmp-coming-soon-area {
    padding: 95px 0;
    background:#0F4E81;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-attachment: fixed;
    margin: 15px 15px 0 15px;
    border-radius: 16px
}

.tmp-coming-soon-area::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: var(--color-primary);
    mix-blend-mode: multiply;
    z-index: -1
}

.tmp-coming-soon-area .section-inner {
    background: rgba(7, 7, 7, 0.1411764706);
    text-align: center;
    max-width: 716px;
    margin: auto;
    border-radius: 6px;
    padding: 90px 100px;
    margin-top: 120px;
    backdrop-filter: blur(20px)
}

.tmp-coming-soon-area .section-inner * {
    color: var(--color-white)
}

@media only screen and (max-width:767px) {
    .tmp-coming-soon-area .section-inner {
        padding: 45px
    }
}

@media only screen and (max-width:576px) {
    .tmp-coming-soon-area .section-inner {
        padding: 30px
    }
}

.tmp-coming-soon-area .section-inner .title {
    margin-bottom: 30px
}

.tmp-coming-soon-area .section-inner p.desc {
    margin-top: 30px
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5)
    }

    50% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0)
    }
}

.tmp-counter-area {
    max-width: 1620px;
    margin: auto
}

.tmp-counter-area .counter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 114px;
    background: var(--color-white);
    box-shadow: 0 9px 10.8px rgba(187, 173, 173, 0.07);
    border-radius: 6px;
    margin-top: -100px;
    position: relative;
    z-index: 1
}

.tmp-counter-area .counter-inner .content {
    padding: 25px 30px;
    position: relative;
    z-index: 1
}

.tmp-counter-area .counter-inner .content:hover::after {
    border-left: 2px solid var(--color-primary)
}

.tmp-counter-area .counter-inner .content::after {
    content: "";
    position: absolute;
    width: 117px;
    height: 100%;
    top: 0;
    left: 0;
    background: #fafafa;
    border-left: 2px solid #e4e4e4;
    z-index: -1;
    transition: var(--transition)
}

@media only screen and (max-width:991px) {
    .tmp-counter-area .counter-inner .content::after {
        width: 100%
    }
}

.tmp-counter-area .counter-inner .content .title {
    font-size: 70px;
    font-weight: 700;
    margin-bottom: -5px;
    display: flex;
    align-items: center;
    color: var(--color-primary)
}

@media only screen and (max-width:1199px) {
    .tmp-counter-area .counter-inner .content .title {
        font-size: 50px
    }
}

@media only screen and (max-width:991px) {
    .tmp-counter-area .counter-inner .content .title {
        font-size: 60px
    }
}

.tmp-counter-area .counter-inner .content p {
    font-weight: 500
}

.ui-state-default {
    text-decoration: none !important
}

.ui-datepicker {
    background: #fff;
    border-radius: 0;
    box-shadow: 0 6px 41px -13px rgba(191, 138, 0, 0.75);
    -webkit-box-shadow: 0 6px 41px -13px rgba(191, 138, 0, 0.75);
    -moz-box-shadow: 0 6px 41px -13px rgba(191, 138, 0, 0.75)
}

.ui-datepicker-header {
    height: 50px;
    line-height: 50px;
    color: #fff;
    background: var(--color-primary);
    margin-bottom: 10px
}

.ui-datepicker-prev,
.ui-datepicker-next {
    width: 20px;
    height: 20px;
    text-indent: 9999px;
    border-radius: 100%;
    cursor: pointer;
    overflow: hidden;
    margin-top: 12px
}

.ui-datepicker-prev {
    float: left;
    margin-left: 12px
}

.ui-datepicker-prev:after {
    transform: rotate(45deg);
    margin: -43px 0 0 8px
}

.ui-datepicker-next {
    float: right;
    margin-right: 12px
}

.ui-datepicker-next:after {
    transform: rotate(-135deg);
    margin: -43px 0 0 6px
}

.ui-datepicker-prev:after,
.ui-datepicker-next:after {
    content: "";
    position: absolute;
    display: block;
    width: 8px;
    height: 8px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff
}

.ui-datepicker-prev:hover,
.ui-datepicker-next:hover,
.ui-datepicker-prev:hover:after,
.ui-datepicker-next:hover:after {
    border-color: #333
}

.ui-datepicker-title {
    text-align: center;
    font-size: 20px
}

.ui-datepicker-calendar {
    width: 100%;
    text-align: center
}

.ui-datepicker-calendar thead tr th span {
    display: block;
    width: 40px;
    color: var(--color-primary);
    margin-bottom: 5px;
    font-size: 15px
}

.ui-state-default {
    display: block;
    text-decoration: none;
    color: #333;
    line-height: 40px;
    font-size: 16px;
    line-height: 27px;
    padding: 0 5px
}

.ui-state-default:hover {
    color: #fff;
    background: var(--color-primary);
    border-radius: 0;
    transition: all .25s cubic-bezier(0.7, -0.12, 0.2, 1.12);
    text-decoration: none
}

.ui-state-highlight {
    color: #fff;
    background-color: var(--color-primary);
    border-radius: 0
}

.ui-state-active {
    color: #fff;
    background-color: var(--color-primary);
    border-radius: 0
}

.ui-datepicker-unselectable .ui-state-default {
    color: #eee;
    border: 2px solid transparent
}

.tmp-elevate-pagination ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    list-style: none
}

.tmp-elevate-pagination ul li {
    margin: 0;
    margin-right: 10px
}

.tmp-elevate-pagination ul li button {
    width: 50px;
    height: 50px;
    background: transparent;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #000;
    border: 1px solid #e9e9e9;
    transition: .3s
}

.tmp-elevate-pagination ul li button.active {
    background: var(--color-primary);
    color: #fff
}

.tmp-elevate-pagination ul li button:hover {
    background: var(--color-primary);
    color: #fff
}

.tmp-cart-area table {
    margin-bottom: 0
}

@media only screen and (max-width:991px) {
    .tmp-cart-area table {
        min-width: 990px
    }
}

.tmp-cart-area table thead tr {
    border-bottom: 1px solid #efefef
}

.tmp-cart-area table thead tr th {
    padding: 22px 30px;
    text-align: center;
    color: var(--color-heading-1);
    font-size: 18px;
    font-weight: 500;
    text-transform: none
}

.tmp-cart-area table tbody tr {
    position: relative;
    z-index: 1;
    border-bottom: 1px solid #efefef
}

.tmp-cart-area table tbody tr td {
    border: 0;
    text-align: center;
    padding: 22px 30px
}

.tmp-cart-area table tbody tr td:last-child {
    position: absolute;
    z-index: 1;
    right: 7px;
    top: 7px;
    padding: 0
}

.tmp-shop-card-1 {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    margin-top: 0;
    position: relative;
    transition: .3s;
    text-align: center;
    transition: .3s;
    height: 100%
}

.tmp-shop-card-1:hover {
    transform: scale(1.02)
}

.modal-gallery-big {
    border-radius: 6px;
    overflow: hidden
}

.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 60px;
    width: 60px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 999;
    opacity: 1;
    visibility: hidden;
    transform: translateY(15px);
    box-shadow: 0 8px 16px rgba(3, 4, 28, 0.162)
}

.progress-wrap::after {
    position: absolute;
    font-family: var(--font-awesome);
    content: "";
    text-align: center;
    line-height: 60px;
    font-size: 18px;
    color: var(--color-primary);
    left: 0;
    top: 0;
    height: 60px;
    width: 60px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    border: 1px solid var(--color-primary);
    border: none !important;
    box-shadow: none;
    border-radius: 50% !important;
    border-radius: 5px
}

.progress-wrap:hover::after {
    opacity: 1;
    content: ""
}

.progress-wrap::before {
    position: absolute;
    font-family: var(--font-awesome);
    content: "";
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    opacity: 0;
    background: var(--color-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2
}

.progress-wrap:hover::before {
    opacity: 0
}

.progress-wrap svg path {
    fill: #fff
}

.progress-wrap svg {
    color: var(--color-primary);
    border-radius: 50%;
    background: transparent
}

.progress-wrap svg.progress-circle path {
    stroke: var(--color-primary);
    stroke-width: 4px;
    box-sizing: border-box
}

.tmp-skill-area.four img {
    width: 100%
}

.footer-one {
    background: #1f242e;
    position: relative;
    z-index: 10
}

.main-footer-one-area {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    border-top: 1px solid #222;
    --color-body: #cdcdcd
}

@media(max-width:1200px) {
    .main-footer-one-area {
        gap: 30px;
        flex-wrap: wrap
    }
}

.main-footer-one-area .body.one {
    max-width: 279px
}

.main-footer-one-area .body.one p.desc {
    margin-bottom: 23px
}

.main-footer-one-area .single-footer-inner {
    width: 24%
}

.main-footer-one-area .single-footer-inner .footer-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    color: #fff;
    position: relative;
    margin-bottom: 27px
}

@media only screen and (max-width:767px) {
    .main-footer-one-area .single-footer-inner .footer-title {
        margin-bottom: 10px
    }
}

.main-footer-one-area .single-footer-inner .use-full-link-wrapper .single {
    display: block;
    margin: 10px 0;
    transition: .3s;
    color: #fff;
    max-width: max-content;
    position: relative
}

.main-footer-one-area .single-footer-inner .use-full-link-wrapper .single:hover {
    color: var(--color-primary) !important
}

.main-footer-one-area .single-footer-inner .use-full-link-wrapper .single i {
    font-weight: 900;
    margin-right: 15px
}

.main-footer-one-area .single-footer-inner .use-full-link-wrapper .single a {
    font-weight: 400;
    font-size: 16px;
    line-height: 42px
}

@media only screen and (min-width:1200px) and (max-width:1599px) {
    .main-footer-one-area .single-footer-inner {
        width: 18%
    }
}

.main-footer-one-area .single-footer-inner.company {
    width: 18%
}

.main-footer-one-area .single-footer-inner.service {
    width: 17%
}

.main-footer-one-area .single-footer-inner.contact {
    width: 19%
}

.main-footer-one-area .contactus-link-wrapper .single {
    margin-bottom: 12px
}

.main-footer-one-area .contactus-link-wrapper .single .text {
    margin-bottom: 2px
}

.main-footer-one-area.two .single-footer-inner .footer-title {
    position: relative;
    z-index: 1;
    padding-bottom: 10px
}

.main-footer-one-area.two .single-footer-inner .footer-title::before {
    content: "";
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 10px;
    background: var(--color-primary);
    border-radius: 1px
}

.main-footer-one-area.two .single-footer-inner .footer-title::after {
    content: "";
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 17px;
    height: 2px;
    width: 50px;
    background: var(--color-primary);
    border-radius: 1px
}

.main-footer-one-area.two .contactus-link-wrapper .single .text {
    margin-bottom: 4px
}

.main-footer-one-area.three .footer-title {
    position: relative;
    z-index: 1;
    padding-bottom: 10px
}

.main-footer-one-area.three .footer-title img {
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0
}

.main-footer-one-area.four .footer-title {
    position: relative;
    z-index: 1;
    padding-bottom: 10px
}

.main-footer-one-area.four .footer-title img {
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0
}

.main-footer-one-area.four .contactus-link-wrapper .single {
    margin-bottom: 20px
}

.main-footer-one-area.four .contactus-link-wrapper .single .text {
    margin-bottom: 5px
}

.footer-cta-area {
    padding: 65px 50px 70px 50px;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-top: -320px;
    background-image: linear-gradient(135deg, #0F4E81 0%, #08304F 100%)
}

@media only screen and (max-width:991px) {
    .footer-cta-area {
        padding: 45px 35px 45px !important
    }
}

@media only screen and (max-width:576px) {
    .footer-cta-area {
        margin: -15px;
        margin-top: -320px
    }
}

.footer-cta-area.cta-two {
    background-color: var(--color-primary-2);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

.footer-cta-area .cta-area-inner {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.footer-cta-area .cta-area-inner .cta-title {
    font-size: 44px;
    line-height: 1.4;
    color: var(--color-white);
    font-weight: 700;
    margin-bottom: 0
}

@media only screen and (max-width:767px) {
    .footer-cta-area .cta-area-inner .cta-title {
        font-size: 26px
    }
}

.footer-cta-area .shape-area img {
    position: absolute;
    z-index: -1
}

.footer-cta-area .shape-area img:nth-child(1) {
    top: 50%;
    transform: translateY(-50%);
    left: -60px
}

.footer-cta-area .shape-area img:nth-child(2) {
    bottom: -45%;
    right: -90px
}

.copyright-area-one {
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(228, 228, 228, 0.06);
    --color-body: #7e7e7e
}

.copyright-area-one p {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-body)
}

.copyright-area-one p a {
    color: var(--color-primary)
}

.copyright-area-one .copyright-links {
    display: flex;
    align-items: center;
    justify-content: end
}

.copyright-area-one .copyright-links li {
    padding: 0 10px;
    position: relative;
    z-index: 1
}

.copyright-area-one .copyright-links li::after {
    content: "";
    position: absolute;
    z-index: 1;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 21px;
    background: rgba(43, 48, 57, 0.3098039216)
}

.copyright-area-one .copyright-links li:last-child {
    padding-right: 0
}

.copyright-area-one .copyright-links li:last-child::after {
    display: none
}

.copyright-area-one .copyright-links li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 16px;
    font-weight: 400
}

.copyright-area-one .copyright-links li a:hover {
    color: var(--color-primary)
}

.copyright-area-one.cg p a {
    color: rgba(255, 255, 255, 0.7)
}

.copyright-area-one.cg .copyright-links li a:hover {
    color: var(--color-primary-2)
}

.tmp-footer-two {
    background: #171717
}

#anywhere-home {
    cursor:pointer;
    background: #0e1013;
    position: fixed;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease-in-out;
    pointer-events: none;
    z-index: 50
}

.footer-five .main-footer-one-area .newsletter-area .form .single-input-wrapper button,
.footer-five .copyright-area-one p a,
.footer-five .copyright-area-one .copyright-links li a:hover {
    color: rgba(255, 255, 255, 0.7)
}

.footer-five .main-footer-one-area .single-footer-inner .footer-title {
    position: relative;
    z-index: 1;
    max-width: max-content;
    padding-bottom: 10px
}

.footer-five .main-footer-one-area .single-footer-inner .footer-title::after {
    position: absolute;
    content: "";
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px
}

.main-footer-one-area .social-wrapper-1.hover-bg-white li a::after {
    background: var(--color-primary);
    border-color: var(--color-primary)
}

.main-footer-one-area .social-wrapper-1.hover-bg-white li a:hover i {
    color: var(--color-white)
}

.nav-area ul {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0;
    margin: 0;
    list-style: none
}

@media only screen and (min-width:1200px) and (max-width:1400px) {
    .nav-area ul {
        gap: 15px
    }
}

@media screen and (max-width:1200px) {
    .nav-area ul {
        gap: 15px
    }
}

.nav-area ul li {
    margin: 0;
    padding: 0
}

.nav-area ul li a {
    color: var(--color-body);
    font-weight: 600 !important
}

.has-dropdown.mega-menu>a {
    position: relative
}

.has-dropdown.mega-menu>a::after {
    position: absolute;
    content: "";
    right: -16px;
    top: 58%;
    transform: translateY(-50%);
    font-weight: 400;
    color: #1c2539;
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    font-size: 12px;
    transition: all .5s
}

@keyframes blink {

    0%,
    100% {
        background-color: var(--color-danger)
    }

    50% {
        background-color: #fff
    }
}

.nav-area ul li.main-nav {
    padding: 29px 20px 29px 0
}

header .main-nav>a {
    color: #1c2539 !important
}

header.header-three .nav-area ul li.main-nav:hover>a,
header.header-three .has-dropdown.mega-menu:hover>a::after,
header.header-three .has-dropdown.project-a-after:hover>a::after,
header.header-four .nav-area ul li.main-nav:hover>a,
header.header-four .has-dropdown.mega-menu:hover>a::after,
header.header-four .has-dropdown.project-a-after:hover>a::after,
header.header-six .nav-area ul li.main-nav:hover>a,
header.header-six .has-dropdown.mega-menu:hover>a::after,
header.header-six .has-dropdown.project-a-after:hover>a::after,
header.header-seven .nav-area ul li.main-nav:hover>a,
header.header-seven .has-dropdown.mega-menu:hover>a::after,
header.header-seven .has-dropdown.project-a-after:hover>a::after {
    color: var(--color-primary-2) !important
}

header.header-seven .header-mid-one-wrapper .nav-area {
    margin-left: 100px
}

@media only screen and (max-width:1199px) {
    header.header-seven .header-mid-one-wrapper .nav-area {
        display: none
    }
}

.mega-menu-item.with-list li a {
    position: relative
}

.mega-menu-item.with-list li a span {
    padding: 3px 9px;
    border-radius: 33px;
    background: var(--color-sky);
    color: #fff;
    line-height: 1;
    font-size: 14px;
    transition: .3s;
    animation: invZoomInOutAnim .5s linear infinite
}

li.has-dropdown {
    position: relative
}

li.has-dropdown .submenu {
    min-width: 230px;
    height: auto;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    text-align: left;
    transition: .3s;
    border-radius: 0 0 6px 6px;
    background-color: #fff;
    border-left: 0;
    border-bottom: 0;
    border-right: 0;
    display: inline-block;
    box-shadow: 0 36px 35px rgba(0, 0, 0, 0.08);
    padding: 5px 0;
    transform-origin: 0 0;
    transform: scaleY(0)
}

li.has-dropdown .submenu li {
    margin-right: 0;
    padding: 0
}

li.has-dropdown .submenu li a {
    padding: 6px 16px !important;
    font-size: 16px;
    transition: all .3s;
    border-radius: 4px;
    display: block;
    padding: 12px 45px 12px 15px;
    border-radius: 5px;
    background: #fff;
    transition: all .3s;
    text-align: left;
    font-size: 14px;
    font-weight: 600
}

li.has-dropdown .submenu li a:hover {
    border: none !important;
    gap: 12px;
    border-radius: 0 !important;
    color: var(--color-primary);
    background: rgba(0, 0, 0, 0.04)
}

li.has-dropdown .submenu li.has-third-lev {
    position: relative
}

li.has-dropdown .submenu li.has-third-lev>a {
    display: flex;
    align-items: center;
    justify-content: space-between
}

li.has-dropdown .submenu li.has-third-lev>a i {
    font-size: 10px
}

li.has-dropdown .submenu li.has-third-lev .submenu {
    position: absolute;
    right: 0;
    top: 15px !important;
    left: 100%;
    opacity: 0 !important;
    transition: .3s !important
}

li.has-dropdown .submenu li.has-third-lev:hover .submenu {
    top: 0 !important;
    opacity: 1 !important;
    border-radius: 6px
}

li.has-dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: translateY(0);
    transform: scaleY(1)
}

.has-dropdown.mega-menu::after {
    display: none
}

header .nav-area ul li.main-nav:hover>a {
    color: var(--color-primary) !important
}

header .nav-area ul li.main-nav:hover::after {
    color: var(--color-primary) !important
}

.has-dropdown.mega-menu:hover .tmp-mega-menu {
    transform: scaleY(1);
    top: 100%;
    visibility: visible;
    opacity: 1;
    clip: rect(0, 100vw, 200vh, -30px);
    transition: clip .6s linear, opacity .4s linear
}

.has-dropdown.mega-menu.active .tmp-mega-menu {
    transform: scaleY(1);
    top: 100%;
    visibility: visible;
    opacity: 1;
    clip: rect(0, 100vw, 200vh, -30px);
    transition: clip .6s linear, opacity .4s linear
}

.tmp-mega-menu {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    text-align: left;
    transition: all .5s;
    border-radius: 0 0 5px 5px !important;
    background-color: #fff;
    padding: 0;
    visibility: hidden;
    clip: rect(0, 200vw, 0, 0);
    opacity: 0;
    transition: opacity .4s linear, clip .6s linear, visibility 0s .4s
}

.tmp-mega-menu .wrapper {
    box-shadow: 0 6px 34px rgba(215, 216, 222, 0.41)
}

.tmp-mega-menu .wrapper.inner-page {
    padding: 35px 0 25px 0
}

.tmp-mega-menu .wrapper.inner-page .inversweb-short-title {
    font-size: 16px;
    padding-bottom: 14px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: .5px;
    margin-bottom: 6px;
    line-height: 1;
    padding-left: 12px;
    color: var(--color-heading-1);
    position: relative
}

.tmp-mega-menu .wrapper.inner-page .inversweb-short-title::after {
    position: absolute;
    left: 12px;
    content: "";
    height: 2px;
    width: 50px;
    border-radius: 2px;
    background: var(--color-primary);
    bottom: 3px
}

.mega-menu-item {
    padding: 0;
    margin: 0;
    flex-direction: column;
    display: flex;
    align-items: flex-start !important
}

.mega-menu-item li {
    margin-bottom: 19px;
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
    width: 100%
}

.mega-menu-item li:hover a {
    border: 1px solid #e6e5ff;
    border-radius: 4px
}

.mega-menu-item li a {
    display: flex !important;
    align-items: center;
    padding: 6px 12px !important;
    border: 1px solid transparent;
    width: 100%
}

.mega-menu-item li a img {
    margin-right: 16px;
    padding: 10px;
    max-width: max-content;
    background: #f0f0ff;
    border-radius: 4px
}

.has-dropdown.mega-menu {
    position: static !important
}

.has-dropdown.mega-menu:hover>a::after,
.has-dropdown.project-a-after:hover>a::after {
    content: "";
    color: var(--color-primary)
}

.mega-menu-item.with-list {
    gap: 0
}

.mega-menu-item.with-list li a {
    border: none !important;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 12px !important;
    transition: .3s;
    line-height: 1
}

.mega-menu-item.with-list li a i {
    font-size: 12px
}

.mega-menu-item.with-list li a.active {
    border: none !important;
    border-radius: 0 !important;
    background: rgba(0, 0, 0, 0.04);
    color: var(--color-primary)
}

.mega-menu-item.with-list li:hover a {
    border: none !important;
    border-radius: 0 !important;
    background: rgba(0, 0, 0, 0.04);
    color: var(--color-primary)
}

li.has-dropdown .submenu li a.active {
    border: none !important;
    gap: 12px;
    border-radius: 0 !important;
    background: rgba(0, 0, 0, 0.04);
    color: var(--color-primary)
}

ul.mega-menu-item.parent-nav {
    gap: 0 !important
}

@keyframes invZoomInOutAnim {
    0% {
        transform: scale(1)
    }

    100% {
        transform: scale(0.9)
    }
}

@media(max-width:1400px) {
    .header-mid-one-wrapper .header-right {
        flex-basis: 30%
    }

    .main-footer-one-area .single-footer-inner.company {
        width: 14%
    }
}

@media(max-width:1400px) and (min-width:1200px) {
    .section-title-area-4 .section-title {
        font-size: 44px
    }

    header.header-five .header-mid-one-wrapper .header-right,
    header.header-seven .header-mid-one-wrapper .header-right {
        flex-basis: 30%
    }

    .tmp-about-area.area-4 .left-side-content .section-title-area-4 .section-title {
        font-size: 40px
    }
}

@media(max-width:1440px) and (min-width:1200px) {
    .main-footer-one-area {
        gap: 17px
    }

    .service-wrapper6 {
        padding: 20px 25px
    }

    .service-wrapper6 h6 {
        font-size: 16px
    }
}

@media(max-width:1200px) {
    .tmp-counter-area .counter-inner {
        padding: 40px 90px
    }

    .tmp-service-area .service-wrapper-area {
        margin-top: 50px
    }

    .footer-cta-area {
        padding: 65px 40px 70px
    }

    .main-footer-one-area .single-footer-inner.company {
        width: 13%
    }

    .main-footer-one-area .single-footer-inner.service {
        width: 18%
    }

    .main-footer-one-area .single-footer-inner.contact {
        width: 28%
    }

    .main-footer-one-area .single-footer-inner,
    .main-footer-one-area .single-footer-inner.newsletter {
        width: 30%
    }

    .header-mid-one-wrapper .logo-area,
    header.header-four .header-mid-one-wrapper .logo-area {
        flex-basis: 25%
    }

    .tmp-banner-slider-area2::after {
        max-width: 400px
    }

    .section-title-area-4 .section-title {
        line-height: 1.3;
        font-size: 36px
    }

    header.header-five .header-top,
    header.header-seven .header-top,
    header.header-five .header-mid-one-wrapper,
    header.header-seven .header-mid-one-wrapper {
        padding: 0 40px
    }

    header.header-seven .header-mid-one-wrapper .header-right {
        flex-basis: 30%
    }

    header.header-seven .header-mid-one-wrapper .header-right {
        gap: 20px
    }

    .header-mid-one-wrapper .header-right,
    header.header-three .header-mid-one-wrapper .header-right {
        flex-basis: 35%;
        gap: 20px
    }

    header.header-seven .header-mid-one-wrapper .nav-area {
        margin-left: 25px
    }

    .tmp-top-contact-area .section-inner .desc {
        max-width: 100%
    }
}

@media(max-width:1200px) and (min-width:992px) {
    .tmp-get-in-touch-area .section-inner .content {
        margin-left: 0;
        gap: 140px
    }

    .header-mid-one-wrapper .header-right .single-component .tmp-btn {
        padding: 15px 25px 14px
    }

    .header-mid-one-wrapper .header-right,
    header.header-three .header-mid-one-wrapper .header-right {
        gap: 14px;
        flex-basis: 60%
    }

    .nav-area ul li a {
        font-size: 14px
    }

    .header-mid-one-wrapper .logo-area::after {
        clip-path: polygon(92% 0, 101% 0, 80% 100%, 71% 100%)
    }

    .tmp-about-area.area-4 .left-side-content .section-title-area-4 .section-title {
        font-size: 34px
    }

    .service-wrapper7 {
        padding: 40px 25px
    }

    .service-wrapper7 .title {
        font-size: 18px
    }
}

@media(max-width:991px) {
    .tmp-service-area .service-wrapper-area {
        margin-top: 15px
    }

    .header-mid-one-wrapper .logo-area,
    .header-mid-one-wrapper .logo-area,
    header.header-four .header-mid-one-wrapper .logo-area {
        flex-basis: 30%
    }

    .tmp-counter-area .counter-inner {
        flex-wrap: wrap;
        gap: 30px
    }

    .tmp-counter-area .counter-inner .content {
        width: 47%
    }

    .tmp-case-studies-area .section-inner {
        padding-bottom: 50px
    }

    .footer-cta-area .cta-area-inner {
        flex-direction: column;
        align-items: start;
        gap: 15px
    }

    .main-footer-one-area .single-footer-inner {
        width: 41%
    }

    .main-footer-one-area .single-footer-inner.service,
    .main-footer-one-area .single-footer-inner.company {
        width: 25%
    }

    .main-footer-one-area .single-footer-inner.contact {
        width: 40%
    }

    .header-mid-one-wrapper .logo-area::before {
        right: 5px
    }

    header.header-four .header-mid-one-wrapper .logo-area::after,
    .header-mid-one-wrapper .logo-area::after {
        clip-path: polygon(92% 0, 100% 0, 80% 100%, 72% 100%)
    }

    .section-title-area-3 .section-title {
        line-height: 46px
    }

    .tmp-get-in-touch-area .section-inner .content {
        margin-left: 0
    }

    .tmp-working-process-area2 .section-inner::after {
        display: none
    }

    .tmp-banner-slider-area2::after {
        display: none
    }

    .order-change {
        order: -1
    }

    .about-image-area3 {
        margin-bottom: 50px
    }

    .tmp-gallery-area .section-inner {
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 15px
    }

    .tmp-banner-slider-area3 {
        padding: 140px 0 120px
    }

    header.header-seven .header-mid-one-wrapper .logo-area {
        flex-basis: 100%
    }

    header.header-seven .header-mid-one-wrapper .header-right {
        flex-basis: 70%
    }

    .tmp-banner-main-area.area-5 {
        padding: 0 20px
    }

    .header-mid-one-wrapper .header-right {
        flex-basis: 50%
    }

    .nav-area {
        display: none
    }

    .service-wrapper7 {
        padding: 25px
    }

    header.header-seven .header-mid-one-wrapper .header-right {
        flex-basis: 75%
    }

    .tmp-counter-area .counter-inner {
        justify-content: center
    }

    .tmp-application-form-area {
        flex-direction: column;
        padding: 20px;
        gap: 50px
    }

    .tmp-top-contact-area .section-inner {
        flex-direction: column;
        align-items: flex-start
    }
}

@media(max-width:768px) {

    .header-mid-one-wrapper .logo-area,
    header.header-four .header-mid-one-wrapper .logo-area {
        padding: 20px 0;
        flex-basis: 44%
    }

    .container-3,
    .container-2,
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important
    }

    .tmp-counter-area .counter-inner {
        padding: 40px
    }

    .tmp-about-area {
        padding-bottom: 60px !important
    }

    .main-footer-one-area .single-footer-inner {
        width: 45%
    }

    .main-footer-one-area .single-footer-inner.service,
    .main-footer-one-area .single-footer-inner.company {
        width: 45%
    }

    .footer-one {
        padding-left: 15px;
        padding-right: 15px
    }

    .copyright-area-one .wrapper {
        text-align: center !important
    }

    .copyright-area-one .copyright-links {
        justify-content: center;
        flex-wrap: wrap
    }

    .header-mid-one-wrapper .logo-area::after {
        clip-path: polygon(92% 0, 100% 0, 77% 100%, 69% 100%)
    }

    .tmp-project-area.two .section-inner {
        padding: 0 15px
    }

    .section-title-area-3 .section-title {
        line-height: 1.4
    }

    .tmp-get-in-touch-area .section-inner .content {
        gap: 20px;
        align-items: self-start
    }

    .tmp-get-in-touch-area .section-inner .icon a {
        height: 80px;
        width: 80px;
        line-height: 85px;
        font-size: 24px
    }

    .tmp-testimonials-area.area-4 .section-inner {
        margin: 40px 15px 0
    }

    .main-footer-one-area {
        gap: 35px
    }

    .tmp-service-area.area-5 {
        margin: 0
    }

    .section-title-area-4 .section-title {
        font-size: 32px
    }

    .header-mid-one-wrapper .header-right .single-component a.tmp-btn,
    header.header-four .header-mid-one-wrapper.wrapper-two .header-right .single-component .tmp-btn,
    header.header-seven .header-mid-one-wrapper .header-right .single-component a.tmp-btn {
        display: none
    }

    header.header-seven .header-mid-one-wrapper .header-right .single-component .menu-area,
    header.header-four .header-mid-one-wrapper .header-right .single-component .menu-area,
    .header-mid-one-wrapper .header-right .single-component .menu-area {
        margin-left: 0
    }

    .tmp-counter-area .counter-inner .content {
        width: 46%;
        padding: 25px
    }
}

@media(max-width:768px) and (min-width:576px) {
    .service-wrapper6 {
        padding: 20px 18px
    }

    .service-wrapper6 h6 {
        font-size: 16px
    }
}

@media(max-width:576px) {
    .tmp-service-area .service-wrapper-area {
        margin-top: 15px
    }

    .header-mid-one-wrapper {
        padding: 0 10px
    }

    .header-mid-one-wrapper .logo-area::after {
        display: none
    }

    .tmp-counter-area .counter-inner {
        gap: 15px
    }

    .tmp-counter-area .counter-inner {
        padding: 40px 15px
    }

    .tmp-counter-area .counter-inner .content {
        width: 47%
    }

    .tmp-counter-area .counter-inner .content .title {
        font-size: 40px;
        margin-bottom: 8px
    }

    .tmp-counter-area .counter-inner .content p {
        font-size: 13px
    }

    .tmp-form-area {
        padding: 25px
    }

    .footer-cta-area .cta-area-inner .cta-title {
        font-size: 28px
    }

    .main-footer-one-area .single-footer-inner {
        width: 100%
    }

    .main-footer-one-area .single-footer-inner.service,
    .main-footer-one-area .single-footer-inner.company {
        width: 100%
    }

    .main-footer-one-area .single-footer-inner.contact {
        width: 100%
    }

    .footer-cta-area {
        padding: 35px 25px 35px
    }

    .header-mid-one-wrapper .logo-area,
    header.header-four .header-mid-one-wrapper .logo-area {
        flex-basis: 60%
    }

    .section-title-area-3 .section-title {
        line-height: 36px
    }

    .tmp-get-in-touch-area .section-inner .icon {
        display: none
    }

    .tmp-btn {
        padding: 12px 20px;
        height: 50px
    }

    .cta-bg-1,
    .tmp-working-process-area2 {
        margin: 0
    }

    .section-title-area-3 .sub-title {
        font-size: 14px;
        line-height: 20px
    }

    .section-title-area-4 .sub-title {
        font-size: 16px
    }

    .section-title-area-4 .section-title {
        font-size: 30px
    }

    .tmp-contact-area .left-side-content .content {
        margin-bottom: 40px
    }

    .tmp-team-area3 .section-inner {
        margin-right: 1px;
        margin-left: 1px
    }

    header.header-seven .header-mid-one-wrapper {
        padding: 0 20px
    }
}

@media(max-width:450px) {
    .tmp-service-area .service-wrapper-area {
        margin-top: 25px
    }

    .tmp-form-area form .desc {
        font-size: 13px
    }

    .footer-cta-area .cta-area-inner .cta-title {
        font-size: 20px;
        line-height: 30px
    }

    .tmp-get-in-touch-area .section-inner .content {
        padding: 30px 20px
    }

    .section-title-area-4 .section-title {
        font-size: 26px
    }
}

@media only screen and (max-width:450px) and (max-width:767px) {
    .section-title-area-4 .section-title br {
        display: none
    }
}

@media(max-width:450px) {
    .section-title-area-4 .sub-title {
        font-size: 16px
    }

    .section-title-area-4 {
        flex-direction: column;
        align-items: self-start !important;
        gap: 20px
    }

    .tmp-counter-area .counter-inner .content p {
        font-size: 14px;
        line-height: 1.4
    }

    .tmp-counter-area .counter-inner .content {
        padding: 25px 0 25px 15px
    }
}

.mfp-wrap {
    top: 0 !important;
    left: 0;
    width: 100%;
    height: 100% !important;
    z-index: 1043;
    position: fixed !important;
    outline: none !important;
    -webkit-backface-visibility: hidden
}

.mfp-container,
.mfp-bg {
    opacity: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out
}

.mfp-ready .mfp-container {
    opacity: 1
}

.mfp-bg {
    background: rgba(0, 0, 0, 0.8);
    opacity: 1;
    backdrop-filter: blur(15px)
}

.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    top: 16px;
    right: -24px;
    font-size: 30px;
    font-weight: 400;
    transition: .4s;
    opacity: 1;
    width: 50px;
    height: 50px;
    background: #192335;
    text-align: center;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    color: var(--color-white)
}

.mfp-iframe-holder .mfp-close,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    top: -60px;
    right: -50px;
    font-size: 30px;
    font-weight: 400;
    transition: .4s;
    opacity: 1;
    width: 50px;
    height: 50px;
    background: rgba(25, 35, 53, 0.3137254902);
    text-align: center;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    color: var(--color-white)
}

.mfp-with-zoom .mfp-image-holder .mfp-close {
    top: 14px;
    right: -26px;
    background: #2a2d33
}

@media only screen and (max-width:767px) {
    .mfp-with-zoom .mfp-image-holder .mfp-close {
        top: 56px;
        right: 20px
    }
}

@media only screen and (max-width:576px) {
    .mfp-with-zoom .mfp-image-holder .mfp-close {
        top: 47px;
        right: 9px
    }
}

.mfp-iframe-scaler iframe {
    border-radius: 10px
}

.tmp-avatars {
    min-width: 70px;
    max-width: 70px
}

.tmp-avatars img {
    border-radius: 100%;
    width: 100%;
    background: var(--border-color);
    padding: 4px;
    border: 2px solid var(--color-border);
    object-fit: cover
}

.tmp-filter-widget-wrapper {
    box-shadow: var(--shadow-1);
    padding: 30px;
    border-radius: 6px;
    background: #fff;
    border: 0;
    outline: 0;
    cursor: pointer;
    position: relative;
    color: var(--color-heading-1)
}

.tmp-filter-widget-wrapper .tmp-single-widget {
    background: var(--color-white);
    padding-top: 30px
}

.tmp-filter-widget-wrapper .tmp-single-widget:first-child {
    padding-top: 0
}

.tmp-filter-widget-wrapper .has-show-more .has-show-more-inner-content {
    max-height: 120px;
    overflow: hidden
}

.tmp-filter-widget-wrapper .tmp-show-more-btn {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    display: block;
    margin-top: 5px;
    position: relative;
    padding: 3px 0;
    cursor: pointer
}

.tmp-filter-widget-wrapper .has-show-more.active .has-show-more-inner-content {
    max-height: inherit !important
}

.tmp-filter-widget-wrapper .tmp-show-more-btn::before {
    background: linear-gradient(rgba(255, 255, 255, 0) 0, #fff 100%);
    position: absolute;
    content: "";
    left: 0;
    bottom: 100%;
    width: 100%;
    height: 80px
}

.tmp-filter-widget-wrapper .tmp-show-more-btn::after {
    content: "";
    position: absolute;
    font-family: "fontawesome";
    right: 0;
    top: 50%;
    transform: translateY(-50%)
}

.tmp-filter-widget-wrapper .tmp-show-more-btn.active::before {
    display: none
}

.tmp-filter-widget-wrapper .tmp-show-more-btn.active::after {
    content: ""
}

.tmp-career-details-left {
    padding: 30px 45px;
    box-shadow: var(--shadow-1);
    border-radius: 8px
}

@media only screen and (max-width:576px) {
    .tmp-career-details-left {
        padding: 20px 15px
    }
}

.tmp-career-details-left .tmp-details-title {
    font-size: 30px;
    line-height: 1.2
}

.tmp-career-details-left .tmp-details-list ul li {
    padding: 8px 0;
    border-top: 1px dashed #eee;
    border-bottom: 1px dashed #eee;
    padding-left: 20px;
    position: relative
}

.tmp-career-details-left .tmp-details-list ul li::after {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 8px;
    width: 8px;
    background: var(--color-primary);
    border-radius: 50%
}

.tmp-career-details-left .tmp-details-list ul li span {
    display: flex;
    align-items: center;
    gap: 15px
}

.tmp-career-details-right .tmp-details-list ul li {
    margin-bottom: 15px
}

.tmp-career-details-right .tmp-details-list ul li span svg {
    margin-right: 15px
}

@media only screen and (max-width:576px) {
    .tmp-career-details-right .tmp-details-list ul li span svg {
        margin-right: 5px
    }
}

.tmp-career-details-right a {
    border: 0;
    margin: 55px auto 0 0 !important
}

.site-preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #fff;
    padding: 50px 0;
    transition: opacity .45s ease, visibility .45s ease
}

.site-preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

.site-preloader .preloader-wrap {
    max-width: 1330px;
    margin: 0 auto
}

@media only screen and (max-width:1199px) {
    .site-preloader .preloader-wrap {
        max-width: 980px
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .site-preloader .preloader-wrap {
        max-width: 750px
    }
}

@media only screen and (max-width:767px) {
    .site-preloader .preloader-wrap {
        max-width: 650px
    }
}

.site-preloader .skeleton-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px
}

.site-preloader .skeleton-nav {
    display: flex;
    gap: 14px
}

.site-preloader .skeleton-hero {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 32px
}

.site-preloader .skeleton-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px
}

.site-preloader .skeleton-card {
    padding: 16px;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-1)
}

.site-preloader .inw-line,
.site-preloader .inw-box {
    position: relative;
    overflow: hidden;
    background: #eceff5
}

.site-preloader .inw-line::after,
.site-preloader .inw-box::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: skeleton-loading 1.25s infinite
}

.site-preloader .inw-line {
    height: 14px;
    border-radius: 999px;
    margin-bottom: 14px
}

.site-preloader .inw-box {
    border-radius: 18px
}

.site-preloader .logo-line {
    width: 170px;
    height: 28px
}

.site-preloader .nav-line {
    width: 82px;
    height: 13px
}

.site-preloader .hero-title {
    width: 82%;
    height: 38px
}

.site-preloader .hero-title-sm {
    width: 58%;
    height: 38px
}

.site-preloader .hero-text {
    width: 92%
}

.site-preloader .hero-text-sm {
    width: 68%
}

.site-preloader .hero-btn {
    width: 145px;
    height: 46px;
    border-radius: 999px;
    margin-top: 20px
}

.site-preloader .hero-img {
    width: 100%;
    height: 360px
}

.site-preloader .card-img {
    width: 100%;
    height: 170px;
    margin-bottom: 16px
}

.site-preloader .card-title {
    width: 78%;
    height: 18px
}

.site-preloader .card-text {
    width: 92%
}

.site-preloader .card-price {
    width: 45%;
    height: 18px;
    margin-top: 18px
}

@media(max-width:900px) {
    .site-preloader .skeleton-hero {
        grid-template-columns: 1fr
    }

    .site-preloader .skeleton-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:576px) {
    .site-preloader {
        padding: 18px
    }

    .site-preloader .skeleton-nav {
        display: none
    }

    .site-preloader .skeleton-grid {
        grid-template-columns: 1fr
    }
}

@keyframes skeleton-loading {
    100% {
        transform: translateX(100%)
    }
}

::-webkit-scrollbar {
    width: 10px
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-primary), #011425);
    border-radius: 10px;
    border: 2px solid #f1f1f1
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #011425, var(--color-primary))
}

html {
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) #f1f1f1
}

[dir=rtl] .inv-text-anim {
    direction: rtl;
    unicode-bidi: isolate
}

[dir=rtl] .section-title-area-4 .sub-title::after {
    right: auto;
    left: -50px;
    background: linear-gradient(270deg, var(--color-primary), rgba(33, 38, 45, 0)) !important
}

[dir=rtl] header.header-seven .header-mid-one-wrapper .nav-area {
    margin-left: 0;
    margin-right: 100px
}

[dir=rtl] .tmp-btn.hover-icon-reverse .icon-reverse-wrapper i {
    padding-left: 8px;
    transform: scaleX(-1)
}

[dir=rtl] .tmp-btn.hover-icon-reverse:hover .icon-reverse-wrapper .btn-text {
    transition-delay: .1s;
    transform: translateX(-23px)
}

[dir=rtl] .swiper {
    direction: initial
}

[dir=rtl] .swiper .swiper-wrapper {
    direction: ltr
}

[dir=rtl] .swiper .swiper-wrapper .swiper-slide {
    direction: rtl
}

[dir=rtl] .footer-cta-area.cta-two {
    background-color: #292f3a
}

[dir=rtl] .tmp-counter-area .counter-inner .content .title {
    direction: ltr
}

[dir=rtl] .progress-wrap {
    right: auto;
    left: 30px
}

[dir=rtl] .side-bar {
    left: -100%;
    right: auto;
    border-radius: 0 10px 10px 0
}

[dir=rtl] .side-bar.show {
    left: 0;
    overflow-y: auto
}

@media(min-width:992px) {
    [dir=rtl] .text-lg-start {
        text-align: right !important
    }
}

[dir=rtl] .hover-moving-primary::after {
    left: auto;
    right: 0;
    transform-origin: bottom left
}

[dir=rtl] .hover-moving-primary:hover::after {
    transform-origin: bottom right;
    transform: scaleX(1)
}

[dir=rtl] .about-card-new .title {
    direction: ltr;
    text-align: right
}

[dir=rtl] .offcanvas-search .form-search .btn-submit1 {
    right: auto;
    left: 8px
}

[dir=rtl] .side-bar .inner-main-wrapper-desk.style-one-sidebar .header-bottom-qhick-action p.disc {
    padding-left: 18%;
    padding-right: 0
}

[dir=rtl] .tmp-mega-menu .wrapper.inner-page .inversweb-short-title {
    text-align: right;
    padding-right: 8px
}

[dir=rtl] .tmp-mega-menu .wrapper.inner-page .inversweb-short-title::after {
    left: auto;
    right: 8px
}

[dir=rtl] li.has-dropdown .submenu li a {
    text-align: right
}

[dir=rtl] li.has-dropdown .submenu li.has-third-lev .submenu {
    left: auto;
    right: 100%
}

[dir=rtl] li.has-dropdown .submenu li.has-third-lev>a i {
    transform: scaleX(-1)
}

[dir=rtl] .has-dropdown.mega-menu>a::after {
    right: auto;
    left: -16px
}

[dir=rtl] .nav-area ul li.main-nav {
    padding: 29px 0 29px 20px
}

[dir=rtl] .mobile-menu nav ul li.has-droupdown>a::after {
    left: 0;
    right: auto
}

.custom-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 20px
}

.seo-audit-banner {
    background-color: #0f4e81;
    border-radius: 12px;
    padding: 50px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 60px;
    box-shadow: 0 8px 24px rgba(15, 78, 129, 0.2)
}

.seo-banner-text h2 {
    color: #fff;
    font-size: 32px;
    margin: 0 0 10px 0;
    font-weight: 600
}

.seo-banner-text p {
    color: #f1f5f9;
    margin: 0;
    font-size: 18px;
    font-weight: 300
}

.btn-sky-blue {
    background-color: #2fb6f0;
    color: #0f4e81;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: all .3s ease;
    white-space: nowrap
}

.btn-sky-blue:hover {
    background-color: #fff;
    color: #0f4e81;
    box-shadow: 0 4px 12px rgba(47, 182, 240, 0.4)
}

.sister-company-section {
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 60px;
    box-shadow: 0 10px 30px rgba(107, 114, 128, 0.05)
}

.sister-logo-card {
    background-color: #fff;
    padding: 50px 30px;
    border-radius: 12px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    box-shadow: 0 4px 20px rgba(15, 78, 129, 0.08);
    border-top: 5px solid #2fb6f0
}

.sister-logo-card h3 {
    color: #0f4e81;
    font-size: 28px;
    margin: 0 0 10px 0;
    font-weight: 700
}

.sister-logo-card span {
    color: #6b7280;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600
}

.sister-content {
    flex: 2;
    min-width: 300px
}

.sister-content h2 {
    color: #0f4e81;
    margin: 0 0 20px 0;
    font-size: 34px;
    line-height: 1.2
}

.sister-content p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 30px
}

.btn-outline-navy {
    display: inline-block;
    border: 2px solid #0f4e81;
    color: #0f4e81;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: all .3s ease
}

.btn-outline-navy:hover {
    background-color: #0f4e81;
    color: #fff
}

@media(max-width:992px) {
    .sister-company-section {
        flex-direction: column;
        padding: 40px 30px;
        gap: 40px
    }

    .sister-logo-card {
        width: 100%
    }
}

@media(max-width:768px) {
    .seo-audit-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px
    }

    .seo-banner-text h2 {
        font-size: 26px
    }

    .sister-content h2 {
        font-size: 28px
    }
}

.global-presence-section {
    padding: 80px 20px;
    background-color: #fff
}

.global-presence-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px auto
}

.global-presence-header .sub-title {
    color: #2fb6f0;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    gap: 15px
}

.global-presence-header .sub-title::before,
.global-presence-header .sub-title::after {
    content: "";
    width: 30px;
    height: 2px;
    background-color: #2fb6f0
}

.global-presence-header h2 {
    color: #0f4e81;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2
}

.global-presence-header p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.8
}

.presence-feature-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(15, 78, 129, 0.15);
    max-width: 1320px;
    margin: 0 auto
}

.presence-feature-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    transition: transform .5s ease
}

.presence-feature-card:hover img {
    transform: scale(1.03)
}

.presence-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 50px 40px 50px;
    background: linear-gradient(to top, rgba(15, 78, 129, 0.95) 0, rgba(15, 78, 129, 0.7) 60%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none
}

.presence-overlay-content .eyebrow {
    color: #2fb6f0;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block
}

.presence-overlay-content h3 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    max-width: 850px
}

.presence-overlay-content p {
    color: #f3f4f6;
    font-size: 15px;
    line-height: 1.6;
    max-width: 950px;
    margin-bottom: 0
}

@media(max-width:992px) {
    .global-presence-header h2 {
        font-size: 32px
    }

    .presence-overlay-content h3 {
        font-size: 26px
    }

    .presence-feature-card img {
        height: 450px
    }
}

@media(max-width:768px) {
    .global-presence-section {
        padding: 60px 15px
    }

    .global-presence-header h2 {
        font-size: 28px
    }

    .global-presence-header .sub-title::before,
    .global-presence-header .sub-title::after {
        display: none
    }

    .presence-feature-card img {
        height: 400px
    }

    .presence-overlay-content {
        padding: 50px 25px 30px 25px
    }

    .presence-overlay-content h3 {
        font-size: 22px
    }

    .presence-overlay-content p {
        font-size: 14px
    }
}

.steel-search-section {
    padding: 80px 20px;
    background-color: #fff;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif
}

.steel-search-header {
    text-align: center;
    margin-bottom: 50px
}

.steel-search-header .eyebrow {
    color: #2fb6f0;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px
}

.steel-search-header .eyebrow::before {
    content: "";
    width: 30px;
    height: 2px;
    background-color: #2fb6f0
}

.steel-search-header h2 {
    color: #0f4e81;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2
}

.steel-search-header p {
    color: #6b7280;
    font-size: 16px;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6
}

.search-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto
}

.search-card {
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(107, 114, 128, 0.05);
    transition: transform .3s ease, box-shadow .3s ease
}

.search-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(15, 78, 129, 0.1)
}

.circle-progress-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 25px auto
}

.circle-progress-wrapper svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg)
}

.circle-progress-wrapper circle {
    fill: none;
    stroke-width: 6;
    stroke-linecap: round
}

.bg-circle {
    stroke: #e5e7eb
}

.progress-circle {
    stroke-dasharray: 251.2;
    stroke-dashoffset: 251.2;
    transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1)
}

.card-1 .progress-circle,
.card-3 .progress-circle {
    stroke: #2fb6f0
}

.card-2 .progress-circle,
.card-4 .progress-circle {
    stroke: #0f4e81
}

.circle-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: 700;
    color: #0f4e81
}

.search-card h3 {
    color: #0f4e81;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4
}

.search-card p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    margin: 0
}

@media(max-width:1024px) {
    .search-cards-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:768px) {
    .steel-search-header h2 {
        font-size: 28px
    }

    .steel-search-section {
        padding: 60px 15px
    }
}

@media(max-width:600px) {
    .search-cards-grid {
        grid-template-columns: 1fr
    }
}

.eme-service-feature {
    background-color: #fff;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(15, 78, 129, 0.06)
}

.eme-service-visual {
    position: relative;
    width: 100%;
    min-height: 280px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e0f2fe;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end
}

.eme-service-visual img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1
}

.eme-service-visual .large-number {
    position: relative;
    z-index: 2;
    font-size: 100px;
    font-weight: 800;
    color: rgba(47, 182, 240, 0.4);
    line-height: .8;
    padding: 15px 20px
}

.eme-service-feature .content {
    padding: 20px 40px 20px 20px
}

.eme-service-feature .title {
    color: #0f4e81;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px
}

.eme-service-feature .sub-title {
    color: #0f4e81;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 20px
}

.eme-service-feature p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 25px
}

.btn-sky-pill {
    background-color: #2fb6f0;
    color: #0f4e81;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    display: inline-block;
    transition: all .3s ease
}

.btn-sky-pill:hover {
    background-color: #0f4e81;
    color: #fff
}

@media(max-width:992px) {
    .eme-service-feature .content {
        padding: 30px 10px 10px 10px
    }
}

.eme-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 120px 0 110px;
    background: linear-gradient(135deg, #061f35 0, #0f4e81 55%, #0b3b64 100%)
}

.eme-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: .45;
    z-index: -1;
    pointer-events: none
}

.eme-hero-glow--left {
    width: 520px;
    height: 520px;
    left: -180px;
    top: -160px;
    background: #2fb6f0;
    opacity: .22
}

.eme-hero-glow--right {
    width: 620px;
    height: 620px;
    right: -220px;
    bottom: -260px;
    background: #1a78c2;
    opacity: .3
}

.eme-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 90px 90px;
    -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 20%, transparent 78%);
    mask-image: radial-gradient(ellipse at 50% 40%, #000 20%, transparent 78%)
}

.eme-hero-row {
    row-gap: 60px
}

.eme-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 24px;
    color: #2fb6f0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    line-height: 1.4
}

.eme-hero-eyebrow-line {
    flex: 0 0 34px;
    height: 2px;
    background: #2fb6f0;
    border-radius: 2px
}

.eme-hero-title {
    color: #fff;
    font-size: 62px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -1px;
    margin: 0 0 26px
}

.eme-hero-title span {
    color: #2fb6f0
}

.eme-hero-desc {
    color: rgba(233, 242, 250, .85);
    font-size: 18px;
    line-height: 1.75;
    max-width: 620px;
    margin: 0 0 38px
}

.eme-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    margin-bottom: 44px
}

.eme-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 34px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s ease
}

.eme-hero-btn--primary {
    background: #2fb6f0;
    color: #062b4a;
    box-shadow: 0 12px 30px rgba(47, 182, 240, .28)
}

.eme-hero-btn--primary:hover {
    background: #fff;
    color: #0f4e81;
    transform: translateY(-3px)
}

.eme-hero-btn--primary i {
    transition: transform .3s ease
}

.eme-hero-btn--primary:hover i {
    transform: translateX(5px)
}

.eme-hero-btn--ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .38)
}

.eme-hero-btn--ghost:hover {
    background: rgba(255, 255, 255, .1);
    border-color: #2fb6f0;
    color: #fff;
    transform: translateY(-3px)
}

.eme-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 42px;
    list-style: none;
    margin: 0;
    padding: 0
}

.eme-hero-trust li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 500
}

.eme-hero-trust i {
    color: #2fb6f0;
    font-size: 14px
}

.eme-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px
}

.eme-hero-rings {
    position: relative;
    width: 460px;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center
}

.eme-hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(47, 182, 240, .3)
}

.eme-hero-ring--outer {
    inset: 0;
    border-color: rgba(47, 182, 240, .22)
}

.eme-hero-ring--mid {
    inset: 13%;
    border-width: 2px;
    border-color: rgba(47, 182, 240, .55);
    box-shadow: inset 0 0 60px rgba(47, 182, 240, .12)
}

.eme-hero-core {
    position: relative;
    width: 44%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    background: radial-gradient(circle at 35% 30%, #1d7dbe 0, #0f4e81 70%);
    border: 1px solid rgba(47, 182, 240, .6);
    box-shadow: 0 0 60px rgba(47, 182, 240, .25)
}

.eme-hero-core strong {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1
}

.eme-hero-core span {
    color: #9cd8f7;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase
}

.eme-hero-dots {
    position: absolute;
    background-image: radial-gradient(circle, rgba(47, 182, 240, .75) 2px, transparent 2px)
}

.eme-hero-dots--top,
.eme-hero-dots--bottom {
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 42px;
    background-size: 6px 14px
}

.eme-hero-dots--top {
    top: -52px
}

.eme-hero-dots--bottom {
    bottom: -52px
}

.eme-hero-dots--left,
.eme-hero-dots--right {
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 6px;
    background-size: 14px 6px
}

.eme-hero-dots--left {
    left: -52px
}

.eme-hero-dots--right {
    right: -52px
}

.eme-hero-stat {
    position: absolute;
    left: -10px;
    bottom: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 26px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 20px 45px rgba(3, 22, 39, .35)
}

.eme-hero-stat h3 {
    margin: 0;
    color: #0f4e81;
    font-size: 38px;
    font-weight: 800;
    line-height: 1
}

.eme-hero-stat h3 sup {
    font-size: 24px;
    top: -.4em
}

.eme-hero-stat p {
    margin: 0;
    color: #0f4e81;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    line-height: 1.5
}

@media(max-width:1399px) {
    .eme-hero-title {
        font-size: 54px
    }

    .eme-hero-rings {
        width: 400px
    }
}

@media(max-width:1199px) {
    .eme-hero {
        padding: 100px 0 90px
    }

    .eme-hero-title {
        font-size: 46px
    }

    .eme-hero-rings {
        width: 340px
    }

    .eme-hero-visual {
        min-height: 440px
    }
}

@media(max-width:991px) {
    .eme-hero {
        padding: 80px 0 70px
    }

    .eme-hero-title {
        font-size: 42px
    }

    .eme-hero-desc {
        font-size: 17px
    }

    .eme-hero-visual {
        min-height: 420px;
        margin-top: 10px
    }

    .eme-hero-stat {
        left: 0;
        bottom: 0
    }
}

@media(max-width:767px) {
    .eme-hero {
        padding: 64px 0 60px
    }

    .eme-hero-eyebrow {
        font-size: 12px;
        letter-spacing: 1.8px
    }

    .eme-hero-title {
        font-size: 34px;
        letter-spacing: -.4px
    }

    .eme-hero-desc {
        font-size: 16px;
        margin-bottom: 30px
    }

    .eme-hero-actions {
        gap: 14px;
        margin-bottom: 32px
    }

    .eme-hero-btn {
        width: 100%;
        padding: 16px 24px
    }

    .eme-hero-trust {
        gap: 12px 24px
    }

    .eme-hero-trust li {
        font-size: 14px
    }

    .eme-hero-rings {
        width: 260px
    }

    .eme-hero-visual {
        min-height: 360px
    }

    .eme-hero-dots {
        display: none
    }

    .eme-hero-stat {
        position: relative;
        left: auto;
        bottom: auto;
        margin-top: 24px;
        padding: 16px 20px
    }

    .eme-hero-visual {
        flex-direction: column;
        justify-content: center
    }
}

@media(max-width:575px) {
    .eme-hero-title {
        font-size: 30px
    }

    .eme-hero-core strong {
        font-size: 30px
    }
}

.eme-service-visual {
    position: relative;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    background: #0f4e81;
    overflow: hidden
}

.eme-service-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
    background-size: 44px 44px;
    -webkit-mask-image: radial-gradient(circle at 50% 45%, #000 20%, transparent 80%);
    mask-image: radial-gradient(circle at 50% 45%, #000 20%, transparent 80%)
}

.eme-service-visual::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 1px solid rgba(47, 182, 240, .35);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.eme-service-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 118px;
    height: 118px;
    border-radius: 50%;
    background: rgba(47, 182, 240, .14);
    border: 1px solid rgba(47, 182, 240, .5);
    color: #2fb6f0;
    transition: all .35s ease
}

.eme-service-icon svg {
    width: 54px;
    height: 54px
}

.eme-service-feature:hover .eme-service-icon {
    background: rgba(47, 182, 240, .24);
    transform: translateY(-4px)
}

.eme-service-visual .large-number {
    position: absolute;
    z-index: 2;
    right: 6px;
    bottom: 0;
    padding: 0;
    color: rgba(255, 255, 255, .16);
    font-size: 110px;
    font-weight: 800;
    line-height: .82
}

@media(max-width:991px) {
    .eme-service-visual {
        min-height: 240px
    }

    .eme-service-icon {
        width: 96px;
        height: 96px
    }

    .eme-service-icon svg {
        width: 44px;
        height: 44px
    }

    .eme-service-visual .large-number {
        font-size: 84px
    }
}

@media(max-width:575px) {
    .eme-service-visual {
        min-height: 200px
    }

    .eme-service-visual::after {
        width: 180px;
        height: 180px
    }

    .eme-service-visual .large-number {
        font-size: 66px
    }
}

.presence-feature-card {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    align-items: stretch;
    background: #0f4e81
}

.presence-feature-card img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    object-position: center center
}

.presence-overlay-content {
    position: static;
    width: auto;
    padding: 56px 52px;
    background: #0f4e81;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.presence-overlay-content .eyebrow {
    color: #7fd3f7;
    margin-bottom: 16px
}

.presence-overlay-content h3 {
    font-size: 30px;
    line-height: 1.28;
    margin-bottom: 16px;
    max-width: none
}

.presence-overlay-content p {
    color: rgba(238, 246, 252, .88);
    font-size: 16px;
    line-height: 1.75;
    max-width: none
}

@media(max-width:1199px) {
    .presence-overlay-content {
        padding: 44px 38px
    }

    .presence-overlay-content h3 {
        font-size: 26px
    }

    .presence-feature-card img {
        min-height: 440px
    }
}

@media(max-width:991px) {
    .presence-feature-card {
        grid-template-columns: 1fr
    }

    .presence-feature-card img {
        min-height: 0;
        height: 380px
    }

    .presence-overlay-content {
        padding: 40px 32px
    }

    .presence-overlay-content h3 {
        font-size: 24px
    }
}

@media(max-width:575px) {
    .presence-feature-card {
        border-radius: 16px
    }

    .presence-feature-card img {
        height: 280px
    }

    .presence-overlay-content {
        padding: 32px 24px
    }

    .presence-overlay-content h3 {
        font-size: 21px
    }

    .presence-overlay-content p {
        font-size: 15px
    }
}

.eme-process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 60px;
    text-align: center
}

.eme-process-steps .single-process-item {
    position: relative;
    width: auto;
    padding: 0 20px
}

.eme-process-steps .single-process-item:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 37px;
    left: calc(50% + 56px);
    right: calc(-50% + 56px);
    border-top: 2px dashed #9bd5f0
}

.eme-process-steps .single-process-item .thumbnail {
    width: 76px;
    height: 76px;
    line-height: 1;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #2fb6f0;
    border-radius: 50%;
    background: #fff;
    position: relative;
    z-index: 2;
    transition: all .35s ease
}

.eme-process-steps .single-process-item .thumbnail .number {
    position: static;
    width: auto;
    height: auto;
    line-height: 1;
    background: transparent;
    border-radius: 0;
    color: #0f4e81;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px
}

.eme-process-steps .single-process-item:hover .thumbnail {
    background: #0f4e81;
    border-color: #0f4e81;
    transform: translateY(-4px)
}

.eme-process-steps .single-process-item:hover .thumbnail .number {
    color: #fff;
    animation: none;
    top: auto;
    left: auto
}

.eme-process-steps .single-process-item .inner-content {
    max-width: 330px;
    margin: 0 auto
}

.eme-process-steps .single-process-item .inner-content .title {
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 12px;
    color: #0f4e81
}

.eme-process-steps .single-process-item .inner-content p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0
}

@media(max-width:991px) {
    .eme-process-steps .single-process-item .inner-content .title {
        font-size: 20px
    }

    .eme-process-steps .single-process-item:not(:last-child)::before {
        left: calc(50% + 48px);
        right: calc(-50% + 48px)
    }
}

@media(max-width:767px) {
    .eme-process-steps {
        grid-template-columns: 1fr;
        gap: 44px;
        margin-top: 44px
    }

    .eme-process-steps .single-process-item {
        padding: 0
    }

    .eme-process-steps .single-process-item:not(:last-child)::before {
        top: 84px;
        left: 50%;
        right: auto;
        width: 0;
        height: 32px;
        border-top: 0;
        border-left: 2px dashed #9bd5f0
    }

    .eme-process-steps .single-process-item .thumbnail {
        margin-bottom: 20px
    }
}

.eme-faq-center {
    max-width: 920px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0
}

.eme-faq-center .accordion-one {
    width: 100%
}

@media(max-width:991px) {
    .eme-faq-center {
        max-width: 100%
    }
}

.eme-channel-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    display: block
}