@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

/* Logo Fonts Big Shoulders Stencil Text */

body, html{
    scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: "Dosis", serif;
    font-size: 16px;
    font-weight: normal;
    color: #1F1F1F;
    margin: 0;
    padding: 0;
}
a{
    transition: all 0.5s ease-in-out;
}
a, a:hover, a:focus{
    text-decoration: none;
}
img{
    max-width: 100%;
    object-fit: cover;
}
ul{
    padding: 0;
    margin: 0;
}
li{
    list-style: none;
}
h1, h2, h3, h4, h5, h6{
    margin: 0;
}
p{
    margin: 0;
}






.comming-soon{
    width: 100%;
    height: 100vh;
    overflow: hidden;
    border: 8px solid #57B853;
    position: relative;
}
.comming-soon-row{
    height: 100%;
    display: flex;
    align-self: center;
    justify-content: center;
}

.comming-soon-left{
    width: 50%;
    background-color: #1F1F1F;
    padding: 90px 50px 90px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: start;
}
.logo-top{
    position: absolute;
    top: 0;
    left: 0;
    padding: 32px 50px 0;
    width: 100%;
}
.comming-copy{
    color: #FFFFFF;
    width: 100%;
}
.comming-copy h5{
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    display: inline-block;
}
.comming-copy h1{
    font-size: 56px;
    font-weight: 500;
    line-height: 1;
}
.comming-copy h1 span b{
    font-weight: 500;
    line-height: 1;
}
.comming-copy h1 .typed-cursor{
    position: relative;
    color: transparent;
}
.comming-copy h1 .typed-cursor::after{
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    background-color: #57B853;
    width: 30px;
    height: 3px;
}
.comming-copy h1{
    margin-bottom: 30px;
}
.comming-copy p{
    font-size: 18px;
    margin-bottom: 0;
    color: #FFFFFF;
    opacity: 0.8;
    max-width: 420px;
}
form{
    margin-top: 30px;
}
form .form-group{
    display: flex;
    justify-content: start;
    flex-direction: column;
    gap: 10px;
}
form .form-group input{
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0;
    background-color: transparent;
    font-family: "Dosis", serif;
    font-size: 16px;
    height: 40px;
    padding: 5px 10px;
    width: 100%;
    outline: none;
    color: #FFFFFF;
    max-width: 420px;
}
form .form-group button{
    border: 0;
    border-radius: 0;
    background-color: #57B853;
    color: #FFFFFF;
    font-size: 16px;
    text-transform: uppercase;
    width: max-content;
    padding: 15px 25px 13px 25px;
    cursor: pointer;
    outline: none;
    line-height: 1;
}
.email{
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 50px 32px;
    width: 100%;
}
.email a{
    color: #57B853;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
}
.comming-soon-right{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.comming-soon-right img{
    height: 100%;
    width: 100%;
}



.rotate-object {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: max-content;
    height: max-content;
    background-color: #FFFFFF;
    padding: 5px;
    border-radius: 50%;
    width: 150px;
}
.icon-x{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #FFFFFF;
    width: 50px;
}
.rotate-object a {
    position: relative;
    display: inline-block;
    width: 100%;
}
.rotate-object a svg{
    fill: currentColor;
    height: auto;
    -webkit-transform-origin: center;
    transform-origin: center;
    width: 100%;
    animation: rotateText 10s linear infinite;
}
.rotate-object a svg textPath{
    font-size: 12.4px;
    font-weight: 500;
    color: #1F1F1F;
    letter-spacing: 0;
}
.inner-contact{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
@keyframes rotateText {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}




@media (max-width:1440px){
    .comming-copy h1{
        font-size: 46px;
    }
}
@media (max-width:1280px){
    .comming-soon-left {
        padding: 90px 60px 90px 50px;
    }
    .rotate-object{
        width: 100px;
        padding: 8px;
    }
    .icon-x{
        width: 45px;
    }
    .comming-copy h1 {
        font-size: 36px;
    }
}
@media (max-width:991px){
    /* .comming-soon{
        height: auto;
        overflow: unset;
    } */
    .comming-soon-row{
        flex-direction: column;
        justify-content: unset;
        align-items: unset;
        height: auto;
    }
    .comming-soon-left{
        width: 100%;
        height: 100vh;
        padding: 80px 40px;
        flex-direction: column;
        justify-content: center;
    }
    .comming-copy{
        padding: 30px 0;
    }
    /* .logo-top,
    .email{
        position: unset;
        padding: 0;
    } */
    .comming-soon-right{
        display: none;
    }
    .rotate-object{
        display: none;
    }
}
@media (max-width:575px){
    .comming-soon{
        border: 4px solid #57B853;
    }
    .comming-soon,
    .comming-soon-row{
        min-height: calc(100vh - 8px);
    }
    /* .comming-soon-right img {
        min-height: 345px;
    } */
    .comming-soon-left{
        padding: 40px 20px;
    }
    .comming-copy{
        text-align: center;
    }
    .comming-copy p{
        max-width: 100%;
    }
    form .form-group{
        justify-content: center;
    }
    form .form-group input,
    form .form-group button{
        margin: 0 auto;
    }
    .comming-copy h1 {
        font-size: 30px;
    }
    .comming-copy h5{
        margin-bottom: 20px;
    }
    .logo-top,
    .email{
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
    }
}