@charset "UTF-8";
/*---------------------------------------------------------------------
Template Name      : Lucxorio - Luxury Hotel and Resort Booking React Template
Author             : pus_infotech
Author Portfolio   : https://themeforest.net/user/pus_infotech 
Version            : 1.0.0 
-----------------------------------------------------------------------
CSS TABLE OF CONTENTS
-----------------------------------------------------------------------
- google fonts
- variable
- Typography
- Helper Class
- preloader
- back to top
- header
- banner-section
- demo section
- features section
- ajaxform section
- responsive section
- faq section
- footer section
- responsive css
-----------------------------------------------------------------------*/

/* ----------------------------------------------
            google fonts
---------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ----------------------------------------------
            variable
---------------------------------------------- */
:root {
    --primary-color-light: #0b8175;
    --primary-color: #033631;
    --primary-rgb-05: rgba(3, 54, 49, 0.05);
    --white-color: #ffffff;
    --black-color: #000000;
    --text-color: #525252;
    --heading-color: #0C193E;
    --body-color: #FFFFFF;
    --footer-color: #0C141F;
    --background-one: #F9F9FF;
    --background-two: #E6F9F8;
    --border-radius-one: 5px;
    --border-radius-two: 10px;
    --border-radius-three: 20px;
    --title-fonts: "Playfair Display", serif;
    --body-fonts: "Poppins", sans-serif;
    --heading-one: clamp(2rem, -0.0733rem + 6.3692vw, 3.125rem);
    --heading-two: clamp(1.75rem, 0.7133rem + 2.8846vw, 2.875rem);
    --heading-three: clamp(1.5rem, 0.3353rem + 2.1661vw, 2.5rem);
    --heading-four: clamp(1.5rem, 0.5569rem + 1.444vw, 2.25rem);
    --heading-five: clamp(1.125rem, 1.2rem + 0.722vw, 1.5rem);
    --heading-six: clamp(1rem, 0.769rem + 0.6813vw, 1.25rem);
    --transition: all 0.5s ease-in-out;
    --box-shadow: 0 14px 28px -20px rgba(16, 24, 40, .24);
    --extra-color-one: #DFFAFF;
    --extra-color-two: #0C193E;
}

/* ----------------------------------------------
            Typography 
---------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-fonts);
    color: var(--text-color);
    word-break: break-word;
    background-color: var(--body-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

p {
    font-weight: 400;
    margin: 0;
    line-height: 1.6;
}

span {
    display: inline-block;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    margin: 0 0 16px 0;
    font-family: var(--title-fonts);
    color: var(--heading-color);
    line-height: 1.2;
    font-weight: 600;
}

h1,
.h1 {
    font-size: var(--heading-one);
}

h2,
.h2 {
    font-size: var(--heading-two);
}

h3,
.h3 {
    font-size: var(--heading-three);
}

h4,
.h4 {
    font-size: var(--heading-four);
}

h5,
.h5 {
    font-size: var(--heading-five);
}

h6,
.h6 {
    font-size: var(--heading-six);
}

h1>a,
h2>a,
h3>a,
h4>a,
h5>a,
h6>a {
    font-weight: inherit;
    font-size: inherit;
    color: inherit;
    transition: 0.2s linear;
    line-height: inherit;
}

h1>a:hover,
h2>a:hover,
h3>a:hover,
h4>a:hover,
h5>a:hover,
h6>a:hover {
    color: var(--primary-color);
}

a {
    display: inline-block;
    transition: 0.2s linear;
    text-decoration: none;
    color: var(--primary-color);
}

a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
}

select {
    cursor: pointer;
}

ul,
ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

button {
    border: 0;
    background-color: transparent;
}

button:focus {
    outline: none;
    box-shadow: none;
}

.form-select:focus {
    outline: 0;
    box-shadow: none;
}

/* ----------------------------------------------
            Helper Class 
---------------------------------------------- */
.primary-color {
    color: var(--primary-color) !important;
}

.white-color {
    color: var(--white-color) !important;
}

.black-color {
    color: var(--black-color) !important;
}

.primary-bg {
    background-color: var(--primary-color) !important;
}

.background-one-bg {
    background-color: var(--background-one) !important;
}


/* # margin */
.m-10 {
    margin: 10px;
}

.m-20 {
    margin: 20px;
}

.m-30 {
    margin: 30px;
}

.m-40 {
    margin: 40px;
}

.m-50 {
    margin: 50px;
}

.m-60 {
    margin: 60px;
}

.m-70 {
    margin: 70px;
}

.m-80 {
    margin: 80px;
}

.m-90 {
    margin: 90px;
}

.m-100 {
    margin: 100px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-35 {
    margin-top: 35px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-45 {
    margin-top: 45px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-90 {
    margin-top: 90px;
}

.mt-100 {
    margin-top: 100px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-35 {
    margin-bottom: 35px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-45 {
    margin-bottom: 45px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-100 {
    margin-bottom: 100px;
}


/* # Padding */

.p-10 {
    padding: 10px;
}

.p-20 {
    padding: 20px;
}

.p-30 {
    padding: 30px;
}

.p-40 {
    padding: 40px;
}

.p-50 {
    padding: 50px;
}

.p-60 {
    padding: 60px;
}

.p-70 {
    padding: 70px;
}

.p-80 {
    padding: 80px;
}

.p-90 {
    padding: 90px;
}

.p-100 {
    padding: 100px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-15 {
    padding-top: 15px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-25 {
    padding-top: 25px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-35 {
    padding-top: 35px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-45 {
    padding-top: 45px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-70 {
    padding-top: 70px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-35 {
    padding-bottom: 35px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-45 {
    padding-bottom: 45px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-100 {
    padding-bottom: 100px;
}

/* section-title */
.section-title {
    position: relative;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
}

.section-title .sub-title {
    display: inline-block;
    border-radius: var(--border-radius-one);
    background-color: var(--primary-rgb-05);
    color: var(--primary-color);
    padding: 8px 15px;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4em;
    letter-spacing: .2px;
    text-transform: capitalize;
}

.section-title h2 {
    position: relative;
    z-index: 2;
    margin-bottom: 0;
    font-size: 40px;
    line-height: 1.2em;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: capitalize;
}

.section-title p {
    margin-bottom: 0;
}

.section-title.text-center {
    margin-left: auto;
    margin-right: auto;
    max-width: 640px;
}

.section-title.text-center .sub-title {
    margin: 0 auto;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    padding: 13px 35px;
    line-height: 24px;
    border-radius: 8px;
    font-weight: normal;
    position: relative;
    text-transform: capitalize;
    font-family: var(--body-fonts);
    z-index: 1;
    text-align: center;
    -webkit-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
    border: 0;
    overflow: hidden;
}

.btn:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0.8;
    -webkit-transform: translate(-105%, 0);
    transform: translate(-105%, 0);
    border-right-width: 2px;
    border-right-style: solid;
    border-right-color: white;
    background-color: rgba(255, 255, 255, 0.5);
}

.btn:hover::after {
    opacity: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.btn-gradient {
    background: linear-gradient(90.16deg, var(--primary-color-light) 0.17%, var(--primary-color) 99.9%);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}



/* -------------------------------------
        preloader
------------------------------------- */
.preloader {
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 999;
    background-color: var(--primary-color);
    position: fixed;
}

.preloader .preloader-icon {
    position: relative;
}

.preloader .preloader-icon img {
    width: 100px;
    height: 100px;
}

.preloader .preloader-text {
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
}

.preloader .preloader-text p {
    color: var(--white-color);
    margin-bottom: 0;
    font-size: 46px;
    line-height: 1.1em;
    font-weight: 700;
    text-transform: capitalize;
    -webkit-animation: fadeinone 3s ease-in-out infinite;
    -moz-animation: fadeinone 3s ease-in-out infinite;
    -o-animation: fadeinone 3s ease-in-out infinite;
    animation: fadeinone 3s ease-in-out infinite;
}

.preloader .preloader-text p:nth-child(1) {
    -webkit-animation-delay: .2s;
    -moz-animation-delay: .2s;
    -o-animation-delay: .2s;
    animation-delay: .2s;
}

.preloader .preloader-text p:nth-child(2) {
    -webkit-animation-delay: .3s;
    -moz-animation-delay: .3s;
    -o-animation-delay: .3s;
    animation-delay: .3s;
}

.preloader .preloader-text p:nth-child(3) {
    -webkit-animation-delay: .4s;
    -moz-animation-delay: .4s;
    -o-animation-delay: .4s;
    animation-delay: .4s;
}

.preloader .preloader-text p:nth-child(4) {
    -webkit-animation-delay: .5s;
    -moz-animation-delay: .5s;
    -o-animation-delay: .5s;
    animation-delay: .5s;
}

.preloader .preloader-text p:nth-child(5) {
    -webkit-animation-delay: .6s;
    -moz-animation-delay: .6s;
    -o-animation-delay: .6s;
    animation-delay: .6s;
}

.preloader .preloader-text p:nth-child(6) {
    -webkit-animation-delay: .7s;
    -moz-animation-delay: .7s;
    -o-animation-delay: .7s;
    animation-delay: .7s;
}

.preloader .preloader-text p:nth-child(7) {
    -webkit-animation-delay: .8s;
    -moz-animation-delay: .8s;
    -o-animation-delay: .8s;
    animation-delay: .8s;
}

@keyframes fadeinone {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* -------------------------------------
        back to top 
------------------------------------- */
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    width: 40px;
    height: 40px;
    right: 20px;
    bottom: 0;
    z-index: 5;
    background-color: var(--primary-color);
    color: var(--white-color);
    border: 1px solid hsla(0, 0%, 100%, .1);
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, .09);
    border-radius: var(--border-radius-one);
    transition: var(--transition);
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.back-to-top.show {
    visibility: visible;
    opacity: 1;
    bottom: 20px;
}



.side-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    content: "";
    inset-inline-start: 0;
    inset-block-start: 0;
    background-color: rgba(0, 0, 0, 0.60);
    z-index: 99;
    transition: 0.2s linear;
    visibility: hidden;
    opacity: 0;
}

.side-overlay.show {
    visibility: visible;
    opacity: 1;
}


/* -------------------------------------
        header
------------------------------------- */
.header {
    transition: 0.2s linear;
    background-color: var(--white-color);
    padding: 16px 0;
    box-shadow: 0px 4px 24px -5px rgba(0, 0, 0, 0.04);
}

.header.fixed-header {
    position: sticky;
    inset-inline-start: 0;
    inset-block-start: 0;
    inset-inline-end: 0;
    width: 100%;
    z-index: 9;
    animation: slideDown 0.35s ease-out;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-align {
    display: flex;
    align-items: center;
}

.nav-menu-link {
    color: var(--text-color);
    font-weight: 500;
    width: 100%;
    padding: 6px 16px;
    transition: 0.2s;
}


.toggle-mobileMenu {
    position: relative;
    height: 42px;
    width: 42px;
    background-color: var(--primary-color);
    border-radius: var(--border-radius-one);
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
}

.toggle-mobileMenu span {
    display: block;
    position: relative;
    z-index: 1;
    height: 2px;
    border-radius: 1px;
    opacity: 1;
    background-color: var(--white-color);
    margin: 3px 0;
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}

.toggle-mobileMenu span:nth-child(1) {
    width: 16px;
    margin-left: 5px;
}

.toggle-mobileMenu span:nth-child(2) {
    width: 16px;
    margin-right: 5px;
}

.toggle-mobileMenu span:nth-child(3) {
    width: 16px;
    margin-left: 5px;
}

/* mobile-menu */
.mobile-menu {
    position: fixed;
    right: 0;
    background-color: var(--white-color);
    width: 100%;
    max-width: 320px;
    height: 100vh;
    overflow-y: auto;
    padding: 24px;
    z-index: 991;
    transform: translateX(100%);
    transition: 0.2s linear;
}

.mobile-menu.active {
    transform: translateX(0%);
}

.close-button {
    position: absolute;
    inset-inline-end: 8px;
    inset-block-start: 8px;
    width: 28px;
    height: 28px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
    z-index: 2;
}

.mobile-menu-inner {
    height: calc(100% - 50px);
    position: relative;
}

.mobile-menu-menu {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nav-menu-mobile {
    display: block;
    margin-block-start: 22px;
    overflow: auto;
}

.nav-menu-mobile .nav-menu-link {
    border-bottom: 1px solid rgb(0 0 0 / 8%);
    position: relative;
    padding: 12px 0;
    padding-inline-end: 16px;
}


/* -------------------------------------
        banner-section
------------------------------------- */

.banner-section {
    background: var(--primary-color);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.banner-section .banner-content {
    padding: 220px 0 260px 0;
}

.banner-section .section-title .sub-title {
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.376);
    color: var(--white-color);
}

.banner-section .banner-content .banner-button-wapper {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.banner-section .banner-content .banner-button-wapper .btn-border {
    background-color: transparent;
    border: 1px solid var(--white-color);
    gap: 15px;
}

.banner-section .banner-content .banner-button-wapper .btn-border:hover {
    background-color: var(--white-color);
    color: var(--black-color);
}


.page-redirect-block {
    position: absolute;
    bottom: -55px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.icon-box {
    padding: 10px;
    background-color: var(--background-one);
    position: relative;
    border-radius: 100%;
}

.icon-box::before {
    position: absolute;
    content: "";
    bottom: 55px;
    left: -43.2px;
    background: transparent;
    width: 55px;
    height: 55px;
    border-bottom-right-radius: 55px;
    box-shadow: 0px 24px 0 -4px var(--background-one);
}

.icon-box::after {
    position: absolute;
    content: "";
    bottom: 55px;
    right: -43.2px;
    background: transparent;
    width: 55px;
    height: 55px;
    border-bottom-left-radius: 55px;
    box-shadow: 0px 24px 0 -4px var(--background-one);
}

.icon-box .icon-box-icon {
    width: 100px;
    height: 100px;
    background-color: var(--primary-color);
    color: var(--background-one);
    border-radius: 100%;
    font-size: 48px;
    line-height: 100px;
    text-align: center;
}

.icon-box:hover .icon-box-icon i {
    animation: icon-animation 0.3s linear;
    display: inline-block;
}

@keyframes icon-animation {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }

    50% {
        transform: translate(0, 70px);
        opacity: 0;
    }

    51% {
        transform: translate(0, -70px);
        opacity: 0;
    }

    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}


.tech-icon {
    position: absolute;
    z-index: -1;
    box-shadow: 0 24px 24px 0 hsla(0, 0%, 0%, 0.1);
    height: 82px;
    width: 82px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: updown 3s infinite;
    background: #fff;
    border-radius: 50px;
}

.tech-icon.tech-one {
    left: 12%;
    top: 154px;
    animation-delay: 1s;
}

.tech-icon.tech-two {
    top: 72%;
    left: 25%;
    animation-delay: 1.5s;
}

.tech-icon.tech-three {
    top: 72%;
    right: 25%;
    animation-delay: 2.2s;
}

.tech-icon.tech-four {
    top: 100px;
    right: 12%;
    animation-delay: 2.8s;
}

/* -------------------------------------
        demo section
------------------------------------- */
.demo-section .demo-image {
    overflow: hidden;
    border: 3px solid var(--white-color);
    border-radius: var(--border-radius-two);
    box-shadow: 0 4px 63px 0 rgba(15, 28, 51, 0.1);
}

.demo-section .demo-image a,
.demo-section .demo-image a img {
    position: relative;
    width: 100%;
}

.demo-overlay {
    opacity: 0;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.demo-overlay span {
    transform: scale(1.5);
    opacity: 0;
}

.demo-section .demo-image a:hover .demo-overlay {
    opacity: 1;
}

.demo-section .demo-image a:hover .demo-overlay span {
    transform: scale(1.0);
    opacity: 1;
}

.demo-section .demo-content {
    margin-top: 20px;
    text-align: center;
}

.demo-section .demo-content h3 {
    font-size: 22px;
    margin-bottom: 0;
}


/* -------------------------------------
        features section
------------------------------------- */
.features-section {
    background: var(--background-one);
}

.features-section .features-item {
    text-align: center;
    background: var(--white-color);
    border-radius: var(--border-radius-two);
    padding: 25px;
}

.features-section .features-icon {
    height: 80px;
    width: 80px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.features-section .features-content {
    margin-top: 15px;
}

.features-section .features-content h3 {
    font-size: 22px;
}

/* -------------------------------------
        ajaxform section
------------------------------------- */
.ajaxform-section {
    background: var(--background-one);
}

/* -------------------------------------
        responsive section
------------------------------------- */
.responsive-section .responsive-item {
    text-align: center;
}

.responsive-section .responsive-icon {
    height: 100px;
    width: 100px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.responsive-section .responsive-content {
    margin-top: 15px;
}

.responsive-section .responsive-content h3 {
    font-size: 22px;
}

.responsive-image {
    position: relative;
    z-index: 1;
}

.mockup-2 {
    position: absolute;
    top: 70px;
    left: 100px;
    animation: updown 3s infinite;
}

.mockup-3 {
    position: absolute;
    bottom: -40px;
    right: 130px;
    animation: updown 5s infinite;
}

@keyframes updown {
    0% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(-20px);
        -moz-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
}


/* -------------------------------------
        faq section
------------------------------------- */
.accordion-item {
    background: var(--primary-rgb-05);
}

.accordion-item {
    background: var(--primary-rgb-05);
    margin-bottom: 25px;
    border-radius: var(--border-radius-two) !important;
    border: none;
}

.accordion-item:nth-last-child(1) {
    margin-bottom: 0;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button {
    font-size: 18px;
    font-weight: 500;
    color: var(--heading-color);
}

.accordion-button,
.accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
}

.accordion-body {
    border-top: 1px solid #0000000d;
}

.accordion-body p {
    color: var(--text-color);
}

/* -------------------------------------
        footer section
------------------------------------- */
.footer-section {
    background-color: var(--footer-color);
}

.footer-wapper {
    max-width: 620px;
    margin: 0 auto;
}

.footer-wapper .section-title .sub-title {
    color: var(--white-color);
    background-color: transparent;
    border: 1px solid var(--white-color);
    padding: 8px 15px;
}

.copyright-text img {
    width: 100px;
}


/* -------------------------------------
        responsive css
------------------------------------- */
@media(max-width: 1400px) {
    .tech-icon {
        height: 52px;
        width: 52px;
    }

    .tech-icon img {
        width: 34px;
    }

    .banner-section .banner-content {
        padding: 120px 0 150px 0;
    }
}

@media(max-width: 1023px) {
    .icon-box .icon-box-icon {
        width: 80px;
        height: 80px;
        font-size: 44px;
        line-height: 80px;
    }

    .icon-box::before {
        bottom: 50px;
        left: -36.2px;
        width: 50px;
        height: 50px;
        border-bottom-right-radius: 50px;
        box-shadow: 0px 19px 0 -4px var(--background-one);
    }

    .icon-box::after {
        bottom: 50px;
        right: -36.2px;
        width: 50px;
        height: 50px;
        border-bottom-left-radius: 50px;
        box-shadow: 0px 19px 0 -4px var(--background-one);
    }
}

@media (max-width: 991px) {
    .pb-100 {
        padding-bottom: 50px;
    }

    .pt-100 {
        padding-top: 50px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .demo-section .demo-content h3,
    .features-section .features-content h3 {
        font-size: 20px;
    }

    #home {
        padding-top: 100px;
    }
}

@media (max-width: 767px) {
    .section-title h2 {
        font-size: 28px;
        line-height: normal;
    }

    .demo-section .demo-content h3,
    .features-section .features-content h3,
    .responsive-section .responsive-content h3 {
        font-size: 16px;
    }

    .icon-box {
        padding: 8px;
    }

    .accordion-button {
        font-size: 16px;
    }

    .icon-box .icon-box-icon {
        width: 74px;
        height: 74px;
        font-size: 40px;
        line-height: 74px;
    }

    .icon-box::before {
        bottom: 45px;
        left: -33px;
        width: 45px;
        height: 45px;
        border-bottom-right-radius: 45px;
        box-shadow: 0px 18px 0 -4px var(--white-color);
    }

    .icon-box::after {
        bottom: 45px;
        right: -33px;
        width: 45px;
        height: 45px;
        border-bottom-left-radius: 45px;
        box-shadow: 0px 18px 0 -4px var(--white-color);
    }

    .banner-section .banner-content {
        padding: 80px 0 100px 0;
    }

    .tech-icon.tech-one {
        left: 2%;
    }

    .tech-icon.tech-two {
        left: 10%;
    }

    .tech-icon.tech-three {
        right: 10%;
    }

    .tech-icon.tech-four {
        right: 2%;
    }
}

@media (max-width: 576px) {
    .tech-icon {
        display: none;
    }
}