:root {
    --col1: black;
    --text: white;
    /* --texthover: #ff7300; */
    --texthover: #ff0101;
    --background: #151515;
}

a{
    text-decoration: none;
}

.contact{
    width: 100%;
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url("./imgs/bg2.jpeg");
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact h1 {
    font-size: 40px;
    color: var(--text);
}
.contacticon{
    max-width: 100%;
    min-height: 100vh;
    background-color: var(--background);
    color: var(--text);
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: center;
}
.icons{
    display:flex;
    align-items: start;
    justify-content: start;
    width: 100%;
}
.loctiontext{
    width: 80%;
    display: flex;
}
.loctiontext p{
    padding-top:20px ;
    margin-left: 10px;
    color: rgb(114, 106, 106);
    width: 100%;

}
.icon{
    width: 50px;
    height: 50px;
    background: rgb(70, 69, 69);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 2px;
}

.icon svg {
    width: 15px;
    fill: var(--texthover);
}

.icons:nth-child(3) .icon svg{
    width: 25px;
}

.consts{
    display: flex;
    align-items: center;
    justify-content: center;
}

.loction .para{
    font-size: 17px;
    color: var(--texthover);
    margin-bottom: 10px;
}
.loction h1{
    font-size: 24px;
    margin-bottom: 30px;
    margin-top: 40px;
}
.login{
    width: 450px;
    padding-bottom: 30px;
    
}
.login input{
    width: 440px;
    height: 40px;
    border: 2px solid rgba(0,0,0,0.5);
    margin-bottom: 25px;
    padding-left: 10px;
    background: transparent;
    color: rgb(114, 106, 106);
    font-size: 18px;
}
.login textarea{
    width: 440px;
    height: 100px;
    padding: 10px;
    font-size: 18px;
    margin-bottom: 25px;
    background: transparent;
    color: rgb(114, 106, 106);
}

.login .btn{
    color: white;
    background-color: var(--texthover);
}
.login input:focus{
    border-color:white;
    outline-color:white ;
}
.login textarea:focus{
    border-color:white;
    outline-color:white;
}

/* ---------------- */

/* Mobile view */

@media (max-width:480px) {
    .contact{
        background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url("./imgs/bg2.1.jpeg");
        background-position: center;
        background-size: cover;
        
    }
    .loction{
        margin-left: 20px;
    }
    .login{
        padding-top:20px ;
        width: 100%;
        height: fit-content;
    }
    .login input{
        width: 330px;
        margin-left: 20px;
    }
    .login input:focus{
        border: 2px solid white;
    }
    .login textarea{
        width: 330px;
        margin-left: 20px;
    }
    .contacticon{
        padding: 20px 0;
        height: fit-content;
    }
    .consts{
        flex-direction: column;
    }
    .loction h1{
        margin-bottom: 20px;
    }
}