* {
    font-family: 'Barlow Condensed', sans-serif;
    font-style: normal;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: #FDFCFA;
    touch-action: manipulation;
}

a, p, span {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
}

html, body {
    height: 100vh;
    min-height: 52.75rem;
}

.landing-snake {
    background: url(./../Images/snake-bg.svg) no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
}

/* @keyframes bgAnimation {
    0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
} */

.landing {
    width: 100%;
    height: 100%;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
}

.header {
    display: flex;
    justify-content: space-between;
    height: auto;
    align-items: center;
    width: 100%;
    border: 1px solid #F5F8FF;
}

.header__link {
    width: 100%;
    border-right: 1px solid #F5F8FF;
    height: inherit;
    display: flex;
    align-items: center;
}

.header__link  a {
    padding: 0.5rem 1rem;
    text-decoration: none;
}

.header__whiteSpace {
    display: none;
}

.header__date {
    padding: .5rem 1rem;
    max-width: initial;
    width: fit-content;
}

.header__date p {
    letter-spacing: 0.2rem;
    text-align: center;
    width: initial;;
}

.content {
    margin-top: 2.5rem;
    height: calc(100% - 3.313rem);
}

.content__title h1{
    color: #F5F8FF;
    font-weight: 900;
    font-size: 7.625rem;
}

.content__rightSide {
    margin-top: 2.5rem;
}

.content__rightSide__subtitle {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 2.25rem;
    margin-bottom: 2rem;
}

.content__rightSide__paragraph {
    font-weight: 400;
    font-size: 22px;
    line-height: 36px;
}

.content__rightSide__form {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
} 

.content__rightSide__form-hidden {
    display: none;
} 

.content__rightSide__form label {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.25rem;
}

.content__rightSide__form-inputWrap {
    display: flex;
    margin-top: 8px;
}

.content__rightSide__form-inputWrap input {
    border: 1px solid #F5F8FF;
    border-radius: 4px;
    background: transparent;
    width: 100%;
    max-width: 298px;
    height: auto;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    line-height: 1.25rem;
}

::placeholder { 
    color: #A3A1AA;
    opacity: 1; 
}
  
:-ms-input-placeholder { 
color: #A3A1AA;
}
  
::-ms-input-placeholder {
color: #A3A1AA;
}

.content__rightSide__form-inputWrap button {
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    margin-left: .75rem;
    border: 1px solid #F5F8FF;
    color: #A3A1AA;
    border-radius: 4px;
    background: transparent;
    height: auto;
    padding: 0.5rem 1rem;
}

.content__rightSide__form-inputWrap button:disabled {
    cursor: not-allowed;
    color: #A3A1AA;
}

.content__rightSide__form-inputWrap button:focus, .content__rightSide__form-inputWrap button:active {
    background: white;
    color: black;
    outline: #827130;
}

.content__rightSide__form-inputWrap button:hover {
    background: white;
    color: black;
    font-weight: 700;
}

.footer {
    display: flex;
    justify-content: flex-end;
    place-self: end;
}  

.footer a {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.25rem;
}

.successMessageWrap-hidden {
    width: 0;
    height: 0;
    opacity: 0;
}

.successMessage-hidden {
    font-weight: 400;
    font-size: 1.375rem;
    line-height: 1.75rem;
}


.successMessageWrap {
    margin-top: 60px;
    animation: fadeIn .9s ease-in-out;
}

.successMessage {
    max-width: 279px;
    font-weight: 400;
    font-size: 1.375rem;
    line-height: 1.75rem;
}


.messageWrap-hidden {
    width: 0;
    height: 0;
    opacity: 0;
}

.messageWrap {
    margin-top: 3.75rem;
    animation: fadeIn .9s ease-in-out;
}

.messageErrorWrap {
    margin-top: 60px;
    animation: fadeIn .7s ease-in-out;
}
.messageError {
    color: #FD4A60;
    font-size: 1rem;
}

@keyframes fadeIn {
    0% { 
        opacity: 0; 
        transform: translateY(20px);
    }
    100% { 
        opacity: 1; 
        transform: translateY(0px);
    }
}

@media (max-height: 400px) { 
    html, body {
        height: auto;
        min-height: 844px;
    }

    .footer {
        margin-top: 30px;
    }
}

/*
* small screen
*/

@media (max-width: 318px) { 
    html, body {
        height: auto;
        min-height: 844px;
    }
    .content__title h3 {
        word-break: break-all;
        line-height: normal;
    }
    .header {
        height: auto;
        flex-direction: column;
    }
    .header__link {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #F5F8FF;;
    }

    .content__rightSide__form-inputWrap {
        display: flex;
        flex-direction: column;
        gap: .75rem;
    }

    .content__rightSide__form-inputWrap  input {
        width: auto;
    }

    .content__rightSide__form-inputWrap  button {
        margin-left: 0;
    }
}

/*
* Tablet
*/
@media (min-width: 768px) and (max-width: 1024px) {
    .landing{
        padding: 2.5rem;
    }  
    
}

@media (max-width: 380px) { 
    .content__rightSide__form-inputWrap {
        display: flex;
    }
}

/*
* Desktop
*/
@media (min-width: 1200px) { 

    .landing-snake {
        animation: bgAnimation 5s ease infinite;
    }

    a, p, span {
        font-size: 24px;
        line-height: 29px;
    }

    .header {
        height: 53px;
    }
    .header__link {
        flex: inherit;
        width: 250px;
    }

    .header__link  a {
        padding: 8px 16px;
        margin: auto;
        text-decoration: none;
    }

    .header__whiteSpace {
        height: inherit;
        display: flex;
        flex: 3;
        border-right: 1px solid #F5F8FF;
    }

    .header__date {
        max-width: initial;
        width: 177px;
    }

    .header__date p {
        width: auto;
    }
    .content {
        max-width: 100%;
        margin-top: 120px;
        display: flex;
        justify-content: center;
    }
    .content__title {
        margin-right: 92px;
    }
    .content__title h3{
        font-size: 180px;
        line-height: 216px;
    }

    .content__rightSide {
        margin-top: 2.625rem;
        max-width: 660px;
    }
    .content__rightSide__subtitle {
        width: 570px;
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 2.5rem;
    }
    .content__rightSide__paragraph {
        width: 600px;
        font-size: 36px;
        line-height: 43px;
    }

    .content__rightSide__form label {
        font-size: 20px;
        line-height: 30px;
    }
    .content__rightSide__form-inputWrap input {
        width: 298px;
        height: 40px;
    }
    
    .content__rightSide__form-inputWrap button {
        width: 103px;
        height: 40px;
    }

    .footer a {
        font-size: 16px;
        line-height: 16px;
    }

    .successMessage {
        font-size: 24px;
        line-height: 30px;
    }
 }

