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

:root{
    font-size: 10px;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: sans-serif;
}

.topSection{
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    flex-direction: column;
    text-align: center;
}

.topSection p{
    font-size: 2.2rem;
    text-transform: uppercase;
    font-weight: bold;
letter-spacing: 1rem;
transform: translateY(-145px);
color: #511f63;
}

main{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#contact{
    border: 2px #511f63 solid;
    padding: 15px;
    color: white;
    font-size: 3rem;
    transition: .8s;
    margin-bottom: 74px;
    background-color: #242424;
    /* background-color: #1b1b1b; */
}

#contact:hover{
    color: #511f63;
    border: 2px white solid;
}

.logo{
margin-top: 68px;
filter: brightness(1.5);
aspect-ratio: 1/0.64;
}

.table{
    width: 70%;
}

.table h3{
    font-size: 4rem;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 2.5rem;
    color: white;
}

.table h3:not(:nth-child(1)){
margin-top: 100px;
}
td:nth-child(1){
    border:  3px #511f63 solid;
  border-right: none;
}
td:nth-child(2){
    width: 15%;
    border:  3px #511f63 solid;
    transform: translateX(-2px);
}

table{
    width: 100%;
}


td{
    padding: 15px;
    font-size: 2.4rem;
    background-color: rgba(25, 25, 25, 1);
    color: white;
    font-weight: bold;
}

h2{
    color: white;
    filter: brightness(1.5);
    text-transform: uppercase;
    font-size: 5rem;
    margin-bottom: 74px;
    margin-top: 44px;
}

.background{
    height: 100%;
    width: 100%;
    background-color: #242424;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    z-index: -999;
    overflow: hidden;
}

.background-main{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.light{
    position: absolute;
    height: 150px;
    width: 9px;
    /* background-color: rgba(75, 0, 255); */
    background-color: #511f63;
    opacity: 0.5;
    filter: blur(6px);
}

.l1{
    left: 60%;
    animation: float 5s infinite;
}
.l2{
    left: 15%;
    animation: float 3s infinite;
}
.l3{
    left: 30%;
    animation: float 4s infinite;
}
.l4{
    left: 4%;
    animation: float 4.5s infinite;
}
.l5{
    left: 45%;
    animation: float 3.7s infinite;
}
.l6{
    left: 60%;
    animation: float 5.3s infinite;
}
.l7{
    left: 78%;
    animation: float 4.9s infinite;
}
.l8{
    left: 93%;
    animation: float 4s infinite;
}

@keyframes float {
    0%{
        transform: translateY(-500%);
        rotate: -45deg;
    }
    100%{
        transform: translateY(500%);
        rotate: -45deg;
    }
}

.navigator{
    position: fixed;
    top: 50%;
    left: 2%;
    transform: translate(0,-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 999;
}

.mainNavigator{

}

.navigatorBox{
    background-color: #511f63;
    opacity: 0.6;
    height: 5px;
    width: 20px;
    margin-top: 7px;
    transition: 0.8s;
}

.isIntersecting{
    scale: 1.5;
    opacity: 1;
}

.contactNav{
 border-radius: 50%;
 width: 45px;
 height: 45px;
 background-color: #511f63;
 color: white;
 font-size: 3rem;
 display: flex;
 justify-content: center;
 align-items: center;
 text-decoration: none;
 transition: .8s;
 margin-bottom: 12px;
}

.contactNav:hover{
    background-color: white;
}

.contactNav:hover > i{
    color: #511f63;
    transform: translateX(2px);
}

.contactNav i{
    rotate: -90deg;
    transition: .8s;
}

footer{
    background-color: #1b1b1b;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    margin-top: 150px;
}

.xazuLink{
    border-top: 2px white solid;
    text-align: center;
    font-size: 2rem;
    padding: 10px;
    background-color: black;
    width: 100%;
}

.xazuLink a{
    color: white;
    text-decoration: none;
    transition: 0.8s;
}

.xazuLink:hover > a{
    color: rgb(75, 120, 255);
}

@media screen and (max-width: 992px){
:root{
    font-size:  8px;
}
.table{
    width: 100%;
    padding: 5px;
}
main{
    width: 100%;
}
.logo{
    scale: 0.5;
}
.navigator{
    display: none;
}
td{
    font-size: 2rem;
}
.textInput{
    width: 100% !important; 
}
.mainContact{
    padding: 0 15px;
}
.informations{
    flex-direction: column;
}
.informations div:not(.informations div:nth-child(1)){
    margin-top: 68px;
}
.topSection{
    width: 100%;
}
.informations{
    align-items: center;
}
.informations div{
    width: 100% !important;
}
.topSection p{
    letter-spacing: 0.5rem;
    font-weight: bolder;
    font-size: 1.3rem;
    transform: translateY(-195px);
}
}

td p{
    font-size: 1.5rem;
    opacity: 0.4;
}

a{
    text-decoration: none;
}

.contactForm{
    /* background-color: #511f63; */
    padding: 50px 0;
    width: 100vw;
    color: white;
    font-size: 2.4rem;
    margin-bottom: 150px;

}

.mainContact{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mainContact h1{
margin-bottom: 38px;
}

.textInput {
    width: 50%;
    margin-top: 8px;
    padding: 5px 10px;
    font-family: sans-serif;
    font-weight: bold;
    /* border-radius: 24px; */
    border: none;
    font-size: 2rem;
}

.mainContact .textInput:focus{
    outline: none;
}

.messageInput{
    resize: none;
}

.mainContact button{
    margin-top: 35px;
    padding: 10px 15px;
    font-weight: bold;
    border-radius: 24px;
    border: none;
    font-size: 2rem;
}

.informations{
    width: 100%;
    padding: 100px 0;
    background-color: rgba(81, 31, 99, .3);
    margin-bottom: 200px;
    display: flex;
    justify-content: space-around;
    /* padding-left: 5%; */
    /* gap: 20%; */
}

.informations div{
    display:flex ;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 3rem;
    color: white;
    gap: 30px;
    width: calc(100%/3);
}

.informations i{
    font-size: 4rem;
}

.informations a{
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 5rem;
}

.informations p{
    font-size: 3rem;
}