/* RESET */
*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
*:focus {
    outline: 0;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
/* width */
::-webkit-scrollbar {
    width: .5vw;
}
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    overflow-x: hidden;
    scrollbar-width: normal;
}
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-family: 'Roboto', sans-serif;
    background-color: white;
    position: relative;
}
body.no-scroll,
html.no-scroll{
    overflow: hidden;
}
img {
    max-width: 100%;
    user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
a {
    text-decoration: none;
    display: inline-block;
    color: inherit;
    cursor: pointer;
}
button {
    cursor: pointer;
    outline: none;
    border: none;
    font-family: inherit;
}
button[disabled] {
    cursor: default;
}
p{
    line-height: 1.7;
}
ul,
ol {
    list-style: none;
}
input,
textarea {
    font-family: inherit;
    resize: none;
}
/* HIDE ARROWS ON NUMBER INPUTS */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
#alertMsg{
    padding: 0rem 3rem;
    padding-bottom: 1rem;
    font-size: 1.8rem;
}
/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}
.mobile-video{
    display: none;
}
.contact-from-button.mobile{
    display: none;
}
.contact-from-button.desktop{
    transition: background-color 0.3s ease;
}
.contact-from-button.desktop:hover{
    background-color: #c4c4c4;
}
.hero-section{
    height: 100vh;
    overflow: hidden;
    width: 100%;
    padding: 6.5rem 3rem 5rem 3rem;
}
.container{
    margin: 0 auto;
    max-width: 160rem;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.top-right{
    position: absolute;
    right: 0;
    top: 0;
    transform: translateY(-3rem);
    opacity: 0;
    max-width: 20rem;
}
.bottom{
    left: 0;
    bottom: 0;
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}
.center{
    display: flex;
    gap: 7rem;
    align-items: center;
    margin-top: -10rem;
}
.center-text{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.center-text h1{
    font-family: 'Roboto', sans-serif;
    font-size: 18rem;
    color: #fff;
    font-weight: 900;
}
.center-text h1 span{
    transform: translateY(-5rem);
    opacity: 0;
    display: inline-block;
}
.center-text h2{
    font-family: 'Roboto', sans-serif;
    font-size: 3.8rem;
    color: #fff;
    font-weight: 300;
}
.center-text h2 span{
    transform: translateY(-3rem);
    opacity: 0;
    display: inline-block;
}
.contact-from-button, .bottom-text, .bottom-social{ 
    transform: translateY(3rem);
    opacity: 0;
}
.contact-from-button{
    padding: 5rem 4rem;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 46rem;
    cursor: pointer;
}
.contact-from-button p{
    font-size: 2.4rem;
    line-height: 3.5rem;
    color: #0E1A2C;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 400;
}
.logo-simbol{
    transform: translateX(-15rem) scale(1.2);
    opacity: 0;
}
.bottom .bottom-text p{
    font-size: 2rem;
    line-height: 2.8rem;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    font-weight: 300;
}
.bottom .bottom-text a{
    font-size: 2rem;
    line-height: 2.8rem;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    margin-top: 1rem;
    font-weight: 500;
}
.bottom .bottom-text p a{
    margin-top: 0rem;
}
.bottom-social{
    display: flex;
    gap: 1.5rem;
    height: fit-content;
    align-items: center;
}
.overlay-video{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}
.bottom-right-container{
    width: 100%;
    max-width: 94rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}
.form-popout-container{
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    opacity: 0;
    top: 0;
    left: 0;
    z-index: 999999999;
    transition: opacity 0.5s ease;
}
form{
    background-color: #fff;
    position: relative;
}
.form-container{
    display: flex;
    flex-direction: column;
    padding: 3rem;
}
.popout-overlay{
    width: 100%;
    height: 100%;
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.9);
}
.form-container h3{
    margin-bottom: 2.5rem;
    color: #0E1A2C;
    font-size: 3.6rem;
    font-weight: 400;
    font-family: 'Fira Sans', sans-serif;
}
.form-container input{
    font-size: 1.2rem;
    color: rgb(13, 25, 43, 0.5);
    padding: 1.2rem 2rem;
    background-color: #fff;
    border-radius: 3rem;
    margin-bottom: 1.2rem;
    width: 100%;
    border: 1px solid #004990;
}
.form-container textarea{
    font-size: 1.2rem;
    color: rgb(13, 25, 43, 0.5);
    padding: 1.2rem 2rem;
    background-color: #fff;
    border-radius: 3rem;
    width: 100%;
    border: 1px solid #004990;
    margin-top: 2rem;
}
form button[type="submit"]{
    background-color: #004990;
    width: 100%;
    padding: 1.4rem 4.7rem;
    font-size: 2.2rem;
    font-weight: 500;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    outline: none;
    border: none;
    text-align: left;
}
.close-button{
    position: absolute;
    width: 4rem;
    height: 4rem;
    top: -1.5rem;
    right: -1.5rem;
    color: #fff;
    font-size: 2rem;
    background-color: #004990;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
}
@media only screen and (max-width: 1260px) {
    .center-text h1 {
        font-size: 12rem;
    }
    .center-text h2{
        font-size: 2.4rem;
    }
}
@media only screen and (max-width: 1000px) {
    .bottom{
        flex-direction: column;
        position: relative;
    }
    .top-right{
        position: relative;
    }
    .hero-section{
        height: auto;
    }
    .container{
        flex-direction: column;
    }
    .center{
        margin-top: 6rem;
        margin-bottom: 8rem;
        flex-direction: column;
    }
}
@media only screen and (max-width: 480px) {
    .desktop-video{
        display: none;
    }
    .mobile-video{
        display: block;
    }
    .top-right{
        max-width: 19rem;
    }
    .logo-simbol{
        max-width: 8rem;
    }
    .center-text h1{
        font-size: 4.8rem;
    }
    .center-text h2{
        font-size: 1.8rem;
    }
    .contact-from-button.desktop{
        display: none;
    }
    .bottom-right-container{
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }
    .contact-from-button.mobile{
        width: 100%;
        max-width: 100%;
        padding: 3rem;
        display: flex;
    }
    .bottom .bottom-text p{
        font-size: 1.6rem;
        line-height: 2.2rem;
    }
    .contact-from-button p{
        font-size: 2rem;
        line-height: 2.6rem;
    }
    .center{
        gap: 3rem;
    }
    .form-popout-container{
        padding: 2rem;
    }
    .form-container h3{
        font-size: 2rem;
    }
    form button[type="submit"]{
        font-size: 1.8rem;
    }
    .form-container{
        padding: 3rem 2rem;
    }
    form{
        width: 100%;
    }
}
/* font-family: 'Fira Sans', sans-serif;
font-family: 'Roboto', sans-serif; */