@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&family=Jost:wght@400;500;600;700;800&family=Noto:wght@400;500;700;800&display=swap&subset=latin-ext');

/* Varialbes */
:root {
    --font-default: 'Manrope', 'Noto', sans-serif;
    --font-heading: 'Manrope', 'Noto', sans-serif;
    --fontawesome: 'Font Awesome 5 Pro';
    --black: #000000;
    --dark: #1d1d1d;
    --dark-secondary: #666;
    --white: #ffffff;
    --color-primary: #ef5f72;
    --color-secondary: #02ebad;
    --color-heading: #04000b;
    --color-paragraph: #666666;
    --box-shadow-primary: -1px 3px 10px 0 rgba(0, 0, 0, 0.6);
    --box-shadow-secondary: 0 10px 30px 0 rgba(44, 130, 237, 0.4);
    --box-shadow-regular: 0px 2px 12px 0px #e7e7e7;
    --bg-gray: #f1f3f5;
    --bg-gradient: linear-gradient(45deg, #f19b75 0%, #ef6172 50%);
    --main: #ef5f72;
    --secondary: #f19d75;
}

/* ============================================================== 
     # Reset Browsers
=================================================================== */

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body,
html {
    height: 100%;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

html,
body,
div,
span,
img,
ol,
ul,
li,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
option,
legend,
label,
table,
th,
td,
tr,
article,
aside,
caption,
figure,
footer,
header,
hgroup,
mark,
nav,
section,
time,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

.wrapper {
    height: 100%;
}

img {
    border: none;
    outline: none;
    max-width: 100%;
}

label {
    display: inline-block;
    font-weight: normal;
    margin-bottom: 5px;
    max-width: 100%;
}

a {
    outline: none;
    text-decoration: none;
    color: var(--color-heading);
}

a img {
    border: none;
}

a:active {
    outline: none;
    text-decoration: none;
    color: var(--color-heading);
    opacity: 1;
}

a:focus {
    outline: none;
    text-decoration: none;
    color: var(--color-heading);
}

a:hover {
    outline: none;
    text-decoration: none;
    color: var(--color-primary);
    opacity: 1;
}

.secondary a:hover {
    color: var(--color-optional);
}

button {
    outline: medium none;
}

iframe {
    border: none;
}

hr {
    margin-top: 0;
    margin-bottom: 0;
    border: 0;
    border-top: 1px solid #eeeeee;
}

pre {
    display: block;
    margin: 0 0 30px;
    padding: 9.5px;
    word-wrap: break-word;
    word-break: break-all;
    color: #333333;
    border: 1px solid #ededed;
    border-radius: inherit;
    background-color: #f9f9f9;
    font-size: 13px;
    line-height: 1.42857143;
}

input {
    border: 1px solid #e7e7e7;
    border-radius: inherit;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
    min-height: 50px;
}

input:focus {
    outline: none;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
}

textarea:focus {
    outline: none;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
}

select:focus {
    outline: none;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
}

ul {
    list-style-type: none;
}

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

b {
    font-weight: 800;
}

strong {
    font-weight: 800;
}

.row {
    --bs-gutter-x: 30px;
}

/* ============================================================== 
    # Template Default Styles
=================================================================== */

body {
    font-family: var(--font-default);
    font-size: 12pt;
    font-weight: 500;
    line-height: 1.8;
    overflow-x: hidden;
    background-color: var(--white);
    color: var(--color-paragraph);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-heading);
    font-weight: normal;
    line-height: 1.2;
    font-family: var(--font-heading);
    letter-spacing: 0;
    margin: 0;
    margin-bottom: 15px;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 27px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 14px;
}

a,
.btn,
button {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    outline: medium none;
    text-decoration: none;
}

p {
    color: var(--color-paragraph);
    margin: 0 0 25px;
    text-transform: none;
    font-weight: 500;
    font-family: var(--font-default);
}

/* ============================================================== 
    # Helper CSS
=================================================================== */

.container-full {
    padding: 0 15px;
    margin: auto;
    max-width: 1400px;
}

@media (min-width: 576px) {
    .container-full {
        max-width: 540px;
        width: 100%;
    }
}

@media (min-width: 768px) {
    .container-full {
        max-width: 720px;
        width: 100%;
    }
}

@media (min-width: 992px) {
    .container-full {
        max-width: 960px;
        width: 100%;
    }
}

@media (min-width: 1200px) {
    .container-full {
        max-width: 95%;
        width: 95%;
    }

    .box-layout {
        width: 94%;
        margin: auto;
        border-radius: 30px;
    }
}

.container-fill {
    padding: 0 15px;
    margin: auto;
    max-width: 100%;
}

@media (min-width: 576px) {
    .container-fill {
        max-width: 540px;
        width: 100%;
    }
}

@media (min-width: 768px) {
    .container-fill {
        max-width: 720px;
        width: 100%;
    }
}

@media (min-width: 992px) {
    .container-fill {
        max-width: 960px;
        width: 100%;
    }
}

@media (min-width: 1200px) {
    .container-fill {
        width: 100%;
        max-width: 100%;
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (max-width: 1199px) {
    .container-fill {
        padding: 0 15px;
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .row {
        --bs-gutter-x: 1.5rem;
    }
}

.item-center {
    display: flex;
    align-items: center;
}

.bg-cover {
    background-position: center center !important;
    background-size: cover !important;
}

.bg-fixed {
    background-attachment: fixed !important;
    background-position: center center !important;
    background-size: cover !important;
}

.bg-fit {
    background-size: 100% 100% !important;
    background-position: center !important;
}

.bg-gray {
    background: var(--bg-gray);
}

.bg-dark .bg-gray {
    background: var(--dark-secondary);
}

.bg-gray-secondary {
    background: var(--bg-gray-secondary);
}
.bg-dark-2 {
    background: var(--dark-secondary);
}
.bg-light {
    background-color: var(--white) !important;
}

.bg-dark {
    background-color: var(--dark) !important;
}

.bg-dark-secondary {
    background-color: var(--dark-secondary) !important;
}

.bg-theme {
    background-color: var(--color-primary);
}

.bg-gradient {
    background-color: var(--color-primary);
    background: var(--bg-gradient) !important;
}

.bg-gradient-secondary {
    background-color: var(--color-optional);
    background: var(--bg-gradient-reverse) !important;
}

.text-light {
    color: var(--white);
}
.btn-solid {
    background: var(--main) !important; /* Fallback color */
    color: #fff !important;
    transition:
        background 1s ease,
        color 1s ease; /* Specify transition properties */
    margin: 0 5px;
    font-weight: 500 !important;
}

.btn-solid2 {
    background: var(--white) !important; /* Fallback color */
    color: var(--dark) !important;
    transition:
        background 1s ease,
        color 1s ease; /* Specify transition properties */
    border: 2px solid #000 !important;
    margin: 0 5px;
}

.btn-solid:hover {
    background: white!important; /* Fallback color */
    color: var(--main)!important;
    border: 2px solid var(--main);
}

.btn-solid2:hover {
    background: var(--dark) !important; /* Fallback color */
    color: #fff !important;
}

.tilt-image {
    position: relative;
    transform-style: preserve-3d;
    transform: perspective(1000px);
}
.tilt-image::before {
    filter: blur(60px);
    transform: translate3d(-50%, -50%, -60px);
}

.text-light h1,
.text-light h2,
.text-light h3,
.text-light h4,
.text-light h5,
.text-light h6,
.text-light p,
.text-light span,
.text-light a {
    color: var(--white);
}

.shadow {
    -webkit-box-shadow: inherit !important;
    box-shadow: inherit !important;
}

.shadow.dark {
    position: relative;
    z-index: 1;
}

.shadow.dark:after {
    background: var(--dark);
    content: '';
    height: 100%;
    left: 0;
    opacity: 0.5;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.shadow.dark-hard {
    position: relative;
    z-index: 1;
}

.shadow.dark-hard:after {
    background: var(--black) none repeat scroll 0 0;
    content: '';
    height: 100%;
    left: 0;
    opacity: 0.5;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.shadow.theme {
    position: relative;
    z-index: 1;
}

.shadow.theme:after {
    background: var(--color-primary) none repeat scroll 0 0;
    content: '';
    height: 100%;
    left: 0;
    opacity: 0.7;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.shadow.light {
    position: relative;
    z-index: 1;
}

.shadow.light:after {
    background: var(--white) none repeat scroll 0 0;
    content: '';
    height: 100%;
    left: 0;
    opacity: 0.6;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.default-padding,
.default-padding-top,
.default-padding-bottom,
.default-padding-mx {
    position: relative;
}

.default-padding {
    padding-top: 120px;
    padding-bottom: 120px;
}

.banner-height-short {
    height: 80vh !important;
    padding-top: 180px !important;
}
@media only screen and (max-width: 767px) {
    .default-padding {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.default-padding-big {
    padding: 250px 0;
}

@media only screen and (max-width: 767px) {
    .default-padding-big {
        padding: 60px 0;
    }
}

.default-padding-top {
    padding-top: 120px;
}

@media only screen and (max-width: 767px) {
    .default-padding-top {
        padding-top: 50px;
    }
}

.default-padding-bottom {
    padding-bottom: 120px;
}

@media only screen and (max-width: 767px) {
    .default-padding-bottom {
        padding-bottom: 50px;
    }
}

.default-padding.bottom-less {
    padding-top: 120px;
    padding-bottom: 90px;
}

@media only screen and (max-width: 767px) {
    .default-padding.bottom-less {
        padding-top: 50px;
        padding-bottom: 20px;
    }
}

.default-padding-bottom.bottom-less {
    margin-bottom: -30px;
}

@media only screen and (max-width: 767px) {
    .default-padding-bottom.bottom-less {
        margin-bottom: 0;
        padding-bottom: 20px;
    }
}

.default-padding-top.bottom-less {
    margin-bottom: -30px;
}

@media only screen and (max-width: 767px) {
    .default-padding-top.bottom-less {
        margin-bottom: -20px;
    }
}

@media only screen and (min-width: 1200px) {
    .align-center {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

.border-top {
    border-top: 1px solid #e7e7e7;
}

.border-bottom {
    border-bottom: 1px solid #e7e7e7;
}

.border-left {
    border-left: 1px solid #e7e7e7;
}

.border-right {
    border-right: 1px solid #e7e7e7;
}

.heading {
    font-weight: 800;
    margin-bottom: 25px;
    margin-top: -5px;
    font-size: 42px;
    line-height: 1.3;
}

.heading span {
    font-weight: 400;
}

.site-heading {
    margin-bottom: 60px;
}

.site-heading strong {
    display: inline-block;
    font-weight: 800;
    position: relative;
    z-index: 1;
}
.side-menu a {
    margin: 0 10px;
}
.side-menu i {
    font-size: 18pt !important;
    vertical-align: middle;
    color: #000;
}
.bg-dark .side-menu i {
    color: #fff;
}

ul.navbar-nav li a.active,
ul.navbar-nav li a:hover {
    color: var(--main) !important;
}
.btn-hover.color-8 {
    background: var(--main) !important;
    color: #fff !important;
    border: 2px solid var(--main);
}
.btn-hover.color-8:hover {
    border: 2px solid var(--main);
}
.border-1 {
    border-radius: 10px;
}

.site-heading strong::after {
    position: absolute;
    left: 0;
    bottom: -5px;
    content: '';
    height: 100%;
    width: 100%;
    background: url(../img/shape/35.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
    z-index: -1;
}

.bg-dark .title {
    color: var(--white);
}

.site-heading .title {
    margin-bottom: 0;
}

.bg-dark .site-heading .title {
    color: var(--white);
}

.sub-title {
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 900;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
}

.bg-gradient .sub-title,
.bg-theme .sub-title {
    color: var(--white);
    -webkit-background-clip: inherit;
    background-clip: inherit;
    -webkit-text-fill-color: inherit;
    background: transparent;
}

@media (max-width: 767px) {
    .sub-title {
        margin-bottom: 15px;
    }
}

.site-heading p {
    margin-bottom: 0;
    margin-top: 25px;
    padding: 0 10%;
}

.site-heading .devider {
    display: inline-block;
    width: 50px;
    height: 2px;
    background: var(--color-primary);
    position: relative;
    z-index: 1;
    left: 10px;
}

.site-heading.light .devider,
.bg-theme .site-heading .devider,
.bg-gradient .site-heading .devider,
.shadow .site-heading .devider,
.bg-dark .site-heading .devider {
    background: var(--white);
}

@media (max-width: 767px) {
    .site-heading p {
        padding: 0;
    }
}

@media only screen and (max-width: 767px) {
    .site-heading {
        margin-bottom: 40px;
        font-size: 36px;
        line-height: 1.2;
    }
}

.heading-left {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.heading-left .heading {
    font-weight: 800;
    margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .heading-left .heading {
        margin-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .heading-left .heading {
        margin-bottom: 15px;
        font-size: 36px;
        line-height: 1.2;
    }
}

.heading-left p {
    margin-bottom: 0;
}

.heading-left .btn {
    margin-top: 30px;
}

@media only screen and (max-width: 767px) {
    .heading-left {
        margin-bottom: 30px;
    }
}

.sub-heading {
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 800;
    background: var(--bg-gradient-reverse);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.shadow .sub-heading {
    -webkit-text-fill-color: var(--white);
    font-weight: 800;
}

.bg-gradient .sub-heading {
    color: var(--white);
    background: transparent;
    -webkit-background-clip: inherit;
    background-clip: inherit;
    -webkit-text-fill-color: inherit;
    opacity: 0.9;
}

.site-heading.text-light .sub-title,
.site-heading.text-light .sub-heading {
    -webkit-text-fill-color: inherit;
    color: var(--white);
}

/* ============================================================== 
    # Video Play Button 
=================================================================== */
.video-play-button i {
    display: inline-block;
    background: var(--color-primary);
    height: 100px;
    width: 100px;
    line-height: 100px;
    text-align: center;
    border-radius: 50%;
    color: #ffffff;
    position: relative;
}

.video-play-button i {
    font-weight: 100;
    font-size: 35px;
    position: relative;
    left: 3px;
    top: 2px;
}

.video-play-button .effect {
    position: absolute;
    width: 150px;
    height: 150px;
    background: #07071e;
    opacity: 0;
    border-radius: 100%;
    left: 50%;
    top: 50%;
    z-index: -1;
    -webkit-animation: video-play 1500ms ease-out infinite;
    animation: video-play 1500ms ease-out infinite;
}

.video-play-button .effect::after {
    position: absolute;
    content: '';
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0;
    border-radius: 100%;
    left: 50%;
    top: 50%;
    -webkit-animation: video-play 1500ms ease-out infinite;
    animation: video-play 1500ms ease-out infinite;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.video-play-button .effect::before {
    position: absolute;
    content: '';
    width: 150px;
    height: 150px;
    background: #07071e;
    opacity: 0;
    border-radius: 100%;
    left: 50%;
    top: 50%;
    -webkit-animation: video-play 1500ms ease-out infinite;
    animation: video-play 1500ms ease-out infinite;
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}

.video-play-button.with-text {
    width: auto;
    background: transparent;
}

.video-play-button.with-text span {
    position: relative;
    z-index: 1;
}

.video-play-button.with-text span i {
    margin-left: 25px;
    margin-right: 30px;
    color: var(--white);
    left: -1px;
}

.video-play-button.with-text .effect {
    height: 60px;
    width: 60px;
    left: 0;
    -webkit-animation: inherit;
    animation: inherit;
    background: var(--color-primary);
    top: 0;
    opacity: 1;
    z-index: 1;
}

.video-play-button.with-text .effect::before {
    display: none;
}

.video-play-button.with-text .effect::after {
    background: var(--color-primary);
    height: 100%;
    width: 100%;
    z-index: inherit;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

@-webkit-keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
            scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
            scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

@keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
            scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
            scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

/* ============================================================== 
    # Template Animation
=================================================================== */

/* Video Paly */
@-webkit-keyframes video-play {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
            scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
            scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

@keyframes video-play {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
            scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
            scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

/*Zoom Animation */
.zoom-animation {
    -webkit-animation: zoom 2000ms ease-out infinite;
    animation: zoom 2000ms ease-out infinite;
}

/* Slider Zoom Effect */
@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(1, 1);
    }

    to {
        -webkit-transform: scale(1.2, 1.2);
    }
}

@keyframes zoom {
    from {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    to {
        -webkit-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2);
    }
}

/* Spiner Animation */
.spiner-animation {
    -webkit-animation: spinner 20s infinite linear;
    animation: spinner 20s infinite linear;
}

/*Preloader Spiner Animation */
@-webkit-keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

/* Spiner Animation */
.spiner-reverse-animation {
    -webkit-animation: spinnerReverse 20s infinite linear;
    animation: spinnerReverse 20s infinite linear;
}

/*Preloader Spiner Animation */
@-webkit-keyframes spinnerReverse {
    to {
        -webkit-transform: rotateZ(-360deg);
        transform: rotateZ(-360deg);
    }
}

@keyframes spinnerReverse {
    to {
        -webkit-transform: rotateZ(-360deg);
        transform: rotateZ(-360deg);
    }
}

/* Infinite Up Down Animation */
@keyframes UpDown {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    50% {
        -webkit-transform: translateY(-25px);
        transform: translateY(-25px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

/* Animation UpDown */
.updown-animation {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    -webkit-animation-name: UpDown;
    animation-name: UpDown;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

@-webkit-keyframes UpDown {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    50% {
        -webkit-transform: translateY(-25px);
        transform: translateY(-25px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

/* Animation Left Right */
.leftRight-animation {
    -webkit-animation: fadeLeftRight 10s ease-out infinite;
    animation: fadeLeftRight 10s ease-out infinite;
}

/* Fade Left Right */
@keyframes fadeLeftRight {
    0%,
    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }

    50% {
        -webkit-transform: translateX(100px);
        transform: translateX(100px);
    }
}

@-webkit-keyframes fadeLeftRight {
    0%,
    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }

    50% {
        -webkit-transform: translateX(100px);
        transform: translateX(100px);
    }
}

/* Animation Right Left */
.rightLeft-animation {
    -webkit-animation: fadeRightLeft 10s ease-out infinite;
    animation: fadeRightLeft 10s ease-out infinite;
}

@keyframes fadeRightLeft {
    0%,
    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }

    50% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
    }
}

@-webkit-keyframes fadeRightLeft {
    0%,
    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }

    50% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
    }
}

/* Animation Zoom Up Down */
.zoomUpDown-animation {
    -webkit-animation: zoomUpDown 10s ease-out infinite;
    animation: zoomUpDown 10s ease-out infinite;
}

/* Zoom Up Down */
@keyframes zoomUpDown {
    0%,
    100% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    50% {
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }
}

@-webkit-keyframes zoomUpDown {
    0%,
    100% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    50% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
}

/* Animation Moving */
.moving-animation {
    -webkit-animation: moving 10s ease-out infinite;
    animation: moving 10s ease-out infinite;
}

/* Mooving Animation */
@-webkit-keyframes moving {
    0% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }

    20% {
        -webkit-transform: translate(0px, -30px);
        transform: translate(0px, -30px);
    }

    50% {
        -webkit-transform: translate(-100px, -30px);
        transform: translate(-100px, -30px);
    }

    70% {
        -webkit-transform: translate(-100px, 0px);
        transform: translate(-100px, 0px);
    }

    100% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }
}

@keyframes moving {
    0% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }

    20% {
        -webkit-transform: translate(0px, -30px);
        transform: translate(0px, -30px);
    }

    50% {
        -webkit-transform: translate(-100px, -30px);
        transform: translate(-100px, -30px);
    }

    70% {
        -webkit-transform: translate(-100px, 0px);
        transform: translate(-100px, 0px);
    }

    100% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }
}

/* Animation Rotation */
@keyframes infinite-rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes infinite-rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* Button Border Animation */
@-webkit-keyframes open {
    0% {
        width: 0;
        height: 0;
    }

    50% {
        width: 100px;
        height: 0;
    }

    100% {
        width: 100px;
        height: 55px;
    }
}

@keyframes open {
    0% {
        width: 0;
        height: 0;
    }

    50% {
        width: 100px;
        height: 0;
    }

    100% {
        width: 100px;
        height: 55px;
    }
}

@-webkit-keyframes openB {
    0% {
        width: 0px;
    }

    100% {
        width: 100px;
    }
}

@keyframes openB {
    0% {
        width: 0px;
    }

    100% {
        width: 100px;
    }
}

/* Animation Shine (A shine color will move inside the text) */

@-webkit-keyframes shine {
    0% {
        background-position: 0;
    }

    60% {
        background-position: 180px;
    }

    100% {
        background-position: 180px;
    }
}

@keyframes shine {
    0% {
        background-position: 0;
    }

    60% {
        background-position: 180px;
    }

    100% {
        background-position: 180px;
    }
}

@-webkit-keyframes infiniteMove {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

@keyframes infiniteMove {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

@-webkit-keyframes infiniteMove2 {
    0% {
        border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
    }

    50% {
        border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
    }

    100% {
        border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
    }
}

@keyframes infiniteMove2 {
    0% {
        border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
    }

    50% {
        border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
    }

    100% {
        border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
    }
}

/* ============================================================== 
    # Button Styles
=================================================================== */
.btn {
    display: inline-block;
    font-weight: 800;
    text-transform: capitalize;
    transition: all 0.35s ease-in-out;
    overflow: hidden;
    border-radius: 7px;
    border: 2px solid transparent;
    -webkit-box-shadow: inherit;
    box-shadow: none !important;
    font-size: 16px;
    letter-spacing: 0;
    padding: 13px 30px;
    background: #e7edf8;
    position: relative;
    z-index: 1;
}

.btn:focus,
.btn.active {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
    border: 2px solid transparent;
}


.btn.radius {
    border-radius: 6px;
}

.btn.btn-border {
    border: 2px solid #dddddd;
    background: transparent;
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-weight: 800;
}

.btn.btn-border::after {
    position: absolute;
    top: inherit;
    right: inherit;
    bottom: inherit;
    left: -5%;
    content: '';
    height: 150px;
    width: 115%;
    z-index: -1;
    background-color: var(--dark);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    -webkit-transform: translateY(-45%) skew(25deg) scale(0);
    transform: translateY(-45%) skew(25deg) scale(0);
}

.btn.btn-border:hover::after {
    -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
    transform: translateY(-45%) skew(25deg) scale(1.2);
}

.btn.btn-border:hover {
    border-color: var(--dark);
}

.btn.btn-border.animation::after {
    position: absolute;
    top: 0;
    right: inherit;
    bottom: inherit;
    left: 0;
    content: '';
    height: 100%;
    width: 0;
    z-index: -1;
    background: #e7e7e7;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.btn.btn-border.animation:hover {
    border-color: #e7e7e7;
    color: var(--dark);
}

.btn.btn-border.animation:hover::after {
    width: 100%;
}

.btn.btn-border-dark {
    border: 2px solid var(--dark);
    background: transparent;
}

.btn.btn-border-dark:hover {
    background: var(--dark);
    border-color: var(--dark);
}

.btn.btn-border-dark.animation::after {
    position: absolute;
    top: 0;
    right: inherit;
    bottom: inherit;
    left: 0;
    content: '';
    height: 100%;
    width: 0;
    z-index: -1;
    background: var(--dark);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.btn.btn-border-dark.animation:hover {
    border-color: var(--dark);
    color: var(--white);
}

.btn.btn-border-dark.animation:hover::after {
    width: 100%;
}

.btn.btn-border-theme {
    border: 2px solid var(--color-primary);
    background: transparent;
}

.btn.btn-border-theme:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.btn.btn-border-theme.animation::after {
    position: absolute;
    top: 0;
    right: inherit;
    bottom: inherit;
    left: 0;
    content: '';
    height: 100%;
    width: 0;
    z-index: -1;
    background: var(--color-primary);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.btn.btn-border-theme.animation:hover {
    border-color: var(--color-primary);
    color: var(--white);
}

.btn.btn-border-theme.animation:hover::after {
    width: 100%;
}

.btn.btn-border-light {
    border: 2px solid var(--white);
    background: transparent;
}

.btn.btn-border-light:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--dark);
}

.btn.btn-border-light.animation::after {
    position: absolute;
    top: 0;
    right: inherit;
    bottom: inherit;
    left: 0;
    content: '';
    height: 100%;
    width: 0;
    z-index: -1;
    background: var(--white);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.btn.btn-border-light.animation:hover {
    border-color: var(--white);
    color: var(--dark);
}

.btn.btn-border-light.animation:hover::after {
    width: 100%;
}

.btn.btn-border.light {
    color: var(--white);
    border-color: var(--white);
}

.btn.btn-border.light::after {
    background: var(--color-primary);
}

.btn.btn-border.light:hover {
    border-color: var(--color-primary);
}

.btn.btn-gradient {
    border: none;
}

.btn.btn-gradient::after {
    position: absolute;
    top: 0;
    right: inherit;
    bottom: inherit;
    left: 0;
    content: '';
    height: 100%;
    width: 100%;
    z-index: -1;
    background-image: linear-gradient(
        to left,
        var(--color-primary),
        var(--color-secondary),
        var(--color-primary)
    );
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    background-size: 220%;
}

.btn.btn-gradient:hover::after {
    background-position: -70% 0;
}

.btn.btn-gradient.active {
    background-position: -70% 0;
}

.btn.btn-theme {
    border: none;
    background: var(--color-primary);
}

.btn.btn-theme::after {
    position: absolute;
    top: inherit;
    right: inherit;
    bottom: inherit;
    left: -5%;
    content: '';
    height: 150px;
    width: 115%;
    z-index: -1;
    background-color: var(--dark);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    -webkit-transform: translateY(-45%) skew(25deg) scale(0);
    transform: translateY(-45%) skew(25deg) scale(0);
}

.bg-dark .btn.btn-theme::after {
    background-color: var(--color-secondary);
}

.bg-dark .btn.btn-theme:hover {
    color: var(--color-heading);
}

.banner-style-four .btn.btn-theme::after {
    position: absolute;
    top: inherit;
    right: inherit;
    bottom: inherit;
    left: -5%;
    content: '';
    height: 150px;
    width: 115%;
    z-index: -1;
    background: var(--white) !important;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    -webkit-transform: translateY(-45%) skew(25deg) scale(0);
    transform: translateY(-45%) skew(25deg) scale(0);
}

.btn.btn-theme:hover::after {
    -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
    transform: translateY(-45%) skew(25deg) scale(1.2);
}

.banner-style-four .btn.btn-theme:hover {
    color: var(--color-heading) !important;
}

button {
    display: inline-block;
    font-weight: 800;
    text-transform: capitalize;
    transition: all 0.35s ease-in-out;
    overflow: hidden;
    border-radius: 7px;
    border: 2px solid transparent;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
    font-size: 16px;
    letter-spacing: 0;
    padding: 14px 40px;
    background: #e7edf8;
    position: relative;
    z-index: 1;
    border: none;
    background: var(--color-primary);
}

button::after {
    position: absolute;
    top: inherit;
    right: inherit;
    bottom: inherit;
    left: -5%;
    content: '';
    height: 150px;
    width: 115%;
    z-index: -1;
    background-color: var(--dark);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    -webkit-transform: translateY(-45%) skew(25deg) scale(0);
    transform: translateY(-45%) skew(25deg) scale(0);
}

/* button:hover::after {
	-webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
	transform: translateY(-45%) skew(25deg) scale(1.2);
} */

button i {
    margin-right: 4px;
}

.btn.btn-theme.secondary {
    border: none;
    background: var(--color-optional);
}

.btn.btn-theme.secondary::after {
    position: absolute;
    top: inherit;
    right: inherit;
    bottom: inherit;
    left: -5%;
    content: '';
    height: 150px;
    width: 115%;
    z-index: -1;
    background-color: var(--dark);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    -webkit-transform: translateY(-45%) skew(25deg) scale(0);
    transform: translateY(-45%) skew(25deg) scale(0);
}

.text-light .btn.btn-theme.secondary::after {
    background-color: var(--white);
}

.text-light .btn.btn-theme.secondary:hover {
    color: var(--color-heading);
}

.btn.btn-theme.secondary:hover::after {
    -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
    transform: translateY(-45%) skew(25deg) scale(1.2);
}

.btn.btn-theme.hover-light::after {
    background-color: var(--white);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.btn.btn-theme.hover-light:hover {
    color: var(--dark);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.btn.btn-theme.hover-light:hover::after {
    -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
    transform: translateY(-45%) skew(25deg) scale(1.2);
}

.btn.btn-light {
    color: var(--color-heading);
    border: none;
    background: var(--white);
    border: 2px solid transparent;
}

.btn.btn-light.btn-md {
    padding: 13px 52px;
}
.footer-box a {
    color: #333;
}
.footer-box a:hover {
    color: var(--main);
}

.btn.btn-main {
    background: #efefef;
    border: 2px solid #efefef;
    color: #333 !important;
}
.btn.btn-main:hover {
    border: 2px solid var(--dark) !important;
    color: var(--dark) !important;
}

.btn.btn-light:hover {
    background: transparent;
    border: 2px solid var(--white);
}

.btn.btn-dark {
    background: var(--dark);
    border: none;
}

.btn.btn-dark::after {
    position: absolute;
    top: 0;
    right: inherit;
    bottom: inherit;
    left: 0;
    content: '';
    height: 100%;
    width: 0;
    z-index: -1;
    background-color: var(--color-primary);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.shadow .btn.btn-dark::after {
    background-color: var(--white);
}

.shadow .btn.btn-dark:hover {
    color: var(--color-heading) !important;
}

.btn.btn-dark:hover::after {
    width: 100%;
}

.btn.btn-dark.secondary {
    border: none;
    background: var(--dark);
}

.btn.btn-dark.secondary::after {
    position: absolute;
    top: inherit;
    right: inherit;
    bottom: inherit;
    left: -5%;
    content: '';
    height: 150px;
    width: 115%;
    z-index: -1;
    background-color: var(--color-optional);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    -webkit-transform: translateY(-45%) skew(25deg) scale(0);
    transform: translateY(-45%) skew(25deg) scale(0);
}

.btn.btn-dark.secondary:hover::after {
    -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
    transform: translateY(-45%) skew(25deg) scale(1.2);
}

.btn i {
    position: relative;
    top: 1px;
    margin-left: 5px;
}

.btn.text-slide {
    min-width: 150px;
    height: 55px;
    line-height: 55px;
}

.btn.text-slide span {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    text-align: center;
}

.btn.animate-border {
    overflow: inherit;
    z-index: inherit;
    width: 200px;
    height: 55px;
    line-height: 55px;
    padding: 0;
}

.btn.animate-border:hover {
    background: transparent;
    color: var(--dark);
}

.btn.animate-border:hover .hover-border::after,
.btn.animate-border:hover .hover-border::before {
    opacity: 1;
    -webkit-animation: open 0.4s;
    /* Chrome, Safari, Opera */
    animation: open 0.4s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
    animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
    -webkit-animation-direction: normal;
    animation-direction: normal;
}

.btn.animate-border:hover .hover-border-bottom::after,
.btn.animate-border:hover .hover-border-bottom::before {
    opacity: 1;
    -webkit-animation: openB 0.4s;
    /* Chrome, Safari, Opera */
    animation: openB 0.4s;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
    animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
    -webkit-animation-direction: normal;
    animation-direction: normal;
}

.btn.animate-border .hover-border {
    position: absolute;
    left: 0;
    top: -1px;
    height: 100%;
    width: 100%;
}

.btn.animate-border .hover-border::before {
    position: absolute;
    content: '';
    height: 0;
    width: 0;
    display: block;
    opacity: 0;
    border-top: solid 2px var(--color-primary);
    border-left: solid 2px var(--color-primary);
    right: 98px;
    top: -1px;
}

.btn.animate-border .hover-border::after {
    position: absolute;
    content: '';
    height: 0;
    width: 0;
    display: block;
    opacity: 0;
    border-top: solid 2px var(--color-primary);
    border-right: solid 2px var(--color-primary);
    left: 98px;
    top: -1px;
}

.btn.animate-border .hover-border-bottom {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.btn.animate-border .hover-border-bottom::before {
    position: absolute;
    content: '';
    width: 0;
    display: block;
    opacity: 0;
    height: 55px;
    border-bottom: solid 2px var(--color-primary);
    right: -1px;
    bottom: -2px;
}

.btn.animate-border .hover-border-bottom::after {
    position: absolute;
    content: '';
    width: 0;
    display: block;
    opacity: 0;
    height: 100%;
    border-bottom: solid 2px var(--color-primary);
    left: 0;
    bottom: -2px;
}

.btn.animated-arrow {
    border: none;
    background: transparent;
    min-width: 14rem;
    height: auto;
    padding: 0;
}

.btn.animated-arrow .circle {
    -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--color-primary);
    border-radius: 2rem;
}

.btn.animated-arrow .circle .icon {
    -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 15px;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}

.btn.animated-arrow .circle .icon::before {
    position: absolute;
    content: '';
    top: -0.25rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid var(--white);
    border-right: 0.125rem solid var(--white);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.btn.animated-arrow .button-text {
    -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 15px 0;
    margin: 0 0 0 70px;
    color: var(--dark);
    line-height: 2;
    text-align: left;
    width: 100%;
    font-size: 14px;
}

.btn.animated-arrow:hover {
    color: var(--white);
}

.btn.animated-arrow:hover .circle {
    width: 100%;
}

.btn.animated-arrow:hover .circle .icon.arrow {
    background: var(--white);
    -webkit-transform: translate(1.5rem, 0);
    transform: translate(1.5rem, 0);
}

.btn.animated-arrow:hover .button-text {
    color: var(--white);
}

.btn.circle {
    border-radius: 30px !important;
}

.btn-simple {
    line-height: 1;
    text-transform: uppercase;
    display: inline-block;
    color: var(--color-paragraph);
}

.btn-simple i {
    transform: rotate(-45deg);
    display: inline-block;
    margin-left: 2px;
}

.i-rotate i {
    transform: rotate(-45deg);
    display: inline-block;
    margin-left: 2px;
}

.btn-simple:hover {
    color: var(--color-primary);
}

.video-btn i {
    display: inline-block;
    height: 55px;
    width: 55px;
    text-align: center;
    line-height: 55px;
    background: var(--color-primary);
    border-radius: 50%;
    position: relative;
    margin-right: 20px;
    color: var(--white);
}

.text-light .video-btn i {
    background: var(--white);
    color: var(--color-primary);
}

.video-btn i::after {
    content: '';
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--color-primary) repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-animation: pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite;
    z-index: -1;
}

.text-light .video-btn i::after {
    background: var(--white) repeat scroll 0 0;
}

.text-shine {
    background: linear-gradient(
        to right,
        var(--dark) 0,
        var(--white) 10%,
        var(--color-primary) 20%
    );
    background-position: 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: shine 3s infinite linear;
    animation: shine 3s infinite linear;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-text-size-adjust: none;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    white-space: nowrap;
    padding: 12px 48px;
}

.animate-inout {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#8a6552),
        to(#472d20)
    );
    background: linear-gradient(90deg, #8a6552 0%, #472d20 100%);
    color: var(--white);
    font-size: 12px;
    text-transform: capitalize;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: solid 2px var(--color-primary);
    cursor: pointer;
}

.btn-icon {
    position: relative;
    padding-left: 20px;
}

.btn-icon:hover {
    color: var(--color-primary);
}

.btn-icon::after {
    position: absolute;
    right: 10px;
    top: 50%;
    content: '';
    height: 2px;
    left: 0;
    background: var(--color-heading);
    transform: translateY(-50%);
    margin-top: -1px;
    transition: all 0.35s ease-in-out;
}

.btn-icon:hover::after {
    background: var(--color-primary);
}

.btn-icon i {
    font-weight: 800;
}

.btn-icon:hover {
    padding-left: 40px;
}

.animate-inout span {
    z-index: 1;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    line-height: 20px;
}

.animate-inout::before,
.animate-inout::after {
    width: 0%;
    height: 0%;
    position: absolute;
    content: '';
    border-radius: 100%;
}

.animate-inout:after {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background-color: var(--white);
}

.animate-inout:before {
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    background: var(--color-primary);
}

.animate-inout.animate-inout-borde {
    background: transparent;
    color: var(--dark);
}

.animate-inout.animate-inout-borde::after {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#8a6552),
        to(#472d20)
    );
    background: linear-gradient(90deg, #8a6552 0%, #472d20 100%);
}

.animate-inout.animate-inout-borde:hover {
    color: var(--white);
}

.animate-inout.animate-inout-borde:hover::before {
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
}

.animate-inout.animate-inout-borde:hover::after {
    -webkit-transition: all 0.7s ease-in;
    transition: all 0.7s ease-in;
}

.animate-inout:hover {
    color: var(--dark);
}

.animate-inout:hover::before,
.animate-inout:hover::after {
    width: 200px;
    height: 200px;
    border-radius: 4px;
}

.animate-inout:hover::before {
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
}

.animate-inout:hover::after {
    -webkit-transition: all 0.7s ease-in;
    transition: all 0.7s ease-in;
}

.btn-md {
    padding: 16px 52px;
    font-size: 17px;
}

.btn-md.btn-border {
    padding: 14px 52px;
}

.btn-sm {
    padding: 16px 45px;
    font-size: 14px;
}

.btn-sm.btn-border,
.btn-sm.btn-light {
    padding: 14px 45px;
}

.mfp-close-btn-in .mfp-close::after {
    display: none;
}

/* Btn Animation */

.btn-animation {
    z-index: 1;
    position: relative;
    font-size: 18px;
    display: inline-block;
    margin-left: 10px;
}

.bg-dark .btn-animation {
    color: var(--white);
}

.btn-animation i {
    display: inline-block;
    height: 55px;
    width: 55px;
    text-align: center;
    line-height: 55px;
    background: var(--white);
    color: var(--color-heading);
    border-radius: 50%;
    font-weight: 400;
    margin-right: 10px;
    transition: all 0.35s ease-in-out;
    transform: scale(0);
}

.btn-animation:hover {
    margin-left: 0;
    color: var(--color-heading);
}

.bg-dark .btn-animation:hover {
    color: var(--white);
}

.btn-animation:hover i {
    transform: scale(1);
}

.btn-animation::after {
    position: absolute;
    left: -13px;
    top: 0;
    content: '';
    height: 60px;
    width: 60px;
    border: 1px solid #c2bfbf;
    border-radius: 50%;
    transition: all 0.35s ease-in-out;
    transform: scale(1);
    z-index: -1;
}

.bg-dark .btn-animation::after {
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-animation:hover::after {
    transform: scale(0);
}

.btn-animation span {
    transition: all 0.35s ease-in-out;
    left: -50px;
    position: relative;
    text-transform: uppercase;
    font-weight: 700;
}

.btn-animation:hover span {
    left: 0;
}

.btn-animation.dark::after {
    border-color: #c5c5c5;
    z-index: -1;
}

.btn-animation.dark i {
    background: var(--color-primary);
    color: var(--white);
}

.btn-animation.dark:hover {
    color: var(--color-heading);
}

@media only screen and (max-width: 767px) {
    .row {
        --bs-gutter-x: 1.5rem;
    }
}

a.btn-round-animation {
    display: inline-block;
    height: 180px;
    width: 180px;
    text-align: center;
    line-height: 180px;
    border: 1px solid #cccccc;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

a.btn-round-animation i {
    display: inline-block;
    transform: rotate(-45deg);
    font-weight: 400;
    margin-left: 5px;
}

a.btn-round-animation::after {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    height: 0;
    width: 100%;
    background: var(--color-primary);
    z-index: -1;
    transition: all 0.3s ease-in-out;
    border-radius: 50%;
}

a.btn-round-animation::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    height: 0;
    width: 100%;
    background: var(--bg-gradient);
    z-index: -1;
    transition: all 0.4s ease-in-out;
    border-radius: 50%;
}

a.btn-round-animation:hover {
    color: var(--white);
}

a.btn-round-animation:hover::before {
    height: 100%;
}

a.btn-round-animation:hover::after {
    opacity: 0.4;
    height: 80%;
}

a.btn-round-animation.dark {
    border-color: rgba(255, 255, 255, 0.2);
}

.bg-dark,
.bg-dark-secondary,
.bg-dark p,
.bg-dark-secondary p {
    color: #cccccc;
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6 {
    color: var(--white);
}

/* ============================================================== 
    # Nice Select Styles
=================================================================== */
.nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: var(--white);
    border: solid 1px #e8e8e8;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-family: inherit;
    font-size: 16px;
    font-weight: normal;
    height: 50px;
    line-height: 50px;
    outline: none;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: 100%;
    margin-bottom: 15px;
}

.nice-select:hover {
    border-color: #dbdbdb;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
    border-color: #999999;
}

.nice-select::after {
    border-bottom: 2px solid #999999;
    border-right: 2px solid #999999;
    content: '';
    display: block;
    height: 5px;
    margin-top: -6px;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 5px;
}

.nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    overflow-y: auto !important;
    height: auto;
}

.nice-select.open ::after {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.nice-select.disabled {
    border-color: #ededed;
    color: #999999;
    pointer-events: none;
}

.nice-select.disabled::after {
    border-color: #96aac1;
}

.nice-select.wide {
    width: 100%;
}

.nice-select.wide .list {
    left: 0 !important;
    right: 0 !important;
}

.nice-select.right {
    float: right;
}

.nice-select.right .list {
    left: auto;
    right: 0;
}

.nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px;
}

.nice-select.small::after {
    height: 4px;
    width: 4px;
}

.nice-select.small .option {
    line-height: 34px;
    min-height: 34px;
}

.nice-select .list {
    background-color: var(--white);
    border-radius: 5px;
    -webkit-box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    -webkit-transition:
        all 0.2s cubic-bezier(0.5, 0, 0, 1.25),
        opacity 0.15s ease-out;
    transition:
        all 0.2s cubic-bezier(0.5, 0, 0, 1.25),
        opacity 0.15s ease-out;
    z-index: 9;
    width: 100%;
}

.nice-select .list:hover .option:not(:hover) {
    background-color: transparent !important;
}

.nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: #f6f6f6;
}

.nice-select .option.selected {
    font-weight: 800;
}

.nice-select .option.disabled {
    background-color: transparent;
    color: #999999;
    cursor: default;
}

.no-csspointerevents .nice-select .list {
    display: none;
}

.no-csspointerevents .nice-select.open .list {
    display: block;
}

.mfp-iframe-holder .mfp-close {
    color: transparent;
    background: transparent;
}

.mfp-iframe-holder .mfp-close::before {
    position: absolute;
    right: 0;
    top: 0;
    height: 20px;
    width: 20px;
    z-index: 1;
    display: block;
    content: '\f00d';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 100;
    color: var(--white);
}

/* ============================================================== 
    # Topbar Styles
=================================================================== */
.item-flex {
    align-items: center;
    display: flex;
}

.item-flex li {
    margin-left: 30px;
}

.item-flex li:first-child {
    margin: 0;
    border: none;
    padding: 0;
}

.item-flex li i {
    margin-right: 10px;
    font-weight: 100;
    font-size: 24px;
    color: var(--color-primary);
}

.top-bar-area li {
    display: flex;
    align-items: center;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    margin-left: 30px;
    padding-left: 30px;
}

.top-bar-area .social li {
    display: inline-block;
    margin-right: 30px;
}

.top-bar-area .social li:first-child {
    margin-right: 0;
}

.top-bar-area .text-end .social li {
    margin-right: 0;
    margin-left: 30px;
}

.top-bar-area .text-end .social li:first-child {
    margin-left: 0;
}

.top-bar-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.top-bar-area.top-bar-style-one.bg-dark {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.top-bar-style-two {
    padding: 20px 0;
}

.top-bar-style-two .text-end .social li {
    margin-left: 8px;
}

.top-bar-style-two .social li a {
    display: inline-block;
    background: var(--dark);
    color: var(--white);
    height: 38px;
    width: 38px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
}

.top-bar-style-two .item-flex li i {
    font-weight: 600;
    color: var(--color-paragraph);
}

.call-entry {
    display: flex;
    justify-content: right;
    text-align: left;
}

.call-entry p {
    margin-bottom: 5px;
    line-height: 1;
    font-size: 14px;
}

.call-entry p strong {
    font-weight: 600;
    color: var(--blue);
}

.call-entry h5 {
    margin: 0;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.6px;
}

.call-entry h5 a {
    padding: 0 !important;
    display: inline-block;
    text-transform: lowercase;
}

.call-entry i {
    display: inline-block;
    font-size: 40px;
    margin-right: 15px;
    position: relative;
    color: var(--white);
}

.top-bar-style-two .item-flex li strong {
    display: block;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--white);
}

.top-bar-style-two .item-flex li a {
    font-weight: 500;
    color: var(--white);
}

.top-bar-style-two .item-flex li a:hover {
    color: var(--white);
}

.top-bar-style-two .item-flex li {
    line-height: 1.7;
}

.top-bar-style-two .item-flex li i {
    display: inline-block;
    font-size: 40px;
    color: var(--white);
    margin-right: 15px;
    font-weight: 100;
}

/* ============================================================== 
    # Banner Styles
=================================================================== */
.banner-area {
    height: 100%;
    width: 100%;
    position: relative;
}

@media (max-width: 1023px) {
    .banner-area {
        height: auto;
    }
}

.banner-area div {
    height: 100%;
}

.banner-area div.swiper-slide .row div {
    height: auto;
}

.banner-area.top-pad-80 .content {
    padding-top: 80px;
}

@media (max-width: 1023px) {
    .banner-area.top-pad-80 .content {
        padding-top: 200px;
    }

  
}

@media only screen and (max-width: 767px) {
    .banner-area.top-pad-80 .content {
        padding-top: 140px;
    }
}

.banner-area.top-pad-90 .content {
    padding-top: 90px;
}

@media (max-width: 1023px) {
    .banner-area.top-pad-90 .content {
        padding-top: 200px;
    }
}

@media only screen and (max-width: 767px) {
    .banner-area.top-pad-90 .content {
        padding-top: 140px;
    }
}

.banner-area.top-pad-100 .content {
    padding-top: 100px;
}

@media (max-width: 1023px) {
    .banner-area.top-pad-100 .content {
        padding-top: 200px;
    }
}

@media only screen and (max-width: 767px) {
    .banner-area.top-pad-100 .content {
        padding-top: 140px;
    }
}

.banner-area.top-pad-110 .content {
    padding-top: 110px;
}

@media (max-width: 1023px) {
    .banner-area.top-pad-110 .content {
        padding-top: 200px;
    }
}

@media only screen and (max-width: 767px) {
    .banner-area.top-pad-110 .content {
        padding-top: 140px;
    }
}

.banner-area.top-pad-120 .content {
    padding-top: 120px;
}

@media (max-width: 1023px) {
    .banner-area.top-pad-120 .content {
        padding-top: 200px;
    }
}

@media only screen and (max-width: 767px) {
    .banner-area.top-pad-120 .content {
        padding-top: 140px;
    }
}

.banner-area.top-pad-130 .content {
    padding-top: 130px;
}

@media (max-width: 1023px) {
    .banner-area.top-pad-130 .content {
        padding-top: 200px;
    }
}

@media only screen and (max-width: 767px) {
    .banner-area.top-pad-130 .content {
        padding-top: 140px;
    }
}

.banner-area.top-pad-150 .content {
    padding-top: 150px;
}

@media (max-width: 1023px) {
    .banner-area.top-pad-150 .content {
        padding-top: 200px;
    }
}

@media only screen and (max-width: 767px) {
    .banner-area.top-pad-150 .content {
        padding-top: 140px;
    }
}

.banner-area.auto-height {
    height: auto;
}

.banner-area.auto-height div {
    height: auto;
}

.banner-area.auto-height .content {
    padding: 200px 0;
}

@media only screen and (max-width: 767px) {
    .banner-area.auto-height .content {
        padding: 60px 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-area.auto-height .content {
        padding: 120px 0;
    }
}

.banner-area.auto-height .content .thumb {
    padding-left: 35px;
}

@media (max-width: 991px) {
    .banner-area.auto-height .content .thumb {
        padding-left: 0;
        margin-top: 50px;
    }
}

.banner-area.auto-height.inc-header-transparent .content {
    padding-top: 250px;
}

@media only screen and (max-width: 767px) {
    .banner-area.auto-height.inc-header-transparent .content {
        padding-top: 140px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-area.auto-height.inc-header-transparent .content {
        padding-top: 220px;
    }
}

.banner-area.auto-height.inc-header-transparent.double-items.bottom-thumb
    .content
    .info {
    padding-top: 80px;
}

.banner-area.auto-height.inc-header-transparent.double-items.bottom-thumb
    .content
    .thumb {
    margin-top: 250px;
}

@media only screen and (max-width: 767px) {
    .banner-area.auto-height.inc-header-transparent.double-items.bottom-thumb
        .content
        .thumb {
        margin-top: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-area.auto-height.inc-header-transparent.double-items.bottom-thumb
        .content
        .thumb {
        margin-top: 50px;
    }
}

.banner-area .content {
    position: relative;
    z-index: 9;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

@media (max-width: 1023px) {
    .banner-area .content {
        padding: 120px 0;
    }
}

@media only screen and (max-width: 767px) {
    .banner-area .content {
        padding: 60px 0;
    }
}

.banner-area h4 {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    -webkit-transform: translate3d(-15%, 0, 0);
    transform: translate3d(-15%, 0, 0);
    opacity: 0;
    visibility: hidden;
}

.banner-area h2 {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
}

.banner-area p,
.banner-area ul {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    opacity: 0;
    padding-right: 25%;
    margin: 0;
    visibility: hidden;
}

@media (max-width: 1023px) {
    .banner-area p {
        padding-right: 0;
    }
}

.banner-area.text-center p {
    padding-left: 13%;
    padding-right: 13%;
}

@media (max-width: 1023px) {
    .banner-area.text-center p {
        padding: 0;
    }
}

.banner-area .thumb {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
}

.banner-area .button {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    opacity: 0;
    visibility: hidden;
    margin-top: 30px;
}

.banner-area .banner-slide h4 {
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
}

.banner-area .banner-slide h2 {
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
}

.banner-area .banner-slide p,
.banner-area .banner-slide ul {
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
}

.banner-area .banner-slide .button {
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
}

.banner-area .banner-slide .swiper-slide.swiper-slide-active h4 {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

.banner-area .banner-slide .swiper-slide.swiper-slide-active h2 {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 1400ms;
    transition-delay: 1400ms;
}

.banner-area .banner-slide .swiper-slide.swiper-slide-active p,
.banner-area .banner-slide .swiper-slide.swiper-slide-active ul {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 1600ms;
    transition-delay: 1600ms;
}

.banner-area .banner-slide .swiper-slide.swiper-slide-active .button {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 1800ms;
    transition-delay: 1800ms;
}

.banner-area.double-items .thumb {
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
}

.banner-area.double-items .swiper-slide.swiper-slide-active .thumb {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 500ms;
    transition-delay: 500ms;
    visibility: visible;
    opacity: 1;
}

.banner-area.double-items.bottom-thumb .content {
    padding: 0;
}

.banner-area.double-items.bottom-thumb .content .thumb {
    margin-top: 120px;
}

@media only screen and (max-width: 767px) {
    .banner-area.double-items.bottom-thumb .content {
        padding: 50px 0;
    }

    .banner-area.double-items.bottom-thumb .content .thumb {
        margin-top: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-area.double-items.bottom-thumb .content {
        padding: 120px 0;
    }

    .banner-area.double-items.bottom-thumb .content .thumb {
        margin-top: 50px;
    }
}

.banner-area.zoom-effect .banner-thumb {
    -webkit-transition: 10s ease-out;
    transition: 10s ease-out;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    height: 100%;
    width: 100%;
}

.banner-area.zoom-effect .swiper-slide.swiper-slide-active .banner-thumb {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.banner-area .swiper-notification {
    display: none;
}

.banner-area .swiper-slide.swiper-slide-active h4 {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 800ms;
    transition-delay: 800ms;
}

.banner-area .swiper-slide.swiper-slide-active h2 {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 1600ms;
    transition-delay: 1600ms;
}

.banner-area .swiper-slide.swiper-slide-active p,
.banner-area .swiper-slide.swiper-slide-active ul {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 2400ms;
    transition-delay: 2400ms;
}

.banner-area .swiper-slide.swiper-slide-active .button {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 3200ms;
    transition-delay: 3200ms;
}

.banner-area.banner-style-two .swiper-slide.swiper-slide-active .button {
    -webkit-transition-delay: 2400ms;
    transition-delay: 2400ms;
}

.banner-area .banner-items {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property:
        transform,
        -webkit-transform;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
}

.banner-area:hover .swiper-button-prev,
.banner-area:hover .swiper-button-next {
    opacity: 1;
}

.banner-area:hover .swiper-button-prev {
    left: 30px;
    right: auto;
}

.banner-area:hover .swiper-button-next {
    right: 30px;
    left: auto;
}

.banner-area .swiper-button-prev,
.banner-area .swiper-button-next {
    height: auto;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    opacity: 0;
}

.banner-area .swiper-button-prev::after,
.banner-area .swiper-button-next::after {
    font-size: 28px;
    color: var(--color-heading);
}

.banner-area.navigation-circle .swiper-button-prev,
.banner-area.navigation-circle .swiper-button-next {
    height: 60px;
    width: 60px;
    line-height: 60px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    border: 1px solid var(--color-primary);
}

.banner-area.navigation-circle .swiper-button-prev::after,
.banner-area.navigation-circle .swiper-button-next::after {
    font-size: 16px;
}

.banner-area.navigation-right-bottom .swiper-button-prev,
.banner-area.navigation-right-bottom .swiper-button-next {
    left: auto;
    right: 30px;
    opacity: 1;
    top: auto;
    -webkit-transform: inherit;
    transform: inherit;
    bottom: 50px;
    border-radius: inherit;
}

.banner-area.navigation-right-bottom .swiper-button-prev {
    right: 92px;
}

.banner-area.navigation-between-bottom .content {
    padding-bottom: 105px;
}

@media only screen and (min-width: 829px) and (max-width: 1023px) {
    .banner-area.navigation-between-bottom .content {
        padding-bottom: 220px;
    }
}

.banner-area.navigation-between-bottom .swiper-button-prev,
.banner-area.navigation-between-bottom .swiper-button-next {
    left: auto;
    right: 30px;
    opacity: 1;
    top: auto;
    -webkit-transform: inherit;
    transform: inherit;
    bottom: 30px;
    border-radius: inherit;
}

.banner-area.navigation-between-bottom .swiper-button-prev {
    left: 30px;
    right: auto;
}

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

.banner-area.navigation-custom .swiper-button-prev::after {
    font-family: 'ElegantIcons';
    content: '\23';
    font-size: 22px;
}

.banner-area.navigation-custom .swiper-button-next::after {
    font-family: 'ElegantIcons';
    content: '\24';
    font-size: 22px;
}

.banner-area.navigation-text .swiper-button-prev,
.banner-area.navigation-text .swiper-button-next {
    opacity: 1;
    top: auto;
    -webkit-transform: inherit;
    transform: inherit;
    left: auto;
    right: 0;
    bottom: 0;
    display: inline-block;
    width: 150px;
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
    height: 100px;
    line-height: 100px;
}

@media only screen and (max-width: 830px) {
    .banner-area.navigation-text .swiper-button-prev,
    .banner-area.navigation-text .swiper-button-next {
        display: none;
    }
}

.banner-area.navigation-text .swiper-button-prev {
    right: 151px;
}

.banner-area.navigation-text .swiper-button-prev::after {
    font-family: var(--font-heading);
    content: 'Prev';
    text-transform: uppercase !important;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.6px;
}

.banner-area.navigation-text .swiper-button-next::after {
    font-family: var(--font-heading);
    content: 'Next';
    text-transform: uppercase !important;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.6px;
}

.banner-area.navigation-icon-solid .swiper-button-prev::after,
.banner-area.navigation-icon-solid .swiper-button-next::after {
    font-size: 30px;
}

.banner-area.navigation-custom-large .swiper-button-prev,
.banner-area.navigation-custom-large .swiper-button-next {
    min-width: 65px;
    height: 30px;
    margin: 0;
}

.banner-area.navigation-custom-large .swiper-button-prev::after {
    font-family: 'Font Awesome 5 Pro';
    content: '\f104';
    font-weight: 100;
    font-size: 30px;
    position: absolute;
    left: 8px;
    color: var(--white);
}

.banner-area.navigation-custom-large .swiper-button-prev::before {
    position: absolute;
    top: 50%;
    right: inherit;
    bottom: inherit;
    left: 12px;
    content: '';
    height: 2px;
    width: 50px;
    z-index: -1;
    background-color: var(--white);
    margin-top: -1px;
}

.banner-area.navigation-custom-large .swiper-button-next::after {
    font-family: 'Font Awesome 5 Pro';
    content: '\f105';
    font-weight: 100;
    font-size: 30px;
    position: absolute;
    right: 8px;
    color: var(--white);
}

.banner-area.navigation-custom-large .swiper-button-next::before {
    position: absolute;
    top: 50%;
    right: 12px;
    bottom: inherit;
    left: inherit;
    content: '';
    height: 2px;
    width: 50px;
    z-index: -1;
    background-color: var(--white);
    margin-top: -1px;
}

.banner-area.navigation-right-botom .swiper-button-prev,
.banner-area.navigation-right-botom .swiper-button-next {
    position: absolute;
    left: auto;
    right: 30px;
    top: auto;
    bottom: 40px;
    opacity: 1;
    -webkit-transform: inherit;
    transform: inherit;
}

.banner-area.navigation-right-botom .swiper-button-prev {
    right: 60px;
}

.banner-area.navigation-right-botom.navigation-custom-large .swiper-button-prev,
.banner-area.navigation-right-botom.navigation-custom-large
    .swiper-button-next {
    bottom: 30px;
}

.banner-area.navigation-right-botom.navigation-custom-large
    .swiper-button-prev {
    right: 100px;
}

.banner-area .swiper-pagination {
    height: auto;
    bottom: 35px;
}

.banner-area .swiper-pagination span.swiper-pagination-bullet {
    height: 4px;
    width: 50px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    border-radius: inherit;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.banner-area
    .swiper-pagination
    span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: white;
    height: 7px;
}

@media only screen and (max-width: 767px) {
    .banner-area.include-pagination .content {
        padding-bottom: 100px;
    }
}

.banner-area .swiper-pagination-fraction span {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.banner-area .swiper-pagination-fraction span.swiper-pagination-current {
    font-size: 30px;
    font-family: var(--font-heading);
    font-weight: 800;
}

/* ============================================================== 
    # Banner Custom Style
=================================================================== */
.skew-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* animation: skewShake 5s ease-in-out infinite;  */
    opacity: 0.2;
}

.skew-bg-2 {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.3;
}

.banner-style-one {
    padding-top: 250px;
    padding-bottom: 100px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: right bottom;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: #fff;
    height: 100vh;
}

.banner-style-one::after {
    position: absolute;
    left: 0;
    bottom: 20%;
    content: '';
    height: 400px;
    width: 400px;
    background: var(--bg-gradient);
    z-index: -1;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.08;
}

@keyframes skewShake {
    0%,
    10%,
    90%,
    100% {
        transform: skewY(0deg); /* No skew */
        filter: blur(0); /* No blur */
    }
    20%,
    80% {
        transform: skewY(-3deg); /* Skew left */
        filter: blur(2px); /* Add blur during shake */
    }
    30%,
    70% {
        transform: skewY(0deg); /* Skew right */
        filter: blur(2px); /* Keep blur during shake */
    }
    40%,
    60% {
        transform: skewY(-3deg); /* Skew back */
        filter: blur(2px); /* Blur still active */
    }
    50% {
        transform: skewY(0deg); /* Back to slight skew */
        filter: blur(2px); /* Blur still active */
    }
}

.bg-dark .banner-style-one::after {
    opacity: 0.4;
}

.banner-one-item h4 {
    font-weight: 400;
    position: relative;
    padding: 20px 0px;
    font-size: 14pt;
    line-height: 1.5;
}

.bg-dark .banner-one-item h4 {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.banner-one-item h2 {
    margin: 0;
    font-size: 20pt;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Jost', 'sans-serif';
    line-height: 1.1;
}

.bg-dark .banner-one-item h2 {
    color: var(--white);
}

@media (min-width: 1200px) {
    .banner-one-item h2 {
        font-size: 45pt;
    }
}

.banner-one-item h2 strong {
    color: var(--main);
}

.bg-dark .banner-one-item h2 strong {
    -webkit-text-stroke: 1px var(--white);
    color: transparent;
    opacity: 0.8;
}

.curve-text svg {
    fill: var(--white);
    height: 170px;
    width: 170px;
    overflow: inherit;
    animation: spinner 20s infinite linear;
    text-shadow: 1px 1px #000000;
}

.curve-text svg {
    background: var(--bg-gradient);
    border-radius: 50%;
    padding: 35px;
    position: relative;
    z-index: 1;
    font-size: 25px;
    height: 180px;
    width: 180px;
    text-transform: uppercase;
    font-weight: 800;
}

.curve-text svg a {
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
}

.curve-text {
    display: inline-block;
    position: relative;
}

.curve-text a {
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 9;
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 40px;
    -webkit-text-stroke: 1px var(--white);
    color: transparent;
}

.curve-text svg path {
    fill: none;
}

.curve-text svg text {
    fill: var(--white);
    letter-spacing: 4px;
}

/* Banner Style Three */
.banner-style-three {
    background-size: cover;
    padding-top: 200px;
    padding-bottom: 200px;
    position: relative;
    overflow: hidden;
}

.banner-style-three .row div {
    height: auto;
}

.banner-style-three h2 {
    margin: 0;
    font-size: 65px;
    font-weight: 900;
}

.bg-dark .banner-style-three h2 {
    color: var(--white);
}

.banner-style-three .content {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-top: 60px;
}

.banner-style-three .content::after {
    position: absolute;
    left: -15%;
    top: 50%;
    content: '';
    height: 500px;
    width: 500px;
    background: linear-gradient(
        90deg,
        rgba(237, 245, 255, 1) 0%,
        rgba(204, 223, 247, 1) 100%
    );
    z-index: -1;
    transform: translateY(-50%);
    border-radius: 50%;
}

.bg-dark .banner-style-three .content::after {
    background: var(--bg-gradient);
    opacity: 0.6;
}

.banner-style-three .fun-fact .counter {
    -webkit-text-stroke: 1px var(--color-heading);
    color: transparent;
    font-size: 100px;
    font-weight: 800;
}

.bg-dark .banner-style-three .fun-fact .counter {
    -webkit-text-stroke: 1px var(--white);
}

.banner-style-three .fun-fact .counter .operator {
    font-weight: 800;
}

.banner-style-three .fun-fact .medium {
    font-weight: 700;
    font-size: 20px;
}

.banner-style-three .thumb {
    position: relative;
    z-index: 1;
    padding-top: 30px;
}

.banner-style-three .thumb img {
    max-width: 60%;
}

.banner-style-three .thumb img:nth-child(2) {
    position: absolute;
    left: -100px;
    height: 150px;
    top: -50px;
}

/* ============================================================== 
    # Background Move
=================================================================== */

.banner-animation-zoom {
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 600px;
    width: 100%;
}

.banner-animation-zoom .animation-zoom-banner {
    width: 100%;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0%;
    transform: translateX(-50%);
    height: 100%;
    z-index: -99;
}

@media (min-width: 1800px) {
    .banner-animation-zoom {
        height: 650px;
    }
}

.experience-box {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 100px 40px;
    text-align: left;
    max-width: 40%;
}

.inner-content {
    position: relative;
    z-index: 1;
}

。inner-content p {
    font-family: 'Jost', 'sans-serif';
}

.banner-animation-zoom .container {
    position: relative;
    height: 100%;
}

.experience-box strong {
    display: block;
    font-size: 100px;
    line-height: 1;
    margin-bottom: 10px;
    margin-top: -15px;
    -webkit-text-stroke: 1px var(--white);
    color: transparent;
}

.experience-box h2 {
    color: var(--white);
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 25px;
}

.experience-box::after {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 500%;
    background: var(--color-primary);
    content: '';
    z-index: -1;
}

.experience-box::before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 500%;
    background: var(--main);
    content: '';
    background-repeat: no-repeat;
}

.experience-box .btn-animation {
    color: var(--white);
}

.experience-box p {
    color: var(--white);
    opacity: 0.9;
}

/* ============================================================== 
    # Services
=================================================================== */

.services-item-one-items .services-carousel {
    position: relative;
    padding: 30px;
    top: -30px;
    margin: -30px;
    margin-bottom: -60px;
}

.cteative-service-item {
    padding: 67px 60px;
    background: var(--white);
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.57);
    border-radius: 40px 0 40px 0;
}

.bg-dark .cteative-service-item {
    background: #262525;
    box-shadow: none;
}

.cteative-service-item i {
    display: inline-block;
    font-size: 50px;
    font-weight: 100;
    margin-bottom: 30px;
}

.bg-dark .cteative-service-item a {
    color: var(--white);
}

.bg-dark .cteative-service-item a:hover {
    color: var(--color-primary);
}

@media only screen and (min-width: 1400px) {
    .container-stage {
        margin-left: calc((100% - 1320px) / 2);
        width: auto;
        min-width: auto;
        max-width: inherit;
        padding-right: 0;
    }
}

.cteative-service-item h4 {
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 10px !important;
    padding-top: 0 !important;
    font-weight: 600 !important;
    font-family: 'Jost', 'sans-serif';
}

.cteative-service-item img {
    height: 80px;
    margin-bottom: 50px;
    width: auto !important;
}

.cteative-service-item p {
    margin: 0;
}

.cteative-service-item span {
    position: absolute;
    bottom: -19px;
    right: 20px;
    font-size: 120px;
    z-index: -1;
    font-weight: 900;
    line-height: 1;
    color: #cccccc;
    opacity: 0.2;
}

.bg-dark .cteative-service-item span {
    color: var(--white);
    opacity: 0.04;
}

.services-carousel.owl-carousel .owl-dots {
    position: absolute;
    top: -90px;
    right: 100px;
}

.services-carousel.owl-carousel .owl-dots .owl-dot span {
    background: transparent;
    border: 2px solid;
    height: 25px;
    width: 25px;
    border-color: var(--color-primary);
    position: relative;
    opacity: 0.6;
}

.services-carousel.owl-carousel .owl-dots .owl-dot span::after {
    position: absolute;
    left: 50%;
    top: 50%;
    content: '';
    height: 8px;
    width: 8px;
    background: var(--bg-gradient);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: 0.6;
}

.services-carousel.owl-carousel .owl-dots .owl-dot.active span {
    opacity: 1;
}

.services-carousel.owl-carousel .owl-dots .owl-dot.active span::after {
    opacity: 1;
}

img.bg-move {
    position: absolute;
    max-width: 400px;
    /* transform: rotate(45deg); */
    left: 0;
    bottom: -150px;
    z-index: 2;
}

.services-button-prev,
.services-button-next {
    height: 60px;
    width: 70px;
    line-height: 60px;
    float: left;
    position: relative;
    background: #fff;
    z-index: 1;
}

.services-nav .nav-items {
    float: right;
    width: 150px !important;
    border: 1px solid #dddddd;
    overflow: hidden;
    border-radius: 30px;
    background: #fff;
    text-align: center;
}

.bg-dark .services-nav .nav-items {
    border-right: 1px solid #dddddd;
    background: #fff;
}

.services-button-prev {
    border-right: 1px solid #dddddd;
    background: #fff;
}

.bg-dark .services-button-prev {
    border-right: 1px solid #dddddd;
    background: #fff;
}

.services-button-next::after {
    position: absolute;
    left: 50%;
    top: 50%;
    content: '\f061';
    font-family: 'Font Awesome 5 Pro';
    transform: translate(-50%, -50%);
    margin-top: 1px;
}

.services-button-prev::after {
    position: absolute;
    left: 50%;
    top: 50%;
    content: '\f060';
    font-family: 'Font Awesome 5 Pro';
    transform: translate(-50%, -50%);
    margin-top: 1px;
}
.creative-services-section {
    position: relative;
}

.services-nav {
    position: absolute;
    top: 30%;
    right: 0;
    z-index: 3;
    width: 280px;
    text-align: right !important;
    padding: 0 30px;
    margin-bottom: -60px;
}

/* ============================================================== 
    # Service Style Three
=================================================================== */

.service-hover-item {
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
    counter-increment: count;
}

.service-hover-wrapper {
    position: absolute;
    width: 337px;
    top: 50px;
    left: 185px;
    pointer-events: none;
    transform: translate(-100%, -50%);
    overflow: hidden;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease-out;
    background-color: var(--ogency-black2);
    z-index: -1;
}

.service-hover-wrapper img {
    height: 100%;
}

.service-hover-items ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-hover-items > ul > li {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 50px 0;
}

.service-hover-items > ul > li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.service-hover-content {
    display: grid;
    grid-template-columns: 0.5fr 1.6fr 2.5fr 1.2fr;
    grid-column-gap: 70px;
}

.service-hover-content .arrow {
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.service-hover-items .icon i {
    display: inline-block;
    font-weight: 100;
    font-size: 55px;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-hover-content h2 {
    font-weight: 700;
    margin-top: -8px;
    font-size: 30px;
}

.service-hover-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 25px;
}

.service-hover-content ul li {
    font-weight: 700;
    position: relative;
    z-index: 1;
    padding-left: 27px;
    color: #cccccc;
    margin-top: 5px;
}

.service-hover-content ul li::after {
    position: absolute;
    left: 0;
    top: 0;
    content: '\f00c';
    font-family: 'Font Awesome 5 Pro';
    text-align: center;
    font-size: 15px;
    font-weight: 100;
}

.service-hover-content p {
    margin-bottom: 0;
}

.service-hover-content .item-title {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-hover-content .item-title span {
    font-size: 60px;
    line-height: 1;
    -webkit-text-stroke: 1px var(--white);
    color: transparent;
    opacity: 0.3;
}

.service-hover-content .arrow .btn-animation {
    left: 50px;
}

.service-hover-content .btn-animation::after {
    background: rgba(255, 255, 255, 0.1);
    border: none;
}

/* ============================================================== 
    # Services Details
=================================================================== */
.services-details-area .thumb img {
    margin-bottom: 40px;
}

.services-details-area h1,
.services-details-area h2,
.services-details-area h3,
.services-details-area h4,
.services-details-area h5,
.services-details-area h6 {
    font-weight: 800;
}

.feature-list-item {
    margin: 0;
    padding: 0;
    list-style: none;
}

.feature-list-item li {
    position: relative;
    z-index: 1;
    padding-left: 32px;
    margin-top: 10px;
    font-weight: 600;
}

.feature-list-item li::after {
    position: absolute;
    left: 0;
    top: 4px;
    content: '\f00c';
    font-family: 'Font Awesome 5 Pro';
    color: var(--color-heading);
    font-weight: 500;
    font-size: 12px;
    height: 20px;
    width: 20px;
    text-align: center;
    line-height: 20px;
    border: 1px solid #cccccc;
    border-radius: 4px;
}

.quick-contact-widget {
    background-size: cover;
    position: relative;
    z-index: 1;
    padding: 60px 37px;
    background-position: center center;
    overflow: hidden;
}

.quick-contact-widget .content {
    position: relative;
    z-index: 1;
}

.quick-contact-widget h2 {
    font-weight: 800;
    margin-bottom: 10px;
    margin-top: 25px;
}

.quick-contact-widget h4 a {
    font-weight: 400;
    border-bottom: 2px solid;
}

.quick-contact-widget i {
    display: inline-block;
    height: 60px;
    width: 60px;
    line-height: 60px;
    font-weight: 100;
    background: #ffffff;
    color: var(--color-primary);
    font-size: 22px;
    border-radius: 50%;
    margin-bottom: 40px;
    position: relative;
}

.quick-contact-widget i::after {
    position: absolute;
    left: -10px;
    top: -10px;
    content: '';
    height: 80px;
    width: 80px;
    background: #ffffff;
    z-index: -1;
    border-radius: 50%;
    opacity: 0.8;
}

.quick-contact-widget .btn-sm {
    font-size: 16px;
}

.services-sidebar .single-widget {
    margin-top: 50px;
}

.services-sidebar .single-widget .widget-title {
    display: block;
    font-weight: 800;
    margin-bottom: 30px;
    margin-top: -5px;
    position: relative;
    z-index: 1;
    display: inline-block;
    padding-bottom: 15px;
}

.services-sidebar .single-widget .widget-title::after {
    position: absolute;
    left: 10px;
    bottom: 0;
    content: '';
    height: 3px;
    width: 50px;
    border-bottom: 3px solid var(--color-primary);
}

.services-sidebar .single-widget .widget-title::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    height: 3px;
    width: 5px;
    background: var(--dark);
}

.services-sidebar .single-widget h4.widget-title {
    font-size: 24px;
}

.services-sidebar .single-widget:first-child {
    margin-top: 0;
}

.widget-brochure ul {
    padding-left: 0;
    list-style: none;
}

.widget-brochure ul li a {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 15px;
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 5px;
    border: 2px solid #cddff7;
    color: var(--color-heading);
}

.widget-brochure ul li a:hover {
    color: var(--color-primary);
}

.widget-brochure ul li:first-child a {
    margin-top: 0;
}

.widget-brochure ul li:first-child a,
.widget-brochure ul li a:hover {
    background: var(--dark);
    border-color: transparent;
    color: var(--white);
}

.widget-brochure ul li i {
    font-size: 35px;
    font-weight: 100;
    margin-right: 16px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.widget-brochure ul li:hover i,
.widget-brochure ul li:first-child i {
    color: var(--white);
}

@media only screen and (max-width: 767px) {
    .services-more .row {
        margin-top: -20px;
    }
}

.services-more .item {
    padding: 50px 35px;
    overflow: hidden;
    margin-top: 15px;
    position: relative;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 30px 80px rgba(90, 144, 225, 0.1);
    transition: transform 0.3s ease-in-out;
}

.services-more .item:hover {
    transform: scale(1.1);
}

.services-more .item img {
    height: 80px;
    margin-bottom: 30px;
}

.services-more .item i::before {
    line-height: inherit;
}

@media only screen and (max-width: 767px) {
    .services-more .item {
        margin-top: 30px;
        text-align: center;
    }
}

.services-more .item i {
    display: inline-block;
    font-size: 40px;
    margin-bottom: 30px;
    background: var(--main);
    color: var(--white);
    height: 70px;
    width: 70px;
    text-align: center;
    line-height: 70px;
    border-radius: 50%;
}

.services-more .item a {
    color: var(--color-heading);
}

.services-more .item a:hover {
    color: var(--color-primary);
}

.services-more .item p {
    margin: 0;
}

.service-single-thumb {
    position: relative;
    z-index: 1;
}

.service-single-thumb img {
    margin-bottom: 40px;
}

.services-list-widget {
    padding: 50px;
    background-size: cover;
    background-position: center;
    border: 2px solid;
    padding-top: 60px;
}

.services-list-widget a {
    display: block;
    padding: 10px 0;
    font-weight: 700;
    position: relative;
    padding-right: 50px;
    font-size: 17px;
}

.services-list-widget .current-item a {
    color: var(--color-primary);
    font-weight: 800;
}

.services-list-widget li {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.services-list-widget li:first-child {
    border: none;
    margin-top: -10px;
}

.services-list-widget a i {
    float: right;
    font-weight: 400;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    margin-top: 1px;
}

.services-sidebar .single-widget.text-light .widget-title::after {
    border-color: var(--white);
}

/* ============================================================== 
    # About
=================================================================== */
.about-style-one-thumb {
    position: relative;
    padding-bottom: 50px;
}

.about-style-one-thumb .fun-fact {
    background: url(../img/shape/9.png);
    position: absolute;
    right: 50px;
    bottom: -50px;
    padding: 80px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    padding-bottom: 100px;
}

.about-style-one-thumb .fun-fact .counter {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.about-style-one-thumb .fun-fact .medium {
    font-weight: 600;
}

.bg-dark .about-style-one .title {
    color: var(--white);
}

a.arrow-btn {
    display: inline-block;
    transform: rotate(-45deg);
    font-size: 100px;
    -webkit-text-stroke: 1px var(--color-primary);
    color: transparent;
    margin-top: 25px;
    line-height: 1;
}

.bg-dark a.arrow-btn {
    -webkit-text-stroke: 1px var(--white);
    color: transparent;
}

.blur-bg-theme {
    position: absolute;
    right: 0;
    top: 0;
    height: 300px;
    width: 300px;
    background: rgb(233, 10, 10);
    z-index: -1;
    border-radius: 50%;
    filter: blur(180px);
    opacity: 0.07;
}

.bg-dark .blur-bg-theme {
    opacity: 0.4;
    background: var(--bg-gradient);
    filter: blur(100px);
}

ul.list-simple {
    margin-top: 20px;
    padding: 0;
    list-style: none;
}

ul.list-simple li {
    font-weight: 700;
    font-size: 18px;
    margin-top: 7px;
    padding-left: 32px;
    position: relative;
    z-index: 1;
}

ul.list-simple li::after {
    position: absolute;
    left: 0;
    top: 7px;
    content: '\f00c';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 100;
    border: 1px solid #dddddd;
    height: 20px;
    width: 20px;
    line-height: 19px;
    text-align: center;
    border-radius: 5px;
    font-size: 12px;
    color: var(--color-heading);
}

.bg-dark ul.list-simple li::after {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #cccccc;
}

/* About Style Two */

.bg-dark .about-style-two-area {
    background: var(--dark-secondary);
}

.about-style-two-thumb {
    position: absolute;
    left: 0;
    top: 0;
    height: 90%;
    width: 50%;
    background-size: cover;
    background-position: center;
}

.experience-style-one {
    display: flex;
    align-items: center;
    position: absolute;
    background: var(--bg-gradient);
    padding: 35px;
    right: -50px;
    bottom: -12%;
}

.experience-style-one h3 {
    margin: 0;
    font-weight: 700;
    font-size: 24px;
    color: var(--white);
}

.experience-style-one .video-button {
    margin-right: 40px;
}

.experience-style-one .video-button .video-play-button {
    position: relative;
    z-index: 1;
    display: block;
}

.experience-style-one .video-button .effect {
    background: var(--white);
    height: 60px;
    width: 60px;
    margin-top: 2px;
    margin-left: 2px;
}

.experience-style-one .video-button .effect::before,
.experience-style-one .video-button .effect::after {
    background: var(--white);
    height: 100px;
    width: 100px;
}

.experience-style-one .video-button .video-play-button i {
    background: var(--white);
    color: var(--color-heading);
}

.about-style-two-info h2 strong {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.about-style-two-info h2 strong::after {
    position: absolute;
    left: 0;
    bottom: 0px;
    content: '';
    height: 100%;
    width: 100%;
    background: url(../img/shape/8.png);
    z-index: -1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.about-style-two-info {
    position: relative;
    z-index: 1;
    padding: 120px 0;
}

.bg-dark .about-style-two-info {
    padding: 0;
}

.bg-dark .about-style-two-info::after {
    position: absolute;
    right: 0;
    top: -120px;
    content: '';
    height: 450px;
    width: 450px;
    background: var(--bg-gradient);
    z-index: -1;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

/* Faq Style ONe */

.faq-style-one {
    position: relative;
}

.faq-style-one button.accordion-button {
    color: var(--color-heading);
    font-size: 20px;
    font-weight: 800 !important;
    padding: 0 !important;
    background: transparent !important;
    padding-left: 35px !important;
    position: relative;
    box-shadow: inherit;
    border: none;
    border-radius: inherit !important;
    text-transform: inherit;
}

.bg-dark .faq-style-one button.accordion-button {
    font-weight: 700 !important;
}

.faq-style-one button.accordion-button::after {
    background: transparent;
    content: '\f107';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 100;
    font-size: 26px;
    position: absolute;
    top: -3px;
    left: 0;
    opacity: 1;
    height: 100%;
    transform: inherit;
}

.faq-style-one button.accordion-button:not(.collapsed)::after {
    -webkit-transform: inherit;
    transform: inherit;
    content: '\f106';
}

.faq-style-one button.accordion-button:focus {
    background: transparent;
    color: var(--color-heading);
    border: none;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
    padding-left: 0;
    font-weight: 800;
}

.faq-style-one .accordion-item {
    background: transparent;
    border: none;
    margin-bottom: 35px;
}

.faq-style-one .accordion-body {
    padding-left: 35px;
    padding-top: 25px;
    padding-bottom: 0;
}

.faq-style-one-content {
    margin-top: -15px;
}

.faq-style-one .accordion-body p:last-child {
    margin: 0;
}

.bg-dark .faq-style-one button.accordion-button {
    color: var(--white);
}

.faq-style-one .accordion-item:last-child {
    margin-bottom: 0;
}

.faq-style-two.faq-style-one button.accordion-button {
    padding-left: 0 !important;
    padding-right: 35px !important;
}

.faq-style-two.faq-style-one .accordion-body {
    padding-left: 0;
    padding-right: 35px;
    margin-bottom: 15px;
}

.faq-style-two.faq-style-one button.accordion-button::after {
    left: auto;
    right: 0;
}

.faq-style-two.faq-style-one .accordion-item {
    border-bottom: 1px solid #cccccc;
    padding-bottom: 20px;
}

.faq-style-two.faq-style-one .accordion-item {
    margin-bottom: 20px;
}

/* ============================================================== 
    # Portfolio
=================================================================== */

.item-center .portfolio-style-one {
    padding-right: 30px;
}

.item-center:nth-child(2n) .portfolio-style-one {
    padding-right: 0;
    padding-left: 30px;
}

.portfolio-style-one {
    margin-top: 50px;
}

.pf-item-info {
    display: flex;
    justify-content: space-between;
    padding-left: 50px;
    margin-top: 30px;
    padding-right: 30px;
}

a.pf-btn {
    display: inline-block;
    height: 100px;
    width: 100px;
    text-align: center;
    line-height: 100px;
    background: var(--bg-gradient);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 40px;
}

.bg-dark a.pf-btn {
    background: var(--dark-secondary);
}

a.pf-btn i {
    -webkit-text-stroke: 1px var(--white);
    color: transparent;
    font-weight: 900;
    transform: rotate(-45deg);
}

.pf-item-info .button {
    position: relative;
    top: -80px;
}

.pf-item-info .content-info {
    margin-right: 30px;
}

.pf-item-info .content-info span {
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
    border: 1px solid;
    padding: 3px 15px;
    border-radius: 40px;
}

.bg-dark .pf-item-info .content-info span {
    background: var(--bg-gradient);
    color: var(--white);
    border-radius: inherit;
    border: none;
}

.bg-dark .pf-item-info .content-info h2 a {
    color: var(--white);
}

.thumb-zoom {
    overflow: hidden;
}

.thumb-zoom img {
    transition: all 0.35s ease-in-out;
}

.thumb-zoom:hover img {
    transform: scale(1.2);
}

/* ============================================================== 
    # Project
=================================================================== */
@media (min-width: 1200px) {
    .project-style-one-area .container-fill {
        padding-left: 0;
        padding-right: 0;
    }
}

.project-style-one {
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding-bottom: 10px;
}

.project-style-one .overlay {
    position: absolute;
    left: 50px;
    bottom: -50px;
    display: flex;
    align-items: center;
    background: var(--white);
    transition: all 0.35s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.bg-dark .project-style-one .overlay {
    background: var(--dark);
}

.project-style-one .overlay::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    height: 10px;
    width: 100%;
    background: var(--bg-gradient);
}

.project-style-one .overlay .link a {
    display: inline-block;
    height: 100px;
    width: 100px;
    text-align: center;
    line-height: 100px;
    border-right: 1px solid #dddddd;
    -webkit-text-stroke: 1px var(--color-heading);
    color: transparent;
    font-size: 40px;
}

.bg-dark .project-style-one .overlay .link a {
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    -webkit-text-stroke: 1px var(--white);
    color: transparent;
}

.project-style-one .overlay .content {
    padding: 15px 50px;
    padding-left: 40px;
    padding-bottom: 22px;
}

.project-style-one .overlay .content h4 {
    margin: 0;
}

.bg-dark .project-style-one .overlay .content h4 a {
    color: var(--white);
}

.project-style-one .overlay .content span {
    display: block;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 5px;
    opacity: 0.9;
    margin-top: -5px;
}

.project-style-one .overlay .link a i {
    transform: rotate(-45deg);
}

.swiper-slide.swiper-slide-active .project-style-one .overlay {
    bottom: 0;
    opacity: 1;
    visibility: visible;
}

.project-button-prev,
.project-button-next {
    height: 60px;
    width: 80px;
    line-height: 60px;
    position: relative;
    z-index: 1;
}

.project-nav .nav-items {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid;
    overflow: hidden;
    border-radius: 30px;
}

.bg-dark .project-nav .nav-items {
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.project-button-prev {
    border-right: 1px solid;
}

.bg-dark .project-button-prev {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.project-button-next::after {
    position: absolute;
    left: 50%;
    top: 50%;
    content: '\f061';
    font-family: 'Font Awesome 5 Pro';
    transform: translate(-50%, -50%);
    margin-top: 1px;
}

.project-button-prev::after {
    position: absolute;
    left: 50%;
    top: 50%;
    content: '\f060';
    font-family: 'Font Awesome 5 Pro';
    transform: translate(-50%, -50%);
    margin-top: 1px;
}

.project-nav {
    display: flex;
    justify-content: right;
    max-width: 100%;
    margin: auto;
    padding: 0 15px;
}

.project-nav .nav-items {
    position: relative;
    right: 0;
    top: -145px;
    margin-bottom: -60px;
}

@media (min-width: 576px) {
    .project-nav {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .project-nav {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .project-nav {
        max-width: 960px;
    }
}

@media (min-width: 1400px) {
    .project-nav {
        max-width: 1320px;
    }
}

/* ============================================================== 
    # Pricing
=================================================================== */

.shape-left-top {
    position: absolute;
    left: 0;
    top: -25%;
    width: 30%;
    z-index: -1;
}

.pricing-style-one-area {
    position: relative;
    z-index: 1;
}

.pricing-style-one {
    display: flex;
    padding: 40px;
    margin-top: 30px;
    background: rgba(255, 255, 255, 1);
    border-radius: 30px;
}

.bg-dark .pricing-style-one {
    background: rgba(255, 255, 255, 0.06);
}

.pricing-style-one:first-child {
    margin-top: 0;
}

.pricing-style-one.active {
    background: var(--bg-gradient);
}

.pricing-style-one .left {
    width: 50%;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    margin-right: 30px;
    padding-right: 30px;
}

.pricing-style-one h4 {
    font-weight: 900;
}

.pricing-style-one.active h4 {
    color: var(--white);
}

.pricing-style-one ul li {
    font-weight: 600;
    position: relative;
    z-index: 1;
    list-style: circle;
}

.pricing-style-one.active ul li {
    color: var(--white);
}

.pricing-style-one ul {
    list-style: circle;
    margin-left: 20px;
}

.pricing-style-one h2 {
    margin: 0;
    margin-top: 20px;
    font-weight: 700;
    font-size: 50px;
}

.pricing-style-one.active h2 {
    color: var(--white);
}

.pricing-style-one span {
    display: block;
}

.bg-dark .pricing-style-one span {
    color: #cccccc;
}

.pricing-style-one.active span {
    color: var(--white);
    opacity: 0.9;
}

.pricing-items p {
    margin-top: 25px;
}

.pricing-items h5 {
    margin: 0;
    margin-top: 25px;
    font-weight: 600;
    font-size: 24px;
}

.bg-dark .pricing-items h5 {
    color: var(--white);
}

.pricing-items h5 strong {
    font-size: 36px;
    text-decoration: underline;
    margin: 0 3px;
    color: var(--color-secondary);
}

.pricing-style-one:first-child .btn {
    color: var(--color-heading);
    border-color: #e7e7e7;
}

.pricing-style-one:first-child .btn:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.bg-dark .pricing-style-one:first-child .btn {
    color: var(--white);
    border-color: var(--white);
}

.bg-dark .pricing-style-one:first-child .btn:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

/* ============================================================== 
    # Fun Factor
=================================================================== */
.fun-fact .counter {
    display: flex;
    align-items: center;
    font-size: 60px;
    line-height: 1.2;
    position: relative;
    margin-top: 20px;
}

.fun-fact .counter .operator {
    font-weight: 800;
}

.fun-fact-circle-lists {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-top: 195px;
    margin-bottom: 170px;
}

.fun-fact-circle-lists .fun-fact {
    position: relative;
    padding: 15px;
    text-align: center;
    z-index: 1;
}

.fun-fact-circle-lists .fun-fact .operator {
    font-weight: 800;
}

.bg-dark .fun-fact-circle-lists .fun-fact .operator {
    font-weight: 600;
}

.fun-fact-circle-lists .fun-fact .counter {
    justify-content: center;
    color: var(--color-heading);
    font-weight: 800;
}

.bg-dark .fun-fact-circle-lists .fun-fact .counter {
    color: var(--white);
    font-weight: 600;
}

.fun-fact-circle-lists .fun-fact::after {
    height: 300px;
    width: 300px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #c9c4c4;
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}

.bg-dark .fun-fact-circle-lists .fun-fact::after {
    border: 1px solid #6f6c6c;
}

.fun-fact-circle-lists .fun-fact:nth-child(2)::after {
    height: 380px;
    width: 380px;
    background: var(--white);
}

.bg-dark .fun-fact-circle-lists .fun-fact:nth-child(2)::after {
    background: var(--dark);
}

.fun-fact-circle-lists .fun-fact:last-child::after {
    height: 420px;
    width: 420px;
    background: var(--white);
}

.bg-dark .fun-fact-circle-lists .fun-fact:last-child::after {
    background: var(--dark);
}

.fun-fact-circle-lists .fun-fact:last-child .counter {
    margin: 0;
}

.fun-fact-circle-lists .fun-fact span.medium {
    font-weight: 600;
}

.bg-dark .fun-fact-circle-lists .fun-fact span.medium {
    color: var(--white);
    opacity: 0.9;
}

.fun-fact-circle-lists .fun-fact:nth-child(2) {
    position: relative;
    top: 40px;
    left: -5px;
    z-index: 9;
}

.fun-fact-circle-lists .fun-fact:nth-child(3) {
    top: -120px;
    left: -35px;
}

.fun-fact-circle-lists .fun-fact:nth-child(3)::after {
    height: 330px;
    width: 330px;
}

.fun-fact-circle-lists .fun-fact:last-child {
    top: 50px;
    right: 60px;
}

.fun-fact-circle-lists .fun-fact:last-child .counter .timer {
    font-size: 100px;
    font-weight: 900;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    margin-top: 0;
}

/* ============================================================== 
    # Brand
=================================================================== */

.brand-items {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 50px;
}

.brand-conetnt {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slide-left 50s linear infinite;
}

.brand-conetnt h2 {
    margin: 0;
    font-size: 100px;
    margin: 0 50px;
    font-weight: 900;
    line-height: 1.4;
}

.bg-dark .brand-conetnt h2 {
    color: var(--white);
}

.brand-conetnt .item:nth-child(2n) h2 {
    -webkit-text-stroke: 1px var(--white);
    color: transparent;
    border: none;
    text-decoration: none;
}

.brand-style-two-area .brand-conetnt .item:nth-child(2n) h2 {
    -webkit-text-stroke: 1px var(--color-heading);
    color: transparent;
    border: none;
    text-decoration: none;
}

.bg-dark .brand-style-two-area .brand-conetnt .item:nth-child(2n) h2 {
    -webkit-text-stroke: 1px var(--white);
    color: transparent;
}

.brand-conetnt .item {
    position: relative;
}

.brand-conetnt .item::after {
    position: absolute;
    right: -30px;
    top: 50%;
    content: '';
    height: 60px;
    width: 60px;
    background: url(../img/shape/4.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    transform: translateY(-50%);
    margin-top: 10px;
}

.brand-style-two-area .brand-conetnt .item::after {
    background: url(../img/shape/4-dark.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
}

.bg-dark .brand-conetnt .item::after {
    position: absolute;
    right: -15px;
    top: 50%;
    content: '';
    height: 40px;
    width: 40px;
    background: url(../img/shape/4.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    transform: translateY(-50%);
    margin-top: 10px;
}

@-webkit-keyframes slide-left {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes slide-left {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

/* ============================================================== 
    # Brand Style Two
=================================================================== */

.bg-dark .brand-style-two-area {
    background: var(--dark-secondary);
}

.brand-style-two-area .brand-items {
    padding: 0;
}

.brand-style-two-area .brand-items .brand-conetnt h2 {
    line-height: 1;
}

/* ============================================================== 
    # Clietns Area
=================================================================== */

.clietns-area {
    overflow: hidden;
}

.client-items {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 120px;
}

.client-items h4,
.client-items h5 {
    font-weight: 600;
    margin-bottom: 30px;
    color: #cccccc;
}

.partner-box:first-child {
    margin-top: -35px;
}

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

.client-item-box {
    position: relative;
    z-index: 1;
}

.client-item-box::after {
    z-index: -1;
    position: absolute;
    left: 50%;
    top: 50%;
    content: '';
    height: 160%;
    width: 160%;
    background: url(../img/shape/globe.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(-50%, -50%);
}

.client-items .partner-box .item {
    height: 100px;
    width: 100px;
    margin: 30px 16px 0;
    background: rgba(255, 255, 255, 0.06);
    text-align: center;
    line-height: 100px;
    border-radius: 8px;
}

.client-items .partner-box .item img {
    height: 45px;
    width: auto;
}

.client-items .partner-box .item i {
    display: inline-block;
    font-size: 50px;
    line-height: 100px;
}

.client-items .partner-box .item i.fab.fa-angular {
    color: #dd1b16;
}

.client-items .partner-box .item i.fab.fa-blackberry {
    color: #4d0026;
}

.client-items .partner-box .item i.fab.fa-amazon-pay {
    color: #333e47;
}

.client-items .partner-box .item i.fab.fa-codepen {
    color: #3b5998;
}

.client-items .partner-box .item i.fab.fa-digital-ocean {
    color: #0080ff;
}

.client-items .partner-box .item i.fab.fa-dropbox {
    color: #3d9ae8;
}

.client-items .partner-box .item i.fab.fa-reddit {
    color: #ff4500;
}

/* ============================================================== 
    # Team Area 
=================================================================== */

.team-style-one-area {
    background-position: top !important;
}

.team-style-one {
    overflow: hidden;
    border: 1px solid #dddddd;
    border-radius: 30px;
}

.team-style-one.featured {
    border: 1px solid var(--main);
}

.bg-dark .team-style-one {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.team-style-one img {
    border-radius: 50%;
    max-width: 80%;
    margin: auto;
}

.team-style-one .thumb {
    padding: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.team-style-one .content {
    position: relative;
    padding: 30px;
    z-index: 1;
    border-top: 1px solid #dddddd;
    overflow: hidden;
    border-radius: 30px 30px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bg-dark .team-style-one .content {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.team-style-one .content i {
    display: inline-block;
    font-size: 38px;
    font-weight: 100;
}

.bg-dark .team-style-one .content i {
    color: var(--white);
}

.team-style-one h4 {
    margin-bottom: 0px;
    font-weight: 700;
}

.team-style-one .info h4 {
    margin-bottom: 0px;
    font-weight: 800;
    text-align: right;
    font-size: 24pt;
    color: var(--main);
}
.team-style-one .info h4 sup {
    font-weight: 300;
    font-size: 12pt;
    margin-top: -200px;
}
.team-style-one .info h4 a:hover {
    color: var(--main);
}

.team-style-one h4 s {
    font-size: 12pt;
}

.bg-dark .team-style-one h4 a {
    color: var(--white);
}

.team-style-one span {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.6px;
}

.bg-dark .team-style-one span {
    color: #cccccc;
}

.team-style-one .thumb .social {
    margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 5;
}

.team-style-one .thumb .social li {
    display: inline-block;
    margin: 0 1px;
}

.team-style-one .thumb .social li a {
    display: block;

    background: var(--main);
    line-height: 45px;
    color: var(--white);
    position: relative;
    bottom: -30px;
    opacity: 0;
    visibility: hidden;
    padding: 0px 20px;
}

.team-style-one .thumb .social li:last-child a {
    transition: all 0.55s ease-in-out;
}

.team-style-one:hover .thumb .social li a {
    bottom: 0;
    opacity: 1;
    visibility: visible;
}

.team-style-one .social li.facebook a {
    background: #3b5998;
}

.team-style-one .social li.twitter a {
    background: #1da1f2;
}

.team-style-one:hover .thumb .plan-name,
.team-style-one:hover .thumb .plan-shortdesc {
    filter: blur(2px);
    opacity: 0.7;
}

.team-style-one .thumb .plan-name {
    font-weight: 800;
}

.team-style-one:hover .thumb .plan-shortdesc {
    z-index: 0;
}

/* ============================================================== 
     # Team Single  
=================================================================== */
.team-right-info h2 {
    font-weight: 800;
}

.team-right-info .fun-fact .medium {
    display: block;
    color: var(--color-heading);
    font-weight: 500;
    margin-bottom: 25px;
}

.team-right-info ul {
    margin-top: 25px;
    border-top: 2px solid #dddddd;
    padding-top: 17px;
}

ul.user-location li {
    display: grid;
    grid-template-columns: 2fr 4fr;
    margin-top: 15px;
}

ul.user-location li p {
    margin: 0;
}

.team-right-info ul li a {
    font-weight: 600;
}

.team-right-info ul li strong {
    font-weight: 800;
    color: var(--color-heading);
}

.team-right-info ul li a {
    font-weight: 600;
    opacity: 0.9;
}

.team-right-info ul li a:hover {
    color: var(--color-primary);
}

.team-right-info > span {
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 800;
    display: block;
    margin-bottom: 20px;
}

.team-right-info .social {
    display: flex;
    margin-top: 25px;
    font-weight: 800;
    align-items: center;
}

.team-right-info .social h4 {
    font-weight: 800;
    margin-bottom: 0;
    margin-right: 25px;
}

.team-right-info .social ul {
    margin: 0;
    padding: 0;
    border: none;
}

.team-right-info .social .share-link {
    position: relative;
    z-index: 1;
    margin-left: 15px;
    padding-right: 20px;
}

.team-right-info .social .share-link > i {
    display: inline-block;
    height: 45px;
    background: var(--dark);
    line-height: 45px;
    width: 45px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    color: var(--white);
}

.team-right-info .social ul {
    display: flex;
    list-style-type: none;
    grid-gap: 10px;
    padding: 0;
    margin: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease-in-out 0s;
}

.team-right-info .social .share-link:hover ul {
    left: 58px;
    opacity: 1;
    pointer-events: auto;
}

.team-right-info .social ul li {
    display: inline-block;
    margin: 0;
}

.team-right-info .social ul li a {
    display: inline-block;
    height: 45px;
    width: 45px;
    line-height: 47px;
    background: var(--color-primary);
    text-align: center;
    border-radius: 50%;
    color: var(--white);
}

.skill-items .progress-box {
    margin-bottom: 35px;
}

.skill-items .progress-box:last-child {
    margin-bottom: 0;
}

.skill-items .progress-box h5 {
    font-weight: 700;
    margin-bottom: 5px;
    text-align: left;
    position: relative;
    z-index: 1;
    font-size: 16px;
}

.skill-items .progress-box h5 span {
    position: absolute;
    font-size: 50px;
    line-height: 1;
    top: -21px;
    left: 0;
    z-index: -1;
    opacity: 0.05;
    font-weight: 800;
}

.skill-items .skill-items {
    margin-top: 40px;
}

.skill-items .progress-box .progress {
    background: transparent;
    border-bottom: 2px solid #cfc8c8;
    box-shadow: inherit;
    border-radius: inherit;
    overflow: inherit;
}

.skill-items .progress-box .progress .progress-bar {
    height: 6px;
    background: var(--bg-gradient);
    top: 12px;
    position: relative;
    overflow: inherit;
    border-radius: 30px;
}

.skill-items .progress-box .progress .progress-bar span {
    position: absolute;
    right: 0;
    top: -40px;
    display: block;
    font-size: 16px;
    color: var(--color-heading);
    font-weight: 700;
}

.qualification-item {
    display: inline-block;
    position: relative;
    padding: 50px;
    border-radius: 5px;
    z-index: 1;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 3px 40px 0 rgb(0 0 0 / 10%);
}

.qualification-grid {
    display: grid;
    grid-template-columns: 0.3fr 1fr 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    align-items: center;
}

.qualification-item i {
    display: inline-block;
    font-size: 70px;
    margin-bottom: 15px;
    color: var(--color-heading);
    line-height: 1;
}

.qualification-item h4 {
    margin: 0;
    font-weight: 800;
}

.team-right-info {
    padding: 90px 100px;
    padding-left: 70px;
    z-index: 1;
}

.team-experience .fun-fact .counter {
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px var(--white);
    font-size: 70px;
    letter-spacing: -2px;
}

.team-right-info p {
    opacity: 0.9;
}

.team-content-top {
    position: relative;
    z-index: 1;
    margin-top: 50px;
}

.team-content-top::after {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    height: 100%;
    width: 100%;
    border: 2px solid;
    z-index: -1;
}

.team-content-top .thumb img {
    padding: 50px;
    position: relative;
    margin-top: -100px;
    padding-right: 0;
}

.team-qualifcations h2 {
    font-weight: 800;
    margin-bottom: 30px;
    font-size: 30px;
}

.team-qualifcations p:last-child {
    margin-bottom: 0;
}

.qualification-grid h2 {
    writing-mode: vertical-lr;
    text-transform: uppercase;
    margin: 0;
    color: #b9bdc6;
}

/* ============================================================== 
    # Why Choose Us
=================================================================== */
.choose-us-style-one .bottom-info {
    display: flex;
    align-items: center;
    justify-content: right;
}

ul.list-item li {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #c7c8c9;
    font-size: 20px;
    font-weight: 800;
    align-items: center;
    color: var(--color-heading);
}

.bg-dark ul.list-item li {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 700;
    color: #cccccc;
}

ul.list-item li strong {
    margin-left: 120px;
    font-size: 36px;
    -webkit-text-stroke: 1px #9b9b9b;
    color: transparent;
    font-weight: 900;
}

ul.list-item {
    margin-top: 50px;
}

ul.list-item li:first-child {
    margin-top: 0;
    padding-top: 0;
    border: none;
}

.choose-us-style-one-thumb {
    position: relative;
}

.choose-us-style-one-thumb .video-play-button {
    position: absolute;
    right: -45px;
    bottom: 150px;
    overflow: inherit;
    background: transparent;
    z-index: 1;
}

.choose-us-style-one-thumb .video-play-button i {
    background: var(--bg-gradient);
}

.video-play-button i::before {
    left: 3px;
    position: relative;
}

/* ============================================================== 
    # Testimonials
=================================================================== */
.testimonial-style-one {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-column-gap: 60px;
    align-items: center;
}

.testimonial-style-one .rating {
    color: #ffaa17;
    display: block;
    margin-bottom: 20px;
}

.testimonial-style-one .provider .thumb {
    height: 180px;
    width: 180px;
    margin: auto auto 30px;
    text-align: center;
    border-radius: 50%;
    position: relative;
}

.testimonial-style-one .provider .thumb > img {
    border-radius: 50%;
    display: block;
}
.testimonial-style-one .provider h4 {
    font-weight: 800;
    margin-bottom: 7px;
}

.testimonial-style-one-area .heading-left {
    padding-bottom: 50px;
    margin: 0;
}

.testimonial-style-one .content p {
    font-size: 14pt;
    line-height: 1.6;
    margin-bottom: 0;
    margin-top: -5px;
}

.testimonial-style-one .content {
    padding: 100px 80px;
    background: #fff;
    border-radius: 60px 0 60px 0;
}

.footer-box h4 {
    font-size: 10pt;
    font-weight: 800;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: #a1a1a1;
}
.footer-box ul {
    margin-bottom: 30px;
}
.footer-social {
    margin-bottom: 30px;
}

.bg-dark .testimonial-style-one .content {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-style-one .provider {
    text-align: center;
}

.testimonial-style-one .provider .thumb .quote {
    height: 60px;
    width: 60px;
    background: var(--bg-gradient);
    text-align: center;
    line-height: 64px;
    overflow: hidden;
    border-radius: 50%;
    position: absolute;
    right: 0;
    bottom: 0;
}

.testimonial-style-one .provider .thumb .quote i {
    color: #fff;
    font-size: 24pt;
}

.testimonial-one-swiper-nav {
    position: absolute;
    right: 0;
    top: -110px;
    display: flex;
    width: 200px;
    justify-content: space-between;
    align-items: center;
}

.testimonial-one-swiper-nav > div {
    height: 40px;
    width: 40px;
    z-index: 9;
    position: relative;
    border-radius: 50%;
}

.testimonial-one-swiper-nav > div::after {
    position: absolute;
    top: -24px;
    content: '';
    height: 100%;
    width: 100%;
    font-family: 'Font Awesome 5 Pro';
    text-align: center;
    color: var(--color-heading);
    font-size: 50px;
    line-height: inherit;
    font-weight: 100;
}

.bg-dark .testimonial-one-swiper-nav > div::after {
    color: var(--white);
}

/* .testimonial-one-swiper-nav .testimonial-one-button-next::after {
	content: "\f105";
}

.testimonial-one-swiper-nav .testimonial-one-button-prev::after {
	content: "\f104";
} */

.testimonial-one-style-one-carousel {
    padding-top: 120px;
    margin-top: -120px;
}

.testimonial-one-swiper-nav .testimonial-one-pagination {
    background: transparent;
    position: absolute;
    line-height: 40px;
    color: var(--color-heading);
    font-size: 36px;
    width: auto;
    font-weight: 800;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}

.bg-dark .testimonial-one-swiper-nav .testimonial-one-pagination {
    color: var(--white);
}

.testimonial-one-carousel-box {
    position: relative;
    margin-bottom: 120px;
}

/* ============================================================== 
    # Slide Multi Section
=================================================================== */

.thecontainer {
    width: 400%;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    position: relative;
    z-index: 7;
}

.panel {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.panel .title {
    margin-bottom: 0;
    font-family: 'Jost', 'san-serif';
    font-weight: 600;
}

.multi-section {
    position: relative;
    z-index: 1;
}

.bg-shape-top {
    position: absolute;
    right: 5%;
    top: 0;
    max-width: 10%;
    z-index: -1;
}

.achivement-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
}

.achivement-item {
    padding: 50px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.achivement-item:nth-child(2) {
    background: rgba(255, 255, 255, 0.1);
}

.achivement-grid:nth-child(2) .achivement-item {
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
}

.achivement-grid {
    display: grid;
    grid-row-gap: 30px;
}

.achivement-item i {
    display: inline-block;
    font-size: 60px;
    margin-bottom: 25px;
}

.achivement-item h4 {
    font-weight: 600;
    margin: 0;
}
.achivement-item h2 {
    font-size: 28pt;
    font-weight: 600;
    margin-bottom: 5px;
}

.achivement-skill-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 10%;
    grid-row-gap: 60px;
    text-align: left;
    margin-top: 60px;
    padding-bottom: 60px;
}

.achivement-skill-items .progress-box .progress {
    height: 3px;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.4);
    overflow: inherit;
}

.achivement-skill-items .progress-box .progress .progress-bar {
    background: var(--white);
    position: relative;
    overflow: inherit;
}

.achivement-skill-items .progress-box .progress .progress-bar span {
    position: absolute;
    right: 0;
    bottom: -80px;
    font-size: 40px;
    font-weight: 900;
    -webkit-text-stroke: 1px var(--white);
    color: transparent;
}

.achivement-skill-items .progress-box h5 {
    font-weight: 900;
    margin-bottom: 25px;
}

.achivement-skill-items .progress-box .progress .progress-bar::after {
    position: absolute;
    right: 0;
    top: -9px;
    content: '';
    height: 20px;
    width: 20px;
    background: var(--color-primary);
    border: 3px solid;
    border-radius: 50%;
}

.contact-panel-bg {
    position: absolute;
    right: 40px;
    top: 0;
    height: 100%;
    width: 50%;
    background-size: cover;
    background-position: center center;
    z-index: 0;
}

/* ============================================================== 
    # Footer
=================================================================== */
.footer-box {
    overflow: hidden;
    margin: 0 auto;
}

.bg-dark .footer-box {
    border: 1px solid rgba(255, 255, 255, 0.3);
}

footer {
    width: 92%;
    margin: auto;
    padding-bottom: 4%;
}

footer .f-item.about {
    position: relative;
    z-index: 1;
}

footer .f-item.about::after {
    position: absolute;
    right: 0;
    top: -100%;
    content: '';
    height: 400%;
    width: 300%;
    background: #f6f6f6;
    z-index: -1;
    border-right: 1px solid #dddddd;
}

.bg-dark footer .f-item.about::after {
    position: absolute;
    right: 0;
    top: -100%;
    content: '';
    height: 400%;
    width: 300%;
    background: var(--dark-secondary);
    z-index: -1;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-bottom {
    border-top: 1px solid #dddddd;
    margin: 0;
    padding: 15px;
    background: transparent !important;
}

.bg-dark .footer-bottom {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-bottom p {
    margin: 0;
    color: var(--color-paragraph);
}

.bg-dark .footer-bottom p {
    color: #cccccc;
}

footer img.logo {
    height: 60px;
    margin-bottom: 30px;
}

footer .widget-title {
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 800;
}

.bg-dark footer .widget-title {
    color: var(--white);
}

.bg-dark footer p,
.bg-dark footer {
    color: #cccccc;
}

.footer-social ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-social ul li {
    display: inline-block;
}

.footer-social ul li a {
    display: inline-block;
    height: 45px;
    width: 45px;
    text-align: center;
    line-height: 46px;
    border-radius: 50%;
    margin-right: 10px;
    color: var(--white);
    background: var(--dark);
}

.bg-dark .footer-social ul li a {
    background: #403e44;
}

.bg-dark .footer-social ul li a {
    color: var(--white);
}

.footer-social ul li a:hover {
    background: var(--color-primary);
}

footer .f-item.link li {
    margin-top: 10px;
    font-size: 15px;
}

footer .f-item.link li a {
    display: inline-block;
    font-weight: 500;
    color: var(--color-paragraph);
}

footer .f-item.link li a:hover {
    color: var(--color-primary);
}

.bg-dark footer .f-item.link li a {
    color: #d2d2d4;
}

footer .f-item.link li a:hover {
    color: var(--color-primary);
}

.bg-dark footer .f-item.link li a:hover {
    color: var(--white);
}

.f-item.contact li {
    display: flex;
    margin-top: 20px;
}

.f-item.contact li strong {
    display: block;
    text-transform: uppercase;
    color: var(--color-heading);
    font-size: 14px;
    margin-bottom: 3px;
}

.bg-dark .f-item.contact li strong {
    color: var(--white);
}

.f-item.contact li i {
    display: inline-block;
    height: 45px;
    width: 45px;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    margin-right: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-weight: 300;
    font-size: 18px;
}

.bg-dark .f-item.contact li {
    color: #dedede;
}

.f-item.contact li p {
    margin: 0;
}

.bg-dark .f-item.contact li p {
    color: #dedede;
}

.f-item.contact li a {
    font-weight: 500;
}

.bg-dark .f-item.contact li a {
    color: #dedede;
}

.bg-dark .f-item.contact li a:hover {
    color: var(--white);
}

.f-item.newsletter form {
    background: var(--white);
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    margin-top: 20px;
    border: 2px solid;
}

.bg-dark .f-item.newsletter form {
    border: none;
}

.f-item.newsletter form input {
    box-shadow: inherit;
    border: none;
    min-height: 60px;
    padding-left: 25px;
}

.f-item.newsletter form button {
    position: absolute;
    right: 5px;
    top: 5px;
    height: 50px;
    width: 50px;
    padding: 0;
    border-radius: 50%;
}

.f-item.newsletter form button i {
    margin: 0;
    margin-left: 2px;
    transform: rotate(-45deg);
}

/* ============================================================== 
    # Accordion Portfolio 
=================================================================== */

.accrdion-portfolio-area,
.accrdion-portfolio-area div {
    height: 90%;
    min-height: 90vh;
}

.accordion-portfolio-lists li {
    overflow: hidden;
    border-bottom: none;
    margin-right: 5px;
}

.accordion-portfolio-lists {
    overflow: hidden;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
    min-height: auto;
    position: relative;
}

.accordion-portfolio-lists {
    height: 100%;
    padding-top: 10px;
    padding-bottom: 20px;
    width: 98%;
}

.accordion-portfolio-lists li {
    cursor: grab;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin: 0;
    padding: 1.6em;
    list-style: none;
    width: 20% !important;
    height: inherit;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
    /* border-radius: 30px; */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    animation: float 10s infinite ease-in-out;
}

@keyframes float {
    0% {
        background-position: 50% 50%;
    }
    50% {
        background-position: 53% 53%;
    }
    100% {
        background-position: 50% 50%;
    }
}

.accordion-portfolio-lists li::after {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    height: 100%;
    width: 100%;
    background: var(--bg-gradient);
    z-index: -1;
    opacity: 0.75;
    transition: all 0.35s ease-in-out;
}
/* 
.accordion-portfolio-lists li:nth-child(2)::after {
	background: #333;
}

.accordion-portfolio-lists li:nth-child(3)::after {
	background: #333;
}

.accordion-portfolio-lists li:nth-child(4)::after {
	background: #fff;
} */

.accordion-portfolio-lists li.out::after {
    opacity: 0;
}

.accordion-portfolio-lists li .accordion-overlay.big-section {
    width: 100%;
}

.accordion-portfolio-lists li.out {
    width: 60% !important;
    animation: floatUpDown 10s infinite ease-in-out;
    background-size: 100%;
}

.accrdion-portfolio-area .accordion-overlay {
    display: inline-block;
    height: auto;
    min-height: auto;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.accordion-portfolio-lists li h3 {
    position: absolute;
    left: 50%;
    margin: 0 !important;
    font-weight: 700;
    padding: 0;
    transform: translateX(-50%);
    bottom: 50px;
    writing-mode: vertical-lr;
    transition: all 0.35s ease-in-out;
    font-size: 30px;
    font-family: 'Jost', 'sans-serif';
}

@keyframes floatUpDown {
    0% {
        background-position: center 0;
    }
    50% {
        background-position: center -50px;
    }
    100% {
        background-position: center 0;
    }
}

.accordion-portfolio-lists li.out h3 {
    writing-mode: inherit;
    left: auto;
    transform: inherit;
    right: 50px;
    display: none;
    border-radius: 10px;
}

.accordion-portfolio-lists li > span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 900;
    font-size: 80px;
    top: 0px;
    -webkit-text-stroke: 1px var(--white);
    color: transparent;
    transition: all 0.35s ease-in-out;
}

.accordion-portfolio-lists li.out > span {
    bottom: -200px;
    visibility: visible;
    opacity: 0;
    transition-duration: 0.1s;
}

.accordion-portfolio-lists li::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    height: 30%;
    width: 100%;
    background: rgba(255, 255, 255, 0)
        linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0) 10%,
            rgba(255, 255, 255, 1) 70%
        )
        repeat scroll 0 0;
    z-index: -1;
    transition: all 0.35s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.accordion-portfolio-lists li.out::before {
    height: 80%;
    visibility: visible;
    opacity: 1;
}

.accrdion-portfolio-area .accordion-overlay span {
    display: inline-block;
    border-radius: 30px;
    margin-bottom: 10px;
    /* text-transform: uppercase; */
    font-size: 14px;
    font-weight: 600;
    position: relative;
    z-index: 1;
    padding-left: 115px;
    transition: all 0.35s ease-in-out;
    transform: translateX(100px);
    opacity: 0;
    visibility: hidden;
}

.accrdion-portfolio-area .out .accordion-overlay span {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    transition-delay: 0.15s;
    color: #000;

}

.accrdion-portfolio-area .accordion-overlay span::after {
    position: absolute;
    left: 0;
    top: 50%;
    content: '';
    height: 1px;
    width: 100px;
    background: var(--main);

}

.accrdion-portfolio-area .accordion-overlay h2 {
    margin: 0;
    font-weight: 900;
    transition: all 0.35s ease-in-out;
    transform: translateX(-100px);
    opacity: 0;
    visibility: hidden;
}

.accrdion-portfolio-area .out .accordion-overlay h2 {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    transition-delay: 0.15s;
}

.accrdion-portfolio-area .accordion-overlay p {
    z-index: 1;
    position: relative;
    color: var(--dark);
    margin: 0;
    margin-top: 15px;
    transition: all 0.35s ease-in-out;
    transform: translateX(50px);
    opacity: 0;
    visibility: hidden;
}

.accrdion-portfolio-area .out .accordion-overlay p {
    opacity: 1;
    font-size: 14pt;
    visibility: visible;
    transform: translateX(0);
    transition-delay: 0.15s;
}

.accrdion-portfolio-area .accordion-overlay > a {
    display: inline-block;
    height: 70px;
    width: 70px;
    text-align: center;
    line-height: 68px;
    background: var(--main);
    border-radius: 50%;
    margin-top: 25px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(25px);
    font-size: 30px;
    border: 2px solid var(--main);
}

.accrdion-portfolio-area .accordion-overlay a i {
    transform: rotate(-45deg);
    -webkit-text-stroke: 1px var(--white);
    color: transparent;
    text-shadow: none;
}

.accrdion-portfolio-area .out .accordion-overlay a {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0.3s;
    font-family: 'Jost', 'sans-serif';
    color: var(--main);
    /* text-shadow: 1px 1px 1px #fff, 1px -1px 1px #fff, -1px 1px 1px #fff, -1px -1px 1px #fff; */
}

/* ============================================================== 
    # Accordion Portfolio Single
=================================================================== */

.popup-single-modal .modal-content {
    position: relative;
}

.bg-dark .popup-single-modal .modal-content {
    background: var(--dark-secondary);
}

.popup-single-modal .modal-content .modal-header {
    position: absolute;
    border: none;
    margin: 0;
    padding: 0;
    width: auto;
    z-index: 9;
    right: 45px;
    top: 45px;
}

.popup-single-modal .modal-content .modal-header button.btn-close {
    height: 16px;
    width: 16px;
    line-height: 30px;
    background: var(--white);
    opacity: 1;
    color: var(--white);
    border-radius: 50%;
    position: relative;
    font-weight: 500;
    overflow: inherit;
}

.popup-single-modal .modal-content .modal-header button.btn-close::after {
    position: absolute;
    left: 50%;
    top: 50%;
    content: '\f00d';
    font-family: 'Font Awesome 5 Pro';
    transform: translate(-50%, -50%);
    height: auto;
    width: auto;
    z-index: 1;
    background: transparent;
    color: var(--color-heading);
}

.popup-single-modal .modal-content .modal-header button.btn-close::before {
    position: absolute;
    left: -5px;
    top: -5px;
    content: '';
    height: 42px;
    width: 42px;
    background: var(--white);
    z-index: -1;
    border-radius: 50%;
    opacity: 0.5;
}

.popup-single-modal .modal-dialog-scrollable .modal-body {
    padding: 50px;
    border-radius: inherit;
}

.popup-single-modal
    .modal-dialog-scrollable
    .modal-body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5;
}

.popup-single-modal .modal-dialog-scrollable .modal-body::-webkit-scrollbar {
    width: 6px;
    background-color: #f5f5f5;
}

.popup-single-modal
    .modal-dialog-scrollable
    .modal-body::-webkit-scrollbar-thumb {
    background-color: var(--dark);
}

.bg-dark
    .popup-single-modal
    .modal-dialog-scrollable
    .modal-body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px var(--white);
    background-color: #f5f5f5;
}

.bg-dark
    .popup-single-modal
    .modal-dialog-scrollable
    .modal-body::-webkit-scrollbar {
    width: 6px;
    background-color: #f5f5f5;
}

.bg-dark
    .popup-single-modal
    .modal-dialog-scrollable
    .modal-body::-webkit-scrollbar-thumb {
    background-color: var(--color-primary);
}

@media (min-width: 1400px) {
    .popup-single-modal .modal-xl {
        max-width: 1320px;
    }
}

ul.gallery-project-basic-info {
    margin: 0;
    padding: 0;
    list-style: none;
    border-left: 1px solid #dddddd;
    padding-left: 50px;
    margin-left: 50px;
}

.bg-dark ul.gallery-project-basic-info {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

ul.gallery-project-basic-info li {
    margin-top: 20px;
    font-weight: 700;
    color: var(--color-heading);
    font-size: 18px;
}

.bg-dark ul.gallery-project-basic-info li {
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    margin-top: 25px;
}

ul.gallery-project-basic-info li:first-child {
    margin-top: 0;
}

ul.gallery-project-basic-info li span {
    display: block;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    color: var(--color-paragraph);
}

.bg-dark ul.gallery-project-basic-info li span {
    color: #cccccc;
    font-weight: 400;
}

.project-details h1,
.project-details h2,
.project-details h3,
.project-details h4,
.project-details h5,
.project-details h6 {
    font-weight: 800;
    margin-bottom: 20px;
}

.bg-dark .project-details h1,
.bg-dark .project-details h2,
.bg-dark .project-details h3,
.bg-dark .project-details h4,
.bg-dark .project-details h5,
.bg-dark .project-details h6 {
    font-weight: 700;
}

.thumb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
}

ul.list-disc {
    list-style: disc;
    margin-left: 20px;
    padding: 0;
}

ul.list-disc li {
    list-style: disc;
    margin-top: 7px;
}

.bg-dark ul.list-disc li {
    color: #cccccc;
}

/* ============================================================== 
    # Home Blog 
=================================================================== */

/* Home Blog */

.home-blog-style-one {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 30px;
    position: relative;
    z-index: 1;
    padding-left: 0;
}

.home-blog-style-one .info {
    position: relative;
    z-index: 1;
    background: var(--white);
    padding: 0;
    border-radius: 10px;
}

.home-blog-style-one img {
    border-radius: 10px !important;
}

.home-blog-style-one::after {
    position: absolute;
    right: 0;
    left: 30px;
    top: 0;
    content: '';
    height: 100%;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    z-index: -1;
}

.home-blog-style-one h4 {
    font-size: 24px;
}

.bg-dark .home-blog-style-one .info {
    background: transparent;
}

.bg-dark .home-blog-style-one::after {
    border-color: rgba(255, 255, 255, 0.15);
}

.bg-dark .home-blog-style-one .info li,
.bg-dark .home-blog-style-one .info a {
    color: #cccccc;
}

.bg-dark .blog-area .meta li::after {
    background: #cccccc;
}

.bg-dark .blog-area .post-title a {
    color: var(--white);
}

.home-blog-style-one .thumb {
    margin-right: 30px;
}

.home-blog-two .thumb img {
    border-radius: 10px;
}

.home-blog-two .info .content {
    background: var(--white);
    padding: 45px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 3px 40px 0 rgb(0 0 0 / 10%);
}

.bg-dark .home-blog-two .info .content {
    background: #333232;
    box-shadow: none;
}

.home-blog-two .info {
    position: relative;
    padding-left: 150px;
    top: -80px;
    margin-bottom: -100px;
    padding-right: 30px;
}

.bg-dark .blog-area .home-blog-two .meta li,
.bg-dark .blog-area .home-blog-two .meta li a {
    color: #cccccc;
}

.bg-dark .blog-area .home-blog-two .meta li a:hover {
    color: var(--white);
}

.bg-dark .blog-area .home-blog-two a.button-regular {
    color: #cccccc;
}

.bg-dark .blog-area .home-blog-two a.button-regular:hover {
    color: var(--white);
}

.home-blog-two .thumb .date {
    position: absolute;
    left: 30px;
    bottom: -25px;
    background: var(--bg-gradient);
    color: var(--white);
    font-size: 50px;
    text-align: center;
    line-height: 1;
}

.home-blog-two .thumb .date {
    display: block;
    font-size: 36px;
    padding: 20px 30px;
    text-align: center;
    font-weight: 900;
    line-height: 1.2;
    padding-bottom: 25px;
    border-radius: 10px;
}

.home-blog-two .thumb .date strong {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
}

@media (min-width: 1024px) {
    .blog-style-two-area .row {
        --bs-gutter-x: 60px;
    }
}

/* ============================================================== 
    # Contact CSS
=================================================================== */
ul.contact-address {
    padding: 90px 60px;
    border-radius: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right bottom;
}

ul.contact-address h4 {
    font-weight: 700;
    margin-bottom: 8px;
}

ul.contact-address > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    margin-bottom: 25px;
    padding-bottom: 25px;
}

ul.contact-address li:last-child {
    margin: 0;
    padding: 0;
    border: none;
}

ul.contact-address li p {
    margin: 0;
}

ul.contact-address li a {
    font-weight: 500;
    color: #cccccc;
}

ul.contact-address li a:hover {
    color: var(--white);
}

ul.contact-address ul.social-link li {
    display: inline-block;
}

ul.contact-address ul.social-link li a {
    display: inline-block;
    height: 50px;
    width: 50px;
    line-height: 54px;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    margin-right: 12px;
    margin-top: 10px;
}

ul.contact-address ul.social-link li a:hover {
    background: var(--color-primary);
    color: var(--white);
}

.contact-form-style-one .form-group {
    margin-bottom: 15px;
}

.contact-form-style-one input,
.contact-form-style-one textarea {
    min-height: 60px;
    padding: 10px 30px;
    border-radius: 30px;
}

.contact-form-style-one textarea {
    padding-top: 20px;
    min-height: 220px;
}

ul.contact-address li a.phone-link {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    text-decoration: underline;
}

ul.contact-address > li:first-child {
    border: none;
    margin-bottom: 0;
}

.contact-form-style-one button {
    border-radius: 30px;
    margin-top: 13px;
}

/* ============================================================== 
    # 404 page
=================================================================== */

.error-page-area {
    position: relative;
    z-index: 1;
}

.error-page-area .shape-left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: 20%;
    background-position: left !important;
    background-repeat: no-repeat !important;
    z-index: -1;
    opacity: 0.3;
    background-size: contain !important;
}

.error-page-area .shape-right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: 20%;
    background-position: right !important;
    background-repeat: no-repeat !important;
    z-index: -1;
    opacity: 0.3;
    background-size: contain !important;
}

.error-box {
    padding-top: 60px;
}

.error-box h1 {
    font-size: 150px;
    line-height: 110px;
    font-weight: 800;
    margin-bottom: 40px;
    text-shadow: 3px 3px #c0c0c0;
}

.error-box h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

.error-box p {
    padding: 0 10%;
}

/* ============================================================== 
    # Responsive CSS
=================================================================== */

/* Desktop Mini */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .experience-box {
        max-width: 50%;
    }

    .pf-item-info .content-info h2 {
        font-size: 30px;
    }

    .pf-item-info {
        padding-left: 0;
    }

    .pf-item-info .content-info h2 {
        font-size: 30px;
    }

    .pf-item-info {
        padding-left: 0;
    }

    .fun-fact-circle-lists .fun-fact:nth-child(2)::after {
        height: 300px;
        width: 300px;
    }

    .fun-fact-circle-lists .fun-fact:last-child::after {
        height: 350px;
        width: 350px;
    }

    .fun-fact-circle-lists .fun-fact::after {
        height: 270px;
        width: 270px;
    }

    .panel .align-center {
        align-items: center;
    }

    .testimonial-style-one {
        grid-template-columns: 1fr 3fr;
        grid-column-gap: 15px;
    }

    .service-hover-content {
        grid-template-columns: 0.5fr 1.6fr 2fr 1.5fr;
        grid-column-gap: 50px;
    }

    .award-area .align-center {
        align-items: center;
    }

    .award-area .align-center {
        align-items: center;
    }

    .qualification-grid {
        display: block;
    }

    .qualification-grid h2 {
        writing-mode: inherit;
        color: var(--color-heading);
        margin-bottom: 30px;
    }

    .qualification-item {
        margin-right: 30px;
        width: 45%;
    }

    .team-qualifcations .skill-items {
        padding-left: 0;
        margin-top: 50px;
    }

    footer {
        width: 96%;
        padding-bottom: 2%;
    }

    footer .f-item.about {
        padding-right: 0;
    }
}

/* Tablet To Mobile */
@media (max-width: 991px) {
    /* Accordion Portfolio */
    .accordion-portfolio-lists {
        padding: 0px 15px;
        display: block;
        height: auto;
        width: 100%;
    }

    .accrdion-portfolio-area,
    .accrdion-portfolio-area div {
        height: inherit;
        min-height: inherit;
    }

    .accordion-portfolio-lists li {
        width: 100%;
        height: 90px;
        display: block;
        border: none;
        margin-top: 15px;
        border-radius: 10px;
        padding: 35px;
    }

    .accordion-portfolio-lists li h3 {
        writing-mode: inherit;
        padding: 15px;
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
        right: 15px;
        left: 100px;
        text-align: right;
    }

    .accordion-portfolio-lists li > span {
        left: 30px;
        top: 50%;
        transform: translate(0, -50%);
        font-size: 60px;
        bottom: auto;
    }

    .accordion-portfolio-lists li.out {
        width: 100%;
        padding-top: 200px;
        height: auto;
    }

    .accordion-portfolio-lists li.out h3 {
        display: none;
    }

    .accrdion-portfolio-area .out .accordion-overlay h2 {
        font-size: 24px;
    }

    .accordion-portfolio-lists li.out::before {
        height: 100%;
    }

    .accordion-portfolio-lists li::after {
        opacity: 0.8;
    }

    .accrdion-portfolio-area .out .accordion-overlay p {
        padding: 0;
    }

    .bg-dark ul.gallery-project-basic-info {
        border: none;
        background: var(--dark);
    }

    /* Error Box */
    .error-box {
        padding-top: 0;
    }
}

/* Tablet */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    /* Multi Section */

    .pin-spacer {
        width: auto !important;
        height: auto !important;
        padding: 0 !important;
    }

    .thecontainer {
        max-width: inherit !important;
        height: auto !important;
        width: auto !important;
        display: block !important;
        position: inherit !important;
        transform: none !important;
    }

    .panel.overflow-hidden {
        display: block;
        height: auto;
        min-height: auto;
        transform: none !important;
        padding: 120px 0;
        text-align: center;
    }

    .panel .site-title {
        margin-bottom: 30px;
    }

    .achivement-skill-items {
        grid-template-columns: 1fr;
        margin-top: 20px;
        grid-row-gap: 45px;
        padding-bottom: 10px;
    }

    .achivement-skill-items .progress-box .progress .progress-bar span {
        bottom: auto;
        font-size: 20px;
        top: -54px;
        -webkit-text-stroke: inherit;
        color: var(--white);
        font-weight: 700;
    }

    .achivement-skill-items .progress-box h5 {
        display: inline-block;
    }

    .contact-panel-bg {
        display: none;
    }

    .panel.contact-panel {
        text-align: center;
    }

    /* Accordion Portfolio */
    .accordion-portfolio-lists li.out {
        padding-top: 280px;
    }

    .accrdion-portfolio-area .out .accordion-overlay h2 {
        font-size: 24px;
    }

    /* Banner Style One */

    .banner-style-one .curve-text {
        margin-top: 40px;
    }

    .banner-one-item h4 {
        margin-bottom: 30px;
    }

    /* Banner Style Three */
    .banner-style-three {
        padding: 120px 0;
        text-align: center;
    }

    .banner-style-three .fun-fact .counter {
        margin-top: 0;
    }

    .banner-style-three .fun-fact .counter {
        justify-content: center;
    }

    .banner-style-three .content::after {
        height: 300px;
        width: 300px;
        left: 50%;
        transform: translate(-50%, -50%);
        display: none;
    }

    .banner-style-three .thumb img {
        width: 100%;
        max-width: 100%;
    }

    .banner-style-three .content {
        margin-top: 30px;
    }

    /* Banner Zoom */

    .banner-one-item h4 {
        margin-bottom: 30px;
    }

    .experience-box {
        position: inherit;
        background: var(--bg-gradient);
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 50px;
    }

    .banner-animation-zoom {
        height: auto;
        padding-top: 450px;
    }

    .banner-animation-zoom .animation-zoom-banner {
        height: 450px;
    }

    .banner-animation-zoom .row > div {
        padding: 0;
    }

    .banner-one-item h4 {
        margin-bottom: 30px;
    }

    .experience-box {
        position: inherit;
        background: transparent;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 120px 0;
    }

    .experience-box::after {
        left: -100%;
    }

    .experience-box::before {
        left: -50%;
        width: 200%;
        background-size: cover;
    }

    /* About */

    .about-area.default-padding-bottom.relative {
        overflow: hidden;
    }

    .portfolio-style-one-area.default-padding.bg-gray {
        overflow: hidden;
    }

    .about-style-one-thumb {
        margin-bottom: 50px;
    }

    /* About */
    .about-style-one-thumb .fun-fact {
        display: none;
    }

    .about-style-one-thumb {
        padding-bottom: 30px;
    }

    .about-style-two-thumb {
        width: 100%;
        height: 450px;
        position: relative;
        margin-bottom: 50px;
    }

    .about-style-two-info {
        padding: 0;
    }

    .experience-style-one {
        display: none;
    }

    /* Clients */
    .client-items {
        text-align: center;
    }

    .client-item-box {
        margin-top: 50px;
    }

    /* Team Single */
    .team-content-top .thumb img {
        padding: 0;
        margin: 0;
    }

    .team-content-top {
        margin: 0;
    }

    .team-content-top::after {
        display: none;
    }

    .team-right-info {
        padding: 0;
        margin-top: 50px;
    }

    .award-area .site-title {
        margin-bottom: 60px;
    }

    /* Pricing */
    .pricing-style-one:first-child {
        margin-top: 50px;
    }

    /* Testimonial */
    .testimonial-style-one {
        display: block;
    }

    .testimonial-style-one .provider .thumb {
        margin: auto auto 30px;
    }

    .testimonial-style-one {
        padding: 50px 37px;
        text-align: center;
        border-bottom: 1px solid #dddddd;
    }

    .bg-dark .testimonial-style-one {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .testimonial-style-one .content {
        border: none;
        padding: 0;
        margin-top: 30px;
        padding-top: 30px;
    }

    .bg-dark .testimonial-style-one .content {
        border-left: none;
    }

    .testimonial-style-one .content p {
        font-size: 20px;
        line-height: 1.8;
    }

    .testimonial-style-one-area {
        padding-bottom: 120px;
    }

    .testimonial-one-swiper-nav {
        position: inherit;
        top: 0;
        width: auto;
        max-width: 300px;
        margin-top: 30px;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }
    /* Fun Factor */

    .fun-fact-circle-lists {
        grid-template-columns: 1fr 1fr;
        margin: 0;
        grid-row-gap: 50px;
    }

    .fun-fact-circle-lists .fun-fact {
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        margin: 30px auto auto;
    }

    .fun-fact-circle-lists .fun-fact::after {
        height: 100% !important;
        width: 100% !important;
    }

    .fun-fact-circle-lists .fun-fact {
        height: 300px !important;
        width: 300px !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 0;
        visibility: visible !important;
        opacity: 1 !important;
        animation: none !important;
    }

    .fun-fact-circle-lists .fun-fact:first-child {
        margin-top: 0;
    }

    .fun-fact-circle-lists .fun-fact .counter {
        margin: 0;
    }

    /* Services */

    .cteative-service-item {
        padding: 60px 30px;
        border: 1px solid #dddddd;
        box-shadow: none;
    }

    .bg-dark .cteative-service-item {
        border: none;
    }

    .services-item-one-items .services-carousel {
        top: 0;
        margin: 0;
        padding: 0;
    }

    .bg-static {
        display: none;
    }

    /* Service Style Two */
    .service-hover-wrapper {
        display: none;
    }

    .service-hover-content {
        grid-template-columns: 1fr;
        grid-row-gap: 30px;
    }

    .service-hover-content .arrow {
        text-align: left;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .service-hover-content .arrow .btn-animation {
        left: 0;
    }

    /* Why Choose Us */
    .choose-us-style-one-thumb .video-play-button {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    ul.list-item {
        margin-top: 0;
    }

    .choose-us-style-one-thumb {
        margin-bottom: 50px;
    }

    .choose-us-style-one .bottom-info {
        display: block;
        margin-top: 10px;
    }

    /* Brand */
    .brand-conetnt h2 {
        font-size: 60px;
    }

    .brand-conetnt .item::after {
        margin-top: 5px !important;
    }

    /* Portfolio */
    .item-center:nth-child(2n) .portfolio-style-one {
        padding-right: 0;
        padding-left: 0;
    }

    .item-center .portfolio-style-one {
        padding-right: 0;
    }

    /* Project Single */
    ul.gallery-project-basic-info {
        border: none;
        margin: 0;
        background: var(--bg-gray);
        padding: 50px;
        margin-bottom: 30px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 50px;
        grid-row-gap: 30px;
    }

    ul.gallery-project-basic-info li {
        margin: 0 !important;
    }

    .thumb-grid {
        margin-top: 40px;
    }

    /* Home Blog */

    .home-blog-style-one {
        display: block;
        border: 1px solid #e7e7e7;
        border-radius: 30px;
        padding: 30px;
    }

    .home-blog-style-one .thumb {
        margin: 0;
    }

    .home-blog-style-one::after {
        display: none;
    }

    .bg-dark .home-blog-style-one {
        border-color: rgba(255, 255, 255, 0.3);
    }

    .home-blog-style-one .thumb {
        margin-bottom: 30px;
    }

    .home-blog-two .info {
        top: 0;
        padding: 0;
        margin: 0;
    }

    .home-blog-two .info .content {
        border-radius: inherit;
        background: var(--bg-gray);
    }

    .home-blog-two .thumb .date {
        bottom: 30px;
    }

    .home-blog-two .thumb img {
        border-radius: inherit;
    }

    .home-blog-two {
        overflow: hidden;
        border-radius: 10px;
    }

    /* Footer  */

    footer .f-items {
        padding-left: 50px;
        padding-right: 50px;
    }

    footer .f-item.about {
        padding-right: 30px;
    }

    footer .f-item.about::after {
        display: none;
    }
}

/* Mobile */
@media (max-width: 767px) {
    /* Accordion Portfolio */
    .accrdion-portfolio-area .accordion-overlay span {
        background: var(--bg-gradient);
        padding: 4px 20px;
        margin-bottom: 15px;
        transform: translateX(0);
        transform: translateY(20px);
        color: #fff !important;
    }

    .accrdion-portfolio-area .accordion-overlay span::after {
        display: none;
    }

    .accrdion-portfolio-area .accordion-overlay {
        padding: 0;
        text-align: center;
        width: 100%;
    }

    .accrdion-portfolio-area .accordion-overlay h2 {
        transform: translateX(0) !important;
    }

    /* Banner Style One */
    .banner-one-item h2 {
        font-size: 40px;
    }

    .banner-one-item h2 strong {
        float: none;
    }

    .banner-style-one .curve-text {
        margin-top: 40px;
    }

    .banner-one-item h4 {
        margin-bottom: 0px!important;
    }

    /* Banner Style Three */
    .banner-style-three {
        padding: 60px 0;
        text-align: center;
    }

    .banner-style-three .fun-fact .counter {
        margin-top: 0;
    }

    .banner-style-three .fun-fact .counter {
        justify-content: center;
    }

    .banner-style-three h2 {
        font-size: 36px;
    }

    .banner-style-three .content::after {
        height: 300px;
        width: 300px;
        left: 50%;
        transform: translate(-50%, -50%);
        display: none;
    }

    .banner-style-three .thumb img {
        width: 100%;
        max-width: 100%;
    }

    .banner-style-three .content {
        margin-top: 30px;
    }

    /* Banner Zoom */
    .banner-one-item h4 {
        margin-bottom: 30px;
    }

    .experience-box {
        position: inherit;
        background: var(--bg-gradient);
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 50px;
    }

    .banner-animation-zoom {
        height: auto;
        padding-top: 300px;
    }

    .banner-animation-zoom .animation-zoom-banner {
        height: 300px;
    }

    .banner-animation-zoom .row > div {
        padding: 0;
    }

    .banner-one-item h4 {
        margin-bottom: 30px;
    }

    .experience-box {
        position: inherit;
        background: transparent;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 50px 15px;
    }

    .experience-box::after {
        left: -100%;
    }

    .experience-box::before {
        left: -50%;
        width: 200%;
        background-size: cover;
    }

    /* About */
    .about-style-one-thumb .fun-fact {
        display: none;
    }

    .about-style-one-thumb {
        padding-bottom: 30px;
    }

    .about-style-two-thumb {
        width: 100%;
        height: 300px;
        position: relative;
        margin-bottom: 40px;
    }

    .experience-style-one {
        display: none;
    }

    .about-style-two-info {
        padding: 0;
    }

    /* Fun Factor */

    .fun-fact-circle-lists {
        grid-template-columns: 1fr;
        margin: 0;
    }

    .fun-fact-circle-lists .fun-fact {
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        margin: 30px auto auto;
    }

    .fun-fact-circle-lists .fun-fact::after {
        height: 100% !important;
        width: 100% !important;
    }

    .fun-fact-circle-lists .fun-fact {
        height: 300px !important;
        width: 300px !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .fun-fact-circle-lists .fun-fact:first-child {
        margin-top: 0;
    }

    .fun-fact-circle-lists .fun-fact .counter {
        margin: 0;
    }

    /* Team Single */
    .team-content-top .thumb img {
        padding: 0;
        margin: 0;
    }

    .team-content-top {
        margin: 0;
    }

    .team-content-top::after {
        display: none;
    }

    .award-area .site-title {
        margin-bottom: 30px;
    }

    .award-area {
        text-align: center;
    }

    .qualification-grid h2 {
        writing-mode: inherit;
    }

    .qualification-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .team-right-info {
        padding: 0;
        margin-top: 30px;
    }

    /* Portfolio */
    .pf-item-info {
        padding-left: 0;
        padding-right: 0;
    }

    .pf-item-info {
        display: block;
    }

    .bg-dark .fun-factor-circle-area.bg-gray {
        background: var(--dark);
        padding-top: 60px;
    }

    .item-center .portfolio-style-one {
        padding-right: 0;
    }

    .pf-item-info .button {
        right: auto;
        top: 0;
        margin-top: 30px;
    }

    .item-center:nth-child(2n) .portfolio-style-one {
        padding-left: 0;
    }

    .pf-item-info .content-info {
        margin-right: 0;
    }

    .pf-item-info {
        display: block;
    }

    .project-style-one .overlay {
        left: 30px;
    }

    /* Project Carousel */
    .project-nav .nav-items {
        margin: 0;
        top: 0;
        right: auto;
        left: 0;
    }

    .project-nav {
        justify-content: start;
        padding: 0;
        margin-bottom: 50px;
        margin-top: -15px;
    }

    /* Project Single */
    ul.gallery-project-basic-info {
        border: none;
        margin: 0;
        background: var(--bg-gray);
        padding: 50px;
        margin-bottom: 30px;
    }

    .thumb-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    /* Pricing */
    .pricing-style-one:first-child {
        margin-top: 40px;
    }

    .pricing-style-one {
        display: block;
    }

    .pricing-style-one .left {
        width: 100%;
        border: none;
        padding: 0;
        margin-bottom: 30px;
    }

    .pricing-style-one:first-child {
        margin-top: 40px;
    }

    /* Client Items */
    .client-items {
        text-align: center;
        padding-top: 60px;
    }

    .client-item-box {
        margin-top: 40px;
    }

    .client-item-box::after {
        height: 100%;
        width: 100%;
    }

    .client-items .partner-box {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 30px;
        grid-row-gap: 30px;
        margin: 0;
    }

    .client-items .partner-box .item {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        line-height: 100px;
        margin: 0;
        padding: 50px 0;
    }

    .client-items .partner-box:nth-child(2) {
        margin-top: 30px;
    }

    .client-items .partner-box .item i {
        line-height: initial;
    }

    /* Why Choose Us */
    .choose-us-style-one-thumb .video-play-button {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    ul.list-item {
        margin-top: 0;
    }

    .choose-us-style-one-thumb {
        margin-bottom: 40px;
    }

    .choose-us-style-one .bottom-info {
        display: block;
        margin-top: 10px;
    }

    /* Multi Section */

    .pin-spacer {
        width: auto !important;
        height: auto !important;
        padding: 0 !important;
    }

    .thecontainer {
        max-width: inherit !important;
        height: auto !important;
        width: auto !important;
        display: block !important;
        position: inherit !important;
        transform: none !important;
    }

    .panel.overflow-hidden {
        display: block;
        height: auto;
        min-height: auto;
        transform: none !important;
        padding: 60px 0;
        text-align: center;
    }

    .panel .site-title {
        margin-bottom: 30px;
    }

    .achivement-items {
        grid-template-columns: 1fr;
        grid-row-gap: 30px;
    }

    .achivement-skill-items {
        grid-template-columns: 1fr;
        margin-top: 20px;
        grid-row-gap: 45px;
        padding-bottom: 10px;
    }

    .achivement-skill-items .progress-box .progress .progress-bar span {
        bottom: auto;
        font-size: 20px;
        top: -54px;
        -webkit-text-stroke: inherit;
        color: var(--white);
        font-weight: 700;
    }

    .achivement-skill-items .progress-box h5 {
        display: inline-block;
    }

    .contact-panel-bg {
        display: none;
    }

    .panel.contact-panel {
        text-align: center;
    }

    .services-item-one-items .services-carousel {
        top: 0;
        margin: 0;
        padding: 0;
    }

    .cteative-service-item {
        border: 1px solid #dddddd;
    }

    .bg-dark .cteative-service-item {
        border: none;
    }

    .bg-static {
        display: none;
    }

    /* Service Style Two */
    .service-hover-wrapper {
        display: none;
    }

    .service-hover-content {
        grid-template-columns: 1fr;
        grid-row-gap: 30px;
    }

    .service-hover-content .arrow {
        text-align: left;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .service-hover-content .arrow .btn-animation {
        left: 0;
    }

    /* Testimonial */
    .testimonial-style-one {
        display: block;
    }

    .testimonial-style-one .provider .thumb {
        margin: auto auto 30px;
    }

    .testimonial-style-one {
        padding: 50px 37px;
        text-align: center;
        border-bottom: 1px solid #dddddd;
    }

    .bg-dark .testimonial-style-one {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .testimonial-style-one .content {
        border: none;
        border-top: 1px solid #dddddd;
        padding: 0;
        margin-top: 30px;
        padding-top: 30px;
    }

    .bg-dark .testimonial-style-one .content {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        border-left: none;
    }

    .testimonial-style-one .content p {
        font-size: 20px;
        line-height: 1.8;
    }

    .testimonial-style-one-area {
        padding-bottom: 60px;
    }

    .testimonial-one-swiper-nav {
        position: inherit;
        top: 0;
        width: auto;
        max-width: 300px;
        margin-top: 30px;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }

    /* Brand */
    .brand-conetnt h2 {
        font-size: 36px;
        line-height: 1.2;
    }

    .brand-items {
        padding-top: 40px;
    }

    .brand-conetnt .item::after,
    .bg-dark .brand-conetnt .item::after {
        margin-top: 5px;
    }

    /* Home Blog */

    .home-blog-style-one {
        display: block;
        border: 1px solid #e7e7e7;
        border-radius: 30px;
        padding: 30px;
    }

    .home-blog-style-one .thumb {
        margin: 0;
    }

    .home-blog-style-one::after {
        display: none;
    }

    .bg-dark .home-blog-style-one {
        border-color: rgba(255, 255, 255, 0.3);
    }

    .home-blog-style-one .thumb {
        margin-bottom: 30px;
    }

    .home-blog-two .info {
        top: 0;
        padding: 0;
        margin: 0;
    }

    .home-blog-two .info .content {
        border-radius: inherit;
        background: var(--bg-gray);
    }

    .home-blog-two .thumb .date {
        bottom: 30px;
    }

    .home-blog-two .thumb img {
        border-radius: inherit;
    }

    .home-blog-two {
        overflow: hidden;
        border-radius: 10px;
    }

    /* Footer */
    footer .f-item.about::after {
        display: none;
    }

    footer .f-items {
        padding-left: 30px;
        padding-right: 30px;
    }
}

/* Max Wide Mobile Layout: 600px. */
@media only screen and (min-width: 600px) and (max-width: 1200px) {
}

/* Wide Mobile Layout: 480px. */
@media only screen and (min-width: 480px) and (max-width: 767px) {
}

/* Custom Layout */
@media only screen and (max-width: 480px) {
    .cteative-service-item {
        padding: 50px 37px;
    }

    .swiper-slide.swiper-slide-active .project-style-one .overlay {
        left: 0;
        background: var(--color-primary);
        bottom: 9px;
    }

    .project-style-one .overlay .content span {
        color: var(--white);
        opacity: 0.9;
    }

    .project-style-one .overlay .link {
        display: none;
    }

    .project-style-one .overlay .content {
        padding: 25px 60px;
        padding-bottom: 30px;
        border: none;
    }

    .project-style-one .overlay::after {
        display: none;
    }

    .project-style-one .overlay .content h4 a {
        color: var(--white);
    }

    /* Team Single */
    .team-content-top .thumb img {
        padding: 0;
        margin: 0;
    }

    .team-content-top {
        margin: 0;
    }

    .team-content-top::after {
        display: none;
    }

    .team-right-info {
        padding: 0;
        margin-top: 30px;
    }

    .team-right-info .social {
        display: block;
    }

    .team-right-info .social .share-link {
        margin: 0;
        margin-top: 30px;
        display: none;
    }
}

/* ============================================================== 
     # Preloader 
=================================================================== */

.pixel-preloader {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: default;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9000;
}

.pixel-preloader .animation-preloader {
    z-index: 1000;
    position: relative;
}

.pixel-preloader .animation-preloader::after {
    position: absolute;
    left: 50%;
    top: 50%;
    content: '';
    height: 80px;
    width: 80px;
    background: url(../img/7p-logo-bird.png) 100% 100%;
    transform: translate(-50%, -50%);
    background-repeat: no-repeat;
    background-position: center;
}

.bg-dark .side a.logout {
    color: #fff;
}
.bg-dark .side a.logout:hover {
    color: var(--main);
}
.side a.logout {
    color: var(--main);
    float: right;
    font-size: 12pt;
}
.bg-dark a.header-icon i {
    color: #fff;
}
a.header-icon i {
    color: #000;
    vertical-align: middle;
}
.side a.logout:hover {
    color: #000;
}
.side a.logout i {
    vertical-align: middle;
}
.bg-dark .pixel-preloader .animation-preloader::after {
    background: url(../img/7p-logo-bird.png);
    background-repeat: no-repeat;
    background-position: center;
}

.pixel-preloader .animation-preloader .spinner {
    -webkit-animation: spinner 1s infinite linear;
    animation: spinner 1s infinite linear;
    border-radius: 50%;
    border: 2px solid rgba(2, 109, 255, 0.3);
    border-top-color: var(--color-primary);
    height: 110px;
    margin: auto;
    width: 110px;
}

.bg-dark .pixel-preloader .animation-preloader .spinner {
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: rgba(255, 255, 255, 1);
}

.pixel-preloader
    .animation-preloader
    .txt-loading
    .letters-loading:nth-child(2):before {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.pixel-preloader
    .animation-preloader
    .txt-loading
    .letters-loading:nth-child(3):before {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.pixel-preloader
    .animation-preloader
    .txt-loading
    .letters-loading:nth-child(4):before {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.pixel-preloader
    .animation-preloader
    .txt-loading
    .letters-loading:nth-child(5):before {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.pixel-preloader
    .animation-preloader
    .txt-loading
    .letters-loading:nth-child(6):before {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.pixel-preloader
    .animation-preloader
    .txt-loading
    .letters-loading:nth-child(7):before {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

.pixel-preloader
    .animation-preloader
    .txt-loading
    .letters-loading:nth-child(8):before {
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s;
}

.pixel-preloader.dark .animation-preloader .spinner {
    border-color: rgba(255, 255, 255, 0.2);
    border-top-color: #fff;
}

.pixel-preloader .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 0;
    z-index: 1;
    pointer-events: none;
}

.pixel-preloader .loader .row {
    height: 100%;
}

.pixel-preloader .loader .loader-section {
    padding: 0px;
}

.pixel-preloader .loader .loader-section .bg {
    background-color: var(--white);
    height: 100%;
    left: 0;
    width: 100%;
    -webkit-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
    -o-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.bg-dark .pixel-preloader .loader .loader-section .bg {
    background-color: var(--dark);
}

.pixel-preloader .loader.dark_bg .loader-section .bg {
    background: #111339;
}

.pixel-preloader.loaded .animation-preloader {
    opacity: 0;
    -webkit-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
}

.pixel-preloader.loaded .loader-section .bg {
    width: 0;
    -webkit-transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
    -o-transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
    transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

@-webkit-keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@media screen and (max-width: 767px) {
    .pixel-preloader .animation-preloader .spinner {
        height: 8em;
        width: 8em;
    }
}

@media screen and (max-width: 500px) {
    .pixel-preloader .animation-preloader .spinner {
        height: 7em;
        width: 7em;
    }
}

/* ============================================================== 
     # Banner Style Four 
=================================================================== */
@media (min-width: 1024px) {
    nav.navbar.validnavs.navbar-fixed.nav-full-width.bg-transparent {
        border: none;
        box-shadow: none;
    }

    nav.navbar.validnavs.navbar-fixed.nav-full-width.bg-transparent
        .navbar-header {
        border: none;
    }

    nav.navbar.validnavs.navbar-fixed.nav-full-width.bg-transparent
        .attr-right::after {
        border: none;
    }
}

.banner-area.banner-style-five .align-center {
    align-items: center;
}

.banner-area.banner-style-five .swiper-pagination {
    display: flex;
    position: absolute;
    right: 50px;
    width: auto;
    left: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
}

.banner-area.banner-style-five
    .swiper-pagination
    span.swiper-pagination-bullet {
    height: 18px;
    width: 18px;
    background: transparent;
    border: 1px solid;
    border-radius: 50%;
    opacity: 0.4;
    position: relative;
    margin: 10px 0;
    transform: scale(1);
}

.banner-area.banner-style-five
    .swiper-pagination
    span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.5);
}

.banner-area.banner-style-five
    .swiper-pagination
    span.swiper-pagination-bullet::after {
    position: absolute;
    left: 50%;
    top: 50%;
    content: '';
    height: 4px;
    width: 5px;
    background: var(--white);
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.banner-area.banner-style-five .swiper-pagination span {
    display: block;
}

.banner-style-five .text-fixed {
    position: absolute;
    z-index: -1;
    top: 80px;
}

.banner-style-five .text-fixed h1 {
    font-size: 150px;
    line-height: 110px;
    font-weight: 900;
    text-transform: uppercase;
    -webkit-text-stroke: 1px var(--white);
    color: transparent;
}

.banner-style-five .content h2 {
    font-size: 70px;
    font-weight: 900;
}

.banner-style-five .content .tags {
    position: relative;
    padding-left: 200px;
}

.banner-style-five .content .tags::after {
    position: absolute;
    left: 0;
    top: 50%;
    content: '';
    height: 1px;
    width: 190px;
    border-top: 1px solid;
}

.banner-style-five .content .tags a {
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    z-index: 1;
    padding-right: 7px;
}

.banner-style-five .content .tags a::after {
    position: absolute;
    right: 2px;
    bottom: 0;
    content: ',';
}

.banner-style-five .content .tags a:last-child::after {
    display: none;
}

.banner-area.banner-style-five .banner-slide-counter .text-fixed {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    -webkit-transform: translate3d(-15%, 0, 0);
    transform: translate3d(-15%, 0, 0);
    opacity: 0;
    visibility: hidden;
}

.banner-area.banner-style-five .banner-slide-counter h2 {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
}

.banner-area.banner-style-five .banner-slide-counter .tags {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    opacity: 0;
    padding-right: 25%;
    margin: 0;
    visibility: hidden;
}

.banner-area.banner-style-five .banner-slide-counter .button {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    opacity: 0;
    visibility: hidden;
    margin-top: 30px;
}

.banner-area.banner-style-five
    .banner-slide-counter
    .swiper-slide.swiper-slide-active
    .text-fixed {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 500ms;
    transition-delay: 500ms;
    opacity: 0.3;
    visibility: visible;
}

.banner-area.banner-style-five
    .banner-slide-counter
    .swiper-slide.swiper-slide-active
    h2 {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
    opacity: 1;
    visibility: visible;
}

.banner-area.banner-style-five
    .banner-slide-counter
    .swiper-slide.swiper-slide-active
    .tags {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 1600ms;
    transition-delay: 1600ms;
    opacity: 1;
    visibility: visible;
}

.banner-area.banner-style-five
    .banner-slide-counter
    .swiper-slide.swiper-slide-active
    .button {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 2100ms;
    transition-delay: 2100ms;
}

.banner-area.navigation-between-bottom .content {
    padding-bottom: 100px;
    padding-top: 130px;
}

.careerbox { background:#fff; padding: 40px; border-radius: 60px 0 60px 0; text-align: left;}

@media (max-width: 1023px) {
    .banner-area.banner-style-five {
        height: 100%;
    }

    .banner-area.navigation-between-bottom .content {
        padding-top: 0;
    }

    .banner-style-five .text-fixed h1 {
        font-size: 100px;
        line-height: 1;
    }

    .banner-style-five .text-fixed {
        top: -40px;
    }

    .banner-area.banner-style-five .swiper-pagination {
        right: 30px;
        top: 40%;
    }

    .dropdown ul li {

        padding: 10px 0!important;
        border-bottom: 1px dashed #efefef;
    }

    .dropdown ul { padding:10px 0; }
    .collapse-mobile.show { border-right:10px solid var(--main)!important }
}

@media (max-width: 767px) {
    .banner-style-five .content h2 {
        font-size: 40px;
    }

    .banner-style-five .content .tags {
        padding-left: 100px;
    }

    .banner-style-five .content .tags::after {
        width: 80px;
    }

    .banner-style-five .text-fixed h1 {
        font-size: 80px;
    }

    .banner-style-five .text-fixed {
        top: -40px;
    }

    .banner-area.banner-style-five .swiper-pagination {
        right: 30px;
        top: 35%;
    }
}

@media (max-width: 450px) {
    .nav-full-width .side {
        padding-left: 15px;
        padding-right: 15px;
    }

    .banner-style-five .content h2 {
        font-size: 36px;
    }

    .banner-style-five .content .tags {
        padding-left: 50px;
    }

    .banner-style-five .content .tags::after {
        width: 40px;
    }

    .banner-style-five .text-fixed h1 {
        font-size: 50px;
    }

    .banner-style-five .text-fixed {
        top: -25px;
    }

    .banner-area.banner-style-five .swiper-pagination {
        display: none;
    }
}

/* Project Details Version Two */

.project-details-thumb img {
    margin-bottom: 60px;
}

.project-single-tags a {
    display: inline-block;
    position: relative;
    z-index: 1;
    padding-right: 10px;
    text-transform: uppercase;
    color: var(--color-paragraph);
}

.project-single-tags a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    content: ',';
}

.project-single-tags a:last-child::after {
    display: none;
}

.project-single-tags {
    margin-bottom: 15px;
}

.project-single-tags a:hover {
    color: var(--color-primary);
}

.project-details-thumb h2 {
    font-weight: 800;
    margin: 0;
    padding-right: 15%;
}

.project-author-details ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-row-gap: 30px;
}

.project-author-details ul li {
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-column-gap: 60px;
    position: relative;
    z-index: 1;
    border-top: 1px solid #dddddd;
    padding-top: 30px;
}

.project-author-details ul li:first-child {
    border: none;
    padding: 0;
}

.project-author-details ul li h3 {
    font-weight: 800;
    font-size: 20px;
    margin: 0;
}

.project-author-details ul li p {
    margin: 0;
}

.project-author-details ul li .right-info h3 {
    color: var(--color-paragraph);
    font-weight: 600;
}

p.project-inner-tag {
    font-weight: 700;
    line-height: 2.3;
    text-transform: uppercase;
}

.item-grid-container {
    display: grid;
    grid-row-gap: 60px;
}

.item-grid-container img {
    margin-top: 50px;
}

.item-grid-colum {
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-column-gap: 50px;
    grid-row-gap: 60px;
}

.item-grid-colum h1,
.item-grid-colum h2,
.item-grid-colum h3,
.item-grid-colum h4,
.item-grid-colum h5,
.item-grid-colum h6 {
    font-weight: 800;
}

/* Related Projects */
.related-project-items {
    border-top: 1px solid #dddddd;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .item-grid-container {
        grid-row-gap: 30px;
    }
    .item-grid-colum {
        grid-template-columns: 1fr;
        grid-row-gap: 15px;
    }
    .project-details-thumb h2 {
        padding-right: 0;
    }
    .project-details-style-two .thumb-grid {
        margin-top: 0;
        margin-bottom: 40px;
    }

    .item-grid-container img {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .project-details-thumb img {
        margin-bottom: 30px;
    }

    .project-details-thumb h2 {
        padding-right: 0;
    }

    .project-author-details ul li {
        grid-template-columns: 1fr;
        grid-row-gap: 15px;
    }

    .item-grid-colum {
        grid-template-columns: 1fr;
        grid-row-gap: 0;
    }

    .item-grid-container img {
        margin-top: 30px;
    }

    .item-grid-container {
        grid-row-gap: 30px;
    }

    .project-details-style-two .thumb-grid {
        margin-top: 0;
        margin-bottom: 40px;
    }
}

.slider-content {
    position: absolute;
    bottom: 10%;
    right: 20px;
    z-index: 0;
    text-align: right;
}

.text-large {
    font-size: 150px; /* Adjust size as needed */
    font-weight: bold;
    color: #3d5a80; /* Initial color */
    animation: colorChange 5s infinite;
    opacity: 0.5;
    line-height: 200px;
}

/* Color change animation */
@keyframes colorChange {
    0% {
        color: #000;
    }
    25% {
        color: #ff0000;
    }
    50% {
        color: #ffb300;
    }
    75% {
        color: #00edf1;
    }
    100% {
        color: #3d5a80;
    }
}

@media screen and (max-width: 480px) {
    .text-large {
        font-size: 100px; /* Adjust size as needed */
        opacity: 0.6;
        line-height: 70px;
    }

    .slider-content {
        position: absolute;
        bottom: -20px;
        right: 20px;
        z-index: 0;
    }
}

.slogan1 {
    padding: 0px 0;
    position: relative;
    /* background-image: url('../img/shape/golden.png');  */
    background-size: cover; /* Make the image cover the entire section */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Prevent the image from repeating */
    background-attachment: fixed; /* Creates the parallax effect */
    opacity: 1; /* Start fully visible */
    transition: opacity 0.5s ease; /* Smooth fading effect */
    height: 100vh;
    overflow: hidden;
    background-color: #fff;
}

#slogan {
    padding: 200px 0;
    text-align: center;
    transform: translateX(-100%); /* Start off-screen to the left */
    transition:
        transform 0.6s ease-in-out,
        opacity 0.6s ease-in-out; /* Animate both position and opacity */
    opacity: 0; /* Initially hidden */
    font-family: 'Jost', 'sans-serif';
    line-height: 0.9;
}

#slogan h1 {
    font-size: 60px;
    font-weight: 700;
    font-family: 'Jost', 'sans-serif';

    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 40px;
}

#slogan a {
    font-weight: 500;
}

#slogan2 {
    font-size: 100px;
    font-weight: 600;
    text-align: left;
    transition:
        transform 0.6s ease-in-out,
        opacity 0.6s ease-in-out; /* Animate both position and opacity */
    opacity: 1; /* Initially hidden */
    font-family: 'Jost', 'sans-serif';
    line-height: 0.9;
    position: absolute;
    color: #999;
    left: 30px;
    bottom: 10px;
}

#slogan2 span {
    position: absolute;
    bottom: 50px;
    font-size: 40pt;
    color: #333;
}
#slogan2 span img {
    width: 100px;
    height: auto;
    display: block;
}

#side-started {
    position: absolute;
    bottom: 30px;
    right: 0px;
    transition:
        transform 0.6s ease-in-out,
        opacity 0.6s ease-in-out; /* Animate both position and opacity */
}
#side-started a {
    background: var(--main);
    color: #fff;
    padding: 20px 50px;
    text-transform: uppercase;
    font-size: 14pt;
}
#side-started i {
    transform: rotate(-45deg);
    vertical-align: middle;
    font-size: 16pt;
    margin-left: 5px;
}

#accordion-area {
    width: 100%;
    background: #fff;
}

/* #accordion-list {

    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
    opacity: 0; 
	transform: translateX(-100%); 

} */

.text-highlight {
    color: var(--main) !important;
}

.parallax-marquee-wrapper {
    width: 100%;
    overflow: hidden; /* Hide anything outside the container */
    white-space: nowrap; /* Prevent content from wrapping */
    position: relative;
}

.parallax-marquee {
    display: inline-flex;
    white-space: nowrap; /* Prevent line breaks */
    animation: scrollMarquee 20s linear infinite; /* Continuous scrolling effect */
}

.marquee-content {
    display: inline-block;
    padding: 50px 100px 50px 20px;
    font-size: 30px;
    font-family: 'Jost', 'sans-serif';
    margin-right: 30px; /* Space between items */
    color: #333;
    font-weight: 600;
    background: url(../img/shape/4.png) no-repeat right;
    background-size: 50px; /* Keep the PNG no larger than 60px */
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

#slogan3 {
    font-size: 300px;
    font-weight: 600;
    text-align: left;
    transition:
        transform 0.6s ease-in-out,
        opacity 0.6s ease-in-out; /* Animate both position and opacity */
    opacity: 1; /* Initially hidden */
    font-family: 'Jost', 'sans-serif';
    line-height: 0.9;
    color: var(--main);
    left: 0px;
    bottom: 100px;
    z-index: -999;
    position: fixed; /* Initially fixed */
}

#slogan3 span {
    position: absolute;
    bottom: 40px;
    font-size: 40pt;
    color: #333;
}
#slogan3 span img {
    width: 50px;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

#changing-text {
    font-weight: bold;
    display: inline-block; /* Ensure inline elements can animate */
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.bounce-in-right {
    animation: bounceInRight 1s ease forwards; /* 1s animation duration */
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        transform: translateX(300px); /* Start off-screen to the right */
    }
    60% {
        opacity: 1;
        transform: translateX(-25px); /* Overshoot slightly to the left */
    }
    80% {
        transform: translateX(10px); /* Bounce back slightly to the right */
    }
    100% {
        transform: translateX(0); /* End at the final position */
    }
}
.experience-area {
    position: relative;
    overflow: hidden;
}
.experience-area .inner-content h2 {
    font-weight: 600;
    font-family: 'Jost', 'sans-serif';
    color: #fff;
}

.experience-area .inner-content h4 {
    font-weight: 600;
    font-family: 'Jost', 'sans-serif';
    color: #fff;
}
.experience-area .inner-content {
    padding: 80px 100px;
    background: var(--bg-gradient);
    color: #fff;
    border-radius: 40px 0 40px 0 !important;
}
.experience-area .inner-content p {
    color: #fff;
}

.experience-area .inner-content .border-bottom {
    font-size: 14pt;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
}

.serviceNo {
    font-size: 80px;
    color: var(--main);
    line-height: 1;
    font-weight: 800;
}

.bg-highlight {
    background: var(--main);
}
#scroll-container {
    height: 150vh; /* Allow sufficient scrollable area */
    background-color: #f4f4f4;
}

#small-div {
    width: 150px; /* Initial small size */
    height: 150px;
    background-color: #3498db; /* Blue color */
    position: fixed;
    top: 100px;
    right: 20%; /* Starting position */
    transition:
        width 0.4s ease,
        height 0.4s ease,
        right 0.4s ease,
        bottom 0.4s ease; /* Smooth transitions */
}

.target-section {
    height: 100vh; /* Full viewport height */
    background-color: #2ecc71; /* Green section background */
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; /* Necessary for sticky effect */
}

/* Initial hidden state for lazy-loaded sections */
.lazy-section {
    opacity: 0;
    transform: translateY(100px); /* Start slightly below and move upwards */
    transition:
        opacity 0.6s ease-out,
        transform 0.6s ease-out; /* Smooth transition */
}

/* Fade-in effect when in view */
.lazy-section.show {
    opacity: 1;
    transform: translateY(0);
}

i.bounce-right {
    display: inline-block; /* Ensure it behaves like an inline element */
    animation: bounceRight 2s infinite ease-in-out; /* Infinite animation */
}

/* Keyframes for bounce-right animation */
@keyframes bounceRight {
    0%,
    100% {
        transform: translateX(0); /* Start and end at the original position */
    }
    50% {
        transform: translateX(20px); /* Move right 20px at the midpoint */
    }
}
.image-container {
    display: inline-block;
    overflow: hidden;
    position: relative;
}

.rubber-image {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease-out;
    position: relative;
}

.image-container:hover .rubber-image {
    animation: rubberPull 0.5s ease-out forwards;
}

@keyframes rubberPull {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(-10px, -10px) skew(-10deg, -10deg);
    }
    50% {
        transform: translate(5px, 5px) skew(5deg, 5deg);
    }
    75% {
        transform: translate(-15px, -15px) skew(-15deg, -15deg);
    }
    100% {
        transform: translate(0, 0) skew(0, 0);
    }
}

#lottie-background {
    width: 100wh;
    height: auto;
    z-index: 1; /* Make sure it's behind your main content */
    overflow: hidden;
    z-index: -9;
}

#lottie-background-2 {
    width: 100wh;
    height: auto;
    z-index: 1; /* Make sure it's behind your main content */
    overflow: hidden;
    z-index: -9;
}

#lottie-background-about {
    width: auto; /* Takes up full width of the column */
    height: 100%; /* Adjust height to maintain aspect ratio */
    display: block; /* Ensure it's treated as a block-level element */
    position: relative;
}

.experience-area .row.d-flex {
    display: flex; /* Makes the row a flex container */
}

.experience-area .col-lg-6 {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically aligns content */
    align-items: stretch; /* Ensures columns take full height */
}

.experience-area .inner-content {
    flex-grow: 1; /* Ensures the content takes the full height */
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
}

.skill-item {
    padding: 10px 0;
    border-bottom: 1px solid #fff;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease-in-out;
}

/* Hover effect for each skill item */
.skill-item:hover {
    border-color: #fff; /* Change the border color on hover */
    transform: translateX(10px); /* Slight shift on hover */
}

/* Add some padding to make the section more spacious */
.skills-list .col-md-6 {
    padding-bottom: 15px;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
}

.service-item {
    padding: 10px 0;
    border-bottom: 1px solid #dfdfdf;
    font-size: 14pt;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease-in-out;
    font-family: 'Jost', 'sans-serif';
    color: #000;
}

/* Hover effect for each skill item */
.service-item:hover {
    border: 0; /* Change the border color on hover */
    transform: translateX(10px); /* Slight shift on hover */
}

.service-item2 {
    padding: 10px 0;
    border-bottom: 1px solid #999;
    font-size: 14pt;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease-in-out;
    color: #000;
}

/* Hover effect for each skill item */
.service-item2:hover {
    border: 0; /* Change the border color on hover */
    transform: translateX(10px); /* Slight shift on hover */
}

.service-item3 {
    padding: 10px 0;
    border-bottom: 1px solid #999;
    font-size: 14pt;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease-in-out;
    color: #000;
}

/* Hover effect for each skill item */
.service-item3:hover {
    border: 0; /* Change the border color on hover */
    transform: translateX(10px); /* Slight shift on hover */
}

/* Add some padding to make the section more spacious */
.service-list .col-md-6 {
    padding-bottom: 15px;
}

.text-right {
    text-align: right;
}
.feature-footer {
    font-family: 'Jost', 'sans-serif';
    color: #333;
}
.feature-footer span {
    color: #333 !important;
    font-weight: 300;
    display: inline-block;
    margin-right: 20px;
}

.benefit-box {
    background-color: #fff;
    padding: 20px 30px 10px 30px;
    margin-top: 10px;
    color: #333;
    text-align: left;
    border-radius: 40px 0 40px 0;
    border: 1px solid #efefef;
}
.benefit-box h4 {
    font-weight: 600;
    font-family: 'Jost', 'sans-serif';
    color: var(--main);
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}
.expertise-area .col-lg-3 {
    padding: 0 5px;
}


.ml-2 {
    margin-left: 10px !important;
}
.mr-2 {
    margin-right: 10px !important;
}

.middle-grid {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    height: 100vh; /* Adjust height as needed */
}

.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 1000;
    background: #25d366;
    border-radius: 50%;

    /* Flexbox for centering */
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsapp-icon i {
    font-size: 40px;
    color: #fff;
}

.chat-window {
    position: fixed;
    bottom: 90px;
    right: 20px;
    max-width: 300px;
    width: 90%;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    display: none;
    z-index: 1001;
}

.chat-header {
    background-color: #198754;
    color: #fff !important;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header p {
    margin: 0;
}

.chat-body {
    padding: 10px;
    font-size: 14px;
    background-color: #ece5dd; /* WhatsApp chat background color */
    background-image: url('../images/design/whatsappbg.jpg?v1.1'); /* WhatsApp-like pattern */
    background-repeat: repeat;
    background-size: cover;
    height: 150px; /* Adjust height as needed */
    overflow-y: auto;
    margin-bottom: 10px;
}

.chat-footer {
    padding: 0 10px 20px 10px;
    text-align: center;
}

.chat-footer .btn-success {
    background: #25d366;
    border: 0;
}

.chat-footer a {
    text-decoration: none;
}

.chat-bubble {
    background-color: #fff; /* WhatsApp green */
    color: black;
    padding: 15px 15px 5px 15px;
    border-radius: 20px;
    max-width: 250px;
    position: relative;
    font-size: 14px;
    margin: 10px;
    opacity: 0.8;
}

/* Left bubble (incoming message) */
.chat-bubble.left {
    background-color: #ffffff; /* Light bubble color */
    color: #000000;
    margin-left: 10px;
}

/* Triangle for left bubble */
.chat-bubble.left::after {
    content: '';
    position: absolute;
    left: -20px;
    bottom: 15px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-right-color: #ffffff; /* Same as bubble background */
}

.close-chat {
    cursor: pointer;
    font-size: 20px;
}

#scrollable-section {
    padding: 120px 0;
    height: 60vh;
    display: flex; /* Use Flexbox */
    justify-content: center; /* Horizontally center */
    align-items: center; /* Vertically center */
}

#growing-div {
    background-color: white;
    width: 0%;
}

#growing-content {
    font-size: 60px;
    line-height: 1.1;
    color: #000;
    font-family: 'Jost', 'sans-serif';
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
}
.btn {
    border-radius: 20px 0 20px 0;
    font-weight: 500 !important;
}

ul.accordion-portfolio-lists li:nth-child(1) {
    border-radius: 40px 0 0 0;
}
ul.accordion-portfolio-lists li:nth-child(3) {
    border-radius: 0px 0 40px 0;
}

.page-header {
    height: 80vh;
}

.graphic-section {
    height: 80vh; /* Full viewport height for each section */
    position: relative;
    line-height: 150px;
    font-size: 150px;
    font-family: 'Jost', 'sans-serif';
    overflow: hidden;
}

.bg-dark .stroked-text {
    font-weight: bold; /* Make it bold if desired */
    font-size: 150px; /* Adjust size as needed */
    color: var(--main); /* Make the text color transparent */
}

.stroked-text {
    font-weight: bold; /* Make it bold if desired */
    font-size: 150px; /* Adjust size as needed */
    color: transparent; /* Make the text color transparent */
    color: var(--dark); /* Make the text color transparent */
}
.bg-dark .the-title {
    color: white;
}
.the-title {
    position: absolute;
    bottom: 60px;
    left: 60px;
    color: var(--main);
    text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.6); /* Subtle shadow */

}

.graphic-section p {
    font-size: 14pt;
    line-height: 18pt;
}
.graphic-section .contact-panel-side {
    transition: opacity 0.3s ease-in-out; /* Set the transition for the opacity */
    background-size: cover; /* Cover the entire area */
    background-position: center top; /* Center the background image */
    height: 80vh; /* Adjust height as necessary */
    width: 50%;
    margin-top: 10vh;
    z-index: 0;
}

.contact-panel-side-2 {
    transition: opacity 0.3s ease-in-out; /* Set the transition for the opacity */
    background-size: cover; /* Cover the entire area */
    background-position: left top; /* Center the background image */
    height: 100vh; /* Adjust height as necessary */
    width: 50%;
    margin-top: -100px !important;
    z-index: 0;
    position: absolute;
    bottom: 10px;
    right: 20px;
}

.graphic-section-2 {
    padding: 60px 20px;
}

.graphic-section-2 li {
    display: inline-block;
    padding: 10px 60px 10px 20px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 12pt;
    font-family: 'Jost', 'sans-serif';
    margin-right: 0px; /* Space between items */
    background: url(../img/shape/4.png) no-repeat right;
    background-size: 40px; /* Keep the PNG no larger than 60px */
}

.graphic-section-2 li:last-child {
    background: none;
}

.bg-dark .graphic-section-2 li {
    color: #fff;
}
.graphic-section-2 li {
    color: #333;
}

.graphic-section .the-title {
    z-index: 1;
}

#growing-div {
    transition: width 0.2s ease; /* Smooth transition */
}

#growing-content {
    transition: transform 0.2s ease; /* Smooth transition for content scaling */
}

.text-center {
    text-align: center !important;
}
.text-left {
    text-align: left !important;
}

.container-fluid {
    width: 95%;
    margin: 0 auto;
    max-width: 1920px;
}

.service-area {
    border-top: 1px solid #dfdfdf;
    padding: 100px 0 80px 0;
    font-size: 12pt;
    font-family: 'Jost', 'sans-serif';
}

.form-select { height: 50px; }

.pt-100 {
    padding-top: 100px;
}

.top-section {
    height: 80px;
    width: 100vw;
}

.hover-text {
    cursor: none; /* Changed from 'hidden' to 'pointer' */
}

.intro-text {
    position: relative; /* Ensures absolutely positioned images are relative to the text container */
}

.hover-image {
    width: 200px; /* Adjust the width as needed */
    height: auto;
    position: fixed;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    z-index: 10;
    pointer-events: none;
    cursor: none;
    border: 1px solid #dfdfdf;
    background: #efefef;
}

/* Constrain the size of the img element inside the div */
.hover-image img {
    width: 100%; /* Make the image take up the full width of the div */
    height: auto; /* Maintain aspect ratio */
    display: block;
}

/* New class to control the opacity */
.dimmed {
    opacity: 0.25;
    transition: opacity 0.3s ease;
}

.navbar-brand img {
    width: 250px;
    height: auto !important;
}

.hover-text:hover .withwhitebg {
    background: #fff;
    padding: 10px;
    z-index: 2 !important;
}
.service-area h1 {
    font-size: 76pt;
    color: var(--main);
    font-weight: 700;
    font-family: 'Jost', 'sans-serif';
    line-height: 76pt;
}
.service-area p {
    color: #000;
    margin-bottom: 30px;
}
.service-area h2 {
    font-weight: 600;
}
.withwhitebg span {
    font-weight: 400;
}

.no-border {
    border: 0;
}

.no-md-border {
    border: 0;
}

a.service-link {
    font-weight: 500;
    font-size: 14pt;
    color: var(--main);
}

img.grayscale-img-small {
    width: 300px;
    height: auto;
    display: block;
    margin: 30px auto !important;
    transform: skewX(-5deg); /* Skew the image to give an italic effect */
    margin-left: 30px;
    transition:
        transform 0.5s ease,
        filter 0.5s ease; /* Optional: for smooth transition effects */
}
h1.title120 {
    font-size: 60px;
    line-height: 80px;
    color: #000;
    font-family: 'Jost', 'sans-serif';
    text-align: left;
}
h1.title80 {
    font-size: 40px;
    line-height: 60px;
    color: #000;
    font-family: 'Jost', 'sans-serif';
    text-align: left;
}
h1.title40 {
    font-size: 32px;
    line-height: 50px;
    color: #000;
    font-family: 'Jost', 'sans-serif';
    text-align: left;
}
.title20 {
    font-size: 20px;
    color: #000;
    font-family: 'Jost', 'sans-serif';
    text-align: left;
    font-weight: 400;
}
.title20 a {
    color: var(--main);
    font-weight: 500;
    cursor: pointer;
}

.category li,
.category2 li,
.category3 li {
    font-weight: 300;
    font-size: 14pt;
    color: #1d1d1d;
}
.category ul,
.category2 ul,
.category3 ul {
    margin-bottom: 40px;
}
.explain-area {
    font-size: 14pt;
    padding: 20px;
}
.worry-area {
    font-size: 16pt;
}

#dark-area,
#dark-area2 {
    position: absolute;
    right: 0%;
    bottom: 0;
    width: 60%;
    height: 100%;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}
.imageSwitch { width: 100%; text-align: right; position: relative; overflow: hidden;}
.hidden {
    opacity: 0 !important; /* Make the element transparent */
    pointer-events: none; /* Prevent interaction when hidden */
}

.mt-ve-50 {
    margin-top: -100px;
}
.mt100 {
    margin-top: 80px;
}

.service-right {
    padding-right: 50px;
}

.vh100 {
    height: 100vh;
}

.graphic-section-3 {
    height: 80vh; /* Full viewport height for each section */
    position: relative;
    line-height: 150px;
    font-size: 150px;
    font-family: 'Jost', 'sans-serif';
}

.graphic-section-3 p {
    font-size: 14pt;
    line-height: 18pt;
}
.graphic-section-3 .contact-panel-side {
    transition: opacity 0.3s ease-in-out; /* Set the transition for the opacity */
    background-size: cover; /* Cover the entire area */
    background-position: left top; /* Center the background image */
    height: 80vh; /* Adjust height as necessary */
    width: 50%;
    margin-top: 10vh;
    z-index: 0;
}

.toggle-btn.active {
    background: var(--bg-gradient);
}

.content i {
    color: var(--main) !important;
}

.plan-details h2 {
    font-size: 12pt;
    font-weight: 700;
    color: var(--main);
}
.plan-details ul {
    margin-bottom: 10px;
}
.plan-details ul li.active {
    color: #1d1d1d;
}
.plan-details ul li.active i {
    color: #28a745;
}
.plan-details ul li {
    color: #999;
}
.plan-details ul li i {
    margin-right: 5px;
}
.plan-details ul li ul {
    margin-left: 30px;
}
.btn-block {
    width: 100% !important;
}

a.mid-align i {
    vertical-align: middle;
    color: #000;
}
a.mid-align:hover {
    color: var(--main);
}
.bg-dark a.mid-align i {
    color: #fff;
}

.checkout-box {
    padding: 36px 36px 36px 36px;
    position: relative;
    border: 1px solid #e7e7e7;
    border-radius: 60px 0 60px 0px;
  
}
.checkout-box2 {
    margin-top: -50px;
    padding: 36px;
    position: relative;
    border: 1px solid #e7e7e7;
    border-radius: 0 30px 30px 0px;
}
h2.details-header {
    position: absolute;
    top: -20px;
    left: 40px;
    font-size: 14pt;
    background: var(--main);
    display: inline-block;
    color: #fff;
    padding: 10px 20px;
    font-weight: 800;
    margin-bottom: 0;
    text-transform: uppercase;
}
.header-blank {
    height: 110px;
    background: #fff;
    border-bottom: 1px solid #e7e7e7;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
.header-padding {
    height: 200px;
}

#passwordRequirements {
    font-size: 14pt;
}
a.change-plan {
    color: var(--main);
}
a.change-plan:hover {
    color: var(--dark);
}
ul.checkout-area li {
    margin-bottom: 20px;
}
ul.checkout-area li span {
    font-weight: 800;
}
.checkout-box2 .big {
    font-size: 18pt;
    color: #000 !important;
}
button.cta-btn:disabled {
    background: #999;
}
button.cta-btn {
    background: var(--main);
    color: #fff;
}
.checkout-box2 {
    color: var(--black);
}

.our-platform-side {
    position: absolute;
    right: 0;
    width: 55%;
    top: 20%;
}

.navbar-collapse img {
    width: 250px;
    height: auto !important;
}
.semi-block {
    width: 48%;
}
.service-page-2 {
    padding: 80px 0;
}
.service-page-2 h1.title40 {
    padding-top: 80px;
}

.title {
    font-size: 40pt;
    font-weight: 800;
}
.copyright {
    font-size: 10pt;
    text-align: left;
    border-top: 1px solid #efefef;
    padding-top: 10px;
    margin-bottom: 20px;
}
.footer-bottom {
    border-top: 1px solid #efefef;
    padding-top: 10px;
}
.footer-bottom a {
    font-size: 10pt;
    border-right: 1px solid #efefef;
    padding: 10px;
}
.footer-bottom a:last-child {
    border-right: 0;
}
.footer-bottom a:hover {
    color: var(--main);
}
.bg-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
}
.login-area {
    padding: 80px 0;
    max-width: 500px;
    margin: 0px auto;
    height: 100vh;
    position: relative;
}
.login-area .logo {
    text-align: center;
    margin-bottom: 20px;
}
.login-area .logo img {
    width: 250px;
}
.login-box {
    border-radius: 40px 0 40px 0;
    padding: 40px;
    width: 100%;
    background: #fff;
    border: 1px solid #efefef;
    position: relative;
}
.login-box .back-button {
    position: absolute;
    right: 40px;
    top: 40px;
}
.login-box .back-button a i {
    font-size: 14pt;
    color: #333;
}
.login-box .back-button a:hover i {
    color: var(--main);
}

.login-box h4 {
    font-weight: 400;
    font-family: 'Jost', 'sans-serif';
    font-size: 18pt;
    margin-bottom: 40px;
}
.login-box .btn {
    border-radius: 20px 0 20px 0;
}
.login-box a {
    padding: 0 10px;
}
.login-box .bottom {
    text-align: center;
    font-size: 11pt;
}
.login-area .copyright {
    border-top: 0;
    color: #fff;
}
.login-area .copyright a {
    color: #fff;
}

/* Ensure the checkbox is exactly 18px by 18px */
.form-check-input {
    all: unset; /* Completely reset checkbox styles */
    appearance: none; /* Reset default browser styling */
    width: 18px;
    height: 18px !important;
    line-height: 18px;
    margin: 0 10px 0 0; /* Remove any default margins */
    padding: 0; /* Remove any default padding */
    box-sizing: border-box; /* Ensure padding/border do not affect size */
    border: 1px solid #dddddd;
    cursor: pointer;
    vertical-align: middle;
}
.form-check label {
    margin-top: 5px;
}

/* Make sure the parent container doesn't affect height */
.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 10px; /* Optional: adjust if there's space needed */
    height: 10px;
}

.fade-in {
    opacity: 0; /* Start fully transparent */
    transform: translateY(20px); /* Start slightly below */
    animation: fadeIn 1s forwards; /* Apply animation */
}

@keyframes fadeIn {
    to {
        opacity: 1; /* End fully opaque */
        transform: translateY(0); /* Move to original position */
    }
}

.inner-content h4 {
    font-size: 16pt;
    line-height: 30pt;
    font-family: 'Jost', 'sans-serif';
}
.counter {
    position: absolute;
    right: 30px;
    bottom: 80px;
    font-size: 400px;
    color: #efefef;
    z-index: -1;
    font-weight: 800;
    line-height: 0;
}
.counter2 {
    position: absolute;
    right: 30px;
    bottom: 150px;
    font-size: 400px;
    color: #efefef;
    z-index: -1;
    font-weight: 800;
    line-height: 0;
}
.counter3 {
    position: absolute;
    right: 30px;
    top: 280px;
    font-size: 400px;
    color: #efefef;
    z-index: -1;
    font-weight: 800;
    line-height: 0;
}
.counter4 {
    position: absolute;
    left: 20%;
    top: 280px;
    font-size: 400px;
    color: #efefef;
    z-index: -1;
    font-weight: 800;
    line-height: 0;
}
.border-round-title {
    border-radius: 60px;
    padding: 10px 20px;
    font-weight: 800;
}

.platform-2 {
    margin-top: -100px;
}
.platform-3 {
    margin-top: 400px;
    position: relative;
}
.platform-4 {
    padding-bottom: 100px;
    position: relative;
}

.topic-title {
    font-size: 30pt;
    margin-bottom: 30px;
    color: #000;
}

a.big {
    font-size: 14pt;
}

.tiny-notes {
    font-size: 10pt;
}
.service-icon i {
    font-size: 36pt;
}

#lottie-background {
    height: 100vh; /* Set height to 100% of viewport */
    width: auto; /* Full width */
}

.creative-services-area {
    height: 100vh;
}

.footer-bird img {
    max-width: 80px;
    height: auto;
    margin-bottom: 30px;
}

@media (max-width: 1180px) {

    .banner-one-item h2 {
        margin: 0;
        font-size: 40pt;
    }
}
@media (max-width: 1366px) {
    .banner-style-one {
        padding-top: 250px;
    }
    .navbar-brand img {
        width: 200px;
        height: auto !important;
    }

    .counter {
        font-size: 280px;
        color: #efefef;
        z-index: -1;
        font-weight: 800;
        line-height: 0;
    }
    .counter2 {
        font-size: 280px;
        color: #efefef;
        z-index: -1;
        font-weight: 800;
        line-height: 0;
    }
    .counter3 {
        font-size: 280px;
        color: #efefef;
        z-index: -1;
        font-weight: 800;
        line-height: 0;
    }
    .counter4 {
        font-size: 280px;
        color: #efefef;
        z-index: -1;
        font-weight: 800;
        line-height: 0;
    }

    .slogan1 {
        height: 90vh;
        display: flex; /* Use Flexbox */
        justify-content: center; /* Horizontally center */
        align-items: center; /* Vertically center */
    }
    .service-page.default-padding {
        padding: 40px 40px;
    }

    .experience-area .inner-content h4 {
        margin-bottom: 0;
        padding-bottom: 0;
        font-size: 16pt;
    }
    .experience-area .inner-content {
        padding: 40px;
        background: var(--bg-gradient);
        color: #fff;
    }

    .experience-area .inner-content h2 {
        font-size: 24px;
    }

    .creative-services-area {
        height: 80vh;
    }
    #scrollable-section {
        height: 50vh;
    }
    #growing-content {
        font-size: 60px;
        line-height: 1.1;
    }

    .accrdion-portfolio-area,
    .accrdion-portfolio-area div {
        height: 70%;
        min-height: 70vh;
    }

    .cteative-service-item {
        padding: 47px 40px;
    }

    #slogan2 {
        font-size: 70px;
    }
}

@media screen and (min-width: 1025px) {
    .graphic-section .mobile-side {
        display: none!important;
    }
}

/* Horizontal (landscape) orientation with max-width of 1024px */
@media screen and (max-width: 1180px) and (orientation: landscape) {
    .banner-style-one {
        padding-top: 200px;
    }
    .creative-services-area {
        height: 100vh;
        padding: 40px;
    }
    .creative-services-area h2.title,
    .project-home-area h2.title {
        font-size: 24pt !important;
    }
    .service-mobile-2 h1 {
        font-size: 48pt;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .service-footer .col-lg-6 {
        width: 70%;
    }
}

/* Vertical (portrait) orientation with max-width of 1024px */
@media screen and (max-width: 1024px) and (orientation: portrait) {
    .banner-style-one {
        padding-top: 400px;
    }
    .banner-style-one .col-lg-6,
    .banner-style-one .col-lg-8 {
        width: 85%;
        text-align: center;
        margin: 10px auto;
    }
    .banner-height-short {
        height: 70vh;
        padding-top: 140px !important;
    }

    .banner-style-one .btn {
        font-size: 18pt;
    }
    .benefit-aff .col-lg-6 {
        width: 100%;
    }
    .platform-top .col-lg-6 {
        width: 90% !important;
    }
    .banner-style-one h2 {
        font-size: 46pt;
    }
    .banner-style-one h4 {
        font-size: 24pt;
    }

    .banner-style-one .col-lg-6 img {
        width: 70%;
        height: auto;
    }

    .mr-auto-mobile {
        margin-right: auto !important;
    }
    .ml-auto-mobile {
        margin-left: auto !important;
    }

    .partner-type.default-padding {
        padding: 40px;
    }

    .our-platform-side {
        position: absolute;
        right: 0;
        width: 40%;
        top: 10%;
    }
    .platform-2 {
        margin-top: -50px;
        margin-left: auto !important;
    }
    .platform-3 {
        margin-top: 50px;
        margin-left: auto !important;
    }
    .platform-list .col-lg-7,
    .platform-list .col-lg-6 {
        width: 90% !important;
        padding: 0 15px !important;
    }
    .platform-list .col-lg-5 {
        width: 90% !important;
        padding: 0 !important;
        padding: 0 15px !important;
    }
    .container-fluid {
        overflow: hidden;
    }
    .topic-title {
        font-size: 24pt;
        margin-bottom: 30px;
        color: #000;
    }

    .platform-list h1 {
        font-size: 48pt !important;
        margin-top: 20px;
    }
    .platform-list .inner-content h4 {
        font-size: 18pt;
    }
    .platform-list .img-area img {
        width: 60%;
        height: auto;
    }

    .counter {
        position: absolute;
        right: 30px;
        bottom: 60px;
        font-size: 200px;
        color: #efefef;
        z-index: -1;
        font-weight: 800;
        line-height: 0;
    }
    .counter2 {
        position: absolute;
        right: 30px;
        bottom: 20px;
        font-size: 200px;
        color: #efefef;
        z-index: -1;
        font-weight: 800;
        line-height: 0;
    }
    .counter3 {
        position: absolute;
        right: 30px;
        bottom: 20px;
        font-size: 200px;
        color: #efefef;
        z-index: -1;
        font-weight: 800;
        line-height: 0;
    }
    .counter4 {
        position: absolute;
        left: 60%;
        bottom: 20px;
        font-size: 200px;
        color: #efefef;
        z-index: -1;
        font-weight: 800;
        line-height: 0;
    }

    #scrollable-section {
        padding: 40px 0;
        height: 30vh;
    }
    #growing-content {
        font-size: 45px;
        line-height: 1.1;
    }
    .creative-services-area {
        height: 65vh;
        padding: 40px;
    }

    .cteative-service-item p {
        font-size: 14pt;
        font-size: 400;
    }
    .panel-monthly .col-lg-7 {
        width: 100%;
        text-align: center;
    }
    .ipad-hide {
        display: none;
    }
    .graphic-section-2 {
        padding: 20px 10px;
    }

    .service-page-2 {
        padding: 20px 0;
    }
    .service-page-2 h1.title40 {
        padding-top: 20px;
    }

    .navbar-brand img {
        width: 180px;
        height: auto !important;
    }

    .inner-content p,
    .item p {
        font-size: 16pt;
    }
    .bg-dark .service-page h1.title80 {
        color: #fff;
    }
    .bg-dark .border-top {
        border-top: 1px solid #333 !important;
    }
    .bg-dark .service-area {
        border-top: 1px solid #333 !important;
    }
    .bg-dark h1.title40 {
        color: #fff;
    }
    .service-page.default-padding {
        padding: 20px 20px;
    }
    .service-page h1.title80 {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
        font-size: 24pt;
    }

    .benefit-box h4,
    .item h4 {
        font-size: 18pt;
        margin-bottom: 5px;
        padding-bottom: 0;
    }
    .benefit-box {
        font-size: 14pt;
        font-size: 400;
    }
    #select_package_home,
    #create_project_2,
    #receive_home,
    #revise_home {
        width: 80%;
        margin: 0 auto;
    }
    .panel-how .col-lg-3,
    .panel-benefits .col-lg-4 {
        width: 48%;
        margin: 10px 1%;
    }
    .panel-monthly .title {
        font-size: 35pt;
    }
    .panel-monthly p {
        font-size: 16pt;
    }
    .panel-monthly .col-lg-5 {
        width: 70%;
        margin: 50px auto;
    }
    .service-area {
        padding: 50px 0 20px 0;
        font-size: 12pt;
        font-family: 'Jost', 'sans-serif';
    }
    .service-area h1 {
        font-size: 48pt;
        line-height: 1.1;
    }
    .service-area h1.title80 {
        font-size: 30pt;
    }
    .service-footer .col-lg-6 {
        width: 80%;
    }
    .custom-area .col-lg-6 {
        width: 100%;
    }
    .graphic-brand-area .col-lg-8 {
        width: 100%;
    }
    .panel-havemind .col-lg-6 {
        width: 80%;
        margin: 10px auto;
    }
    .contact-panel-bg {
        position: absolute;
        right: 40px;
        top: 60%;
        bottom: 0;
        height: 40%;
        width: 60%;
        background-size: contain !important; /* Ensures the image covers the entire div without leaving gaps */
        background-clip: padding-box; /* Clips the background within the padding of the div */
        background-repeat: no-repeat !important;
        background-position: center top;
        z-index: 0;
    }
    .graphic-section,
    .graphic-section-3 {
        height: 40vh; /* Full viewport height for each section */
        position: relative;
        line-height: 100px;
        font-size: 100px;
        margin-top: 100px;
    }
    .service-page-2 .col-lg-7 {
        width: 80%;
    }
    /* .graphic-section .contact-panel-side {
        display: none!important;
    } */

    .graphic-section .mobile-side {
        position: absolute;
        bottom: 0;
        right: -100px;
        width: 80%;
        max-height: 550px;
    }

    .graphic-section .mobile-side img {
        height: 100%;
    }

    .bg-dark .stroked-text {
        font-size: 100px; /* Adjust size as needed */
    }

    .stroked-text {
        font-size: 100px; /* Adjust size as needed */
    }
    .service-mobile .col-lg-5 {
        width: 100%;
        margin: 0 auto;
    }
    .service-mobile .col-lg-5 h1.title120 {
        font-size: 40pt;
    }
    .service-mobile .col-lg-7 {
        width: 100%;
    }
    .bg-dark .service-mobile .col-lg-5 h1.title120 {
        color: #fff;
    }
    .title20 {
        font-size: 16pt;
    }
    .inner-content ul li {
        font-size: 16pt;
    }
    .bg-dark .title20 {
        color: #fff;
    }
    .navbar-nav li a {
        font-size: 14pt !important;
    }
    .feature-footer span {
        font-size: 16pt;
    }
    .panel-monthly .btn,
    .panel-monthly .scroll-btn {
        font-size: 16pt;
    }
    .slogan1 {
        height: 50vh;
        display: flex; /* Use Flexbox */
        justify-content: center; /* Horizontally center */
        align-items: center; /* Vertically center */
    }

    .accordion-portfolio-lists li::before {
        position: absolute;
        left: 0;
        bottom: 0;
        content: '';
        height: 50% !important;
        width: 100%;
        background: rgba(255, 255, 255, 0)
            linear-gradient(
                to bottom,
                rgba(255, 255, 255, 0.8) 10%,
                rgba(255, 255, 255, 1) 15%
            )
            repeat scroll 0 0;
        z-index: -1;
        transition: all 0.35s ease-in-out;
        visibility: hidden;
        opacity: 0;
    }

    .accrdion-portfolio-area,
    .accrdion-portfolio-area div {
        height: 50%;
        min-height: 50vh;
    }

    .marquee-content {
        padding: 30px 100px 30px 20px;
    }
}

/* Horizontal (landscape) orientation with max-width of 1024px */
@media screen and (max-width: 950px) and (orientation: landscape) {
    .banner-style-one {
        padding-top: 50px;
    }

    .testimonial-style-one .content {
        background: transparent !important;
    }

    .accordion-portfolio-lists li {
        width: 100% !important;
    }

    .accordion-portfolio-lists li.out {
        width: 100% !important;
    }

    .banner-height-short {
        height: 100vh !important;
        padding-top: 0px !important;
    }
    .our-platform-side {
        position: absolute;
        right: 0;
        width: 40%;
        top: 10%;
        z-index: -1;
    }
    .platform-top .col-lg-6 {
        width: 70% !important;
    }
    .platform-top h1.title80 {
        font-size: 18pt;
        line-height: 1.6;
    }
    .platform-list .col-lg-7 {
        width: 58%;
        padding: 0 1% !important;
    }
    .platform-list .col-lg-5 {
        width: 38%;
        padding: 0 1% !important;
    }
    .platform-list .col-lg-6 {
        width: 48% !important;
        padding: 0 1% !important;
    }
    .topic-title {
        font-size: 16pt;
    }
    .platform-list {
        padding: 20px 0 !important;
    }
    .platform-list h1 {
        font-size: 18pt;
        padding: 0 !important;
        margin: 0 !important;
        line-height: 1.4;
    }
    .platform-list h4 {
        font-size: 12pt;
        line-height: 1.4;
    }
    .header-blank {
        display: none;
    }
    .header-padding {
        height: 40px;
    }
    .checkout-box {
        padding-right: 40px;
    }

    .platform-2 {
        margin-top: 0px;
    }
    .platform-3 {
        margin-top: 200px;
        position: relative;
    }
    .platform-4 {
        padding-bottom: 100px;
        position: relative;
    }
    .counter,
    .counter2,
    .counter3,
    .counter4 {
        font-size: 120pt;
        bottom: 40px;
    }
    .counter4 {
        left: 50%;
    }

    .pricing-banner {
        height: 110vh !important;
    }
    .navbar-brand img {
        width: 200px;
    }
    .slogan1 {
        height: 20vh;
    }
    .banner-style-one {
        height: 80vh;
    }
    #slogan {
        font-size: 20pt;
        display: none;
    }
    #slogan2 {
        font-size: 24pt;
    }
    .banner-one-item h2 {
        font-size: 24pt;
    }
    .banner-one-item h4 {
        font-size: 12pt;
    }
    .banner-one-item .btn {
        font-size: 12pt;
    }
    .checkout-box2 {
        margin-top: 20px;
        border-radius: 20px 20px 20px 20px;
    }
    .checkout-box {
        border: 1px solid #dfdfdf;
        border-radius: 20px 20px 20px 20px;
    }

    .accrdion-portfolio-area,
    .accrdion-portfolio-area div {
        height: 200%;
        min-height: 100vh;
        width: 98%;
        margin: 20px auto;
    }

    .marquee-content {
        padding: 20px 100px 20px 20px;
        font-size: 14pt;
    }
    .accordion-overlay {
        padding-top: 15px;
    }
    .accordion-overlay p {
        font-size: 12pt !important;
    }

    .experience-area .col-lg-6 {
        width: 48%;
        margin: 0 1%;
    }
    .experience-area .inner-content h2,
    .experience-area .inner-content h4 {
        font-size: 14pt !important;
    }
    .experience-area .inner-content p {
        font-size: 10pt !important;
    }
    .experience-area .skill-item {
        font-size: 10pt;
        padding: 5px 0;
    }
    .experience-area .col-md-6 {
        padding-bottom: 0;
    }
    .experience-area .btn {
        font-size: 10pt;
    }
    .experience-area a {
        font-size: 10pt;
    }
    .creative-services-area h4.sub-title,
    .project-home-area h4.sub-title {
        margin-bottom: 0;
        font-size: 10pt;
    }
    .creative-services-area h2.title,
    .project-home-area h2.title {
        font-size: 16pt !important;
    }
    .creative-services-area .site-heading,
    .project-home-area .site-heading {
        margin-bottom: 20px;
        padding-bottom: 0;
    }
    #growing-content {
        font-size: 24pt;
    }

    .serviceNo {
        font-size: 40px;
        color: var(--main);
        line-height: 1;
        font-weight: 800;
    }
    .cteative-service-item {
        padding: 20px;
    }
    .cteative-service-item h4 {
        font-size: 16pt;
    }
    .cteative-service-item p {
        font-size: 10pt;
    }
    .panel-monthly .col-lg-7 {
        width: 60%;
        text-align: left;
        margin: 0 1% !important;
    }
    .panel-monthly .col-lg-5 {
        width: 36%;
        margin: 0 1% !important;
    }
    .panel-monthly,
    .panel-benefits,
    .panel-how,
    .panel-havemind,
    .partner-type {
        padding: 30px 20px !important;
    }
    .lazy-section {
        opacity: 1 !important;
        transform: translateY(0);
    }
    .panel-monthly h4,
    .panel-benefits h4,
    .panel-how h4,
    .panel-havemind h4,
    .team-style-one-area h4.sub-title,
    .partner-type h4.sub-title {
        font-size: 10pt;
        margin-bottom: 5px;
    }
    .panel-monthly h2,
    .panel-benefits h2,
    .panel-how h2,
    .team-style-one-area h2.title,
    .partner-type h2.title {
        font-size: 20pt;
    }
    .panel-havemind h2 {
        font-size: 24pt;
        text-align: left;
    }
    .panel-havemind .col-lg-6 {
        width: 70%;
        text-align: left;
    }
    .panel-benefits .site-title,
    .panel-how .site-title {
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .panel-benefits .col-lg-4 {
        width: 33%;
        padding: 0 1% 5px 1% !important;
        margin-bottom: 0 !important;
    }
    .panel-benefits .benefit-box h4 {
        font-size: 12pt;
    }
    .panel-benefits .benefit-box {
        font-size: 10pt;
        padding: 10px 15px;
    }
    .panel-benefits .btn {
        font-size: 10pt;
    }
    .panel-how .col-lg-3 {
        width: 48%;
        padding: 0 1% 5px 1% !important;
        margin-bottom: 0 !important;
    }
    .panel-how .btn {
        margin-top: 20px;
    }
    .panel-monthly p {
        font-size: 10pt;
    }
    .panel-monthly .btn {
        font-size: 10pt;
    }
    .feature-footer span {
        font-size: 9pt;
    }
    .graphic-section,
    .graphic-section-3 {
        font-size: 50pt;
        line-height: 1.1 !important;
    }
    .service-page-2 h1 {
        font-size: 18pt;
        line-height: 1.4;
    }
    .service-page-2 .col-lg-7 {
        width: 60%;
    }
    .stroked-text {
        font-size: 50pt;
    }
    .bg-dark .stroked-text {
        font-size: 50pt;
    }
    .mobile-side {
        display: none;
    }
    .service-page h1.title80 {
        font-size: 18pt;
        line-height: 1.4;
    }
    .service-page .col-lg-6 {
        width: 48%;
        padding: 0 1%;
    }
    .service-page .btn {
        font-size: 10pt;
    }

    .service-area {
        padding: 40px;
    }
    .service-mobile-2 .col-lg-5 {
        width: 38%;
        padding: 0 1%;
    }
    .service-mobile-2 .col-lg-7 {
        width: 58%;
        padding: 0 1%;
    }
    .service-mobile-2 h4,
    .graphic-brand-area h4,
    .service-mobile h4 {
        font-size: 12pt;
    }
    .service-mobile-2 h1,
    .graphic-brand-area h1,
    .service-mobile h1 {
        font-size: 30pt;
        line-height: 1.1;
    }
    .service-mobile-2 .service-item {
        font-size: 12pt;
    }
    .service-mobile-2 a {
        font-size: 12pt;
    }
    .graphic-brand-area p {
        font-size: 10pt;
    }
    .graphic-brand-area .col-lg-4 {
        width: 33%;
        padding: 0 1% !important;
        line-height: 1;
    }
    .explain-area span {
        font-size: 10pt;
    }
    .explain-area {
        padding: 0;
    }
    .service-footer.default-padding {
        padding: 40px 0;
    }
    .service-footer h2 {
        font-size: 24pt;
        margin-bottom: 40px;
    }
    .worry-area {
        font-size: 12pt;
    }
    .ipad-hide {
        display: none;
    }
    .service-mobile-2 h4 {
        margin-bottom: 5px;
        padding-bottom: 0;
    }
    .service-mobile-2 .inner-content p {
        font-size: 10pt;
    }
    .services-more .item p {
        font-size: 10pt !important;
    }
    .plan-shortdesc {
        font-size: 10pt;
    }
    .plan-details li {
        font-size: 10pt;
    }
}

/* Vertical (portrait) orientation with max-width of 1024px */
@media screen and (max-width: 820px) and (orientation: portrait) {
    .graphic-section-2 {
        height: 120px;
        overflow-y: hidden;
        overflow-x: auto; /* Allows horizontal scrolling */
        padding: 5px 0 !important;
    }
    .accordion-portfolio-lists li {
        width: 100% !important;
    }

    .accordion-portfolio-lists li.out {
        width: 100% !important;
    }

    .testimonial-style-one .content {
        background: transparent !important;
        border-top: 1px solid #fff;
        border-bottom: 1px solid #fff;
    }

    .graphic-section-2 ul {
        display: flex; /* Use flexbox to align items horizontally */
        width: auto; /* Remove width restriction to allow scrolling */
        align-items: center; /* Vertically aligns the content inside the list items */
    }

    .graphic-section-2 ul li {
        font-size: 12pt;
        font-weight: 600;
        text-align: center;
        display: inline-block; /* Ensure list items remain in a line */
        margin-right: 10px; /* Optional spacing between items */
        align-items: center; /* Vertically aligns the content inside the list items */
    }
    .banner-style-one {
        padding-top: 350px;
    }
    .banner-style-one .col-lg-6 {
        width: 100%;
        text-align: center;
    }
    .accordion-overlay {
        padding-top: 20px;
    }
    .accordion-overlay p {
        font-size: 16pt !important;
    }

    #slogan h1 {
        font-size: 40px;
    }
    .title {
        font-size: 48pt !important;
    }

    .service-mobile .col-lg-5 h1.title120 {
        text-align: left;
        font-size: 30pt;
    }

    .expertise-area h2.title {
        font-size: 30pt;
    }

    .service-mobile-2 h4 {
        margin-bottom: 5px;
    }
    .service-mobile-2 h1 {
        font-size: 36pt;
        margin-bottom: 20px;
    }
    .service-mobile-2 .service-item {
        font-size: 18pt;
    }
    .explain-area {
        font-size: 16pt;
        padding: 20px;
    }
    .service-mobile-2 a.service-link {
        font-size: 16pt;
    }

    h2.title {
        font-size: 24pt;
    }
    .service-footer.default-padding {
        padding: 60px 0;
    }
    .banner-height-short {
        height: 60vh;
        padding: 40px 0 !important;
    }

    .ipad-hide-v {
        display: none;
    }
    .banner-style-one h2 {
        font-size: 36pt;
    }
    .banner-style-one h4 {
        font-size: 18pt;
    }

    .accrdion-portfolio-area,
    .accrdion-portfolio-area div {
        height: 80%;
        min-height: 80vh;
        width: 98%;
        margin: 20px auto;
    }
    .creative-services-area h4.sub-title,
    .project-home-area h4.sub-title {
        margin-bottom: 0;
    }
    .creative-services-area h2.title,
    .project-home-area h2.title {
        font-size: 24pt !important;
    }

    .panel-benefits .col-lg-4 {
        width: 98%;
        margin: 10px 1%;
    }

    .panel-how,
    .panel-benefits {
        padding: 40px 0 !important;
    }
    .platform-list h1 {
        font-size: 34pt !important;
        margin-top: 20px;
    }
    .topic-title {
        font-size: 20pt;
        margin-bottom: 10px;
        color: #000;
    }
    .checkout-box {
        padding: 30px 20px 40px 20px;
    }
    .checkout-box2 {
        padding: 30px 20px 30px 20px;
    }
    img.bg-move {
        position: absolute;
        max-width: 400px;
        /* transform: rotate(45deg); */
        left: 0;
        bottom: 0px;
        z-index: 2;
    }

    .platform-top h1.title80 {
        font-size: 20pt;
        line-height: 1.4;
    }

    .benefit-box {
        font-size: 16pt;
    }
    .benefit-box h4 {
        font-size: 20pt;
        margin-bottom: 10px;
    }

    .creative-services-area h2.title,
    .project-home-area h2.title {
        font-size: 28pt;
    }

    .accordion-portfolio-lists li h3 {
        margin-top: -10px !important;
        padding-top: 0;
    }

    .slogan1 .btn {
        font-size: 16pt;
    }

    .navbar-brand img {
        width: 250px;
    }

    .banner-one-item img {
        max-width: 600px;
        height: auto;
    }

    .header-blank {
        height: 0;
    }
    .header-padding {
        height: 50px;
    }

    .checkout-box2 {
        margin-top: 20px;
        border-radius: 20px 20px 20px 20px;
    }
    .checkout-box {
        border: 1px solid #dfdfdf;
        border-radius: 20px 20px 20px 20px;
    }

    .testimonial-one-carousel-box {
        position: relative;
        margin-bottom: 40px;
    }
}

/* Vertical (portrait) orientation with max-width of 1024px */
@media screen and (max-width: 768px) and (orientation: portrait) {
    .graphic-section-2 {
        height: 120px;
        overflow-y: hidden;
        overflow-x: auto; /* Allows horizontal scrolling */
        padding: 10px 0 !important;
        display: flex;
        align-items: center; /* Vertically center the content in the section */
    }

    .graphic-section-2 ul {
        display: flex; /* Aligns list items horizontally */
        width: auto; /* Allows the list to expand horizontally */
        align-items: center; /* Vertically centers the list items inside the ul */
        padding: 0;
        margin: 0;
        list-style-type: none; /* Removes bullet points */
    }

    .graphic-section-2 ul li {
        font-size: 12pt;
        font-weight: 600;
        text-align: center;
        display: flex; /* Enables flexbox inside each li */
        align-items: center; /* Vertically centers the content inside each li */
        justify-content: center; /* Optionally centers content horizontally */
        height: 100%; /* Makes the li fill the container's height */
        margin-right: 10px; /* Optional spacing between items */
    }

    .banner-style-one {
        padding-top: 300px;
    }
    .banner-style-one .col-lg-6 {
        width: 100%;
        text-align: center;
    }

    #slogan2 {
        font-size: 30pt;
    }

    .accordion-overlay {
        padding-top: 20px;
    }
    .accordion-overlay p {
        font-size: 16pt !important;
    }

    #slogan h1 {
        font-size: 40px;
    }
    .title {
        font-size: 48pt !important;
    }

    .service-mobile .col-lg-5 h1.title120 {
        text-align: left;
        font-size: 30pt;
    }

    .expertise-area h2.title {
        font-size: 30pt;
    }

    .service-mobile-2 h4 {
        margin-bottom: 5px;
    }
    .service-mobile-2 h1 {
        font-size: 36pt;
        margin-bottom: 20px;
    }
    .service-mobile-2 .service-item {
        font-size: 18pt;
    }
    .explain-area {
        font-size: 16pt;
        padding: 20px;
    }
    .service-mobile-2 a.service-link {
        font-size: 16pt;
    }

    h2.title {
        font-size: 24pt;
    }
    .service-footer.default-padding {
        padding: 60px 0;
    }
    .banner-height-short {
        height: 60vh;
        padding: 40px 0;
    }

    .ipad-hide-v {
        display: none;
    }
    .banner-style-one h2 {
        font-size: 36pt;
    }
    .banner-style-one h4 {
        font-size: 18pt;
    }

    .accrdion-portfolio-area,
    .accrdion-portfolio-area div {
        height: 100%;
        min-height: 100vh;
        width: 98%;
        margin: 20px auto;
        padding-top: 5px;
    }
    .creative-services-area h4.sub-title,
    .project-home-area h4.sub-title {
        margin-bottom: 0;
    }
    .creative-services-area h2.title,
    .project-home-area h2.title {
        font-size: 24pt !important;
    }

    .panel-benefits .col-lg-4 {
        width: 98%;
        margin: 10px 1%;
    }

    .panel-how,
    .panel-benefits {
        padding: 40px 0 !important;
    }
    .platform-list h1 {
        font-size: 34pt !important;
        margin-top: 20px;
    }
    .topic-title {
        font-size: 20pt;
        margin-bottom: 10px;
        color: #000;
    }

    img.bg-move {
        position: absolute;
        max-width: 400px;
        /* transform: rotate(45deg); */
        left: 0;
        bottom: 0px;
        z-index: 2;
    }

    .platform-top h1.title80 {
        font-size: 20pt;
        line-height: 1.4;
    }

    .benefit-box {
        font-size: 16pt;
    }
    .benefit-box h4 {
        font-size: 20pt;
        margin-bottom: 10px;
    }

    .creative-services-area h2.title,
    .project-home-area h2.title {
        font-size: 28pt;
    }

    .accordion-portfolio-lists li h3 {
        margin-top: -10px !important;
        padding-top: 0;
    }

    .slogan1 .btn {
        font-size: 16pt;
    }

    .navbar-brand img {
        width: 250px;
    }

    .banner-one-item img {
        max-width: 600px;
        height: auto;
    }
}

.testimonial-one-swiper-nav i {
    vertical-align: middle;
    font-size: 24pt;
}
.testimonial-one-swiper-nav .testimonial-one-pagination {
    font-size: 18pt;
    padding: 0;
    margin-top: -5px;
}

@media screen and (max-width: 480px) and (orientation: portrait) {
    .banner-style-one {
        padding-top: 200px!important;
    }
    .testimonial-style-one p {
        font-size: 12pt !important;
    }
    .project-home-area {
        text-align: center;
    }
    .project-home-area {
        padding: 40px !important;
    }
    .login-area {
        padding: 40px 0;
    }
    .login-area .logo {
        margin-top: 5px;
    }
    .login-box .bottom a {
        display: block;
    }
    .login-box .bottom {
        text-align: left;
    }

    .services-nav {
        top: 0;
        width: 50px;
        right: -30px;
    }

    .testimonial-style-one {
        padding: 30px 10px;
        text-align: center;
        border-bottom: 1px solid #dddddd;
    }

    .project-home-area .heading-left {
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .testimonial-one-swiper-nav {
        padding: 0px 0;
        margin-top: 20px;
        text-align: center;
    }
    .project-nav {
        max-width: 150px;
        margin: 5px auto 15px auto;
        display: block;
        padding: 0px 10px;
    }
    .project-nav .nav-items {
        padding: 0px 10px !important;
        height: 50px;
    }
    .services-nav .nav-items {
        width: 50px !important;
    }

    .services-button-next {
        border-top: 1px solid #efefef;
    }
    .services-button-next,
    .services-button-prev {
        width: 50px;
    }

    .cteative-service-item {
        padding: 20px;
        border-radius: 20px;
    }
    .panel-monthly,
    .panel-benefits,
    .panel-how,
    .panel-havemind {
        padding: 40px 20px !important;
        height: auto !important;
    }
    .panel-monthly h4.sub-title,
    .panel-benefits h4.sub-title,
    .panel-how h4.sub-title,
    .panel-havemind h4.sub-title,
    .team-style-one-area h4.sub-title,
    .partner-type h4.sub-title {
        font-size: 12pt !important;
        margin-bottom: 5px;
    }
    .panel-monthly h2.title,
    .panel-benefits h2.title,
    .panel-how h2.title,
    .team-style-one-area h2.title,
    .partner-type h2.title {
        font-size: 20pt !important;
    }
    .panel-monthly .btn {
        font-size: 12pt;
        border-radius: 50px;
    }
    .panel-monthly p {
        font-size: 12pt;
    }
    .feature-footer span {
        font-size: 11pt;
    }
    .panel-benefits .site-title,
    .panel-how .site-title {
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .panel-how .col-lg-3 {
        width: 98%;
    }

    .banner-one-item h2 {
        font-size: 18pt;
    }
    .banner-one-item h4 {
        font-size: 12pt;
    }
    .banner-style-one .btn {
        font-size: 12pt;
        border-radius: 50px;
    }
    li.side-menu {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin: 0 0px;
        width: 50px;
    }
    #slogan h1 {
        font-size: 18pt;
        line-height: 1.2;
    }
    #slogan .btn {
        font-size: 12pt;
        display: block;
        margin-bottom: 10px;
        border-radius: 50px;
    }
    .slogan1 {
        height: 80vh;
    }
    #slogan2 {
        font-size: 24pt;
    }

    .accordion-portfolio-lists li h3 {
        font-size: 18px;
    }

    .serviceNo {
        font-size: 40px;
        color: var(--main);
        line-height: 1;
        font-weight: 800;
    }
    .cteative-service-item h4 {
        font-size: 18pt;
    }
    .cteative-service-item p {
        font-size: 12pt;
    }

    ul.accordion-portfolio-lists {
        margin-top: 0 !important;
    }
    #accordion-list {
        margin-top: 0;
        padding-top: 0 !important;
    }
    .accrdion-portfolio-area {
        height: 100vh;
        padding: 0px 0;
        margin: 0;
    }
    .creative-services-area h4.sub-title,
    .project-home-area h4.sub-title {
        font-size: 12pt;
    }
    .creative-services-area h2.title,
    .project-home-area h2.title {
        font-size: 16pt !important;
    }

    accordion-overlay h2 {
        font-size: 24pt !important;
    }
    .accordion-overlay p {
        font-size: 12pt !important;
    }
    .accordion-overlay {
        margin-top: 40px;
    }
    .experience-area .inner-content {
        font-size: 12pt;
    }
    .experience-area .inner-content p {
        font-size: 12pt;
    }
    .panel-benefits .benefit-box h4,
    .partner-type .benefit-box h4 {
        font-size: 14pt !important;
    }
    .panel-benefits .benefit-box,
    .partner-type .benefit-box {
        font-size: 12pt !important;
        padding: 20px !important;
    }
    .creative-services-area {
        height: 70vh;
    }
    #growing-content {
        font-size: 18pt;
    }

    /* Add some padding to make the section more spacious */
    .skills-list .col-md-6 {
        padding-bottom: 5px;
    }
    .skill-item {
        padding: 5px 0;
    }
    .panel-how .benefit-box {
        padding: 20px !important;
    }
    .panel-how .benefit-box h4 {
        font-size: 16pt !important;
    }
    .panel-how .benefit-box {
        font-size: 12pt !important;
    }

    #select_package_home,
    #create_project_2,
    #receive_home,
    #revise_home {
        width: 100%;
        margin: 0 auto;
    }
    .panel-havemind h2.title {
        font-size: 20pt !important;
    }
    .navbar-brand img,
    .navbar-collapse img {
        width: 180px;
    }
    .side.on {
        width: 100%;
        padding: 0 30px 0 10px;
    }
    .side .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    .side .close-side {
        right: 30px;
    }
    .navbar-collapse .navbar-toggle {
        margin-top: -10px !important;
        
    }

    .marquee-content {
        font-size: 14pt;
    }

    .graphic-section,
    .graphic-section-3 {
        font-size: 50px;
        line-height: 1.2;
        height: 60vh;
    }

    .the-title {
        position: absolute;
        bottom: 20px;
        left: 20px;
        color: var(--main);
    }

    .bg-dark .stroked-text {
        font-size: 50px; /* Adjust size as needed */
    }

    .stroked-text {
        font-size: 50px; /* Adjust size as needed */
    }

    .service-page h1.title80 {
        font-size: 16pt;
        line-height: 1.4;
    }
    .service-page.default-padding {
        padding: 60px 20px;
    }
    .service-page .btn {
        font-size: 12pt;
        width: 80%;
    }
    .service-page .mt100 {
        margin-top: 50px;
    }
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }

    .service-mobile-2 h4,
    .graphic-brand-area h4,
    .service-mobile h4 {
        font-size: 12pt;
    }
    .service-mobile-2 h1,
    .graphic-brand-area h1 {
        font-size: 24pt;
    }
    .service-mobile-2 p {
        font-size: 12pt;
    }
    .service-mobile-2 .service-item {
        font-size: 12pt;
        padding: 5px 0;
        margin-bottom: 0 !important;
    }
    .service-mobile-2 a.service-link {
        font-size: 12pt;
    }
    .service-mobile-2 .col-md-6 {
        padding-bottom: 5px !important;
    }
    .graphic-brand-area .inner-content p {
        font-size: 12pt;
    }
    .explain-area .withwhitebg {
        font-size: 12pt;
    }
    .service-footer {
        width: 100%;
        padding: 40px 20px !important;
    }
    .service-footer h2.title {
        font-size: 24pt !important;
    }
    .service-footer .col-lg-6 {
        width: 100%;
    }

    .service-footer .btn {
        width: 100%;
        margin: 10px auto;
        line-height: 1.6;
    }
    .service-footer .btn.mt5 {
        margin-top: 10px !important;
    }
    .contact-panel-side {
        width: 100% !important;
    }
    .mobile-side {
        width: 100% !important;
        right: -50px !important;
    }
    .service-page-2 h1.title40 {
        font-size: 16pt;
        line-height: 1.4;
    }
    .service-page-2 .col-lg-7 {
        width: 100%;
    }

    .service-mobile .col-lg-5 h1.title120 {
        line-height: 1.4;
        font-size: 16pt;
    }
    .service-mobile h4 {
        margin-bottom: 10px;
    }
    .service-mobile p.title20 {
        font-size: 12pt;
    }
    .service-mobile .inner-content p {
        font-size: 12pt;
    }

    .service-mobile .service-item {
        font-size: 12pt;
        padding: 5px 0;
        margin-bottom: 0 !important;
    }
    .full-service ul li {
        font-size: 12pt;
    }
    .graphic-section-3 {
        overflow: hidden !important;
    }

    .panel-how .btn {
        border-radius: 50px;
        display: block;
        margin-bottom: 10px;
    }
    .service-footer .btn {
        border-radius: 50px;
    }

    .banner-height-short {
        height: 60vh !important;
        padding: 30px 0;
    }
    .partner-type p {
        font-size: 12pt;
    }
    .partner-type .col-lg-8 {
        width: 100%;
    }

    .our-platform-side {
        position: absolute;
        right: 0;
        width: 90%;
        top: 10%;
        z-index: -1;
    }

    .platform-top h1.title80 {
        font-size: 16pt;
        line-height: 1.4;
        margin-bottom: 30px;
    }
    .platform-list h1 {
        font-size: 18pt !important;
        margin-top: 20px;
    }
    .platform-list h4 {
        font-size: 12pt !important;
        margin-top: 20px;
        line-height: 1.6;
    }
    .platform-list .img-area img {
        width: 100%;
        height: auto;
    }
    .counter3 {
        top: 150px;
    }
    .counter {
        bottom: 20px;
    }
    .counter,
    .counter2,
    .counter3,
    .counter4 {
        font-size: 100pt;
    }
    .counter4 {
        left: 45%;
    }
    .platform-list .btn {
        font-size: 12pt;
        border-radius: 50px;
    }

    h2.details-header {
        font-size: 10pt;
        right: 40px;
        text-align: center;
    }

    .testimonial-one-carousel-box {
        position: relative;
        margin-bottom: 20px;
    }

    .background-video {

        object-position: 60% center; /* Keep the content aligned to the left 60% */

    }

    .navbar.no-background ul.navbar-nav li a { color:#000!important; }
    .navbar.no-background ul.navbar-nav li a.active, .navbar.no-background ul.navbar-nav li a:hover, .navbar.no-background ul.navbar-nav li ul.dropdown-menu li a:hover  { color:var(--main)!important; }
    .navbar.no-background ul.navbar-nav li ul.dropdown-menu li a { color:#000!important; }
    
    
}


.background-video {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    z-index: -2; 
}

.banner-style-one .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4); 
    z-index: -1; 
}

 .navbar.no-background ul.navbar-nav li a { color:#fff; }
.navbar.no-background ul.navbar-nav li a.active, .navbar.no-background ul.navbar-nav li a:hover, .navbar.no-background ul.navbar-nav li ul.dropdown-menu li a:hover  { color:var(--main)!important; }
.navbar.no-background ul.navbar-nav li ul.dropdown-menu li a { color:#000!important; }
