@font-face {
    font-family: 'myriad-pro';
    src: url("../fonts/myriad-pro.otf");
}

@font-face {
    font-family: 'gotham-bold';
    src: url("../fonts/gotham-bold.otf");
}

@font-face {
    font-family: 'gotham-light';
    src: url("../fonts/gotham-light.otf");
}

@font-face {
    font-family: 'strippy';
    src: url("../fonts/strippy.otf");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
       background-color: #000;
}

body {
    max-width: 1920px;
    margin: 0 auto;
    background-color: #000;
}

h1 {
    font-family: 'strippy';
    font-style: normal;
    font-weight: 400;
    font-size: 170px;
    line-height: 77%;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #8CB63C;
    opacity: 0.7;
    text-align: center;
}

h2 {
    font-family: 'gotham-light';
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 93%;
    text-align: center;
    letter-spacing: 0.27em;
    text-transform: uppercase;
    color: #FFF;
}

h3 {
    font-family: 'gotham-bold';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 93%;
    text-align: center;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #FFFFFF;
}

p {
    font-family: 'myriad-pro';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 43px;
    text-align: center;
    color: #D9D9D9;
    opacity: 0.6;
    max-width: 1050px;
}

a {
    text-decoration: none;
    font-family: 'myriad-pro';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 43px;
    text-align: center;
    color: #D9D9D9;
    opacity: 0.6;
    transition: all .2s;
}

.header {
    height: 100vh;
    background-image: url('../imgs/bg-tilmotorsport-v2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.header--logo {
    position: absolute;
    top: 100px;
    left: 100px;
}

.container {
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
    max-width: 1211px;
    gap: 42px;
}

.coming-soon {
    margin: 0 auto;
    padding-top: 115px;
    padding-bottom: 83px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 19px;
    padding-bottom: 80px;
}

.form input,
.form button {
    height: 40px;
    max-width: 286px;
    width: 100%;
    border: 1px solid #546D24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    font-size: 14px;
    line-height: 93%;
    text-align: center;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
}
.button{
	cursor: pointer;
}
.form input {
    font-family: 'gotham-light';
    font-weight: 500;
    background-color: transparent;
}

.form button {
    font-family: 'gotham-bold';
    font-weight: 700;
    background: #546D24;
    border-style: none;
    cursor: pointer;
    transition: all .3s ease-out;
}

.form button:hover {
    background: #8CB63C;
}
input.mce_inline_error{
	border:2px solid red !important;
}
.contactos {
    margin: 0 auto;
    max-width: 1716px;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    align-items: center;
}

.social-media {
    position: relative;
    top: 8px;
    display: flex;
    gap: 31px;
}

.social-media img {
    width: 23px;
    height: 23px;
    transition: all .2s;
}

.social-media img:hover {
    transform: scale(1.2);
}
.mce-responses{
	max-width: 600px;
	    font-family: 'strippy';
    font-style: normal;
}
div#mce-success-response {
    color: #627f2a;
    font-family: 'myriad-pro';
    font-style: normal;
    font-weight: 600;
    font-size: 19px;
    line-height: 43px;
    text-align: center;
    opacity: 0.6;
}
div#mce-error-response {
    color: red;
    font-family: 'myriad-pro';
    font-style: normal;
    font-weight: 600;
    font-size: 19px;
    line-height: 43px;
    text-align: center;
    opacity: 0.6;
}
a:hover {
    opacity: 1;
}

@media screen and (max-width: 1300px) {
    h1 {
        font-size: 120px;
    }

    p {
        font-size: 20px;
    }

    .container {
        padding: 0 30px;
    }
}

@media screen and (max-width: 900px) {
    h1 {
        font-size: 95px;
    }

    p {
        font-size: 16px;
        line-height: 40px;
    }

    .header {
        background-size: 150%;
        height: 80vh;
    }

    .header--logo {
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

@media screen and (max-width: 725px) {
    h1 {
        font-size: 80px;
    }
}

@media screen and (max-width: 620px) {
    h1 {
        font-size: 70px;
    }

    .container {
        margin-top: -120px;
    }
}

@media screen and (max-width: 550px) {
    h1 {
        font-size: 55px;
        line-height: 85%;
    }

    .contactos{
        padding: 20px 40px;
    }
}

@media screen and (max-width: 445px) {
    h1 {
        font-size: 35px;
    }

    p {
        font-size: 14px;
        line-height: 25px;
    }

    .header {
        height: 75vh;
    }

    .coming-soon {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .social-media{
        gap: 15px;
    }
}

@media screen and (max-width: 305px) {
    h1 {
        font-size: 28px;
    }

    h2 {
        letter-spacing: 0.1em;
    }

    .header {
        height: 70vh;
    }

    .form input,
    .form button {
        width: 90%;
    }
    .contactos{
        flex-direction: column;
    }
}