@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
	scroll-behavior: smooth;
}
.container{
	max-width:1140px;
	margin:auto;
}
.row{
	display:flex;
	flex-wrap:wrap;
}
.section-title{
	flex: 0 0 100%;
	max-width: 100%;
	margin-bottom: 40px;
}
.section-title h1{
	display: inline-block;
	font-size: 35px;
	text-transform: uppercase;
	font-weight: 700;
	color: #000000;
	margin: 0 0 10px;
	position: relative;
}
.section-title h1:before{
	content: '';
	left:0;
	position: absolute;
	height: 2px;
	right: 30%;
	background-color: #febd01;
	bottom: 0px;
}

.text-center{
	text-align: center!important;
}
.text-left{
	text-align: left!important;
}
.text-right{
	text-align: right!important;
}
header
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	padding: 40px 100px;
	z-index: 1000;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: 0.5s;
}
header.sticky
{
	background: #fff;
	padding: 20px 100px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
header ul
{
	position: relative;
	display: flex;
}
header ul li
{
	position: relative;
	list-style: none;
}
header ul li a
{
	position: relative;
	display: inline-block;
	margin: 0 15px;
	color: #fff;
	text-decoration: none;
}
header ul li a:hover
{
	color: aqua;
	text-decoration: none;
}
header.sticky ul li a
{
	color: #111;
}
.liquid
{
	position: relative;
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #183954;
}
.liquid h2
{
	position: absolute;
	font-size: 30vw;
}
.liquid h2:nth-child(1)
{
	color: #fff;
	text-shadow: -2px 2px 0px #183954,
	-4px 4px 0px #183954,
	-6px 6px 0px #183954,
	-8px 8px 0px #183954,
	-18px 18px 20px rgba(0,0,0,0.5),
	-18px 18px 50px rgba(0,0,0,0.5);
}
.liquid h2:nth-child(2)
{
	color: #2196f3;
	opacity: 0.5;
	animation: animate 3s ease-in-out infinite;
}
.liquid h2:nth-child(3)
{
	color: #2196f3;
	opacity: 0.5;
	animation: animate 6s ease-in-out infinite;
}
.liquid h2:nth-child(4)
{
	color: #2196f3;
	animation: animate 4s ease-in-out infinite;
}
.liquid h3
{
	position: relative;
	color: #fff;
	margin-top: 350px;
	font-family: Great Vibes;
	font-size: 4vw;
}
.liquid h3 span
{
	color: yellow;
	font-family: 'Great Vibes', cursive;
}


@keyframes animate
{
	0%,100%
	{
		clip-path: polygon(0 46%, 16% 45%, 34% 52%, 50% 61%, 68% 65%, 85% 61%, 100% 53%, 100% 100%, 0% 100%);
	}
	50%
	{
		clip-path: polygon(0 59%, 18% 67%, 36% 70%, 51% 66%, 66% 56%, 82% 49%, 100% 45%, 100% 100%, 0% 100%);
	}
}

.about
{
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 100vh;
	padding: 150px 100px 100px;
}
.about img
{
	max-width: 550px;
	margin-left: 30px;
}
.about h2
{
	font-size: 2.5em;
}
.about .line
{
	width: 200px;
}
.line
{
	width: 450px;
	height: 4px;
	background: #fc036b;
	margin: 10px 0;
	border-radius: 5px;
}
.about a
{
	display: inline-block;
	padding: 8px 10px;
	text-decoration: none;
	font-size: 18px;
	background: #fb60c5;
	color: #fff;
	margin-top: 20px;
}
.services
{
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	min-height: 100vh;
	padding: 150px 100px 100px;
	background: #f2f2f2;
}
.services a
{
	display: inline-block;
	padding: 8px 10px;
	text-decoration: none;
	font-size: 18px;
	background: #d3170c;
	color: #fff;
	margin-top: 20px;
}
.services h1
{
	color: #484872;
}
.services .row .col
{
	width: 50%;
}
.services .image-gallery
{
	display: flex;
	flex-wrap: wrap;
}
.image-gallery img
{
	width: 250px;
	margin: 10px;
}
.portfolio
{
	background: #111;
}
.heading
{
	text-align: center;
	color: #fff;
	padding: 1rem;
	font-size: 3rem;
}
.btn
{
	display: inline-block;
	padding: 8px 10px;
	text-decoration: none;
	font-size: 18px;
	background: #111;
	color: #fff;
	margin-top: 20px;
}
.portfolio .box-container
{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.portfolio .box-container .box
{
	margin: 1rem;
	border: .1rem solid rgba(0,0,0.0.2);
	overflow: hidden;
	height: 25rem;
	flex: 1 1 20rem;
	position: relative;
	cursor: pointer;
}
.portfolio .box-container .box img
{
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.portfolio .box-container .box .number
{
	position: absolute;
	top: .2rem;
	right: 1.5rem;
	font-size: 5rem;
	color: rgba(0,0,0,.2);
	font-weight: bold;
	z-index: 10;
}
.portfolio .box-container .box::before
{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: #fff;
	transition: .3s ease-out;
	clip-path: circle(30% at 95% 0);
}
.portfolio .box-container .box:hover::before
{
	clip-path: circle(100%);
}
.portfolio .box-container .box .info
{
	position: absolute;
	top: 70%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	text-align: center;
	opacity: 0;
}
.portfolio .box-container .box:hover .info
{
	transition-delay: .2s;
	opacity: 1;
	top: 50%l
}
.portfolio .box-container .box .info h3
{
	color: #192a56;
	font-size: 2.5rem;
}
.portfolio .box-container .box .info p
{
	color: #666;
	font-size: 2rem;
}
.adverts{
	padding: 100px 15px;
	background-color: #ffffff;
}
.adverts .adverts-content{
	flex: 0 0 50%;
	max-width: 50%;
	padding-right: 40px;
}
.adverts .img{
	flex: 0 0 50%;
	max-width: 50%;
}
.align-items-center{
	align-items: center;
}
.adverts .img img{
	width: 100%;
	display: block;
	background-repeat:no-repeat;
	background-size: cover;
}
.adverts .adverts-content .section-title p{
	font-size: 15px;
	font-weight: 400;
	line-height: 24px;
	color: #838383;
	text-align: center;
	margin: 15px 0 0px;
}
.adverts .adverts-content .adverts-box{
	flex: 0 0 100%;
	max-width: 100%;
	margin-bottom: 30px;
}
.adverts .adverts-content .adverts-box h6{
	font-size: 16px;
	font-weight: 500;
	color: #000000;
	margin: 0 0 8px;
}
.adverts .adverts-content .adverts-box .adverts-bar{
	height: 5px;
	background-color: #eeeeee;
	position: relative;
}
.adverts .adverts-content .adverts-box .adverts-bar .adverts-bar-in{
	background-color: #febd01;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
}
.adverts .adverts-content .adverts-box .adverts-bar .adverts-bar-in span{
	color: #838383;
	font-size: 16px;
	font-weight: 400;
	position: absolute;
	right: 0;
	top: -30px;
}
.adverts-btn{
	padding-top:20px;
	float: right;
}
.adverts-btn a{
	border-radius:4px;
	color:#febd01;
	border:1px solid #febd01;
	padding:12px 25px;
	text-decoration:none;
	display: inline-block;
	font-size:14px;
	text-transform:uppercase;
	font-weight:600;
	transition:all 0.5s ease;
	background-color:transparent;
}
.adverts-btn a:hover{
	background-color:#febd01;
	color:#ffffff;}

.message-text{
	background-color: #0c0c17;
	padding: 40px 15px;
}
.message-text .text{
	flex: 0 0 66.66%;
	max-width: 66.66%;
}
.message-text .text h2{
	font-size: 25px;
	color: #ffffff;
	font-weight: 700;
	margin: 0;
	padding: 0;
	line-height: 35px;
}
.message-text .button{
	flex: 0 0 33.33%;
	max-width: 33.33%;
	text-align: right;
}
.message-text .button a{
	border-radius:4px;
	color:#ffffff;
	border:1px solid #ffffff;
	padding:12px 25px;
	text-decoration:none;
	display: inline-block;
	font-size:14px;
	text-transform:uppercase;
	font-weight:600;
	transition:all 0.5s ease;
	background-color:transparent;
}
.message-text .button a:hover{
	background-color:#ffffff;
	color:#000000;
}

.contact-us{
	padding: 100px 15px;
	background-color: #f5f8fd;
}
.contact-us .section-title h1:before{
	left: 30%;
}

.contact-us .contact-form{
	background-color: #ffffff;
	flex: 0 0 100%;
	max-width: 100%;
	padding: 50px;
	border: 1px solid #eeeeee;
}
.contact-us .contact-form .text{
	flex: 0 0 100%;
	max-width: 100%;
	padding-bottom: 20px;
	margin-left: 15px;
}
.contact-us .contact-form .text h2{
	font-size: 26px;
	font-weight: 600;
	color: #000000;
	margin: 0;
	padding: 0;
}
.contact-us .contact-form .text p{
	font-size: 15px;
	font-weight: 400;
	line-height: 24px;
	color: #838383;
	margin: 0;
}
.contact-us .contact-form .space-between{
	justify-content: space-between;
}
.contact-us .contact-form .col-6{
	flex: 0 0 calc(50% - 15px);
	max-width: calc(50% - 15px);
}
.contact-us .contact-form .col-12{
	flex: 0 0 100%;
	max-width: 100%;
}
.contact-us .contact-form .form-control{
	height: 45px;
	width: 100%;
	margin-bottom: 15px;
	border: 1px solid #ced4da;
	padding: 6px 12px;
	font-size: 14px;
	font-weight: 400;
	font-family: 'Poppins', sans-serif;
}
.contact-us .contact-form textarea.form-control{
	height: 140px;
}
.contact-us .contact-form .form-control::placeholder{
	color: #838383;
}
.contact-us .contact-form .button{
	flex: 0 0 100%;
	max-width: 100%;
}
.contact-us .contact-form .button a{
	border-radius:4px;
	color:#ffffff;
	border:1px solid #ffffff;
	padding:12px 25px;
	text-decoration:none;
	font-size:14px;
	text-transform:uppercase;
	font-weight:600;
	transition:all 0.5s ease;
	background-color: #febd01;
	box-shadow:0px 10px 15px #e8e8e8;
	cursor: pointer;
}
.contact-us .contact-form .button a:hover{
	background-color:#000000;
	color:#ffffff;
}


footer{
	padding: 70px 15px;
	background-color: #0c0c17;
}
footer .logo{
	flex: 0 0 100%;
	max-width: 100%;
	text-align: center;
}
footer .social{
	flex: 0 0 100%;
	max-width: 100%;
	text-align: center;
	padding-top: 15px;
}
footer .social a{
	color: #999999;
	text-decoration: none;
	display: inline-block;
	margin: 0px 12px;
	transition: all .5s ease;
	text-decoration: none;
}
footer .social a:hover{
	color: #ffffff;
}

.copyright{
	background-color: #0c0c17;
	border-top: 1px solid #1d1d27;
	padding: 15px;
}
.copyright p{
	color: #838383;
	margin: 0;
	text-align: center;
	font-weight: 400;
	font-size: 15px;
}
.ham-burger .fa{
	font-size: 30px;
	height: 30px;
	width: 35px;
	background-color: #ffffff;
	color: #000000;
	border-radius: 3px;
	line-height: 30px;
	text-align: center;
	cursor: pointer;
	display: none;
}

@media (max-width: 991px)
{
	header,
	header.sticky
	{
		padding: 20px 50px;
		z-index: 1000;
	}
	.menu
	{
		position: fixed;
		top: 0;
		left: -75%;
		display: block;
		padding: 100px 50px;
		text-align: center;
		width: 75%;
		height: 100vh;
		background: #fff;
		transition: 0.5s;
		z-index: 999;
		border-top: 1px soild rgba(0,0,0,0.2);
	}
	.menu.active
	{
		left: 0;
	}
	header ul li a
	{
		color: #111;
		font-size: 24px;
		margin: 10px;
	}
	.toggle
	{
		width: 40px;
		height: 40px;
		background: url(../images/menu.png);
		background-position: center;
		background-repeat: no-repeat;
		background-size: 30px;
		cursor: pointer;
	}
	.toggle.active
	{
		background: url(../images/close.png);
		background-position: center;
		background-repeat: no-repeat;
		background-size: 25px;
		cursor: pointer;
	}
	header.sticky .toggle
	{
		filter: invert(1);
	}
	.liquid h3
	{
		margin-top: 150px;
	}
	.about
	{
		padding: 100px 50px 50px;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		display: flex;
	}
	.about img
	{
		margin: 50px 0 0;
		max-width: 100%;
	}
	.services
	{
		padding: 100px 50px 50px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.row
	{
		flex-direction: column;
	}
	.line
	{
		width: 200px;
	}
	.services .col h1
	{
		font-size: 25px;
	}
	.services .row .col
	{
		width: 100%;
	}
	.services .image-gallery
	{
		display: column;
	}
	.image-gallery img
	{
		width: 90%;
		flex-wrap: wrap;
		margin-bottom: 25px;
	}
	.adverts .adverts-content{
	flex: 0 0 100%;
	max-width: 100%;
	padding: 15px;
	}
	.adverts .img{
		flex: 0 0 100%;
		max-width: 100%;
	}
	.heading
	{
		font-size: 2rem;
	}
	.message-text .text{
	flex: 0 0 100%;
	max-width: 100%;
	}
	.message-text .button{
		flex: 0 0 100%;
		max-width: 100%;
		text-align: left;
		padding-top: 20px;
	}
	.contact-us .contact-form{
		padding: 40px 20px;
	}
	.contact-us .contact-form .col-6{
		flex: 0 0 100%;
		max-width: 100%;
	}
	.contact-us .row .button
	{
		margin-right: 15px;
		margin-top: 10px;
	}
}
@media (max-width: 600px)
{
	header,
	header.sticky
	{
		padding: 20px 20px;
	}
}