/* VINEET MANKANI - TREKS FOR YOU | Contact */

@import url('https://fonts.googleapis.com/css2?family=East+Sea+Dokdo&family=Hachi+Maru+Pop&family=Potta+One&family=New+Tegomin&family=Train+One&family=Bangers&display=swap');

*{
    box-sizing: border-box;
    color: white;
}

html {
    margin: 0px;
    padding: 0px;
}

body {
    margin: 0;
    width: auto;
    height: auto;
    font-family: 'New Tegomin';
    background-color:rgb(167, 167, 233);
}

img.bg  {
    top: 0;
    position: fixed;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

div.logo a img {
    position: relative;
    float: left;
    margin: 15px 0px 0px 15px;
    height: 66px;
    width: auto;
    z-index: 5;
}

div.logo a img:hover {
    border: 1px solid white;
    border-radius: 33px;
}

#nav {
    position: absolute;
    float: right;
    right: 25px;
    top: 25px;
    z-index: 1;
}

#nav span a {
    text-decoration: none;
    font-size: 22px;
    font-family: 'New Tegomin';
    font-weight: 500;
    padding: 5px 15px 10px 15px ;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.6s;
}

#nav span a:hover {
    background-color:rgb(240,240,240,0.8);
    border: 1px solid black;
    color: black;
    text-decoration: underline;
}

@media screen and (min-width:650px) and (max-width:800px) {
    #nav span a {
        padding: 5px 9px 5px 9px;
        font-size: 20px;
    }
}

@media screen and (min-width:550px) and (max-width:650px) {
    #nav span a {
        padding: 3px 6px 3px 6px;
        font-size: 19px;
    }
}

@media screen and (max-width:550px) {
    #nav span a {
        padding: 2px 4px 2px 4px;
        font-size: 17px;
    }
}

@media screen and (min-height: 1200px) {
    #nav span a  {
        padding: 10px 18px 10px 18px ;
        font-size: 40px;
    }
}

div.content {
    position: relative;
    width: 80%;
    height: auto;
    font-size: 18px;
    margin: 2.5% 10% 2.5% 10%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(2, 71, 2, 0.3);
    border: 6px solid black;
    border-radius: 25px;
}

@media screen and (min-width: 450px) and (max-width: 600px) {
    div.content {
    width: 90%;
    margin: 2.5% 5% 2.5% 5%;
    }
}

@media screen and (min-width: 200px) and (max-width: 450px) {
    div.content {
    width: 95%;
    margin: 2.5% 2.5% 2.5% 2.5%;
    }
}

div.contact {
    position: relative;
    height: auto;
    width: 100%;
    padding-top: 100px; 
}

div.contact h1 {
    margin: 0px;
    text-align: center;
    font-size: 90px;
    font-family: 'East Sea Dokdo';
    color: white;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="number"],
textarea {
    width: 100%;
    height: 60px;
    font-size: 18px;
    font-family: sans-serif;
    color: black;
    padding-left: 20px;
    border: 1px solid #222222;
    border-radius: 30px;
    margin: 7px;
}

form p{
    width: 100%;
    font-size: 20px;
    font-family: 'New Tegomin';
    padding: 5px 50px 5px 50px;
}

textarea {
    padding-top: 20px;
}

input[type="submit"] {
    width: 100%;
    height: 60px;
    background-color: #00DD00;
    color: white;
    font-size: 22px;
    font-family: 'New Tegomin';
    font-weight: bold;
    border: 1px solid #222222;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.5s;
}
    
input[type="submit"]:hover {
    background-color: #00EE00;
}

@media screen and (min-width: 700px) and (max-width:800px) {
    form p {
        padding: 5px 30px 5px 30px;
    }
}

@media screen and (min-width: 500px) and (max-width:700px) {
    form p {
        padding: 5px 25px 5px 25px;
    }
}

@media screen and (max-width:500px) {
    form p {
        padding: 5px 20px 5px 20px;
    }
}

hr {
    border: 1px dotted white;
}

p.finalcontact {
    text-align: center;
    padding: 0 0 5px 0;
    margin: 0;
}

p.mail {
    text-align: center;
    font-size: 18px;
    padding: 0px 0 10px 0;
    margin: 0;
}

p.or {
    text-align: center;
    font-size: 16px;
    padding: 0;
    margin: 0;
}

div.foot  {
    position: relative;
    width: 100%;
    height: auto;
    font-family: 'Trebuchet MS';
    padding: 8px;
    bottom: 0px;
    background-color:rgba(20, 225, 20, 0.8);
    border-top: 3px solid black;
    border-bottom: 3px solid black;
    
}

div.links {
    position: relative;
    width: auto;
    z-index: 5;
    top: 0px;
}

div.links a {
    display: inline-block;
    padding-right: 4px;
    text-decoration: none;
    transition: 0.5s;
}

div.links a:hover {
    transform: translateY(-10px);
}

div.links a img {
    width: 20px;
}

div.copyright {
    position: relative;
    bottom: 0px;
    font-weight: 500;
    z-index: 5;
    color: black;
}

div.copyright a {
    text-decoration: none;
    color: black;
}

div.copyright a:hover {
    cursor: pointer;
}

/* End of CSS Code */