@import url('https://fonts.googleapis.com/css?family=Muli&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,500&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    list-style: none;
    font-family: sans-serif;
    font-family: 'Open Sans', sans-serif;
    background: url(untitled.png);
    background-size: 120%;
}
#head{
    position: absolute;
    top: 0;
    left: 0;
    height: 8vh;
    width: 100%;
    background-color: #006eff;
}
.logo{
    position: absolute;
    top: 2%;
    left: 0.5%;
    height: 70px;
    width: 70px;
    background: url(ggg.bmp);
    background-size: cover;
    border-radius: 50px;
    z-index: 1;
}
nav{
    position: absolute;
    top: 1%;
    left: 80%;
    height: 100%;
    width: 38vh;
    font-size: 1.4em;
}
ul{
    position: relative;
}
li{
    position: relative;
    text-decoration: underline;
    padding: 17px;
    display: inline-block;
    text-align: center;
    font-weight: bold;
}
a{
    color: white;
    text-decoration: none;
}
a:hover{
    color: black;
}
.container{
	position: absolute;
    top: 24%;
    left: 0%;
	width: 100%;
	height: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 100px;
}

.container:after{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-size: cover;
	filter: blur(50px);
	z-index: -1;
}
.contact-box{
	max-width: 1000px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	justify-content: center;
	align-items: center;
	text-align: center;
	background-color: #fff;
	box-shadow: 0px 0px 19px 5px rgba(0,0,0,0.19);
}

.left{
	background: url("img.jpg") no-repeat center;
	background-size: cover;
	height: 100%;
}

.right{
	padding: 25px 40px;
}

h2{
	position: relative;
	padding: 0 0 10px;
	margin-bottom: 10px;
}

h2:after{
	content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 4px;
    width: 50px;
    border-radius: 2px;
    background-color: #2ecc71;
}
.mechanism{
    position: relative;
    top: -17px;
    left: 150px;
    color: gray;
    height: 20px;
    text-decoration: none;
}
.mechanism:hover{
    text-decoration: underline;
}
.field{
	width: 100%;
	border: 2px solid rgba(0, 0, 0, 0);
	outline: none;
	background-color: rgba(230, 230, 230, 0.6);
	padding: 0.5rem 1rem;
	font-size: 1.1rem;
	margin-bottom: 22px;
	transition: .3s;
}

.field:hover{
	background-color: rgba(0, 0, 0, 0.1);
}

textarea{
	min-height: 100px;
}

.btn{
	width: 100%;
	padding: 0.5rem 1rem;
	background-color: #2ecc71;
	color: #fff;
	font-size: 1.1rem;
	border: none;
	outline: none;
	cursor: pointer;
	transition: .3s;
}

.btn:hover{
    background-color: #27ae60;
}

.field:focus{
    border: 2px solid rgba(30,85,250,0.47);
    background-color: #fff;
}
.agree a{
    color: #999900;
}

.copyrighttxt{
    position: fixed;
    top: 97.7%;
    height: 22px;
    width: 100%;
    background-color: #0000007c;
    color: #000000;
    font-weight: bold;
}
.me{
    position: fixed;
    top: 94%;
    left: 97%;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    background-color: #a100a1;
    color: white;
    font-size: 30px;
    text-align: center;
    cursor: default;
    overflow: hidden;
    border: 2px solid white;
    z-index: 3;
}
.me:hover{
    left: 87%;
    width: 242px;
    border-radius: 50px;
    background-color: #a100a1;
    color: white;
    transition: 1s ease;
}

@media screen and (max-width: 880px){
    .container{
        top: 50%;
        width: 300%;
    }
    nav{
        position: fixed;
        left: 10%;
    }
}
@media (max-width: 1900px){
    nav{
        top: 0%;
        left: 75%;
        width: 50vh;
        font-size: 1.2em;
    }
    .logo{
        top: 7%;
        height: 67px;
        width: 67px;
    }
}
@media (max-width: 952px){
    body{
        background: url(untitled2.png);
        background-size: 400%;
    }
    #head{
        height: 9vh;
        width: 300%;
        box-shadow: 2px 3px 8px #57575780;
    }
    nav{
        display: none;
    }
    .mechanism{
        left: 127px;
    }
    .me{
        display: none;
    }
    .copyrighttxt{
        display: none;
    }
}