
/* Default CSS */

* {
    box-sizing: border-box;
    outline: none;
}

html {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--body-font);
}

body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--body-font);
    background: #ffffff;
    letter-spacing: 0.6px;
}

body::-webkit-scrollbar {
    width: 6px;
  }
      
body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgb(255, 255, 255);
}

body::-webkit-scrollbar-thumb {
    background-color:#53bffd;
    outline: 1px solid rgb(116, 182, 248); 
}

.loader {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 11111111111;
}
.loader img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 240px;
}

@font-face {
    font-family: 'Mont';
    src: url('../fonts/Mont-Black.eot');
    src: url('../fonts/Mont-Black.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Mont-Black.woff2') format('woff2'),
        url('../fonts/Mont-Black.woff') format('woff'),
        url('../fonts/Mont-Black.ttf') format('truetype'),
        url('../fonts/Mont-Black.svg#Mont-Black') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mont';
    src: url('../fonts/Mont-Bold.eot');
    src: url('../fonts/Mont-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Mont-Bold.woff2') format('woff2'),
        url('../fonts/Mont-Bold.woff') format('woff'),
        url('../fonts/Mont-Bold.ttf') format('truetype'),
        url('../fonts/Mont-Bold.svg#Mont-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mont';
    src: url('../fonts/Mont-SemiBold.eot');
    src: url('../fonts/Mont-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Mont-SemiBold.woff2') format('woff2'),
        url('../fonts/Mont-SemiBold.woff') format('woff'),
        url('../fonts/Mont-SemiBold.ttf') format('truetype'),
        url('../fonts/Mont-SemiBold.svg#Mont-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mont';
    src: url('../fonts/Mont-Regular.eot');
    src: url('../fonts/Mont-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Mont-Regular.woff2') format('woff2'),
        url('../fonts/Mont-Regular.woff') format('woff'),
        url('../fonts/Mont-Regular.ttf') format('truetype'),
        url('../fonts/Mont-Regular.svg#Mont-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mont';
    src: url('../fonts/Mont-Light.eot');
    src: url('../fonts/Mont-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Mont-Light.woff2') format('woff2'),
        url('../fonts/Mont-Light.woff') format('woff'),
        url('../fonts/Mont-Light.ttf') format('truetype'),
        url('../fonts/Mont-Light.svg#Mont-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

img  {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--heading-font);
}

p {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    outline: none;
    border: none;
    font-weight: 500;
    -webkit-transition: color 350ms ease-in-out;
    -moz-transition: color 350ms ease-in-out;
    -ms-transition: color 350ms ease-in-out;
    -o-transition: color 350ms ease-in-out;
    transition: color 350ms ease-in-out;
}

a:focus,
a:hover {
    text-decoration: none;
    outline: none;
}

button:focus {
 outline: none;
}
title {
    text-transform: capitalize;
}

:root {
    --heading-font: 'Mont';
    --body-font: 'Mont';
    --primary-color: #06476F;
    --secondary-color: #F3AA18;
    --black-color: #000;
    --lightblack: #222222;
    --white-color: #fff;
    --darkgrey: #868686;
    --lightgrey: #636363;
    --green: #069697;
    --red: #EA3D2F;
}

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

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

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

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

.pt-100 {
    padding-top: 100px;
}

.pt-50 {
    padding-top: 50px;
}

.pb-100 {
    padding-bottom: 100px;
}

/* main css start */

.site-header {
    width: 100%;
    position: relative;
}

.top-header {
    background: #53AFE6;
    padding: 14px 100px;
}

.call i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #fff;
    border-radius: 100%;
    margin-right: 15px;
    color: #53afe6;
}

.call a {
    color: #ffffff;
    margin-right: 40px;
}

.social-info {
    float: right;
    position: relative;
}

.social-info a {
    margin-right: 15px;
}

.social-info i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #fff;
    border-radius: 100%;
    color: #53afe6;
}

.header-navbar {
    position: relative;
    padding: 10px 100px;
}

.header-navbar .navbar-expand-lg .navbar-nav .nav-link { 
    text-transform: uppercase;
    color: #222;
    font-size: 16px;
   font-weight: 500;
       line-height: 24px;
    padding-top: 5px;
    padding-bottom: 0;
    position: relative;
}

.header-navbar .navbar {
   padding: 5px 1rem;
}

.header-navbar .navbar-brand {
    max-width: 220px;
}

.header-navbar .navbar-nav .nav-link:after {
    content: '';
    display: block;
    margin: auto;
    height: 5px;
    width: 0;
    position: relative;
    bottom: 0px;
    background: 0 0;
    -webkit-transition: width .2s ease,background-color .2s ease;
    transition: width .2s ease,background-color .2s ease;
}

.header-navbar .navbar-nav .nav-item:hover 
.nav-link:after {
    width: 5px;
    height: 5px;
    background: #06476F;
    color: #06476F;
    border-radius: 100%;
}

.header-navbar .navbar-expand-lg .navbar-nav .nav-link:hover {
    color: #06476F;  
}

.social-info a:last-child {
    margin-right: 0;
}

.header-navbar .navbar-expand-lg .navbar-nav .nav-link {
    margin-left: 5rem;
}

.header-navbar .navbar .dropdown-toggle::before{
    border: none;
    content: '\f107';
    font-family: 'FontAwesome';
    position: absolute;
    right: -15px;
    top: 0px;
    transition: all 0.3s;
    transform: rotate(0deg);
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 17px;
}
.header-navbar .navbar .dropdown-toggle::after{
	display: none;
}
.header-navbar .nav-item.show  .dropdown-toggle::before {
	transform: rotate(180deg);
}

.header-navbar .dropdown-menu {
    box-shadow: inset 0px 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 0px 0px 5px 5px;
    margin-top: 36px;
    overflow: hidden;
}

.header-navbar .dropdown-item.active, .header-navbar .dropdown-item:active {
    color: #000000;
    text-decoration: none;
    background-color: #ffffff;
  }

  .header-navbar .dropdown-item:hover, .header-navbar .dropdown-item:focus {
      background: transparent;
  }

  .header-navbar .dropdown-item {
    color: #000;
    font-weight: 400;
    line-height: 24px;
    font-size: 16px; 
  }

  .header-navbar .dropdown-divider {
    border-top: 1px solid #858585;
  }
  .dropdown-menu a {
      position: relative;
  }
  .header-navbar .dropdown-menu a:last-child:after {
    content: '';
    position: absolute;
    background: #53afe6;
    width: 100%;
    height: 6px;
    bottom: -8px;
    left: 0;
}

/* hero images section start */

.hero_image-section {
  position: relative;
  background: url(../img/home/hero-image-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 100px 100px 10px;
}

.inner-images-box {
   width: 100%;
    position: relative;
}

.inner-images-box img {
    width: 100%;
}

.hero-text {
    position: absolute;
    top: 45%;
    left: 30%;
    transform: translate(-30%, -45%);
    max-width: 900px;
}

.hero-text p {
    font-size: 18px;
    color: #ffffff;
    line-height: 28px;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-text h1 {
    font-weight: 800;
    font-size: 66px;
    line-height: 72px;
    color: #ffffff;
    text-transform: uppercase;
}

.Tags-line-bottom {
    position: relative;
    padding: 60px 160px;
    margin: 50px 0px;
}

.Tags-line-bottom .row {
    align-items: center;
}

.Tags-line-bottom:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(196, 196, 196, 0) 0%, #FFFFFF 50%, rgba(196, 196, 196, 0) 100%);
    opacity: 0.2;
}

.tag_line-text h2 {
    font-size: 44px;
    color: #ffffff;
    font-weight: 700;
    line-height: 50px;
}

.Get_quote-btn a {
    background: #53AFE6;
    box-shadow: 0px 4px 14px rgb(83 175 230 / 35%);
    border-radius: 5px;
    padding: 18px 40px;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
}

/* services section css */

.services-section {
    width: 100%;
    position: relative;
}
.section-header {
    width: 100%;
    position: relative;
    padding-bottom: 40px;
}

.section-header h2 {
    font-size: 44px;
    font-weight: bold;
    line-height: 48px;
}
.services-box {
    border: 1px solid #53AFE6;
    box-sizing: border-box;
    box-shadow: 0px 4px 12px #d2ebff;
    border-radius: 10px;
    padding: 50px 20px;
    text-align: center;
    height: 320px;
}

.services-section .col-lg-3 {
    padding-right: 10px;
    padding-left: 10px;
} 

.services-icon img {
    width: 70px;
    padding-bottom: 25px;
}

.service-text h4 {
    color: #222222;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    padding-bottom: 10px;
}

.service-text p {
    color: #646464;
    font-weight: 500;
    line-height: 20px;
    font-size: 14px;
}

.service-view-more-btn {
    position: absolute;
    bottom: -26px;
    left: 50%;
    transform: translate(-50%);
}

.service-text .service-view-more-btn a i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    background: #53AFE6;
    box-shadow: 0px 8px 20px rgb(35 112 200 / 32%);
}


/* Latest projects css start */

.Latest_projects-section {
    position: relative;
    background: rgba(6, 71, 111, 0.07);
}

.Latest_projects-section .filters {
    text-align: center;
    position: relative;
  }
  .Latest_projects-section .filters ul {
    padding: 0;
  }
  .Latest_projects-section .filters ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 40px;
    cursor: pointer;
    position: relative;
    border: 2px solid #06476F;
    box-sizing: border-box;
    border-radius: 3px;
    color: #06476F;
    font-weight: 600;
    margin-left: 10px;
    margin-right: 10px;
  }
  .Latest_projects-section .filters ul li:after {
    content: "";
    display: block;
    width: calc(0% - 60px);
    position: absolute;
    height: 1px;
    background: #ffffff;
    transition: width 350ms ease-out;
  }
  /* .Latest_projects-section .filters ul li:hover:after {
    width: calc(100% - 60px);
    transition: width 350ms ease-out;
    color: #000;
  } */
  /* .Latest_projects-section .filters ul li.active:after {
    width: calc(100% - 60px);
  } */
  .Latest_projects-section .filters ul li.active {
    background: #06476F;
    box-shadow: 0px 8px 20px rgba(6, 71, 111, 0.32);
    border-radius: 3px;
    color: #ffffff;
  }

  .Latest_projects-section .filters-content {
    margin-top: 50px;
  }
  .Latest_projects-section .filters-content .show {
    opacity: 1;
    visibility: visible;
    transition: all 350ms;
  }
  .Latest_projects-section .filters-content .hide {
    opacity: 0;
    visibility: hidden;
    transition: all 350ms;
  }
  .Latest_projects-section .filters-content .item {
    cursor: pointer;
    margin-bottom: 30px;
    border: 1px solid #53AFE6;
    box-sizing: border-box;
    box-shadow: 0px 4px 12px #D2EBFF;
    border-radius: 10px;
    overflow: hidden;
  }

  .Latest_projects-section .filters-content .col-lg-4:nth-child(3n+1) { 
      clear: both;
  }

  .Latest_projects-section .filters-content .item .p-inner {
    padding: 15px 15px;
    background: #FFFFFF;
    position: relative;
  }
  .Latest_projects-section .filters-content .item .p-inner .project-info h5 {
    font-size: 14px;
    color: #868686;
    line-height: 18px;
    font-weight: 400;
    padding-bottom: 5px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }
  .Latest_projects-section .filters-content .item .p-inner .project-info .cat {
    font-size: 18px;
    color: #222222;
    font-weight: 700;
    line-height: 24px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }
  .Latest_projects-section .filters-content .item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  .Latest_projects-section .filters-content .item .p-inner .project-info {
    width: 80%;
    display: inline-block;
}
.Latest_projects-section .filters-content .item .p-inner .view-more-btn {
    position: absolute;
    right: 20px;
    top: 20px;
  }

  button.search_button {
    background: #53AFE6;
    box-shadow: 0px 4px 14px rgb(83 175 230 / 35%);
    border-radius: 5px;
    padding: 15px 30px;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
    border: none;
    letter-spacing: 0.3px;
}

  /* .Latest_projects-section .filters-content .item .p-inner:hover .view-more-btn {
      display: block;
  } */

  .Latest_projects-section .filters-content .item .p-inner .view-more-btn a i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    background: #53AFE6;
    box-shadow: 0px 8px 20px rgb(35 112 200 / 32%);
}

.ps-pagination {
    text-align: center;
    width: 100%;
    margin-top: 20px;
}

.pagination li {
    display: inline-block;
    margin-right: 10px;
    vertical-align: top;
}

.pagination li > a {
    position: relative;
    display: inline-block;
    z-index: 30;
    color: #868686;
    line-height: 50px;
    width: 50px;
    height: 50px;
    border: none;
    background-color: transparent;
    vertical-align: middle;
    font-size: 16px;
    border: 2px solid #868686;
    border-radius: 50%;
}

.pagination li.active {
    border: none;
}

.pagination li.active a {
    background-color: rgb(83 175 230);
    color: #ffffff;
    border: 2px solid rgb(83 175 230);
    box-shadow: 0px 8px 20px rgba(35, 112, 200, 0.32);
}

/* testimonial section css  */

.testimonial-section {
    width: 100%;
   position: relative;
}

.testimonial-section .section-header {
   padding-bottom: 0px;
}

.testimonial-section .section-header h2 {
    font-size: 36px;
    line-height: 42px;
}


.Write-reviews-btn .btn {
    background: #53AFE6;
    box-shadow: 0px 4px 14px rgb(83 175 230 / 35%);
    border-radius: 5px;
    padding: 18px 40px;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
}
.reviews-message {
    background: #FFFFFF;
    box-shadow: 0px 4px 24px rgb(0 0 0 / 5%);
    border: 1px solid #d5d5d526;
    padding: 30px;
    position: relative;
}

.reviews-message:after {
    bottom: -30px;
    box-sizing: border-box;
    color: #fff;
    content: '';
    display: block;
    height: 30px;
    left: 25px;
    position: absolute;
    right: 445px;
    text-size-adjust: 100%;
    width: 20px;
    column-rule-color: #fff;
    perspective-origin: 15px 15px;
    transform-origin: 15px 15px;
    filter: drop-shadow(rgba(0, 0, 0, .0980392) 2px 2px 1px);
    border-top: 22px solid #fff;
    border-right: 22px solid transparent;
    border-bottom: 0 solid transparent;
    border-left: 22px solid transparent;
    outline: #fff none 0;
}

.reviews-message p { 
    color: #636363;
    font-style: italic;
    font-size: 14px;
    line-height: 22px;
    font-weight: 300;
}

.customer-profile {
    display: flex;
    align-items: center;
    padding-top: 30px;
}

.profile-icon img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 20px;
}

.profile-info h4 {
    font-size: 16px;
    color: #53afe6;
    line-height: 24px;
    padding-bottom: 3px;
}

.profile-info p {
    color: #868686;
    font-size: 14px;
}

.customer-reviews .slick-next {
    top: auto;
    bottom: -140px;
    right: 80px;
}

.customer-reviews button.slick-next.slick-arrow {
    position: absolute;
    background: url(../img/home/next.png);
    width: 50px;
    height: 20px;
    z-index: 1;
    background-size: 50px 20px;
    background-repeat: no-repeat;
}
.customer-reviews button.slick-next.slick-arrow:before {
    display: none;
}
.customer-reviews .slick-next {
    top: auto;
    bottom: 30px;
    right: 0px;
}
.customer-reviews button.slick-prev.slick-arrow {
    position: absolute;
    background: url(../img/home/prev.png);
    width: 50px;
    height: 20px;
    z-index: 1;
    background-size: 50px 20px;
    background-repeat: no-repeat;
}
.customer-reviews button.slick-prev.slick-arrow:before {
    display: none;
}
.customer-reviews .slick-prev {
    top: auto;
    bottom: 30px;
    left: 88%;
}


/* why choose section */

.faq-content-main{
   width: 100%;
   position: relative;
  }
  .faq-inner-con{
    margin: 0px;
    padding: 0px;
  }
  .faq-inner-con .set{
    margin-bottom: 10px;
    padding: 20px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    border-radius: 6px;
  }
 
  .faq-inner-con .set a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.02em;
    color: #414141;
  }
  .faq-inner-con .set a i{
    color: #53AFE6;
  }
  .faq-inner-con .content{
  display:none;
  }
  .faq-inner-con .set  .faq-item-main.active{
    border-top: none;
    border-bottom: none;
    z-index: 1;
    background: #fff;
    position: relative;
  }
  .faq-inner-con .content p{
    font-size: 14px;
    line-height: 20px;
    color: #868686;
    margin: 20px 0 0 0;
    font-family: 'Mont';
    font-weight: 300;
  }
  .faq-inner-con .set a.active i{
    color: #53AFE6;
  }
  
  .faq-inner-con .set .faq-item-main.active a {
    color: #0474ba;
  }
  .faq-inner-con.active .set {
    border-bottom: none;
  }

.Why_choose-right-content h3 {
    font-size: 36px;
    font-weight: 700;
    line-height: 42px;
    padding-bottom: 40px;
}

.Why_choose-right-content {
    position: relative;
    padding: 100px 0px 0px;
}

/* Latest news section css */

.Latest-news-section {
  position: relative;
  background: rgba(6, 71, 111, 0.07);
}

.news-slider .slick-slide {
    display: block;
    margin-right: 20px;
}

.news-section-box {
    background: #FFFFFF;
    border: 1px solid rgba(134, 134, 134, 0.2);
    box-sizing: border-box;
    border-radius: 10px;
    overflow: hidden;
}

.news-desc {
    padding: 25px;
    position: relative;
    height: 210px;
}

.date {
    color: #868686;
    font-size: 14px;
    line-height: 22px;
    padding-bottom: 15px;
}

.news-desc h4 {
    color: #222222;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    padding-bottom: 15px;
}

.news-desc a {
    color: #53AFE6;
}

.news-view-more-sec a {
    background: #53AFE6;
    box-shadow: 0px 4px 14px rgb(83 175 230 / 35%);
    border-radius: 5px;
    padding: 18px 40px;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;

}

.news-slider button.slick-next.slick-arrow {
    position: absolute;
    background: url(../img/home/next.png);
    width: 50px;
    height: 20px;
    z-index: 1;
    background-size: 50px 20px;
    background-repeat: no-repeat;
}
.news-slider button.slick-next.slick-arrow:before {
    display: none;
}
.news-slider .slick-next {
    top: -60px;
    right: 22px;
}

.news-slider button.slick-prev.slick-arrow {
    position: absolute;
    background: url(../img/home/prev.png);
    width: 50px;
    height: 20px;
    z-index: 1;
    background-size: 50px 20px;
    background-repeat: no-repeat;
}
.news-slider button.slick-prev.slick-arrow:before {
    display: none;
}
.news-slider .slick-prev {
    top: -60px;
    left: 86%;
}

/* Number CTA section css start */

.Number-CTA-section {
    background: url(../img/home/Bubble.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.Number-CTA-right-sec {
    position: relative;
    margin-left: 80px;
}

.Number-CTA-left-sec h2 {
    font-size: 42px;
    font-weight: bold;
    line-height: 48px;
}

.Number-CTA-right-box {
    display: flex;
    align-items: flex-end;
}
.count-number h2 {
    color: #06476F;
    font-size: 48px;
    font-weight: bold;
    line-height: 54px;
    float: left;
    margin-right: 10px;
}

.CTA-info {
    display: flex;
    flex-direction: column;
}

.CTA-info i {
    font-size: 24px;
    color: #53AFE6;
    line-height: 24px;
}

.CTA-info span {
    font-size: 30px;
    color: #06476F;
    font-weight: 600;
}

/* site-footer css */

.site-footer {
    position: relative;
    background: #06476F;
}

.site-footer.pt-100 {
    padding-top: 80px;
}

.sec-title h4 {
    font-weight: 700;
    font-size: 24px;
    line-height: 26px;
    color: #ffffff;
    padding-bottom: 20px;
}

.footer-about p {
   color:rgba(255, 255, 255, 0.5);
   font-size: 15px;
   font-weight: 300;
}

.footer-navbar {
    display: flex;
    justify-content: space-between;
}

.quick-link-list li {
    padding-bottom: 20px;
}

.quick-link-list li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    line-height: 20px;
    font-weight: 300;
}

.Address {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.Address .icon i {
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border-radius: 7px;
    color: #fff;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.2);
} 

.Address .info p,
.Address .info p a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 300;
}

.ABN {
    position: relative;
    padding-bottom: 15px;
}

.Address .info {
    margin-left: 15px;
}

.ABN h4 {
    font-size: 20px;
    line-height: 24px;
    padding-bottom: 5px;
    font-weight: 700;
    color: #fff;
}

.ABN p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;  
    font-weight: 300;  
}

.bottom-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #53afe6;
    padding: 15px 40px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-top: 20px;
}

.copyright p {
    color: #ffffff;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 300;
}

.copyright p a {
    color: #ffffff;
}

/* About us css start */

.page_header-section {
    background: url(../img/home/hero-image-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px;
}

.inner-page-box img {
    width: 100%;
}

.ps-breadcrumb {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-20%, -50%);
}

.ps-breadcrumb h2 {
    font-size: 60px;
    line-height: 72px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
}

.inner-page-box {
    position: relative;
}

.director-info h2 {
    color: #222222;
    font-size: 36px;
    font-weight: bold;
    line-height: 42px;
    padding-bottom: 5px;
}

.director-info h4 {
    color: #53AFE6;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.director-info p {
    color: #646464;
    line-height: 26px;
    font-size: 15px;
}


/* contact us page css  */

.contact_us-left-section {
    background: url(../img/home/contact-left-section.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 60px;
    border-radius: 10px;
}

.contact-info-sec h3 {
    color: #ffffff;
    font-size: 30px;
    font-weight: bold;
    line-height: 36px;
    padding-bottom: 25px;
}

.contact-form h2 {
    font-weight: 700;
    font-size: 40px;
    line-height: 40px;
    padding-bottom: 10px;
}

.contact-form-action .form-control {
    height: 54px;
    padding: 0.375rem 1rem;
}

.contact-info-sec .Address .info p, .contact-info-sec .Address .info p a {
    color: #ffffff;
    font-size: 16px;
}

.contact-form-action .form-control:focus,
.contact-form .textarea-messages:focus {
    border-color: #53AFE6;
    outline: 0;
    box-shadow: 0 0 0 0.1rem rgb(0 123 255 / 25%);
}

.contact-form-action .textarea-messages {
    padding: 0.8rem 1rem;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.contact-form-action button { 
    background: #53AFE6;
    box-shadow: 0px 4px 14px rgb(83 175 230 / 35%);
    border-radius: 5px;
    padding: 18px 40px;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    border: none;
}

.contact-form-action button:focus {
    border: none;
    outline: none;
}


/* project pages css  */

.project-section.pb-100 {
    padding-bottom: 50px;
}

.search-sec .form-control {
    height: 54px;
    padding: 0.375rem 1rem;
}

.search-sec .form-control:focus {
    outline: none;
    box-shadow: none;
}

.right-sorting-sec {
  display: flex;
  justify-content: flex-end;
}
.sort-by .dropdown .btn {
    padding: 14px 1rem;
    background: #ffffff;
    border: 1px solid #53AFE6;
    color: #53AFE6 !important;
    border: 1px solid #53AFE6;
}

.sort-by .dropdown .btn:hover {
    background: #ffffff;
}
.sort-by .dropdown .btn:focus-within {
    border: 1px solid #53AFE6;
    box-shadow: none;
}
.sort-by .bootstrap-select .dropdown-toggle:focus {
    outline: 0px auto -webkit-focus-ring-color!important;
    outline-offset: 0px;
    box-shadow: none;
}

.sort-by .dropdown-menu {
    padding: 0px;
}

.sort-by .dropdown-item {
    padding: 0.8rem 1.5rem;
}

.project-box {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 60px;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 285px;
    object-fit: cover;
    border-radius: 10px;
}

.project-box .project-info {
    position: relative;
    padding: 20px 0px;
}

.project-box .project-info h5 {
    color: #53AFE6;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 24px;
    padding-bottom: 5px;
}

.project-box .project-info h2 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    padding-bottom: 12px;
}

.project-box .project-info p {
    color: #646464;
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 2px;
}

.view-more.Get_quote-btn {
    position: absolute;
    right: 15px;
    bottom: -14px;
}

/* blog css start */

.blog-article {
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid #DCDCDC;
    box-sizing: border-box;
    border-radius: 15px;
    margin-bottom: 40px;
}
.news-desc.blogs-info .date {
    color: #53AFE6;
    font-size: 16px;
    padding-bottom: 10px;
}

.news-desc.blogs-info {
    height: auto;
}

.blogs-image img {
    height: 500px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.recent-blogs h4 {
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    padding-bottom: 20px;
    color: #121212;
}

.recent-list li {
 margin-bottom: 15px;
}
.recent-list li a {
    font-size: 14px;
    color: #868686;
    line-height: 24px;
}
.recent-list li a i {
    color: #53AFE6;
    margin-right: 10px
}

/* project details css */

.project-image-info {
    background: url(../img/home/hero-image-bg.png);
    background-size: cover;
    background-position: right 100%;
    background-repeat: no-repeat;
    padding-left: 160px;
    padding-right: 160px;
}

.details-info {
    background: #FFFFFF;
    border-radius: 10px;
    position: absolute;
    right: -30%;
    top: 50%;
    transform: translate(30%, -50%);
    padding: 40px;
    width: 80%;
}

.image-block {
    position: relative;
    width: 100%;
}

.image-block_property-sec img {
    filter: drop-shadow(0px 4px 20px rgba(255, 255, 255, 0.2));
    border-radius: 10px;
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.project-images-left-img-sfgd img {
    width: 100%;
}

.details-info h4 {
    color: #121212;
    font-size: 32px;
    line-height: 32px;
    font-weight: 700;
    padding-bottom: 15px;
}

.details-info p span {
    color: #53AFE6;
    text-transform: capitalize;
}

.details-info p {
    padding-bottom: 15px;
    font-size: 16px;
    line-height: 22px;
    color: #868686;
    text-transform: uppercase; 
}

.section-header p {
    color: #636363;
    font-size: 16px;
    line-height: 24px;
}

.gallery-section {
    overflow: hidden;
    position: relative;
}

.gallery-slider,
.gallery-slider-desk {
    position: relative;
    padding: 0px;
}
.gallery-slider-desk .slick-slide img {
    height: 380px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery-slider .slick-prev:before, .gallery-slider .slick-next:before,
.gallery-slider-desk .slick-prev:before, .gallery-slider-desk .slick-next:before {
  display: none;
}
.gallery-slider-desk .slick-prev,
.gallery-slider .slick-prev {
    position: absolute;
    top: 50%;
    left: 20px;
    width: 60px;
    height: 60px;
    z-index: 1;
    background: url(../img/home/prev.svg);
    background-size: 60px;
    border-radius: 50%;
    box-shadow: 1px 2px 3px #0006;
}
.gallery-slider-desk .slick-next,
.gallery-slider .slick-next {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 1;
    background: url(../img/home/next.svg);
    background-size: 60px;
    border-radius: 50%;
    box-shadow: 1px 2px 3px #0006;
}

.caption {
    position: absolute;
    bottom: 100px;
    left: 200px;
}

.gallery-slider .caption,
.gallery-slider-desk .caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
}

.caption-list {
    display: flex;
    margin-bottom: 0;
    background: #ffffff;
    padding: 8px 10px;
    border-radius: 5px;
}

.caption-list li {
    padding: 0 10px;
    border-right: 1px solid #06476F; 
}

.caption-list li:last-child { 
    border: none;
}
.caption-list li a {
    color: #898989;
}

.caption-list li a i {
  padding-right: 5px;
}

.caption-list li a.active {
    color: #06476F;
}
.contact-with-us {
    background: #06476F;
    border-radius: 10px;
    position: relative;
    padding: 40px;
}

.contact-with-us h4 {
    font-size: 22px;
    color: #ffffff;
    font-weight: 600;
    line-height: 28px;
    padding-bottom: 5px;
}

.contact-with-us p {
    font-size: 12px;
    color: #ffffff;
    line-height: 18px;
    font-weight: 300;
    padding-bottom: 5px;
}
.icon-info {
    float: left;
    width: 25px;
}
.address-info {
    overflow: hidden;
    margin-left: 40px;
}

.address-info h5 {
    font-weight: 300;
    font-size: 16px;
    line-height: 16px;
    color: #ffffff;
    padding-bottom: 4px;
}
.address-info a {
    font-weight: 300;
    font-size: 12px;
    line-height: 16px;
    color: #ffffff;
}

.social-icon a {
    color: #f2f2f2;
    margin-right: 30px;
}

.send-enquiry-right-sec h2 {
    color: #06476F;
    font-size: 36px;
    line-height: 42px;
    font-weight: 700;
    padding-bottom: 5px;
}

.send-enquiry-right-sec p {
    color: #646464;
    font-size: 14px;
}

.project-details-left-sec {
    border: 1px solid rgba(100, 100, 100, 0.2);
    box-sizing: border-box;
    border-radius: 6px;
    padding: 20px;
}

.desc-info-sec {
    position: relative;
    padding: 20px 0;
}

.desc-name h4 {
    color: #53AFE6;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 24px;
    padding-bottom: 4px;
}

.desc-name h1 {
    color: #222222;
    font-size: 28px;
    font-weight: bold;
    line-height: 34px;
}

.share a {
    color: #53AFE6;
    font-size: 22px;
    margin-left: 20px;
}

.desc-info-sec p {
    color: #646464;
    line-height: 26px;
    font-size: 15px;
    padding-bottom: 10px;
}

.floor-plan-btn a {
    background: #53AFE6;
    box-shadow: 0px 4px 14px rgb(83 175 230 / 35%);
    border-radius: 5px;
    padding: 18px 40px;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
}
.details-right-sec {
    background: #FFFFFF;
    box-shadow: 0px 20px 80px rgb(0 46 60 / 10%);
    border-radius: 20px;
    padding: 25px;
}

.details-right-sec h3 {
    color: #121212;
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
}

.details-right-sec h5 {
    color: #2a2a2a;
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    padding-top: 10px;
    padding-bottom: 15px;
}

.number i {
    background: #53AFE6;
    box-shadow: 0px 8px 20px rgb(35 112 200 / 32%);
    border-radius: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #ffffff;
    margin-right: 10px;
}

.number {
    color: #646464;
    font-size: 16px;
    font-weight: 600;
}

.blog-title h2 {
    color: #121212;
    font-size: 24px;
    line-height: 32px;
    font-weight: bold;
    padding-bottom: 15px;
}

.news-desc.blogs-info p {
    color: #646464;
    line-height: 26px;
    font-size: 15px;
    padding-bottom: 20px;
}

.latest-blogs {
    background: #FFFFFF;
    box-shadow: 0px 20px 80px rgb(0 46 60 / 10%);
    border-radius: 20px;
    padding: 20px;
}
.latest-blogs h4 {
    font-size: 22px;
    line-height: 26px;
    font-weight: 700;
    padding-bottom: 15px;
}

.recent-posts {
    display: flex;
    flex-direction: row;
    padding-bottom: 20px;
}

.date-posts {
    background: #53AFE6;
    border-radius: 10px;
    flex-basis: 50px;
    height: 50px;
    text-align: center;
    padding: 5px 0;
}

.date-posts h6 {
    color: #fff;
    font-size: 18px;
}

.date-posts p {
    font-size: 12px;
    color: #fff;
    font-weight: 100;
}

.recent-posts__item {
    position: relative;
    margin-left: 10px;
}

.recent-posts__item h5 {
    color: #06476F;
    font-size: 16px;
    line-height: 22px;
}

.recent-posts__item p {
    color: #868686;
    font-size: 14px;
}

.date-sec {
    position: absolute;
    right: 0;
    top: 80px;
    transform: rotate(90deg);
    background: #ffffff;
    padding: 10px 20px;
}

.post-details {
    background: #FFFFFF;
    border: 1px solid #DCDCDC;
    box-sizing: border-box;
    padding: 25px;
}

.post-details h2 {
    color: #060D22;
    font-size: 20px;
    line-height: 24px;
    padding-bottom: 10px;
    font-weight: 700;
}

.post-details p {
    color: #636363;
    font-size: 15px;
    line-height: 22px;
    padding-bottom: 5px;
}

.post-details a {
    margin-top: 20px;
    color: #53AFE6;
}

.article-post:hover {
    box-shadow: 0px 10px 70px rgba(6, 13, 34, 0.1);
    border: none;
}

.article-post:hover .date-sec {
    background: #000000;
    color: #ffffff;
}

.article-post:hover .post-details {
    border: 1px solid #fff;
}

.prev-btn a, .next-btn a {
    background: #53AFE6;
    box-shadow: 0px 4px 14px rgb(83 175 230 / 35%);
    border-radius: 5px;
    padding: 18px 40px;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    border: none;
    width: 180px;
}

.paginations-btn {
    position: relative;
    margin: 40px 0px 0px;
}

.prev-btn button:focus, .next-btn button:focus {
    outline: none;
    border: none;
}

/* Residential construction & project-management css */


.residential-right-sec {
    position: relative;
    padding-top: 80px;
}

.residential-right-sec h2 {
    font-size: 44px;
    font-weight: bold;
    line-height: 48px;
}

.residential-content {
    border: 1px solid #53AFE6;
    box-sizing: border-box;
    box-shadow: 0px 4px 42px rgb(0 0 0 / 10%);
    border-radius: 10px;
    padding: 40px;
    position: absolute;
    left: -120px;
    margin-top: 40px;
    background: #ffffff;
    max-width: 600px;
}

.residential-content h5 { 
    color: #222222;
    font-weight: 700;
    font-size: 15px;
    line-height: 22px;
    
}

.residential-content ul {
    margin: 0;
    padding-top: 15px;
    padding-left: 15px;
}

.residential-content ul li {
    color: #646464;
    font-weight: 500;
    line-height: 24px;
    font-size: 14px;
    padding-bottom: 10px;
}

.residential-content p,
.land-subdivision-right-sec p,
.land-subdivision-content-bottom p {
    color: #646464;
    font-weight: 500;
    line-height: 24px;
    font-size: 14px;
    padding-bottom: 15px;
}

.residential-content-bottom {
    position: relative;
    margin-top: 100px;
}

.residential-content-bottom p {
    color: #646464;
    font-weight: 500;
    line-height: 24px;
    font-size: 14px;
    padding-bottom: 15px;
}
.res-futures-list li img {
    width: 21px;
    float: left;
    margin-right: 10px;
}
.res-futures-list li p {
    overflow: hidden;
    padding-bottom: 10px;
}

.res-futures h5 {
    color: #222222;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    padding-bottom: 15px;
}
.residential-content-bottom p:last-child {
    padding-bottom: 0px;
}

/* project feasibility page */

.feasibility-image {
    width: 100%;
    position: relative;
}

.feasibility-content-sec {
    position: absolute;
    bottom: -60px;
    right: -80px;
    max-width: 920px;
    border: 1px solid #53AFE6;
    box-sizing: border-box;
    box-shadow: 0px 4px 42px rgb(0 0 0 / 10%);
    border-radius: 10px;
    background: #ffffff;
    padding: 40px;
}

.feasibility-content-sec p {
    color: #646464;
    font-weight: 500;
    line-height: 24px;
    font-size: 14px;
    padding-bottom: 15px;
}

.feasibility-content-bottom p {
    color: #646464;
    font-weight: 500;
    line-height: 24px;
    font-size: 14px;
    padding-bottom: 15px;
}
.feasibility-content-sec p:last-child,
.feasibility-content-bottom p:last-child {
    padding-bottom: 0px;
}
.phone-icon i {
    background: #53AFE6;
    box-shadow: 0px 8px 20px rgb(35 112 200 / 32%);
    border-radius: 10px;
    color: #ffffff;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
}

.Telephone {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.phone-text h5 {
    color: #53AFE6;
    font-size: 16px;
    font-weight: bold;
    line-height: 22px;
}

.phone-text a {
    color: #646464;
    font-size: 14px;
}

.phone-text {
    margin-left: 15px;
    position: relative;
}

.contact-info-bottom {
    display: flex;
    align-items: center;
    margin-top: 20px;
}


/*  Real Estate Guide page css */

.real-estate-box {
    background: url(../img/home/real-estate-sec-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    padding: 60px 30px;
    border-radius: 10px;
}

.real-estate-right-content {
    position: relative;
   background: rgba(0, 0, 0, 0.5);
   padding: 20px;
   border-radius: 10px;
}

.real-estate-right-content p {
    color: #ffffff;
    font-weight: 300;
    line-height: 24px;
    font-size: 14px;
    padding-bottom: 15px;
}

.real-estate-right-content .phone-text a {
    color: #ffffff;
    font-weight: 300;
}

/*  finance solution page css */

.finance-solution-right-sec {
    position: relative;
    margin-top: 140px;
}

.finance-solution-right-sec p {
color: #646464;
font-weight: 500;
line-height: 24px;
font-size: 14px;
padding-bottom: 15px;
}

.finance-content-bottom p {
    color: #646464;
    font-weight: 500;
    line-height: 24px;
    font-size: 14px;
    padding-bottom: 10px;
}

.error{
    color: #ff3333;
    font-size: 14px;
    margin-bottom: 0px;
}

/* 9 march css   */

.property-gallery-sec {
    width: 100%;
    display: inline-block;
    padding-left: 100px;
    padding-right: 100px;
}

.property-gallery-sec img {
    width: 100%;
    height: 700px;
    object-fit:cover;
    object-position: center;
    border-radius: 5px;
}

.gallery-sec-box .modal-dialog {
    max-width: 100%;
    min-height: calc(100% - 0rem);
    height: 100%;
    margin: 0;
}

.gallery-sec-box {
    padding-right: 0 !important;
    height: 100vh;
}

.gallery-sec-box .modal-content {
    width: 100%;
    padding: 15px 0px 0px;
    border-radius: 0px;
}

.gallery-sec-box .modal-header .close {
    padding: 0.8rem 2rem;
    margin: -1rem 0rem 0rem auto;
    border: 1px solid #444;
    border-radius: 5px;
    font-size: 16px;
}

.gallery-slider.slick-dotted.slick-slider {
    margin-bottom: 0px;
}

.gallery-sec-box .modal-body {
    padding: 1rem 0px;
}

.gallery-slider.modal-slick .slick-slide img {
    height: 88vh;
    width: 100%;
    object-fit: contain;
    object-position: center;
}


#return-to-top {
    position: fixed;
    bottom: 80px;
    right: 40px;
    background: rgb(83 175 230);
    width: 45px;
    height: 45px;
    text-align: center;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    top: 12px;
    font-size: 16px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top:hover {
    background: rgb(12 131 203);
}
#return-to-top:hover i {
    color: #fff;
    top: 10px;
}


/* ====  css end ==== */
