/* ================== Scroll Bar ================== */
::-webkit-scrollbar-track
{
  border-left: 1px solid #e0e0e0;
  margin: 0px;
}
::-webkit-scrollbar {
  width: 4px;
  background-color: #fff;
}
::-webkit-scrollbar-thumb {
  border-radius: 25px;
  background-color: #d2d3d5;
}

/* ================== Root ================== */
:root {
  --font-Fira-Sans:"Fira Sans", sans-serif;;
  --white:#FFFFFF;
  --orange:#F47522;
  --grey-black:#1A1818;
  --black:#000000;
  --brown:#2A2A2A;
  --light-gray-bg:#F5F5F5;
}
body, html {
  /*overflow-x: hidden;*/
  font-family: var(--font-Fira-Sans) !important;
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* background: var(--white); */
}
a {
  text-decoration: none;
  color: var(--black);
}
ul{
  padding-inline-start: 0;
  list-style: none;
  margin: 0;
}
h1{
  font-size: 66px;
  font-weight: 700;
  text-transform: uppercase;
  font-weight: 700;
}
h2{
  font-size: 40px;
  font-weight: 700;
  color: var(--grey-black);
}
h3{
  font-size: 24px;
  color: var(--black);
  font-weight: 700;
}
p{
  color: var(--black);
  font-size: 18px;
  font-weight: 400;
  line-height: 170%;
}
.orange-text{
  color: var(--orange);
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.primary-btn{
  min-width: 250px;
  min-height: 50px;
  padding: 10px 10px;
  font-size: 18px;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid var(--orange);
  border-radius: 0;
  /* line-height: 250%; */
  font-weight: 700;
  cursor: pointer;
  transition: 0.5s all;
  background: var(--orange);
}
.primary-btn:hover,
.secondary-btn:hover{
  transition: 0.5s all;
  background: var(--white);
  color: var(--orange) !important;
  border-color: var(--orange);

}
.secondary-btn{
  min-width: 250px;
  min-height: 50px;
  padding: 10px 10px;
  font-size: 18px;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid var(--white);
  border-radius: 0;
/*  line-height: 250%;*/
  font-weight: 700;
  cursor: pointer;
  transition: 0.5s all;
  background: transparent;
}
/* .secondary-btn:hover{
  transition: 0.5s all;
  background: var(--orange);
  color: var(--white);
} */


/* Header Section */
.header-block .header-box {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}
.header-block .header-box .menu-wrap {
    display: flex;
    align-items: center;
}
.header-block .header-box .menu-wrap .nav-link {
    font-size: 16px;
    color: #1A1818;
    font-weight: 500;
    padding: 20px 25px;
}
.header-block .header-box .call-wrap .primary-btn {
    color: #fff;
    margin-left: 35px;
}
.header-block .header-box .call-wrap .primary-btn:hover {
    color: var(--orange);
}
.header-block .header-box .call-wrap .call-info {
    color: var(--orange);
    font-weight: 700;
    font-size: 18px;
}
.header-block .header-box .call-wrap .call-info img {
    width: 28px;
    margin-right: 7px;
}
.header-block .contact-box {
    padding-left: 40px;
}
.header-block .header-box .navbar-brand img {
    width: auto;
    max-width: 100%;
    height: auto;
}
.header-block nav {
    /* padding: 0 10px; */
    background-color: var(--white) !important;
}
.header-block {
    width: 100%;
    background: var(--white);
    padding: 0px 25px;
    transition: 0.5s all;
}
.header-block .header-box .navbar-brand {
    margin-top: -10px;
}
.header-block .dropdown-menu .dropdown-item {
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    color: var(--black);
    padding: 20px 20px;
    border-bottom: 1px solid #933A00;
    text-align: center;
}
.header-block .dropdown .dropdown-menu {
    border-radius: unset;
    border: unset;
    background: var(--orange);
    padding: 0;
    margin-top: 0px !important;
    left: 50%;
    transform: translate(-50%, 0%);
}
.header-block .dropdown-menu .dropdown-item:hover {
    background: var(--white);
    transition: 0.5s all;
}
.header-block .header-box .menu-wrap .nav-link:hover {
    color: var(--orange);
    transition: 0.5s all;
}
.header-block .header-box .menu-wrap .nav-link.dropdown-toggle::after {
    opacity: 0;
}
.header-block.fixed-header {
    position: fixed;
    top: 0px;
    z-index: 999999;
    transition: 0.5s all;
    border-bottom: 3px solid var(--orange);
}

/* Banner Section */
.main-banner .banner-photo {
    padding: 120px;
    position: relative;
    z-index: 99;
    color: var(--white);
}
.home-banner.main-banner .banner-photo::after {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.70) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
}
.main-banner .banner-photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(0deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.70) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);*/
    /* background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%); */
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.50) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.20) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.20) 100%);
    z-index: -999;
}
.main-banner .banner-photo p {
    color: var(--white);
    font-weight: 300;
    max-width: 90%;
}
.main-banner .banner-photo  .orange-text {
    margin-bottom: 25px;
}
.main-banner .banner-photo .ct-block {
    max-width: 70%;
}
.main-banner .banner-photo h1 {
    margin-bottom: 30px;
    text-transform: capitalize;
}
.main-banner .banner-photo .gp-btn {
    margin: 40px 0 0;
}
.main-banner .banner-photo .gp-btn .primary-btn.btn {
    color: var(--white);
    margin-right: 30px;
}
.main-banner .banner-photo .gp-btn .secondary-btn.btn {
    color: var(--white);
}
.main-banner .banner-photo .gp-btn .primary-btn.btn:hover {
    color: var(--orange);
}
.main-banner .banner-photo .award-box {
    margin-top: 30px;
}
/* .main-banner .banner-photo .award-box img {
    width: auto;
    max-width: 100%;
    height: auto;
    margin-right: 60px;
} */

/* Service Section */
.service-card .col-12 {
    margin-bottom: 40px;
}
.service-wrap {
    padding: 90px 120px 40px;
}
.service-wrap .orange-text {
    margin-bottom: 10px;
}
.service-wrap .service-card .single-card {
    background: #FFF;
    box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.20);
    display: flex;
    height: 100%;
    margin: 0;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card {
    margin-top: 60px;
}
.service-wrap .service-card .single-card .photo-wrap {
    width: 35%;
}
.service-wrap .service-card .single-card .card-block {
    padding: 50px 35px 40px;
    width: 70%;
    display: flex;
    align-items: center;
	min-height: 190px;
}
.service-wrap .service-card .single-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.20);
}
.service-wrap .service-card  .card-block .text-wrap h3 {
    margin-bottom: 20px;
    color: var(--grey-black);
}
.service-wrap .service-card .card-block .text-wrap .link {
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    color: var(--grey-black);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    transition: 0.5s all;
}
.service-wrap .service-card .card-block .text-wrap .link img {
    margin-left: 10px;
}
.service-wrap .service-card .card-block .text-wrap .link:hover {
    color: var(--orange);
}

/* Headquarters Section*/
.headquarters-wrap .photo-wrap img {
    width: 100%;
    height: auto;
    max-width: 100%;
}
.headquarters-wrap {
    padding: 30px 20px;
    background: #F5F5F5;
}
.headquarters-wrap .content-wrap {
    padding-left: 100px;
    max-width: 80%;
}
.headquarters-wrap .content-wrap span {
    margin-bottom: 25px;
}
.headquarters-wrap .content-wrap h2 {
    margin-bottom: 30px;
}
.headquarters-wrap .content .row {
    align-items: center;
}

/* Who We Section */
.who-we-section {
    padding: 160px 50px 140px;
    position: relative;
    z-index: 9;
    color: var(--white);
}
.who-we-section .row {
    max-width: 75%;
    margin: 0 auto;
    align-items: center;
}
.who-we-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.70) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
    z-index: -999;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.70) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
}
.who-we-section .title-wrap h2 {
    color: var(--white);
    margin-top: 30px;
    margin-bottom: 40px;
}
.who-we-section .content-wrap p {
    color: var(--white);
    font-weight: 300;
    line-height: 145%;
    margin-bottom: 30px;
}
.who-we-section .title-wrap .primary-btn {
    color: var(--white);
}
.who-we-section .title-wrap .primary-btn:hover {
    color: var(--orange);
}
.who-we-section .row .col-12 {
    padding: 2.5rem;
}

/* Why Choose Section */
.why-choose-section {
    padding: 90px 90px 50px;
}
.why-choose-section .orange-text {
    margin-bottom: 25px;
}
.why-choose-section .icon-box {
    margin-top: 80px;
}
.why-choose-section .icon-box .single-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    padding-right: 30px;
}
.why-choose-section .icon-box .icon img {
    width: 80px;
    max-width: 80px;
    height: 80px;
    margin-right: 70px;
}
.why-choose-section .content-box span {
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

/* Certification Section */
.certification-section {
    padding: 100px 0 70px;
}
.certification-section h2 {
    margin-bottom: 50px;
}
.certification-section .icon-box img {
    width: auto;
    max-width: 100%;
    height: auto;
	max-height: 135px !important;
    /* margin: 0 45px 20px; */
}

/* Our Partner Section */
.partner-section {
    background: var(--black);
}
.partner-section h2 {
    color: var(--white);
    margin-bottom: 20px;
}
.partner-section span {
    color: var(--white);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 30px;
}
.partner-section .icon-box {
    margin-top: 60px;
}
.partner-section .icon-box img {
    margin: 0 30px 20px;
}

/* Quote Section */
.orange-bg{
  background: var(--orange);
}
.brown-bg{
  background: var(--brown);
}
.quote-section .inner-wrap {
    padding: 100px 20px;
    color: var(--white);
    text-align: center;
}
.quote-section .inner-wrap p {
    color: var(--white);
    margin-bottom: 40px;
}
.quote-section .inner-wrap h1 {
    text-transform: capitalize;
    margin-bottom: 40px;
}
.white-outline-btn {
    text-align: center;
    color: var(--white);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    border: 1px solid var(--white);
    border-radius: 0;
    padding: 14px 20px;
    min-width: 400px;
}
.white-outline-btn:hover {
    background: var(--white);
    color: var(--orange);
}

/* Commercial Construction Section */
.construction-section {
    background: #F5F5F5;
    padding: 70px 60px 70px 90px;
}
.latest-work-slider{
  padding: 0 70px;
}
.project-slider .latest-work-slider {
	padding: 0 !important;
	margin-top: 80px;
}
.project-slider .latest-work-slider .slick-prev, 
.project-slider .latest-work-slider .slick-next {
    top: -50px;
    right: 0;
    left: auto;
}
.project-slider .latest-work-slider .slick-prev {
    right: 80px !important;
}
.construction-section .slick-initialized .slick-slide{
  color: #FFF;
  margin: 0 15px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.construction-section .slick-next, .construction-section .slick-prev{
  z-index: 5;
}
.construction-section .slick-next{
  right: -15px;
}
.construction-section .slick-prev{
  left: -15px;
}
.construction-section .slick-next:before, .construction-section .slick-prev:before{
  color: #000;
  font-size: 26px;
}
.construction-section .row {
    align-items: center;
}
.construction-section h2 {
    margin-bottom: 35px;
}
.construction-section .primary-btn {
    color: var(--white);
}
.construction-section .primary-btn:hover {
    color: var(--orange);
}
.construction-section .project-slider .photo-card img {
    width: 100%;
    height: auto;
    max-width: 100%;
}
.construction-section .project-slider .slider-single {
    display: flex;
    flex-direction: column;
    margin: 0;
    background: #FFF;
    padding: 30px;
}
.construction-section .project-slider .slider-content {
    text-align: center;
    padding: 30px 0 10px;
    max-width: 90%;
    margin: 0 auto;
}
.construction-section .slick-list {
    box-shadow: 0 0 11.404px 3.801px rgba(0, 0, 0, 0.20) !important;
}
 .slick-prev:before{
  background: url('../img/slider-left-arrow.svg') no-repeat center;
  content: '';
  background-size: 40px;
  width: 50px;
  height: 50px;
  display: inline-block;
  opacity: 1;
}
 .slick-next:before{
  background: url('../img/slider-right-arrow.svg') no-repeat center;
  content: '';
  background-size: 40px;
  width: 50px;
  height: 50px;
  display: inline-block;
  opacity: 1;
}

/* Testimonials Section */
.testimonials-section .testimonials-slider{
  padding: 0 0px;
  margin-top: 50px;
}
.testimonials-section .slick-initialized .slick-slide{
  background-color: var(--white);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--white);
  box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.20);
  padding: 50px 35px 30px;
  text-align: center;
  margin: 0 10px;
}
.testimonials-section .slick-next, .slick-prev{
  z-index: 5;
}
.testimonials-section .slick-next{
  right: -80px;
}
.testimonials-section .slick-prev{
  left: -80px;
}
.testimonials-section .slick-next:before, .slick-prev:before{
  color: #000;
  font-size: 26px;
}
.testimonials-section {
    padding: 90px 0 60px;
}
.testimonials-section .slider-box {
    margin-top: 80px;
    max-width: 85%;
    margin: 0 auto;
}
.testimonials-section h6 {
    margin-top: 5px;
    color: var(--grey-black);
    font-size: 24px;
    font-weight: 700;
}
.testimonials-section .slider-box span{
    color: var(--grey-black);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    margin-top: 5px;
}
.testimonials-section .slick-list {
    padding: 20px 0px;
}
.slick-prev,
.slick-next{
    width: 50px;
    height: 50px;
}

/* Contact Section */
.contact-section::after {
  content:'';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(26 24 24 / 70%);
  z-index: -999;
}
.contact-section {
   position: relative;
   z-index: 9;
   padding: 140px 0;
}
.contact-section .content-box {
    max-width: 80%;
    margin: 0 auto;
}
.contact-section h2 {
    color: var(--white);
}
.contact-section .list-info ul li a,
.contact-section .list-info ul li p{
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
}
.contact-section .list-info ul li p{
    margin: 0;
}
.contact-section .list-info ul li{
    margin: 20px 0;
    list-style: disc;
    color: var(--white);
}
.contact-section .list-info ul {
    margin-left: 25px;
    margin-top: 40px;
}
.form-info .form-label {
    font-size: 21.244px;
    font-weight: 400;
    color: var(--white);
    line-height: normal;
}
.form-info .form-control {
    border-radius: 0;
    padding: 11px 15px;
    color: var(--black);
    border: 1.328px solid #000;
}
.contact-section .form-control::placeholder{
    color: var(--black);
}
.form-info .col-12 {
    margin-top: 25px;
}
.contact-section .form-info .col-12 + .col-md-12 {
    margin-top: 25px;
}
.form-info textarea {
    width: 100%;
    min-width: 100%;
    display: block;
    min-height: 140px;
}
.form-info .primary-btn {
    width: 100%;
    height: 60px;
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
}
.contact-section .form-info .primary-btn:hover {
    color: var(--orange);
}
.contact-section .content-info {
    padding-top: 20px;
}

/* Footer */
footer {
    background: var(--black);
    color: var(--white);
    padding: 85px 0 50px 0;
}
footer .footer-menu li a {
    color: var(--white);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
}
footer .footer-box {
    border-top: 1px solid var(--white);
    padding-top: 30px;
    max-width: 75%;
    margin: 0 auto;
}
footer .footer-box .soical-icon img {
    width: auto;
    max-width: 100%;
    height: auto;
    margin-right: 20px;
}
footer .footer-box .social-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
footer .footer-box .footer-menu ul {
    display: flex;
    align-items: center;
}
footer .footer-box .footer-menu ul li {
    margin-left: 20px;
}
footer .footer-menu li a:hover {
    color: var(--orange);
    text-decoration: underline;
    transition: 0.5s all;
}
footer .copy-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 45px;
}
footer .copy-right p {
    color: var(--white);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}

/* About Us Page */
.menu-active .nav-link{
  color: var(--orange) !important;
}
/* Our History Section */
.history-section {
    padding: 60px 26px 60px 105px;
}
.history-section h2 {
    margin-bottom: 30px;
}
.history-section .quote-info p {
    font-size: 32px;
    color: var(--grey-black);
    line-height: 140%;
}
.history-section .photo-info img {
    width: 100%;
    height: auto;
    max-width: 100%;
}

/* Our Crew Section */
.history-section.bg-black .photo-info {
    /* margin-right: -75px; */
}
.history-section.bg-black .t-info {
    /* padding-left: 100px; */
    color: var(--white);
    padding-right: 0;
    margin-left: 50px;
}
.history-section.bg-black .t-info h2,
.history-section.bg-black .t-info p{
    color: var(--white);
}
.history-section .t-info {
    padding-right: 100px;
}
.history-section.bg-black {
    position: relative;
    padding-left: 25px;
}
.why-choose-section .t-box {
    max-width: 55%;
    margin: 0 auto;
}

/* Our Facilities Section */
.text-white{
  color: var(--white);
}
.facilities-section {
    padding: 100px 120px 150px;
}
.facilities-section h2 {
    margin-bottom: 30px;
}
.facilities-section .right-wrap {
    padding-left: 80px;
}
.facilities-section .right-wrap ul li {
    list-style: disc;
    margin: 20px 15px;
    font-weight: 300;
}
.facilities-section .right-wrap > span {
    font-size: 24px;
    font-weight: 600;
}
.facilities-section p {
    font-weight: 300;
}
.facilities-section strong {
    font-weight: 500;
}

.service-wrap .service-card .single-card {
	cursor: pointer;
}

/* Commericial Services */
/* Construction Section*/
.black-background{
  background: var(--black);
}
.construction-wrap .photo-info{
  height: 600px;
}
.construction-wrap .photo-info img{
  height: 100%;
  object-fit: cover;
}
.construction-wrap .primary-btn {
    color: var(--white);
}
.construction-wrap .primary-btn:hover {
    color: var(--orange);
}
.construction-wrap .primary-btn img {
    margin-left: 8px;
}

/* Service Area */
.service-area {
    padding: 100px 90px;
}
.service-area .map-info iframe {
    width: 100%;
    min-height: 300px;
}
.service-area .map-info {
    padding-left: 130px;
}

/* Our Purpose Section */
.purpose-section {
    padding: 100px 0 140px;
}
.purpose-section .content-wrap {
    max-width: 70%;
    margin: 0 auto;
}
.purpose-section .content-wrap h2 {
    margin-bottom: 30px;
}
.purpose-section .icon-list ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 70px;
}
.purpose-section .icon-list ul .list-set span {
    color: var(--white);
    display: block;
    font-size: 18px;
    margin-top: 30px;
    text-align: center;
}
.purpose-section .icon-list ul .list-set {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.purpose-section .icon-list {
    margin-top: 75px;
}
.purpose-section .icon-list ul .list-set .ic-container {
    min-height: 90px;
}

/* Process Section */
.process-section {
    padding: 70px 30px;
}
.process-section .process-list .single-list {
    display: flex;
    width: calc(100% - 20%);
    margin: 0 auto;
	align-items: center;
}
.process-section .process-list ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
	gap: 30px;
}
.process-section .process-list .single-list .iocn-bx {
    min-width: 80px;
    height: auto;
    margin-right: 90px;
    max-width: 80px;
}
.process-list {
    margin: 80px auto 0;
    position: relative;
}
.process-section .process-list .single-list .iocn-bx img {
    width: 80px;
    max-width: 100%;
    height: auto;
	max-height: 80px;
    object-fit: fill;
}
.process-section .process-list li {
    /* margin-bottom: 35px; */
    display: flex;
    width: calc(100% - 50%);
    flex: 1;
    justify-content: center;
}
.process-section .process-list .single-list .con-bx {
    width: 100%;
}
.process-section .process-list .con-bx span {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
}
.process-section .process-list .con-bx p {
    margin-left: 15px;
	margin-bottom: 0;
}
.light-gray-bg{
  background: var(--light-gray-bg);
}

/* Accordion Section */
.accordion-section .accordion .accordion-item {
  border: unset;
  border-top: 1px solid var(--black);
  border-radius: unset;
}
.accordion-section .accordion .accordion-item button[aria-expanded='true'] {
  /* border-bottom: 1px solid #03b5d2; */
}
.accordion-section .accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 30px 50px 30px 0;
  border: none;
  background: none;
  outline: none;
  display: flex;
  align-items: center;
}
.accordion-section .accordion button:hover,
.accordion-section .accordion button:focus {
  cursor: pointer;
  color: #03b5d2;
}
.accordion-section .accordion button:hover::after,
.accordion-section .accordion button:focus::after {
  cursor: pointer;
  color: #03b5d2;
  border: 1px solid #03b5d2;
}
.accordion-section .accordion button .accordion-title {
  color: var(--grey-black);
  font-size: 24px;
  font-weight: 600;
}
.accordion-section .accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 40px;
  right: 0;
  width: 35px;
  height: 35px;
  background: url(../img/down-arrow.svg) no-repeat;
  background-size: 30px;
  padding: 0;
  transition: 0.5s all;
}
.accordion-section .accordion button .icon::before {
  display: block;
  content: '';
  top: 9px;
  left: 5px;
}
.accordion-section .accordion button .icon::after {
  display: block;
  content: '';
  top: 5px;
  left: 9px;
}
.accordion-section .accordion button[aria-expanded='true'] {
  color: #03b5d2;
}
.accordion-section .accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}
.accordion-section .accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  max-height: 100%;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion-section .accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
  max-width: 85%;
}
.accordion-section .accordion .accordion-content p {
  font-weight: 400;
  margin: 2em 0;
}
.accordion-section {
    padding: 100px 90px 70px 90px;
}
.accordion-section .accordion-section .accordion {
    border: unset;
}
.accordion-section .accordion-item:last-of-type{
    border-bottom: 1px solid var(--black);
}
.accordion-wrapper {
    margin-top: 60px;
}
.accordion-section .accordion .accordion-content p:nth-child(1){
    margin-top: 0;
}
.accordion-section .accordion button[aria-expanded='true'] span.icon {
  transform: rotate(180deg);
  transition: 0.5s all;
}

/* Facility & Property Maintenance */
.dark-overlay.banner-photo::after{
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.70) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
}
.facilities-section .primary-btn {
    color: var(--white);
}
.facilities-section .primary-btn img {
    margin-left: 10px;
}
.facilities-section .primary-btn:hover {
    color: var(--orange);
}
.accordion-section .content-wrap .col-md-6:nth-child(1) {
    padding-right: 70px;
}
.accordion-section .content-wrap h2 {
    margin-bottom: 30px;
}
.accordion-section .accordion .accordion-content ul li p {
    margin-bottom: 0;
}
.accordion-section .accordion .accordion-content ul li {
    position: relative;
    padding-left: 20px;
}
.accordion-section .accordion .accordion-content ul li:after {
    content: '';
    position: absolute;
    /* top: 50%; */
    top: 12px;
    width: 5px;
    height: 5px;
    background: var(--black);
    border-radius: 50%;
    transform: translate(-50%,-50%);
    left: 5px;
}
.accordion-section .accordion .accordion-content ul li:last-child {
    margin-bottom: 40px;
}

/* Contat Us Page */
.contact-banner .card-photo img {
    width: 100%;
    height: auto;
    max-width: 100%;
}
.contact-banner .ct-block {
    max-width: 95% !important;
}
.contact-form .form-bg-box {
    border-radius: 20px;
    background: #2A2A2A;
    padding: 50px 60px;
}
.contact-form {
    padding: 130px 100px 100px;
}
.form-bg-box > h2 {
    text-transform: capitalize;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 30px;
}
.contact-form .primary-btn:hover {
    color: var(--orange);
}
.contact-info .contact-group {
    margin-top: 40px;
}
.contact-info .contact-group  .single-list {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}
.contact-info .contact-group .single-list .icon-bx {
    width: 30px;
    height: auto;
    max-height: 40px;
    margin-right: 40px;
}
.contact-info .contact-group .single-list .icon-bx img {
    width: 26px;
}
.contact-info .contact-group .single-list .content-box {
    font-size: 20px;
}
.contact-info .contact-group .single-list .content-box h3 {
    font-size: 22px;
    margin-bottom: 0;
}
.opening-hrs {
    margin-top: 70px;
}
.opening-hrs h2 {
    margin-bottom: 20px;
}
.opening-hrs h2 + p {
    margin-bottom: 30px;
}
.opening-hrs .socila-icons .social-box {
    margin-right: 40px;
    display: inline-block;
}
.opening-hrs .socila-icons .social-box img {
    width: auto;
    max-width: 100%;
    height: auto;
}
.project-list {
    background: #F5F5F5;
    padding: 80px 110px;
}
.project-list .repeat-list {
    background: var(--white);
    box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.20);
    /* padding: 100px 80px; */
	padding: 60px;
    margin-bottom: 80px;
}
.project-list .photo-block img {
    width: 100%;
    height: auto;
    max-width: 100%;
}
.project-list h5 {
    margin-bottom: 20px;
}
.project-list .list-content p {
    margin-bottom: 15px;
	font-size: 16px;
}
.project-list .list-content ul li p {
    margin-bottom: 0;
}
.project-list .list-content ul li{
    list-style: disc;
	font-size: 16px;
}
.project-list .list-content ul {
    padding-left: 25px;
}
.project-list h2 {
    margin-bottom: 15px;
}
.project-list .col-12:first-child {
    padding-right: 60px;
}
.project-list .repeat-list:last-child {
    margin-bottom: 40px;
}
.pagination-wrap .page-link {
    color: rgba(0, 0, 0, 0.30);
    background: transparent;
    font-weight: 400;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border: unset;
    cursor: pointer;
}
.pagination-wrap .selected .page-link {
    color: var(--black);
}
.pagination-wrap .page-item .page-link img {
    width: 36px;
}
/* .pagination-wrap .page-item:nth-child(1) .page-link {
    margin-right: 50px;
}
.pagination-wrap .page-item:last-child .page-link{
    margin-left: 50px;
}  */
.pagination-wrap .page-item.disabled .page-link img {
    opacity: 0.3;
}

/* Mobile Header */
.mobile-header + .side-bar + .dashboard-content{
  padding-top: 100px !important;
}
.mobile-header {
  margin: 0 auto;
  /* overflow: hidden; */
  height: 100%;
  position: relative;
  top: 0;
  width: 100%;
  z-index: 9;
  transition: 0.5s all;
  /*min-height: 100vh;*/
}
.mobile-header .md-menu-logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-direction: row-reverse;
}
.header-active .menu-toggle-open {
  pointer-events: none;
}
.mobile-header nav label.m-menu__toggle svg {
  border-radius: 4px;
  stroke: var(--black);
}
.mobile-header.header-active{
  min-height: 100vh;
  position: fixed;
  top: 0;
  z-index: 999;
  bottom: 0;
  border: unset;
}
.mobile-header nav {
  padding: 20px 16px 15px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.mobile-header nav .m-menu__checkbox {
  display: none;
}
.mobile-header nav label.m-menu__toggle {
  cursor: pointer;
}
.mobile-header nav .m-menu {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 450px;
  width: calc(100vw - 30px);
  height: 100%;
  -moz-transform: translate3d(-450px, 0, 0);
  -o-transform: translate3d(-450px, 0, 0);
  -ms-transform: translate3d(-450px, 0, 0);
  -webkit-transform: translate3d(-450px, 0, 0);
  transform: translate3d(-450px, 0, 0);
  -moz-transition: transform 0.35s;
  -o-transition: transform 0.35s;
  -webkit-transition: transform 0.35s;
  transition: transform 0.35s;
  z-index: 1;
  overflow: hidden;
  background-color: #fff;
}
.mobile-header nav .m-menu__overlay {
  background-color: rgba(103, 103, 103, 0.5);
  position: absolute;
  top: 0;
  width: 100%;
  bottom: 0;
  z-index: 1;
  display: none;
  background: rgb(0 0 0 / 80%);
}
.mobile-header nav .m-menu__header {
  padding: 0 10px;
  height: 50px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: space-around;
  -webkit-align-items: center;
  align-items: center;
  border-bottom: 1px solid #e8e8e8;
}
.mobile-header nav .m-menu__header span {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  width: 100%;
  color: #000;
}
.mobile-header nav .m-menu .m-menu {
  -moz-transform: translate3d(480px, 0, 0);
  -o-transform: translate3d(480px, 0, 0);
  -ms-transform: translate3d(480px, 0, 0);
  -webkit-transform: translate3d(480px, 0, 0);
  transform: translate3d(480px, 0, 0);
}
.mobile-header nav .m-menu ul {
  height: calc(100% - 100px);
  padding-bottom: 30px;
  overflow-y: auto;
}
.mobile-header nav .m-menu ul li a, .mobile-header nav .m-menu ul li label {
  display: block;
  text-align: left;
  padding: 0 15px;
  line-height: 45px;
  text-decoration: none;
  color: #000000;
  cursor: pointer;
  font-size: 20px;
  border-bottom: 1px solid #e8e8e8;
  position: relative;
}
.mobile-header nav .m-menu ul li label.a-label__chevron::after {
  content: "";
  position: absolute;
  display: inline-block;
  height: 15px;
  width: 15px;
  border-color: #333;
  border-style: solid;
  border-width: 3px 3px 0 0;
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
  margin-top: -5px;
  right: 16px;
}
.mobile-header nav .m-menu ul li .-invisible {
  border-bottom: 0;
}
.mobile-header nav .m-menu .m-menu label.m-menu__toggle {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  border-bottom: 0;
  padding: 0;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.mobile-header nav .m-menu__checkbox:checked ~ .m-menu__overlay {
  display: block;
  pointer-events: none;
}
.mobile-header nav .m-menu__checkbox:checked ~ .m-menu {
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.mobile-header nav .m-menu ul a {
  padding: 0 !important;
  border-bottom: unset !important;
}
.mobile-header nav .m-menu ul label img {
  margin-right: 10px;
  width: 16px;
  height: auto;
}
.mobile-header .menu-toggle-close svg,
.mobile-header .m-menu__header .m-menu__toggle svg{
  width: 30px;
  height: auto;
  filter: invert(0) !important;
}
.mobile-header nav .m-menu ul li a:hover {
  color: var(--orange);
  text-decoration: underline;
  text-underline-position: from-font;
  text-decoration-color: var(--orange);
  transition: 0.5s cubic-bezier;
}
.mobile-header nav .m-menu ul {
  height: calc(100% - 100px);
  padding-bottom: 30px;
}
.mobile-header nav a img {
  width: 300px;
}
.fixed-header-mobile {
  position: fixed;
  background: var(--white);
  transition: 0.5s all;
  top: 0;
  padding: 10px 0;
  z-index: 999999;
  height: auto;
  border-bottom: 2px solid var(--orange);
}
.fixed-header-mobile nav {
  padding-top: 0;
  padding-bottom: 0;
}
.mobile-header nav .m-menu ul .project-btn {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  min-width: unset;
  padding: 15px 20px !important;
  margin: 15px 15px 15px;
  font-size: 20px;
}
.mobile-header nav .m-menu ul .project-btn:hover {
  color: var(--white);
  text-decoration: unset;
}
.mobile-header.header-bg-white .m-menu__toggle svg {
  filter: invert(1);
}
.mobile-header.header-bg-white.fixed-header-mobile .m-menu__toggle svg {
  filter: invert(0);
}
.mobile-socail-menu .info-wrap {
  margin-top: 15px;
  margin-bottom: 30px;
}
.menu-call .call-ics img {
    width: 25px;
    height: auto;
    max-width: 100%;
    display: inline-block;
    margin-right: 10px;
}
.menu-call .call-ics {
    height: 30px;
    display: inline-block;
    width: 30px;
}
   

/* Back to Top */
#back_to_top {
    position:fixed;
    right:10px;
    bottom:10px;
    cursor:pointer;
    width:50px;
    height:50px;
    background-color: var(--black);
    text-indent:-9999px;
    display:none;
    -webkit-border-radius:60px;
    -moz-border-radius:60px;
    border-radius:60px;
    z-index: 999;
    border: 2px solid var(--white);
}
#back_to_top .arrow-ic {
    position:absolute;
    top:50%;
    left:50%;
    margin-left:-8px;
    margin-top:-12px;
    height:0;
    width:0;
    border:8px solid transparent;
    border-bottom-color:#ffffff;
}
#back_to_top:hover {
    background-color: var(--orange);
    opacity:1;
    filter:
    "alpha(opacity=100)";
    -ms-filter:"alpha(opacity=100)";
}