body {
    margin: 0;
    padding: 0;
    font-family: 'OpenSans';
    background-color: #f7f7f7;
    box-sizing: border-box;
}

.notification {
    display: none;
    padding: 10px;
    background-color: #333;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    margin-top: 20px;
    
}

.container-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
    z-index: 5;
}

.content {
    text-align: center;
    max-width: 720px;
}


.header-top-bar-pro {
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    padding: 0 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo-pro {
    width: 300px;
    font-family: 'inter-bold';
}

.header-logo-pro img {
    max-width: 100%;
}

.header-top-bar-pro .header-text a {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}

.heading {
    font-size: 36px;
    color: #ffffff;
    margin: 0 125px;
    font-family: 'leckerlione-regular';
}

.heading span {
    color: #FFC75C;
    font-size: 100px;
    line-height: 120px;
    font-family: 'inter-bold';
    text-transform: uppercase;
    display: block;
}

.content>p {
    font-size: 20px;
    color: #ffffff;
    margin: 20px 0 50px;
    font-family: 'inter-regular';
}

.content form {
    text-align: left;
    padding-top: 40px;
}


.form-box {
    display: flex;
    padding-top: 40px;
    width: 680px;
    margin: 0 auto;
}

.form-box input {
    width: 100%;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 20px;
    border-radius: 10px;
    font-size: 17px;
    color: #fff;
    background: transparent;
    box-sizing: border-box;
    font-family: 'inter-regular';
    margin: 0;
}

.form-box input::placeholder {
    opacity: 1;
    color: rgba(255, 255, 255, 0.8);
}

.form-box input:focus {
    outline: 0;
    box-shadow: none;
}

.form-box button {
    margin-left: 10px;
    border-radius: 10px;
    background: #FFC75C;
    border: 0;
    padding: 0 45px;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all linear 0.3s;
    font-family: 'inter-semibold';
}


.form-box button:hover {
    background: #FFC75C;
    color: #fff;
}

.social-box-pro ul {
    margin: 50px 0 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;

}


.social-box-pro ul li a {
    display: inline-block;
    margin-left: 10px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 1px solid #ffffff23;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all linear 0.3s;
}

.social-box-pro ul li a:hover {
    background: #fff;
}

.social-box-pro ul li a svg path {
    transition: all linear 0.3s;
}

.social-box-pro ul li a:hover svg path {
    fill: #000;
}

.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
}

.countdown .countdown-item-pro {
    display: flex;
    align-items: center;
    margin: 0 20px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 12px 22px;
    border-radius: 10px;
}

.countdown .countdown-item-pro .countdown-label-pro {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 24px;
    display: inline-block;
    margin: 0px 0px 0 10px;
    color: #ffffff86;
    font-family: 'jost-medium';
}

.countdown .countdown-item-pro .countdown-number-pro {
    
    color: #fff;
    font-size: 50px;
    font-family: 'jost-medium'
}

form#coming-soon-form-pro {
    display: flex;
    width: 100%;
}


.contact-info-pro {
    position: static;
    width: auto;
}

.contact-info-pro ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.contact-info-pro ul li p{
    margin: 0;
}
.contact-info-pro ul li {
    display: inline-block;
    font-family: 'inter-regular';
}

.contact-info-pro ul li,
.contact-info-pro ul li a {
    margin: 0 15px;
    text-decoration: none;
    color: #fff;
    display: inline-flex;
    align-items: center;
}

.contact-info-pro ul li .icon {
    
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

@media (min-width: 992px) {
    .countdown {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 991px) {
    .container {
        height: auto;
        padding: 150px 0 100px;
    }
    .header-top-bar-pro{
        top: 30px;
    }
    .contact-info-pro {
        padding-top: 0px;
        position: static;
        transform: translateX(-0%);
    }

    .contact-info-pro ul li a {
        margin: 0 15px 15px;
    }

    .countdown {
        flex-wrap: wrap;
    }

    .countdown .countdown-item-pro {
        margin-bottom: 20px;
    }
}




@media (max-width: 767px) {
    .header-top-bar-pro {
        padding: 0 30px;
    }

    .content {
        max-width: inherit;
        padding: 0 15px;
    }

    .heading {
        font-size: 40px !important;
        line-height: 50px !important;
        margin: 0;
    }

    .heading span {
        font-size: 40px !important;
    }

    .content>p {
        font-size: 16px;
    }

    .countdown .countdown-item-pro .countdown-number-pro {
        font-size: 40px !important;
    }

    .countdown .countdown-item-pro {
        flex-basis: 50%;
    }

    .form-box {
        padding: 20px 20px 0;
        width: auto;
        justify-content: center;
    }

    .countdown .countdown-item-pro {
        margin: 0 20px 25px;
        justify-content: center;
    }

    form#coming-soon-form-pro {
        display: block;
        text-align: center;
        width: auto;
    }

    .form-box button {
        margin-top: 20px;
        padding: 20px 30px;
    }

}

@media (max-width: 575px) {
    .header-top-bar-pro {
        padding: 0 15px;
        flex-direction: column;
        top: 30px;
    }

    .header-top-bar-pro .header-logo-pro {
        margin-bottom: 10px;
        text-align: center;
    }

    .heading {
        font-size: 34px;
    }

    .form-box {
        flex-direction: column;
    }

    .form-box button {
        margin-left: 0;
        margin-right: 0;
        margin-top: 20px;
        padding: 20px 0;
        width: 100%;
    }

    .form-box input {
        width: 96%;
    }

    .container {
        padding: 200px 0 100px;
    }
}