/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
    --prim: #3C4856;
    --second: #FD505B;
    --third: #4E4E4E;
    --light-gray: #FAFAFA;
}

body {
    font-family: "Poppins";
    color: #444444;
    background-color: #fff;
    background-image: url('../img/bg-2.svg');
    background-repeat: no-repeat;
    background-size: cover;
}

main {
    min-height: 100vh;
    overflow: hidden;
}

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

a:hover {
    color: var(--second);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins";
}

p {
    font-family: "Poppins";
    font-size: 19px;
    line-height: 38px;
    color: var(--gray);
}


/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    height: 80px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    background: transparent;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 60px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation 
*/

.navbar {
    padding: 0;
}

.navbar .navbar-nav {
    gap: 15px;
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    align-items: start;
}

.navbar li {
    position: relative;
}

.navbar .navbar-nav a img {
    position: relative;
    overflow: hidden;
}

.navbar .navbar-nav a:hover img {
    filter: drop-shadow(0px 1000px 0 #5bcaca);
    transform: translateY(-1000px);
}

@media (max-width: 1366px) {}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    padding: 60px 0 0;
    overflow: hidden;
    width: 100%;
    position: relative;
}

#hero .container {
    position: relative;
    padding: 0;
}

#hero .row {
    padding-top: 50px;
    min-height: calc(100vh - 80px);
}

#hero h1 {
    color: #0B0B0B;
    margin-bottom: 150px;
    font-size: 48px;
    font-weight: 400;
    line-height: 120%;
}

#hero p {
    color: #0B0B0B;
    margin-bottom: 30px;
    font-size: 24px;
    line-height: 100%;
    font-weight: 400;
}

#hero .header {
    margin-bottom: 50px;
}

.btndownload {
    outline: none !important;
    border: 0;
    padding: 0 5px;
    margin-bottom: 20px;
}

#hero .btndownload img {
    border-radius: 5px;
}

#hero .btndownload:hover img {
    box-shadow: 0 0 10px #969696;
}

#ex1 {
    width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
}

#ex1-layer {
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: end;
}

#hero #ex1-layer-img {
    max-width: 606px;
    width: 100%;
    margin: 0;
    z-index: 1;
    position: relative;
    bottom: -20px;
    /*animation: MoveUpDown 2s ease-in-out infinite;*/
}


/*countdown*/

.countdown {
    display: flex;
    gap: 15px;
    margin: 25px 0;
}

.time-box {
    background: #ffffff;
    border-radius: 10px;
    width: 90px;
    height: 110px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.time-box span {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    font-family: 'Poppins', sans-serif;
}

.time-box small {
    font-size: 12px;
    font-weight: 600;
    color: #777;
    letter-spacing: 1px;
}

@media (max-width: 1200px) {}

@media (max-width: 992px) {
    #header {
        background: #ffffff8f;
        backdrop-filter: blur(5px);
    }
    #hero h1 {
        padding-top: 50px;
        margin-bottom: 50px;
        font-size: 30px;
    }
    #hero {
        padding: 20px;
    }
}

@media (max-width: 575px) {
    .navbar .navbar-nav a {
        padding: 0 !important;
    }
    .navbar .navbar-nav a img {
        width: 15px;
    }
    .navbar .navbar-nav {
        gap: 10px;
    }
}

@media (max-width: 380px) {}