/* Navbar */
#nav{
    width: 100vw;
    height: 10vh;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 1;
    background-color: rgb(27, 25, 25);
    display: flex;
}

#nav>div>img{
    height: 8vh;
    margin-top: 1vh;
    margin-left: 1vw;
    cursor: pointer;
}

#nav>span{
    line-height: 10vh;
    font-size: 18px;
    margin-left: 15px;
    color: #fff;
}

main{
    background-image: url("resources/customersupport.jpg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
main>div{
    width: 100%;
    height: 90vh;
    margin-top: 8vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

main>div>div{
    height: 250px;
    width: 20%;
    background: linear-gradient(to bottom, rgb(27, 25, 25) 50%, white 50%);
    border-radius: 15px;
    text-align: center;
    /* margin-top: 115px; */
}

main>div>div:nth-child(1):hover, main>div>div:nth-child(2):hover, main>div>div:nth-child(3):hover{
    cursor: pointer;
    transform: scale(1.1);
}

main>div>div>i{
    margin-top: 40px;
    font-size: 400%;
    color: #fff;
}

main>div>div>h1{
    margin-top: 50px;
    font-size: 150%;
}

main>div>div>div:nth-child(3){
    display: none;
}

/* background */
.bgForm{
    width: 100vw;
    height: 100%;
    position: fixed;
    background-color: rgb(10, 10, 10, 0.5);
    top: 0%;
    left: 0%;
    display: none;
}

.bgForm>div{
    height: 400px;
    width: 40%;
    background: linear-gradient(to bottom, rgb(27, 25, 25) 50%, white 50%);
    border-radius: 15px;
    text-align: center;
    margin-top: 90px;
    margin-left: 30%;
}

.bgForm>div>i{
    margin-top: 40px;
    font-size: 800%;
    color: #fff;
}

.bgForm>div>h1{
    margin-top: 50px;
    font-size: 250%;
}

.bgForm>span{
    color: #fff;
    font-size: 50px;
    position: relative;
    top: 10%;
    left: 80%;
    z-index: 1;
    cursor: pointer;
}

.logRegi{
    width: 80%;
    margin-left: 10%;
    display: flex;
    justify-content: space-around;
}

.logRegi>div{
    color: white;
    background-color: rgb(17, 17, 99);
    border: none;
    width: 100px;
    height: 60px;
    line-height: 60px;
    border-radius: 10px;
    word-spacing: 10px;
}

.logRegi>div:hover{
    cursor: pointer;
    transform: scale(1.1);
}

.bgForm>span:hover{
    color: red;
}

/* form */  
.formCss{
    width: 25%;
    height: auto;
    background-color: #fff;
    border-radius: 10px;
    margin: 25px 35%;
    display: none;
}

.formCss>label{
    font-weight: 600;
    font-family:serif;
}

.formCss>input{
    width: 100%;
    height: 40px;
    margin-bottom: 15px;
    border: none;
    border-bottom: 2px solid black;
    outline: none;
}

.formCss>input:last-child{
    background-color: rgb(17, 17, 99);
    width: 40%;
    margin-left:30%;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.formCss>input:last-child:hover{
    transform: scale(1.1);
}

.formCss>span{
    font-size: 30px;
    position: absolute;
    right: 30%;
    z-index: 0;
}

.formCss>span:hover{
    color: red;
    cursor: pointer;
    transform: scale(1.1);
}

/* table */
table {
    text-align: center;
    width: 500px;
    margin-top: 15px;

    /* display: none; */
}

table thead{
    background-color: rgb(22, 21, 21);
    color: #fff;
}

table tbody{
    background-color: #fff;
    color: black;
}

table tbody tr:nth-child(even){
    background-color: rgb(209, 209, 209);
}

/* contact */
#contact{
    font-size: 34px;
    color: rgb(245, 242, 242);
    position: absolute;
    top: 80vh;
    width: 20%;
    height: auto;
    left: 40%;
    z-index: -0;
    background: transparent;
}

#contact>div{
    width: 100%;
    text-align: center;
    font-size: 18px;
    margin-bottom: 15px;
}

#contact>div:nth-child(2){
    display: flex;
    font-size: 34px;
    justify-content: space-between;
}

#contact i:hover{
    color: rgb(59, 58, 58);
    transform: scale(1.5);
    cursor: pointer;
}

/* show the form */
.show{
    display:inline-block;
}

/* hide */
.hide{
    display: none;
}