/**=========================
	START BODY
=========================**/
/* CSS Reset and Base Styles from index.html */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

::selection {
  color: #191a1d;
  background-color: #f2b90c;
}
body {
  margin: 0px;
  padding: 0px;
  color: #838486;
  font-family: "Roboto", sans-serif; /* Original from style.css */
  font-size: 16px;
  line-height: 1.6; /* From index.html */
}

/* Font loading optimization from index.html */
.fonts-loaded body {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

/**=========================
	END BODY
=========================**/

/**=========================
	START COMMON
=========================**/
a {
  color: #191a1d;
  text-decoration: none;
  outline: none;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
a:hover {
  text-decoration: none;
  outline: none;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

p {
  color: #666;
  line-height: 26px; /* Original from style.css */
  margin-bottom: 15px; /* From index.html */
  line-height: 1.6; /* From index.html */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif; /* Original from style.css */
  font-weight: 600; /* From index.html */
  line-height: 1.2; /* From index.html */
  margin: 0 0 1rem 0; /* From index.html */
}

/* Typography with consistent sizing from index.html */
.fonts-loaded h1,
.fonts-loaded h2,
.fonts-loaded h3,
.fonts-loaded h4,
.fonts-loaded h5,
.fonts-loaded h6 {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

h1 {
  font-size: 2.5rem;
  min-height: 3rem;
}
h2 {
  font-size: 2rem;
  min-height: 2.4rem;
}
h3 {
  font-size: 1.75rem;
  min-height: 2.1rem;
}
h4 {
  font-size: 1.5rem;
  min-height: 1.8rem;
}
h5 {
  font-size: 1.25rem;
  min-height: 1.5rem;
}

blockquote {
  color: #666;
  font-style: italic;
  border-left: 2px solid #07105b;
  font-size: 100%;
  padding: 20px;
  background-color: #f9f9f9;
  margin-bottom: 30px;
}

/* Loader */
.loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-color: #fff;
  text-align: center;
}
.loader img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

/* bg */
.bg-blue,
.btn.bg-blue {
  background-color: #07105b;
  border-color: #07105b;
}
.btn.bg-blue:hover {
  background-color: #07105b;
  border-color: #07105b;
}
.bg-yellow {
  /* From index.html */
  background-color: #f2b90c;
  color: #07105b;
}
.btn.bg-yellow {
  /* From index.html */
  background-color: #f2b90c !important;
  border-color: #f2b90c !important;
  color: #07105b !important;
}
.btn.bg-yellow:hover {
  background-color: #07105b;
  border-color: #07105b;
  color: #191a1d;
}
.bg-black,
.btn.bg-black {
  background-color: #080808;
  border-color: #060607;
}
.btn.bg-black:hover {
  background-color: #26272a;
  border-color: #26272a;
}
.bg-white-default {
  /* From index.html */
  background-color: #fff;
  color: #07105b;
  border: 2px solid #fff;
}
.btn.bg-white-default {
  /* From index.html */
  background-color: #fff;
  border-color: #eee;
  color: #191a1d;
}
.btn.bg-white-default:hover {
  background-color: #07105b;
  border-color: #eee;
  color: #fff;
}
.bg-blue-light {
  background-color: rgba(31, 123, 221, 0.07);
}

/* btn */
.btn {
  border-radius: 0px;
  padding: 8px 25px;
  font-size: 16px;
  color: #fff;
  display: inline-block; /* From index.html */
  font-weight: 500; /* From index.html */
  text-decoration: none; /* From index.html */
  border: 1px solid transparent; /* From index.html */
  cursor: pointer; /* From index.html */
  transition: all 0.3s ease; /* From index.html */
  text-align: center; /* From index.html */
  min-height: 40px; /* From index.html */
  line-height: 1.5; /* From index.html */
}
.btn:hover,
.btn:active,
.btn:focus,
.btn.focus,
.btn:disabled,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  color: #fff;
  outline: 0 !important;
  box-shadow: 0 0 0 0 !important;
}
.btn-sm {
  padding: 4px 12px;
  min-height: 32px; /* From index.html */
}
.btn-none,
.btn-none:hover,
.btn-none:active,
.btn-none:focus {
  background-color: transparent;
  outline: 0;
  border: 0;
}
.btn-block {
  /* From index.html */
  width: 100%;
  display: block;
}

/* colors */
.color-blue {
  color: #07105b;
}
.color-yellow {
  color: #f2b90c;
}

/* margin */
.mt-10px {
  margin-top: 10px;
}
.mt-15px {
  margin-top: 15px;
}
.mt-20px {
  margin-top: 20px;
}
.mt-30px {
  margin-top: 30px;
}
.mb-10px {
  margin-bottom: 10px;
}
.mb-15px {
  margin-bottom: 15px;
}
.mb-20px {
  margin-bottom: 20px;
}
.mb-30px {
  margin-bottom: 30px;
}
.ml-10px {
  margin-left: 10px;
}
.ml-15px {
  margin-left: 15px;
}
.ml-20px {
  margin-left: 20px;
}
.ml-30px {
  margin-left: 30px;
}
.mr-10px {
  margin-right: 10px;
}
.mr-15px {
  margin-right: 15px;
}
.mr-20px {
  margin-right: 20px;
}
.mr-30px {
  margin-right: 30px;
}

/* padding */
.ptb-80px {
  padding: 80px 0px !important;
}
.pt-80px {
  padding-top: 80px !important;
}
.pb-50px {
  padding-bottom: 50px !important;
}
.pb-80px {
  padding-bottom: 80px !important;
}

/* card */
.card {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.07);
  border: 0px;
  margin: 0px;
  padding: 30px;
  border-radius: 0;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  display: inline-block;
  width: 100%;
}
.card:hover {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}
.card-icon {
  margin-bottom: 20px;
}
.card-icon i {
  text-align: center;
  margin: 0px auto;
  width: 60px;
  height: 60px;
  background-color: #07105b;
  color: #fff;
  display: inline-block;
  font-size: 40px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.card:hover .card-icon i {
  transform: rotate(360deg) scaleX(-1);
  -webkit-transform: rotate(360deg) scaleX(-1);
  -moz-transform: rotate(360deg) scaleX(-1);
}

/* model */
.modal-content {
  border-radius: 0;
}

/* heading icon */
.heading-icon {
  position: relative;
  display: inline-block;
  min-height: 1.5rem; /* From index.html */
}
.heading-icon:before {
  content: "\F0E2"; /* Original from style.css */
  font-family: "Material Design Icons";
  font-size: 100%;
  margin: 0px 7px;
}
/* Override for heading-icon:before from index.html */
#about-us .heading-icon:before,
#reviews .heading-icon:before,
#services-items .heading-icon:before,
#our-projects .heading-icon:before,
#recent-projects .heading-icon:before {
  content: "✓";
  margin-right: 7px;
}

/* section heading */
.section-start-col {
  margin: 0px auto;
  margin-top: -6px;
  text-align: center;
  padding-bottom: 40px;
  display: inline-block;
  min-height: 100px; /* From index.html */
  width: 100%; /* From index.html */
}
.section-start-btn .btn {
  margin: 15px 0px;
}

/* form control */
.form-control {
  padding: 8px 25px;
  font-size: 16px;
  height: calc(1.5em + 0.75rem + 6px);
  border-radius: 0;
}
.form-control:focus {
  color: #07105b;
}
.form-control:focus,
.form-control:active,
.form-control:hover {
  border-color: #07105b;
  box-shadow: 0 0 0 0;
  transition: none;
}
.col-form-control {
  padding-left: 10px;
  padding-right: 10px;
}
.form-group {
  margin-bottom: 20px;
}

/* item col */
.item-col:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  background-color: #fff;
  opacity: 0.4;
}
.item-col:last-child:after {
  display: none;
}

/* magnificPopup */
.mfp-content {
  animation: mfp_delay_open 2s;
  -webkit-animation: mfp_delay_open 2s;
  -o-animation: mfp_delay_open 2s;
}

/* Collapse */
.collapse-btn i {
  position: absolute;
  right: 20px;
  top: 2px;
  color: #1f7bdd;
}
.collapse-btn button[aria-expanded="true"] i:before {
  content: "\f374";
  color: #fff;
}
.collapse-head {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.07);
  margin-bottom: 20px;
}
.collapse-head p {
  margin-bottom: 0;
  padding: 15px 20px;
}
.collapse-head button {
  color: #07105b;
  background-color: #fff;
  width: 100%;
  display: inline-flex;
  padding: 8px 25px;
  position: relative;
}
.collapse-head button:hover {
  cursor: pointer;
}
button[aria-expanded="true"] {
  background-color: #07105b;
  color: #fff;
}

/* hover effets */
.hover-eff-warp {
  position: relative;
  width: 100%;
  margin: auto;
  aspect-ratio: 4 / 3; /* From index.html */
  overflow: hidden; /* From index.html */
  border-radius: 10px; /* From index.html */
  margin-bottom: 30px; /* From index.html */
}
.hover-eff-warp:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}
.hover-eff-warp:hover:before {
  content: "";
  background-color: #191a1d;
  opacity: 0.75;
}
.hover-eff-content {
  position: absolute;
  text-align: center;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  padding: 30px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.hover-eff-content ul {
  padding: 0px;
}
.hover-eff-content ul li {
  margin: 0px 5px;
  display: inline-block;
}
.hover-eff-content ul li,
.hover-eff-content ul li a,
.hover-eff-content i,
.hover-eff-content h5 {
  color: #fff;
}
.hover-eff-content h5 {
  margin: 0px;
}
.hover-eff-content ul li a i {
  font-size: 24px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.hover-eff-content ul li a:hover i {
  color: #f2b90c;
}
.hover-eff-warp:hover .hover-eff-content {
  top: 50%;
  left: 50%;
  opacity: 1;
}
.hover-eff-bottom {
  top: 80%;
}
.hover-eff-top {
  top: 20%;
}
.hover-eff-left {
  left: 20%;
}
.hover-eff-right {
  left: 80%;
}

/* social media icons */
.share-social {
  margin: 0px;
  margin-bottom: 30px;
  padding: 0px;
  text-align: right;
}
.share-social li {
  margin: 0px;
  padding: 0px;
  display: inline-block;
}
.share-social li a i {
  text-align: center;
  margin: 0px auto;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #07105b;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.share-social li a:hover i {
  background-color: #191a1d;
}

/* sidebar */
.sidebar-col {
  margin-bottom: 30px;
}
.sidebar-col h4 {
  margin-bottom: 15px;
}
.sidebar-col .list-style ul {
  margin: 0;
  padding: 0;
}
.sidebar-col .list-style ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 16px;
}
.sidebar-col .list-style ul li:last-child {
  margin-bottom: 0;
}
.sidebar-col .list-style ul li a:before {
  content: "";
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
}
.sidebar-col .list-style ul li a:hover {
  padding-left: 17px;
}
.sidebar-col .list-style ul li a:hover:before {
  content: "\F374";
  position: absolute;
  left: 13px;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  font-family: "Material Design Icons";
}
.sidebar-col .form-control-group {
  position: relative;
}
.sidebar-col .form-control-group .form-control {
  padding-right: 40px;
}
.sidebar-col .form-control-group .form-control-icon {
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
}
.sidebar-col .sidebar-helpcare {
  background-color: #07105b;
  text-align: center;
}
.sidebar-col .sidebar-helpcare,
.sidebar-col .sidebar-helpcare p,
.sidebar-col .sidebar-helpcare:hover h5 {
  color: #fff !important;
}
.sidebar-col .sidebar-helpcare h3 {
  margin-bottom: 0px;
}
.sidebar-col .sidebar-helpcare i {
  font-size: 100%;
}

.sidebar-col .sidebar-tags ul {
  margin: 0px;
  padding: 0px;
}
.sidebar-col .sidebar-tags ul li {
  display: inline-block;
  margin-bottom: 4px;
}
.sidebar-col .sidebar-tags ul li a {
  font-size: 12px;
}
.sidebar-col .sidebar-recent-post {
  margin-bottom: 20px;
}

/* pagination */
.pagination {
  margin-top: 10px;
  margin-bottom: 30px;
}
.pagination .page-link {
  padding: 8px 12px;
  color: #07105b;
}
.pagination .page-link,
.pagination .page-item,
.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
  border-radius: 0px;
}
.pagination .page-item:focus,
.pagination .page-item:active,
.pagination .page-item:hover,
.pagination .page-link:focus,
.pagination .page-link:active,
.pagination .page-link:hover {
  box-shadow: 0 0 0 0;
  outline: 0;
  transition: inherit;
}
.pagination .page-item.active .page-link {
  background-color: #07105b;
  border-color: #07105b;
}

/* Utility Classes from index.html */
.d-flex {
  display: flex !important;
}
.align-items-center {
  align-items: center !important;
}
.text-center {
  text-align: center !important;
}
.w-100 {
  width: 100% !important;
}
.w-50 {
  width: 50% !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.m-0 {
  margin: 0 !important;
}
.p-0 {
  padding: 0 !important;
}
.float-left {
  float: left;
}
.float-right {
  float: right;
}

/* Hide elements that will be shown with JavaScript from index.html */
.carousel-control-prev,
.carousel-control-next,
.carousel-indicators {
  display: none;
}

/* Animation classes for compatibility from index.html */
.animated {
  animation-duration: 1s;
}
.bounceInLeft,
.bounceInRight,
.fadeInUp {
  opacity: 1;
}

.carousel-control-prev,
.carousel-control-next {
  display: none !important; /* Ensure it's hidden by default */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

/**=========================
	END COMMON
=========================**/

/**=========================
	START LAYOUT & GRID
=========================**/
/* Container and Grid System from index.html */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-12,
.col-sm-3,
.col-sm-9 {
  position: relative;
  width: 100%;
  padding: 0 15px;
}

@media (min-width: 992px) {
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 576px) {
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
}
/**=========================
	END LAYOUT & GRID
=========================**/

/**=========================
	START TOP HEADER
=========================**/
#top-header {
  min-height: 60px; /* From index.html */
  display: flex; /* From index.html */
  align-items: center; /* From index.html */
  color: white; /* From index.html */
}
#top-header .navbar {
  width: 100%;
  padding: 0;
  display: inline-block;
}
#top-header button.navbar-toggler {
  background-color: #07105b;
  outline: 0;
  border: 0;
  padding: 4px 12px;
  border-radius: 0;
  font-size: 100%;
  color: #fff;
  line-height: 1.5;
  width: 92%;
}
#top-header button.navbar-toggler i {
  color: #fff;
  margin-right: 5px;
}
#top-header button.navbar-toggler[aria-expanded="true"] {
  margin-bottom: 10px;
  background-color: #fff;
}
#top-header button[aria-expanded="true"],
#top-header button[aria-expanded="true"] i:before {
  color: #191a1d;
}
#top-header button[aria-expanded="true"] i:before {
  content: "\F156";
}
#top-header ul {
  margin: 0px;
  padding: 0px;
}
#top-header li {
  display: inline-block;
  margin-right: 5px;
}
#top-header li a {
  color: #fff;
}
#top-header li a:hover {
  color: #f2b90c;
}
#top-header .btn {
  color: #191a1d;
}

#message-banner {
  /* From index.html */
  background-color: #07105b;
  padding: 0.5em 0;
  min-height: 60px;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
}

#message-list {
  /* From index.html */
  position: relative;
  height: 60px;
  overflow: hidden;
}

.message-list-item {
  /* From index.html */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out;
}

.message-list-item.active {
  /* From index.html */
  transform: translateY(0);
}

.message-list-item.exit {
  /* From index.html */
  transform: translateY(-100%);
}

.message-list-item > div {
  /* From index.html inline style */
  margin-bottom: 0.25em;
  font-size: 1.17em;
  font-weight: 700;
  color: white;
}

.message-list-item > p {
  /* From index.html inline style */
  color: white;
  margin: 0;
}

#message-banner a {
  /* From index.html */
  color: #fcf7f9;
  text-decoration: underline;
}
/**=========================
	END TOP HEADER
=========================**/

/**=========================
	START HEADER
=========================**/
#header {
  margin: 0px 0px;
  padding: 0px 0px;
  min-height: 80px; /* From index.html */
  display: flex; /* From index.html */
  align-items: center; /* From index.html */
  background: white; /* From index.html */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* From index.html */
}
#header.header-fixed {
  position: fixed;
  z-index: 999;
  background-color: #fff;
  width: 100%;
  top: 0;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.07);
  animation: 1s menuFix;
  -webkit-animation: 1s menuFix;
  -o-animation: 1s menuFix;
  -moz-animation: 1s menuFix;
}
#header .logo {
  text-align: left;
}
#header .navbar {
  padding: 0px;
  min-height: 80px; /* From index.html */
  width: 100%; /* From index.html */
  display: flex; /* From index.html */
  justify-content: space-between; /* From index.html */
  align-items: center; /* From index.html */
}
#header .navbar-brand {
  /* From index.html */
  width: 150px;
  height: 60px;
  flex-shrink: 0;
  display: block;
}

#header .navbar-brand img {
  /* From index.html */
  width: 150px;
  height: 60px;
  object-fit: contain;
}

#header .navbar-nav {
  /* From index.html */
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10px;
}

#header .nav-item {
  position: relative;
  display: flex; /* From index.html */
  align-items: center; /* From index.html */
}
#header .nav-item.active a,
#header .nav-item a:hover {
  color: #07105b;
}
#header .nav-link {
  margin-top: 30px;
  margin-bottom: 30px;
  margin-left: 30px;
  margin-right: 15px;
  padding: 0px;
  font-weight: 500;
  color: #333; /* From index.html */
  text-decoration: none; /* From index.html */
  padding: 0.5rem 0; /* From index.html */
  transition: color 0.3s ease; /* From index.html */
  white-space: nowrap; /* From index.html */
  min-height: 20px; /* From index.html */
}
#header .dropdown-menu {
  margin: 0px;
  padding: 15px 10px;
  border-radius: 0;
  background-color: #fff;
  font-size: 16px;
  min-width: 15rem;
  border: 0;
  border-top: 5px solid #07105b;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.07);
}
#header .dropdown-active a.dropdown-toggle {
  color: #07105b;
}
#header .dropdown-menu .dropdown-item {
  padding: 10px 20px;
  color: #191a1d;
  font-weight: 500;
  position: relative;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
}
#header .dropdown-menu .dropdown-item:before {
  content: "";
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
}
#header .dropdown-menu .dropdown-item:hover,
#header .dropdown-menu .dropdown-item.active {
  padding-left: 36px;
}
#header .dropdown-menu .dropdown-item:hover:before,
#header .dropdown-menu .dropdown-item.active:before {
  content: "\F374";
  position: absolute;
  left: 18px;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  font-family: "Material Design Icons";
}
#header .dropdown.active .dropdown-menu a {
  color: #191a1d;
}
#header .dropdown.active .dropdown-menu .dropdown-item.active,
#header .dropdown-menu .dropdown-item:hover,
#header .dropdown.active .dropdown-menu .dropdown-item:hover {
  color: #07105b;
  background-color: inherit;
}
#header .navbar-toggler {
  background-color: #07105b;
  outline: 0;
  border: 0;
  margin: 20px 0px;
  padding: 4px 12px;
  border-radius: 0;
  font-size: 100%;
  color: #fff;
  line-height: 1.5;
}
#header .navbar-toggler i {
  color: #fff;
}
#header .navbar-toggler[aria-expanded="true"] i:before {
  content: "\f156";
}
.dropdown-toggle::after {
  content: "\F140";
  position: absolute;
  font-family: "Material Design Icons";
  border: 0;
  color: #07105b;
}
#header .nav-link[aria-expanded="true"]:after {
  content: "\F156";
  font-family: "Material Design Icons";
  position: absolute;
  border: 0;
  color: #eb5454;
}
#header .mobile-phone {
  /* From index.html */
  margin-left: 20px;
}
/**=========================
	END HEADER
=========================**/

/**=========================
	START SLIDER
=========================**/
#slider-carousel {
  height: 600px !important; /* From index.html */
  position: relative; /* From index.html */
  overflow: hidden; /* From index.html */
  background-color: #f8f9fa; /* From index.html */
}
.carousel-inner {
  /* From index.html */
  height: 600px !important;
  position: relative;
}
.carousel-item {
  height: 600px !important; /* From index.html */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute !important; /* From index.html */
  top: 0; /* From index.html */
  left: 0; /* From index.html */
  right: 0; /* From index.html */
  bottom: 0; /* From index.html */
  opacity: 0; /* From index.html */
  transition: opacity 0.6s ease-in-out; /* From index.html */
}
.carousel-item.active {
  /* From index.html */
  opacity: 1;
  position: relative !important;
}
#slider-carousel .carousel-control-next-icon,
#slider-carousel .carousel-control-prev-icon {
  background-image: none;
  width: 70px;
  height: 70px;
  background-color: #fff;
  color: #191a1d;
  font-size: 48px;
}
#slider-carousel .carousel-control-next-icon:after {
  content: "\F142";
  font-family: "Material Design Icons";
}
#slider-carousel .carousel-control-prev-icon:after {
  content: "\F141";
  font-family: "Material Design Icons";
}
#slider-carousel .carousel-control-next,
#slider-carousel .carousel-control-prev {
  width: 60px;
}
#slider-carousel .carousel-indicators li {
  background-color: #191a1d;
}
#slider-carousel .carousel-caption {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-content: center;
  align-content: center;
  text-align: left;
  position: absolute; /* From index.html */
  top: 50%; /* From index.html */
  transform: translateY(-50%); /* From index.html */
  padding: 20px; /* From index.html */
  min-height: 200px; /* From index.html */
  flex-direction: column; /* From index.html */
  justify-content: center; /* From index.html */
}
#slider-carousel h5,
#slider-carousel p {
  color: #07105b;
}
#slider-carousel h5 {
  margin-bottom: 20px;
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
}
#slider-carousel h1 {
  margin-bottom: 20px;
  font-weight: 700;
  animation-delay: 2s;
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  text-shadow: -1px 0 rgb(253, 249, 249), 0 1px rgb(252, 249, 249), 1px 0 rgb(250, 249, 249), 0 -1px rgb(253, 250, 250); /* Original from style.css */
  font-size: 3rem; /* From index.html */
  line-height: 1.2; /* From index.html */
  color: white; /* From index.html */
  text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000; /* From index.html */
  -webkit-text-stroke: 2px white; /* From index.html */
  min-height: 3rem; /* From index.html */
}
#slider-carousel p {
  animation-delay: 3s;
  -webkit-animation-delay: 3s;
  -moz-animation-delay: 3s;
}
.carousel-caption p {
  /* From index.html */
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #07105b;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 5px 15px;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 20px;
  min-height: 1.5rem;
}
#slider-carousel .slider-btn {
  animation-delay: 4s;
  -webkit-animation-delay: 4s;
  -moz-animation-delay: 4s;
}
.slider-btn {
  /* From index.html */
  min-height: 40px;
  display: flex;
  gap: 15px;
}
/**=========================
	END SLIDER
=========================**/

/**=========================
	START BREADCRUMB
=========================**/
#breadcrumb {
  padding: 65px 0px;
}
#breadcrumb.breadcrumb-bg {
  position: relative;
  background-image: url("../images/img-4.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
#breadcrumb.breadcrumb-bg:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
#breadcrumb nav ul {
  margin: 0;
  padding: 0;
}
#breadcrumb nav ul li {
  margin: 0;
  padding: 0;
  display: inline-block;
  color: #fff;
}
#breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
  padding: 0px 10px;
}
#breadcrumb nav ul li a {
  color: #fff;
}
#breadcrumb nav ul li.active,
#breadcrumb nav ul li:hover a {
  color: #f2b90c;
}
#breadcrumb .breadcrumb-left,
#breadcrumb .breadcrumb-right {
  margin: 15px 0px;
}
#breadcrumb .breadcrumb-left {
  text-align: left;
}
#breadcrumb .breadcrumb-right {
  text-align: right;
}
#breadcrumb .breadcrumb-right h5 {
  margin: 0;
  color: #fff;
}
/**=========================
	END BREADCRUMB
=========================**/

/**=========================
	START SERVICES ITEMS
=========================**/
#services-items {
  padding: 80px 0px 50px; /* Original from style.css */
}
#services-items .section-start-col {
  /* From index.html */
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#services-items .service-item {
  margin-bottom: 30px;
  min-height: 450px; /* From index.html */
  display: flex; /* From index.html */
  flex-direction: column; /* From index.html */
}
#services-items .service-item-img {
  position: relative;
  height: 250px; /* From index.html */
  overflow: hidden; /* From index.html */
  border-radius: 10px 10px 0 0; /* From index.html */
  flex-shrink: 0; /* From index.html */
}
.service-item-img img {
  /* From index.html */
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-item:hover .service-item-img img {
  /* From index.html */
  transform: scale(1.05);
}
#services-items .service-item:hover .service-item-img:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
  background-color: #191a1d;
  opacity: 0.5;
}
#services-items .service-item-icon {
  position: absolute;
  z-index: 9;
  left: 0px;
  right: 0px;
  bottom: 0px;
  text-align: center;
  margin: 0px auto;
  width: 60px;
  height: 60px;
  background-color: #07105b;
  color: #fff;
  display: inline-block;
  font-size: 40px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
#services-items .service-item:hover .service-item-icon {
  background-color: #07105b;
  transform: rotate(360deg) scaleX(-1);
  -webkit-transform: rotate(360deg) scaleX(-1);
  -moz-transform: rotate(360deg) scaleX(-1);
}
#services-items .card h5 {
  margin-bottom: 15px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
#services-items .card:hover h5 {
  color: #07105b;
}
.service-item .card {
  /* From index.html */
  background: white;
  padding: 30px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 0;
  margin: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  min-height: 200px;
}

.service-item .card h4 {
  /* From index.html */
  color: #07105b;
  margin-bottom: 15px;
  font-size: 1.3rem;
  min-height: 1.8rem;
}

.service-item .card p {
  /* From index.html */
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
  flex-grow: 1;
}
#services-items .service-single-img {
  margin-bottom: 20px;
}
#services-items .service-single-bottom {
  padding: 40px;
  border: 1px solid #ccc;
}
#services-items .service-single-bottom form {
  padding: 4px;
}
#services-items .project-single-list .card {
  margin-top: 10px;
  padding-bottom: 15px;
}
#services-items .project-single-list p {
  margin-bottom: 0px;
  font-weight: 500;
}
#services-items .project-single-list p span {
  font-weight: 100;
}
/**=========================
	END SERVICES ITEMS
=========================**/

/**=========================
	START CITIES WE SERVE
=========================**/
#our-projects {
  /* This ID is used for "Cities We Serve" and "Recent Projects" in index.html */
  padding: 80px 0px 50px; /* Original from style.css */
  background-color: rgba(31, 123, 221, 0.07); /* From index.html */
}
#our-projects .section-start-col {
  /* From index.html */
  margin: 0 auto;
  text-align: center;
  padding-bottom: 40px;
  min-height: 100px;
  width: 100%;
}
.list-cities {
  /* From index.html */
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.list-cities li {
  /* From index.html */
  background: white;
  padding: 10px 20px;
  border-radius: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-weight: 500;
  color: #07105b;
}
/**=========================
	END CITIES WE SERVE
=========================**/

/**=========================
	START GET NOW
=========================**/
#get-now {
  padding: 40px 0px; /* Original from style.css */
  position: relative;
  padding: 60px 0; /* From index.html */
  background-color: #07105b; /* From index.html */
  color: white; /* From index.html */
}
#get-now:after {
  display: none;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  border-bottom: 5px solid #f2b90c;
}
#get-now .get-now-right {
  text-align: right;
}
#get-now .get-now-right ul {
  margin: 0px; /* Original from style.css */
  list-style: none; /* From index.html */
  padding: 0; /* From index.html */
  display: flex; /* From index.html */
  gap: 15px; /* From index.html */
}
#get-now .get-now-right ul li {
  margin: 0px;
  margin-left: 10px;
  display: inline-block;
  list-style: none;
}
#get-now h2 {
  color: #fff;
  margin-bottom: 0px;
  line-height: 44px;
}
/**=========================
	END GET NOW
=========================**/

/**=========================
	START ABOUT US
=========================**/
#about-us {
  padding: 80px 0px; /* Original from style.css */
  position: relative;
  min-height: 600px; /* From index.html */
}
#about-us:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 200px;
  height: 100%;
  background-repeat: no-repeat;
  opacity: 0.3;
}
#about-us .pulse {
  position: absolute;
  top: 40px;
  left: 40px;
}
#about-us .pulse button i {
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 32px;
  display: inline-block;
  text-align: center;
  background-color: #07105b;
  color: #fff;
  animation: shadow_pulse 1s infinite;
  -webkit-animation: shadow_pulse 1s infinite;
  -moz-animation: shadow_pulse 1s infinite;
}
#about-us iframe {
  width: 100%;
  height: 400px;
}
#about-us h1 {
  margin-bottom: 20px;
}
#about-us span {
  font-size: 100%;
  font-weight: 600;
}
#about-us ul.about-btn-sec {
  margin: 0px; /* Original from style.css */
  margin-top: 30px; /* From index.html */
  list-style: none; /* From index.html */
  padding: 0; /* From index.html */
}
#about-us ul.about-btn-sec li {
  margin: 0px;
  list-style: none;
  display: inline-block;
}
#about-us ul.about-btn-sec li.about-phone {
  margin-left: 20px;
  font-size: 24px;
  top: 5px;
  position: relative;
}
#about-us ul.about-btn-sec li.about-phone i {
  font-size: 100%;
}
#about-us .about-left-img {
  position: relative; /* Original from style.css */
  text-align: center; /* From index.html */
}
#about-us .about-left-img {
  border: 1px solid #eee;
}
#about-us .about-left-img img {
  /* From index.html */
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
#about-us .about-iso-title {
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 50px 0px 0px 0px;
  background-color: #fff;
  padding: 10px 20px 10px 40px;
}
#about-us .about-iso-title h6 {
  margin-bottom: 0px;
}
/**=========================
	END ABOUT US
=========================**/

/**=========================
	START RECENT PROJECTS
=========================**/
/* Renamed from START OUR PROJECTS in original style.css */
#recent-projects {
  /* This ID is used for "Recent Projects" in index.html */
  padding: 80px 0px 50px; /* Original from style.css */
  background-color: rgba(31, 123, 221, 0.07); /* From index.html */
}
#recent-projects .section-start-col {
  /* From index.html */
  margin: 0 auto;
  text-align: center;
  padding-bottom: 40px;
  min-height: 100px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#our-projects .hover-eff-warp {
  /* Original from style.css (used for recent projects) */
  margin-bottom: 30px;
}
.hover-eff-warp img {
  /* From index.html */
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hover-eff-warp:hover img {
  /* From index.html */
  transform: scale(1.05);
}
/**=========================
	END RECENT PROJECTS
=========================**/

/**=========================
	START FAQ
=========================**/
#faq {
  padding: 80px 0px 0px;
}
#faq form {
  padding: 4px;
}
#faq .faq-accordion {
  margin-bottom: 80px;
}
#faq .faq-right-img {
  text-align: right;
  position: absolute;
  bottom: 0px;
  right: 0;
}
#faq .faq-right-img img {
  width: 85%;
}
/**=========================
	END FAQ
=========================**/

/**=========================
	START APPOINTMENT
=========================**/
#appointment {
  position: relative;
  background-image: url("../images/img-3.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
#appointment .appointment-bg {
  background-color: rgba(25, 26, 29, 0.7);
  padding: 50px 70px;
}
#appointment .appointment-form {
  width: 90%;
  padding: 4px;
}
#appointment .section-start-col h2 {
  color: #fff;
}
#appointment .appointment-right {
  position: absolute;
  right: 0;
  max-width: 43%;
}
#appointment .appointment-right-c {
  padding: 60px 30px;
  background-color: #fff;
}
#appointment .appointment-right-c h2 {
  margin-bottom: 15px;
}
/**=========================
	END APPOINTMENT
=========================**/

/**=========================
	START COUNTER
=========================**/
#counter {
  padding: 60px 0px 40px; /* Original from style.css */
  padding: 60px 0; /* From index.html */
  background-color: #07105b; /* From index.html */
  color: white; /* From index.html */
}
#counter .counter-item {
  text-align: center;
  margin-bottom: 20px;
}
#counter .counter-item .counter-icon {
  font-size: 2.5rem;
  font-family: "Poppins", sans-serif;
  margin-top: 0;
  margin-right: 8px;
  margin-bottom: .5rem;
  font-weight: 500;
  line-height: 1.2;
  display: inline-block;
}
#counter .counter-item .counter-icon i {
  font-size: 100%;
  color: #fff;
}
#counter .counter-item span.timer {
  color: #fff;
  font-weight: 800;
  font-size: 40px; /* Original from style.css */
  display: inline-block;
  font-size: 3rem; /* From index.html */
  display: block; /* From index.html */
  margin-bottom: 10px; /* From index.html */
}
#counter .counter-item h5 {
  margin-bottom: 0px;
  color: #fff;
}
/**=========================
	END COUNTER
=========================**/

/**=========================
	START PACKAGES
=========================**/
#packages {
  padding: 80px 0px 50px;
}
#packages .package-warp {
  margin-bottom: 30px;
}
#packages .package-head {
  padding: 30px;
  color: #fff;
  position: relative;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
#packages .package-head-icon:after {
  content: "";
  font-family: "Material Design Icons";
  position: absolute;
  right: 0px;
  top: 0px;
  bottom: 0;
  color: #fff;
  opacity: 0.1;
  font-size: 200px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
#packages .package-warp:hover .package-head-icon:after {
  font-size: 140px;
}
#packages .package-head-icon-1:after {
  content: "\F0E2";
}
#packages .package-head-icon-2:after {
  content: "\F0E2";
}
#packages .package-head-icon-3:after {
  content: "\F0E2";
}
#packages .package-popular {
  position: absolute;
  top: 0px;
  right: 30px;
}
#packages .package-popular {
  padding: 2px 10px;
}
#packages .package-title {
  background-color: rgba(255, 255, 255, 0.2);
  display: inline-block;
  padding: 8px 25px;
  margin-bottom: 15px;
}
#packages .package-title h2 {
  margin-bottom: 0;
}
#packages .package-head p {
  margin: 0;
  color: #fff;
}
#packages .package-price h1 {
  margin-bottom: 0;
}
#packages .package-price h1 i {
  font-size: 100%;
  width: 25px;
  display: inline-block;
}
#packages .package-price h1 span {
  font-size: 16px;
}
#packages .card ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
#packages .card ul li {
  margin: 0px;
  margin-bottom: 16px;
  padding: 0px;
  list-style: none;
}
#packages .card ul li:last-child {
  margin-bottom: 0;
}
#packages .package-btn {
  margin-top: 25px;
}
/**=========================
	END PACKAGES
=========================**/

/**=========================
	START TEAM
=========================**/
#team {
  padding: 80px 0px 50px;
}
#team .team-col {
  margin-bottom: 30px;
  position: relative;
}
#team .hover-eff-warp ul {
  margin-bottom: 0;
}

#team .card p {
  margin-bottom: 0;
}
#team .hover-eff-warp:hover .hover-eff-content {
  top: 37%;
}
/**=========================
	END TEAM
=========================**/

/**=========================
	START BLOG
=========================**/
#blog {
  padding: 80px 0px 50px;
}
#blog .blog-item {
  margin-bottom: 30px;
}
#blog .blog-item-img {
  position: relative;
  border: 1px solid #eee;
}
#blog .blog-item:hover .blog-item-img:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
  background-color: #191a1d;
  opacity: 0.5;
}
#blog .blog-date {
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 50px 0px 0px 0px;
  background-color: #fff;
  padding: 10px 20px 10px 40px;
  z-index: 9;
}
#blog .blog-date h6 {
  margin-bottom: 0;
}
#blog .card h5 {
  margin-bottom: 15px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
#blog .card:hover h5 {
  color: #07105b;
}
#blog .blog-comments {
  margin-bottom: 40px;
}
#blog .blog-comments img {
  width: 100%;
  margin-bottom: 10px;
}
#blog .blog-comments h5 i {
  font-size: 100%;
}
#blog .blog-comment-form form {
  padding: 4px;
}
/**=========================
	END BLOG
=========================**/

/**=========================
	START REVIEWS
=========================**/
#reviews {
  padding: 80px 0px 50px; /* Original from style.css */
  background-color: rgba(31, 123, 221, 0.07); /* From index.html */
}
#reviews.carousel-sec .section-start-col {
  padding-bottom: 10px;
}
#reviews.carousel-sec .card {
  margin-top: 30px;
  margin-bottom: 30px;
}
#reviews .card {
  margin-bottom: 30px; /* Original from style.css */
  background: white; /* From index.html */
  padding: 30px; /* From index.html */
  border-radius: 10px; /* From index.html */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); /* From index.html */
  border: 0; /* From index.html */
  margin: 0; /* From index.html */
  margin-bottom: 30px; /* From index.html */
  min-height: 250px; /* From index.html */
  position: relative; /* From index.html */
}
#reviews .card:before {
  content: "\F756";
  font-family: "Material Design Icons";
  font-size: 70px;
  position: absolute;
  top: -15px;
  left: 0px;
  color: #191a1d;
  opacity: 0.1;
}
#reviews .card:after {
  content: "\F0E2";
  font-family: "Material Design Icons";
  font-size: 70px;
  position: absolute;
  bottom: 5px;
  right: 20px;
  color: #191a1d;
  opacity: 0.1;
}
#reviews .review-top p {
  margin-bottom: 20px; /* Original from style.css */
  font-style: italic;
  font-size: 16px;
}
#reviews .review-top {
  /* From index.html */
  margin-bottom: 20px;
}

#reviews .review-top p:first-child {
  /* From index.html */
  font-weight: 600;
  color: #07105b;
  margin-bottom: 10px;
}

#reviews .review-top p:last-child {
  /* From index.html */
  font-style: italic;
  color: #666;
}
#reviews .review-card-img img {
  width: 100%; /* Original from style.css */
}
.review-card-img {
  /* From index.html */
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.review-card-img img {
  /* From index.html */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
#reviews .review-bottom {
  margin-left: 20px;
}
#reviews .review-bottom h5 {
  margin-bottom: 5px; /* Original from style.css */
  color: #333; /* From index.html */
  min-height: 1.5rem; /* From index.html */
}
#reviews .review-bottom p {
  margin-bottom: 0; /* Original from style.css */
  font-size: 16px;
  color: #666; /* From index.html */
  font-size: 14px; /* From index.html */
  min-height: 1.2rem; /* From index.html */
}
/**=========================
	END REVIEWS
=========================**/

/**=========================
	START CLIENTS
=========================**/
#clients {
  padding: 60px 30px;
}
#clients .client-item img {
  width: 100%;
}
/**=========================
	END CLIENTS
=========================**/

/**=========================
	START 404 ERROR
=========================**/
#errorpage {
  padding: 80px 0px 50px;
}
#errorpage .errorpage-item {
  margin-bottom: 30px;
}
#errorpage .errorpage-left {
  text-align: right;
}
#errorpage .errorpage-right {
  text-align: left;
}
#errorpage .errorpage-left h1 {
  margin-bottom: 10px;
}
#errorpage .errorpage-left h5 {
  margin-bottom: 20px;
}
#errorpage .errorpage-left h5 i {
  font-size: 100%;
}
/**=========================
	END 404 ERROR
=========================**/

.mobile-btn,
.mobile-quote-btn {
  font-size: 1.2em;
  min-width: 100%;
  background: #07105b;
  ;
  background: var(--theme, #07105b);
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding: .34em 0;
  margin: .25em 0 0;
  border-radius: 2px;
}
#mobile-footer-nav,
#mobile-quote-nav {
  display: none;
  position: fixed;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: .5em 15px;
  background-color: #fff;
  box-shadow: 0 -0.25em 4px 0 rgba(0, 0, 0, 0.2);
  grid-gap: .5em;
}

/**=========================
	START CONTACT US
=========================**/
#contact-us {
  padding: 80px 0px 50px;
}
#contact-us .contactus-item {
  margin-bottom: 30px;
}
#contact-us iframe {
  width: 100%;
  height: 400px;
  border: 0;
  overflow: hidden;
}
#contact-us .contactus-item form {
  padding: 4px;
}
#contact-us .contactus-item .card {
  padding-bottom: 14px;
}
/**=========================
	END CONTACT US
=========================**/

/**=========================
	START FOOTER
=========================**/
#footer {
  padding: 80px 0px 50px; /* Original from style.css */
  background-color: #080808; /* From index.html */
  color: #ccc; /* From index.html */
  padding: 80px 0 30px; /* From index.html */
  min-height: 300px; /* From index.html */
}
#footer .heading-icon,
#footer li {
  color: #fff;
}
#footer li a,
#footer p,
#footer a {
  color: #ccc;
}
#footer .heading-icon,
#footer .footer-contact,
#footer .footer-logo,
#footer .footer-list {
  margin-bottom: 30px;
}
#footer .footer-logo img {
  /* From index.html */
  height: 120px;
  width: auto;
}
#footer .footer-list ul {
  margin: 0;
  padding: 0; /* Original from style.css */
  list-style: none; /* From index.html */
}
#footer .footer-list ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 16px; /* Original from style.css */
  margin-bottom: 15px; /* From index.html */
}
#footer .footer-list ul li:last-child {
  margin-bottom: 0;
}
#footer .footer-list ul li a:before {
  content: "";
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
}
#footer .footer-list ul li a:hover {
  padding-left: 17px;
}
#footer .footer-list ul li a:hover:before {
  content: "\F374";
  position: absolute;
  left: 13px;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  font-family: "Material Design Icons";
}
#footer .footer-list ul li a:hover,
#footer .footer-list ul li a:hover:before {
  color: #ffcd37;
}
#footer .footer-list ul li a {
  /* From index.html */
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.6;
}

#footer .footer-list ul li a:hover {
  /* From index.html */
  color: #f2b90c;
}
#footer .footer-news-col {
  margin-bottom: 20px;
}
#footer .footer-news-img img {
  width: 100%;
}
#footer .footer-news-content {
  margin-left: 20px;
}
#footer .footer-news-content a:hover {
  color: #f2b90c;
}
/**=========================
	END FOOTER
=========================**/

/**=========================
	START SUB FOOTER
=========================**/
#sub-footer {
  padding: 30px 0px;
}
#sub-footer .sub-footer-left {
  text-align: left;
}
#sub-footer .sub-footer-right {
  text-align: right;
}
#sub-footer ul {
  margin: 0px;
  padding: 0px;
}
#sub-footer ul li {
  margin: 0px;
  padding: 0px;
  display: inline-block;
  margin-left: 5px;
}
#sub-footer ul li a i {
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
#sub-footer ul li a:hover i {
  color: #ffcd37;
}
/**=========================
	END SUB FOOTER
=========================**/

/**=========================
	START TO TOP BTN
=========================**/
.backto-top-btn {
  display: none;
  position: fixed;
  z-index: 9;
  right: 2%;
  bottom: 4%;
  animation: fadeIn 1s forwards;
  -webkit-animation: fadeIn 1s forwards;
  -moz-animation: fadeIn 1s forwards;
  z-index: 99;
  padding: 8px 12px;
}
.backto-top-btn:hover {
  cursor: pointer;
}
/**=========================
	END TO TOP BTN
=========================**/

/**=========================
	START WHATSAPP BUTTON
=========================**/
.btn-whatsapp {
  /* From index.html */
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: none;
}

.btn-whatsapp img {
  /* From index.html */
  width: 60px;
  height: 60px;
}
/**=========================
	END WHATSAPP BUTTON
=========================**/

/**=========================
	START RESPONSIVE DESIGN
=========================**/
/* Responsive Design from index.html */
@media (max-width: 991px) {
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }

  #header .navbar {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }

  #header .navbar-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .slider-btn {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  #services-items .section-start-col,
  #recent-projects .section-start-col {
    flex-direction: column;
    gap: 20px;
  }

  .float-left,
  .float-right {
    float: none;
    text-align: center;
  }
}

@media (max-width: 768px) {
  #slider-carousel,
  .carousel-inner,
  .carousel-item {
    height: 400px !important;
  }

  .carousel-caption h1 {
    font-size: 1.8rem;
    min-height: 2.2rem;
  }

  #header {
    min-height: 60px;
  }

  #message-banner {
    min-height: 50px;
  }

  .message-list-item {
    min-height: 50px;
  }

  .get-now-right ul {
    flex-direction: column;
  }

  .list-cities {
    gap: 10px;
  }

  .list-cities li {
    padding: 8px 15px;
    font-size: 14px;
  }
}
/**=========================
	END RESPONSIVE DESIGN
=========================**/
