/* ===================================
                  1. Globals Styles
====================================== */

:root {
    --main-color: #0E125B;
    --main-body-color: #0E125B;
    --main-font: 'Poppins', sans-serif;
}


/* ===================================
                  2. Typography
====================================== */

h1 {
    font-size: 80px;
    font-weight: 700;
    line-height: 120px;
    letter-spacing: -4px;
    text-align: left;
    vertical-align: top;
    color: var(--main-color);
}

h2 {
    font-style: 48px;
    font-weight: 800;
    line-height: 94.5px;
    color: var(--main-color);
}

h3 {
    font-size: 42px;
    font-weight: 700;
    line-height: 54.6px;
    color: var(--main-color);
}

h4 {
    font-size: 32px;
    font-weight: 600;
    line-height: 30px;
    color: var(--main-color);
    padding-bottom: 10px;
}

.caption {
    font-size: 12px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 5px;
}


/* ===================================
                  3. Setup
====================================== */

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    overflow-x: hidden;
}

body {
    color: var(--main-body-color);
    font-family: var(--main-font);
    position: relative;
    padding: 0;
    margin: 0;
    font-size: 16px;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
}

.doc-loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 24px;
    margin: 0 auto;
}


/* ===================================
                  4. Header
====================================== */

header {
    padding-top: 10px;
}

.header-logo img {
    display: block;
    height: 100px;
}


/* ===================================
                  5. Coming Section
====================================== */

.coming-holder {
    display: flex;
    justify-content: space-between;
}

.coming-text {
    width: calc(60%);
    overflow: hidden;
}

.coming-text h1 {
    padding-bottom: 20px;
}

.coming-text .wave-image {
    background-image: url('../images/wavy-shape.png');
    width: 100%;
    height: 20px;
    background-size: 645px 20px;
    margin: 25px 0;
}

.coming-text .subtitle {
    color: var(--main-color);
    font-size: 16px;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: 5px;
    text-transform: uppercase;
    padding-top: 15px;
}


.coming-image {
    width: calc(30%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.coming-image h4 {
    color: var(--main-body-color);
}

.coming-image .img-box {
    position: relative;
    margin-bottom: 25px;
}

.coming-image .img-box::before {
    content: '';
    position: absolute;
    top: -45px;
    left: -30px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 3px solid #fafafa;
    z-index: 2;
    pointer-events: none;
    user-select: none;
    animation: animate-img-circle 8s linear infinite;
}

@keyframes animate-img-circle {
    0% {
        top: -20px;
        left: -20px;
    }

    50% {
        top: -20px;
        left: 20px;
        border-color: var(--main-color);
    }

    100% {
        top: -20px;
        left: -20px;
    }
}

.coming-image .img-box::after {
    content: '';
    position: absolute;
    right: -420px;
    top: 0;
    width: 800px;
    height: 800px;
    border: 1px solid #fff;
    border-radius: 50%;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    animation: animate-img-circle-2 3s linear infinite alternate;
}

@keyframes animate-img-circle-2 {
    from {
        top: -70px;
    }

    to {
        top: 10px;
        border-color: var(--main-color);
    }
}

.coming-image img {
    position: relative;
    max-width: 100%;
    border-radius: 50%;
    z-index: 1;
}

.coming-image .subtitle {
    font-size: 8px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.coming-image .body {
    line-height: 25px;
    margin-bottom: 24px;
}


/* ===================================
                  6. Shapes
====================================== */

.bg-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 40%;
    background-color: #F8C0D2;
    z-index: -1;
    opacity: 0.1;
}

.bg-shape-2 {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 60%;
    background-color: #0E125B;
    z-index: -1;
    opacity: 0.1;
}


/* ===================================
                  7. Responsive
====================================== */

/* Large Screens */
@media (min-width: 1200px) {
    .coming {
        height: calc(100vh - 160px);
        display: flex;
        align-items: center;
        justify-content: center;
    }

}
@media (max-width: 1200px) {
    h1 {
        font-size: 60px;
        line-height: 110px;
    }

    .coming-text .subtitle {
        font-size: 14px;
        letter-spacing: 4px;
    }

    .footer-bg1 {
        height: 50px;
        width: 100% ! important;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0.1;
        background: #0E125B;

    }

    .footer-bg2 {
        display: none;
    }
}

/* Medium Screens */
@media (max-width: 900px) {
    .container {
        padding: 0 25px;
    }

    .coming-text h1 {
        padding-top: 30px;
    }

    .coming-holder {
        flex-direction: column;
    }

    .coming-holder>div {
        width: 100%;
    }

    .coming-text {
        padding-bottom: 40px;
    }

    .footer-bg1 {
        height: 50px;
        width: 100% ! important;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0.1;
        background: #0E125B;

    }

    .footer-bg2 {
        display: none;
    }
}

/* Small Screens */
@media (max-width: 600px) {
    header {
        padding-top: 30px;
    }

    .container {
        padding-bottom: 30px;
    }

    h1 {
        font-size: 60px;
        line-height: 70px;
    }

    .coming-text .subtitle {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .coming-form {
        flex-direction: column;
    }

    .coming-form>* {
        width: 100%;
        margin: 16px;
    }



    .bg-shape-1 {
        width: 100%;
    }

    .bg-shape-2 {
        display: none;
    }

    .footer-bg1 {
        height: 50px;
        width: 100% ! important;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0.1;
        background: #0E125B;

    }

    .footer-bg2 {
        display: none;
    }
}



.mySlides {
    display: none
}

img {
    vertical-align: middle;

}

.slideshow-container {
    max-width: 100px;
    position: relative;
    margin: auto;
}

/* Fading animation */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
    border-radius: 50%;
}

@-webkit-keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

footer {
    text-align: center;
    color: black;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #999999;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    background-color: #111111;
}

.footer-background {
    background: white;
    height: 50px;
    width: 100%;
}

.footer-bg1 {
    height: 50px;
    width: 40%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.1;
    background: #0E125B;

}

.footer-bg2 {
    height: 50px;
    width: 60%;
    position: absolute;
    top: 0;
    right: 0;
    background: #F8C0D2;
    opacity: 0.1;
}

.icon {
    align-items: center;
    display: flex;
    margin-bottom: 8px;
}

.material-icons {
    margin-right: 10px;
}