:root{
    --cPrimary: #ef4924;
    --cSecondary: #000;
    --cText: #000;
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: local(''),
    url('./font/Poppins-Regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('./font/Poppins-Regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    src: local(''),
    url('./font/Poppins-Medium.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('./font/Poppins-Medium.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: local(''),
    url('./font/Poppins-Bold.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('./font/Poppins-Bold.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
    font-display: swap;
}
body {
    font-family: 'Poppins', sans-serif;
    padding: 12px;
}
.soon-page{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    position: relative;
}
.content{
    max-width: 1000px;
    width: 100%;
    text-align: center;
}
span{
    letter-spacing: 7px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
    font-size: 14px;
}
h1{
    font-size: 50px;
    font-weight: 400;
    line-height: 60px;
}
h1 strong{
    color: var(--cPrimary);
}
h1 strong span{
    font-size: 50px;
    line-height: 60px;
    text-transform: unset;
    display: inline-block;
    font-weight: 700;
    color: var(--cSecondary);
}
h2{
    font-size: 18px;
}
p{
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 30px;
}
.logo-wrap{
    width: 300px;
    height: 120px;
    margin: 0 auto 70px;
    display: block;
}
.logo-wrap img {
    width: 100%;
    height: auto;
}
.cars-img{
    margin: 20px auto;
}
.cars-img img{
    max-width: 750px;
    width: 100%;
    height: auto;
    object-fit: contain;
}
.box p{
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 0;
    margin-top: 0;
}
.box p a {
    color: var(--cPrimary);
    transition: all .3s ease-in;
    margin-left: 5px;
    text-decoration: none;
}
.box p a:hover{
    color: var(--cSecondary);
}
@media(max-width: 1200px){
    h1{
        font-size: 42px;
        line-height: 52px;
    }
    h1 strong span{
        font-size: 42px;
        line-height: 52px;
    }
}
@media(max-width: 768px){
    .logo-wrap{
        width: 250px;
        height: 95px;
        margin: 0 auto 70px;
        display: block;
    }
    h1{
        font-size: 36px;
        line-height: 46px;
    }
    h1 strong span{
        font-size: 36px;
        line-height: 46px;
    }
    p{
        font-size: 14px;
        line-height: 24px;
    }
}