* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Baloo 2', cursive;
	scroll-behavior: smooth;
}

/* Scroll TO Top Button CSS */
.scroll-button a {
	position: fixed;
	bottom: 20px;
	right: 20px;
	color: #fff;
	background: #990000;
	padding-left: 12px;
	padding-right: 12px;
	padding-top: 8px;
	padding-bottom: 3px;
	font-size: 18px;
	border-radius: 6px;
	box-shadow: rgba(0, 0, 0, 0.15);
	overflow: hidden;
	z-index: 99;
}
.scroll-button a:hover{
	color: #fff;
	background: rgb(13, 26, 50);
}

/* Custom Scroll Bar CSS */
::-webkit-scrollbar {
	width: 4px;
}

::-webkit-scrollbar:hover {
	width: 7px;
}

::-webkit-scrollbar-track {
	background: #fff;
}

::-webkit-scrollbar-thumb {
	background: #990000;
	border-radius: 5px;
	transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
	background: rgb(13, 26, 50);
}

/* Custom Scroll Bar CSS Ends */

/* Media Icons CSS */
.social-icons {
	position: fixed;
	top: 50%;
	left: 0%;
	width: 60px;
	display: flex;
	flex-direction: column-reverse;
	z-index: 100;
}

.social-icons .media-icons {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	justify-content: center;
	background-color: #E4E9F7;
	padding: 2px;
	border-radius: 6px;
	width: 50px;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
	transform: translateX(-120%);
	transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.close-btn.open~.media-icons {
	transform: translateX(-20%);
}

.social-icons .media-icons a {
	text-decoration: none;
	position: relative;
	height: 35px;
	width: 35px;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	margin: 5px;
	background: transparent;
}

.social-icons .media-icons a i {
	color: #fff;
	padding-left: 6px;
	padding-top: 5px;
	font-size: 25px;
}

.social-icons .media-icons a .tooltip {
	position: absolute;
	left: 55px;
	font-size: 14px;
	font-weight: 400;
	width: 240px;
	pointer-events: none;
	background-color: #fff;
	color: black;
	padding: 4px 8px;
	border-radius: 4px;
	transform: translateY(-25px);
	opacity: 0;
	transition: all 0.2s linear;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

a:hover .tooltip {
	opacity: 1;
	transform: translateY(0);
}

.social-icons a .tooltip::before {
	content: "";
	height: 10px;
	width: 10px;
	position: absolute;
	top: 50%;
	left: -5px;
	transform: translateY(-50%) rotate(45deg);
	background-color: #fff;
}

.close-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	height: 35px;
	width: 35px;
	color: #fff;
	font-size: 20px;
	margin-top: 20px;
	margin-left: 0px;
	background-color: #990000;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	transform: rotate(45deg);
	transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.close-btn.open {
	transform: rotate(90deg);
	background-color: rgb(13, 26, 50);
}

/* Media Icons CSS Ends*/

/* Navbar CSS */

header {
	font-family: 'Baloo 2', cursive;
	background-color: #092b2b;
	width: 100%;
	overflow: hidden;
	z-index: 998;
}
header .header-info{
	border-bottom: #ffd034 1px solid;
}

.mainNavbar {
	background-color: #092b2b;
	position: sticky;
	top: 0%;
	overflow: hidden;
	z-index: 998;
	transition: all 0.3s ease;
}

.header-item {
	padding-left: 10px;
	padding-right: 50px;
}

.header a {
	text-decoration: none;
	color: white;
	font-size: 14px;
}

.header a:hover {
	color: #ffd034;
	font-weight: bold;
}

.header i {
	color: #ffd034;
}

.header i:hover {
	color: white;
}

nav .navbar-nav .nav-item a {
	font-family: 'Baloo 2', cursive;                                  
	font-size: 20px;
	color: white;
	font-weight: 500;
}

nav .navbar-nav .nav-item a:hover {
	color: #ffd034;
	font-weight: bolder;
}

nav .navbar-nav .nav-item button {
	background-color: #990000;
	color: white;
	font-size: 22px;
	padding: 5px 10px;
}

nav .navbar-nav .nav-item button a{
	color: white;
	text-decoration: none;
}
nav .navbar-nav .nav-item button a:hover{
	color: white;
	font-weight: bold;
	text-decoration: none;
}

nav .navbar-nav .nav-item button:hover {
	background-color: black;
	color: white;
	font-weight: bold;
}

.header-address {
	display: block;
}

@media screen and (max-width:1200px) {
	.header-address {
		display: none;
	}

	.header-phone {
		position: absolute;
		left: 10%;
	}

	.header-email {
		position: absolute;
		left: 30%;
	}
}

.header-email {
	display: block;
}

@media screen and (max-width:992px) {
	.header-email {
		display: none;
	}
}

.header-phone {
	display: block;
}

@media screen and (max-width:767px) {
	.header-phone {
		display: none;
	}
}

.bi-linkedin {
	display: inline-block;
}

@media screen and (max-width:438px) {
	.bi-linkedin {
		display: none;
	}
}

.bi-twitter {
	display: inline-block;
}

@media screen and (max-width:404px) {
	.bi-twitter {
		display: none;
	}
}

.bi-instagram {
	display: inline-block;
}

@media screen and (max-width:369px) {
	.bi-instagram {
		display: none;
	}
}

@media screen and (max-width:416px) {
	.navbar-brand img {
		width: 150px;
		height: 30px;
	}
}

@media screen and (max-width:1200px) {
	nav .navbar-nav .nav-item button {
		width: 128px;
		height: 50px;
	}
}

/* Navbar CSS Ends */

/* Carousel CSS */

.mySlides {
	width: 100%;
	height: auto;
	animation: bright 5s linear infinite;
	filter: brightness(50%);
}

@keyframes bright {
	0% {
		filter: brightness(10%);
	}

	15% {
		filter: brightness(25%);
	}

	85% {
		filter: brightness(40%);
	}

	100% {
		filter: brightness(55%);
	}
}

.slider {
	width: 100%;
	height: auto;
	position: relative;
	top: 5%;
}
.slider .overlay {
	width: 100%;
}

.overlay .content img{
	position: absolute;
	top: 25%;
	left: 41%;
	width: 18%;
	align-items: center;
	justify-content: center;
}

/* .overlay .content .button{
	position: absolute;
	top:60%;	
	left:44.5%;
	width: 100%;
	align-items: center;
	justify-content: center;
} */
.slider .button button{
	padding: 8px 16px;
	border-radius: 8px;
	font-size: 25px;
	font-weight: 400;
	background: #990000;
	color: #fff;
	border: 2px solid transparent;
	cursor: pointer;
	transition: all 1s ease;
}
.slider .button button:hover{
	background: black;
	color: #fff;
}
/* @media (max-width:1380px) {
	.slider .content {
		margin-top: 220px;
	}
	.slider .content img{
		width: 300px;
		height: 320px;
	}
	.slider .button button{
		font-size: 25px;
	}
}
@media (max-width:1220px) {
	.slider .content {
		margin-top: 180px;
	}
	.slider .content img{
		width: 220px;
		height: 235px;
	}
	.slider .button button{
		font-size: 25px;
	}
}
@media (max-width:960px) {
	.slider .content {
		margin-top: 130px;
	}
	.slider .content img{
		width: 170px;
		height: 180px;
	}
	.slider .button button{
		font-size: 25px;
	}
}
@media (max-width:680px) {
	.slider .content {
		margin-top: 110px;
	}
	.slider .content img{
		width: 130px;
		height: 140px;
	}
	.slider .button button{
		padding: 4px 8px;
		font-size: 18px;
		border-radius: 5px;
	}
}
@media (max-width:505px) {
	.slider .content {
		margin-top: 90px;
	}
	.slider .content img{
		width: 110px;
		height: 115px;
	}
	.slider .button button{
		padding: 2px 6px;
		font-size: 18px;
	}
}
@media (max-width:400px) {
	.slider .content {
		margin-top: 90px;
	}
	.slider .content img{
		width: 80px;
		height: 83px;
	}
	.slider .button button{
		padding: 2px 6px;
		font-size: 14px;
	}
} */

/* Carousel CSS Ends */

/* About CSS */
.about {
	background: #E4E9F7;
	padding-bottom: 30px;
}
section {
	padding-top: 20px;
}

section .content {
	width: 80%;
	margin: 40px auto;
	font-family: 'Poppins', sans-serif;
}

.about .about-details {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

section .title {
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
}

section .title span {
	color: black;
	font-size: 55px;
	font-weight: 600;
	position: relative;
	padding-bottom: 8px;
}

section .title span::before,
section .title span::after {
	content: '';
	position: absolute;
	height: 4px;
	width: 100%;
	background: #990000;
	left: 0;
	bottom: 0;
}

section .title span::after {
	bottom: -7px;
	width: 70%;
	left: 50%;
	transform: translateX(-50%);
}

.about .about-details .left {
	width: 45%;
}

.about .left img {
	height: 400px;
	width: 400px;
	object-fit: none;
	border-radius: 12px;
}

.about-details .right {
	width: 55%;
}

section .topic {
	color: #990000;
	font-size: 40px;
	font-weight: bold;
	margin-bottom: 10px;
}

.about-details .right p {
	text-align: justify;
	color: black;
}

.about .button {
	margin: 16px 0;
}

.about .button button {
	outline: none;
	padding: 8px 16px;
	border-radius: 8px;
	font-size: 25px;
	font-weight: 400;
	width: 180px;
	font-family: 'Agency FB', sans-serif;
	background: #990000;
	color: #fff;
	border: 2px solid transparent;
	cursor: pointer;
	transition: all 0.4s ease;
}

.about .button button:hover {
	border-color: black;
	background-color: black;
	color: #fff;
}

/* About CSS Ends*/

/* Animated Counter CSS */

.counters {
background: #fff;
  min-height: 50vh;
  background-size: cover;
  background-attachment: fixed;
  padding: 0 50px;
  position: relative;
  display: flex;
  align-items: center;
}

.counters .container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	text-align: center;
	align-items: center;
	padding-bottom: 20px;
}

.counters .container .box {
	background: #E4E9F7;
	display: flex;
	justify-content: center;
	flex-direction: column;
	padding: 20px;
	border-radius: 10px;
	height: 200px;
	width: calc(100% / 4 - 20px);
	text-align: center;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
	cursor: default;
	transition: all 1s ease;
}

.counters .container .box i {
	height: 50px;
	width: 50px;
	background: #990000;
	border-radius: 50%;
	text-align: center;
	line-height: 50px;
	font-size: 18px;
	color: #fff;
	margin: 20px auto 10px auto;
	transition: all 1s ease;
}

.counters .container .box:hover {
	background-color: #990000;
	color: #fff;
}
.counters .container .box:hover i {
	background-color: #fff;
	color: #990000;
}

.counters .container .box .counter {
	font-size: 45px;

}

.counters .container .box h3 {
	font-size: 22px;
}

@media (max-width: 992px) {
	.counters .container .box {
		width: calc(100% / 2 - 20px);
		margin: 20px 0;
	}
}
@media (max-width: 690px) {
	.counters .container .box {
		width: 100%;
		margin: 20px 0;
	}
}

/* Animated Counter CSS Ends*/

/* Sevices CSS */

.services {
	background: #fff;
	padding-bottom: 30px;
}

.services .boxes {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.services .boxes .box {
	margin: 20px 0;
	width: calc(100% / 3 - 20px);
	text-align: center;
	border-radius: 12px;
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 20px;
	padding-bottom: 20px;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
	transition: all 1.5s ease;
	background: #E4E9F7;
}
.services .boxes .box .topic{
	font-size: 30px;
}
.services .boxes .box p{
	text-align: justify;
}

.services .boxes .box:hover {
	background: #990000;
	color: #E4E9F7;
}

.services .boxes .box .icon {
	height: 50px;
	width: 50px;
	background: #990000;
	border-radius: 50%;
	text-align: center;
	line-height: 50px;
	font-size: 18px;
	color: #E4E9F7;
	margin: 0 auto 10px auto;
	transition: all 1.5s ease;
}

.boxes .box:hover .icon {
	background-color: #E4E9F7;
	color: #990000;
}

.services .boxes .box:hover .topic,
.services .boxes .box:hover p {
	color: #990000;
	transition: all 1.5s ease;
}

.services .boxes .box:hover .topic,
.services .boxes .box:hover p {
	color: #fff;
}

/* Services CSS Ends*/

/* Portfolio CSS */

.portfolio {
	background: #E4E9F7;
	padding-bottom: 30px;
}

.portfolio .boxes {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.portfolio .boxes img {
	display: flex;
	margin: 20px 0;
	width: calc(100% / 4 - 20px);
	height: 250px;
	text-align: center;
	border-radius: 12px;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
	cursor: default;
	transition: all 1.5s ease;
	align-items: center;
	justify-content: center;
}
.portfolio .boxes img:hover{
	filter: brightness(40%);
}

.portfolio .button{
	display: flex;
	justify-content: center;
}
.portfolio .button button{
	outline: none;
	padding: 8px 16px;
	border-radius: 8px;
	font-size: 25px;
	font-weight: 400;
	width: 180px;
	font-family: 'Agency FB', sans-serif;
	background: #990000;
	color: #fff;
	border: 2px solid transparent;
	cursor: pointer;
	transition: all 0.4s ease;
	margin-top: 20px;
}
.portfolio .button button:hover{
	background: black;
	color: #fff;
}

/* Portfolio CSS Ends */

/* Clients CSS */

.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

.clients .slide{
	display: flex;
	background: #E4E9F7;
	height: 120px;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
	cursor: default;
	transition: all 0.8s ease;
	border-radius: 12px;
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 5px;
	padding-bottom: 5px;
	align-items: center;
	justify-content: center;
}
.clients .slide:hover{
	background: #990000;
}

.clients {
	background: #fff;
	padding-bottom: 30px;
}

.clients .boxes {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.clients .boxes .box {
	display: flex;
	margin: 20px 0;
	width: calc(100% / 4 - 20px);
	height: 170px;
	text-align: center;
	border-radius: 12px;
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 20px;
	padding-bottom: 20px;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
	cursor: default;
	transition: all 1.5s ease;
	background: #fff;
	align-items: center;
	justify-content: center;
}
.clients .boxes .box img{
	width: 100%;
}
.clients .boxes .box p{
	text-align: justify;
}

.clients .boxes .box:hover {
	background: #990000;
	color: #fff;
}

.clients .boxes .box .icon {
	height: 50px;
	width: 50px;
	background: #990000;
	border-radius: 50%;
	text-align: center;
	line-height: 50px;
	font-size: 18px;
	color: #fff;
	margin: 0 auto 10px auto;
	transition: all 0.4s ease;
}

.clients .boxes .box:hover .icon {
	background-color: #fff;
	color: #990000;
}

.clients .boxes .box:hover .topic,
.clients .boxes .box:hover p {
	color: #990000;
	transition: all 0.4s ease;
}

.clients .boxes .box:hover .topic,
.clients .boxes .box:hover p {
	color: #fff;
}
.clients .button{
	display: flex;
	justify-content: center;
}
.clients .button button{
	outline: none;
	padding: 8px 16px;
	border-radius: 8px;
	font-size: 25px;
	font-weight: 400;
	width: 180px;
	font-family: 'Agency FB', sans-serif;
	background: #990000;
	color: #fff;
	border: 2px solid transparent;
	cursor: pointer;
	transition: all 0.4s ease;
	margin-top: 20px;
}
.clients .button button:hover{
	background: black;
	color: #fff;
}

/* clients CSS Ends */

/* Responsive Queries */

@media (max-width: 1190px) {
	section .content {
		width: 85%;
	}
}

@media (max-width: 1000px) {
	.about .about-details {
		justify-content: center;
		flex-direction: column;
	}

	.about .about-details .left {
		display: flex;
		justify-content: center;
		width: 100%;
	}

	.about-details .right {
		width: 90%;
		margin: 40px 0;
	}

	.services .boxes .box {
		margin: 20px 0;
		width: calc(100% / 2 - 20px);
	}
	.clients .boxes .box {
		margin: 20px 0;
		width: calc(100% / 2 - 20px);
	}
	.portfolio .boxes img{
		margin: 20px 0;
		width: calc(100% / 2 - 20px);
		height: 100%;
	}
}

@media (max-width: 900px) {
	.about .left img {
		height: 350px;
		width: 350px;
	}
}

@media (max-width: 750px) {
	nav .navbar {
		width: 90%;
	}

	nav .navbar .menu {
		position: fixed;
		left: -100%;
		top: 0;
		background: #0E2431;
		height: 100vh;
		max-width: 400px;
		width: 100%;
		padding-top: 60px;
		flex-direction: column;
		align-items: center;
		transition: all 0.5s ease;
	}

	.navbar.active .menu {
		left: 0;
	}

	nav .navbar .menu a {
		font-size: 23px;
		display: block;
		color: #fff;
		margin: 10px 0;
	}

	nav.sticky .menu a:hover {
		color: #4070f4;
	}

	nav .navbar .media-icons {
		display: none;
	}

	nav .menu-btn,
	.navbar .menu .cancel-btn {
		display: block;
	}

	.home .text-two {
		font-size: 65px;
	}

	.home .text-three {
		font-size: 35px;
	}

	.skills .skills-details {
		align-items: center;
		justify-content: center;
		flex-direction: column;
	}

	.skills-details .text {
		width: 100%;
		margin-bottom: 50px;
	}

	.skills-details .boxes {
		justify-content: center;
		align-items: center;
		width: 100%;
	}

	.services .boxes .box {
		margin: 20px 0;
		width: 100%;
	}
	.clients .boxes .box {
		margin: 20px 0;
		width: 100%;
	}
	.clients .boxes .box img {
		width: 100%;
		height: 100%;
	}
	.portfolio .boxes img{
		margin: 20px 0;
		width: 100%;
		height: 100%;
	}

	.contact .text {
		width: 100%;
	}
}

@media (max-width: 500px) {
	.home .text-two {
		font-size: 55px;
	}

	.home .text-three {
		font-size: 33px;
	}

	.skills-details .boxes .per {
		font-size: 50px;
		color: #4070f4;
	}
}

/* Responsive Queries Ends*/

/* Footer CSS */

footer {
	position: relative;
	background: black;
	width: 100%;
	bottom: 0%;
	left: 0;
}

footer .content-company {
	max-width: 1250px;
	margin: auto;
	padding: 50px 40px 0px 40px;
}

footer .top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 50px;
}

.content-company .logo-details img {
	color: #fff;
	font-size: 30px;
	width: 200px;
	margin-bottom: 20px;
}

.top .media-icons {
	display: flex;
}

footer::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 60px;
	height: 1px;
	width: 100%;
	background: #313131;
}

.top .media-icons a {
	height: 40px;
	width: 40px;
	margin: 0 8px;
	border-radius: 50%;
	text-align: center;
	line-height: 40px;
	color: #fff;
	font-size: 20px;
	text-decoration: none;
	transition: all 0.4s ease;
}

.top .media-icons a:nth-child(1) {
	background: #4267B2;
}

.top .media-icons a:nth-child(1):hover {

	background: #990000;
}

.top .media-icons a:nth-child(2) {
	background: #25D366;
}

.top .media-icons a:nth-child(2):hover {

	background: #990000;
}

.top .media-icons a:nth-child(3) {
	background: #0077B5;
}

.top .media-icons a:nth-child(3):hover {

	background: #990000;
}

.top .media-icons a:nth-child(4) {
	background: #0077B5;
}

.top .media-icons a:nth-child(4):hover {

	background: #990000;
}

.top .media-icons a:nth-child(5) {
	background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
	;
}

.top .media-icons a:nth-child(5):hover {

	background: #990000;
}

footer .content-company {
	display: flex;
}

footer .content-company .box-company {
	width: 40%;
}

footer .content-company .link-boxes {
	width: 90%;
	display: flex;
	justify-content: space-between;
}

footer .content-company .link-boxes .box {
	width: calc(100% / 2 - 10px);
}

.content-company .box-company h4 {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
	position: relative;
}

.content-company .box-company h4::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	height: 2px;
	width: 35px;
	background: #fff;
}

.content-company .box-company p {
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	text-decoration: none;
	opacity: 0.8;
	transition: all 0.4s ease
}

.content-company .link-boxes .box .link_name {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
	position: relative;
}

.link-boxes .box .link_name::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	height: 2px;
	width: 35px;
	background: #fff;
}

.content-company .link-boxes .box li {
	margin: 6px 0;
	list-style: none;
}

.content-company .link-boxes .box li a {
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	text-decoration: none;
	opacity: 0.8;
	transition: all 0.4s ease
}

.content-company .link-boxes .box li a:hover {
	color: #990000;
	font-weight: bold;
}

.content-company .link-boxes .input-box {
	margin-right: 55px;
}

.link-boxes .input-box input {
	height: 40px;
	width: calc(100% + 55px);
	outline: none;
	border: 2px solid #AFAFB6;
	background: #fff;
	border-radius: 4px;
	padding: 0 15px;
	font-size: 15px;
	color: black;
	margin-top: 5px;
}

.link-boxes .input-box input::placeholder {
	color: black;
	font-size: 16px;
}

.link-boxes .input-box input[type="button"] {
	background: #990000;
	color: #fff;
	border: none;
	font-size: 18px;
	font-weight: 500;
	margin: 4px 0;
	cursor: pointer;
	transition: all 0.4s ease;
}

.input-box input[type="button"]:hover {
	background: rgb(13, 26, 50);
}

footer .bottom-details {
	width: 100%;
	background: black;
}

footer .bottom-details .bottom_text {
	max-width: 1250px;
	margin: auto;
	padding: 20px 40px;
	display: flex;
	justify-content: space-between;
}

.bottom-details .bottom_text span,
.bottom-details .bottom_text a {
	font-size: 14px;
	font-weight: 300;
	color: #fff;
	opacity: 0.8;
	text-decoration: none;
}

.bottom-details .bottom_text a:hover {
	opacity: 1;
	text-decoration: underline;
	color: #990000;
	font-weight: bold;
}

.bottom-details .bottom_text a {
	margin-right: 10px;
}

@media (max-width: 900px) {
	footer .content-company .link-boxes {
		flex-wrap: wrap;
	}

	footer .content-company .link-boxes .input-box {
		width: 60%;
		margin-top: 10px;
	}
}

@media (max-width: 700px) {

	.content .top .logo-details {
		font-size: 26px;
	}

	.content .top .media-icons a {
		height: 35px;
		width: 35px;
		font-size: 14px;
		line-height: 35px;
	}

	footer .content-company {
		flex-direction: column;
	}

	footer .content-company .box-company {
		width: 100%;
	}

	footer .content-company .link-boxes .box {
		width: 90%;
	}

	footer .content-company .link-boxes .input-box {
		width: 100%;
	}

	.bottom-details .bottom_text span,
	.bottom-details .bottom_text a {
		font-size: 12px;
	}
}

@media (max-width: 640px) {
	footer::before {
		bottom: 75px;
	}

	footer .content .top {
		flex-direction: column;
	}

	.content .top .media-icons {
		margin-top: 10px;
	}

	footer .content-company .link-boxes .input-box {
		width: 100%;
	}
}

/* Footer CSS Ends*/

/* Contact Us Page CSS */

.contact .contactbg {
	width: 100%;
	filter: brightness(50%);
}

.contact .content {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	margin-top: 15%;
}

.contact .content h1{
	font-family: 'Poppins', sans-serif;
	color: white;
	font-size: 80px;
	font-weight: 600;
}

/* Contact Us Page CSS Ends */