@font-face {
    font-family: openSansLocal;
    src: url('../fonts/OpenSans-VariableFont_wdth\,wght.ttf')format('truetype');
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: openSansLocal;
}

/* html{
    height: 100%;
    width: 100%;
} */

body{
    margin: 0;
    height: 100%;
    width: 100%;
    background-image: url('../Resources/TM_background.jpg');
    background-size: cover;
    background-position: center;
}

li{
    list-style: none;
}

a{
    text-decoration: none;
    color: #D9161A;
    font-size: 1rem;
}

a:hover{
    color: #FED500;
}

header{
    position: relative;
    padding: 0 2rem;
}


/* --------NAVBAR STYLES-------- */
.navBar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 105px;
    max-width: 1100px;
    margin: 0 auto;
}

.navBar .logo a{
    font-size: 1.5rem;
    font-weight: bold;
}

.navBar .navbarLinks{
    display: flex;
    gap: 2rem;
}

.navBar .toggle_Btn{
    color: black;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.toggle_Btn{
    display: flex;
    width: 35px;
    text-align: center;
    border-radius: 7px;
    transition: .2s;
}

.toggle_Btn:hover{
    background-color: rgb(62, 61, 61, 0.6);
}

.action_Btn{
    background-color: orange;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.4s;
}

.action_Btn:hover{
    scale: 1.1;
    color: #fff;
}

.hamburguerBars{
    color: #D9161A;
}

/* --------DROPDOWN MENU STYLES-------- */
.dropdown_Menu{
    display: none;
    position: absolute;
    z-index: 1;
    right: 0;
    top: 105px;
    height: 0;
    width: 300px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
    transition: height 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown_Menu.open{
    height: 300px;
}

.dropdown_Menu li{
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown_Menu .action_Btn{
    width: 90%;
    display: flex;
    justify-content: center;
}

#logoLink{
    width: 100%;
    height: 100%;
}

#logoImg{
    width: 35%;
    height: 35%;
}

.logo{
    position: relative;
    height: 100px;
    transition: 0.3s;
}

.logo:hover{
    scale: 1.1;
}



/* --------REST OF PAGE-------- */
.mainContainer{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(7px);
    margin: 0;
    padding: 0;
}

.navbarRow{
    display: flex;
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0;
    background-color: #1a1b1c;
}

.col{
    padding: 0;
}

.sectionRow{
    position: relative;
    height: max-content;
    width: 100%;
    margin: 0;
    top: 3rem;
    margin-bottom: 5rem;
}

.sectionCol{
    display: flex;
    justify-content: center;
    align-items: center;
}

.sectionContainer{
    display: flex;
    flex-direction: column;
    position: relative;
    width: 90%;
    height: fit-content;
    padding-bottom: 50px;
    /* margin: 0;
    padding: 0; */
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    align-items: center;
    /* justify-content: space-between; */
}

.other_container{
    display: flex;
    position: relative;
    width: 100vw;
    height: 100vh;
    background-color: darkblue;
    justify-content: center;
    align-items: center;
}

.titlesContainer{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

.subtitlesContainer{
    width: 85%;
    margin-top: 30px;
}

.textContainer{
    margin-top: 10px;
    width: 85%;
    justify-content: center;
}

.formContainer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70%;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 5px;
}

.title{
    padding-top: 10px;
    font-size: 50px;
    font-weight: bold;
}

.title2{
    padding-top: 10px;
    font-size: 35px;
    font-weight: bold;
}

.text{
    font-size: 18px;
    text-align: justify;
}

.formTitle{
    text-align: center;
    padding-top: 10px;
}

.form{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* align-items: center; */
    width: 85%;
    height: 500px;
    padding-bottom: 25px;
}

.sendBtn{
    margin-top: 10px;
    width: 70%;
    align-self: center;
}

/* --------RESPONSIVE DESIGN-------- */

@media(max-width: 1028px){

    .navBar{
        height: 105px;
        max-width: 800px;
        margin-right: 0 ;
    }

    .logo{
        height: 100px;
    }

    .navBar .navbarLinks,
    .navBar .action_Btn{
        display: none;
    }

    .navBar .toggle_Btn{
        display: block;
    }
    .dropdown_Menu{
        display: block;
        justify-content: space-between;
    }
}

@media(max-width: 865px){
    .navBar{
        height: 105px;
        max-width: 700px;
    }
}

@media(max-width: 576px){
    .dropdown_Menu{
        left: 1.3rem;
        right: 1.3rem;
        width: unset;
    }
}