:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Roboto", sans-serif;
  --font-secondary: "Work Sans", sans-serif;
}

/* Colors */
:root {
  --color-default: #364d59;
  --color-primary: rgb(229, 214, 29);
  /*--color-secondary: rgb(46, 94, 105);*/
  --color-secondary: rgba(245, 245, 220,0.7);
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}


body {
  font-family: var(--font-default);
  color: var(--color-default);
  overflow-x: hidden !important;
  background-color: #f9f9f9;
}

a {
  color: #fff;
  text-decoration: none;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}


/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--color-secondary);
  line-height: 0;
}

.scroll-top:hover {
  background: #ffc732;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  z-index: 997;
  position: fixed;
  padding: 15px 0;
  top: 40px;
  left: 0;
  right: 0;
  color: #fff;
}

.header .logo img {
  max-height: 100px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  font-family: var(--font-primary);
}

.header .logo h1 span {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
	font-weight: bold;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--color-default);
    font-weight: 400;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    text-transform: uppercase;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #222428;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    position: relative;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    padding-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9996;
  }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background-color: var(--color-secondary);
  color: #000;
  font-size: 14px;
  padding: 80px 0 60px 0;
  position: relative;
}

.footer:before {
  content: "";
  background: var(--color-secondary);
  position: absolute;
  inset: 0;
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}

.footer .footer-content .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.footer .footer-content .footer-info h3 span {
  color: var(--color-primary);
}

.footer .footer-content .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: #000;
}

.footer .footer-content .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(0, 0, 0, 0.1);
  color: #000;
  line-height: 1;
  margin-right: 8px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .footer-content .social-links a:hover {
  background: var(--color-primary);
  text-decoration: none;
}

.footer .footer-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-content .footer-links {
  margin-bottom: 30px;
}

.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-content .footer-links ul li {
  padding: 8px 0;
}

.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-content .footer-links ul a {
  color: rgba(0, 0, 0, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
  color: #fff;
}

.footer .footer-legal .copyright {
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.footer .footer-legal .credits {
  padding-top: 4px;
  font-size: 13px;
  color: #fff;
}

.footer .footer-legal .credits a {
  color: var(--color-primary);
}


/* TOP Bar */
.topbar{
	position: relative;
	background-color: transparent;
	color: #ffffff;
	padding: 5px 0 1px 0;
	font-size: 16px;
	z-index:999;
}

.topbar ul{
	display: flex;
	list-style: none;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
}

.topbar ul li i{
	font-size: 18px;
	transition: 0.5s;
}

.topbar ul li i:hover{
	font-size: 18px;
	transform: translateY(-5px);
	transition: 0.5s;
}

/*Hero Section*/
.hero{
	position: relative;
	height: 85vh;
	width: 100vw;
	background: url("../../assets/img/homebanner.jpg");
	background-position: center;
	background-size: cover;
	margin-top: -50px;
}

.hero::after{
	content: '';
	position: absolute;
	width: 100vw;
	height: 85vh;
	background-color: rgba(0,0,0,0.3);
}

.hero p{
	position: absolute;
	top: 32vh;
	left: 100px;
	z-index: 99;
}

.hero p span:nth-of-type(1){
	font-size: 18px;
	font-weight: bold;
	text-transform: uppercase;
	color: #fff;
}

.hero p span:nth-of-type(2){
	font-size: 40px;
	font-weight: bold;
	color: #fff;	
}

.hero p span:nth-of-type(3){
	font-size: 16px;
	color: #fff;
}

.custbtn{
	border-radius: 25px !important;
	background-color: var(--color-primary);
	color: #000 !important;
	font-weight: bold;
	transition: 0.8s;
	padding: 15px 30px !important;
}

.custbtn:hover{
	border-radius: 25px !important;
	background-color: #000 !important;
	color: #fff !important;
	font-weight: bold;
	transform: translateY(-5px);
	border: 1px solid var(--color-primary);
	transition: 0.8s;
}

.custbtnlink{
	border-style: none;
	background-color: transparent;
	color: #fff !important;
	font-weight: bold;
	transition: 0.8s;
}

.custbtnlink:hover{
	color: #000 !important;
	font-weight: bold;
	transform: translateY(-5px);
	transition: 0.8s;
}

.commonsection{
	background-color: var(--color-secondary);
	padding: 40px 0;
}

section h4:nth-of-type(1){
	color: #000;
}

.introimg{
	width: 100%;
	border-radius: 5px;
}

.youcandoitpara{
	color: #000;
}

.servicesCard .card-body p{
	height: 130px;
	transition: 0.5s;
}

.servicesCard img{
	height: 200px;
}

.servicesCard:hover{
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	transition: 0.5s;
}

/*
.otherpagestop{
	width: 100%; 
	min-height: 20vh;
	max-height:80vh;
	margin-top: -50px;
}
*/

.otherpagestop{
	position: relative;
	height: 65vh;
	width: 100vw;
	background: url("../../assets/img/otherpages1.png");
	background-position: center;
	background-size: cover;
	margin-top: -50px;
}

.otherpagestop::after{
	content: '';
	position: absolute;
	width: 100vw;
	height: 65vh;
	background-color: rgba(0,0,0,0.3);
}

.otherpagestop p:nth-of-type(1){
	position: absolute;
	font-size: 18px;
	color: #fff;
	top: 32vh;
	left: 100px;
	z-index: 99;
}

.otherpagestop p{
	width: 100%;
}

.otherpagestop p span:nth-of-type(1){
	font-size: 50px;
	font-weight: bold;
}

.otherpagestop p span:nth-of-type(2){
	font-size: 20px;
	font-weight: bold;
	float: right;
    margin-right: 250px;
}

.otherpagestop p a:hover{
	color: #fff
}

.contactform div label span::after{
	content: " *";
	color: rgba(255,0,0,0.7);
}



/*Mobile Screen Css*/
@media (max-width: 1279px) {
	.homebanner{
		overflow-x: hidden !important;
	}
	
	.topbar{
		display: none;
	}
	
	.header{
		top: 0;
	}
	
	.hero{
		height: 80vh;
	}
	
	.hero::after{
		content: '';
		position: absolute;
		height: 80vh;
		background-color: rgba(0,0,0,0.3);
	}
	
	.hero p{
		position: absolute;
		top: 20vh;
		left: 20px;
		z-index: 99;
	}

	.hero p span:nth-of-type(1){
		font-size: 18px;
		font-weight: bold;
		text-transform: uppercase;
		color: #fff;
	}

	.hero p span:nth-of-type(2){
		font-size: 40px;
		font-weight: bold;
		color: #fff;	
	}

	.hero p span:nth-of-type(3){
		font-size: 16px;
		color: #fff;
	}
	
	.servicesCard img{
		height: 250px;
	}
	
	.otherpagestop{
		height: 50vh;
	}
	
	.otherpagestop::after{
		content: '';
		position: absolute;
		height: 50vh;
		background-color: rgba(0,0,0,0.3);
	}
	
	.otherpagestop p:nth-of-type(1){
		position: absolute;
		font-size: 18px;
		color: #fff;
		top: 28vh;
		left: 30px;
		z-index: 99;
		width: 80%;
	}

	.otherpagestop p span:nth-of-type(1){
		font-size: 50px;
		font-weight: bold;
	}

	.otherpagestop p span:nth-of-type(2){
		font-size: 20px;
		font-weight: bold;
		margin-right: 0;
	}
}