/*================================================
Template name: Rdsto App Landing HTML Template
Version: 1.0.0
Author: Design Expert
Author url: https://themeforest.net/user/designexpart260
Developer: Najmul Huda Eimon

[ Table of Contents ]

01: General css Style
  1.1: variables
  1.2: common css
  1.3: headings
  1.4: padding margin
  1.5: section title
02: custom cursor css Style
03: preloader
04: top-to button
05: Sticky menu CSS
06: home 1 css Style
  6.1: menubar css Style
  6.2: banner css Style
  6.3: modal
  6.4: feature
  6.5: counter
  6.6: about
  6.7: portfolio
  6.8: team
  6.9: mobile
  6.10: video
  6.11: client
  6.12: brand
  6.13: blog
  6.14: footer
    6.14.1: footer-top
    6.14.2: footer-bottom
07: home 2 css
  7.1: banner
  7.2: feature
  7.3: newsletter
  7.4: screenshot
  7.5: video
  7.6: mobile
  7.7: pricing
08: inner-page css
  8.1: menubar
  8.2: banner
09: service page
10: team page
11: blog page
12: blog details page CSS
13: service-detail page
14: project detail page
15: team detail page
16: contact page

==================================================*/

/*================================================
01: General css Style
==================================================*/

/* 1.1: variables */
:root {
    --light-orange: #f2ab3c;
    --deep-orange: #f2ab3c;
    --gradient: linear-gradient(to bottom, #f2ab3c, #f2ab3c);
    --gradienta: linear-gradient(to bottom, #ffab6b, #fb6d62);
    --dark: #061738;
    --grey: #606060;
    --white: #fff;
    --josefin: "Poppins", sans-serif;
    /*--josefin: 'Josefin Sans', sans-serif;*/
    /*--heebo: 'Heebo', sans-serif;*/
}

/* 1.2: common css */
body {
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100%;
}

* {
    margin: 0;
    padding: 0;
}

img {
    vertical-align: middle;
}

.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}

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

a,
a:hover,
a:focus {
    text-decoration: none;
}

.clr {
    clear: both;
}

button:focus {
    outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li,
a {
    margin-top: 0;
    margin-bottom: 0;
    -webkit-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    transition: all linear 0.3s;
}

button {
    outline: none;
    border: 0;
    cursor: pointer;
    background: transparent;
}

button:focus {
    outline: none;
}

.clearfix {
    clear: both;
    display: block;
}

input[type="number"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
}

::-moz-selection {
    background: var(--deep-orange);
    color: var(--white);
    text-shadow: none;
}

::selection {
    background: var(--deep-orange);
   
    color: var(--white);
    text-shadow: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s;
}

textarea {
    resize: none;
}

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

a,
a:hover,
a:active,
a:focus {
    text-decoration: none;
    outline: none;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* 1.3: headings */

h1 {
    font-size: 75px;
    line-height: 90px;
    color: var(--dark);
}

h2 {
    font-size: 50px;
    line-height: 50px;
    color: var(--dark);
}

h3 {
    font-size: 40px;
    line-height: 50px;
    color: var(--dark);
}

h4 {
    font-size: 30px;
    line-height: 46px;
    color: var(--dark);
}

h5 {
    font-size: 24px;
    line-height: 42px;
    color: var(--dark);
}

h6 {
    font-size: 22px;
    line-height: 28px;
    color: var(--dark);
}

p {
    font-size: 16px;
    line-height: 26px;
    color: var(--grey);
    font-family: var(--heebo);
    font-weight: 400;
}

/* 1.4: padding margin */

.p-10 {
    padding: 10px 0;
}

.pt-10 {
    padding-top: 10px;
}

.pb-10 {
    padding-bottom: 10px;
}

.p-20 {
    padding: 20px 0;
}

.pt-20 {
    padding-top: 20px;
}

.pb-20 {
    padding-bottom: 20px;
}

.p-30 {
    padding: 30px 0;
}

.pt-30 {
    padding-top: 30px;
}

.pb-30 {
    padding-bottom: 30px;
}

.p-40 {
    padding: 40px 0;
}

.pt-40 {
    padding-top: 40px;
}

.pb-40 {
    padding-bottom: 40px;
}

.p-50 {
    padding: 50px 0;
}

.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}

.p-60 {
    padding: 60px 0;
}

.pt-60 {
    padding-top: 60px;
}

.pb-60 {
    padding-bottom: 60px;
}

.p-70 {
    padding: 70px 0;
}

.pt-70 {
    padding-top: 70px;
}

.pb-70 {
    padding-bottom: 70px;
}

.p-80 {
    padding: 80px 0;
}

.pt-80 {
    padding-top: 80px;
}

.pb-80 {
    padding-bottom: 80px;
}

.p-90 {
    padding: 90px 0;
}

.pt-90 {
    padding-top: 90px;
}

.pb-90 {
    padding-bottom: 90px;
}

.p-100 {
    padding: 100px 0;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.p-110 {
    padding: 110px 0;
}

.pt-110 {
    padding-top: 110px;
}

.pb-110 {
    padding-bottom: 110px;
}

.p-120 {
    padding: 120px 0;
}

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

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

.m-10 {
    margin: 10px 0;
}

.mt-10 {
    margin-top: 10px;
}

.mb-10 {
    margin-bottom: 10px;
}

.m-20 {
    margin: 20px 0;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.m-30 {
    margin: 30px 0;
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.m-40 {
    margin: 40px 0;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

.m-50 {
    margin: 50px 0;
}

.mt-50 {
    margin-top: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

.m-60 {
    margin: 60px 0;
}

.mt-60 {
    margin-top: 60px;
}

.mb-60 {
    margin-bottom: 60px;
}

.m-70 {
    margin: 70px 0;
}

.mt-70 {
    margin-top: 70px;
}

.mb-70 {
    margin-bottom: 70px;
}

.m-80 {
    margin: 80px 0;
}

.mt-80 {
    margin-top: 80px;
}

.mb-80 {
    margin-bottom: 80px;
}

.m-90 {
    margin: 90px 0;
}

.mt-90 {
    margin-top: 90px;
}

.mb-90 {
    margin-bottom: 90px;
}

.m-100 {
    margin: 100px 0;
}

.mt-100 {
    margin-top: 100px;
}

.mb-100 {
    margin-bottom: 100px;
}

.m-110 {
    margin: 110px 0;
}

.mt-110 {
    margin-top: 110px;
}

.mb-110 {
    margin-bottom: 110px;
}

.m-120 {
    margin: 120px 0;
}

.mt-120 {
    margin-top: 120px;
}

.mb-120 {
    margin-bottom: 120px;
}

/* 1.5: section title */
.section-title {
    text-align: left;
    /*padding-bottom: 55px;*/
    margin-top: -8px;
}

.nav-link .icon rect {
    fill: #ebebeb;
    /* default light background */
    transition: fill 0.3s ease;
}

.nav-link.active .icon rect {
    fill: #f2ab3c;
    /* dark yellow on active tab */
}

.section-title h2 {
    text-transform: capitalize;
    /*font-weight: 700;*/
    font-family: var(--josefin);
    padding-bottom: 15px;
}

/*================================================
02: custom cursor css Style
==================================================*/
.custom-cursor {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    pointer-events: none;
    z-index: 10000;
    transition: opacity 0.2s ease-in-out 0.5s;
    -webkit-transition: opacity 0.2s ease-in-out 0.5s;
    -moz-transition: opacity 0.2s ease-in-out 0.5s;
    -ms-transition: opacity 0.2s ease-in-out 0.5s;
    -o-transition: opacity 0.2s ease-in-out 0.5s;
}

#cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--deep-orange);
    pointer-events: none;
    opacity: 0.5;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
    box-sizing: border-box;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

#cursor::after {
    position: absolute;
    content: "";
    top: calc(50% - 2px);
    left: calc(50% - 2px);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--deep-orange);
    z-index: 100;
    pointer-events: none;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

#cursor-ball {
    width: 40px;
    height: 40px;
    position: absolute;
    background-color: transparent;
    border-right: 2px solid transparent;
    border-bottom: 2px solid var(--deep-orange);
    border-left: 2px solid transparent;
    border-top: 2px solid transparent;
    border-radius: 50px;
    box-sizing: border-box;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    transform: translate(-9px, -9px) rotate(0deg);
    -webkit-animation: rotating 0.8s ease-in-out infinite;
    animation: rotating 0.8s ease-in-out infinite;
    -webkit-transition: opacity 0s ease-in-out 0s;
    transition: opacity 0s ease-in-out 0s;
}

@-webkit-keyframes rotating {
    0% {
        -webkit-transform: translate(-7px, -7px) rotate(0deg);
        transform: translate(-7px, -7px) rotate(0deg);
    }

    95% {
        -webkit-transform: translate(-7px, -7px) rotate(350deg);
        transform: translate(-7px, -7px) rotate(350deg);
    }

    100% {
        -webkit-transform: translate(-7px, -7px) rotate(360deg);
        transform: translate(-7px, -7px) rotate(360deg);
    }
}

@keyframes rotating {
    0% {
        -webkit-transform: translate(-7px, -7px) rotate(0deg);
        transform: translate(-7px, -7px) rotate(0deg);
    }

    95% {
        -webkit-transform: translate(-7px, -7px) rotate(350deg);
        transform: translate(-7px, -7px) rotate(350deg);
    }

    100% {
        -webkit-transform: translate(-7px, -7px) rotate(360deg);
        transform: translate(-7px, -7px) rotate(360deg);
    }
}

/*================================================
03: preloader
==================================================*/

.preloader {
    width: 100%;
    height: 100%;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    background: var(--white);
}

.preloader .circle1,
.preloader .circle2 {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--light-orange);
    animation: anim12 1.2s ease-in infinite;
}

.preloader .circle2 {
    width: 100px;
    height: 100px;
    animation: anim12-2 1.2s ease-out infinite;
    border: 2px solid var(--deep-orange);
}

@keyframes anim12 {
    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

@keyframes anim12-2 {
    0% {
        opacity: 0;
    }

    100% {
        width: 20px;
        height: 20px;
        opacity: 1;
    }
}

/*=========================================================
    04: top-to button
===========================================================*/

.top-btn {
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
    background: var(--gradient);
    position: fixed;
    right: 40px;
    bottom: 40px;
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    outline: none;
    -webkit-transition: all linear 0.4s;
    -moz-transition: all linear 0.4s;
    -ms-transition: all linear 0.4s;
    -o-transition: all linear 0.4s;
    transition: all linear 0.4s;
    cursor: pointer;
    -webkit-animation: witr_bounce 1000ms ease-out infinite;
    animation: witr_bounce 1000ms ease-out infinite;
}

.top-btn:hover {
    background: var(--deep-orange);
}

@keyframes witr_bounce {
    0%,
    100%,
    20%,
    50%,
    80% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    60% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}

.top-btn i {
    font-size: 14px;
    color: #fff;
}

.top-btn.show {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}

/*===========================================================
    05: Sticky menu CSS
=============================================================*/
.menubar.sticky {
    /*position: fixed !important;*/
    top: 0 !important;
    left: 0 !important;
    width: 100%;
    background: #fff;
    z-index: 999;
    animation: mymove 0.4s linear;
    -webkit-box-shadow: 2px 0 70px hsla(0, 0%, 13%, 0.15);
    box-shadow: 2px 0 70px hsla(0, 0%, 13%, 0.15);
}

@keyframes mymove {
    0% {
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }

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

/*================================================
06: home 1 css Style
==================================================*/
/*================================================
6.1: menubar css Style
==================================================*/
.menubar {
    width: 100%;
    /*position: absolute;*/
    top: 0;
    left: 0;
    z-index: 9;
}

.menubar .header-menu {
    margin-left: auto;
}

.menubar .right-part ul li {
    padding-left: 50px;
}

.menubar .right-part button i {
    font-size: 16px;
    color: var(--white);
}

.menubar .right-part a {
    font-family: var(--heebo);
    font-weight: 500;
    display: inline-block;
    padding: 0 30px;
    line-height: 50px;
    color: var(--dark);
    background: var(--white);
    text-transform: capitalize;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border: 1px solid var(--white);
}

.menubar .right-part a:hover {
    background: transparent;
}

/*================================================
6.2: banner css Style
==================================================*/
.home1.banner {
    padding-top: 0px;
    padding-bottom: 10px;
}

.home1.banner .content {
    margin-left: -35px;
    margin-right: -35px;
    position: relative;
}

.home1.banner .text-area h1 {
    /*font-weight: 700;*/
    /*color: var(--white);*/
    font-family: var(--josefin);
}

.home1.banner .text-area p {
    /*color: var(--white);*/
    width: 80%;
    /*padding-top: 25px;*/
    padding-bottom: 45px;
}

.home1.banner .text-area ul li:not(:last-child) {
    padding-right: 30px;
}

.home1.banner .image-area {
    position: absolute;
    right: 0;
    bottom: -160px;
}

/*================================================
6.3: modal
==================================================*/
.modal .modal-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    text-transform: capitalize;
    font-family: var(--josefin);
}

.modal .modal-body .inputs {
    width: 100%;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    padding: 0 20px;
    outline: none;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.modal .modal-body .inputs:hover,
.modal .modal-body .inputs:focus {
    border-color: var(--deep-orange);
}

.modal .modal-body .inputs::placeholder {
    font-size: 16px;
    color: var(--grey);
    text-transform: capitalize;
}

.modal .modal-body .search-area {
    position: relative;
}

.modal .modal-body .search-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    right: 10px;
    z-index: 9;
}

.modal .modal-body .search-btn i {
    font-size: 16px;
    color: var(--deep-orange);
}

/*================================================
6.4: feature
==================================================*/
.home1.feature .item {
    background: var(--white);
    box-shadow: 0 0 48px rgba(0, 0, 0, 0.06);
    padding: 45px;
    position: relative;
    z-index: 1;
}

.home1.feature .item:before {
    content: "";
    height: 100%;
    width: 100%;
    background: var(--gradient);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
}

.home1.feature .item:hover {
    transform: translateY(-6px);
    -webkit-transform: translateY(-6px);
    -moz-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    -o-transform: translateY(-6px);
}

.home1.feature .item:hover:before {
    opacity: 1;
}

.home1.feature .item .icon {
    padding-bottom: 20px;
}

.home1.feature .item .icon i {
    font-size: 60px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home1.feature .item span {
    display: inline-block;
    font-family: var(--josefin);
    font-size: 60px;
    font-weight: 600;
    color: #ddd;
    position: absolute;
    top: 45px;
    right: 40px;
    z-index: 5;
}

.home1.feature .item h5 {
    font-family: var(--josefin);
    font-weight: 700;
    text-transform: capitalize;
}

.home1.feature .item p {
    padding-top: 10px;
    padding-bottom: 35px;
}

.home1.feature .item a i {
    font-size: 30px;
    color: var(--dark);
}

.home1.feature .item,
.home1.feature .item:before,
.home1.feature .item .icon i,
.home1.feature .item h5,
.home1.feature .item p,
.home1.feature .item a i {
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.home1.feature .item:hover h5,
.home1.feature .item:hover p,
.home1.feature .item:hover a i {
    color: var(--white);
}

.home1.feature .item:hover .icon i {
    background: var(--white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*================================================
6.5: counter
==================================================*/
.home1.counter .item .icon {
    height: 180px;
    width: 180px;
    border: 8px solid var(--white);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin: auto;
    text-align: center;
}

.home1.counter .item .icon i {
    font-size: 65px;
    color: var(--white);
    line-height: 164px;
}

.home1.counter .item1 .icon {
    background: #f084dc;
}

.home1.counter .item2 .icon {
    background: var(--gradienta);
}

.home1.counter .item3 .icon {
    background: #69ccff;
}

.home1.counter .item4 .icon {
    background: #8b68ef;
}

.home1.counter .item h4 {
    font-family: var(--josefin);
    text-transform: capitalize;
    padding-top: 15px;
    padding-bottom: 20px;
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0.5%;
    text-align: center;
    color: #141414;
}

.home1.counter .item h2 {
    font-family: var(--heebo);
    color: #f2ab3c;

    font-weight: 700;
    font-size: 45px;
    line-height: 120%;
    letter-spacing: 0.5%;
    text-align: center;
}

/*================================================
6.6: about
==================================================*/
.home1.about .content {
    padding-right: 100px;
}

.home1.about .content h3,
.home1.about .content h6 {
    font-family: var(--josefin);
    font-weight: 700;
}

.home1.about .content h3 {
    padding-bottom: 35px;
}

.home1.about .content h6 {
    text-transform: capitalize;
}

.home1.about .content p {
    width: 80%;
}

.home1.about .content ul li {
    padding-top: 25px;
}

.home1.about .content .icon {
    padding-right: 25px;
}

.home1.about .content .icon i {
    font-size: 40px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*================================================
6.7: portfolio
==================================================*/
.home1.portfolio {
    background: #f9f8ff;
}

.home1.portfolio .project-menu {
    margin-bottom: 60px;
}

.home1.portfolio .project-menu li a {
    display: inline-block;
    font-family: var(--heebo);
    font-size: 17px;
    text-transform: capitalize;
    font-weight: 400;
    color: var(--grey);
    clip-path: polygon(0 0, 100% 0%, 70% 100%, 0% 100%);
    background: transparent;
    padding: 13px 32px 13px 12px;
}

.home1.portfolio .project-menu .active a {
    background: var(--gradient);
    color: var(--white);
}

.home1.portfolio .item {
    position: relative;
    margin-bottom: 30px;
}

.home1.portfolio .item img {
    width: 100%;
}

.home1.portfolio .item .overlay {
    position: absolute;
    top: 100%;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--gradient);
    text-align: center;
}

.home1.portfolio .item .overlay .text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    z-index: 9;
}

.home1.portfolio .item .overlay a {
    position: absolute;
    bottom: 20px;
    right: 30px;
    z-index: 9;
}

.home1.portfolio .item h6 {
    font-weight: 700;
    font-family: var(--josefin);
    color: var(--white);
    text-transform: capitalize;
}

.home1.portfolio .item p {
    font-weight: 500;
    font-family: var(--heebo);
    color: var(--white);
    text-transform: capitalize;
}

.home1.portfolio .item a i {
    font-size: 40px;
    color: var(--white);
}

/*================================================
6.8: team
==================================================*/
.home1.team .item {
    text-align: center;
    box-shadow: 3px 0 63px rgba(0, 0, 0, 0.07);
    padding: 30px;
}

.home1.team .item .image img {
    width: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.home1.team .item h6 {
    font-family: var(--josefin);
    font-weight: 700;
    text-transform: capitalize;
    padding-top: 30px;
}

.home1.team .item h6:hover {
    color: var(--deep-orange);
}

.home1.team .item h6,
.home1.team .item ul li a:after,
.home1.team .item ul li a i {
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.home1.team .item p {
    text-transform: capitalize;
    padding-top: 5px;
    padding-bottom: 15px;
}

.home1.team .item ul li {
    padding: 0 5px;
}

.home1.team .item ul li a {
    display: inline-block;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: #f3f3f3;
    text-align: center;
    position: relative;
    z-index: 1;
}

.home1.team .item ul li a:after {
    content: "";
    height: 100%;
    width: 100%;
    background: var(--gradient);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
}

.home1.team .item ul li a i {
    font-size: 16px;
    line-height: 40px;
    color: var(--deep-orange);
}

.home1.team .item ul li a:hover:after {
    opacity: 1;
}

.home1.team .item ul li a:hover i {
    color: var(--white);
}

/*================================================
6.9: mobile
==================================================*/
.home1.mobile .bg {
    /*background: var(--gradient);*/
    border-radius: 6px;
    background: #f2ab3c;

    position: relative;
}

.home1.mobile .image {
    position: absolute;
    bottom: 0;
    left: 50px;
}

.home1.mobile .content {
    padding: 55px 100px 60px 30px;
}

.home1.mobile .content h3 {
    font-family: var(--josefin);
    font-size: 45px;
    color: #000;
    font-weight: 700;
    width: 70%;
}

.home1.mobile .content p {
    color: #000;

    padding-top: 20px;
    padding-bottom: 35px;
}

.home1.mobile .content ul li:not(:last-child) {
    padding-right: 30px;
}

/*================================================
6.10: video
==================================================*/
.home1.video {
    /*margin-top: -220px;*/
    background-attachment: fixed !important;
}

.home1.video .overlay {
    background: #222222;
}

.home1.video .content .vid-icon {
    display: inline-block;
    padding: 0;
    height: 55px;
    width: 55px;
    text-align: center;
    background: var(--white);
    border-radius: 50%;
    position: relative;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.home1.video .content .vid-icon i {
    line-height: 55px;
    font-size: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home1.video .content .vid-icon i:after {
    position: absolute;
    content: "";
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 20px;
    height: 55px;
    width: 55px;
    border-radius: 50%;
    box-shadow:
        0 0 rgba(255, 255, 255, 0.1),
        0 0 0 15px rgba(255, 255, 255, 0.1),
        0 0 0 30px rgba(255, 255, 255, 0.1);
    animation: ripple-wave1 1s linear infinite;
    animation-play-state: running;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    -webkit-animation: ripple-wave1 1s linear infinite;
}

.home1.video .content p {
    color: var(--white);
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 500;
    /*padding-top: 55px;*/

    font-weight: 700;
    font-size: 48px;
    line-height: 56px;
    letter-spacing: 0%;
    text-align: center;
    padding-bottom: 15px;
}

.home1.video .content span {
    font-weight: 400;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
    color: #fff;
}

@keyframes ripple-wave1 {
    to {
        box-shadow:
            0 0 0 15px rgba(255, 255, 255, 0.1),
            0 0 0 30px rgba(255, 255, 255, 0.1),
            0 0 0 45px rgba(255, 255, 255, 0.02);
    }
}

/*================================================
6.11: client
==================================================*/
.home1.client .section-title {
    padding-bottom: 80px;
}

.home1.client .shape {
    height: 280px;
    width: 280px;
    background: #ffeae9;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    position: absolute;
    top: -20px;
    left: 50px;
}

.home1.client .image {
    height: 85px;
    border: 2px solid #f2ab3c;
    padding: 10px;
    width: 85px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    overflow: hidden;
    position: relative;
    margin: auto;
}

.home1.client .image:after {
    content: "";
    height: 100%;
    width: 100%;
    /*background: rgba(0, 0, 0, 0.24);*/
    position: absolute;
    top: 0;
    left: 0;
}

.home1.client .image img {
    width: 100%;
}

.home1.client .item h6 {
    font-family: var(--josefin);
    text-transform: capitalize;
    font-weight: 700;
    padding-top: 35px;
    padding-bottom: 5px;
}

.home1.client .item p {
    width: 100%;
    padding-top: 40px;
    font-size: 19px;
    font-weight: 400;
}

.home1.client .item .designation {
    text-transform: capitalize;
}

.home1.client .swiper-pagination {
    text-align: left;
    bottom: 0;
}

.home1.client .swiper-pagination-bullet {
    height: 10px;
    width: 10px;
    background: var(--deep-orange);
    border-radius: 0;
    -webkit-border-radius: 100px;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.home1.client .swiper-pagination-bullet.swiper-pagination-active {
    opacity: 1;
}

/*=========================================================
    6.12: brand
===========================================================*/
.home1.brand {
    background: var(--gradient);
}

/*=====================================================
6.13: blog
======================================================*/

.home1.blog .single-blog {
    background: var(--white);
    box-shadow: 0 0 92px rgba(102, 68, 68, 0.08);
}

.home1.blog .single-blog .image {
    position: relative;
}

.home1.blog .single-blog .image img {
    width: 100%;
}

.home1.blog .single-blog .image:after {
    content: "";
    height: 100%;
    width: 100%;
    background: linear-gradient(
        to bottom,
        rgba(251, 108, 98, 0.7),
        rgba(255, 171, 107, 0.7)
    );
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
    transform: scale(0.2);
    -webkit-transform: scale(0.2);
    -moz-transform: scale(0.2);
    -ms-transform: scale(0.2);
    -o-transform: scale(0.2);
    opacity: 0;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}

.home1.blog .single-blog:hover .image:after {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    opacity: 1;
}

.home1.blog .single-blog .content {
    padding: 25px 30px 30px 30px;
}

.home1.blog .single-blog .content h6 {
    font-family: var(--josefin);
    font-weight: 700;
    padding-bottom: 15px;
}

.home1.blog .single-blog .content ul {
    padding-bottom: 15px;
}

.home1.blog .single-blog .content ul li:not(:last-child) {
    padding-right: 20px;
}

.home1.blog .single-blog .content ul li a {
    font-family: var(--heebo);
    font-size: 15px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--grey);
}

.home1.blog .single-blog .content ul li a i {
    padding-right: 10px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home1.blog .single-blog .content .read-more {
    display: inline-block;
    font-family: var(--josefin);
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    text-transform: capitalize;
    margin-top: 15px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.home1.blog .single-blog .content .read-more:after {
    content: "";
    height: 1px;
    width: 100%;
    background: var(--gradient);
    position: absolute;
    bottom: 7px;
    left: 0;
}

.home1.blog .single-blog .content ul li a:hover,
.home1.blog .single-blog .content h6:hover,
.home1.blog .single-blog .content .read-more:hover {
    color: var(--deep-orange);
}

/*=====================================================
6.14: footer
======================================================*/
/*=====================================================
6.14.1: footer-top
======================================================*/
.footer .footer-top .title {
    padding-bottom: 25px;
}

.footer .footer-top .title h5 {
    font-family: var(--josefin);
    font-weight: 700;
    text-transform: capitalize;
}

.footer .footer-top .desc {
    padding-right: 120px;
}

.footer .footer-top .address {
    padding-top: 20px;
}

.footer .footer-top .address li:not(:last-child) {
    padding-bottom: 15px;
}

.footer .footer-top .address li i {
    display: inline-block;
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: var(--dark);
    font-size: 14px;
    color: var(--white);
    text-align: center;
    margin-right: 20px;
    position: relative;
    z-index: 1;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.footer .footer-top .address li i:after {
    content: "";
    height: 100%;
    width: 100%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: var(--gradient);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.footer .footer-top .address li:hover i {
    background: transparent;
}

.footer .footer-top .address li:hover i:after {
    opacity: 1;
}

.footer .footer-top .navigation li {
    padding-left: 20px;
    position: relative;
}

.footer .footer-top .navigation li:before {
    content: "";
    height: 5px;
    width: 5px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: #ddd;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    left: 0;
}

.footer .footer-top .navigation li:hover:before {
    background: var(--gradient);
}

.footer .footer-top .navigation li:not(:last-child),
.footer .footer-top .follow li:not(:last-child) {
    margin-bottom: 10px;
}

.footer .footer-top .navigation li a,
.footer .footer-top .follow li a {
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    font-family: var(--heebo);
    font-weight: 400;
    text-transform: capitalize;
    color: var(--grey);
}

.footer .footer-top .navigation li a:hover,
.footer .footer-top .follow li a:hover {
    color: var(--deep-orange);
}

.footer .footer-top .inputs {
    width: calc(100% - 60px);
    height: 40px;
    border: 1px solid var(--deep-orange);
    background: transparent;
    padding: 0 10px;
    outline: none;
}

.footer .footer-top .inputs::placeholder {
    font-family: var(--heebo);
    font-weight: 400;
    font-size: 15px;
    color: var(--grey);
    text-transform: capitalize;
}

.footer .footer-top .form-area {
    position: relative;
    margin-top: 20px;
    margin-bottom: 25px;
}

.footer .footer-top .form-area button {
    width: 60px;
    height: 40px;
    background: var(--gradient);
    position: absolute;
    top: 0;
    right: 0;
}

.footer .footer-top .form-area button i {
    font-size: 18px;
    color: var(--white);
}

.footer .footer-top .social li {
    padding-right: 15px;
}

.footer .footer-top .social li a i {
    background: #2fa62b;
    font-size: 14px;
    color: #fff;
    border-radius: 100px;
    padding: 10px;
    height: 35px;
    width: 35px;
    /* line-height: 30px; */
    text-align: center;
}

.footer .footer-top .social li a:hover i {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*=====================================================
6.14.2: footer-bottom
======================================================*/
.footer .footer-bottom .bg {
    border-top: 1px solid #363636;
    padding: 25px 0;
}

.footer .footer-bottom ul li {
    padding-left: 60px;
}

.footer .footer-bottom ul li:first-child {
    padding-left: 0;
}

.footer .footer-bottom ul li a {
    font-family: var(--heebo);
    color: #f9f9f9;
    font-weight: 400;
    text-transform: capitalize;
    font-size: 16px;
}

.footer .footer-bottom ul li a:hover {
    color: var(--deep-orange);
}

/*================================================
07: home 2 css
==================================================*/
/*================================================
7.1: banner
==================================================*/
.home2.banner .image-area {
    right: 30px;
    bottom: -150px;
}

.home2.banner .text-area h1 {
    font-size: 52px;
    line-height: 70px;
}

/*================================================
7.2: feature
==================================================*/
.home2.feature .item:before {
    opacity: 1;
    background: var(--white);
}

.home2.feature .item:hover:before {
    background: rgba(6, 23, 56, 0.8);
}

/*================================================
7.3: newsletter
==================================================*/
.home2.newsletter {
    background: var(--gradient);
}

.home2.newsletter .content {
    position: relative;
}

.home2.newsletter .content:before {
    content: "";
    width: 96px;
    height: 108px;
    background: url(../images/home2/mail-img.png) no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    left: -130px;
}

.home2.newsletter .content h3 {
    font-family: var(--josefin);
    font-weight: 700;
    color: var(--white);
}

.home2.newsletter .content p {
    color: var(--white);
}

.home2.newsletter .form-area {
    background: var(--white);
    padding: 6px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    display: flex;
}

.home2.newsletter .form-area .inputs {
    width: calc(100% - 155px);
    height: 54px;
    padding: 0 15px;
    border: 0;
    outline: none;
}

.home2.newsletter .form-area .inputs::placeholder {
    font-family: var(--heebo);
    text-transform: capitalize;
    color: var(--grey);
    font-size: 16px;
    font-weight: 400;
}

.home2.newsletter .form-area button {
    line-height: 54px;
    padding: 0 35px;
    background: var(--deep-orange);
    width: 155px;
    font-family: var(--heebo);
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    position: relative;
    z-index: 1;
}

.home2.newsletter .form-area button:before {
    content: "";
    height: 100%;
    width: 100%;
    background: var(--gradient);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    z-index: -1;
    opacity: 0;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.home2.newsletter .form-area button:hover:before {
    opacity: 1;
}

/*================================================
7.4: screenshot
==================================================*/
.home2.screenshot .ss-slider-area {
    position: relative;
}

.home2.screenshot .ss-slider-area:after {
    content: url("../images/home2/screenshot/mockup.png");
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    z-index: 9;
}

.home2.screenshot .item {
    text-align: center;
}

.home2.screenshot .item img {
    box-shadow: 0 0 44px rgba(0, 0, 0, 0.1);
}

/*================================================
7.5: video
==================================================*/
.home2.video {
    margin-top: 0;
}

.home2.video .overlay {
    padding-top: 120px;
    padding-bottom: 320px;
}

/*================================================
7.6: mobile
==================================================*/
.home2.mobile {
    margin-top: -250px;
}

/*================================================
7.7: pricing
==================================================*/
.home2.pricing .item {
    padding: 30px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.home2.pricing .item.active {
    box-shadow: 1px 0 61px rgba(0, 0, 0, 0.2);
}

.home2.pricing .item .price-title span {
    display: inline-block;
    line-height: 32px;
    padding: 0 25px;
    background: var(--gradient);
    color: var(--white);
    text-transform: uppercase;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    font-family: var(--heebo);
    font-weight: 500;
    font-size: 17px;
    margin-bottom: 26px;
}

.home2.pricing .item .price-title h5 {
    font-family: var(--josefin);
    font-weight: 700;
    color: var(--deep-orange);
    text-transform: capitalize;
    padding-bottom: 5px;
}

.home2.pricing .item .price-title h4 {
    font-family: var(--josefin);
    font-weight: 700;
    font-size: 26px;
    text-transform: capitalize;
    padding-bottom: 20px;
}

.home2.pricing .item ul li {
    font-family: var(--heebo);
    font-size: 16px;
    line-height: 27px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--grey);
    padding-bottom: 25px;
}

.home2.pricing .item ul li i {
    font-size: 20px;
    padding-right: 16px;
    color: rgba(255, 88, 51, 0.6);
}

.home2.pricing .item ul li i.not {
    color: var(--deep-orange);
}

.home2.pricing .item .purchase {
    box-shadow: 1px 0 61px rgba(0, 0, 0, 0.2);
    margin-top: 10px;
    padding: 25px 0 30px;
}

.home2.pricing .item.active .purchase {
    box-shadow: none;
    background: var(--gradient);
}

.home2.pricing .item .purchase h3 {
    font-size: 38px;
    font-family: var(--josefin);
    font-weight: 700;
    text-transform: capitalize;
    padding-bottom: 10px;
}

.home2.pricing .item .purchase h3 span {
    font-family: var(--heebo);
    font-size: 20px;
    color: var(--grey);
}

.home2.pricing .item.active .purchase h3,
.home2.pricing .item.active .purchase h3 span {
    color: var(--white);
}

.home2.pricing .item .purchase a {
    display: inline-block;
    font-family: var(--heebo);
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
    line-height: 48px;
    padding: 0 25px;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
    color: var(--white);
    background: var(--dark);
}

.home2.pricing .item.active .purchase a {
    background: var(--white);
    color: var(--dark);
}

/*================================================
08: inner-page css
==================================================*/
/*================================================
8.1: menubar
==================================================*/
.inner-page.menubar .right-part button {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: var(--gradient);
    margin-left: 20px;
    position: relative;
    z-index: 1;
}

.inner-page.menubar .right-part button:after {
    content: "";
    height: 100%;
    width: 100%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: var(--gradienta);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    opacity: 0;
}

.inner-page.menubar .right-part button:hover:after {
    opacity: 1;
}

.inner-page.menubar.sticky .right-part button {
    background: var(--white);
}

.inner-page.menubar.sticky .right-part button:after {
    opacity: 0;
}

.inner-page.menubar.sticky .right-part button i {
    color: var(--deep-orange);
}

/*================================================
8.2: banner
==================================================*/
.inner-page.banner .overlay {
    padding-top: 215px;
    padding-bottom: 125px;
    background: rgba(0, 0, 0, 0.6);
}

.inner-page.banner h2 {
    font-family: var(--josefin);
    font-size: 45px;
    font-weight: 700;
    color: var(--white);
    text-transform: capitalize;
    padding-bottom: 10px;
}

.inner-page.banner .breadcrumb {
    justify-content: center;
}

.inner-page.banner .breadcrumb-item a,
.inner-page.banner .breadcrumb-item {
    font-family: var(--josefin);
    text-transform: capitalize;
    color: var(--white);
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
}

.inner-page.banner .breadcrumb-item a:hover {
    color: var(--deep-orange);
}

.inner-page.banner .breadcrumb-item.active {
    color: var(--white);
}

.inner-page.banner .breadcrumb-item + .breadcrumb-item::before {
    color: var(--white);
}

/*================================================
09: service page
==================================================*/
.service-page.feature .item {
    margin-bottom: 30px;
}

/*================================================
10: team page
==================================================*/
.team-page.team .item {
    margin-bottom: 30px;
}

/*================================================
11: blog page
==================================================*/
.blog-page.blog .single-blog {
    margin-bottom: 30px;
}

/*===========================================================
 12: blog details page CSS
=============================================================*/

.blog-page.blog-detail .blog-img {
    position: relative;
}

.blog-page.blog-detail .blog-img img {
    width: 100%;
}

.blog-page.blog-detail .blog-img .option {
    height: 55px;
    width: 55px;
    background: var(--deep-orange);
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 9;
    text-align: center;
}

.blog-page.blog-detail .blog-img .option p {
    font-family: var(--josefin);
    text-transform: capitalize;
    color: var(--white);
    line-height: 20px;
    padding-top: 8px;
}

.blog-page.blog-detail .content p {
    padding-top: 20px;
    font-family: var(--josefin);
}

.blog-page.blog-detail .content h4 {
    font-family: var(--josefin);
    font-weight: 700;
    padding-top: 25px;
    font-size: 28px;
    text-transform: capitalize;
}

.blog-page.blog-detail .content blockquote {
    background: var(--white);
    box-shadow: 0 0 90px rgba(0, 0, 0, 0.1);
    padding: 30px 35px;
    text-align: center;
    margin-top: 20px;
    position: relative;
}

.blog-page.blog-detail .content blockquote p {
    padding-top: 0;
    font-size: 18px;
    color: var(--dark);
    position: relative;
    z-index: 1;
}

.blog-page.blog-detail .content blockquote i {
    font-size: 90px;
    color: #fed7d5;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    z-index: 0;
}

.blog-page.blog-detail .share-blog {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 10px 30px;
    margin-top: 35px;
}

.blog-page.blog-detail .share-blog span {
    display: inline-block;
    font-family: var(--josefin);
    font-size: 18px;
    color: var(--deep-orange);
    text-transform: capitalize;
    font-weight: 600;
}

.blog-page.blog-detail .share-blog .social li {
    padding: 0 7px;
}

.blog-page.blog-detail .share-blog .social li a i {
    color: var(--dark);
    font-size: 18px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.blog-page.blog-detail .share-blog .social li a:hover i {
    color: var(--deep-orange);
}

.blog-page.blog-detail .share-blog p {
    text-transform: capitalize;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.blog-page.blog-detail .share-blog .right-part i {
    color: var(--deep-orange);
}

.blog-page.blog-detail .share-blog .right-part a p {
    padding-top: 0;
}

.blog-page.blog-detail .share-blog .right-part a i {
    padding-right: 10px;
}

.blog-page.blog-detail .share-blog .right-part a:hover p {
    color: var(--deep-orange);
}

.blog-page.blog-detail .comment {
    padding-top: 30px;
}

.blog-page.blog-detail .comment .title h4 {
    padding-bottom: 16px;
    position: relative;
}

.blog-page.blog-detail .comment .title h4:after {
    content: "";
    height: 2px;
    width: 90px;
    background: var(--deep-orange);
    position: absolute;
    bottom: 0;
    left: 0;
}

.blog-page.blog-detail .comment .leave h4 {
    padding-top: 10px;
}

.blog-page.blog-detail .comment .all-comment li {
    position: relative;
    margin: 50px 0;
}

.blog-page.blog-detail .comment .all-comment li ul {
    margin-left: 70px;
}

.blog-page.blog-detail .comment .all-comment li ul li {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 50px 0;
}

.blog-page.blog-detail .comment .all-comment li ul li img {
    margin-top: 50px;
}

.blog-page.blog-detail .comment .all-comment li ul li .reply {
    top: 50px;
}

.blog-page.blog-detail .comment .all-comment li h4,
.blog-page.blog-detail .comment .all-comment li p {
    padding-top: 0;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.blog-page.blog-detail .comment .all-comment li img {
    position: absolute;
    top: 0;
    left: 0;
    height: 120px;
    width: 120px;
    border-radius: 50%;
}

.blog-page.blog-detail .comment .all-comment li .comment-body {
    padding-left: 155px;
}

.blog-page.blog-detail .comment .all-comment li h6 {
    font-family: var(--josefin);
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
}

.blog-page.blog-detail .comment .all-comment li h6:hover {
    color: var(--deep-orange);
}

.blog-page.blog-detail .comment .all-comment li .time {
    padding-bottom: 5px;
}

.blog-page.blog-detail .comment .all-comment li .time:hover {
    color: var(--deep-orange);
}

.blog-page.blog-detail .comment .all-comment li .reply {
    position: absolute;
    top: 0;
    right: 0;
}

.blog-page.blog-detail .comment .all-comment li .reply i {
    margin-right: 10px;
    color: var(--deep-orange);
}

.blog-page.blog-detail .comment .all-comment li .reply p {
    text-transform: capitalize;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.blog-page.blog-detail .comment .all-comment li .reply:hover p {
    color: var(--deep-orange);
}

.blog-page.blog-detail .comment form {
    margin-top: 50px;
    margin-bottom: 0;
}

.blog-page.blog-detail .comment .input-field {
    width: 100%;
    height: 50px;
    background: #f4f4f4;
    padding: 0 20px;
    outline: none;
    border: 0;
    margin-bottom: 30px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    font-family: var(--josefin);
    color: var(--dark);
}

.blog-page.blog-detail .comment .input-field:hover,
.blog-page.blog-detail .comment .input-field:focus {
    background: rgba(251, 108, 98, 0.1);
}

.blog-page.blog-detail .comment .input-field::placeholder {
    text-transform: capitalize;
    font-family: var(--josefin);
    font-size: 16px;
    color: var(--grey);
    font-weight: 500;
}

.blog-page.blog-detail .comment textarea.input-field {
    height: 215px;
    padding: 20px;
}

.blog-page.blog-detail .comment button {
    line-height: 55px;
    padding: 0 35px;
    font-family: var(--josefin);
    font-weight: 500;
    text-transform: capitalize;
    font-size: 18px;
    color: var(--white);
    background: var(--deep-orange);
    position: relative;
    z-index: 1;
}

.blog-page.blog-detail .comment button:after {
    content: "";
    height: 100%;
    width: 100%;
    background: var(--gradient);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    opacity: 0;
}

.blog-page.blog-detail .comment button:hover:after {
    opacity: 1;
}

/* blog sidebar */
.blog-page.blog-detail .blog-sidebar .section {
    padding-bottom: 40px;
}

.blog-page.blog-detail .blog-sidebar .inputs {
    width: 100%;
    height: 40px;
    padding: 0 15px;
    border: 1px solid #ddd;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    outline: none;
    font-family: var(--josefin);
    color: var(--dark);
}

.blog-page.blog-detail .blog-sidebar .inputs:hover,
.blog-page.blog-detail .blog-sidebar .inputs:focus {
    border-color: var(--deep-orange);
}

.blog-page.blog-detail .blog-sidebar .inputs::placeholder {
    text-transform: capitalize;
    font-family: var(--josefin);
    font-size: 16px;
    color: var(--grey);
    font-weight: 500;
}

.blog-page.blog-detail .blog-sidebar .search-area {
    position: relative;
}

.blog-page.blog-detail .blog-sidebar .search-area button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    right: 10px;
    z-index: 9;
}

.blog-page.blog-detail .blog-sidebar .search-area button i {
    font-size: 16px;
    color: var(--deep-orange);
}

.blog-page.blog-detail .blog-sidebar .title {
    padding-bottom: 30px;
}

.blog-page.blog-detail .blog-sidebar .title h5 {
    font-family: var(--josefin);
    font-weight: 700;
    text-transform: capitalize;
    position: relative;
}

.blog-page.blog-detail .blog-sidebar .title h5:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    height: 2px;
    width: 60px;
    background: var(--gradient);
}

.blog-page.blog-detail .blog-sidebar .category ul li {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.blog-page.blog-detail .blog-sidebar .category ul li:first-child {
    padding-top: 0;
}

.blog-page.blog-detail .blog-sidebar .category ul li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.blog-page.blog-detail .blog-sidebar .category ul li p {
    font-family: var(--josefin);
    text-transform: capitalize;
}

.blog-page.blog-detail .blog-sidebar .category ul li:hover p {
    color: var(--deep-orange);
}

.blog-page.blog-detail .blog-sidebar .popular ul li .image {
    margin-right: 15px;
}

.blog-page.blog-detail .blog-sidebar .popular ul li .image img {
    width: 100%;
}

.blog-page.blog-detail .blog-sidebar .popular ul li .item-body {
    flex: 1;
}

.blog-page.blog-detail .blog-sidebar .popular ul li:not(:last-child) {
    padding-bottom: 30px;
}

.blog-page.blog-detail .blog-sidebar .popular ul li h6 {
    font-family: var(--josefin);
    font-size: 17px;
    font-weight: 700;
}

.blog-page.blog-detail .blog-sidebar .popular ul li h6:hover {
    color: var(--deep-orange);
}

.blog-page.blog-detail .blog-sidebar .popular ul li p {
    font-family: var(--josefin);
    text-transform: capitalize;
}

.blog-page.blog-detail .blog-sidebar .popular ul li i {
    padding-right: 10px;
}

.blog-page.blog-detail .blog-sidebar .tags {
    padding-bottom: 20px;
}

.blog-page.blog-detail .blog-sidebar .all-tag a {
    display: inline-block;
    font-size: 16px;
    line-height: 35px;
    padding: 0 10px;
    font-family: var(--josefin);
    color: var(--grey);
    text-transform: capitalize;
    border: 1px solid #ddd;
    margin-right: 15px;
    margin-bottom: 20px;
}

.blog-page.blog-detail .blog-sidebar .all-tag a:hover {
    color: var(--white);
    background: var(--deep-orange);
    border-color: var(--deep-orange);
}

.blog-page.blog-detail .blog-sidebar .form-area .inputs {
    padding: 0;
    border: 0;
    border-bottom: 1px solid #ddd;
}

/*================================================
13: service-detail page
==================================================*/
.service-page.detail {
    padding-bottom: 90px;
}

.service-page.detail .image img {
    width: 100%;
}

.service-page.detail .text {
    padding-right: 50px;
}

.service-page.detail .text h4 {
    font-family: var(--josefin);
    font-weight: 700;
    font-size: 28px;
    padding-top: 25px;
    padding-bottom: 15px;
}

.service-page.detail .text p {
    padding-bottom: 20px;
    color: var(--grey);
}

.service-page.detail .text .img {
    float: left;
    margin-right: 30px;
    margin-bottom: 30px;
}

.service-page.detail .right-part .title {
    padding-bottom: 30px;
}

.service-page.detail .right-part .title h5 {
    font-family: var(--josefin);
    font-weight: 700;
    text-transform: capitalize;
    position: relative;
}

.service-page.detail .right-part .title h5:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    height: 2px;
    width: 60px;
    background: var(--gradient);
}

.service-page.detail .right-part .item {
    margin-bottom: 30px;
}

.service-page.detail .right-part .item ul li {
    border-bottom: 1px solid #ddd;
    padding: 8px 0;
}

.service-page.detail .right-part .item ul li p {
    color: var(--grey);
    text-transform: capitalize;
}

.service-page.detail .right-part .hours {
    padding: 15px;
    border: 6px solid #ddd;
}

.service-page.detail .right-part .item a {
    margin-top: 20px;
    display: inline-block;
    line-height: 50px;
    padding: 0 25px;
    background: var(--gradient);
    font-size: 16px;
    font-weight: 700;
    font-family: var(--josefin);
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
    text-transform: capitalize;
    color: var(--white);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    position: relative;
    z-index: 1;
}

.service-page.detail .right-part .item a i {
    padding-left: 10px;
}

.service-page.detail .right-part .item a:after {
    content: "";
    height: 100%;
    width: 100%;
    background: var(--gradienta);
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
}

.service-page.detail .right-part .item a:hover:after {
    opacity: 1;
}

.service-page.detail .right-part .item .img img {
    width: 100%;
}

/*================================================
14: project detail page
==================================================*/
.project-page.project-detail .image img {
    width: 100%;
}

.project-page.project-detail .sub-title {
    padding-bottom: 30px;
}

.project-page.project-detail .sub-title h5 {
    font-family: var(--josefin);
    font-weight: 700;
    text-transform: capitalize;
    position: relative;
}

.project-page.project-detail .sub-title h5:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    height: 2px;
    width: 60px;
    background: var(--gradient);
}

.project-page.project-detail .info-area {
    padding-left: 5px;
}

.project-page.project-detail .info li {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.project-page.project-detail .info li:last-child {
    border-bottom: 0;
}

.project-page.project-detail .info li h6 {
    font-family: var(--josefin);
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
    width: 50%;
}

.project-page.project-detail .info li p {
    width: 50%;
    text-transform: capitalize;
}

.project-page.project-detail .info li ul li {
    border: 0;
    padding: 0;
    padding-right: 15px;
}

.project-page.project-detail .info li ul li a i {
    font-size: 16px;
    color: var(--dark);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.project-page.project-detail .info li ul li a:hover i {
    color: var(--deep-orange);
}

.project-page.project-detail .list-part {
    padding-top: 10px;
}

.project-page.project-detail .title {
    padding-top: 20px;
    padding-bottom: 15px;
}

.project-page.project-detail .title h4 {
    text-transform: capitalize;
    font-weight: 700;
    font-size: 28px;
    font-family: var(--josefin);
}

.project-page.project-detail .desc-list {
    padding-top: 20px;
}

.project-page.project-detail .desc-list li {
    position: relative;
    padding: 5px 0 5px 30px;
}

.project-page.project-detail .desc-list li:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: var(--gradient);
}

.project-page.project-detail .list-part .image {
    padding-top: 30px;
}

/*================================================
15: team detail page
==================================================*/
.team-page.team-detail .personal-info {
    box-shadow: 19px 0 109px rgba(0, 0, 0, 0.08);
}

.team-page.team-detail .personal-info .image img {
    width: 100%;
}

.team-page.team-detail .personal-info .name {
    padding: 25px 30px 30px 30px;
}

.team-page.team-detail .personal-info .name h5 {
    font-family: var(--josefin);
    font-weight: 700;
    text-transform: capitalize;
}

.team-page.team-detail .personal-info .name p {
    text-transform: capitalize;
    padding-top: 5px;
}

.team-page.team-detail .personal-info .name ul {
    padding-top: 20px;
}

.team-page.team-detail .personal-info .name ul li {
    padding-right: 20px;
}

.team-page.team-detail .personal-info .name ul li a i {
    font-size: 16px;
    color: var(--grey);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.team-page.team-detail .personal-info .name ul li a:hover i {
    color: var(--deep-orange);
}

.team-page.team-detail .team-detail-area {
    padding-left: 5px;
}

.team-page.team-detail .box {
    padding-top: 30px;
}

.team-page.team-detail .box:first-child {
    padding-top: 0;
}

.team-page.team-detail .title {
    padding-bottom: 40px;
}

.team-page.team-detail .title h5 {
    font-family: var(--josefin);
    font-weight: 700;
    text-transform: capitalize;
    position: relative;
}

.team-page.team-detail .title h5:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    height: 2px;
    width: 65px;
    background: var(--gradient);
}

.team-page.team-detail .table tr th,
.team-page.team-detail .table tr td {
    font-family: var(--heebo);
    font-weight: 400;
    text-transform: capitalize;
    font-size: 16px;
    line-height: 28px;
    color: var(--grey);
    padding: 5px 0;
}

.team-page.team-detail .table tr th {
    font-weight: 500;
}

.team-page.team-detail .table1 tr td {
    text-transform: uppercase;
}

.team-page.team-detail .table tr .day {
    width: 150px;
}

.team-page.team-detail .table tr .time {
    min-width: 200px;
}

.team-page.team-detail .table tr .yar {
    min-width: 150px;
}

.team-page.team-detail .table tr .dept {
    min-width: 170px;
}

.team-page.team-detail .table tr .pos,
.team-page.team-detail .table tr .com {
    min-width: 200px;
}

/*================================================
16: contact page
==================================================*/
.contact-page.contact .content h6 {
    font-family: var(--josefin);
    font-weight: 600;
    text-transform: capitalize;
}

.contact-page.contact .content h2 {
    font-family: var(--josefin);
    font-size: 41px;
    font-weight: 600;

    padding-top: 15px;
    padding-bottom: 35px;
}

.contact-page.contact .content h3 {
    font-family: var(--josefin);
    font-weight: 600;
    padding-bottom: 55px;
}

.contact-page.contact .content .inputs {
    width: 100%;
    height: 40px;
    border: 0;
    border-bottom: 1px solid #ddd;
    outline: none;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    margin-bottom: 35px;
    font-family: var(--josefin);
    color: var(--dark);
}

.contact-page.contact .content .inputs:hover,
.contact-page.contact .content .inputs:focus {
    border-color: var(--deep-orange);
}

.contact-page.contact .content .inputs::placeholder {
    font-family: var(--heebo);
    font-weight: 400;
    font-size: 16px;
    color: var(--grey);
    text-transform: capitalize;
}

.contact-page.contact .content button {
    font-family: var(--josefin);
    font-size: 20px;
    font-weight: 600;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
    line-height: 48px;
    padding: 0 30px;
    text-transform: capitalize;
    color: #000;
    background: var(--gradient);
    position: relative;
    z-index: 999999;
    margin-top: 5px;
}

.contact-page.contact .content button:after {
    content: "";
    height: 100%;
    width: 100%;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
    background: var(--gradienta);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    opacity: 0;
}

9 .contact-page.contact ul li {
    padding-top: 25px;
    padding-bottom: 20px;
}

.contact-page.contact ul li p {
    font-weight: 500;
}

.contact-page.contact ul li:first-child {
    padding-top: 0;
}

.contact-page.contact ul li:last-child {
    padding-bottom: 0;
    border: 0;
}

.contact-page.contact ul li .icon {
    padding-right: 25px;
}

.contact-page.contact ul li .icon i {
    font-size: 30px;
    color: var(--dark);
}

.contact-page.contact ul li h5 {
    font-family: var(--josefin);
    font-weight: 600;
    text-transform: capitalize;
}

.contact-page.location #map {
    width: 100%;
    height: 560px;
}

.text-area {
    padding-top: 80px;
}

.com166 {
    padding-top: 100px;
}

.feefre {
    color: #000;

    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.a1 {
    font-family: Poppins;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    padding-bottom: 18px;
}

.a2 {
    font-family: Poppins;
    font-weight: 700;
    padding-bottom: 18px;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0px;
    color: #000;
}

.a3 {
    font-weight: 400;
    font-size: 17px;
    color: #000;
}

.aim1 {
    /*           width: 125px;*/
    /*top: 205.8px;*/
    /*right: 60.53px;*/
    /*position: absolute;*/

    width: 125px;
    top: 200px;
    right: 200px;
    position: absolute;
}

.feat {
    color: #f2ab3c;
    /* font-family: Poppins; */
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.featp {
    font-weight: 600;
    font-size: 40px;
    line-height: 100%;
    /* letter-spacing: 0px; */
    color: #000;
}

.carousel-inner {
    display: flex;
    flex-wrap: nowrap;
    overflow: visible;
}

.carousel-control-prev,
.carousel-control-next {
    top: -6%;
    transform: translateY(-50%);
    width: 3rem;
    border-radius: 50%;
    height: 3rem;
    background: #f2ab3c;
    opacity: 1;
}

.carousel-control-next {
    left: 60px;
}

.fw-bold {
    font-weight: 600;
    font-size: 32px;
}

.bg-light {
    background-color: #f9f9f9 !important;
}

.rounded-4 {
    border-radius: 2rem;
}

#customSlider {
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
}

.carousel-item {
    flex: 0 0 66%;
    display: block !important;
    margin-right: 20px;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
    /*padding: 2rem 0;*/
}

.slider-container {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px 0;
}

.slider-card {
    flex: 0 0 66%;
    background: #f9f9f9;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.slider-card img {
    max-height: 250px;
}

.slider-arrow {
    /*position: absolute;*/
    top: 35%;
    background: #f2ab3c;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    z-index: 2;
}

.slider-arrow.left {
    margin-left: 20px;
        margin-top: 7%;
}

.slider-arrow.right {
  
    margin-top: 7%;
        margin-right: 20px;
    }
}

.agit {
    position: absolute;
    width: 76%;
    top: 60%;
}

.helt {
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #141414;
    padding-bottom: 20px;
}

.hur {
    font-weight: 700;
    font-size: 20px;
    color: #000;
}

.bg-warning-subtle {
    background-color: #ffe1a8 !important;
}

.rounded-4 {
    border-radius: 20px;
}

.position-relative span {
    font-size: 14px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h6.fw-bold {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

p {
    font-size: 0.95rem;
}

.forone {
    width: 356px;
    height: 160px;
    gap: 12px;
    border-radius: 18px;
    padding: 24px;
    left: 310px;
}

.fortwo {
    width: 488px;
    height: 160px;
    gap: 12px;
    border-radius: 18px;
    padding: 24px;
}

.purchase {
    margin-top: 20px;
}

.purchase a {
    background: transparent;
    padding-top: 12px;
    padding-right: 24px;
    padding-bottom: 12px;
    padding-left: 24px;
    /* margin-top: 20px; */
    border-radius: 72px;
    color: #f2ab3c;
    border: 2px solid #f2ab3c;
}

.testim {
    font-weight: 600;
    font-size: 40px;
    letter-spacing: 0px;
}

.par {
    font-size: 17px;
}

.designation {
    font-size: 14px;
    text-align: center;
    width: 100% !important;
    padding-top: 0 !important;
}

.countt {
    color: #000;
    text-align: center;

    /* SH1 - 20 REGULAR CAPITAL */
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.6px;
    text-transform: uppercase !important;
}

.purchase12 {
}

.purchase12 a {
    background: #f2ab3c;
    padding-top: 12px;
    padding-right: 24px;
    padding-bottom: 12px;
    padding-left: 24px;
    border-radius: 72px;
    color: #000;
}

.mobwe {
    margin-top: -140px;
}

.footer {
    margin-top: -100px;
}

.fr6 {
    margin: auto;
    margin-top: 50px;
    display: block;
    margin-bottom: 35px;
}

.social {
    padding-top: 30px;
    padding-bottom: 30px;
}

.accordion-button:not(.collapsed) {
    color: #000;
    background-color: #fff;
}

.coprw {
    text-align: center;
    color: #fff;
    opacity: 0.5;
}

.agmob {
    padding-bottom: 0;
}

.proab {
    color: #000;
    text-align: center;

    /* H1 - 40 pt bold */
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}

.yrce {
    font-size: 34px;
}

.bgye {
    border-radius: 20.348px;
    border: 1.017px solid rgba(0, 0, 0, 0.06);
    background: #f9f9f9;
}

.nesect .section-title {
    color: #fff;
}

.nesect .section-description {
    color: #fff;
}

.section-box {
    background-color: #f9f9f9;
    border-radius: 20px;
    padding: 10px 30px;
    max-width: 600px;
    margin: 20px auto;
    padding-bottom: 0;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); */
}

.icon-circle {
    width: 40px;
    height: 40px;
    background-color: #ffb74d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 18px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    /*padding-bottom:15px !important;*/
    margin-bottom: 15px !important;
}

.section-description {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 30px;
}

.swiper-slide {
    transition:
        transform 1s ease,
        opacity 1s ease;
}

.mockup-img {
    width: 100%;
    /* border-radius: 16px; */
    /*object-fit:contain;*/
    height: 460px;
    /*box-shadow: 0 4px 12px rgba(0,0,0,0.08);*/
}

.icon {
    width: 50px;
    height: 50px;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    margin-bottom: 20px;
}

.text-section h2 {
    font-weight: 700;
    font-size: 1.8rem;
}

.phones img {
    max-width: 100%;
    height: auto;
}

.custom-container {
    background-color: #f9f9f9;
    border-radius: 20px;
    padding: 60px 30px;
}

.dedication-card {
    border-radius: 20px;
    background: #f9fafb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 28px 30px;
    max-width: 400px;
    padding-bottom: 0;
    margin-bottom: 20px;
}

.dedication-title {
    font-size: 24px;
    font-weight: 700;
    padding: 40px 30px;
    padding-bottom: 0;
}

.dedication-text {
    color: #666;
    font-size: 16px;
    margin-top: 15px;
    padding: 0px 30px;
}

.currencies-img {
    margin-top: -20px;
    width: 72%;
    height: auto;
    margin-left: 125px;
    margin-top: -31px;
}

.payment-card {
    background: #f9fafb;
    border-radius: 16px;
    padding: 40px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-info {
    align-items: center;
    gap: 10px;
}

.service-info p {
    font-size: 24px;
    font-weight: 700;
    /* padding: 40px 30px; */
    padding-bottom: 0;
}

.service-info img {
    padding-top: 17px;
}

.price {
    font-size: 24px;
    font-weight: bold;
    margin-top: 10px;
}

.side-icons {
    justify-content: center;
    gap: 10px;
}

.side-icons img {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: white;
    padding: 5px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.phapi {
    margin: auto;
    display: block;
}

.feature-card {
    position: relative;
    /* background-color: #111; */
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(Frame186349.png);
    color: white;
    border-radius: 20px;
    padding: 1rem;
    overflow: hidden;
    height: 367px;
    display: flex;
    /* flex-direction: column; */
    /* justify-content: center; */
}

.feature-card .bg-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.07;
    width: 100%;
    height: auto;
    z-index: 1;
}

.feature-card .content {
    position: relative;
    z-index: 2;
    padding-top: 135px;
    text-align: left;
}

.content h4 {
    color: #fff;
    margin-bottom: 13px;
}

.pt-400 {
    padding-top: 400px;
}

.btn-custom {
    background-color: transparent;
    border: 2px solid #ffb74d;
    color: #0d0d0d;
    border-radius: 30px 30px 30px 30px !important;
    padding: 10px 10px !important;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    margin-top: 1rem;
    text-decoration: none;
}

.btn-custom:hover {
    background-color: #ffb74d;
    color: black;
}

.nav-tabs {
    justify-content: center;
    align-items: center;
    border-bottom: none;
}

.nav-tabs .nav-link {
    margin-right: 2px;
    display: flex;
}

.nav-tabs .nav-link.active {
    border-bottom: 4px solid #f5a623 !important;
    font-weight: bold;
    border-color: #dee2e600 #dee2e600 #ffffff00;
}

.nav-tabs .nav-link .icon {
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.tab-content {
    padding: 20px;
    background: #fff;
    border-top: 1px solid #dee2e6;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

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

    100% {
        transform: translateY(0);
    }
}

.fotr {
    animation: float 3s ease-in-out infinite;
}

.tab-content .swiper {
    padding: 50px 20px;
}

.tab-content .swiper-slide {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    /*max-width: 350px;*/
    /*box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);*/
}

.tab-content .icon-box {
    background-color: #fbbf24;
    color: white;
    font-size: 24px;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.tab-content .swiper {
    width: 100%;
    padding: 10px 0;
    overflow: hidden;
}

.tab-content .swiper-wrapper {
    align-items: center;
}

.tab-content .swiper-slide {
    /*width: 300px;*/
    height: auto;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    /*box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);*/
    opacity: 0.3;
    transform: scale(0.8);
    transition: all 0.4s ease;
    filter: blur(2px);
}

.tab-content .swiper-slide-active {
    transform: scale(1.1);
    opacity: 1;
    z-index: 2;
    filter: blur(0);
}

.tab-content .icon {
    font-size: 40px;
    color: #ffb648;
    margin-bottom: 15px;
}

.tab-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px;
}

.tab-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Hide overflow to get "cut" side blur look */
.tab-content .swiper-container {
    overflow: hidden;
}

.rotating-text-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
}

.rotating-text-container svg.text-rotator {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.rotating-text-container svg text {
    fill: #000;
    font-size: 10px;
    letter-spacing: 2px;
}

.center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 43px;
    height: 48px;
}

.center-icon svg {
    width: 100%;
    height: 100%;
}

.slider-wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 1s ease-in-out;
}

.slide {
    min-width: 100vw;
    height: 88vh;
    display: flex;
    align-items: center;
    /*background: #F2AB3C;*/
}

.dots {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
}

.dot.active {
    background: #000;
}
@media (min-width: 768px) {
    #threeimage {
        height: 100vh;
        width: 100%;
        overflow: hidden;
    }
}

@media (max-width: 767px) {
    #threeimage {
        width: 100%;
        overflow: hidden;
    }
}
@media (min-width: 768px) {
    .second-squre {
    }
}

@media (max-width: 767px) {
    .second-squre {
        margin-top: 20px;
    }
}

#threeimage .swiper-slide {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#threeimage .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 👈 makes 1920x800 image fill beautifully */
    display: block;
}

.swiper-button-next,
.swiper-button-prev {
}

.accordion-collapse {
    border: solid rgba(0, 0, 0, 0.125);
    border-width: 0 0px;
}

.accordion-button {
    border: 0px solid rgba(0, 0, 0, 0.125);
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #f5a623;
}

.sol .swiper-container {
    width: 100%;
    max-width: 100%;
    /* height: 100vh; */
    /* margin: 0 auto; */
    position: inherit;
    overflow: visible;
}

.p-300 {
    padding-top: 1200px;
    padding-bottom: 100px;
}

.swiper-slide {
    /*height:auto;*/
}

.sol .swiper-container {
    width: 100%;
    max-width: 100%;
    height: 100vh;
    margin: 0 auto;
}

.sol .swiper-slide img {
    /*height:2080px !important;*/
}

.tyui {
    font-size: 36px;
    font-weight: 500;
    line-height: 39px;
}

.scroll-box {
    height: 460px;
    /* border-radius: 20px; */
    overflow: hidden;
    /* background: #fff; */
    position: relative;
}

.scroll-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 4s ease-in-out;
}

/* Scroll up */
.scroll-box.scrolled-up .scroll-inner,
.scroll-box.hovered .scroll-inner {
    transform: translateY(-100%);
}

/* Scroll back to original position */
.scroll-box.scrolled-down .scroll-inner {
    transform: translateY(0%);
}

.image-container {
    position: relative;
    width: 510px;
    height: 380px;
    overflow: hidden;
    border-radius: 20px;
}

.scroll-image {
    transition: transform 4s ease-in-out;
}

/* Auto scroll up */
.image-container.scroll-up .scroll-image,
.image-container.hovered .scroll-image {
    transform: translateY(-60%);
}

/* Scroll back down */
.image-container.scroll-down .scroll-image {
    transform: translateY(0%);
}

@keyframes scrollY {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

.shake-image {
    margin-right: -236px;
    /* bottom: -126%; */
    /*width: 200px;*/
    width: 158px;
    animation: float 5s ease-in-out infinite;

    /*animation: shake 3s infinite ease-in-out;*/
    /* position: absolute; */
    margin-top: -334px;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

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

    100% {
        transform: translateY(0);
    }
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-2px);
    }

    50% {
        transform: translateX(2px);
    }

    75% {
        transform: translateX(-1px);
    }

    100% {
        transform: translateX(0);
    }
}

.accordion-button:not(.collapsed)::after {
    background-image: none !important;
    width: auto;
    height: auto;
}

.accordion-button::after {
    background-image: none !important;
    width: auto;
    height: auto;
}

.accordion-button.collapsed:hover {
    color: #f2ab3c;
    /* white text */
    border-radius: 6px;
    /* rounded edges */
    box-shadow: 5 5 10px rgba(242, 171, 60, 0.5);
    /* glowing effect */
    transition: all 0.3s ease-in-out;
}

.accordion-item {
    border: none;
    border-left: 0px solid #f2ab3c;
    border-radius: 16px;
    /*  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);*/
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-body {
    background-color: #fff;
    padding: 1rem 1rem;
    color: #666;
    padding-top: 0;
}

.accordion-button {
    background-color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 1rem;
    color: #333;
    box-shadow: none;
    display: flex;
    align-items: center;
}

.accordion-button::before {
    /*content: '+';*/
    /*color: #F2AB3C;*/
    /*font-size: 24px;*/
    /*margin-right: 16px;*/
    /*transition: transform 0.3s ease;*/
}

.accordion-button:not(.collapsed)::before {
    transform: rotate(45deg);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    background-color: #fff;
    /*padding: 1rem 2rem;*/
    color: #666;
}

.accordion-button::after {
    content: "+";
    font-size: 24px;
    color: #f2ab3c;
    margin-left: auto;
    transition:
        transform 0.3s ease,
        content 0.3s;
}

.accordion-button:not(.collapsed)::after {
    content: "–";
    /* will show minus sign when open */
    color: #000;
}

.accordion-button:focus {
    z-index: 3;
    border-color: #fff;
    outline: 0;
    box-shadow: none;
    background: #fff !important;
}

.animate {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

/*=== Optional Delays, change values here  ===*/
.one {
    -webkit-animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.two {
    -webkit-animation-delay: 1.5s;
    -moz-animation-delay: 1.5s;
    animation-delay: 1.5s;
}

.three {
    -webkit-animation-delay: 2.5s;
    -moz-animation-delay: 2.5s;
    animation-delay: 2.5s;
}

.four {
    -webkit-animation-delay: 3.5s;
    -moz-animation-delay: 3.5s;
    animation-delay: 3.5s;
}

.five {
    -webkit-animation-delay: 4.5s;
    -moz-animation-delay: 4.5s;
    animation-delay: 4.5s;
}

.six {
    -webkit-animation-delay: 5.5s;
    -moz-animation-delay: 5.5s;
    animation-delay: 5.5s;
}

.seven {
    -webkit-animation-delay: 6.5s;
    -moz-animation-delay: 6.5s;
    animation-delay: 6.5s;
}

.eight {
    -webkit-animation-delay: 7.5s;
    -moz-animation-delay: 7.5s;
    animation-delay: 7.5s;
}

/*=== Animations start here  ===*/

/*==== FADE IN UP ===*/
@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

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

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

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

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

/*=== FADE IN DOWN ===*/
.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

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

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

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

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

/*=== FADE IN LEFT ===*/
@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

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

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

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

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

/*==== FADE IN RIGHT ===*/
@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

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

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

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

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

/*=== FADE IN  ===*/
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

/*=== FADE IN UP Big ===*/
.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }

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

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }

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

/*=== FADE IN DOWN Big ===*/
.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }

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

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }

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

/*=== FADE IN LEFT Big ===*/
.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }

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

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }

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

/*=== FADE IN RIGHT Big ===*/
.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }

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

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }

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

@media screen and (min-width: 2560px) {
    .slide {
        height: auto !important;
    }
}

@media (max-width: 767px) {
    [style*="background-image: url(assets/images/565y.png)"] {
        background-image: none !important;
    }
}

/* Desktop: Show the background image */
.your-section-class {
    background-image: url(assets/images/565y.png);
    /* other background styles as needed */
}

/* Tablet and below: Hide the background image */
@media (max-width: 1024px) {
    .your-section-class {
        background-image: none !important;
    }
}

@media (max-width: 767px) {
    .sol .swiper-slide {
        width: 100vw !important;
        max-width: 100vw !important;
        height: auto !important;
        min-height: 1px !important;
        overflow: visible !important;
    }

    .sol .swiper-slide img {
        width: 100vw !important;
        max-width: 100vw !important;
        height: auto !important;
        max-height: 60vw !important;
        object-fit: contain !important;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .sol .swiper-container {
        width: 100vw !important;
        max-width: 100vw !important;
        height: auto !important;
        min-height: 1px !important;
    }
}

@media (max-width: 767px) {
    #verticalSwiperSlider,
    #verticalSwiperSlider .swiper-wrapper,
    #verticalSwiperSlider .swiper-slide {
        min-height: 1px !important;
        max-height: 80vw !important;
        box-sizing: border-box;
    }

    #verticalSwiperSlider .swiper-slide img {
        width: 100vw !important;
        max-width: 100vw !important;
        height: 100% !important;
        max-height: 100% !important;
        object-fit: contain !important;
        display: block;
        margin: 0 auto;
    }
}
