 *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    width:100%;
    position: relative;
    background: #000;
    color: #F7F7F7;
    font-family:'Poppins', sans-serif, "Codec Cold Trial", Arial, "Times New Roman", serif;
}

/* navbar*/

nav{
    position:fixed;
    top:0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #000;
    padding: 2% 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    z-index: 9;
}
.logo{
	font-size: 120%;
	text-decoration: none;
	color: #fff;
	font-family: 'Monoton', cursive, "Codec Cold Trial";
}
.nav-links{
	flex: 1;
	text-align: right;
}

.nav-links ul li{
	list-style: none;
	display: inline-block;
	padding: 8px 12px;
	position: relative;
}
.nav-links ul li a{
	color: #F7F7F7;
	text-decoration: none;
	font-size: 14px;

}
.nav-links ul li a:active{
	color: #e6be8a;
}
.nav-links ul li::after{
	content: '';
	width: 0%;
	height: 2px;
	background: #e6be8a;
	display: block;
	margin: auto;
	transition: 0.5s;
}
.nav-links ul li:hover::after{
	width: 100%;
}
nav ul li.activen a{
	color: #e6be8a;
}
nav ul li.res a:active{
	color:#e6be8a;
}

.logo:hover, .logo:active{
	color: #e6be8a;
	transition: 0.5s;
}

.burger{
	display: none;
	position: relative;
	z-index: 1;
	user-select: none;
	border: none;
	outline: none;
	background: none;
	cursor: pointer;
}
.burger span{
	display: block;
	width: 22px;
	height: 3px;
	margin: 3px;
	background-color: #fff;
	position: relative;
	border-radius: 6px;
	transform-origin: 0 0;
	transition: 0.4s;
}

.contact{
	width: 70%;
	box-sizing: border-box; 
    min-height: calc(60vh - 80px);
    height: auto;
	margin-top: 40px;
	padding: 6%;
	line-height: 2;
	margin-left: 50px;
}
.contact h1{
	font-size: 32px;
}

.one {
	color: #F3F3F3;
	width: 85%;
	max-width: 690px;
	min-width: 620px;
}
.contact a{
	color: #e6be8a;
	text-decoration: none;
}
.pan{
	color: #e6be8a;
}

.about{
	width: 100%;
    min-height: calc(70vh - 80px);
    height: auto;
	margin-top: 40px;
	padding-left: 6%;
	padding-right: 6%;
	padding-top: 6%;
	line-height: 2;
	display: flex;
    align-items: flex-start;
	gap: 10%;
    position: relative;
}
.about a{
	color: #e6be8a;
	text-decoration: none;
}

.image{
    width: 25%;
	margin-right: 100px;
	margin-top: 30px;
	box-sizing: border-box; 
}
.text-pod{
	margin-left: 50px;
	width: 55%;
	max-width: 690px;
	min-width: 500px;
	opacity: 1;
	box-sizing: border-box; 
}

.text-pod h1{
	font-size: 32px;
}
.text-pod p{
	font-size: 16px;
	color: #F7F7F7;
	line-height: 1.8;
}

.aboutt{
	padding-left: 6%;
	padding-right: 6%;
	line-height: 2;
	width: 70%;
}
.pas{
	margin-left: 50px;
	width: 85%;
	color: #F7F7F7;
}
.pas p{
	opacity: 1;
}


/*tablet view*/

@media screen and (min-width: 1600px){
	.image{
		width: 20%;
	}
}

@media screen and (max-width: 996px){
    .nav-links ul li{
		display: block;
	}
	.nav-links{
		position: absolute;
		transform: translateY(-100%);
		z-index: 1;
		height: 100vh;
		top: 0vh;
		background-color: #000;
		text-align: center;
		width: 50%;
		display: flex;
		flex-direction: column;
		align-items: center;
		line-height: 30px;
		transition: .5s;
		padding: 20px;
		padding-top: 90px;
		right: 0;
	}
	.nav-links.is-active{
		transform: translateY(0%);
	}
	.nav-links li{
		opacity: 100%;
	}
	.burger{
		display: block;
	}
	.logo {
		font-size: 16px;
	}
	.burger.is-active span:nth-child(1){
		transform: translate(.2px,-3.7px) rotate(45deg);
	}
	.burger.is-active span:nth-child(2){
		opacity: 0;
		transform: translateX(15px);
	}
	.burger.is-active span:nth-child(3){
		transform: translate(-1.8px,.1px) rotate(-45deg);
	}

	.about{
		flex-direction: column-reverse;
		height: fit-content;
		padding-bottom: 20px;
		display: flex;
		align-items: flex-start;
	}
	.image{
		width: 300px;
		margin-top: 40px;
		margin-bottom: 8%;
		margin-left: auto;
		margin-right: auto;
	}

	.text-pod{
		width: 100%;
		margin-left: 0px;
		width: 90%;
		max-width: 5400px;
		min-width: 280px;

	}
	.pas{
		margin-left: 0px;
		width: 100%;
	}
	.aboutt{
		padding-bottom: 6%;
		width: 90%;
	}


}

@media screen and (max-width: 768px){
	.contact{
		margin-top: 60px;
		width: 90%;
		margin-left: 0px;
	}
	.contact h1{
		font-size: 24px;
	}
	.contact p{
		font-size: 14px;
	}
	.text-pod p{
		font-size: 14px;
	}
	.text-pod h1{
		font-size: 24px;
		margin-top: 20px;
	}
	.about{
		font-size: 14px;
	}
	.aboutt{
		font-size: 14px;
		width: 90%;
	}
	.pas{
		margin-left: 0px;
		width: 100%;
	}
	.text-pod{
		margin-left: 0;
		width: 90%;
	}
	.image{
        width: 250px;
		margin-top: 40px;
		margin-bottom: 4%;
		margin-left: auto;
		margin-right: auto;
    }
	.one {
		width: 100%;
		max-width: 540px;
		min-width:300px;
	}



}


/* footer*/

footer{
	width: 100%;
	padding-bottom: 64px;
	padding: 6%;
	padding-top: 3%;
	font-family: Poppins, inter;
}
.row h3{
	font-size: 16px;
	opacity: .8;
	float: right;
	font-weight: 200;
	color: #f5f4f2;

}
.row{
	padding-bottom: 10px;
}
.col{
	flex-basis: 25%;
	padding-left: 10px;
}
.col h4{
	color: #f5f4f2;
	font-weight: 200;
	font-size: 16px;
	opacity: .8;
}
.raw{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	padding-top: 20px;
}
hr{
	margin: 30px auto;
}
.col a{
	text-decoration: none;
	margin-right: 14px;
}
.tw{
	color: #00acee;
}
.ig{
	color: #c13584;
}
.li{
	color: #0e76a8;
}
.git{
	color: #999999;
}
.mail{
	color: #F7F7F7;
}
.fly{
	text-align: center;
	padding-top: 6%;
	opacity: .8;
	font-size: 16px;
	font-weight: 200;
	color: #f5f4f2;
}

@media screen and (max-width: 500px){
	.row h3{
		text-align: center;
		float: none;
		font-size: 14px;
	}
	hr{
		margin: 10px auto;
	}
	.col h4{
		font-size: 14px;
	}
	.col p{
		font-size: 16px;
	}
	.raw{
		display: block;
	}
	.col{
		margin-bottom: 20px;
	}
	.fly{
		font-size: 14px;
	}
}
@media screen and (max-width: 768px){
	.row h3{
		text-align: center;
		float: none;
		font-size: 14px;
	}
	hr{
		margin: 10px auto;
	}
	.col h4{
		font-size: 14px;
	}
	.col p{
		font-size: 14px;
	}
	.raw{
		display: block;
	}
	.col{
		margin-bottom: 20px;
		padding-left: 0px;
	}
	.fly{
		font-size: 14px;
	}
	footer{
		padding-bottom: 10%;
	}

}

#preloader{
	background: #000 url('../images/loader.gif') no-repeat center;
	position: fixed;
	background-size: 15%;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 1000;
}

