﻿/*=================Scss Indexing=============
1.variables
2.typography
3.spacing
4.reset
5.forms
6.mixins
7.shortcode
8.animations
9.text-animation
10.sal
11.header
12.mobile-menu
13.button
14.nav
15.banner
16.swiper
17.funfacts
18.cta
19.about
20.common
21.service
22.projects
23.working-process
24.blog
25.blog-details
26.footer
27.search-input
28./side-bar
29.team
30.testimonials
31.faq
32.pricing
33.date-picker
34.time-picker
35.appoinment
36.awesome-feedback
37.contact
38.pre-loader.scss
39.back-to-top



==============================================  */
/* Default  */
:root {
    --color-primary: #3730A3;
    --color-secondary: #64748B;
    --color-blue: #3730A3;
    --color-sky: #10B981;
    --color-body: #6B7280;
    --color-heading-1: #111827;
    --color-title: #0F172A;
    --color-heading-dark: #0F172A;
    --transition: .3s;
    --bg-dark-1: #1F2937;
    --color-white: #fff;
    --color-border: #E2E8F0;
    --border-width: 1px;
    --radius: 10px;
    --color-success: #166534;
    --color-danger: #B91C1C;
    --color-warning: #B45309;
    --color-info: #0369A1;
    --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: 0.3s;
    --font-primary: "Red Hat Display", sans-serif;
    --font-secondary: "DM Sans", sans-serif;
    --font-3: "fontawesome";
    --font-size-b1: 16px;
    --font-size-b2: 15px;
    --font-size-b3: 22px;
    --line-height-b1: 26px;
    --line-height-b2: 26px;
    --line-height-b3: 1.7;
    --h1: 60px;
    --h2: 48px;
    --h3: 30px;
    --h4: 26px;
    --h5: 24px;
    --h6: 18px;
}



* {
    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: "DM Sans", serif;
    color: var(--color-body);
    font-weight: var(--p-regular);
    position: relative;
    overflow-x: hidden;
    margin: 0;
    background: #fff;
}

@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: 0.05;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
address,
p,
pre,
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: "Red Hat Display", serif;
    line-height: 1.4074;
    color: var(--color-heading-1);
}

h1,
.h1 {
    font-size: var(--h1);
    line-height: 1.3;
    font-weight: 700;
}

h2,
.h2 {
    font-size: var(--h2);
    line-height: 1.1;
}

h3,
.h3 {
    font-size: var(--h3);
    line-height: 1.2;
}

h4,
.h4 {
    font-size: var(--h4);
    line-height: 1.2;
}

h5,
.h5 {
    font-size: var(--h5);
    line-height: 1.2;
}

h6,
.h6 {
    font-size: var(--h6);
    line-height: 1.2;
}

    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-bold);
}

h4,
.h4,
h5,
.h5 {
    font-weight: var(--s-bold);
}

h6,
.h6 {
    font-weight: var(--s-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: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 {
    color: var(--color-heading);
}

var {
    font-family: "Red Hat Display", serif;
}

/*---------------------------
	List Style 
---------------------------*/
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: 1.3;
    }
}

@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: 1.4;
    }
}

@media only screen and (max-width: 767px) {
    h1 {
        font-size: 30px;
        line-height: 1.3;
    }
}

@media only screen and (max-width: 575px) {
    h1 {
        font-size: 28px;
        line-height: 1.3;
    }
}

@media only screen and (max-width: 479px) {
    h1 {
        font-size: 26px;
        line-height: 1.3;
    }
}

@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: 1.4;
    }
}

@media only screen and (max-width: 767px) {
    h2 {
        font-size: 32px;
        line-height: 1.4;
    }
}

@media only screen and (max-width: 575px) {
    h2 {
        font-size: 32px;
        line-height: 1.4;
    }
}

@media only screen and (max-width: 479px) {
    h2 {
        font-size: 26px;
        line-height: 1.4;
    }
}

@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: 575px) {
    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;
}


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: none;
}

    a:hover,
    a:focus,
    a:active {
        text-decoration: none;
        outline: none;
        color: var(--color-primary);
    }

    a:focus {
        outline: none;
    }

address {
    margin: 0 0 24px;
}

b,
strong {
    font-weight: bold;
}

mark {
    background: var(--color-primary);
    color: #ffffff;
}

code,
pre {
    font-size: var(--font-size-b3);
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
    color: var(--color-primary);
}

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: -0.5em;
}

sub {
    bottom: -0.25em;
}

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: 0.35em 0.625em 0.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 {
    border: 1px solid var(--color-border);
    padding: 7px 10px;
}

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;
}


cite,
em {
    font-style: italic;
}

/* BlockQuote  */

q {
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
    quotes: none;
}


    q:before,
    q:after {
        content: "";
        content: none;
    }

/* ========= Forms Styles ========= */
input,
button,
select,
textarea {
    background: transparent;
    border: 1px solid var(--color-border);
    transition: all 0.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: none;
        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 20px;
        outline: none;
        border: var(--border-width) solid var(--color-border);
        border-radius: var(--radius);
        /* -- Placeholder -- */
    }

        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);
            /* Firefox */
            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 {
            /* Internet Explorer 10-11 */
            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 {
            /* Microsoft Edge */
            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: 1;
        position: relative;
        height: auto !important;
        max-width: 18px;
        width: max-content;
    }

        input[type=checkbox] ~ label,
        input[type=radio] ~ label {
            position: relative;
            font-size: 12px;
            line-height: 17px;
            color: var(--color-body);
            font-weight: 400;
            padding-left: 25px;
            cursor: pointer;
        }

            input[type=checkbox] ~ label::before,
            input[type=radio] ~ label::before {
                content: " ";
                position: absolute;
                top: 1 px;
                left: 0;
                width: 15px;
                height: 15px;
                background-color: #5d5d7e;
                border-radius: 2px;
                transition: all 0.3s;
                border-radius: 2px;
            }

            input[type=checkbox] ~ label::after,
            input[type=radio] ~ label::after {
                content: " ";
                position: absolute;
                top: 16%;
                left: 2px;
                width: 10px;
                height: 6px;
                background-color: transparent;
                border-bottom: 2px solid #ffffff;
                border-left: 2px solid #ffffff;
                border-radius: 2px;
                transform: rotate(-45deg);
                opacity: 0;
                transition: all 0.3s;
            }

        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: 0.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);
        }

/*==============================
 *  Utilities
=================================*/

.fix {
    overflow: hidden;
}

iframe {
    width: 100%;
}

/*===========================
Background Image 
=============================*/
.bg_image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

/*===================
Custom Row
======================*/

/*===========================
    Input Placeholder
=============================*/
input:-moz-placeholder,
textarea:-moz-placeholder {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

/*=============================
	Overlay styles 
==============================*/

/*!
Animate.css - http://daneden.me/animate
Version - 3.4.0
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .animated.infinite {
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
    }

@-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);
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
}

/*jump animation */
@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);
    }
}

@-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, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

@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, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

.swing {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing;
}

@-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);
    }
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-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;
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-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 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 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;
    }
}

@keyframes fadeInUp2 {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 40%, 0);
        transform: translate3d(0, 40%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    transition: 0.2s;
}

@-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;
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-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;
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip;
}

@-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;
    }
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-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;
    }
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-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 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;
    }
}

.zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut;
}

@-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;
    }
}

@-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 jump-3 {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    50% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 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: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }

    50% {
        opacity: 0.9;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    }

    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.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 scaleIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(1.5, 1.5, 1.5);
        transform: scale3d(1.5, 1.5, 1.5);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@keyframes fadeInUp-small {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 50%, 0);
        transform: translate3d(0, 50%, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(30%, 0, 0);
        transform: translate3d(30%, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-30%, 0, 0);
        transform: translate3d(-30%, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-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.6, 0.6, 0.6);
        transform: scale3d(0.6, 0.6, 0.6);
    }

    50% {
        opacity: 1;
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

/* header  */
.header-top-area-wrapper {
    background: #20282D;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-top-area-wrapper {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .header-top-area-wrapper {
        display: none;
    }
}

.header-top-area-wrapper .header-top-one-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .header-top-area-wrapper .header-top-one-wrapper .left {
        display: flex;
        align-items: center;
    }

        .header-top-area-wrapper .header-top-one-wrapper .left .mail {
            position: relative;
        }

            .header-top-area-wrapper .header-top-one-wrapper .left .mail::after {
                position: absolute;
                content: "";
                width: 1px;
                height: 14px;
                background: #fff;
                right: 25px;
                top: 50%;
                transform: translateY(-50%);
            }

            .header-top-area-wrapper .header-top-one-wrapper .left .mail a {
                padding: 11px 0;
                display: block;
                color: #fff;
                margin-right: 50px;
                font-size: 14px;
                position: relative;
                transition: var(--transition);
            }

                .header-top-area-wrapper .header-top-one-wrapper .left .mail a::after {
                    content: "";
                    position: absolute;
                    left: 0;
                    bottom: 12px;
                    height: 1px;
                    width: 0%;
                    background: #fff;
                    transition: var(--transition);
                }

                .header-top-area-wrapper .header-top-one-wrapper .left .mail a i {
                    margin-right: 6px;
                }

                .header-top-area-wrapper .header-top-one-wrapper .left .mail a:hover::after {
                    width: 100%;
                }

    .header-top-area-wrapper .header-top-one-wrapper .right {
        display: flex;
        justify-content: flex-end;
    }

        .header-top-area-wrapper .header-top-one-wrapper .right .social-wrapper-one {
            margin-left: 30px;
            position: relative;
        }

.social-wrapper-one {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
}

    .social-wrapper-one li {
        margin: 0;
    }

        .social-wrapper-one li a {
            color: #fff;
            margin-right: 20px;
            padding: 11px 0;
        }

            .social-wrapper-one li a i {
                transition: 0.3s;
                color: #fff;
            }

    .social-wrapper-one::after {
        position: absolute;
        content: "";
        width: 1px;
        height: 14px;
        left: -25px;
        top: 50%;
        transform: translateY(-50%);
        background: #fff;
    }

.header-main-one-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

@media only screen and (max-width: 1199px) {
    .header-main-one-wrapper {
        padding: 15px 0;
    }
}

@media only screen and (max-width: 575px) {
    .header-main-one-wrapper .thumbnail a img {
        max-width: 130px;
    }
}

.header-main-one-wrapper .main-header {
    display: flex;
    align-items: center;
}

    .header-main-one-wrapper .main-header .nav-main ul {
        display: flex;
        align-items: center;
    }

    .header-main-one-wrapper .main-header .button-area {
        display: flex;
        align-items: center;
    }

@media only screen and (max-width: 575px) {
    .header-main-one-wrapper .button-area .rts-btn.btn-primary {
        display: none !important;
    }
}

.header-one .nav-area {
    margin-right: 80px;
}

#search,
#menu-btn {
    background: #F2F2F2;
    height: 55px;
    min-width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    border: none;
}

    #search i,
    #menu-btn i {
        color: #1C2539;
        font-size: 18px;
    }

.header--sticky.sticky {
    position: fixed !important;
    top: 0;
    display: block;
    z-index: 999;
    width: 100%;
    background: #fff;
    box-shadow: 0px 7px 18px rgba(24, 16, 16, 0.0509803922);
}

    .header--sticky.sticky .header-top-area-wrapper {
        display: none;
    }

    .header--sticky.sticky.header-one {
        background: #fff;
    }

.header-two .main-header {
    justify-content: flex-start;
    display: block;
    background: #fff;
}

    .header-two .main-header .content {
        max-width: 1560px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        width: 98%;
        position: relative;
    }

@media only screen and (max-width: 1199px) {
    .header-two .main-header .content {
        max-width: 97%;
        margin: auto;
    }
}

@media only screen and (max-width: 479px) {
    .header-two .main-header .content {
        max-width: 99%;
    }
}

.header-two .main-header nav {
    margin-left: 135px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .header-two .main-header nav {
        margin-left: 10px;
    }
}

.header-two .nav-area {
    margin-left: 135px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .header-two .nav-area {
        margin-left: 50px;
    }
}

.top-transparent-header .header-top-area-wrapper {
    background: transparent;
    border-bottom: 1px solid #EDEDED;
}

    .top-transparent-header .header-top-area-wrapper * {
        color: #1C2539 !important;
    }

    .top-transparent-header .header-top-area-wrapper .header-top-one-wrapper .right p {
        margin: 0;
        color: #5D666F;
    }

        .top-transparent-header .header-top-area-wrapper .header-top-one-wrapper .right p a {
            font-weight: 600;
            color: var(--color-primary) !important;
        }

            .top-transparent-header .header-top-area-wrapper .header-top-one-wrapper .right p a i {
                color: var(--color-primary) !important;
            }

    .top-transparent-header .header-top-area-wrapper .header-top-one-wrapper .left a {
        font-weight: 600;
    }

        .top-transparent-header .header-top-area-wrapper .header-top-one-wrapper .left a:hover {
            color: var(--color-primary) !important;
        }

@media only screen and (max-width: 1199px) {
    .nav-area {
        display: none;
    }
}

.nav-area ul {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 0;
    margin: 0;
    list-style: none;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .nav-area ul {
        gap: 40px;
    }
}

@media screen and (max-width: 1300px) {
    .nav-area ul {
        gap: 35px;
    }
}

.nav-area ul li {
    margin: 0;
    padding: 0;
}

    .nav-area ul li a {
        color: #111032;
        font-weight: 600 !important;
    }

.has-dropdown.mega-menu > a {
    position: relative;
}

.has-dropdown::after {
    position: absolute;
    content: "\f078";
    right: -22px;
    top: 51%;
    transform: translateY(-50%);
    font-weight: 400;
    color: #1C2539;
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    font-size: 14px;
}

.has-dropdown.mega-menu > a::after {
    position: absolute;
    content: "\f078";
    right: -22px;
    top: 53%;
    transform: translateY(-50%);
    font-weight: 400;
    color: #1C2539;
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    font-size: 14px;
}

.nav-area ul li.main-nav {
    padding: 40px 0;
    cursor: pointer;
}

header .main-nav > a {
    color: #1C2539 !important;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    header.header-two .nav-area ul {
        gap: 40px !important;
    }
}

.submenu:hover li a {
    opacity: 0.6;
}

.side-bar {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: -100%;
    width: 365px;
    padding: 40px 30px;
    padding-top: 50px;
    height: 100%;
    display: block;
    background-color: white;
    backdrop-filter: blur(7px);
    z-index: 1900;
    transition: all 600ms ease;
    box-shadow: -5px 0 20px -5px rgba(149, 22, 22, 0.12);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

@media only screen and (max-width: 479px) {
    .side-bar {
        width: 320px;
        box-shadow: none;
    }
}

.side-bar.show {
    right: 0;
}

.side-bar button {
    max-width: max-content;
    border: none;
}

    .side-bar button i {
        color: #fff;
        height: 50px;
        width: 50px;
        min-width: 50px;
        border-radius: 5px;
        background: var(--color-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: -8px;
        margin-top: -3px;
    }

.rts-sidebar-menu-desktop .logo {
    margin-top: 50px;
}

.rts-sidebar-menu-desktop p.disc {
    margin-top: 30px;
    font-size: 16px;
    line-height: 26px;
}

.rts-sidebar-menu-desktop .get-in-touch .title {
    margin-bottom: 30px;
}

.rts-sidebar-menu-desktop .get-in-touch .wrapper .single i {
    color: var(--color-primary);
    margin-right: 10px;
    margin-bottom: 15px;
}

    .rts-sidebar-menu-desktop .get-in-touch .wrapper .single i:last-child {
        margin-bottom: 0;
    }

.rts-sidebar-menu-desktop .get-in-touch .wrapper .single a {
    transition: 0.3s;
}

.social-wrapper-two.menu {
    margin-top: 50px;
    margin-left: 12px;
    padding-left: 0;
}

.social-wrapper-two a {
    margin-right: 40px;
    z-index: 1;
    position: relative;
}

    .social-wrapper-two a i {
        color: #fff;
        transition: 0.3s;
        font-size: 16px;
    }

    .social-wrapper-two a::after {
        position: absolute;
        height: 45px;
        width: 45px;
        border-radius: 50%;
        content: "";
        z-index: -1;
        background: var(--color-primary);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: 0.3s;
    }

    .social-wrapper-two a:hover i {
        color: var(--color-primary);
    }

    .social-wrapper-two a:hover::after {
        background: #ffecec;
        box-shadow: 0px 10px 30px rgba(33, 5, 5, 0.05);
    }

.logo-1 {
    display: block;
}

.logo-2 {
    display: none;
}

#anywhere-home {
    cursor: url(../images/banner/shape/close.png), auto;
    background: #0e1013;
    position: fixed;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease-in-out;
    pointer-events: none;
    z-index: 50;
}

    #anywhere-home.bgshow {
        background: #0e1013;
        opacity: 70%;
        visibility: visible;
        pointer-events: visible;
        z-index: 1000;
        top: 0;
    }

.mobile-menu nav ul {
    padding: 0 20px;
}

    .mobile-menu nav ul li {
        margin: 0;
        padding: 0;
    }

        .mobile-menu nav ul li.has-droupdown {
            position: relative;
        }

            .mobile-menu nav ul li.has-droupdown ul a.tag {
                font-weight: 700;
                margin-top: 15px;
                font-size: 18px;
            }

            .mobile-menu nav ul li.has-droupdown ul li {
                margin: 10px 0 !important;
            }

            .mobile-menu nav ul li.has-droupdown::after {
                position: absolute;
                content: "\f078";
                font-family: "Font Awesome 6 pro" !important;
                font-size: 16px;
                right: 0;
                font-weight: 400;
                top: 5px;
                padding: 8px 13px;
                color: var(--heading-color);
                background: transparent !important;
                pointer-events: none;
                cursor: pointer;
            }

            .mobile-menu nav ul li.has-droupdown.mm-active::after {
                content: "\f077";
            }

        .mobile-menu nav ul li a {
            display: block;
        }

.mobile-menu .social-wrapper-one {
    margin-top: 50px;
}

@media screen and (min-width: 1199px) {
    .side-bar.header-two .mobile-menu {
        display: none !important;
    }
}

.side-bar .social-wrapper-one ul {
    list-style: none;
    display: flex;
    align-items: center;
    padding-left: 0;
    margin: 0;
}

.side-bar .social-wrapper-one li {
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
}

    .side-bar .social-wrapper-one li a {
        width: 40px;
        height: 40px;
        display: block;
        background: transparent;
        border: 1px solid transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
        margin-right: 0;
    }

        .side-bar .social-wrapper-one li a i {
            font-weight: 400;
            font-size: 18px;
            line-height: 14px;
            color: var(--color-primary);
        }

        .side-bar .social-wrapper-one li a:hover {
            background: var(--color-primary);
        }

.mobile-menu nav ul li a {
    display: block;
    padding: 2px 0;
}

    .mobile-menu nav ul li a.main {
        padding: 12px 0 17px 0;
        border-bottom: 1px solid #f3f3f3;
        cursor: pointer;
        font-weight: 600;
        color: #20282d;
    }

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: 0.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: 15px 10px;
        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 0.3s;
                border-radius: 4px;
                display: block;
                padding: 12px 45px 12px 15px;
                border-radius: 5px;
                background: #FFFFFF;
                transition: all 0.3s;
                text-align: left;
                font-size: 14px;
                font-weight: 600;
            }

                li.has-dropdown .submenu li a:hover {
                    opacity: 1;
                    background: #F2F2F8;
                    opacity: 1;
                    color: var(--color-primary) !important;
                }

    li.has-dropdown:hover .submenu {
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: translateY(0);
        transform: scaleY(1);
    }

    li.has-dropdown:hover::after {
        content: "\f077";
    }

.has-dropdown.mega-menu::after {
    display: none;
}

header .nav-area ul li.main-nav:hover > a {
    transition: 0.3s;
    color: var(--color-primary) !important;
}

header .nav-area ul li.main-nav:hover::after {
    color: var(--color-primary) !important;
}

.rts-mega-menu {
    position: absolute;
    width: 100%;
    height: auto;
    top: 100%;
    transform: scaleY(0);
    left: 0;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    text-align: left;
    transition: all 0.5s;
    border-radius: 0 0 5px 5px !important;
    background-color: #ffffff;
    display: inline-block;
    box-shadow: 0 36px 35px rgba(61, 60, 60, 0.08);
    transform-origin: 0 0 0;
    padding: 30px 30px;
}

.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;
            }

            .mega-menu-item li a .info p {
                margin-bottom: 2px;
                font-weight: 500;
                font-size: 16px;
                line-height: 26px;
                color: #083A5E;
            }

            .mega-menu-item li a .info span {
                font-weight: 400;
                font-size: 14px;
                line-height: 24px;
                color: #497696;
            }

.has-dropdown.mega-menu {
    position: static !important;
}

    .has-dropdown.mega-menu:hover .rts-mega-menu {
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: scaleY(1);
    }

    .has-dropdown.mega-menu:hover > a::after {
        content: "\f077";
        color: var(--color-primary);
    }

.rts-mega-menu.service-mega-menu-style {
    padding: 30px 30px 0 30px;
    z-index: 1000;
}

    .rts-mega-menu.service-mega-menu-style li {
        margin-bottom: 20px;
    }

        .rts-mega-menu.service-mega-menu-style li a {
            border: none;
            width: 100%;
            padding: 18px 25px !important;
            border-radius: 5px;
            background: #f9f9f9;
            display: block;
            transition: 0.3s;
        }

            .rts-mega-menu.service-mega-menu-style li a.free-consultation {
                background: var(--color-primary);
            }

                .rts-mega-menu.service-mega-menu-style li a.free-consultation .title {
                    color: #fff !important;
                }

                .rts-mega-menu.service-mega-menu-style li a.free-consultation p.details {
                    color: #fff !important;
                }

                .rts-mega-menu.service-mega-menu-style li a.free-consultation:hover {
                    background: var(--color-primary);
                }

            .rts-mega-menu.service-mega-menu-style li a .single-service-menu {
                display: flex;
                align-items: flex-start;
            }

                .rts-mega-menu.service-mega-menu-style li a .single-service-menu .icon {
                    border-radius: 4px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    margin-right: 15px;
                }

                    .rts-mega-menu.service-mega-menu-style li a .single-service-menu .icon img {
                        background: none;
                        padding: 0;
                        max-width: 40px;
                        margin: auto;
                    }

                .rts-mega-menu.service-mega-menu-style li a .single-service-menu .title {
                    color: var(--color-title);
                    margin-bottom: 11px;
                    line-height: 1.3;
                }

                .rts-mega-menu.service-mega-menu-style li a .single-service-menu p.details {
                    max-width: 100%;
                    font-size: 14px;
                    color: var(--color-body);
                }

        .rts-mega-menu.service-mega-menu-style li:hover a {
            border: none;
            background: rgba(32, 40, 45, 0.0784313725);
        }

    .rts-mega-menu.service-mega-menu-style .menu-thumb {
        height: auto;
    }

        .rts-mega-menu.service-mega-menu-style .menu-thumb img {
            height: auto;
            object-fit: cover;
        }

li.has-dropdown .submenu li a.active {
    color: var(--color-primary);
    background: #F2F2F8;
}

.rts-mega-menu.service-mega-menu-style li a.active {
    background: #fff3f3;
}

    .rts-mega-menu.service-mega-menu-style li a.active.free-consultation {
        background: var(--color-primary);
    }

ul.mega-menu-item.parent-nav {
    gap: 0 !important;
}

header.header--sticky.sticky .nav-area ul li.main-nav {
    padding: 30px 0;
    cursor: pointer;
}

.side-bar {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: -100%;
    width: 365px;
    padding: 40px 30px;
    padding-top: 50px;
    height: 100%;
    display: block;
    background-color: white;
    backdrop-filter: blur(7px);
    z-index: 1900;
    transition: all 600ms ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow: visible;
}

@media only screen and (max-width: 575px) {
    .side-bar {
        width: 320px;
    }
}

.side-bar.show {
    right: 0;
    overflow-y: auto;
}

.side-bar button {
    /* max-width: max-content; */
    margin-right: auto;
    margin-left: -28px;
    margin-top: -51px;
    position: absolute;
    display: flex;
    min-height: 45px;
    width: 45px;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .side-bar button i {
        color: #ffffff;
        border-radius: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 27px;
    }

/* elements  */

.mySwiper-banner-two {
    position: relative;
}

    .mySwiper-banner-two .swiper-button-next,
    .mySwiper-banner-two .swiper-button-prev {
        height: 60px;
        width: 60px;
        border-radius: 50%;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
    }

@media only screen and (max-width: 767px) {
    .mySwiper-banner-two .swiper-button-next,
    .mySwiper-banner-two .swiper-button-prev {
        display: none;
    }
}

.mySwiper-banner-two .swiper-button-next i,
.mySwiper-banner-two .swiper-button-prev i {
    font-size: 25px;
    transition: 0.3s;
    color: #1C2539;
}

.mySwiper-banner-two .swiper-button-next::after,
.mySwiper-banner-two .swiper-button-prev::after {
    display: none;
}

.mySwiper-banner-two .swiper-button-next:hover,
.mySwiper-banner-two .swiper-button-prev:hover {
    background: var(--color-primary);
    transform: scale(1.1);
}

    .mySwiper-banner-two .swiper-button-next:hover i,
    .mySwiper-banner-two .swiper-button-prev:hover i {
        color: #fff;
    }

.mySwiper-banner-two .swiper-button-next {
    right: 120px;
}

.mySwiper-banner-two .swiper-button-prev {
    left: 120px;
}

.uppercase {
    text-transform: uppercase;
}

.rts-banner-area-9 {
    background: #F2F2F2;
    height: 850px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 1199px) {
    .rts-banner-area-9 {
        height: 630px;
    }
}

@media only screen and (max-width: 575px) {
    .rts-banner-area-9 {
        height: 710px;
    }
}

@media only screen and (max-width: 479px) {
    .rts-banner-area-9 {
        height: 500px;
    }
}

.rts-banner-area-9 span.pre {
    text-transform: uppercase;
    color: #1C2539;
    display: block;
    margin-bottom: 12px;
}

.rts-banner-area-9 p.disc {
    font-size: 18px;
    color: #5D666F;
    line-height: 1.7;
}

.rts-banner-area-9 .image-right-absolute {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    clip-path: polygon(68.225% 100%, 0% 100%, 0% -0.411%, 43.944% 0%, 99.93% 0%, 99.93% 100%, 59.225% 100%);
    z-index: -1;
}

@media only screen and (min-width: 1600px) and (max-width: 1919px) {
    .rts-banner-area-9 .image-right-absolute {
        max-width: 700px;
        height: 100%;
        min-height: 100%;
        object-fit: cover;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .rts-banner-area-9 .image-right-absolute {
        max-width: 600px;
        height: 100%;
        min-height: 100%;
        object-fit: cover;
    }
}

@media only screen and (max-width: 1199px) {
    .rts-banner-area-9 .image-right-absolute {
        display: none;
    }
}

@media only screen and (min-width: 1600px) and (max-width: 1919px) {
    .rts-banner-area-9 .image-right-absolute img {
        height: 100%;
        min-height: 100%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .rts-banner-area-9 .image-right-absolute img {
        height: 100%;
        min-height: 100%;
        object-fit: cover;
    }
}

@media only screen and (max-width: 575px) {
    .rts-banner-area-9 .circle-text-main {
        display: none;
    }
}

.blog-details-banner-large-image {
    height: 703px;
    background: linear-gradient(135deg, #1e293b 0%, var(--color-secondary) 35%, #475569 65%, var(--bg-dark-1) 100%);
    background-attachment: fixed;
    background-position: center, center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

    .blog-details-banner-large-image::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 30%, rgba(55, 48, 163, 0.12) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.08) 0%, transparent 50%), linear-gradient(45deg, rgba(55, 48, 163, 0.05) 0%, transparent 40%, rgba(16, 185, 129, 0.03) 100%);
        pointer-events: none;
        animation: subtle-float 20s ease-in-out infinite;
    }

    .blog-details-banner-large-image::after {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: repeating-linear-gradient( 45deg, transparent, transparent 2px, rgba(255, 255, 255, 0.01) 2px, rgba(255, 255, 255, 0.01) 4px );
        pointer-events: none;
        animation: geometric-drift 30s linear infinite;
    }

@keyframes subtle-float {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

@keyframes geometric-drift {
    0% {
        transform: rotate(0deg) translateX(0px);
    }

    100% {
        transform: rotate(360deg) translateX(20px);
    }
}

@media only screen and (max-width: 767px) {
    .blog-details-banner-large-image {
        height: 450px;
    }
}

@media only screen and (max-width: 575px) {
    .blog-details-banner-large-image {
        height: 350px;
    }
}

.partner-breadcrumb {
    background: linear-gradient(135deg, #4a5568 0%, #718096 100%);
    height: 477px;
}

@media only screen and (max-width: 575px) {
    .partner-breadcrumb {
        height: 400px;
    }
}

.mySwiper-brand-banner {
    max-width: max-content;
    max-width: 700px;
}

.rts-btn {
    height: 55px;
    max-width: max-content;
    padding: 13px 29px;
    border: none;
    box-shadow: none;
    min-width: max-content;
    border-radius: 15px;
    transition: 800ms;
    font-weight: 600;
}

@media only screen and (max-width: 575px) {
    .rts-btn {
        height: 47px;
        padding: 13px 20px;
        display: flex !important;
        align-items: center !important;
    }
}

.rts-btn.btn-primary {
    background: var(--color-primary);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

    .rts-btn.btn-primary::before {
        content: "";
        position: absolute;
        -webkit-transition-duration: 800ms;
        transition-duration: 800ms;
        width: 200%;
        height: 200%;
        top: 110%;
        left: 50%;
        background: #F2F2F2;
        -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;
    }

    .rts-btn.btn-primary:hover {
        background: #F2F2F2;
        color: var(--color-primary);
    }

        .rts-btn.btn-primary:hover::before {
            top: -40%;
        }

    .rts-btn.btn-primary.btn-white {
        background: #F2F2F2;
        color: #20282D;
    }

        .rts-btn.btn-primary.btn-white::before {
            background: var(--color-primary);
        }

        .rts-btn.btn-primary.btn-white:hover {
            background: var(--color-primary);
            color: #F2F2F2;
        }

            .rts-btn.btn-primary.btn-white:hover::before {
                top: -40%;
            }

.rts-btn:focus {
    border: none;
    box-shadow: none;
}

.rts-breadcrumb-area {
    height: 477px;
    background: linear-gradient(180deg, rgba(32, 40, 45, 0.1) 0%, rgba(255, 255, 255, 0.1) 96.54%);
    display: flex;
    align-items: center;
    position: relative;
}

@media only screen and (max-width: 575px) {
    .rts-breadcrumb-area {
        height: 370px;
    }
}

.rts-breadcrumb-area .title-area-left {
    position: relative;
}

    .rts-breadcrumb-area .title-area-left.center {
        text-align: center;
    }

        .rts-breadcrumb-area .title-area-left.center .bg-title {
            left: 50%;
            transform: translateX(-50%);
        }

    .rts-breadcrumb-area .title-area-left .bg-title {
        font-size: 150px;
        position: absolute;
        font-weight: 900;
        letter-spacing: 0;
        left: -90px;
        z-index: -1;
        top: -65px;
        font-family: var(--font-primary);
        min-width: max-content;
        color: transparent;
        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: rgba(0, 0, 0, 0.1);
        line-height: 1;
    }

@media only screen and (max-width: 575px) {
    .rts-breadcrumb-area .title-area-left .bg-title {
        font-size: 50px;
        left: 0;
    }
}

.rts-breadcrumb-area .title-area-left .bg-title::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 107%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.8855917367) 0%, rgba(255, 255, 255, 0.6082808123) 35%, rgba(255, 255, 255, 0) 100%);
}

.rts-breadcrumb-area .title-area-left .title {
    font-size: 54px;
    line-height: 1.23;
}

@media only screen and (max-width: 575px) {
    .rts-breadcrumb-area .title-area-left .title {
        font-size: 34px;
    }

        .rts-breadcrumb-area .title-area-left .title br {
            display: none;
        }
}

@media only screen and (max-width: 991px) {
    .rts-breadcrumb-area .title-area-left p.disc {
        max-width: 100% !important;
    }
}

.rts-breadcrumb-area .shape-area img {
    position: absolute;
}

.rts-breadcrumb-area .shape-area .one {
    position: absolute;
    left: 80px;
    animation: jump-2 8s linear infinite;
}

.rts-breadcrumb-area .shape-area .two {
    left: 50%;
    top: 40%;
    animation: jump-2 6s linear infinite;
}

@media only screen and (max-width: 575px) {
    .rts-breadcrumb-area .shape-area .two {
        display: none;
    }
}

.rts-breadcrumb-area .shape-area .three {
    left: auto;
    right: 0;
    top: 60%;
    animation: jump-2 5s linear infinite;
}

@media only screen and (max-width: 575px) {
    .rts-breadcrumb-area .shape-area .three {
        display: none;
    }
}

.swiper-pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

@media only screen and (max-width: 575px) {
    .swiper-pagination {
        gap: 1px;
    }
}

@media only screen and (max-width: 1199px) {
    br {
        display: none;
    }
}

.rts-service-main-wrapper-10 {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #E3E0E6;
}

    .rts-service-main-wrapper-10 .signle-service-style-10 {
        flex-basis: 50%;
        display: flex;
        align-items: center;
    }

@media only screen and (max-width: 991px) {
    .rts-service-main-wrapper-10 .signle-service-style-10 {
        flex-basis: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .rts-service-main-wrapper-10 .signle-service-style-10 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.rts-service-main-wrapper-10 .signle-service-style-10 .thumbnail {
    overflow: hidden;
    display: block;
}

@media only screen and (max-width: 767px) {
    .rts-service-main-wrapper-10 .signle-service-style-10 .thumbnail {
        width: 100%;
    }
}

@media only screen and (max-width: 575px) {
    .rts-service-main-wrapper-10 .signle-service-style-10 .thumbnail {
        width: 100%;
    }
}

.rts-service-main-wrapper-10 .signle-service-style-10 .thumbnail img {
    transition: 0.5s;
}

@media only screen and (max-width: 767px) {
    .rts-service-main-wrapper-10 .signle-service-style-10 .thumbnail img {
        width: 100%;
    }
}

@media only screen and (max-width: 575px) {
    .rts-service-main-wrapper-10 .signle-service-style-10 .thumbnail img {
        width: 100%;
    }
}

.rts-service-main-wrapper-10 .signle-service-style-10 .content-area-wrapper {
    padding: 30px 50px;
    flex-basis: 50%;
    min-width: 50%;
    max-width: 50%;
}

@media only screen and (max-width: 767px) {
    .rts-service-main-wrapper-10 .signle-service-style-10 .content-area-wrapper {
        flex-basis: 35%;
        min-width: 100%;
        max-width: 100%;
    }
}

@media only screen and (max-width: 575px) {
    .rts-service-main-wrapper-10 .signle-service-style-10 .content-area-wrapper {
        padding: 22px;
    }
}

.rts-service-main-wrapper-10 .signle-service-style-10 .content-area-wrapper .icon {
    margin-bottom: 45px;
}

@media only screen and (max-width: 1199px) {
    .rts-service-main-wrapper-10 .signle-service-style-10 .content-area-wrapper .icon {
        margin-bottom: 11px;
    }
}

.rts-service-main-wrapper-10 .signle-service-style-10 .content-area-wrapper .title {
    margin-bottom: 12px;
}

.rts-service-main-wrapper-10 .signle-service-style-10 .content-area-wrapper p.disc {
    margin-bottom: 14px;
}

.rts-service-main-wrapper-10 .signle-service-style-10 .content-area-wrapper .arrow-right-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    transition: 0.3s;
}

.rts-service-main-wrapper-10 .signle-service-style-10:hover .thumbnail img {
    transform: scale(1.1);
}

.banner-inner-service-details-1 {
    /* lighter professional gradient with soft vignette */
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 60%), linear-gradient(135deg, #344866 0%, #7a8da8 100%);
    height: 477px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-attachment: fixed;
    background-position: center, center;
    background-repeat: no-repeat;
}

    .banner-inner-service-details-1.large-height {
        height: 608px;
    }

        .banner-inner-service-details-1.large-height .title-area-left {
            text-align: left;
            background: #fff;
            padding: 110px 130px 75px 130px;
            z-index: 1;
            max-width: 849px;
            left: 50%;
            transform: translateX(-50%);
        }

@media only screen and (max-width: 767px) {
    .banner-inner-service-details-1.large-height .title-area-left {
        padding: 45px;
    }
}

.banner-inner-service-details-1.large-height .title-area-left .bg-title {
    top: 0px;
    left: 80px;
    font-family: var(--font-primary) !important;
    z-index: 1;
    -webkit-text-stroke: 1px rgba(28, 37, 57, 0.07);
}

@media only screen and (max-width: 767px) {
    .banner-inner-service-details-1.large-height .title-area-left .bg-title {
        font-size: 50px;
    }
}

.banner-inner-service-details-1.large-height .title-area-left p {
    color: #5D666F;
}

.banner-inner-service-details-1.large-height .title-area-left * {
    color: #161921;
}

.banner-inner-service-details-1 .title-area-left {
    position: relative;
    z-index: 1;
    max-width: 849px;
}

.banner-inner-service-details-1 .bg-title {
    position: absolute;
    left: 91px !important;
    letter-spacing: 3px;
    top: -100px;
    font-weight: 800;
    font-size: 131px;
    line-height: 198px;
    display: flex;
    align-items: center;
    color: transparent;
    -webkit-text-stroke: 1px rgba(28, 37, 57, 0.07);
    background: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: -1;
    font-family: var(--font-secondary);
}

@media only screen and (max-width: 575px) {
    .banner-inner-service-details-1 .bg-title {
        font-size: 54px;
    }
}

.banner-inner-service-details-1 .title {
    font-size: 60px;
    line-height: 1.1;
    color: #fff;
}

@media only screen and (max-width: 767px) {
    .banner-inner-service-details-1 .title {
        font-size: 40px;
    }

        .banner-inner-service-details-1 .title br {
            display: none;
        }
}

.banner-inner-service-details-1 p.disc {
    font-size: 16px;
    margin-bottom: 0;
    color: #fff;
}

.service-details-left-area {
    margin-top: -120px;
}

@media only screen and (max-width: 767px) {
    .service-details-left-area {
        margin-top: -60px;
    }
}

.service-details-left-area .thumbnail {
    margin-bottom: 50px;
}

.service-details-left-area .title {
    font-size: 36px;
}

@media only screen and (max-width: 575px) {
    .service-details-left-area .title {
        font-size: 22px;
    }
}

.service-details-left-area p.disc {
    margin-bottom: 45px;
}

.service-details-left-area .service-short-main-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

    .service-details-left-area .service-short-main-wrapper .single-short-service {
        display: flex;
        align-items: center;
        gap: 25px;
        max-width: 350px;
    }

@media only screen and (max-width: 575px) {
    .service-details-left-area .service-short-main-wrapper .single-short-service {
        flex-wrap: wrap;
    }
}

.service-details-left-area .service-short-main-wrapper .single-short-service .icon {
    height: 60px;
    min-width: 60px;
    background: #F2F2F2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-details-left-area .service-short-main-wrapper .single-short-service .inner-content .title-sm {
    margin-bottom: 10px;
    font-size: 20px;
}

.service-details-left-area .service-short-main-wrapper .single-short-service .inner-content p.disc {
    margin-bottom: 0;
}

.rts-single-wized {
    background: #20282D;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
}

    .rts-single-wized:last-child {
        margin-bottom: 0;
    }

@media only screen and (max-width: 479px) {
    .rts-single-wized {
        padding: 20px;
    }
}

.rts-single-wized.service {
    border-radius: 0;
}

    .rts-single-wized.service .single-categories li a {
        border-radius: 0;
    }

.rts-single-wized.contact {
    background: #1C2539;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px;
}

@media only screen and (max-width: 479px) {
    .rts-single-wized.contact {
        padding: 25px 20px;
    }
}

@media only screen and (max-width: 479px) {
    .rts-single-wized.contact:last-child {
        margin-bottom: 0;
    }
}

.rts-single-wized.contact .wized-body {
    text-align: center;
}

    .rts-single-wized.contact .wized-body .title {
        color: #fff;
        margin-bottom: 30px;
        font-size: 22px;
        line-height: 32px;
    }

    .rts-single-wized.contact .wized-body a.rts-btn {
        display: block;
        max-width: max-content;
        margin: auto;
    }

.rts-single-wized .wized-header .title {
    margin-bottom: 10px;
    color: #fff;
}

.rts-single-wized .wized-body {
    margin-top: 30px;
}

    .rts-single-wized .wized-body .rts-search-wrapper {
        position: relative;
    }

        .rts-single-wized .wized-body .rts-search-wrapper input {
            background: #fff;
            height: 55px;
            border-radius: 5px;
            padding-right: 70px;
            padding-left: 25px;
            border: 1px solid transparent;
        }

            .rts-single-wized .wized-body .rts-search-wrapper input:focus {
                border: 1px solid var(--color-primary);
            }

        .rts-single-wized .wized-body .rts-search-wrapper button {
            position: absolute;
            max-width: max-content;
            height: 55px;
            width: 55px;
            border-radius: 5px;
            background: var(--color-primary);
            display: inline-block;
            padding: 0 19px;
            right: 0;
        }

            .rts-single-wized .wized-body .rts-search-wrapper button i {
                color: #fff;
                font-size: 16px;
                line-height: 16px;
            }

.rts-single-wized .single-categories {
    margin-bottom: 15px;
    padding: 0;
}

    .rts-single-wized .single-categories:last-child {
        margin-bottom: 0;
    }

    .rts-single-wized .single-categories li {
        list-style: none;
    }

        .rts-single-wized .single-categories li a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 25px;
            background: #283136;
            color: #ffffff;
            font-weight: 500;
            transition: 0.3s;
            border-radius: 5px;
        }

            .rts-single-wized .single-categories li a i {
                color: #ffffff;
                transition: 0.3s;
            }

            .rts-single-wized .single-categories li a:hover {
                background: var(--color-primary);
                transform: translateY(-5px) scale(1.03);
                color: var(--color-white);
            }

                .rts-single-wized .single-categories li a:hover i {
                    color: var(--color-primary);
                }

.rts-single-wized .recent-post-single {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

    .rts-single-wized .recent-post-single:last-child {
        margin-bottom: 0;
    }

    .rts-single-wized .recent-post-single .thumbnail {
        margin-right: 20px;
        overflow: hidden;
        max-width: max-content;
        width: 100%;
        border-radius: 5px;
    }

        .rts-single-wized .recent-post-single .thumbnail img {
            min-width: 85px;
            height: auto;
            transition: 0.3s;
        }

        .rts-single-wized .recent-post-single .thumbnail:hover img {
            transform: scale(1.2);
        }

    .rts-single-wized .recent-post-single .user {
        display: flex;
        align-items: center;
    }

        .rts-single-wized .recent-post-single .user span {
            margin-left: 9px;
        }

    .rts-single-wized .recent-post-single .post-title .title {
        margin-bottom: 0;
        font-size: 16px;
        font-weight: 600;
        color: #1C2539;
        line-height: 26px;
        margin-top: 5px;
        transition: 0.3s;
    }

@media only screen and (max-width: 479px) {
    .rts-single-wized .recent-post-single .post-title .title {
        font-size: 14px;
        line-height: 26px;
        margin-top: 0;
    }
}

.rts-single-wized .recent-post-single .post-title:hover .title {
    color: var(--color-primary);
}

.rts-single-wized .tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -10px;
}

    .rts-single-wized .tags-wrapper a {
        padding: 5px 16px;
        background: #fff;
        border-radius: 5px;
        margin-right: 10px;
        margin-bottom: 10px;
        color: #1C2539;
        font-size: 14px;
        font-weight: 500;
        transition: 0.3s;
    }

        .rts-single-wized .tags-wrapper a:hover {
            background: var(--color-primary);
            color: #fff;
            transform: translateY(-3px) scale(1.09);
        }

.rts-service-details-area-main-bottom .rts-single-wized.service .single-categories li a:hover i {
    color: #fff;
}

@media only screen and (max-width: 767px) {
    .rts-service-main-wrapper-10 .signle-service-style-10.order-control-sm-device {
        flex-direction: column-reverse;
    }
}

.title-style-one .pre {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    border: 1px solid #E9E9E9;
    font-size: 16px;
    color: #5D666F;
    display: flex;
    max-width: max-content;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 700;
    border-radius: 6px;
}

@media (max-width: 576px) {
    .title-style-one .pre {
        margin-bottom: 15px;
    }
}

.title-style-one .title {
    font-size: 48px;
    font-weight: 700;
}

@media only screen and (max-width: 1199px) {
    .title-style-one .title {
        font-size: 42px;
    }
}

@media only screen and (max-width: 991px) {
    .title-style-one .title {
        font-size: 32px;
        line-height: 1.4;
    }

        .title-style-one .title br {
            display: none;
        }
}

@media only screen and (max-width: 575px) {
    .title-style-one .title {
        font-size: 28px;
    }
}

.title-style-one.left {
    text-align: left;
}

.title-style-one.center {
    text-align: center;
}

    .title-style-one.center .pre {
        margin: auto;
        margin-bottom: 30px;
    }

@media (max-width: 576px) {
    .title-style-one.center .pre {
        margin-bottom: 15px;
    }
}

.container {
    padding: 0 15px;
}

.grow {
    transform: scale(1.25);
}

.title-style-five.center {
    text-align: center;
}

.title-style-five span.pre {
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #5D666F;
}

@media only screen and (max-width: 575px) {
    .title-style-five span.pre {
        font-size: 14px;
    }
}

.title-style-five .title {
    font-size: 48px;
    font-weight: 700;
    margin-top: 15px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .title-style-five .title {
        font-size: 36px;
    }

        .title-style-five .title br {
            display: none;
        }
}

@media only screen and (max-width: 1199px) {
    .title-style-five .title {
        font-size: 36px;
    }

        .title-style-five .title br {
            display: none;
        }
}

@media only screen and (max-width: 575px) {
    .title-style-five .title {
        font-size: 28px;
        line-height: 1.3;
    }
}

.bg-main {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

    .bg-main .title-style-one .pre {
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #cbd5e0;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.05);
    }

@media only screen and (max-width: 575px) {
    .bg-main .title-style-one .pre {
        font-size: 14px;
    }
}

.bg-main .title-style-one .title {
    color: #fff;
}

.bg-main .title-style-one.left {
    text-align: left;
}

.bg-main .title-style-one.center {
    text-align: center;
}

    .bg-main .title-style-one.center .pre {
        margin: auto;
        margin-bottom: 30px;
    }

@media only screen and (max-width: 575px) {
    .bg-main .title-style-one.center .pre {
        font-size: 14px;
    }
}

.title-style-10 {
    text-align: center;
}

    .title-style-10 span.pre {
        font-size: 18px;
    }

@media only screen and (max-width: 575px) {
    .title-style-10 span.pre {
        font-size: 14px;
    }
}

.title-style-10 .title {
    font-size: 60px;
    margin-top: 10px;
}

@media only screen and (max-width: 1199px) {
    .title-style-10 .title {
        font-size: 42px;
    }
}

@media only screen and (max-width: 767px) {
    .title-style-10 .title {
        font-size: 46px;
    }

        .title-style-10 .title br {
            display: none;
        }
}

@media only screen and (max-width: 575px) {
    .title-style-10 .title {
        font-size: 34px;
    }
}

.title-style-10.left {
    text-align: left;
}

.pagination {
    margin: auto;
    max-width: max-content;
    margin-top: 25px;
}

    .pagination button {
        max-width: max-content;
        padding: 15px;
        border: 1px solid #EBEBEB;
        border-radius: 15px;
        margin-right: 10px;
        color: #1C2539;
        font-weight: 700;
        height: 50px;
        width: 50px;
        line-height: 18px;
    }

        .pagination button.active {
            background: var(--color-primary);
            color: white;
        }

        .pagination button:hover {
            background: var(--color-primary);
            color: #fff;
        }

        .pagination button:last-child {
            margin-right: 0;
            font-size: 24px;
        }

            .pagination button:last-child i {
                margin-top: -3px;
            }

.partner-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .partner-breadcrumb .title-area-left {
        text-align: center;
    }

        .partner-breadcrumb .title-area-left .bg-title {
            font-size: 150px;
            font-weight: 700;
            font-family: var(--font-secondary);
            -webkit-text-fill-color: transparent;
            -webkit-text-stroke: 1px;
            -webkit-text-stroke-color: rgba(141, 141, 141, 0.3098039216);
            letter-spacing: 2px;
        }

@media only screen and (max-width: 991px) {
    .partner-breadcrumb .title-area-left .bg-title {
        font-size: 80px;
    }
}

@media only screen and (max-width: 575px) {
    .partner-breadcrumb .title-area-left .bg-title {
        font-size: 42px;
    }
}

.partner-breadcrumb .title-area-left * {
    color: #fff;
}

@media only screen and (max-width: 575px) {
    .partner-breadcrumb .title-area-left * {
        font-size: 44px;
    }
}

@media only screen and (max-width: 575px) {
    .container {
        max-width: 100% !important;
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.swiper-pagination {
    width: 100% !important;
    bottom: 8px !important;
}

.single-working-process-one {
    display: flex;
    align-items: center;
    gap: 110px;
    margin-bottom: 40px;
}

@media only screen and (max-width: 575px) {
    .single-working-process-one {
        gap: 25px;
    }
}

.single-working-process-one:last-child {
    margin-bottom: 0;
}

.single-working-process-one .left {
    position: relative;
    z-index: 5;
}

    .single-working-process-one .left .icon {
        height: 110px;
        width: 110px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(99, 102, 241, 0.15);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(99, 102, 241, 0.2);
        border-radius: 100%;
        position: relative;
        transition: all 0.3s ease;
    }

.single-working-process-one:hover .left .icon {
    background: rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.2);
}

@media only screen and (max-width: 575px) {
    .single-working-process-one .left .icon {
        height: 90px;
        width: 90px;
    }
}

.single-working-process-one .left .icon::after {
    position: absolute;
    content: "";
    background-image: url(../images/process/01.png);
    height: 19px;
    width: 19px;
    background-repeat: no-repeat;
    background-position: center;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
}

@media only screen and (max-width: 575px) {
    .single-working-process-one .left .icon::after {
        display: none;
    }
}

.single-working-process-one .inner-content {
    border-radius: 10px;
    padding: 40px 50px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.single-working-process-one:hover .inner-content {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 479px) {
    .single-working-process-one .inner-content {
        padding: 30px 5px 30px 50px;
    }
}

.single-working-process-one .inner-content .number-main {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

    .single-working-process-one .inner-content .number-main::after {
        content: "";
        position: absolute;
        height: 50px;
        width: 50px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.1);
        z-index: -2;
        border-radius: 50%;
    }

@media only screen and (max-width: 575px) {
    .single-working-process-one .inner-content .number-main::after {
        display: none;
    }
}

.single-working-process-one .inner-content .number-main::before {
    content: "";
    position: absolute;
    width: 150px;
    border: 1px dashed #474E52;
    left: -150px;
    z-index: -2;
}

@media only screen and (max-width: 479px) {
    .single-working-process-one .inner-content .number-main::before {
        display: none;
    }
}

.single-working-process-one .inner-content .number {
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 500%;
    background: #6366f1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    left: -16px;
    z-index: -1;
    position: absolute;
    top: 50%;
    transform: translateY(-16px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

@media only screen and (max-width: 575px) {
    .single-working-process-one .inner-content .number {
        left: 10px;
    }
}

.single-working-process-one .inner-content .title {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
}

.single-working-process-one .inner-content p.disc {
    color: #cbd5e0;
}

.thumbnail-working-procss-one img {
    border-radius: 50%;
    overflow: hidden;
    margin-left: 50px;
}

@media only screen and (max-width: 991px) {
    .thumbnail-working-procss-one img {
        margin-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .thumbnail-working-procss-one img {
        margin-left: 0;
        border-radius: 5px;
    }
}

.index-one {
    overflow-x: visible;
}

@media only screen and (max-width: 1199px) {
    .index-one {
        overflow-x: hidden;
    }
}

.mt-dec-section-inner {
    margin-top: -130px;
    position: relative;
    z-index: 5;
}

    .mt-dec-section-inner.with-pricing {
        margin-top: -250px;
    }

@media only screen and (max-width: 991px) {
    .mt-dec-section-inner.with-pricing {
        margin-top: -120px;
    }
}

.pricing-three-title-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media only screen and (max-width: 575px) {
    .pricing-three-title-area {
        flex-wrap: wrap;
        gap: 15px;
        align-items: flex-start;
    }
}

.pricing-wrapper-one {
    background-image: url(../images/pricing/bg_img.webp);
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 92px 50px 50px 50px;
    position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .pricing-wrapper-one {
        padding: 92px 35px 50px 35px;
    }
}

@media only screen and (max-width: 479px) {
    .pricing-wrapper-one {
        padding: 26px;
        padding-top: 65px;
    }
}

.pricing-wrapper-one .plane-process {
    position: absolute;
    top: -10%;
    left: 13%;
    background: var(--color-primary);
    padding: 18px 40px;
    text-align: right;
    animation: jump-1 5s linear infinite;
    border-radius: 6px;
}

@media only screen and (max-width: 575px) {
    .pricing-wrapper-one .plane-process {
        top: -15%;
        left: 22px;
    }
}

.pricing-wrapper-one .plane-process span {
    color: #fff;
    font-size: 16px;
    font-weight: 200;
}

.pricing-wrapper-one .plane-process .title {
    margin-bottom: 0;
    color: #fff;
    margin-top: 0;
    font-size: 36px;
}

.pricing-wrapper-one .pricing-header-start {
    padding-bottom: 7px;
    border-bottom: 1px solid #EAE2E2;
}

.pricing-wrapper-one .pricing-body {
    padding-top: 32px;
}

    .pricing-wrapper-one .pricing-body .single-pricing {
        display: flex;
        align-items: center;
        margin-bottom: 14px;
    }

        .pricing-wrapper-one .pricing-body .single-pricing:last-child {
            margin-bottom: 0;
        }

        .pricing-wrapper-one .pricing-body .single-pricing .icon {
            margin-right: 15px;
        }

            .pricing-wrapper-one .pricing-body .single-pricing .icon i {
                border: 1px solid #5D666F;
                padding: 2px;
                border-radius: 50%;
                font-size: 12px;
            }

        .pricing-wrapper-one .pricing-body .single-pricing .price-details {
            color: #5D666F;
            font-size: 16px;
            font-weight: 400;
        }

        .pricing-wrapper-one .pricing-body .single-pricing.available .icon i {
            border: 1px solid var(--color-primary);
            background: var(--color-primary);
            color: #FFF;
        }

        .pricing-wrapper-one .pricing-body .single-pricing.available .price-details {
            color: #1C2539;
            font-weight: 400;
        }

    .pricing-wrapper-one .pricing-body a.rts-btn {
        display: block;
        max-width: max-content;
        margin-top: 42px;
        font-weight: 700;
        padding: 17px 40px;
        border-radius: 6px;
        box-shadow: 0px 9px 18px rgba(24, 16, 16, 0.05);
        border-radius: 6px;
    }

        .pricing-wrapper-one .pricing-body a.rts-btn.btn-white {
            background: #fff;
        }

@media only screen and (max-width: 479px) {
    .pricing-wrapper-one .pricing-body a.rts-btn {
        margin-top: 30px;
    }
}

.cta-main-area-wrapper-one {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    height: 175px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 80px;
    justify-content: space-between;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cta-main-area-wrapper-one {
        height: auto;
        flex-direction: column;
    }
}

@media only screen and (max-width: 767px) {
    .cta-main-area-wrapper-one {
        flex-direction: column;
        height: auto;
        padding: 25px;
    }
}

@media only screen and (max-width: 575px) {
    .cta-main-area-wrapper-one {
        flex-direction: column;
        height: auto;
        padding: 25px;
        text-align: center;
    }
}

.cta-main-area-wrapper-one .left-areas span {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 16px;
    color: #cbd5e0 !important;
}

.cta-main-area-wrapper-one .left-areas .title {
    font-size: 36px;
    margin-top: 10px;
    margin-bottom: 0;
    color: #ffffff !important;
}

@media only screen and (max-width: 767px) {
    .cta-main-area-wrapper-one .left-areas .title {
        font-size: 26px;
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 575px) {
    .cta-main-area-wrapper-one .left-areas .title {
        font-size: 26px;
        margin-bottom: 15px;
    }
}

.cta-main-area-wrapper-one .left-areas .privacy-notice {
    color: #cbd5e0;
    margin-top: 8px;
}

    .cta-main-area-wrapper-one .left-areas .privacy-notice a {
        color: #6366f1;
        text-decoration: none;
    }

        .cta-main-area-wrapper-one .left-areas .privacy-notice a:hover {
            color: #ffffff;
        }

@media only screen and (max-width: 575px) {
    .cta-main-area-wrapper-one .right-area {
        width: 100%;
    }
}

.cta-main-area-wrapper-one .right-area .inpur-area-main {
    position: relative;
}

    .cta-main-area-wrapper-one .right-area .inpur-area-main input {
        height: 63px;
        background: rgba(255, 255, 255, 0.95);
        color: #374151;
        width: 547px;
        padding-right: 200px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
    }

        .cta-main-area-wrapper-one .right-area .inpur-area-main input:focus {
            outline: none;
            border-color: #6366f1;
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
        }

        .cta-main-area-wrapper-one .right-area .inpur-area-main input::placeholder {
            color: #9ca3af;
        }

@media only screen and (max-width: 767px) {
    .cta-main-area-wrapper-one .right-area .inpur-area-main input {
        width: 100%;
    }
}

@media only screen and (max-width: 575px) {
    .cta-main-area-wrapper-one .right-area .inpur-area-main input {
        width: 100%;
        padding-right: 0;
    }
}

.cta-main-area-wrapper-one .right-area .inpur-area-main button {
    position: absolute;
    right: 10px;
    top: 50%;
    height: 45px;
    transform: translateY(-50%);
    border-radius: 6px;
    background: var(--color-primary);
    border: none;
    color: #ffffff;
    font-weight: 500;
    transition: 800ms;
    overflow: hidden;
    z-index: 1;
}

    .cta-main-area-wrapper-one .right-area .inpur-area-main button::before {
        content: "";
        position: absolute;
        transition-duration: 800ms;
        width: 200%;
        height: 200%;
        top: 110%;
        left: 50%;
        background: #F2F2F2;
        transform: translateX(-50%);
        border-radius: 50%;
        z-index: -1;
    }

    .cta-main-area-wrapper-one .right-area .inpur-area-main button:hover {
        background: #F2F2F2;
        color: var(--color-primary);
        transform: translateY(-50%);
    }

        .cta-main-area-wrapper-one .right-area .inpur-area-main button:hover::before {
            top: -40%;
        }

    .cta-main-area-wrapper-one .right-area .inpur-area-main button:focus {
        border: none;
        outline: none;
        box-shadow: none;
    }

@media only screen and (max-width: 575px) {
    .cta-main-area-wrapper-one .right-area .inpur-area-main button {
        position: relative;
        transform: none;
        margin: auto;
        margin-top: 15px;
        background: var(--color-primary);
        border: none;
        color: #ffffff;
        font-weight: 500;
        transition: 800ms;
        overflow: hidden;
        z-index: 1;
    }

        .cta-main-area-wrapper-one .right-area .inpur-area-main button::before {
            content: "";
            position: absolute;
            transition-duration: 800ms;
            width: 200%;
            height: 200%;
            top: 110%;
            left: 50%;
            background: #F2F2F2;
            transform: translateX(-50%);
            border-radius: 50%;
            z-index: -1;
        }

        .cta-main-area-wrapper-one .right-area .inpur-area-main button:hover {
            background: #F2F2F2;
            color: var(--color-primary);
            transform: none !important;
        }

            .cta-main-area-wrapper-one .right-area .inpur-area-main button:hover::before {
                top: -40%;
            }

        .cta-main-area-wrapper-one .right-area .inpur-area-main button:focus {
            border: none;
            outline: none;
            box-shadow: none;
            transform: none !important;
        }
}

.container-full {
    width: 100%;
}

.footer-8-area-bg {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

.footer-logo-area-left-8 {
    text-align: left;
}

    .footer-logo-area-left-8 .logo {
        display: block;
        margin-bottom: 25px;
    }

    .footer-logo-area-left-8 p.disc {
        color: #cbd5e0;
        margin-bottom: 25px;
    }

    .footer-logo-area-left-8 ul {
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 8px;
        list-style: none;
    }

        .footer-logo-area-left-8 ul li a {
            height: 40px;
            width: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 5px;
            background: #4a5568;
            transition: 0.3s;
        }

            .footer-logo-area-left-8 ul li a i {
                color: #fff;
            }

            .footer-logo-area-left-8 ul li a:hover {
                transform: translateY(-5px);
                background: #6366f1;
            }

.footer-8-area-bg .footer-one-single-wized .wized-title {
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .footer-8-area-bg .footer-one-single-wized .wized-title {
        margin-top: 15px;
    }
}

.footer-8-area-bg .footer-one-single-wized .wized-title .title {
    color: #fff;
    margin-bottom: 10px;
}

.footer-8-area-bg .footer-one-single-wized .quick-link-inner {
    display: flex;
}

@media only screen and (max-width: 479px) {
    .footer-8-area-bg .footer-one-single-wized .quick-link-inner {
        flex-direction: column;
    }
}

.footer-8-area-bg .footer-one-single-wized .quick-link-inner .links {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

    .footer-8-area-bg .footer-one-single-wized .quick-link-inner .links.margin-left-70 {
        margin-left: 70px;
    }

@media only screen and (max-width: 1199px) {
    .footer-8-area-bg .footer-one-single-wized .quick-link-inner .links.margin-left-70 {
        margin-left: 20px;
    }
}

@media only screen and (max-width: 479px) {
    .footer-8-area-bg .footer-one-single-wized .quick-link-inner .links.margin-left-70 {
        margin-left: 0;
    }
}

.footer-8-area-bg .footer-one-single-wized .quick-link-inner .links li {
    margin-top: 0;
}

    .footer-8-area-bg .footer-one-single-wized .quick-link-inner .links li a {
        color: #cbd5e0;
        transition: var(--transition);
        position: relative;
        max-width: max-content;
    }

        .footer-8-area-bg .footer-one-single-wized .quick-link-inner .links li a::after {
            position: absolute;
            content: "";
            width: 0%;
            height: 1px;
            background: #6366f1;
            left: 29px;
            bottom: 0;
            transition: 0.3s;
        }

        .footer-8-area-bg .footer-one-single-wized .quick-link-inner .links li a i {
            margin-right: 12px;
            transition: 0.3s;
        }

        .footer-8-area-bg .footer-one-single-wized .quick-link-inner .links li a:hover {
            color: var(--color-white);
        }

            .footer-8-area-bg .footer-one-single-wized .quick-link-inner .links li a:hover::after {
                position: absolute;
                width: 76%;
            }

            .footer-8-area-bg .footer-one-single-wized .quick-link-inner .links li a:hover i {
                color: #fff;
            }

.footer-8-area-bg .footer-one-single-wized .signle-footer-contact-8 {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

    .footer-8-area-bg .footer-one-single-wized .signle-footer-contact-8 .icon {
        height: 35px;
        width: 35px;
        display: flex;
        align-content: center;
        justify-content: center;
        background: #4a5568;
        border-radius: 5px;
    }

        .footer-8-area-bg .footer-one-single-wized .signle-footer-contact-8 .icon i {
            color: #fff;
            line-height: 2;
        }

    .footer-8-area-bg .footer-one-single-wized .signle-footer-contact-8 .inner-content .title {
        color: #fff;
        margin-bottom: 7px;
        font-size: 16px;
        font-weight: 400;
    }

    .footer-8-area-bg .footer-one-single-wized .signle-footer-contact-8 .inner-content a {
        color: #cbd5e0;
        font-size: 16px;
        font-weight: 500;
        transition: 0.4s;
    }

        .footer-8-area-bg .footer-one-single-wized .signle-footer-contact-8 .inner-content a:hover {
            color: #fff;
        }

.copyright-area-main-wrapper {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-8-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media only screen and (max-width: 575px) {
    .copyright-8-wrapper {
        flex-direction: column;
        align-items: center;
    }
}

.copyright-8-wrapper p {
    margin: 0;
    padding: 30px 0;
    color: #cbd5e0;
}

@media only screen and (max-width: 575px) {
    .copyright-8-wrapper p {
        padding: 30px 0 0 0;
        text-align: center;
    }
}

.copyright-8-wrapper ul {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
}

@media only screen and (max-width: 575px) {
    .copyright-8-wrapper ul {
        padding-left: 0;
    }
}

.copyright-8-wrapper ul li {
    padding: 0;
    margin: 0;
}

    .copyright-8-wrapper ul li a {
        color: #cbd5e0;
    }

        .copyright-8-wrapper ul li a:hover {
            color: #fff;
        }

.mt-dec-blog-bread {
    margin-top: -113px;
}

.mySwiper-blog-one {
    padding-bottom: 70px;
}

.rts-blog-h-2-wrapper {
    padding: 40px;
    border-radius: 30px;
    border: 1px solid #EDEFF3;
    height: 100%;
}

@media only screen and (max-width: 1199px) {
    .rts-blog-h-2-wrapper {
        padding: 20px;
    }
}

@media only screen and (max-width: 575px) {
    .rts-blog-h-2-wrapper {
        padding: 15px;
    }
}

.rts-blog-h-2-wrapper .thumbnail {
    overflow: hidden;
    display: block;
    max-width: max-content;
    margin-bottom: 30px;
    border-radius: 30px;
}

    .rts-blog-h-2-wrapper .thumbnail img {
        width: 100%;
        transition: 0.5s;
    }

    .rts-blog-h-2-wrapper .thumbnail:hover img {
        transform: scale(1.1);
    }

.rts-blog-h-2-wrapper .body span {
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 500;
}

.rts-blog-h-2-wrapper .body a .title {
    margin-top: 15px;
    transition: 0.3s;
    color: #1C2539;
    font-weight: 700;
    line-height: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .rts-blog-h-2-wrapper .body a .title br {
        display: none;
    }
}

@media only screen and (max-width: 479px) {
    .rts-blog-h-2-wrapper .body a .title {
        font-size: 18px;
        line-height: 29px;
    }
}

.rts-blog-h-2-wrapper .body a:hover .title {
    color: var(--color-primary);
}

.rts-blog-h-2-wrapper .body .rts-read-more {
    color: #1C2539;
}

    .rts-blog-h-2-wrapper .body .rts-read-more:hover {
        color: var(--color-primary);
    }

        .rts-blog-h-2-wrapper .body .rts-read-more:hover i {
            background: var(--color-primary);
            color: #fff;
        }

    .rts-blog-h-2-wrapper .body .rts-read-more i {
        background: #F5F5F5;
        color: #000;
    }

.rts-read-more {
    font-weight: 600;
    color: #1C2539;
    transition: var(--transition);
}

    .rts-read-more i {
        padding: 13px;
        background: #fff;
        border-radius: 50%;
        margin-right: 12px;
        color: #1C2539;
        line-height: 12px;
        font-size: 14px;
        transition: var(--transition);
        box-shadow: 0px 9px 18px rgba(24, 16, 16, 0.05);
    }

    .rts-read-more.btn-primary {
        background: transparent;
        color: #1C2539;
    }

    .rts-read-more:hover {
        color: var(--color-primary);
    }

        .rts-read-more:hover i {
            background: var(--color-primary);
            color: var(--color-white);
        }

    .rts-read-more:focus {
        box-shadow: none;
        outline: none;
    }

.blog-single-post-listing {
    margin-right: 30px;
    border: 1px solid #E6E9F0;
    margin-bottom: 50px;
}

@media only screen and (max-width: 1199px) {
    .blog-single-post-listing {
        margin-right: 0;
    }
}

.blog-single-post-listing.details {
    border-radius: 15px;
}

    .blog-single-post-listing.details .thumbnail {
        border-radius: 15px 15px 0 0;
    }

        .blog-single-post-listing.details .thumbnail.details {
            border-radius: 15px;
            width: 100%;
            max-width: max-content;
        }

@media only screen and (max-width: 1199px) {
    .blog-single-post-listing.details .thumbnail.details {
        max-width: 100%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog-single-post-listing.details .thumbnail.details {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .blog-single-post-listing.details .thumbnail.details {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 575px) {
    .blog-single-post-listing.details .thumbnail.details {
        margin-bottom: 0;
    }
}

.blog-single-post-listing.details .rts-quote-area {
    padding: 50px;
    background: #F6F6F6;
    border-radius: 15px;
    margin-bottom: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog-single-post-listing.details .rts-quote-area {
        padding: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .blog-single-post-listing.details .rts-quote-area {
        padding: 10px;
        margin-bottom: 25px;
    }
}

@media only screen and (max-width: 479px) {
    .blog-single-post-listing.details .rts-quote-area {
        margin-top: 15px;
    }
}

.blog-single-post-listing.details .rts-quote-area .title {
    margin-bottom: 25px;
}

@media only screen and (max-width: 479px) {
    .blog-single-post-listing.details .rts-quote-area .title {
        font-size: 16px;
        margin-bottom: 15px;
    }
}

.blog-single-post-listing.details .rts-quote-area .name {
    font-size: 18px;
    color: var(--color-primary);
    font-weight: 700;
}

.blog-single-post-listing.details .rts-quote-area span {
    display: block;
    font-weight: 400;
    font-size: 14px;
    color: #5D666F;
}

.blog-single-post-listing.details .details-tag {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

@media only screen and (max-width: 479px) {
    .blog-single-post-listing.details .details-tag {
        justify-content: flex-start;
    }
}

.blog-single-post-listing.details .details-tag h6 {
    margin-bottom: 0;
    font-size: 18px;
    margin-right: 15px;
}

.blog-single-post-listing.details .details-tag button {
    padding: 8px 12px;
    background: #F6F6F6;
    max-width: max-content;
    margin-left: 10px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
    color: #1C2539;
    transition: 0.3s;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .blog-single-post-listing.details .details-tag button:last-child {
        margin-top: 10px;
        margin-left: -2px;
    }
}

.blog-single-post-listing.details .details-tag button:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-2px) scale(1.02);
}

.blog-single-post-listing.details .details-share {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog-single-post-listing.details .details-share {
        justify-content: flex-start;
        margin-top: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .blog-single-post-listing.details .details-share {
        justify-content: flex-start;
        margin-top: 30px;
    }
}

@media only screen and (max-width: 575px) {
    .blog-single-post-listing.details .details-share {
        justify-content: flex-start;
        margin-top: 20px;
    }
}

.blog-single-post-listing.details .details-share button {
    max-width: max-content;
    position: relative;
    z-index: 1;
    margin-left: 23px;
    color: #1C2539;
    transition: 0.3s;
    font-size: 14px;
}

    .blog-single-post-listing.details .details-share button::after {
        position: absolute;
        content: "";
        background: #F6F6F6;
        height: 40px;
        width: 40px;
        border-radius: 50%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: -1;
        transition: 0.3s;
    }

    .blog-single-post-listing.details .details-share button:hover {
        color: #fff;
        transform: scale(1.2);
    }

        .blog-single-post-listing.details .details-share button:hover::after {
            background: var(--color-primary);
        }

.blog-single-post-listing.details .details-share h6 {
    font-size: 18px;
    margin-bottom: 0;
    margin-right: 15px;
}

.blog-single-post-listing.inner {
    border: none;
    max-width: 950px;
    margin: 0 auto;
}

.blog-single-post-listing .thumbnail {
    overflow: hidden;
}

    .blog-single-post-listing .thumbnail img {
        transition: 0.3s;
        width: 100%;
    }

    .blog-single-post-listing .thumbnail:hover img {
        transform: scale(1.2);
    }

/* Blog post large images - rounded corners */
.thumbnail-large img {
    border-radius: 15px;
    width: 100%;
    height: auto;
    transition: 0.3s;
}

.thumbnail-large {
    overflow: hidden;
    border-radius: 15px;
}

.blog-single-post-listing .blog-listing-content {
    padding: 50px;
}

@media only screen and (max-width: 767px) {
    .blog-single-post-listing .blog-listing-content {
        padding: 25px 10px;
    }
}

.blog-single-post-listing .blog-listing-content .user-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

    .blog-single-post-listing .blog-listing-content .user-info .single {
        margin-right: 30px;
        min-width: max-content;
    }

@media only screen and (max-width: 767px) {
    .blog-single-post-listing .blog-listing-content .user-info .single {
        margin-right: 5px;
    }
}

@media only screen and (max-width: 575px) {
    .blog-single-post-listing .blog-listing-content .user-info .single {
        margin-right: 5px;
    }
}

.blog-single-post-listing .blog-listing-content .user-info .single i {
    margin-right: 10px;
    color: var(--color-primary);
}

@media only screen and (max-width: 575px) {
    .blog-single-post-listing .blog-listing-content .user-info .single i {
        margin-right: 2px;
        font-size: 14px;
    }
}

@media only screen and (max-width: 575px) {
    .blog-single-post-listing .blog-listing-content .user-info .single span {
        font-size: 13px;
    }
}

.blog-single-post-listing .blog-listing-content .blog-title {
    transition: 0.3s;
}

    .blog-single-post-listing .blog-listing-content .blog-title .title {
        transition: 0.3s;
        margin-bottom: 16px;
    }

    .blog-single-post-listing .blog-listing-content .blog-title:hover .title {
        color: var(--color-primary);
    }

.blog-single-post-listing .blog-listing-content p.disc {
    font-size: 16px;
    line-height: 26px;
}

@media only screen and (max-width: 479px) {
    .blog-single-post-listing .blog-listing-content p.disc {
        margin-bottom: 15px;
    }
}

.blog-single-post-listing .blog-listing-content a.rts-btn {
    margin-top: 35px;
    display: block;
    max-width: max-content;
}

@media only screen and (max-width: 479px) {
    .blog-single-post-listing .blog-listing-content a.rts-btn {
        margin-top: 20px;
    }
}

.blog-list-style .rts-single-wized.Recent-post {
    background: #F2F2F2;
}

.blog-list-style .rts-single-wized.tags {
    background: #F2F2F2;
}

.blog-list-style .rts-single-wized.search1 {
    background: #F2F2F2;
}

.blog-list-style .rts-single-wized.Categories {
    background: #F2F2F2;
}

    .blog-list-style .rts-single-wized.Categories li a {
        background: #FFFFFF;
        color: #5D666F;
    }

        .blog-list-style .rts-single-wized.Categories li a * {
            color: #5D666F;
        }

.blog-list-style .rts-single-wized .wized-header .title {
    color: var(--color-primary);
}

.blog-details-area-inner-content {
    padding: 50px;
    border: 1px solid #E6E9F0;
    border-radius: 15px;
    background: #fff;
}

@media only screen and (max-width: 575px) {
    .blog-details-area-inner-content {
        padding: 20px;
    }
}

.blog-details-area-inner-content .blog-details-top-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
    .blog-details-area-inner-content .blog-details-top-wrapper {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.blog-details-area-inner-content .blog-details-top-wrapper .single {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .blog-details-area-inner-content .blog-details-top-wrapper .single span {
        color: #5D666F;
        font-weight: 400;
    }

.blog-details-area-inner-content .title {
    font-size: 36px;
}

@media only screen and (max-width: 575px) {
    .blog-details-area-inner-content .title {
        font-size: 24px;
    }
}

.blog-details-area-inner-content p.disc {
    font-size: 16px;
}

.details-tag {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

@media only screen and (max-width: 575px) {
    .details-tag {
        gap: 5px;
    }
}

@media only screen and (max-width: 479px) {
    .details-tag {
        justify-content: flex-start;
    }
}

.details-tag h6 {
    margin-bottom: 0;
    font-size: 18px;
    margin-right: 15px;
}

.details-tag button {
    padding: 8px 12px;
    background: #F6F6F6;
    max-width: max-content;
    margin-left: 10px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
    color: #1C2539;
    transition: 0.3s;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .details-tag button:last-child {
        margin-top: 10px;
        margin-left: -2px;
    }
}

.details-tag button:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-2px) scale(1.02);
}

.details-share {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .details-share {
        justify-content: flex-start;
        margin-top: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .details-share {
        justify-content: flex-start;
        margin-top: 30px;
    }
}

@media only screen and (max-width: 575px) {
    .details-share {
        justify-content: flex-start;
        margin-top: 20px;
    }
}

.details-share button {
    max-width: max-content;
    position: relative;
    z-index: 1;
    margin-left: 23px;
    color: #1C2539;
    transition: 0.3s;
    font-size: 14px;
}

    .details-share button::after {
        position: absolute;
        content: "";
        background: #F6F6F6;
        height: 40px;
        width: 40px;
        border-radius: 50%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: -1;
        transition: 0.3s;
    }

    .details-share button:hover {
        color: #fff;
        transform: scale(1.2);
    }

        .details-share button:hover::after {
            background: var(--color-primary);
        }

.details-share h6 {
    font-size: 18px;
    margin-bottom: 0;
    margin-right: 15px;
}

.rts-quote-area {
    padding: 50px;
    background: #F6F6F6;
    border-radius: 15px;
    margin-bottom: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .rts-quote-area {
        padding: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .rts-quote-area {
        padding: 10px;
        margin-bottom: 25px;
    }
}

@media only screen and (max-width: 479px) {
    .rts-quote-area {
        margin-top: 15px;
    }
}

.rts-quote-area .title {
    margin-bottom: 25px;
    font-size: 24px;
}

@media only screen and (max-width: 479px) {
    .rts-quote-area .title {
        font-size: 16px;
        margin-bottom: 15px;
    }
}

.rts-quote-area .name {
    font-size: 18px;
    color: var(--color-primary);
    font-weight: 700;
}

.rts-quote-area span {
    display: block;
    font-weight: 400;
    font-size: 14px;
    color: #5D666F;
}

.mt-dec-180 {
    margin-top: -480px;
    position: relative;
    z-index: 5;
}

@media only screen and (max-width: 767px) {
    .mt-dec-180 {
        margin-top: -200px;
    }
}

.mySwiper-case-studies-5 {
    padding-bottom: 90px;
    position: relative;
}

    .mySwiper-case-studies-5 .swiper-button-next,
    .mySwiper-case-studies-5 .swiper-button-prev {
        width: 40px;
        height: 35px;
        background: #FFFFFF;
        box-shadow: 0px 10px 20px rgba(24, 16, 16, 0.06);
        border-radius: 8px;
        position: absolute;
        bottom: 20px;
        top: auto;
    }

        .mySwiper-case-studies-5 .swiper-button-next i,
        .mySwiper-case-studies-5 .swiper-button-prev i {
            color: var(--color-primary);
        }

        .mySwiper-case-studies-5 .swiper-button-next::after,
        .mySwiper-case-studies-5 .swiper-button-prev::after {
            display: none;
        }

    .mySwiper-case-studies-5 .swiper-button-next {
        right: calc(50% - 100px);
    }

    .mySwiper-case-studies-5 .swiper-button-prev {
        left: calc(50% - 100px);
    }

    .mySwiper-case-studies-5 .swiper-pagination-fraction {
        left: 50%;
        transform: translateX(-50%);
        position: absolute;
        bottom: 20px;
        right: auto;
        max-width: max-content;
    }

        .mySwiper-case-studies-5 .swiper-pagination-fraction span {
            font-weight: 700;
        }

.mySwiper-project-five {
    padding-bottom: 90px;
    position: relative;
}

    .mySwiper-project-five .swiper-button-next,
    .mySwiper-project-five .swiper-button-prev {
        width: 40px;
        height: 35px;
        background: transparent;
        box-shadow: 0px 10px 20px rgba(24, 16, 16, 0.06);
        border-radius: 8px;
        position: absolute;
        bottom: 20px;
        top: auto;
        border: 1px solid rgb(93, 102, 111);
    }

        .mySwiper-project-five .swiper-button-next i,
        .mySwiper-project-five .swiper-button-prev i {
            color: rgb(93, 102, 111);
        }

        .mySwiper-project-five .swiper-button-next::after,
        .mySwiper-project-five .swiper-button-prev::after {
            display: none;
        }

    .mySwiper-project-five .swiper-button-next {
        right: calc(50% - 100px);
    }

    .mySwiper-project-five .swiper-button-prev {
        left: calc(50% - 100px);
    }

    .mySwiper-project-five .swiper-pagination-fraction {
        left: 50%;
        transform: translateX(-50%);
        position: absolute;
        bottom: 20px;
        right: auto;
        max-width: max-content;
    }

        .mySwiper-project-five .swiper-pagination-fraction span {
            font-weight: 700;
        }

.title-area-client-client {
    position: relative;
}

    .title-area-client-client p.client-title {
        max-width: max-content;
        margin: auto;
        font-weight: 700;
        color: #1C2539;
        text-transform: uppercase;
    }

    .title-area-client-client::after {
        content: "";
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        width: 41%;
        background: var(--color-primary);
        display: flex;
        align-items: center;
        margin-top: -14px;
    }

@media only screen and (max-width: 1199px) {
    .title-area-client-client::after {
        width: 38%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .title-area-client-client::after {
        width: 35%;
    }
}

@media only screen and (max-width: 767px) {
    .title-area-client-client::after {
        width: 30%;
    }
}

@media only screen and (max-width: 575px) {
    .title-area-client-client::after {
        display: none;
    }
}

.title-area-client-client::before {
    content: "";
    position: absolute;
    left: 59%;
    width: 100%;
    height: 2px;
    width: 41%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    margin-top: 15px;
}

@media only screen and (max-width: 1199px) {
    .title-area-client-client::before {
        left: 62%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .title-area-client-client::before {
        left: 65%;
        width: 35%;
    }
}

@media only screen and (max-width: 767px) {
    .title-area-client-client::before {
        left: 69%;
        width: 30%;
    }
}

@media only screen and (max-width: 575px) {
    .title-area-client-client::before {
        display: none;
    }
}

.client-three-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .client-three-wrapper {
        gap: 30px;
        justify-content: center;
    }
}

@media only screen and (max-width: 1199px) {
    .client-three-wrapper {
        gap: 30px;
        justify-content: center;
    }
}

@media only screen and (max-width: 991px) {
    .client-three-wrapper {
        gap: 20px;
    }
}

@media only screen and (max-width: 575px) {
    .client-three-wrapper {
        justify-content: center;
    }
}

.client-three-wrapper .single {
    width: 190px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    box-shadow: 0px 10px 30px rgba(33, 5, 5, 0.05);
    border-radius: 15px;
    transition: 0.3s;
    cursor: pointer;
}

@media only screen and (max-width: 575px) {
    .client-three-wrapper .single {
        width: 160px;
        height: 64px;
    }
}

.client-three-wrapper .single:hover {
    transform: scale(1.05) translateY(-5px);
}

.client-three-wrapper img {
    max-width: 130px;
}

@media only screen and (max-width: 575px) {
    .client-three-wrapper img {
        max-width: 90px;
    }
}

.progress-circle-main-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*For CodePen*/
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .progress-circle-main-wrapper {
        gap: 15px;
    }
}

@media only screen and (max-width: 1199px) {
    .progress-circle-main-wrapper {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media only screen and (max-width: 479px) {
    .progress-circle-main-wrapper {
        justify-content: center;
    }
}

.progress-circle-main-wrapper .single-progress-circle {
    display: flex;
    justify-content: center;
    position: relative;
}

.progress-circle-main-wrapper svg.radial-progress {
    height: auto;
    max-width: 140px;
    padding: 0;
    border-radius: 50%;
    transform: rotate(-90deg);
    width: 100%;
    background-image: none;
    border-radius: 50%;
    transition: 0.3s;
}

    .progress-circle-main-wrapper svg.radial-progress circle {
        fill: transparent;
        stroke: #fff;
    }

        .progress-circle-main-wrapper svg.radial-progress circle.bar-static {
            stroke: rgba(31, 31, 33, 0.08) !important;
            stroke-width: 3px;
            transition: 0.3s;
        }

        .progress-circle-main-wrapper svg.radial-progress circle.bar--animated {
            stroke-dasharray: 219.9114857513;
            stroke: var(--color-primary);
            stroke-dashoffset: 219.9114857513;
            stroke-width: 3px;
            transition: 0.3s;
            stroke-linecap: round;
        }

    .progress-circle-main-wrapper svg.radial-progress text {
        fill: #1F1F21 !important;
        font-size: 16px;
        font-weight: 700;
        text-anchor: middle;
        font-family: var(--font-primary);
        fill: rgba(31, 31, 33, 0.2);
        transition: 0.3s;
        color: var(--color-primary);
    }

    .progress-circle-main-wrapper svg.radial-progress:hover circle.bar-static {
        stroke-width: 1px;
    }

    .progress-circle-main-wrapper svg.radial-progress:hover circle.bar--animated {
        stroke-width: 4px;
    }

    .progress-circle-main-wrapper svg.radial-progress:hover text {
        fill: #1F1F21;
    }

.progress-circle-main-wrapper .single-progress-area {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
}

@media only screen and (max-width: 479px) {
    .progress-circle-main-wrapper .single-progress-area {
        flex-direction: column;
        align-items: center;
    }
}

.progress-circle-main-wrapper .single-progress-area::after {
    position: absolute;
    right: -86px;
    height: 100%;
    width: 1px;
    background: #D9D9D9;
    content: "";
}

@media only screen and (max-width: 1199px) {
    .progress-circle-main-wrapper .single-progress-area::after {
        display: none;
    }
}

.progress-circle-main-wrapper .single-progress-area:last-child::after {
    display: none;
}

.progress-circle-main-wrapper .single-progress-area svg text {
    opacity: 0;
}

.progress-circle-main-wrapper .single-progress-area img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* Custom styling for FontAwesome icons in progress circles */
.progress-circle-main-wrapper .single-progress-area i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    font-size: 3rem !important;
}

.progress-circle-main-wrapper .single-progress-area .right-counter .title {
    margin-bottom: 0;
    font-size: 48px;
}

.progress-circle-main-wrapper .single-progress-area .right-counter p {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #5D666F;
}

.faq-wrapper-inner-page .accordion-item {
    margin-bottom: 30px;
    background: #F2F2F2;
    border: 1px solid #E3E0E6;
    box-shadow: 0px 7px 18px rgba(24, 16, 16, 0.05);
    border-radius: 6px;
}

@media only screen and (max-width: 575px) {
    .faq-wrapper-inner-page .accordion-item {
        margin: 0 15px;
        margin-bottom: 30px;
    }
}

.faq-wrapper-inner-page .accordion-item .accordion-header {
    border: none;
    box-shadow: none;
}

    .faq-wrapper-inner-page .accordion-item .accordion-header button {
        padding: 24px 40px;
        border: none;
        box-shadow: none;
        font-size: 18px;
        color: #1C2539;
        background: transparent;
        font-weight: 700;
    }

@media only screen and (max-width: 767px) {
    .faq-wrapper-inner-page .accordion-item .accordion-header button {
        padding: 24px 15px;
    }
}

.faq-wrapper-inner-page .accordion-item .accordion-header button::after {
    content: "\f078";
    font-family: var(--font-3);
    background-image: none;
    transform: none;
    margin-top: -5px;
}

.faq-wrapper-inner-page .accordion-item .accordion-header button[aria-expanded=true]::after {
    content: "\f077";
}

.faq-wrapper-inner-page .accordion-item .accordion-body {
    padding: 0 20px 20px 40px;
}

@media only screen and (max-width: 767px) {
    .faq-wrapper-inner-page .accordion-item .accordion-body {
        padding: 0 20px 20px 20px;
    }
}

@media only screen and (max-width: 1199px) {
    .working-process-one.bg-main.rts-section-gap {
        overflow: hidden;
    }
}

.rts-why-choose-us-section-8 {
    background: #F2F2F2;
}

@media only screen and (max-width: 1199px) {
    .rts-why-choose-us-section-8 {
        background: transparent;
    }
}

.why-choose-8-wrapper-content {
    max-width: 70%;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .why-choose-8-wrapper-content {
        max-width: 100%;
    }
}

@media only screen and (max-width: 1199px) {
    .why-choose-8-wrapper-content {
        max-width: 100%;
    }
}

@media only screen and (max-width: 575px) {
    .why-choose-8-wrapper-content {
        max-width: 100%;
    }
}

.single-feature-service-wrapper-8 {
    display: flex;
    align-items: flex-start;
    gap: 29px;
    margin-bottom: 35px;
}

@media only screen and (max-width: 1199px) {
    .single-feature-service-wrapper-8 {
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 575px) {
    .single-feature-service-wrapper-8 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.single-feature-service-wrapper-8 .icon {
    height: 60px;
    min-width: 60px;
    background: #20282D;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.single-feature-service-wrapper-8 .inner-wrapper .title {
    margin-bottom: 5px;
}

.single-feature-service-wrapper-8 .inner-wrapper p.disc {
    max-width: 85%;
    font-size: 16px;
}

.rts-appoinment-area-9 {
    background-image: url(../images/appoinment/04.webp);
}

.appoinment-area-9 {
    background: #fff;
    border-radius: 0 10px 10px 0;
    padding: 70px 53px;
    height: 100%;
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 575px) {
    .appoinment-area-9 {
        padding: 25px;
    }
}

.appoinment-area-9 .single-input {
    width: 100%;
}

.appoinment-area-9 input {
    width: 100%;
    margin-bottom: 20px;
    height: 55px;
    border-radius: 15px;
    background: #F6F6F6;
    border: 1px solid transparent;
}

.appoinment-area-9 textarea {
    height: 150px;
    border-radius: 15px;
    background: #F6F6F6;
    margin-bottom: 30px;
    border: 1px solid transparent;
    padding: 15px;
}

    .appoinment-area-9 textarea:focus {
        border: 1px solid var(--color-primary);
    }

.appoinment-area-9 .half-input-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mySwiperh2_clients {
    padding-bottom: 70px;
}

.mySwiper-testimoanils-6 {
    padding-bottom: 70px;
}

.mySwiper-testimoanils-7 .swiper-button-next,
.mySwiper-testimoanils-7 .swiper-button-prev {
    height: 55px;
    width: 55px;
    background: #F2F2F2;
}

@media only screen and (max-width: 479px) {
    .mySwiper-testimoanils-7 .swiper-button-next,
    .mySwiper-testimoanils-7 .swiper-button-prev {
        display: none;
    }
}

.mySwiper-testimoanils-7 .swiper-button-next i,
.mySwiper-testimoanils-7 .swiper-button-prev i {
    color: #1C2539;
}

.mySwiper-testimoanils-7 .swiper-button-next::after,
.mySwiper-testimoanils-7 .swiper-button-prev::after {
    display: none;
}

.mySwiper-testimonails-9 {
    max-width: 744px;
    margin: auto;
    padding-bottom: 110px;
}

.mySwiper-testimnials-hr .swiper-button-next,
.mySwiper-testimnials-hr .swiper-button-prev {
    width: 55px;
    height: 55px;
    background: #FFFFFF;
    border-radius: 50%;
    transition: 0.3s;
}

    .mySwiper-testimnials-hr .swiper-button-next i,
    .mySwiper-testimnials-hr .swiper-button-prev i {
        color: #181A1C;
    }

    .mySwiper-testimnials-hr .swiper-button-next::after,
    .mySwiper-testimnials-hr .swiper-button-prev::after {
        display: none;
    }

    .mySwiper-testimnials-hr .swiper-button-next:hover,
    .mySwiper-testimnials-hr .swiper-button-prev:hover {
        box-shadow: 0px 10px 20px #E8E8E8;
    }

.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 999;
    opacity: 1;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

    .progress-wrap.active-progress {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .progress-wrap::after {
        position: absolute;
        font-family: var(--font-3);
        content: "\f077";
        text-align: center;
        line-height: 46px;
        font-size: 24px;
        color: var(--color-primary);
        left: 0;
        top: 0;
        height: 46px;
        width: 46px;
        cursor: pointer;
        display: block;
        z-index: 1;
        -webkit-transition: all 200ms linear;
        transition: all 200ms linear;
        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: "\f077";
    }

    .progress-wrap::before {
        position: absolute;
        font-family: var(--font-3);
        content: "\f077";
        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;
        -webkit-transition: all 200ms linear;
        transition: all 200ms linear;
    }

    .progress-wrap:hover::before {
        opacity: 0;
    }

    .progress-wrap svg path {
        fill: none;
    }

    .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;
            -webkit-transition: all 200ms linear;
            transition: all 200ms linear;
        }

.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 999;
    opacity: 1;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

    .progress-wrap.active-progress {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .progress-wrap::after {
        position: absolute;
        font-family: var(--font-3);
        content: "\f077";
        text-align: center;
        line-height: 46px;
        font-size: 24px;
        color: var(--color-primary);
        left: 0;
        top: 0;
        height: 46px;
        width: 46px;
        cursor: pointer;
        display: block;
        z-index: 1;
        -webkit-transition: all 200ms linear;
        transition: all 200ms linear;
        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: "\f077";
    }

    .progress-wrap::before {
        position: absolute;
        font-family: var(--font-3);
        content: "\f077";
        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;
        -webkit-transition: all 200ms linear;
        transition: all 200ms linear;
    }

    .progress-wrap:hover::before {
        opacity: 0;
    }

    .progress-wrap svg path {
        fill: none;
    }

    .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;
            -webkit-transition: all 200ms linear;
            transition: all 200ms linear;
        }

.search-input-area {
    transition: all 500ms ease;
    visibility: hidden;
    transform: translateY(-100%);
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 57px 0;
    background: white;
    box-shadow: 1px 1px 50px rgba(0, 0, 0, 0.46);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 575px) {
    .search-input-area {
        padding: 70px 0 30px 0;
    }
}

.search-input-area.show {
    visibility: visible;
    transform: inherit;
    opacity: 1;
}

.search-input-area .search-input-inner {
    display: flex;
    align-items: center;
    position: relative;
}

    .search-input-area .search-input-inner .input-div {
        width: 80%;
        display: flex;
        align-items: center;
        margin: auto;
    }

@media only screen and (max-width: 575px) {
    .search-input-area .search-input-inner .input-div {
        width: 100%;
    }
}

.search-input-area .search-input-inner .input-div input {
    background: #F7F7F7;
    border-radius: 5px;
    height: 55px;
    border: 1px solid transparent;
}

    .search-input-area .search-input-inner .input-div input:focus {
        border: 1px solid var(--color-primary);
    }

.search-input-area .search-input-inner .input-div button {
    max-width: max-content;
    padding: 18px 21px;
    background: var(--color-primary);
    display: flex;
    color: #fff;
    align-items: center;
    justify-content: center;
    display: block;
    margin-left: -9px;
    border-radius: 0 5px 5px 0;
}

.search-input-area .search-close-icon {
    cursor: pointer;
    position: absolute;
    right: 38px;
    top: 22px;
}

@media only screen and (max-width: 575px) {
    .search-input-area .search-close-icon {
        right: 20px;
        top: 15px;
    }
}

.search-input-area .search-close-icon i {
    position: relative;
    z-index: 1;
    color: var(--color-primary);
    transition: 0.3s;
    font-size: 18px;
}

    .search-input-area .search-close-icon i:hover {
        color: #F7F7F7;
    }

        .search-input-area .search-close-icon i:hover::after {
            background: var(--color-primary);
        }

    .search-input-area .search-close-icon i::after {
        position: absolute;
        height: 45px;
        width: 45px;
        content: "";
        border-radius: 5px;
        background: rgba(85, 60, 223, 0.0784313725);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: -1;
        transition: 0.3s;
    }

#anywhere-home {
    cursor: url(../images/banner/shape/close.png), auto;
    background: #0e1013;
    position: fixed;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease-in-out;
    pointer-events: none;
    z-index: 50;
}

    #anywhere-home.bgshow {
        background: #0e1013;
        opacity: 70%;
        visibility: visible;
        pointer-events: visible;
        z-index: 999;
        top: 0;
    }

.circle-text-main {
    position: absolute;
    left: 52%;
    bottom: 75px;
    transform: translateX(-50%);
}

    .circle-text-main .circle {
        position: relative;
        width: 170px;
        height: 170px;
        border-radius: 100vmax;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        padding: 10px;
    }

    .circle-text-main .logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .circle-text-main .text {
        position: absolute;
        width: 100%;
        height: 100%;
        font-family: consolas;
        color: #1C2539;
        text-transform: uppercase;
        font-size: 17px;
        animation: textRotation 8s linear infinite;
    }

@keyframes textRotation {
    to {
        transform: rotate(360deg);
    }
}

.circle-text-main .text span {
    position: absolute;
    left: 50%;
    transform-origin: 0 84px;
}

.contact-info-area-wrapper-p {
    background: var(--color-primary);
    padding: 90px 60px;
    border-radius: 10px;
    margin-right: -30px;
    z-index: 2;
    position: relative;
}

@media only screen and (max-width: 991px) {
    .contact-info-area-wrapper-p {
        margin-right: 0;
        padding: 25px;
    }
}

.contact-info-area-wrapper-p .single-contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

@media only screen and (max-width: 575px) {
    .contact-info-area-wrapper-p .single-contact-info {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 10px;
    }
}

.contact-info-area-wrapper-p .single-contact-info:last-child {
    margin-bottom: 0;
}

.contact-info-area-wrapper-p .single-contact-info .icon {
    height: 51px;
    width: 51px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .contact-info-area-wrapper-p .single-contact-info .icon i {
        color: var(--color-primary);
    }

.contact-info-area-wrapper-p .single-contact-info .info-wrapper span {
    color: #B3B7C1;
    display: block;
    margin-bottom: 10px;
}

.contact-info-area-wrapper-p .single-contact-info .info-wrapper a {
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 500;
}

.contact-info-area-wrapper-p.new {
    margin-right: 0;
    padding: 93px 60px;
}

@media only screen and (max-width: 575px) {
    .contact-info-area-wrapper-p.new {
        padding: 35px;
        margin-bottom: 25px;
    }
}

.rts-contact-area-in-page {
    margin-top: -120px;
}

#form-messages {
    margin-bottom: 20px;
}

    #form-messages.success {
        color: green;
    }

.contact-form-p {
    margin-left: -90px;
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    border: 1px solid rgba(32, 40, 45, 0.2);
}

@media only screen and (max-width: 991px) {
    .contact-form-p {
        margin-left: 0;
        padding: 25px;
    }
}

.contact-form-p input {
    height: 54px;
    border: 1px solid rgba(32, 40, 45, 0.2);
    border-radius: 6px;
    margin-bottom: 30px;
}

.contact-form-p textarea {
    margin-bottom: 30px;
    border: 1px solid rgba(32, 40, 45, 0.2);
    border-radius: 6px;
    height: 92px;
    padding: 10px 15px;
}

    .contact-form-p textarea:focus {
        border: 1px solid var(--color-primary);
    }

.contact-form-p.new {
    margin-left: 0;
}

#form-messages.error {
    color: red;
}

#form-messages.success {
    color: green;
}

.mySwiper-related-shop {
    position: relative;
    padding-bottom: 50px;
}

.swiper-container-h1 {
    border-radius: 16px;
}

.mySwiper-pd-slider {
    position: relative;
}

    .mySwiper-pd-slider .swiper-button-next,
    .mySwiper-pd-slider .swiper-button-prev {
        height: 55px;
        width: 55px;
        border-radius: 50%;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .mySwiper-pd-slider .swiper-button-next i,
        .mySwiper-pd-slider .swiper-button-prev i {
            font-size: 18px;
            color: var(--color-primary) !important;
        }

        .mySwiper-pd-slider .swiper-button-next::after,
        .mySwiper-pd-slider .swiper-button-prev::after {
            display: none;
        }

@media only screen and (max-width: 767px) {
    .mySwiper-pd-slider .swiper-button-next,
    .mySwiper-pd-slider .swiper-button-prev {
        display: none;
    }
}

.mySwiper-pd-slider .swiper-button-next {
    right: 60px;
    left: auto;
}

.mySwiper-pd-slider .swiper-button-prev {
    left: 60px;
    right: auto;
}

#gallery {
    padding-top: 40px;
}

@media screen and (min-width: 991px) {
    #gallery {
        padding: 0;
    }
}

.img-wrapper {
    position: relative;
    margin-top: 15px;
}

    .img-wrapper img {
        width: 100%;
    }

.img-overlay {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

    .img-overlay i {
        color: #fff;
        font-size: 3em;
        cursor: pointer;
    }

#overlay {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    #overlay img {
        margin: 0;
        width: 80%;
        height: auto;
        object-fit: contain;
        padding: 5%;
    }

@media screen and (min-width: 768px) {
    #overlay img {
        width: 60%;
    }
}

@media screen and (min-width: 1200px) {
    #overlay img {
        width: 50%;
    }
}

#nextButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;
    cursor: pointer;
}

    #nextButton:hover {
        opacity: 0.7;
    }

@media screen and (min-width: 768px) {
    #nextButton {
        font-size: 3em;
    }
}

#prevButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;
    cursor: pointer;
}

    #prevButton:hover {
        opacity: 0.7;
    }

@media screen and (min-width: 768px) {
    #prevButton {
        font-size: 3em;
    }
}

#exitButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}

    #exitButton:hover {
        opacity: 0.7;
    }

@media screen and (min-width: 768px) {
    #exitButton {
        font-size: 3em;
    }
}

.account-page-body {
    background: #fff;
}

    .account-page-body button {
        border: none;
    }

    .account-page-body .checkbox {
        margin-bottom: 15px;
    }

/* Tech Partners Section - Enhanced Styling */
.rts-trusted-client .tech-partners {
    margin-top: 2rem;
}

.tech-partners .client-three-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem 0;
}

.tech-partners .single {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-width: 120px;
    min-height: 100px;
}

    .tech-partners .single::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
        transition: left 0.6s ease;
    }

    .tech-partners .single:hover::before {
        left: 100%;
    }

    .tech-partners .single img {
        filter: none;
        opacity: 1;
        transition: all 0.4s ease;
        width: 70px;
        height: 70px;
        object-fit: contain;
        position: relative;
        z-index: 2;
    }

    .tech-partners .single:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 35px rgba(37, 99, 235, 0.15);
        border: 1px solid rgba(37, 99, 235, 0.1);
    }

        .tech-partners .single:hover img {
            filter: none;
            opacity: 1;
            transform: scale(1.1);
        }

/* Responsive Design */
@media only screen and (max-width: 991px) {
    .tech-partners .client-three-wrapper {
        gap: 1.5rem;
    }

    .tech-partners .single {
        padding: 1rem;
        min-width: 100px;
        min-height: 80px;
    }

        .tech-partners .single img {
            width: 60px;
            height: 60px;
        }
}

@media only screen and (max-width: 767px) {
    .tech-partners .client-three-wrapper {
        gap: 1rem;
        padding: 1.5rem 0;
    }

    .tech-partners .single {
        padding: 0.8rem;
        min-width: 90px;
        min-height: 70px;
    }

        .tech-partners .single img {
            width: 50px;
            height: 50px;
        }
}

/* Animation for better user experience */
@keyframes techPartnersFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tech-partners .single {
    animation: techPartnersFadeIn 0.6s ease forwards;
}

    .tech-partners .single:nth-child(1) {
        animation-delay: 0.1s;
    }

    .tech-partners .single:nth-child(2) {
        animation-delay: 0.2s;
    }

    .tech-partners .single:nth-child(3) {
        animation-delay: 0.3s;
    }

    .tech-partners .single:nth-child(4) {
        animation-delay: 0.4s;
    }

    .tech-partners .single:nth-child(5) {
        animation-delay: 0.5s;
    }

    .tech-partners .single:nth-child(6) {
        animation-delay: 0.6s;
    }

/* Section title styling enhancement */
.rts-trusted-client .title-area-client-client .client-title {
    color: var(--color-heading-1);
    font-weight: var(--p-semi-bold);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    position: relative;
}

    .rts-trusted-client .title-area-client-client .client-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, var(--color-primary), var(--color-blue));
        margin: 0.8rem auto 0;
        border-radius: 2px;
    }

.account-page-body .checkbox input {
    margin-bottom: 0;
}

.account-page-body .checkbox label {
    font-size: 16px;
    padding-left: 15px;
}

    .account-page-body .checkbox label::after {
        display: none;
    }

    .account-page-body .checkbox label::before {
        display: none;
    }

.page-not-found-main {
    text-align: center;
}

    .page-not-found-main .title {
        font-size: 260px;
        margin-bottom: 5px;
        color: var(--color-title);
    }

@media only screen and (max-width: 575px) {
    .page-not-found-main .title {
        font-size: 200px;
    }
}

@media only screen and (max-width: 479px) {
    .page-not-found-main .title {
        font-size: 150px;
    }
}

.page-not-found-main .para {
    font-size: 120px;
    font-weight: 400;
    color: var(--color-title);
}

@media only screen and (max-width: 1199px) {
    .page-not-found-main .para {
        font-size: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .page-not-found-main .para {
        font-size: 60px;
    }
}

@media only screen and (max-width: 575px) {
    .page-not-found-main .para {
        font-size: 40px;
    }
}

.page-not-found-main .rts-btn {
    margin: auto;
}

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5000;
}

    .loader-wrapper .loader-section {
        position: fixed;
        top: 0;
        background: var(--color-white);
        width: 50%;
        height: 100%;
        z-index: 5000;
    }

        .loader-wrapper .loader-section.section-left {
            left: 0;
        }

        .loader-wrapper .loader-section.section-right {
            right: 0;
        }

/* Loaded Styles */
.loaded .loader-wrapper .loader-section.section-left {
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    opacity: 0;
}

.loaded .loader-wrapper .loader-section.section-right {
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    opacity: 0;
}

.loaded .loader {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.loaded .loader-wrapper {
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.3s 1s ease-out;
}

.loader:after {
    content: "";
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    bottom: 14px;
    border: 4px solid transparent;
    border-top-color: var(--color-primary);
    border-right-color: var(--color-primary);
    border-bottom-color: var(--color-primary);
    border-radius: 100%;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

.loader {
    display: block;
    position: relative;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    z-index: 5001;
    transform: translate(-50%, -50%);
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.h-100-vh {
    height: 100vh;
}

[dir=rtl] .header-one .nav-area {
    margin-left: 80px;
}

[dir=rtl] .ml--20 {
    margin-right: 20px !important;
    margin-left: 0 !important;
}

[dir=rtl] .has-dropdown.mega-menu > a::after {
    left: -22px;
    right: auto;
}

[dir=rtl] .has-dropdown::after {
    left: -22px;
    right: auto;
}

[dir=rtl] .header-two .nav-area {
    margin-right: 135px;
    margin-left: 0;
}

[dir=rtl] .title-style-one.left {
    text-align: right;
}

    [dir=rtl] .title-style-one.left .title {
        direction: ltr;
        text-align: right;
    }

        [dir=rtl] .title-style-one.left .title .split-line {
            text-align: right !important;
        }

[dir=rtl] .single-working-process-one .inner-content .number-main::before {
    left: unset;
    right: -150px;
}

[dir=rtl] .title-style-one.center .title {
    direction: ltr;
}

[dir=rtl] .mySwiperh2_clients .swiper-wrapper,
[dir=rtl] .mySwiper-case-studies-5 .swiper-wrapper,
[dir=rtl] .mySwiper-testimonials-5 .swiper-wrapper,
[dir=rtl] .mySwiper-testimoanils-6 .swiper-wrapper,
[dir=rtl] .mySwiper-banner-seven .swiper-wrapper,
[dir=rtl] .mySwiper-blog-one .swiper-wrapper,
[dir=rtl] .mySwiper-full-screen-wrapper .swiper-wrapper,
[dir=rtl] .mySwiperh1_team .swiper-wrapper {
    direction: ltr;
}

[dir=rtl] .side-bar button {
    margin-right: -36px;
    margin-left: auto;
}

[dir=rtl] .side-bar {
    left: -100%;
    right: unset;
}

    [dir=rtl] .side-bar.show {
        left: 0;
        right: unset;
    }

[dir=rtl] .mobile-menu nav ul li.has-droupdown::after {
    left: 0;
    right: unset;
}

[dir=rtl] .title-style-five .title {
    direction: ltr;
    text-align: right;
}

    [dir=rtl] .title-style-five .title .split-line {
        text-align: right !important;
    }

[dir=rtl] .title-style-five.center {
    text-align: center;
}

    [dir=rtl] .title-style-five.center .title {
        direction: ltr;
        text-align: center;
    }

        [dir=rtl] .title-style-five.center .title .split-line {
            text-align: center !important;
        }

[dir=rtl] .footer-logo-area-left-8 {
    text-align: right;
}

[dir=rtl] .footer-8-area-bg .footer-one-single-wized .quick-link-inner .links.margin-left-70 {
    margin-left: 0;
    margin-right: 70px;
}

[dir=rtl] .rts-banner-area-9 .image-right-absolute {
    right: auto;
    left: 0;
}

[dir=rtl] .pl--30 {
    padding-right: 30px;
    padding-left: unset;
}

[dir=rtl] .rts-banner-area-9 .title {
    text-align: right !important;
    direction: ltr;
}

    [dir=rtl] .rts-banner-area-9 .title .split-line {
        text-align: right !important;
    }

[dir=rtl] .col-lg-6.pl--50.pl_sm--10.mt_md--50.mt_sm--50.pb_md--50.pb_sm--40 {
    padding-right: 50px;
    padding-left: 0;
}

[dir=rtl] .footer-8-area-bg .footer-one-single-wized .quick-link-inner .links li a i {
    margin-left: 12px;
    margin-right: 0;
}

    [dir=rtl] .footer-8-area-bg .footer-one-single-wized .quick-link-inner .links li a i::before {
        content: "\f060";
    }

[dir=rtl] .rts-service-main-wrapper-10 .signle-service-style-10 .content-area-wrapper .arrow-right-btn i::before {
    content: "\f060";
}

[dir=rtl] .title-style-10.left {
    text-align: right;
}

    [dir=rtl] .title-style-10.left .split-line {
        text-align: right !important;
    }

[dir=rtl] .title-style-10 .title {
    direction: ltr;
}

[dir=rtl] .rts-breadcrumb-area .title-area-left .title {
    direction: ltr;
}

[dir=rtl] .rts-single-wized .single-categories li a i::before {
    content: "\f177";
}

@media only screen and (max-width: 575px) {
    [dir=rtl] .single-working-process-one .inner-content .number {
        right: 10px;
    }
}

[dir=rtl] .banner-inner-service-details-1.large-height .title-area-left {
    text-align: right;
    direction: ltr;
}

    [dir=rtl] .banner-inner-service-details-1.large-height .title-area-left .split-line {
        text-align: right !important;
    }

[dir=rtl] .progress-circle-main-wrapper .single-progress-area::after {
    display: none;
}

[dir=rtl] .details-share button {
    margin-right: 23px;
    margin-left: 0;
}

[dir=rtl] .rts-single-wized .wized-body .rts-search-wrapper button {
    left: 0;
    right: auto;
}

[dir=rtl] .rts-single-wized .wized-body .rts-search-wrapper input {
    padding-left: 70px;
    padding-right: 25px;
}

[dir=rtl] .partner-breadcrumb .title-area-left * {
    color: #fff;
    direction: ltr;
}

[dir=rtl] button#menu-btn {
    margin-right: 0;
    margin-left: 0;
}

[dir=rtl] .header-top-area-wrapper .header-top-one-wrapper .right .social-wrapper-one {
    margin-right: 30px;
    position: relative;
    margin-left: 0;
}

[dir=rtl] .social-wrapper-one li a {
    margin-left: 20px;
    margin-right: 0;
}

[dir=rtl] .social-wrapper-one::after {
    right: -25px;
    left: auto;
}

[dir=rtl] .header-top-area-wrapper .header-top-one-wrapper .left .mail a {
    margin-left: 50px;
    margin-right: 0;
}

[dir=rtl] .header-top-area-wrapper .header-top-one-wrapper .left .mail::after {
    left: 25px;
    right: unset;
}

[dir=rtl] .faq-wrapper-inner-page .accordion-item .accordion-header button::after {
    margin-right: auto;
    margin-left: 0;
}

[dir=rtl] .banner-inner-service-details-1 .title {
    text-align: right;
    direction: ltr;
}

    [dir=rtl] .banner-inner-service-details-1 .title .split-line {
        text-align: right !important;
    }

[dir=rtl] .pagination button {
    margin-left: 10px;
    margin-right: 0;
}

[dir=rtl] .rts-single-wized .recent-post-single .thumbnail {
    margin-left: 20px;
    margin-right: 0;
}

[dir=rtl] .rts-single-wized .recent-post-single .user span {
    margin-right: 9px;
    margin-left: 0;
}

[dir=rtl] .search-input-area .search-input-inner .input-div button {
    border-radius: 5px 0 0 5px;
}

[dir=rtl] .search-input-area .search-close-icon {
    left: 38px;
    right: unset;
}

[dir=rtl] .rts-blog-h-2-wrapper .body .rts-read-more i,
[dir=rtl] .top-transparent-header .header-top-area-wrapper .header-top-one-wrapper .right p a i {
    transform: scaleX(-1);
}

@media (min-width: 992px) {
    [dir=rtl] .offset-lg-1 {
        margin-right: 8.33333333%;
        margin-left: 0%;
    }
}

[dir=rtl] li.has-dropdown .submenu li a {
    text-align: right;
}

[dir=rtl] .single-working-process-one .left .icon::after {
    right: auto;
    left: -8px;
}

[dir=rtl] .rts-read-more i {
    margin-right: 0;
    margin-left: 12px;
}

[dir=rtl] .cta-main-area-wrapper-one .right-area .inpur-area-main button {
    left: 10px;
    right: auto;
}

[dir=rtl] .cta-main-area-wrapper-one .right-area .inpur-area-main input {
    padding-right: 15px;
    padding-left: 200px;
}

[dir=rtl] .single-working-process-one .inner-content .number-main {
    right: 0;
    left: auto;
}

[dir=rtl] .pricing-wrapper-one .pricing-body .single-pricing .icon {
    margin-right: 0;
    margin-left: 15px;
}

[dir=rtl] .header-top-area-wrapper .header-top-one-wrapper .left .mail a i {
    margin-left: 6px;
    margin-right: 0;
}

[dir=rtl] .thumbnail-working-procss-one img {
    margin-left: 0;
    margin-right: 50px;
}

@media only screen and (max-width: 767px) {
    [dir=rtl] .thumbnail-working-procss-one img {
        margin-right: 0;
    }
}

[dir=rtl] .appoinment-area-9 {
    border-radius: 10px 0 0 10px;
}

[dir=rtl] .thumbnail-appoinment-9 img {
    transform: scaleX(-1);
}

[dir=rtl] .rts-blog-h-2-wrapper {
    direction: rtl;
}

    [dir=rtl] .rts-blog-h-2-wrapper .body .rts-read-more i {
        margin-left: 10px;
    }

    [dir=rtl] .rts-blog-h-2-wrapper .body .rts-read-more {
        color: #1C2539;
        display: flex;
        flex-direction: row-reverse;
        text-align: right;
        direction: rtl;
        margin-left: auto;
        align-items: center;
        justify-content: flex-end;
        gap: 15px;
    }

[dir=rtl] .pricing-wrapper-one .plane-process {
    right: 13%;
    left: auto;
}

[dir=rtl] .rts-breadcrumb-area .title-area-left .title {
    direction: rtl;
}

    [dir=rtl] .rts-breadcrumb-area .title-area-left .title .split-line {
        direction: ltr;
        text-align: right !important;
    }

[dir=rtl] .blog-single-post-listing .blog-listing-content .user-info .single {
    margin-left: 30px;
    margin-right: 0;
}

    [dir=rtl] .blog-single-post-listing .blog-listing-content .user-info .single i {
        margin-left: 10px;
        margin-right: 0;
    }

[dir=rtl] .pagination button:last-child i {
    transform: scaleX(-1);
}

[dir=rtl] .details-tag h6 {
    margin-left: 15px;
    margin-right: 0;
}

[dir=rtl] .progress-wrap {
    right: auto;
    left: 30px;
}

[dir=rtl] li.has-dropdown .submenu {
    right: 0;
    left: auto;
}

[dir=rtl] .banner-inner-service-details-1.large-height .title-area-left {
    left: 0;
    transform: none;
    margin: auto;
}

[dir=rtl] .rts-service-details-area-main-bottom .pl--50 {
    padding-right: 50px;
    padding-left: 0 !important;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    [dir=rtl] .rts-service-details-area-main-bottom .pl--50 {
        padding-right: 50px;
        padding-left: 0 !important;
    }
}

@media only screen and (max-width: 1199px) {
    [dir=rtl] .rts-service-details-area-main-bottom .pl--50 {
        padding-left: 0 !important;
        padding-right: 10px !important;
    }
}

/* demos  */

.mt-dec-blog-list {
    margin-top: -177px;
}

@media only screen and (max-width: 767px) {
    .mt-dec-blog-list {
        margin-top: -120px;
    }
}

/*=========================
    Section Separation 
==========================*/

.rts-section-gap {
    padding: 120px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .rts-section-gap {
        padding: 80px 0;
    }
}

@media only screen and (max-width: 767px) {
    .rts-section-gap {
        padding: 60px 0;
    }
}

.rts-section-gapBottom {
    padding-bottom: 120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .rts-section-gapBottom {
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .rts-section-gapBottom {
        padding-bottom: 60px;
    }
}

.rts-section-gapTop {
    padding-top: 120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .rts-section-gapTop {
        padding-top: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .rts-section-gapTop {
        padding-top: 60px;
    }
}

.pt--0 {
    padding-top: 0;
}

.mt--0 {
    margin-top: 0;
}

.pl--20 {
    padding-left: 20px;
}

.mt--20 {
    margin-top: 20px;
}

.ml--20 {
    margin-left: 20px;
}

.pl--30 {
    padding-left: 30px;
}

.mt--30 {
    margin-top: 30px;
}

.pb--40 {
    padding-bottom: 40px;
}

.mt--40 {
    margin-top: 40px;
}

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

.pl--50 {
    padding-left: 50px;
}

.mt--50 {
    margin-top: 50px;
}

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

.pt--65 {
    padding-top: 65px;
}

.pb--65 {
    padding-bottom: 65px;
}

.mt--65 {
    margin-top: 65px;
}

.pb--70 {
    padding-bottom: 70px;
}

.mt--100 {
    margin-top: 100px;
}

.mt--150 {
    margin-top: 150px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .mt_lg--60 {
        margin-top: 60px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .pl_md--10 {
        padding-left: 10px;
    }

    .pb_md--50 {
        padding-bottom: 50px;
    }

    .mt_md--50 {
        margin-top: 50px;
    }

    .mt_md--80 {
        margin-top: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .ml_sm--5 {
        margin-left: 5px;
    }

    .pl_sm--10 {
        padding-left: 10px;
    }

    .pb_sm--40 {
        padding-bottom: 40px;
    }

    .mt_sm--50 {
        margin-top: 50px;
    }

    .mt_sm--80 {
        margin-top: 80px;
    }

    .mt_sm--120 {
        margin-top: 120px;
    }
}
/*# sourceMappingURL=../maps/style.css.map */
