*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: none;
    list-style-type: none;
    text-decoration: none;
    font-family: sans-serif;
}
body{
    background-image: url(../../upload/photo/OIG3.AA_08AmFcdYYvNUcek.jpeg);
    object-fit: cover;
    background-repeat: no-repeat;
    background-position: center;
    /* background-size: cover; */
    background-color: #003399;
    width: 100%;
}

header{
    display: flex;
    justify-content: space-between;
    padding: 20px;
    /* border: 2px solid black; */
    position: relative;
    background-color: #003399;
}
header .leftItmes{
    position: relative;
}
header .leftItmes a{
    display: block;
    font-size: 30px;
    color: #fff;
}
header .rightItems ul{
    display: flex;
    gap: 20px;
    
}
header .rightItems ul li a{
    display: flex;
    gap: 10px;
    font-size: 23px;
    color: #fff;
    font-weight: 600;
}
header .rightItems ul li a:hover{
    opacity: 0.7;
}
main{
    background-color: #003399f2;
    padding: 15px;
    height: 100%;
    width: 100% !important;
    position: relative;
}
main .head i{
    text-align: center;
    font-size: 100px;
    position: relative;
    justify-self: center;
    display: block;
    color: #fff;
}
main .head h2{
    color: #fff;
    font-size: 20px;
    text-align: center;
    display: block;
}
main form{
    position: relative;
    display: block;
    margin: 10px auto;
    width: 400px;
    border: 0.3px solid #fff;
    padding: 10px;
    box-shadow: 0 2px 3px 1px #fff;

}
main form input{
    font-size: 18px;
    width: 100%;
    padding: 15px;
    border: 1px solid #000;
    outline: none;
}
main form label{
    color: #fff;
    font-size: 18px;
    margin-top: 15px;
    display: block;
}
main form .but select{
    width: calc(100% - 100px);
    font-size: 18px;
    outline: none;
    border: none;
}
main form .but{
    margin-top: 15px;
    display: flex;
    width: 100%;
}
main form .but button{
    padding: 15px;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    width: 100px;
    cursor: pointer;
}
main form .but select option{
    font-size: 18px;
}
main form .but button:hover{
    opacity: 0.6;
}
header .navShow{
    display: none;
}
header .navShow li i{
    font-size: 20px;
    color: #fff;

}
@media screen and (max-width: 680px) {
    main{
        width: 100%;
        height: 100%;

    }
    main form{
        width: 100%;
    }
    header .rightItems ul{
        display: block;
        position: absolute;
        padding: 15px;
        top: 0;
        width: 100%;
        box-sizing: border-box;
        background-color: #ffffffe9;
        z-index: 1;
        left: 0;
    }
    header .rightItems .listItem{
        display: none;
        transition: 2s ease-in-out;
    }
    header .rightItems ul li a{
        color: #000;

    }
    
    header .navShow{
        display: block;
    }
}