* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'poppins', sans-serif;
	list-style: none;
	text-decoration: none;
	scroll-behavior: smooth;
	border: none;
	outline: none;
}


a {
	color: #00007c;
	text-decoration: none;
}
	


.navbar {
	position: absolute;
	left: 0;
	top: 0;
	height: 70px;
	width: 100%;
	padding: 4px 9%;
	background: white;
	display: flex;
	color: #ffffff;
	justify-content: space-between;
	align-items: center;
	z-index: 100;
	visibility: hidden;
	opacity: 0;
	animation: show-content 1.5s linear forwards;
	animation-delay: 1.6s;
}


@keyframes show-content {
	100% {
		visibility: visible;
		opacity: 1;
	}
}

.navbar .logo {
	font-size: 30px;
	font-weight: 700;
	line-height: -80px;
}


.navbar .logo:hover {
	background: transparent;
	color: #00007c;
	box-shadow: 0 0 10px #fab114;
}


.navbar ul {
	display: flex;
	text-align: center;
}
	
.navbar ul li {
	display: inline-block;
	line-height: 80px;
	list-style: none;
	margin-left: 35px;
	position: relative;
}

.navbar ul li a {
	font-size: 20px;
	font-weight: 500;
	transition: 5s;
}


a.active,a:hover{
	color:  #fab114;
}


.navbar .navi img {
	margin-left: 30px;
	display: flex;
	line-height: 80px;
	margin-top: 15px;
	cursor: pointer;
}


.navbar .navi img:hover {
	background: transparent;
	color: #00007c;
	box-shadow: 0 0 10px #fab114;
}


.navbar ul li:hover a,
.navbar ul li:active a {
	color: #fab114;
	
}

.dropdown_menu {
	display: none;
}

.navbar ul li:hover .dropdown_menu {
	position: absolute;
	top: 100%;
	left: 0;
	display: block;
	background: #ffffff;
	
}



.dropdown_menu ul {
	display: block;
	margin: 10px;
	
}

.navbar ul li:hover .dropdown_menu ul {
	display: block;
	margin: -20px 0 20px;
}

.dropdown_menu ul li {
	width: 150px;
	padding: 10px;
	
}



.navbar ul li:hover .dropdown_menu ul li {
	width: 150px;
	padding: 5px; 
	color: #00007c;
}

.fas {
	float: right;
	margin-left: 10px;
	padding-top: 3px;
	
}


.home {
	display: flex;
	align-items: center;
	height: 100vh;
	padding: 60px 9% 0;
	color: #00007c;
	grid-gap: 50px;
}



.home-info h1 {
	font-size: 55px;
	color: #fab114;
}


.home-info h2 {
	display: inline-block;
	font-size: 32px;
	margin-top: -10px; 
	color: #00007c;
	font-family: 'poppins', sans-serif;
}


.home-info h2 span {
	position: relative;
	display: inline-block;
	color: transparent;
	-webkit-text-stroke: 2px #00007c;
	animation: display-text 16s linear infinite;
	animation-delay: calc(-4s * var(--i));
}

@keyframes display-text {
	25%,
	100% {
		display: none;
		
	}
}


.home-info h2 span::beore {
	content: attr(data-text);
	position: absolute;
	width: 0;
	border-right: 3px solid #00007c;
	color: #00007c;
	white-space: nowrap;
	overflow: hidden;
	animation: fill-text 4s linear infinite;
}


@keyframes fill-text {
	
	10%, 100% {
		width: 0;
		
	}
	
	
	70%, 90% {
		width: 100%;
		
	}
}





.home-info p {
	font-size: 16px;
	margin: 10px 0 25px;
	color: #00007c;
	align-items: center;
	font-family: 'poppins', sans-serif;
}



.home-info .btn-sci {
	display: flex;
	align-items: center;

}


.btn {
	display: inline-block;
	padding: 10px 30px;
	background: #fab114;
	border: 2px solid #fab114;
	border-radius: 40px;
	box-shadow: 0 0 10px #fab114;
	font-size: 16px;
	color: #00007c;
	font-weight: 600;
	transition: .5s;
}


.btn:hover {
	background: transparent;
	color: #fab114;
	box-shadow: none;
	
}


.home-info .btn-sci .sci {
	margin-left: 20px;
	
}



.home-info .btn-sci .sci a {
	display: inline-flex;
	padding: 8px;
	border: 2px solid #fab114;
	border-radius: 50%;
	font-size: 20px;
	color: #fab114;
	margin: 3px 8px;
	transition: .5s;
}

.home-info .btn-sci .sci a:hover {
	background: #fab114;
	color: #ffffff;
	box-shadow: 0 0 10px #fab114;
}


.home-img .img-box {
	position: relative;
	width: 32vw;
	height: 32vw;
	border-radius: 50%;
	padding: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}


.home-img .img-box::before,
.home-img .img-box::after {
	content: '';
	position: absolute;
	width: 500px;
	height: 500px;
	background: linear-gradient(transparent, transparent, transparent, #00007c);
	transform: rotate(0deg);
	animation: rotate-border 10s linear infinite;
}

.home-img .img-box::after {
	animation-delay: -5s;
}


@keyframes rotate-border {
	100% {
		transform: rotate(360deg);
	}
}


.home-img .img-box .img-item {
	position: relative;
	width: 100%;
	height: 100%;
	background: #ffffff;
	border-radius: 50%;
	border: .1px solid #ffffff;
	display: flex;
	justify-content: center;
	z-index: 1;
	overflow: hidden;

}

.home-img .img-box .img-item img {
	position: absolute;
	top: 30px;
	display: block;
	width: 29vw;
	height: 32vw;
	object-fit: cover;
	mix-blend-mode: multiply;
}


.bars-animation {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	z-index: -1;
	
}


.bars-animation .bar {
	width: 100%;
	height: 100%;
	background: gray;
	color: gray;
	transform: translateY(-100%);
	animation: show-bars .5s easy-in-out forwards;
	animation-delay: calc(.1s * var(--i));
}


@keyframes show-bars {
	100% {
		transform: translateY(0%);
	}
	
}



.video-container {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 10px;
	margin-left: -10px;
}

.footer {
	width: 100%;
	min-height: 10px;
	padding: 20px 80px;
	margin: 0;
	background: #00007c;
	text-align: center;
}


.footer p {
	color: #fab114;
	margin: 20px auto;
	padding: 20px auto;
}


.about-container {
	display: grid;
	margin-left: 3px;
	grid-gap: 5rem;
}


.about-box .heading span {
	font-size: 4.5rem;
	color: #00007c;
	font-family: poppins;
	margin-top: 80px;
	
}


.about-box p {
	font-size: 1.6rem;
	color: #00007c;
	font-family: poppins;
	margin-bottom: -10px;
}

.about-box .desc {
	margin: 2rem 0 2.5rem;
	color: #00007c;
	font-family: poppins;
}


.about-box .about-btn {
	width: 100%;
	height: 5.3rem;
	background: #fab114;
	border: .2rem solid#fab114;
	color: #00007c;
	margin-bottom: 2rem;
	border-radius: 40px;
	box-shadow: 0 0 10px;
	font-size: 16px;
	font-weight: 600;
	transition: .5s;
}


.about-box .about-btn active {
	border-color: #fab114;
	color: #fab114;
}

.about-box .about-btn:hover {
	background: transparent;
	color: #fab114;
	box-shadow: none;
	
}


.about-details {


}

.about-details active {
	
}

.about-box .heading {
	font-size: 3.5rem;
	text-align: left;
	font-family: poppins;
}



.contact-container {
	display: grid;
	margin-left: 35px;
	grid-gap: 3rem;
	
}

.contact-container .contact-box:first-child {
	align-self: center;
	
}


.contact-box h2 {
	font-size: 4.5rem;
	margin-top: 80px;
	font-family: poppins;
	color: #fab114;
}



.contact-box p {
	font-size: 1.6rem;
	font-family: poppins;
	color: #00007c;
	font-weight: 600;
}



.contact-box .desc {
	margin: 1.5rem 0 2.5rem;
}


.contact-box .contact-detail {
	display: flex;
	align-items: center;
	margin: 2rem 0;
}


.contact-box .contact-detail a {
	display: inline-flex;
	padding: 8px;
	border: 2px solid #fab114;
	border-radius: 50%;
	font-size: 20px;
	color: #fab114;
	margin: 0 8px;
	transition: .5s;
}


.contact-box .contact-detail a:hover{
	background: #fab114;
	color: #00007c;
	box-shadow: 0 0 10px #fab114;
	
}




.contact-detail a {
	display: inline-flex;
	background: #fab114;
	color: #00007c;
	font-size: 5rem;
	padding: 1.2rem;
	border-radius: 6rem;
	margin-right: 1.5rem;
}



.contact-detail i:hover {
	background: #fab114;
	color: #fab114;
	box-shadow: none;
}

.contact-detail .detail p:first-child {
	color: #fab114;
	
}


.contact-box form {
	background: #00007c;
	padding: 2.5rem 3.5rem 3.5rem;
	border-radius: 1rem;
	text-align: center;
}


.contact-box .heading span {
	font-size: 3.5rem;
	color: #fab114;

}



.contact-box .field-box {
	display: grid;
	margin-left: 28px;
	grid-gap: 2rem;
}

 
.contact-box .field-box input,
.contact-box .field-box textarea {
	padding: 1.5rem;
	background: #00007c;
	border: .15rem solid #ffffff;
	border-radius: 6rem;
	font-size: 1.6rem;
	color: #fab114;
}



.contact-box .field-box textarea {
	grid-column: 1 /-1;
	height: 26rem;
	resize: none;
}



.contact-box .field-box input:focus
.contact-box .field-box textarea:focus {
	border-color: #fab114;
}


.contact-box .btn {
	margin-top: 2rem;
	cursor: pointer;
}


.heading {
	font-size: 4.5rem;
	text-align: center;
	margin-bottom: 2rem;
	color: #fab114;
	margin-top: 60px;
	
}


.heading span {
	color: #00007c;
}

.service-container {
	display: grid;
	margin-left: auto, 30rem;
	grid-gap: 2rem;
	
}



.service-container .service-box {
	padding: 3rem 2.5rem;
	background: #fab114;
	border: .2rem solid #fab114;
	border-radius: 1rem;
	transition: .5s;
}


.service-container .service-box:hover {
	border-color: #ffffff;
	transform: scale(1.02);
	
}


.service-box .icon {
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: .5s;
}


.service-box .icon a {
	font-size: 4.5rem;
	
	
}



.service-box:hover .icon:not(asvg) {
	color: #ffffff;
	
}
	
	

.service-box .icon a {
	display: inline-flex;
	background: #ffffff;
	padding: 8px;
	border: 2px solid #fab114;
	border-radius: 50%;
	font-size: 20px;
	color: #fab114;
	margin: 0 8px;
	transition: .5s;
}


.service-box:hover .icon a {
	color: #ffffff;
}

.service-box .icon svg a {
	font-size: 3rem;
	color: #fab114;
	transform: rotate(90deg);
	margin-bottom: -30px;
	
}


.service-box .icon a:hover svg {
	transform: rotate(180deg);
}

.service-box h3 {
	font-size: 3rem;
	margin: .5rem 0 2rem;
	color: #00007c;
	font-family: poppins;
	transition: .5s;
}

.service-box:hover h3 {
	color: #ffffff;
}

.service-box p {
	font-size: 1.6rem;
	color: #00007c;
	font-family: poppins;
}



.portfolio {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	min-height: auto;
	padding-bottom: 5rem;
}



.portfolio .portfolio-row {
	display: flex;
	flex-wrap: wrap;
	grid-gap: 5rem;
}

.portfolio-row .portfoliot-column {
	flex: 1 1 40rem;
}


.portfoliot-column .heading {
	font-size: 2.5rem;
	margin: 0 0 1.5rem 2rem;
	
}


.portfoliot-column .portfolio-box {
	border-left: .2rem solid #fab114;
	
	
}


.portfolio-box .portfoliot-content {
	position: relative;
	padding-left: 2rem;
}


.portfolio-box .portfoliot-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: -1.1rem;
	width: .1rem;
	height: .1rem;
	background: #fab114;
	border-radius: 50%;
	
}


.portfoliot-content .content {
	position: relative;
	padding: 1.5rem;
	border: .2rem solid #fab114;
	border-radius: 6rem;
	margin-bottom: 2rem;
	overflow: hidden;
	
}


.portfoliot-content .content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: #fab114;
	z-index: -1;
	transition: .5s;
}


.portfoliot-content .content:hover::before {
	width: 100%;
}

.portfoliot-content .content .year {
	font-size: 1.5rem;
	color: #00007c;
	padding-bottom: .5rem;
}



.portfoliot-content .content .year a {
	padding-right: .5rem;
}



.portfoliot-content .content h3 {
	font-size: 2rem;
	color: #00007c;
	font-weight: 500;
}


.portfoliot-content .content p {
	font-size: 1.6rem;
	padding-top: .5rem;
	color: #00007c;
	font-weight: 500;
}


