/* Fonts */
:root {
    --default-font: "Quicksand", sans-serif;
    --heading-font: "Quicksand", sans-serif;
    --nav-font: "Quicksand", sans-serif;
}

/* Global Colors */
:root {
    --background-color: #ffffff;
    /* Background color */
    --default-color: #313032;
    /* Default color*/
    --heading-color: #313032;
    /* Color for headings */
    --accent-color: #2B402B;
    /* Accent color */
    --surface-color: #ffffff;
    /* The surface color */
    --contrast-color: #ffffff;
    /* Contrast color for text */
    --primary-color: #FFCA1E;
    --gradient: linear-gradient(-45deg, #FFCA1E, #ffc400, #977813, #FFCA1E);
}

/* Nav Menu Colors */
:root {
    --nav-color: #5b616e;
    --nav-hover-color: #FFCA1E;
    --nav-mobile-background-color: #ffffff;
}

.mobile-use {
    display: none;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*-------------------------------------------------------------- # General Styling & Shared Classes --------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

.alert-section {
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    top: 0;
    z-index: 10;
    width: 100%;
}

.alert-dismissible .btn-close {
    height: 100%;
    padding: 0 15px;
}

.alert-warning {
    /* background-color: var(--primary-color); */
    background-color: var(--accent-color);
    border: none;
    padding: 10px;
}

.early-bird-text {
    color: var(--contrast-color);
}

.index-page .main {
    /* padding-top: 170px; */
}

.index-page.scrolled .main {
    /* padding-top: 170px; */
}

.index-page .header {
    /* top: 70px; */
}

.index-page.scrolled .header {
    top: 0;
}

/*-------------------------------------------------------------- # Global Header --------------------------------------------------------------*/
.header {
    --background-color: #fff;
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 20px 0;
    transition: all 0.5s;
    z-index: 997;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    margin-right: 8px;
    height: 60px;
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll ------------------------------*/
.scrolled .header {
    --background-color: #ffffff;
}

/*-------------------------------------------------------------- # Navigation Menu --------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 25px;
        font-size: 16px;
        font-family: var(--nav-font);
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}

/*-------------------------------------------------------------- # Global Footer --------------------------------------------------------------*/
.footer {
    color: #5C5E5E;
    background-color: var(--background-color);
    font-size: 15px;
    padding: 100px 0 0 0;
    position: relative;
}

.footer .left-fast-box p {
    color: #030605;
    font-size: 20px;
    line-height: 34px;
}

.footer h4 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #000000;
}

.footer ul.list-nav {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer ul.list-nav li {
    margin: 8px 0;
}

.footer ul.list-nav li a {
    font-size: 15px;
    color: #5C5E5E;
    font-weight: 400;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
    margin-bottom: 0;
}

.nav-f-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-f-list li {
    display: inline-flex;
    margin-left: 30px;
}

/*-------------------------------------------------------------- # Preloader --------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background-color: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid var(--accent-color);
    border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

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

/*-------------------------------------------------------------- # Scroll Top Button --------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}

/*-------------------------------------------------------------- # Disable aos animation delay on mobile devices --------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*-------------------------------------------------------------- # Global Page Titles & Breadcrumbs --------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 160px 0 80px 0;
    text-align: center;
    position: relative;
}

.page-title:before {
    content: "";
    background-color: color-mix(in srgb, var(--background-color), transparent 50%);
    position: absolute;
    inset: 0;
}

.page-title h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
    padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*-------------------------------------------------------------- # Global Sections --------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 66px;
    }
}

/*-------------------------------------------------------------- # Global Section Titles --------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #262626;
}

.section-title p {
    margin-bottom: 0;
}

.sign-in {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    color: #141414;
    padding: 14px 22px;
}

.sign-in:hover {
    color: var(--primary-color);
}

.btn-log-in {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    padding: 14px 22px;
    border-radius: 8px;
    transition: 0.5s;
    /* box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  */
}

.btn-log-in:hover {
    box-shadow: inset 8em 0 0 0 var(--primary-color), inset -8em 0 0 0 var(--primary-color);
    border-color: var(--primary-color);
    color: var(--default-color);
}

.spacing-hr {
    padding: 0 10%;
}

/*-------------------------------------------------------------- # Hero Section --------------------------------------------------------------*/
.hero {
    width: 100%;
    position: relative;
    padding: 0 0 0 15%;
    /* min-height: 86vh;
  */
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    /* background-image: url(../img/Hero\ image.png);
  */
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
}

.desktop-onlyimg {
    position: absolute;
    right: 0;
    width: auto;
    top: 0;
    bottom: 0;
    height: 100vh;
}

.pr-0 {
    padding-right: 0 !important;
}

.space-over-all {
    padding: 0 26% 0 0%;
}

.hero .hero-bg {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 400;
    line-height: 140%;
    color: #313032;
}

.hero h1 span {
    color: var(--accent-color);
}

.hero p {
    color: #313032;
    margin: 20px 0 30px 0;
    font-size: 20px;
    font-weight: 400;
}

.btn-get-started {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 400;
    font-size: 20px;
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    transition: all 0.5s;
    border: none;
}

.btn-get-started:hover {
    box-shadow: inset 8em 0 0 0 #d6a400, inset -8em 0 0 0 #d6a400;
    border-color: #1c2e1c;
    color: #fff;
}

.hero .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    color: var(--default-color);
    font-weight: 600;
}

.hero .btn-watch-video i {
    color: var(--accent-color);
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
}

.hero .btn-watch-video:hover {
    color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
    color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 34px;
        line-height: 44px;
    }

    .hero p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    .hero .btn-get-started,
    .hero .btn-watch-video {
        font-size: 13px;
    }
}

/*-------------------------------------------------------------- # video Section --------------------------------------------------------------*/
.video {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.video .position-relative {
    height: 100%;
}

/* .video .position-relative::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  background: url(../img/line.svg) repeat-y center;
  width: 100%;
  height: 100%;
}
*/
.absolute-left {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    right: 0;
    bottom: 0;
    padding-top: 100px;
}

.absolute-left h5 {
    font-size: 12px;
    font-weight: normal;
    line-height: 20px;
    text-transform: uppercase;
    color: var(--contrast-color);
    letter-spacing: 4px;
    margin-bottom: 60px;
}

.absolute-left h2 {
    font-size: 78px;
    line-height: 93px;
    letter-spacing: -0.3px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 50px;
}

.call-btn {
    border: 1px solid #ffffff8c;
    font-size: 11px;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 20px 30px;
    color: #ffffff8c;
    border-radius: 8px;
    transition: all 0.35s;
    position: relative;
    font-weight: bold;
}

.call-btn:hover {
    box-shadow: inset 10em 0 0 0 #d6a400, inset -10em 0 0 0 #d6a400;
    border-color: #d6a400;
    color: #000;
}

/* .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 20px;
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  transition: all 0.5s;
  border: none;
}
.btn-get-started:hover {
  box-shadow: inset 8em 0 0 0 #d6a400, inset -8em 0 0 0 #d6a400;
  border-color: #1c2e1c;
  color: #fff;
}
*/
.lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    margin: auto;
    width: 90vw;
}

.line {
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.line::after {
    content: "";
    display: block;
    position: absolute;
    height: 15vh;
    width: 100%;
    top: -50%;
    left: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 75%, #ffffff 100%);
    -webkit-animation: drop 7s 0s infinite;
    animation: drop 7s 0s infinite;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
    animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}

.line:nth-child(1) {
    margin-left: -49%;
}

.line:nth-child(1)::after {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.line:nth-child(2) {
    margin-left: -38%;
}

.line:nth-child(2)::after {
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
}

.line:nth-child(3) {
    margin-left: -18%;
}

.line:nth-child(3)::after {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.line:nth-child(5) {
    margin-left: 18%;
}

.line:nth-child(5)::after {
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
}

.line:nth-child(6) {
    margin-left: 49%;
}

.line:nth-child(6)::after {
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
}

@-webkit-keyframes drop {
    0% {
        top: -50%;
    }

    100% {
        top: 110%;
    }
}

@keyframes drop {
    0% {
        top: -50%;
    }

    100% {
        top: 110%;
    }
}

/* .call-btn::before, .call-btn::after {
  position: absolute;
  top: 0;
  left: 0;
  border-color: var(--primary-color);
  border-radius: 5px;
  border-style: solid;
  transition: all 0.35s;
  content: "";
  z-index: 1;
}
.call-btn::before {
  width: 0;
  height: 100%;
  border-width: 1px 0 1px 0;
}
.call-btn:hover::before {
  width: 100%;
  border-width: 1px 0 1px 0;
}
.call-btn:hover::after {
  height: 100%;
  border-width: 0 1px 0 1px;
}
*/
.pulsating-play-btn {
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    z-index: 10;
}

.swipe-down {
    position: absolute;
    left: -80px;
    top: 18%;
    font-size: 16px;
    letter-spacing: 10px;
    color: #fff;
    text-transform: uppercase;
    padding: 20px;
    transform: rotate(270deg);
}

.swipe-down:hover {
    color: var(--primary-color);
}

.featured-down {
    position: absolute;
    left: -144px;
    bottom: 45%;
    font-size: 16px;
    letter-spacing: 4px;
    color: #6E7488;
    text-transform: uppercase;
    padding: 24px 40px;
    transform: rotate(270deg);
    background-color: #EDF5E7;
}

.featured-down:hover {
    color: #000;
    background-color: var(--primary-color);
}

.scroll-top-m {
    margin-bottom: 0;
    border-radius: 0;
    text-align: center;
    padding: 4px;
}

.fixed-top {
    position: relative;
}

/* Pulsating Play Button ------------------------------*/
.pulsating-play-btn {
    width: 94px;
    height: 94px;
    background: transparent;
    border-radius: 50%;
    display: block;
    overflow: hidden;
    border: 1px solid #fff;
}

.pulsating-play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-play-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid color-mix(in srgb, var(--primary-color), transparent 30%);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}

.pulsating-play-btn:hover:after {
    border-left: 15px solid var(--primary-color);
    transform: scale(20);
}

@keyframes pulsate-play-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*-------------------------------------------------------------- # Stats Section --------------------------------------------------------------*/
.stats {
    padding: 175px 0 175px 0;
}

.stats h5 {
    font-weight: 400;
    font-size: 16px;
    color: #6D7D7D;
    line-height: 24px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.stats h2 {
    font-size: 40px;
    color: #000;
    font-weight: 400;
    margin-bottom: 20px;
}

.stats p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.about-bottom-space-150 {
    margin-bottom: 150px;
}

.radius-right-40 {
    border-radius: 0 40px 0 0;
}

.hidden-box {
    overflow: hidden;
}

.hidden-box .img-hover {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.hidden-box .img-hover:hover {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.radius-right-40.img-hover {
    border-radius: 0 40px 0 0 !important;
}

.item-minus-left {
    left: -60px;
    position: relative;
}

.stats .stats-item {
    padding: 0 30px 20px 30px;
    width: 100%;
}

.stats .stats-item span {
    font-size: 40px;
    display: block;
    color: #6D7D7D;
    font-weight: 400;
}

.stats .stats-item p {
    color: #000000;
    padding: 0;
    margin: 0;
    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 3px;
}

.index-page.scrolled .header {
    padding: 10px 0;
}

/*-------------------------------------------------------------- # Services Section --------------------------------------------------------------*/
.services {
    padding-bottom: 150px;
}

.services .service-item {
    height: 100%;
    padding: 0 30px;
    text-align: center;
    transition: 0.3s;
    border-radius: 5px;
}

.services .service-item .icon {
    margin: 0 auto;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out 0.3s;
    position: relative;
}

.services .service-item .icon img {
    background-color: #F4F4F4;
    padding: 15px;
    transition: 0.5s;
    position: relative;
}

.services .service-item h3 {
    font-weight: 600;
    margin: 10px 0 15px 0;
    font-size: 20px;
    color: #000000;
    transition: 0.3s;
}

.services .service-item p {
    line-height: 24px;
    font-size: 16px;
    margin-bottom: 0;
    color: #6D7D7D;
}

.services .service-item:hover {
    transform: scale(1.06);
}

.services .service-item:hover h3 {
    color: var(--accent-color);
}

/*-------------------------------------------------------------- # Features Section --------------------------------------------------------------*/
.features h3 {
    color: var(--heading-color);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.features .icon-box {
    margin-top: 50px;
}

.features .icon-box i {
    color: var(--accent-color);
    background-color: var(--surface-color);
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 60%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    font-size: 32px;
    width: 64px;
    height: 64px;
    border-radius: 50px;
    transition: 0.5s;
    line-height: 0;
}

.features .icon-box:hover i {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
}

.features .icon-box .title {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
}

.features .icon-box .title a {
    color: var(--heading-color);
    transition: 0.3s;
}

.features .icon-box .title a:hover {
    color: var(--accent-color);
}

.features .icon-box .description {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.features .video-box {
    min-height: 400px;
}

.features .video-box img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/*-------------------------------------------------------------- # Team Section --------------------------------------------------------------*/
.team {
    --default-color: #ffffff;
    padding: 0 5%;
}

.team .section-title {
    padding-bottom: 30px;
}

.follow-us {
    color: #000;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 3px;
}

.follow-us img {
    position: relative;
    top: -2px;
}

.team .section-title h2 {
    font-size: 32px;
    line-height: 42px;
}

.team .member {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team .member .member-info {
    opacity: 0;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    transition: 0.2s;
    padding-bottom: 30px;
}

.team .member .member-info-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    transition: bottom 0.4s;
}

.team .member .member-info-content h4 {
    color: var(--contrast-color);
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
}

.team .member .member-info-content span {
    font-style: italic;
    display: block;
    font-size: 13px;
}

.team .member .social {
    position: absolute;
    left: 0;
    bottom: -38px;
    right: 0;
    height: 70px;
    transition: bottom ease-in-out 0.4s;
    text-align: center;
}

.team .member .social a {
    transition: color 0.3s;
    margin: 0 0;
    display: inline-block;
    padding: 10px 20px;
}

.team .member .social i {
    font-size: 18px;
    margin: 0 2px;
}

.team .member:hover .member-info {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(255, 255, 255, 0) 100%);
    opacity: 1;
    transition: 0.4s;
}

.team .member:hover .member-info-content {
    bottom: 90px;
    transition: bottom 0.4s;
}

.team .member:hover .social {
    bottom: 0;
    transition: bottom ease-in-out 0.4s;
}

.radius-style {
    border-radius: 0 250px 0 80px;
    transition: 0.5s;
}

.radius-style:hover {
    border-radius: 250px 0 80px 0;
}

.light-background {
    padding-top: 0;
}

.art-of {
    padding-right: 60px;
}

.feature-details {
    padding: 150px 0 90px;
}

.feature-details h2 {
    font-size: 50px;
    color: #292F36;
    line-height: 60px;
    font-weight: 400;
    margin-bottom: 25px;
}

.feature-details p {
    font-size: 22px;
    color: #4D5053;
    line-height: 32px;
}

.gap15 {
    gap: 15px;
}

.follow-project {
    padding: 60px 5% 90px 5%;
}

.follow-project .section-title p {
    font-size: 22px;
    line-height: 32px;
    color: #4D5053;
}

.grid-box {
    display: grid;
    gap: 100px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 20px;
}

.content-card img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.content-card .hidden-box {
    margin-bottom: 20px;
    transition: 0.5s;
    position: relative;
    display: inline-block;
}

.content-card .hidden-box:hover .plus-icon {
    background-color: var(--primary-color);
}

.content-card .hidden-box:hover .plus-icon svg {
    fill: #000;
}

.plus-icon {
    position: absolute;
    right: 5px;
    bottom: 5px;
    height: 36px;
    width: 36px;
    background-color: #00000079;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    cursor: pointer;
    border: none;
}

.plus-icon svg {
    fill: #fff;
}

.content-card img:hover {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.content-card .hidden-box:hover {
    border-radius: 0 0 0 80px;
}

.content-card img.radius-right-top-1 {
    border-radius: 0 80px 0 0;
}

/* .content-card img.radius-left-top-1 {
  border-radius: 80px 0 0 0;
}
.content-card img.radius-right-bottom-1 {
  border-radius: 0 0 80px 0;
}
.content-card img.radius-left-bottom-1 {
  border-radius: 0 0 0 80px;
}
*/
.content-card h3 {
    font-size: 25px;
    font-weight: 400;
    color: #292F36;
}

.content-card span {
    font-size: 22px;
    font-weight: 400;
    color: #4D5053;
}

.article-news {
    padding: 60px 0 150px 0;
}

.article-news .section-title p {
    font-size: 22px;
    line-height: 32px;
    color: #4D5053;
}

.card-box {
    border: 1px solid #E7E7E7;
    border-radius: 60px;
    padding: 20px 20px 60px 20px;
    background-color: #fff;
    display: inline-block;
    width: 100%;
}

.hidden-card-box {
    overflow: hidden;
    position: relative;
    transition: 0.5s;
    margin-bottom: 20px;
    border-radius: 60px 60px 0 0;
}

.hidden-card-box img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.card-box:hover .hidden-card-box img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.card-box:hover {
    background-color: #EDF5E7;
    border: 1px solid #EDF5E7;
}

.card-box h4 {
    font-size: 25px;
    color: #292F36;
    letter-spacing: 1px;
    font-weight: 400;
    margin-bottom: 30px;
}

.card-box span {
    font-size: 16px;
    font-weight: 400;
    color: #4D5053;
}

.intarested-in {
    background-color: var(--primary-color);
    padding: 80px 0 0;
    border-radius: 0 0 400px 0;
    position: relative;
    -webkit-overflow-Y: hidden;
    -moz-overflow-Y: hidden;
    -o-overflow-Y: hidden;
    overflow-y: hidden;
    -webkit-animation: fadeIn 1 1s ease-out;
    -moz-animation: fadeIn 1 1s ease-out;
    -o-animation: fadeIn 1 1s ease-out;
    animation: fadeIn 1 1s ease-out;
}

.intarested-in .container {
    position: relative;
    z-index: 2;
}

.light {
    position: absolute;
    width: 0px;
    opacity: .75;
    background-color: rgba(0, 0, 0, 0.1);
    box-shadow: rgba(0, 0, 0, 0.05) 10px 10px 2px 2px;
    opacity: 0;
    top: 100vh;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
}

.x1 {
    -webkit-animation: floatUp 4s infinite linear;
    -moz-animation: floatUp 4s infinite linear;
    -o-animation: floatUp 4s infinite linear;
    animation: floatUp 4s infinite linear;
    -webkit-transform: scale(1.0);
    -moz-transform: scale(1.0);
    -o-transform: scale(1.0);
    transform: scale(1.0);
}

.x2 {
    -webkit-animation: floatUp 7s infinite linear;
    -moz-animation: floatUp 7s infinite linear;
    -o-animation: floatUp 7s infinite linear;
    animation: floatUp 7s infinite linear;
    -webkit-transform: scale(1.6);
    -moz-transform: scale(1.6);
    -o-transform: scale(1.6);
    transform: scale(1.6);
    left: 15%;
}

.x3 {
    -webkit-animation: floatUp 2.5s infinite linear;
    -moz-animation: floatUp 2.5s infinite linear;
    -o-animation: floatUp 2.5s infinite linear;
    animation: floatUp 2.5s infinite linear;
    -webkit-transform: scale(.5);
    -moz-transform: scale(.5);
    -o-transform: scale(.5);
    transform: scale(.5);
    left: -15%;
}

.x4 {
    -webkit-animation: floatUp 4.5s infinite linear;
    -moz-animation: floatUp 4.5s infinite linear;
    -o-animation: floatUp 4.5s infinite linear;
    animation: floatUp 4.5s infinite linear;
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    left: -34%;
}

.x5 {
    -webkit-animation: floatUp 8s infinite linear;
    -moz-animation: floatUp 8s infinite linear;
    -o-animation: floatUp 8s infinite linear;
    animation: floatUp 8s infinite linear;
    -webkit-transform: scale(2.2);
    -moz-transform: scale(2.2);
    -o-transform: scale(2.2);
    transform: scale(2.2);
    left: -57%;
}

.x6 {
    -webkit-animation: floatUp 3s infinite linear;
    -moz-animation: floatUp 3s infinite linear;
    -o-animation: floatUp 3s infinite linear;
    animation: floatUp 3s infinite linear;
    -webkit-transform: scale(.8);
    -moz-transform: scale(.8);
    -o-transform: scale(.8);
    transform: scale(.8);
    left: -81%;
}

.x7 {
    -webkit-animation: floatUp 5.3s infinite linear;
    -moz-animation: floatUp 5.3s infinite linear;
    -o-animation: floatUp 5.3s infinite linear;
    animation: floatUp 5.3s infinite linear;
    -webkit-transform: scale(3.2);
    -moz-transform: scale(3.2);
    -o-transform: scale(3.2);
    transform: scale(3.2);
    left: 37%;
}

.x8 {
    -webkit-animation: floatUp 4.7s infinite linear;
    -moz-animation: floatUp 4.7s infinite linear;
    -o-animation: floatUp 4.7s infinite linear;
    animation: floatUp 4.7s infinite linear;
    -webkit-transform: scale(1.7);
    -moz-transform: scale(1.7);
    -o-transform: scale(1.7);
    transform: scale(1.7);
    left: 62%;
}

.x9 {
    -webkit-animation: floatUp 4.1s infinite linear;
    -moz-animation: floatUp 4.1s infinite linear;
    -o-animation: floatUp 4.1s infinite linear;
    animation: floatUp 4.1s infinite linear;
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9);
    left: 85%;
}

button:focus {
    outline: none;
}

@-webkit-keyframes floatUp {
    0% {
        top: 100vh;
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    50% {
        top: 0vh;
        opacity: .8;
    }

    75% {
        opacity: 1;
    }

    100% {
        top: -100vh;
        opacity: 0;
    }
}

@-moz-keyframes floatUp {
    0% {
        top: 100vh;
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    50% {
        top: 0vh;
        opacity: .8;
    }

    75% {
        opacity: 1;
    }

    100% {
        top: -100vh;
        opacity: 0;
    }
}

@-o-keyframes floatUp {
    0% {
        top: 100vh;
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    50% {
        top: 0vh;
        opacity: .8;
    }

    75% {
        opacity: 1;
    }

    100% {
        top: -100vh;
        opacity: 0;
    }
}

@keyframes floatUp {
    0% {
        top: 100vh;
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    50% {
        top: 0vh;
        opacity: .8;
    }

    75% {
        opacity: 1;
    }

    100% {
        top: -100vh;
        opacity: 0;
    }
}

.intarested-in h2 {
    font-size: 82px;
    line-height: 116%;
    color: #030605;
    font-weight: 400;
    margin-bottom: 30px;
}

.intarested-in p {
    font-size: 20px;
    line-height: 34px;
    color: #030605;
    margin-bottom: 20px;
}

.radius-bottom-right {
    border-radius: 0 0 150px 0;
    position: relative;
    width: 470px !important;
    max-width: initial !important;
    margin-top: -80px;
}

.space-right-80 {
    padding-right: 180px;
}

.large-header {
    overflow: hidden;
}

#demo-canvas {
    position: absolute;
}

.desktop-none {
    display: none;
}

.desk-nan {
    display: none;
}

.tag-left {
    padding: 10px;
    background-color: #fff;
    border-radius: 8px 8px 8px 0;
    position: absolute;
    left: 20px;
    bottom: 20px;
    font-size: 16px;
    font-weight: 400;
    color: #4D5053;
}

.privacy h3 {
    font-size: 22px;
}

.privacy li {
    margin: 10px 0;
}

.top-minus-30 {
    position: relative;
    margin-top: -30px;
}

.top-minus-60 {
    position: relative;
    margin-top: -60px;
}

.top-minus-60 img {
    height: 586px;
}

.top-minus-100 {
    position: relative;
    margin-top: -100px;
}

.top-minus-100 img {
    height: 627px;
}

.top-minus-130 {
    position: relative;
    margin-top: -130px;
}

.top-minus-130 img {
    height: 657px;
}

.scroll-top-m {
    display: flex;
    justify-content: center;
    align-items: center;
    /* position: fixed;
  */
}

.scroll-top-m>div {
    font-size: 16px;
    text-transform: uppercase;
}

#countdown ul {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin-bottom: 0;
    margin: 0 !important;
    padding: 0 !important;
}

.index-page.scrolled .fixed-top {
    position: fixed;
}

#countdown ul li {
    margin: 0 0;
    position: relative;
}

#countdown ul li span {
    background: #000;
    padding: 5px;
    width: 25px;
    height: 25px;
    display: inline-flex;
    color: #fff;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    position: relative;
    font-size: 14px;
}

#countdown ul li::after {
    position: absolute;
    content: ":";
    right: -5px;
    color: #000;
    font-weight: bold;
    top: 0;
    font-size: 20px;
}

#countdown ul li:last-child::after {
    display: none;
}

#countdown ul li b {
    width: 100%;
    display: inline-block;
    text-transform: uppercase;
    font-size: 10px;
}

.trigger1 {
    border: none;
}

.trigger2 {
    border: none;
}

.trigger3 {
    border: none;
}

.trigger4 {
    border: none;
}

.trigger5 {
    border: none;
}

.trigger6 {
    border: none;
}

.trigger7 {
    border: none;
}

.trigger8 {
    border: none;
}

.modal1 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    z-index: 1000;
}

.modal2 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    z-index: 1000;
}

.modal3 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    z-index: 1000;
}

.modal4 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    z-index: 1000;
}

.modal5 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    z-index: 1000;
}

.modal7 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    z-index: 1000;
}

.modal8 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    z-index: 1000;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 1rem 1.5rem;
    width: 50rem;
    max-width: 95%;
    border-radius: 16px;
    overflow: hidden;
}

.scroll-content {
    height: 80vh;
    overflow: auto;
}

.scroll-content::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 0;
    background-color: #F5F5F5;
}

.scroll-content::-webkit-scrollbar {
    width: 0;
    background-color: #F5F5F5;
}

.scroll-content::-webkit-scrollbar-thumb {
    border-radius: 0;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: var(--primary-color);
}

.modal-style .modal-content {
    padding: 30px 40px;
}

.modal-style .modal-header {
    padding: 0 0 15px;
}

.modal-style .modal-body {
    padding: 15px 0 0;
}

.modal-style .close-button {
    right: 40px;
    top: 35px;
}

.modal-style .modal-body .form-label {
    font-weight: bold;
}

.modal-style .btn-get-started {
    padding: 10px 25px;
    font-size: 16px;
}


.modal-content p {
    font-size: 16px;
    line-height: 24px;
}

.modal-content h5 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.modal-content h1 {
    font-size: 25px;
    font-weight: bold;
    color: #292F36;
}

.close-button {
    right: 15px;
    top: 15px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    background-color: #000;
    position: absolute;
    color: #fff;
    border-radius: 50%;
}

.close-button:hover {
    background-color: var(--primary-color);
}

.show-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.img-modal {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #f5f5f7;
    border-radius: 15px;
    padding: 40px;
    border-radius: 15px;
    overflow: initial;
    margin-top: 20px;
}

.img-modal img {
    border-radius: 16px;
    width: 50%;
}

.img-modal-full {
    padding: 20px 0;
}

.img-modal-full img {
    border-radius: 16px;
}

.modal .modal-content {
    width: 30rem;
    max-width: 100%;

}

.modal .modal-content input.form-control {
    height: 50px;
}

.slider2 .slick-prev,
.slider2 .slick-next {
    background-color: #1c2e1c;
    border-radius: 50%;
    width: 75px;
    height: 75px;
    color: #fff;
    z-index: 10;
    margin-top: -70px;
}

.slider2 .slick-prev:before {
    content: "\2190";
    font-size: 30px;
    color: #fff;
}

.slider2 .slick-next:before {
    content: "\2192";
    font-size: 30px;
    color: #fff;
}

.slider2 .slick-prev:hover,
.slider2 .slick-next:hover {
    background-color: var(--primary-color);
}


@media only screen and (min-width: 1200px) and (max-width:1366px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1100px;
    }
}

@media only screen and (min-width:1025px) and (max-width:1366px) {
    .intarested-in h2 {
        font-size: 40px;
    }
}

@media only screen and (min-width:1024px) and (max-width:1480px) {
    .hero {
        padding-left: 8%;
        padding-top: 0;
    }

    .slider2 .slick-prev,
    .slider2 .slick-next {
        width: 75px;
        height: 75px;
    }

    .intarested-in p {
        font-size: 16px;
        line-height: 24px;
    }

    .img-call {
        width: 60px;
    }

    .follow-project {
        padding-bottom: 0;
        padding-top: 0;
    }

    .article-news {
        padding: 60px 0 90px 0;
    }

    .intarested-in {
        padding-top: 50px;
    }

    .radius-bottom-right {
        width: 330px !important;
    }

    .navmenu a,
    .navmenu a:focus {
        font-size: 14px;
    }

    .btn-log-in {
        font-size: 14px;
        padding: 12px 20px;
    }

    .header {
        padding: 10px 0;
    }

    .scroll-top-m {
        padding: 5px 10px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 16px;
    }

    .btn-get-started {
        font-size: 14px;
        padding: 12px 20px;
    }

    .space-over-all {
        padding-right: 100px !important;
    }

    .absolute-left h2 {
        font-size: 50px;
        line-height: 60px;
    }

    .stats {
        padding: 90px 0 90px;
    }

    .img-logo {
        width: 200px;
    }

    .footer .left-fast-box p {
        font-size: 16px;
        line-height: 24px;
    }

    .footer ul.list-nav li a {
        font-size: 14px;
    }

    .footer h4 {
        font-size: 16px;
    }

    .footer {
        padding-top: 80px;
    }

    .footer .copyright {
        font-size: 12px;
    }

    .stats h2 {
        font-size: 34px;
        line-height: 44px;
    }

    .stats .stats-item span {
        font-size: 30px;
    }

    .stats .stats-item p {
        font-size: 14px;
    }

    .services {
        padding-bottom: 90px;
    }

    .feature-details {
        padding: 90px 0 90px;
    }

    .feature-details h2 {
        font-size: 34px;
        line-height: 44px;
    }

    .section-title h2 {
        font-size: 34px;
        line-height: 44px;
    }

    .section-title {
        padding-bottom: 30px;
    }

    .services .service-item h3 {
        font-size: 16px;
    }

    .services .service-item p {
        font-size: 14px;
        line-height: 20px;
    }

    .team .member .member-info-content h4 {
        font-size: 14px;
    }

    .follow-us {
        font-size: 14px;
    }

    .team .section-title h2 {
        font-size: 24px;
        line-height: 34px;
    }

    .feature-details p {
        font-size: 16px;
        line-height: 24px;
    }

    .follow-project .section-title p {
        font-size: 16px;
        line-height: 24px;
    }

    .content-card h3 {
        font-size: 20px;
    }

    .content-card span {
        font-size: 16px;
    }

    .article-news .section-title p {
        font-size: 16px;
        line-height: 24px;
    }

    .top-minus-30 img {
        height: 555px;
    }

    .card-box h4 {
        font-size: 20px;
    }

    .card-box span {
        font-size: 12px;
    }

    .card-box {
        padding: 15px 15px 30px 15px;
        border-radius: 30px;
    }

    .hidden-card-box {
        border-radius: 30px 30px 0 0;
    }

    .space-over-all {
        position: relative;
        margin-top: -60px;
    }
}

@media only screen and (min-width:768px) and (max-width:1024px) {
    .scroll-top-m {
        display: inline-block;
        width: 100%;
    }

    #countdown {
        padding-top: 15px;
    }

    .desktop-onlyimg {
        display: none;
    }

    .space-over-all {
        padding: 0 0 0 0%;
    }

    .desk-nan {
        display: none;
    }

    .spacing-hr {
        padding: 0 30px;
    }

    .pr-0 {
        padding-right: 10px !important;
    }

    .hero {
        min-height: initial;
        padding: 50px 15px 50px 15px;
    }

    .absolute-left {
        padding-top: 50px;
    }

    .absolute-left h5 {
        margin-bottom: 20px;
    }

    .absolute-left h2 {
        font-size: 45px;
        line-height: 60px;
    }

    .featured-down {
        left: initial;
        right: -95px;
        padding: 20px 30px;
    }

    .swipe-down {
        display: none;
    }

    .stats {
        padding: 60px 0;
    }

    .about-bottom-space-150 {
        margin-bottom: 60px;
    }

    .art-of {
        padding-right: 20px;
    }

    .feature-details h2 {
        font-size: 40px;
        line-height: 50px;
    }

    .feature-details p {
        font-size: 16px;
        line-height: 24px;
    }

    .grid-box {
        gap: 50px;
    }

    .card-box {
        padding: 20px;
        border-radius: 20px;
    }

    .hidden-card-box {
        border-radius: 20px 20px 0 0;
    }

    .intarested-in h2 {
        font-size: 50px;
        line-height: 60px;
    }

    .space-right-80 {
        padding-right: 20px;
    }

    .article-news {
        padding: 0 0 60px;
    }

    .follow-project {
        padding: 0 0 90px 0;
    }

    .feature-details {
        padding: 60px 0 90px 0;
    }

    .services {
        padding-bottom: 90px;
    }

    .intarested-in {
        border-radius: 0 0 300px 0;
    }

    .desktop-none {
        display: block;
    }

    .hero {
        background-image: none;
    }

    .radius-style {
        border-radius: 0 100px 0 80px;
    }

    .radius-style:hover {
        border-radius: 100px 0 80px 0;
    }

    .card-box h4 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .footer ul.list-nav {
        margin-bottom: 20px;
    }

    .footer .left-fast-box p {
        font-size: 16px;
        line-height: 24px;
    }

    .top-minus-30 {
        margin-top: 0;
    }

    .top-minus-60 {
        margin-top: 0;
    }

    .top-minus-60 img {
        height: auto;
    }

    .top-minus-100 {
        margin-top: 0;
    }

    .top-minus-100 img {
        height: auto;
    }

    .top-minus-130 {
        margin-top: 0;
    }

    .top-minus-130 img {
        height: auto;
    }
}

.xl-md-hide {
    display: none;
}

@media only screen and (max-width:767px) {
    .img-modal {
        padding: 20px;
        flex-wrap: wrap;
    }

    .img-modal img {
        width: 100%;
    }

    .slider2 .slick-prev,
    .slider2 .slick-next {
        display: none;
    }

    .follow-project .slick-slide {
        margin: 0 15px !important;
    }

    .follow-project .section-title p {
        font-size: 16px;
        line-height: 24px;
    }

    .follow-project .section-title p br {
        display: none;
    }

    .article-news .section-title p {
        font-size: 16px;
        line-height: 24px;
    }

    .intarested-in p {
        font-size: 16px;
        line-height: 24px;
    }

    .article-news .section-title p br {
        display: none;
    }

    .space-over-all {
        text-align: center;
    }

    .pr-0 {
        padding-right: 10px !important;
    }

    .space-over-all .d-flex {
        justify-content: center;
    }

    .spacing-hr {
        padding: 0 10px;
    }

    .hero {
        min-height: initial;
        padding: 10px 0 50px 0;
    }

    .absolute-left h5 {
        margin-bottom: 20px;
    }

    .absolute-left h2 {
        font-size: 34px;
        line-height: 44px;
    }

    .hidden-box img {
        height: 300px !important;
        object-fit: cover;
    }

    .absolute-left h2 br {
        display: none;
    }

    .featured-down {
        right: -109px;
        left: initial;
        padding: 20px;
        bottom: 332px;
    }

    .swipe-down {
        display: none;
    }

    .video .absolute-left {
        display: none;
    }

    .absolute-left {
        position: relative;
        padding: 0;
        background-color: var(--accent-color);
        padding: 40px 0 60px;
        top: -10px
    }

    .desk-nan {
        display: block;
    }

    .stats {
        padding: 60px 0;
    }

    .about-bottom-space-150 {
        margin-bottom: 30px;
    }

    .art-of {
        padding-right: 20px;
    }

    .feature-details h2 {
        font-size: 34px;
        line-height: 44px;
    }

    .section-title h2 {
        font-size: 34px;
        line-height: 44px;
    }

    .feature-details p {
        font-size: 16px;
        line-height: 24px;
    }

    .grid-box {
        gap: 20px;
    }

    .content-card h3 {
        font-size: 20px;
    }

    .content-card span {
        font-size: 16px;
    }

    .space-right-80 {
        padding: 0 0 20px 0 !important;
    }

    .card-box {
        padding: 20px;
        border-radius: 20px;
    }

    .hidden-card-box {
        border-radius: 20px 20px 0 0;
    }

    .intarested-in h2 {
        font-size: 34px;
        line-height: 44px;
        margin-bottom: 20px;
    }

    .space-right-80 .align-items-center img {
        width: 50px;
    }

    .card-box {
        margin-bottom: 20px;
    }

    .img-logo {
        width: 200px;
    }

    .space-right-80 {
        padding-right: 20px;
    }

    .article-news {
        padding: 0 0 60px;
    }

    .follow-project {
        padding: 0 0 60px 0;
    }

    .feature-details {
        padding: 60px 0 90px 0;
    }

    .services {
        padding-bottom: 90px;
    }

    .intarested-in {
        padding: 50px 0 20px 0;
        border-radius: 0 0 100px 0;
    }

    .radius-bottom-right {
        top: 0;
        width: auto !important;
        margin: 0;
        border-radius: 0 0 80px 0 !important;
        max-width: inherit !important;
    }

    .desktop-none {
        display: block;
    }

    .hero {
        background-image: none;
    }

    .radius-style {
        border-radius: 0 100px 0 80px;
    }

    .radius-style:hover {
        border-radius: 100px 0 80px 0;
    }

    .card-box h4 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .footer ul.list-nav {
        margin-bottom: 20px;
    }

    .footer .left-fast-box p {
        font-size: 16px;
        line-height: 24px;
    }

    .item-minus-left {
        left: 0;
    }

    .xl-md-hide {
        display: block;
    }

    .mob-none {
        display: none;
    }

    .stats .stats-item {
        padding: 15px 5px;
    }

    .col-space-gap {
        gap: 30px;
    }

    .radius-right-40 {
        border-radius: 0;
    }

    .follow-us {
        font-size: 14px;
    }

    .break-mobile {
        flex-wrap: wrap;
    }

    .slick-slide {
        margin: 0 !important;
    }

    .footer {
        padding: 50px 0 0 0;
    }

    .copyright {
        flex-wrap: wrap;
        display: inline-block;
        width: 100%;
        text-align: left;
        padding: 20px 15px !important;
    }

    .copyright p {
        font-size: 12px;
    }

    .stats h2 {
        font-size: 34px;
        line-height: 44px;
    }

    .section-title {
        padding-bottom: 30px;
    }

    .stats .stats-item span {
        font-size: 34px;
    }

    .stats .stats-item p {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .nav-f-list {
        text-align: left;
        margin-top: 20px;
    }

    .nav-f-list li {
        margin: 0 15px 0 0;
    }

    .colum-2 .col-sm-6 {
        width: 50%;
    }

    .radius-bottom-right {
        border-radius: 0 0 100px 0;
    }

    .mb-none {
        display: none;
    }

    .mobile-use {
        display: block;
        margin: 15px 15px;
    }

    .mobile-use a.btn-log-in {
        color: #fff !important;
        text-align: center;
        justify-content: center;
    }

    .mobile-use a.sign-in {
        color: var(--accent-color) !important;
        text-align: center;
        justify-content: center;
        border: 1px solid var(--accent-color) !important;
        border-radius: 8px;
    }

    .space-between-mobile {
        justify-content: space-between;
        width: 100%;
    }

    .desktop-onlyimg {
        display: none;
    }

    .feature-details h2 {
        text-align: center;
    }

    .art-of {
        padding-right: 10px;
    }

    .feature-details p {
        text-align: center;
    }

    .feature-details {
        text-align: center;
    }

    /* .call-center {
      width: 100%;
      justify-content: center;
      text-align: left;
 }
  */
    .space-over-all {
        padding: 0 0 0 0%;
    }

    .space-over-all br {
        display: none;
    }

    .scroll-top-m {
        display: inline-block;
        width: 100%;
    }

    #countdown {
        padding-top: 15px;
    }

    .top-minus-30 {
        margin-top: 0;
    }

    .top-minus-60 {
        margin-top: 0;
    }

    .top-minus-60 img {
        height: auto;
    }

    .top-minus-100 {
        margin-top: 0;
    }

    .top-minus-100 img {
        height: auto;
    }

    .top-minus-130 {
        margin-top: 0;
    }

    .top-minus-130 img {
        height: auto;
    }

    .hidden-box img {
        border-radius: 15px;
    }

    .video-wrapper .absolute-left {
        display: none;
    }

    .scroll-top-m>div {
        font-size: 12px;
        font-weight: bold;
    }
}

.bg_video2 {
    background-image: url(../img/Hero-video.png);
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
}

.video-wrapper {
    position: relative;
}

/* END Optional styles */
.video-container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-container .video-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

.play-button-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    pointer-events: none;
}

.play-button-wrapper #circle-play-b {
    cursor: pointer;
    pointer-events: auto;
}

.opacity-icon {
    opacity: 0;
}

.video-wrapper .container:hover .opacity-icon {
    opacity: 1;
}