body {
    background: rgb(13,13,13);
    font-family: "Helvetica Neue", sans-serif;
}

.a {
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 300;
    text-decoration: none; /* Removes underline */
}

.a:visited, a:active, a:hover {
    color: white; /* Ensures color remains white */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
    -webkit-transition-delay: 9999s;
    -webkit-transition: color 9999s ease-out, background-color 9999s ease-out;
}

.iti__selected-dial-code {
    color: white;
}

.container {
    max-width: 1200px;
    padding: 0 16px;
    margin: 0 auto;
}

.button {
    padding: 15px 40px;
    border: 1px solid #979797;
    background: transparent;
    cursor: pointer;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 25px;
    color: #979797;
    display: block;
    transition: .2s;
}

.button:hover {
    background: white;
    color: black;
}

.iti__tel-input {
    padding-left: 90px !important;
}

.header {
    padding: 24px;
    background: linear-gradient(to bottom,#000,#000000fc 8.1%,#000000f3 15.5%,#000000e4 22.5%,#000000d2 29%,#000000bd 35.3%,#000000a5,#0000008c 47.1%,#00000073 52.9%,#0000005a,#00000042 64.7%,#0000002d 71%,#0000001b 77.5%,#0000000c 84.5%,#00000003 91.9%,#0000);
}

.header .inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-content: space-between;
}

.header .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 16px;
    width: 24px;
}

.header .burger span {
    display: block;
    width: 100%;
    height: 1px;
    background: white;
}

.header .logo {
    display: block;
    margin: 0 auto;
}

.header .logo.logo-desktop {
    height: 24px;
}

.header .logo.logo-mobile {
    display: none;
}

.header .right img {
    height: 9px;
}

@media (max-width: 768px) {
    .header .logo.logo-desktop {
        display: none;
    }

    .header .logo.logo-mobile {
        display: block;
        height: 30px;
    }

    .header .right img {
        display: none;
    }
}

.header .go {
    height: 14px;
    margin-left: auto;
    display: block;
}

.form {
    padding-top: 96px;
    max-width: 688px;
    margin: 0 auto 80px auto;
}

.form .label {
    font-size: clamp(20px, 3vw, 28px);
    max-width: 488px;
    margin: 0 auto 26px auto;
    text-align: center;
    color: white;
    font-weight: 400;
    line-height: 1.2;
}

.form .description {
    color: #979797;
    text-align: center;
    margin: 0 auto 48px auto;
    font-size: clamp(12px, 3vw, 16px);
}

.form .fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.iti__selected-flag {
    color: white;
}

@media (max-width: 600px) {
    .form .fields {
        grid-template-columns: 1fr;
    }
}

.form .input-label {
    color: #979797;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-size: 12px;
    display: block;
}

.form .iti {
    width: 100%;
}

.form .input {
    height: 44px;
    padding: 8px;
    border-style: none none solid;
    border-width: 1px;
    border-bottom-color: rgba(199, 199, 199, .31);
    color: white;
    background-color: rgba(255, 255, 255, 0);
    line-height: 1.6;
    width: 100%;
    font-size: 16px;
}

.form .input::placeholder {
    color: #979797;
}

.form .input:focus {
    border-color: white;
}

.form .button {
    margin: 0 auto;
}

.form textarea {
    resize: vertical;
}

.success img {
    display: block;
    height: 64px;
    margin: 0 auto 30px auto;
}

.success .message {
    color: white;
    text-align: center;
}

.information .running-line {
    font-size: clamp(24px, 3vw, 40px);
    color: white;
    margin-bottom: 32px;
    text-align: center;
}

.information .description {
    font-size: clamp(13px, 3vw, 17px);
    color: rgb(138, 138, 138);
    max-width: 672px;
    text-align: center;
    margin: 0 auto;
}

@keyframes opacity {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.running-line .cursor {
    animation: .7s infinite opacity;
}

.footer {
    margin-top: 70px;
    padding: 70px 0 50px;
    border-top: 1px solid rgb(199, 199, 199, .31);
}

.footer .inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 20px;
    column-gap: 24px;
    margin-bottom: 40px;
}

.footer .inner p {
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 300;
}


.footer .social-medias {
    display: flex;
    gap: 28px;
    justify-content: center;
}

.footer .social-medias img {
    display: block;
    height: 24px;
}

.footer .copyright {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 16px;
    text-transform: uppercase;
    font-size: 10px;
    color: #b2ada6;
    letter-spacing: 1px;
}

.footer .logo {
    display: block;
    margin: 40px auto 0 auto;
    height: 23px;
}