*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    color: #fff;
    font-family: Inter;
}

.container{
    width: 100%;
    height: 100vh;
    display: flex;
    background: #000000; 
}

.contact, nav{
    height: 100vh;
    /* border: 2px solid #fff; */
}
/* contact */
.contact{
    width: 85%;
}

.header{
    position: relative;
    width: 100vw;
    /* border: 2px solid #fff; */
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.h1{
    font-size: 100px;
    letter-spacing: 10px;
    color: rgba(255, 255, 255, 0.2);
}

.h2{
    position: absolute;
    font-size: 48px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    letter-spacing: 4px;
}
.aside{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-left: 20px;
}

/* info */
.infos .sub-text{
    margin: 15px 0;
    line-height: 150%;
}

.con{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.con i{
    font-size: 48px;
}

.social ul{
    display: flex;
    gap: 20px;
    list-style: none;
}

.social ul li{
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social ul li a i{
    font-size: 16px;
}

/* inputs */
/* .infos, .inputs{
    border: 2px solid #fff;
} */

.inputs{
    width: 62%;
}

.input_info{
    display: flex;
    justify-content: space-between;
}
.input_info input{
    width: 300px;
    height: 50px;
    border-radius: 50px;
    padding: 0 10px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* border: none; */
    /* margin-right: 20px; */
    outline: none;
}

.input_info input::placeholder{
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.inputs textarea{
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* border: none; */
    outline: none;
    margin-top: 35px;
    width: 100%;
    border-radius: 30px;
    padding: 15px;
}

.inputs textarea::placeholder{
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.snd{
    background: goldenrod;
    padding: 15px 30px;
    border-radius: 50px;
    margin-top: 30px;
    border: none;
}

.snd:hover{
    background: red;
}
/* nav */
nav{
    width: 15%;
    display: flex;
    align-items: center;
    z-index: 999;
}

nav ul{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: end;
    list-style: none;
    width: 100%;
    z-index: 999;
}

nav ul li{
    display: flex;
    align-items: center;
    justify-content: end;
    width: 60px;
    height: 60px;
    margin-top: 40px;
    z-index: 999;
}

nav ul li a{
    display: flex;
    align-items: center;
    justify-content: end;
    text-decoration: none;
    overflow: hidden;
    font-size: 20px;
    gap: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0 17px;
    width: 100%;
    height: 100%;
    transition: width 0.3s ease;
    z-index: 999;
}

nav ul li a:hover{
    overflow: visible;
    width:fit-content;
    z-index: 999;
}

i{
    font-size: 28px;
}


.social-menu ul {
    position: absolute;
    
    right: 750px;
    transform: translate(-50%, -50%);
    padding: 0;
    
    display: flex;
    align-items: center;
    margin-bottom: 500px;
    
    
    }
    .social-menu ul li {
    list-style: none;
    margin: 0 10px;
    }
    .social-menu ul li .fa {
    /* color: #000000; */
    color: #fff;
    
    font-size: 25px;
    line-height: 50px;
    transition: .10s;
    }
    
    .social-menu ul li a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%; 
    border: none;
    /* background-color: white; */
    text-align: center;
    transition: 0.5s;
    transform: translate(0,0px);
    /* box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.5);
    */
    }
    
    
    
    .social-menu ul li .fa:hover{
    transform: translate(0, -10px);
    }
    
    .social-menu ul li:nth-child(1) a:hover {
    background-color: #3b5999;
    }
    .social-menu ul li:nth-child(2) a:hover {
    background-color: #55acee;
    }
    .social-menu ul li:nth-child(3) a:hover {
    background-color: #e4405f;
    }
    .social-menu ul li:nth-child(4) a:hover {
    background-color: #25D366;
    }
    .social-menu ul li:nth-child(5) a:hover {
    background-color:#0A66C2;
    }


    a{
        color: goldenrod;
        text-decoration: none;

    }

    a:hover{
        color: red;
    }

input[type="text"] {
        width: 180px;
        margin-right: 10px;
      }

      input[type="email"] {
        width: 180px;
        margin-right: 10px;
      }
      
