:root {
  --blue: #1988b5;
  --white: #ffffff;
  --orange: #c75a22;
  --paragraph: #333333;
  --black: #000000;
  --gray: #f7f9fa;
  --lightGray: #fefbfbd1;
  --darkBlue: #030f27;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 24px;
  color: var(--paragraph);
  font-weight: 400;
  background: #fff;
}

/* TYPOGRAPHY START */

ul {
  margin-bottom: 0px;
  padding-left: 0px;
}

a {
  text-decoration: none;
  transition: .5s;
  color: var(--orange);
  display: inline-flex;
}

a:focus,
a:hover {
  text-decoration: none;
  outline: 0;
  color: var(--blue);
}

h1 {
  font-size: 79px;
  font-weight: 700;
  line-height: 90px;
  color: var(--black);
  margin-bottom: 20px;
}

h2 {
  font-size: 40px;
  line-height: 52px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 20px;
}

h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 10px;
}

h4 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 10px;
}

.container {
  max-width: 1230px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  height: 45px;
  min-width: 170px;
  padding: 5px 20px;
  border-radius: 30px;
  cursor: pointer;
}

.btn i{
  font-size: 12px;
}

.btn-custom {
  background: var(--blue);
  border: 1px solid var(--blue);
  color: var(--white);
}

.btn-secondry-line {
  background: var(--white);
  border: 1px solid var(--orange);
  color: var(--orange);
}

.btn:hover,
.btn:focus {
  outline: 0px;
  box-shadow: none;
  text-decoration: none;
}

.btn-custom:hover,
.btn-custom:focus {
  background: var(--darkBlue);
  border-color: var(--darkBlue);
  color: var(--white);
}

.btn-secondry-line:hover,
.btn-secondry-line:focus {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.pt-6 {
  padding-top: 60px !important;
}

.pb-6 {
  padding-bottom: 60px !important;
}

.py-6 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.mt-6 {
  margin-top: 60px !important;
}

.mb-6 {
  margin-bottom: 60px !important;
}

.py-30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.px-200 {
  padding: 0px 20%;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.text-orange {
  color: var(--orange) !important;
}

.text-blue {
  color: var(--blue) !important;
}

.text-white {
  color: var(--white) !important;
}

.orange-bg {
  background-color: var(--orange) !important;
}

.white-bg {
  background-color: var(--white) !important;
}

.grey-bg {
  background-color: var(--gray) !important;
}

.blue-bg {
  background-color: var(--blue) !important;
}

.darkBlue-bg {
  background-color: var(--darkBlue) !important;
}

.waight-300 {
  font-weight: 300 !important;
}

.waight-400 {
  font-weight: 400 !important;
}

.waight-600 {
  font-weight: 600 !important;
}

.waight-700 {
  font-weight: 700 !important;
}

.pointer {
  cursor: pointer;
}

.radius10 {
  border-radius: 10px !important;
}

.px-100 {
  padding-left: 100px !important;
  padding-right: 100px !important;
}

.px-200 {
  padding-left: 200px !important;
  padding-right: 200px !important;
}

.minHeight200 {
  min-height: 180px !important;
}

/* TYPOGRAPHY END */

/* HEADER START */

header {
  z-index: 999;
  background: var(--white);
  box-shadow: 0px 0px 1px #ccc;
  padding: 10px 0px;
  transition: .5s;
}

.navbar-left {
  display: flex;
  align-items: center;
}

.location-filter {
  display: inline-flex;
  font-size: 16px;
  color: var(--black);
  font-weight: 600;
  border-left: 1px solid var(--black);
  height: 55px;
  justify-content: center;
  align-items: center;
}

.location-filter:hover {
  cursor: pointer;
  color: var(--blue);
}

.custom-navbar .container-fluid {
  padding: 0px 15px;
}

.navbar-brand>img {
  max-width: 110px;
  transition: .5s;
}

.navbar-brand.smallLogo>img {
  max-width: 64px !important;
}

.custom-navbar .navbar-collapse {
  flex-grow: 0;
}

.custom-navbar .nav-link {
  font-size: 15px;
  color: var(--black);
  font-weight: 600;
  padding: 25px 10px !important;
  margin: 0px 10px !important;
  transition: .5s;
}

.custom-navbar .nav-link.active {
  color: var(--black);
}

.custom-navbar .navbar-nav .nav-link:hover,
.custom-navbar .navbar-nav .nav-link.active {
  color: var(--orange);
  cursor: pointer;
}

.right-nav-info {
  display: flex;
  gap: 8px;
  align-items: center;
}

.custom-navbar .dropdown-toggle::after {
  display: inline-block;
  margin-left: 10px;
  vertical-align: 2px;
}

.custom-navbar .dropdown-menu {
  min-width: 220px;
  max-width: 250px;
  border-radius: 0px;
  margin-top: 0px;
  padding: 5px 0px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.10);
  border-color: #f3f3f3;
}

.custom-navbar .dropdown-item {
  font-size: 14px;
  color: var(--black);
  font-weight: 500;
  padding: 6px 15px !important;
}

.custom-navbar .dropdown-item:hover {
  color: var(--orange);
}

header.sticky {
  position: fixed;
  top: 0px;
  width: 100%;
  padding: 6px 0px;
}

header.sticky .navbar-brand > img {
  max-width: 80px;
}

header.sticky .custom-navbar .nav-link {
  padding: 15px 10px !important;
}

/* HEADER END */

/* HOME PAGE CSS START */

/* SLIDER CSS START */

.slider-wrapper {
  background: url('../images/slider-bg-1.jpg') no-repeat top center;
  padding: 100px 0px;
  height: 650px;
  background-size: cover;
  display: flex;
  align-items: center;
}

.slider-content p {
  font-size: 20px;
  line-height: 34px;
  padding: 0px 15%;
}

.slider-content .btn-custom:hover,
.slider-content .btn-custom:focus {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--black);
}

/* SLIDER CSS END */

.headText {
  font-size: 16px;
  display: block;
  margin-bottom: 10px;
}

.heading-wrap p {
  font-size: 16px;
  line-height: 26px;
}

.about-content ul li + li {
  margin-top: 15px;
}

.service-items {
  background-color: #f7f9fa;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #e7e7e7;
  text-align: center;
  margin: 15px 0px;
  transition: .3s;
  min-height: 285px;
}

.service-items .service-icon {
  display: flex;
  width: 60px;
  margin: 0px auto 20px;
}

.service-items:hover {
  background: var(--darkBlue);
}

.service-items:hover h3 {
  color: var(--white)
}

.service-items:hover p {
  color: #ffffffd1;
}

.work-slider .slick-list {
  padding: 0px 14% 0px 0px !important;
}

.work-box+.work-box {
  margin-left: 30px;
}

.work-box {
  overflow: hidden;
  position: relative;
}

.work-content {
  position: absolute;
  left: 0px;
  top: 100%;
  width: 100%;
  height: 100%;
  background: #c75a22d6;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  transition: .3s;
}

.work-content h3 {
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--white)
}

.work-content p {
  color: var(--white);
}

.work-content a,
.work-content a:hover {
  font-weight: 500;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-items a{
  font-weight: 500;
  display: flex;
  color: var(--paragraph); 
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.service-items:hover a{
color: var(--orange);
}

.work-content a i,
.service-items a i {
  font-size: 11px;
}

.work-box:hover .work-content {
  top: 0;
}

.work-box img {
  transition: .5s;
  height: 400px;
  width: 100%;
  object-fit: cover;
}

.work-box:hover img {
  transform: scale(1.2);
}

.counter-wrapper {
  border-radius: 12px;
  padding: 20px 50px;
  background: #030f27;
}

.counter-item {
  padding: 25px 20px;
  position: relative;
  padding-left: 90px;
}

.counter-item .counterIcon {
  position: absolute;
  left: 0px;
  top: 27px;
  width: 65px;
  height: 65px;
}

.counter-item .count-number {
  color: var(--white);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 39px;
}

.our-clients-slider .slick-slide img {
  display: block;
  margin: 0px auto;
}

.about-image img {
  border-radius: 16px;
}

/* HOME PAGE CSS END */


/* FOOTER START */

footer {
  background: var(--blue);
  border-top: 1px solid #9494944a;
}

.footer-logo {
  max-width: 160px;
  margin-bottom: 25px;
}

.footer-content p {
  line-height: 24px;
  margin-bottom: 15px;
  color: var(--lightGray);
}

.social-media ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.social-media ul li a {
  color: var(--lightGray);
  display: flex;
  font-size: 20px;
}

.footer-content h4,
.footer-link h4,
.footer-rightbox h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--white);
}

.footer-address li {
  color: var(--lightGray);
  display: flex;
  position: relative;
  padding: 6px 0px;
  padding-left: 25px;
}

.footer-address li span {
  font-size: 14px;
  width: 20px;
  text-align: center;
  position: absolute;
  left: 0px;
}

.footer-address li a {
  color: var(--lightGray);
  text-decoration: underline;
}

.footer-address li a:hover {
  color: var(--blue);
}

.footer-link h4,
.footer-rightbox h4 {
  margin-bottom: 20px;
}

.footer-link ul li+li {
  margin-top: 10px
}

.footer-link ul li a {
  font-size: 14px;
  color: var(--lightGray);
  display: block;
}

.footer-link ul li a:hover,
.social-media ul li a:hover {
  color: var(--blue)
}


.footer-bottom {
  border-top: 1px solid #9494944a;
  padding: 15px 0px;
  margin-top: 50px;
}

.footer-bottom p {
  margin-bottom: 0px;
  font-size: 12px;
  font-weight: 500;
  color: var(--lightGray);
}


/* FOOTER END */


.scrollDown {
  width: 42px;
  height: 54px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
  border: 2px solid var(--orange);
  color: var(--orange);
  font-size: 16px;
  animation: arrowdown 1.5s linear infinite alternate;
  transform: translateY(10px);
}

.scrollDown:hover{
  background: var(--orange);
  color: var(--white);
}

@keyframes arrowdown {
  from { transform: translateY(0px);}
  to { transform: translateY(12px);}
}

.works-wrapper {
  padding-bottom: 150px !important;
}

.contactUs-wrtapper {
  margin-top: -85px;
}

.contactUs-wrtapper .btn-secondry-line{
  border-color: var(--white);
}

.contactUs-wrtapper .btn-secondry-line:hover{
  border-color: var(--orange);
}

.inner-wrapper h1 {
  font-size: 50px;
  margin-bottom: 10px;
  position: relative;
}

.inner-wrapper h1::after {
  content: '';
  background: var(--blue);
  height: 4px;
  width: 70px;
  display: inline-block;
  margin: 14px auto;
  position: absolute;
  bottom: -12px;
  left: 50%;
  margin-left: -35px;
  border-radius: 4px;
}

.project-item {
  border-radius: 6px;
  overflow: hidden;
  margin: 12px 0px;
  box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.25);
  position: relative;
}

.project-item::before {
  content: '';
  background: #1988b5d1;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  opacity: 0;
  transition: 2s;
}

.project-item img {
  height: 340px;
  width: 100%;
  object-fit: cover;
  transition: 1s;
}

.project-item:hover img{
transform: scale(1.1);
}

.project-item:hover::before{
  opacity: 1;
  z-index: 99;
}

.project-wrap .nav.nav-pills {
  justify-content: center;
  margin-bottom: 25px;
}

.project-wrap .nav.nav-pills .nav-link {
  background: var(--gray);
  color: var(--darkBlue);
  padding: 10px 20px;
  margin: 4px 6px;
  border-radius: 6px;
  min-width: 110px;
  text-align: center;
  font-size: 16px;
}

.project-wrap .nav.nav-pills .nav-link.active {
  background: var(--orange);
  color: var(--white);
  font-weight: 600;
}

.contact-info-box {
  display: flex;
  flex-direction: column;
  background: var(--gray);
  padding: 40px 25px;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  box-shadow: 0px 15px 20px -5px rgba(0, 0, 0, 0.04);
  border-radius: 6px;
  min-height: 225px;
  font-size: 14px;
  line-height: 26px;
  margin-bottom: 24px;
  border: 1px solid #ccc3;
}

.contact-info-box span {
  background: var(--blue);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  font-size: 26px;
  margin-bottom: 20px;
}

.contact-info h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 46px;
  margin-bottom: 35px;
}

.custom-form .form-control,
.custom-form .form-control:focus,
.custom-form .form-select,
.custom-form .form-select:focus {
  height: 45px;
  font-size: 14px;
  color: #000;
  border: 1px solid #cccccc70;
  box-shadow: none;
  outline: 0;
}

.custom-form textarea.form-control {
  min-height: calc(1.5em + .75rem + calc(var(--bs-border-width) * 2));
  height: auto !important;
}

.map-wrap {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0px 10px 20px -10px rgba(0, 0, 0, 0.25);
}


.team-box {
  box-shadow: 0px 10px 20px -10px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  overflow: hidden;
  margin: 12px 0px;
}

.team-box figcaption {
  padding: 15px 20px;
}

.team-box figcaption h3 {
  font-size: 18px;
  margin-bottom: 2px;
  font-weight: 600;
}

.team-box figcaption p {
  margin-bottom: 0px;
}

.inner-content h3 {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
}

.inner-content p + h3,
.inner-content p + h4{
	margin-top:30px;
} 

.about-content ul li + li,
.inner-content ul li + li{
  margin-top: 12px;
}

.inner-content ul li b {
  font-weight: 600;
}