/*
    Template Name    : Seppo - Corporate One Page HTML Template - Demo 5
    Author           : CocoBasic
    Version          : 1.0        
*/

/* -------------------- Table of Content -------------------- */
/*
1. Globals Styles
2. Typography
3. Setup
4. Header
5. Coming Section
6. Shapes
7. Responsive Part
        7.1 Large Screens [900, 1200]px
        7.2 Medium Screens [600, 900]px
        7.3 Small Screens [0, 600]px    
*/


/* ===================================
         1. Globals Styles
====================================== */

:root {
    --main-color: white;
    --main-body-color: white;
    --main-font: 'Poppins', sans-serif;
}


/* ===================================
         2. Typography
====================================== */

h1 b {display: block;font-size: 95px;}

.subtitle-list li {display: block;position: relative;line-height: 32px;font-size: 17px;font-weight: 500;letter-spacing: 0.3px;padding-left: 5px;}
.subtitle-list img {width: 18px;position: relative;top: 3px;left: -5px;}
.coming-image ul {list-style: none;line-height: 32px;}
.button {background: #06b162;height: 60px !important;display: inline-block;position: relative;line-height: 60px;padding: 0px 25px;font-size: 22px;text-decoration: none;font-weight: 600;color: white;margin-right: 10px;box-shadow: inset 0px -10px 0px 0px rgb(0 0 0 / 0%);transition: all 0.3s;margin-top: 25px;}
.button:hover {background: linear-gradient(90deg, #0541af00, #0541af00);box-shadow: inset 0px 0px 0px 2px white;}
.button img {width: 25px;position: relative;top: 5px;left: -2px;}
.coming-image ul img {width: 20px;border-radius: 0px;padding-right: 5px;position: relative;top: 2px;}

h1 {
    font-size: 42px;
    font-weight: 600;
    line-height: 80px;
    letter-spacing: -1px;
    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: 28px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0.3px;
    color: var(--main-color);
    margin-bottom: 20px;
}
.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: 60px;
}
.header-logo img {
    display: block;
    width: 90px;
    height: auto;
}


/* ===================================
         5. Coming Section
====================================== */

.coming-holder {
    display: flex;
    justify-content: space-between;
}
.coming-text {
    width: calc(65%);
    overflow: hidden;
}
.coming-text h1 {
    padding-top: 60px;
    padding-bottom: 20px;
}
.coming-text .wave-image {
    background-image: url('../images/wavy-shape.png');
    width: 100%;
    height: 20px;
    background-size: 645px 20px;
    background-repeat: repeat-x;
    animation: wavy-motion 1s linear infinite;
    margin: 0px 0;
}
@keyframes wavy-motion {
    from {
        background-position-x: 0%;
    }
    to {
        background-position-x: 645px;
    }
}
.coming-text .subtitle {
    color: var(--main-color);
    font-size: 24px;
    font-weight: 600;
    line-height: 35px;
    letter-spacing: 0px;
    text-transform: none;
    padding-top: 25px;
    padding-bottom: 10px;
}
.coming-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
}
.coming-form img.arrow {
    width: 34px;
    height: 50px;
}
.coming-form input {
    font-family: var(--main-font);
    font-size: 18px;
    padding: 20px 24px;
    flex-grow: 1;
    margin: 0 16px;
    border: none;
    outline: none;
    border: 1px solid #fff;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0px 0px 30px 7px #0c7f8640;
    transition: 0.5s ease;
}
.coming-form input::placeholder {
    font-family: var(--main-font);
    color: var(--main-color);
    font-size: 18px;
}
.coming-form input:focus {
    border-color: var(--main-color);
    box-shadow: unset;
}
.btn-filled {
    font-family: var(--main-font);
    padding: 25px 24px;
    border-radius: 10px;
    color: #fff;
    background-color: var(--main-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    letter-spacing: 4px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: 0.5s ease;
}
.btn-filled:hover {
    background-color: var(--main-body-color);
}
.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: 32px;
}
.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 rgb(255 255 255 / 3%);
    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: 16px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 5px;
    margin-bottom: 24px;
}
.coming-image .body {
    line-height: 30px;
    margin-bottom: 24px;
}
.coming-links {
    padding-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.coming-links a {
    color: var(--main-body-color);
    padding: 8px 8px 0px 0px;
    text-decoration: none;
    transition: color 0.5s ease;
}
.coming-links a:hover {
    color: var(--main-color);
}


/* ===================================
         6. Shapes
====================================== */

.bg-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 40%;
    z-index: -1;
    background-image: url(../images/bg.png);
    background-attachment: fixed;
    background-position: left;
    background-repeat: no-repeat;
}
.bg-shape-2 {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 60%;
    z-index: -1;
    background: linear-gradient(0deg, #005aff, #00a2ff);
}


/* ===================================
         7. Responsive
====================================== */

/* Large Screens */
@media (max-width: 1200px) {
    h1 {
        font-size: 90px;
        line-height: 110px;
    }
    .coming-text .subtitle {
    font-size: 28px;
    letter-spacing: 1px;
    }
    .coming-text {padding: 50px 50px 75px 50px;width:100%}
    .coming-text::before {
    content: '';
    background-image: url(../images/bg.png);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    z-index: -1;
    left: 0px;
    }
    .header-logo {
    padding: 0px 50px;
    display: block;
    }
    .coming-holder , .coming-text , .coming-image { display: block }
    .coming-image {
    background: linear-gradient(0deg, #005aff, #00a2ff);
    width: 100%;
    padding: 75px 50px 15px 50px;
    }
    .container { padding: 0px; }
    .bg-shape-1 , .bg-shape-2 { display: none }
    .img-box , .img-box + div {display: inline-block;vertical-align: middle;width: 49%;padding-right: 5%;}
}

/* Medium Screens */
@media (max-width: 900px) {
    .container {
        padding: 0;
    }
    .coming-text h1 {
        padding-top: 30px;
    }
    .coming-holder {
        flex-direction: column;
    }
    .coming-holder > div {
        width: 100%;
    }
    .coming-text {
    }
}

/* Small Screens */
@media (max-width: 767px) {
    header {
        padding-top: 30px;
    }
    .coming-text::before {
    background-attachment: initial;
    background-position: inherit;
    background-size: auto;
    }
    .header-logo {
    padding: 0px 30px;
    display: block;
    }
    .coming-text {
    padding: 0px 30px 50px 30px;
    width: 100%;
    }
    .coming-image {
    padding: 50px 30px 35px 30px;
    }
    .container {
        padding-bottom: 0px;
    }
    .button {
    font-size: 18px;
    margin-top: 35px;
    }
    .button + .button  { margin-top: 20px }
    .img-box, .img-box + div {display: block;width: 100%;padding-right: 0%;}
    h1 {
    font-size: 28px;
    line-height: 50px;
    padding-top: 20px !important
    }
    h1 b {
    font-size: 45px;
    }
    .coming-text .subtitle {
    font-size: 20px;
    letter-spacing: 0px;
    }
    .coming-form {
        flex-direction: column;
    }
    .coming-form > * {
        width: 100%;
        margin: 16px;
    }
    .coming-form img.arrow {
        display: none;
    }
    .coming-form input {
        box-shadow: none;
    }
    .bg-shape-1 {
        width: 100%;
    }
    .bg-shape-2 {
        display: none;
    }
    .coming-image li { font-weight: 500 }
}