@charset "UTF-8";

body {
  color: #000;
  font-size: 16px;
  font-family: "Poppins";
  font-weight: normal;
}

main {
  position: relative;
  z-index: 9;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 600;
}

a,
button {
  text-decoration: none;
  border: 0;
  transition: all 0.3s ease;
}

p {
  margin-bottom: 1.7rem;
  line-height: 1.5;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

picture {
  display: block;
  text-align: center;
}

.card {
  border: 0;
  border-radius: 0;
  background: none;
}

.bg-gray {
  background: #F2F0F0 !important;
}

.bg-skyblue {
  background: #5DAEE8 !important;
}

.bg-blue {
  background: #002C45 !important;
}

.text-gray {
  color: #999999;
}

.text-blue {
  color: #002C45;
}

.text-skyblue {
  color: #5DAEE8;
}

.custom-list li .list-title {
  font-size: 20px;
  position: relative;
  padding-left: 30px;
}

.titlelogo {
  height: 32px;
}
@media (min-width: 992px) {
  .custom-list li .list-title {
    font-size: 27px;
    padding-left: 40px;
  }
}

.custom-list li .list-title .number {
  position: absolute;
  left: 0;
  top: 1px;
  font-weight: 700;
}

.custom-list li .list-title .dot {
  position: absolute;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 12px;
  background: #5DAEE8;
  top: 6px;
}

@media (min-width: 992px) {
  .custom-list li .list-title .dot {
    width: 15px;
    height: 15px;
    border-radius: 15px;
    top: 8px;
  }
}

.custom-list li p {
  font-size: 15px !important;
}

@media (min-width: 992px) {
  .custom-list li p {
    font-size: 16px !important;
  }
}

.divider {
  height: 5px;
  border-radius: 5px;
  width: 100%;
  background: #5DAEE8;
}

@media (min-width: 992px) {
  .divider {
    height: 10px;
    border-radius: 10px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 1500px;
  }
}

.image-text-card .body {
  flex: 1 1 auto;
}

.image-text-card .body .subtitle {
  font-size: 18px;
}

@media (min-width: 992px) {
  .image-text-card .body .subtitle {
    font-size: 35px;
  }
}

.image-text-card .body .title {
  font-size: 30px;
}

@media (min-width: 992px) {
  .image-text-card .body .title {
    font-size: 65px;
  }
}

.image-text-card .body .divider {
  max-width: 80px;
}

@media (min-width: 992px) {
  .image-text-card .body .divider {
    max-width: 150px;
  }
}

.image-text-card .body p {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 300;
  color: #002c45;
}

@media (min-width: 992px) {
  .image-text-card .body p {
    font-size: 18px;
    color: #002c45;
  }
}

.parallax-image {
  position: relative;
  height: 800px;
  overflow: hidden;
}

.parallax-image picture {
  position: fixed;
  top: 0;
  width: 200%;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 992px) {
  .parallax-image picture {
    width: 100%;
  }
}

.decor-lines {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 30px;
  left: 0;
}

@media (min-width: 992px) {
  .decor-lines {
    height: 40px;
  }
}

.decor-lines:before,
.decor-lines:after {
  content: "";
  height: 6px;
  width: 100%;
  position: absolute;
}

@media (min-width: 992px) {

  .decor-lines:before,
  .decor-lines:after {
    height: 8px;
  }
}

.decor-lines:before {
  top: 0;
  background: #002C45;
  max-width: 70%;
}

@media (min-width: 992px) {
  .decor-lines:before {
    max-width: 52%;
  }
}

.decor-lines:after {
  bottom: 0;
  background: #5DAEE8;
  max-width: 60%;
}

@media (min-width: 992px) {
  .decor-lines:after {
    max-width: 47%;
  }
}

.decor-lines.left:before,
.decor-lines.left:after {
  left: 0;
}

.decor-lines.left:before {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.decor-lines.left:after {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.decor-lines.right:before,
.decor-lines.right:after {
  right: 0;
}

.decor-lines.right:before {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.decor-lines.right:after {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

@media (min-width: 992px) {
  body.fixed-header header {
    background: rgba(0, 28, 39, 0.72);
    position: absolute;
    width: 100%;
  }
}

@keyframes button-menu-line1 {
  0% {
    transform: translateY(1px);
  }

  50% {
    transform: translateY(8.5px);
  }

  100% {
    transform: translateY(8.5px) rotate(50deg);
  }
}

@keyframes button-menu-line2 {
  0% {
    transform: translateY(16.5px);
  }

  50% {
    transform: translateY(8.5px);
  }

  100% {
    transform: translateY(8.5px) rotate(-50deg);
  }
}

@keyframes button-menu-line3 {
  0% {
    transform: translateY(8.5px);
  }

  100% {
    transform: translateY(8.5px) rotateX(90deg);
  }
}

/* Start Header Styles */
header {
  position: relative;
  z-index: 10;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.35);
  background: #001C27;
}

header nav {
  display: flex;
}

header nav .logo {
  flex: 0 0 220px;
}

@media (min-width: 1200px) {
  header nav .logo {
    flex: 0 0 270px;
  }
}

@media (min-width: 992px) {
  header nav .button-menu {
    display: none;
  }
}

header nav .button-menu .icon-menu {
  stroke: #fff;
  transition-duration: 0.15s;
  transition-property: stroke;
  height: 25px;
  width: 35px;
  stroke-width: 2.5px;
  overflow: visible;
}

header nav .button-menu .icon-menu .line {
  animation-duration: 0.15s;
  animation-fill-mode: both;
  animation-timing-function: ease-in;
  transform-origin: 8.5px 0;
}

header nav .button-menu .icon-menu .line.line1 {
  transform: translateY(1px);
}

header nav .button-menu .icon-menu .line.line2 {
  transform: translateY(8.5px);
}

header nav .button-menu .icon-menu .line.line3 {
  transform: translateY(16.5px);
}

header nav .button-menu:not(.collapsed) .icon-menu .line.line1 {
  animation-name: button-menu-line1;
}

header nav .button-menu:not(.collapsed) .icon-menu .line.line2 {
  animation-name: button-menu-line2;
}

header nav .button-menu:not(.collapsed) .icon-menu .line.line3 {
  animation-name: button-menu-line3;
}

header nav .nav-menu {
  position: fixed;
  background: #002C45;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.35);
  top: 0;
  width: 80%;
  left: -82%;
  z-index: 300;
  height: 100%;
  transition: left 0s ease;
}

@media (min-width: 992px) {
  header nav .nav-menu {
    position: unset;
    background: unset;
    box-shadow: unset;
    display: flex !important;
    width: 100%;
  }
}

header nav .nav-menu.collapsing {
  transition: left 0.3s ease;
}

header nav .nav-menu.show {
  left: 0;
  transition: left 0.3s ease;
  overflow-x: auto;
}

@media (min-width: 992px) {
  header nav .nav-menu .menu {
    display: flex;
    align-items: center;
    justify-content: end;
    flex-wrap: wrap;
    width: 100%;
  }
}

header nav .nav-menu .menu>li:not(.button)>a {
  position: relative;
  padding-bottom: 20px;
  display: block;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
  line-height: 1.2;
}

@media (min-width: 992px) {
  header nav .nav-menu .menu>li:not(.button)>a {
    font-size: 16px;
    text-align: center;
  }
    header nav .nav-menu .menu>li:not(.button)>a {
      position: relative;
      padding-bottom: 10px;
      display: block;
      font-size: 18px;
      color: #fff;
      text-transform: uppercase;
      font-weight: 300;
      line-height: 1.2;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
  }
  header nav .nav-menu .menu>li:not(.button)>a:after {
      transform: scale(1.5);
  }
}

@media (min-width: 1200px) {
  header nav .nav-menu .menu>li:not(.button)>a {
    font-size: 18px;
    letter-spacing: 1px;
  }
}

header nav .nav-menu .menu>li:not(.button)>a:before {
  content: "";
  background: #5DAEE8;
  width: 0;
  height: 2px;
  border-radius: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.2s ease-in-out;
}

@media (min-width: 992px) {
  header nav .nav-menu .menu>li:not(.button)>a:before {
    height: 4px;
    border-radius: 4px;
    left: 50%;
    transform: translateX(-50%);
  }
}

header nav .nav-menu .menu>li:not(.button)>a.active:before,
header nav .nav-menu .menu>li:not(.button)>a.show:before {
  width: 100%;
}

header nav .nav-menu .menu>li:not(.button)>a.active {
  font-weight: 600;
}

@media (min-width: 992px) {
  header nav .nav-menu .menu>li:not(.button)>a:hover:before {
    width: 100%;
  }
}

header nav .nav-menu .menu>li.button {
  margin-top: 30px;
}

header nav .nav-menu .menu>li.button a {
  display: inline-flex;
  background: #5DAEE8;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  height: 40px;
  justify-content: center;
  align-items: center;
  padding: 5px 20px;
  border-radius: 40px;
  font-weight: 600;
  text-transform: uppercase;
}

header nav .nav-menu .menu>li.button a:hover {
  background: #1f8cda;
}

@media (min-width: 992px) {
  header nav .nav-menu .menu>li.button a {
    font-size: 17px;
  }
}

header nav .nav-menu .menu>li.dropdown .dropdown-menu {
  background: transparent;
  border: 0;
  box-shadow: none;
  position: unset !important;
  transform: unset !important;
  padding: 0px 0px 20px;
  border-radius: 0;
}

@media (min-width: 992px) {
  header nav .nav-menu .menu>li.dropdown .dropdown-menu {
    position: absolute !important;
    background: #002C45;
    transform: translate(0px, 30px) !important;
  }
}

@media (min-width: 1200px) {
  header nav .nav-menu .menu>li.dropdown .dropdown-menu {
    transform: translate(0px, 32px) !important;
  }
}

header nav .nav-menu .menu>li.dropdown .dropdown-menu>li:not(:last-of-type) {
  margin-bottom: 10px;
}

header nav .nav-menu .menu>li.dropdown .dropdown-menu>li>a {
  font-size: 16px;
  color: #7698AC;
  padding: 0;
  background: none;
}

header nav .nav-menu .menu>li.dropdown .dropdown-menu>li>a:hover {
  color: #fff;
  font-weight: 500;
}

@media (min-width: 992px) {
  header nav .nav-menu .menu>li.dropdown:hover a:before {
    width: 100%;
  }

  header nav .nav-menu .menu>li.dropdown:hover .dropdown-menu {
    display: block;
    margin: -1px 0 0 0;
    inset: 0px auto auto 0px;
  }
}

/* End Header Styles */
/* Start Footer Styles */
footer {
  background: #002C45;
  color: #fff;
  position: relative;
  z-index: 10;
}

footer .logo {
  max-width: 280px;
}

@media (min-width: 992px) {
  footer .logo {
    max-width: 385px;
  }
}

footer .text {
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
}

@media (min-width: 992px) {
  footer .text {
    font-size: 16px;
  }
}

footer .contacts a {
  color: #fff;
}

footer .contacts a:hover {
  color: #5daee8;
}

footer .contacts .phone {
  font-weight: bold;
  font-size: 16px;
}

footer .contacts .email {
  font-weight: 400;
  font-size: 16px;
}

@media (min-width: 992px) {
  footer .contacts .email {
    position: relative;
  }

  footer .contacts .email:before {
    content: "";
    height: 120%;
    width: 1px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}

footer .bottom {
  border-top: 1px solid #5DAEE8;
  padding-top: 3.5% !important;
}

@media (min-width: 992px) {
  footer .bottom {
    border-top: 0;
	padding-top: 3.5% !important;
  }
}

footer .copyright {
  font-size: 14px;
  font-weight: 300;
}

@media (min-width: 992px) {
  footer .copyright {
    font-size: 15px;
  }
}

/* End Footer Styles */
main.home-page section {
  background: #fbfbfb;
  position: relative;
}

.video-hero-block {
  position: relative;
  overflow: hidden;
}

@media (min-width: 992px) {
  .video-hero-block {
    height: 1200px;
  }
}

@media (min-width: 1200px) {
  .video-hero-block {
    height: 1400px;
  }
}

@media (min-width: 1360px) {
  .video-hero-block {
    height: 1600px;
  }
}

.video-hero-block video {
  position: fixed;
  top: 0;
  min-height: 100%;
  width: auto;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 2000px) {
  .video-hero-block video {
    width: 100%;
  }
}

.video-hero-block:after {
  content: "";
  position: absolute;
  background: rgb(0, 44, 69);
  background: linear-gradient(0deg, rgba(0, 44, 69, 0.8) 0%, rgba(0, 28, 39, 0.1) 100%);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}

.video-hero-block .content {
  position: absolute;
  width: 100%;
  left: 0;
  z-index: 2;
  opacity: 0;
  transition: all 1s ease;
  transition-delay: 0.5s;
  bottom: 30px ;
}

@media (min-width: 992px) {
  .video-hero-block .content {
    bottom: unset;
    top: 50%;
    transform: translateY(-50%);
  }
}

.video-hero-block .content h1 {
  font-size: 28px;
}

@media (min-width: 992px) {
  .video-hero-block .content h1 {
    font-size: 45px;
  }
}

.video-hero-block .content p {
  font-size: 18px;
}

@media (min-width: 992px) {
  .video-hero-block .content p {
    font-size: 45px;
  }
}

.video-hero-block .content .divider {
  max-width: 80px;
}

@media (min-width: 992px) {
  .video-hero-block .content .divider {
    max-width: 300px;
  }
}

.video-hero-block .content.animate.fade-in {
  opacity: 1;
}

.about-company-block .card .body .profile .name {
  font-size: 20px;
}

.about-company-block .card .body .profile .position {
  font-size: 16px;
}

.about-company-block .card .image {
  position: relative;
}

@media (min-width: 992px) {
  .about-company-block .card .image {
    flex: 0 0 40%;
  }
}

.about-company-block .card .image img {
  position: relative;
  z-index: 2;
}

.about-company-block .card .image .backdrop {
  background: #F2F0F0;
  width: 70%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  right: 0;
  transition: all 1.5s ease;
  transition-delay: 0.5s;
}

.our-approach-block .card .image {
  position: relative;
}

@media (min-width: 992px) {
  .our-approach-block .card .image {
    flex: 0 0 40%;
  }
}

.our-approach-block .card .image img {
  position: relative;
  z-index: 2;
}

.our-approach-block .card .image .backdrop {
  background: url("../images/home/our-approach-backdrop.png") no-repeat top center;
  background-size: cover;
  width: 90%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  right: -25%;
  transition: all 1.5s ease;
  transition-delay: 0.5s;
}

.our-values-block .top-row .card .image {
  position: relative;
}

@media (min-width: 992px) {
  .our-values-block .top-row .card .image {
    flex: 0 0 40%;
  }
}

.our-values-block .top-row .card .image img {
  position: relative;
  z-index: 2;
}

.our-values-block .top-row .card .image .backdrop {
  background: #F2F0F0;
  width: 70%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  right: 0;
  transition: all 1.5s ease;
  transition-delay: 0.5s;
}

.our-values-block .middle-row .card .image {
  position: relative;
}

@media (min-width: 992px) {
  .our-values-block .middle-row .card .image {
    flex: 0 0 40%;
  }
}

.our-values-block .middle-row .card .image img {
  position: relative;
  z-index: 2;
}

.our-values-block .middle-row .card .image .backdrop {
  background: url("../images/home/our-values-backdrop.png") no-repeat center center;
  background-size: cover;
  width: 90%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  right: -25%;
  transition: all 1.5s ease;
  transition-delay: 0.5s;
}

.our-values-block .bottom-row .row {
  margin-bottom: -50px;
  position: relative;
  z-index: 2;
}

.our-values-block .bottom-row picture {
  position: relative;
  z-index: 1;
  max-width: 3000px;
  margin: 0 auto;
}

main.team-page section {
  background: #fff;
  position: relative;
  color: white !important;
}

@media (min-width: 992px) {
  main.team-page .image-text-card .body .title , section.valuation .heading_with_logo h2 , section.law_with_img .heading_with_logo h2.title , section.build_enviourment_comm .heading_with_logo h2.title , section.building_design .heading_with_logo h2.title , section.build_enviroment .heading_with_logo h2.title {
    font-size: 45px;
  }
}

@media (min-width: 992px) {
  main.team-page .image-text-card .body .subtitle {
    font-size: 25px;
  }
}

main.team-page .heading h1 {
  font-size: 30px;
}

@media (min-width: 992px) {
  main.team-page .heading h1 {
    font-size: 45px;
  }
}

main.team-page .heading .h1-text {
  font-size: 20px;
}

@media (min-width: 992px) {
  main.team-page .heading .h1-text {
    font-size: 30px;
  }
}

.founder-director-block .card .image {
  position: relative;
}

@media (min-width: 992px) {
  .founder-director-block .card .image {
    flex: 0 0 30%;
  }
}

.founder-director-block .card .image img {
  position: relative;
  z-index: 2;
}

.founder-director-block .card .image .backdrop {
  background: #F2F0F0;
  width: 70%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  right: 0;
  transition: all 1.5s ease;
  transition-delay: 0.5s;
}

.company-director-block .card .body .subtitle2 {
  letter-spacing: 5px;
}

.company-director-block .card .image {
  position: relative;
}

@media (min-width: 992px) {
  .company-director-block .card .image {
    flex: 0 0 30%;
  }
}

.company-director-block .card .image img {
  position: relative;
  z-index: 2;
}

.company-director-block .card .image .backdrop {
  background: #F2F0F0;
  width: 90%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  right: -25%;
  transition: all 1.5s ease;
  transition-delay: 0.5s;
}

.specialist-areas-block .top-row .heading .divider {
  max-width: 1200px !important;
}

.specialist-areas-block .top-row .card .image {
  position: relative;
}

@media (min-width: 992px) {
  .specialist-areas-block .top-row .card .image {
    flex: 0 0 40%;
  }
}

.specialist-areas-block .top-row .card .image img {
  position: relative;
  z-index: 2;
}

.specialist-areas-block .top-row .card .image .backdrop {
  background: #F2F0F0;
  width: 70%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  right: 0;
  transition: all 1.5s ease;
  transition-delay: 0.5s;
}

.specialist-areas-block .bottom-row .card .image {
  position: relative;
}

@media (min-width: 992px) {
  .specialist-areas-block .bottom-row .card .image {
    flex: 0 0 40%;
  }
}

.specialist-areas-block .bottom-row .card .image img {
  position: relative;
  z-index: 2;
}

.specialist-areas-block .bottom-row .card .image .backdrop {
  background: #D8D9D8;
  width: 90%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  right: -25%;
  transition: all 1.5s ease;
  transition-delay: 0.5s;
}

.building-design-block .card .image {
  position: relative;
}

@media (min-width: 992px) {
  .building-design-block .card .image {
    flex: 0 0 40%;
  }
}

.building-design-block .card .image img {
  position: relative;
  z-index: 2;
}

.building-design-block .card .image .backdrop {
  background: #F2F0F0;
  width: 70%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  right: 0;
  transition: all 1.5s ease;
  transition-delay: 0.5s;
}

.construction-costs-block .top-row .card .image {
  position: relative;
}

@media (min-width: 992px) {
  .construction-costs-block .top-row .card .image {
    flex: 0 0 40%;
  }
}

.construction-costs-block .top-row .card .image img {
  position: relative;
  z-index: 2;
}

.construction-costs-block .top-row .card .image .backdrop {
  background: #D8D9D8;
  width: 90%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  right: -25%;
  transition: all 1.5s ease;
  transition-delay: 0.5s;
}

.project-management-1-block {
  background: #f1efef !important;
  position: relative;
}

@media (min-width: 992px) {
  .project-management-1-block:after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    top: 0;
    max-width: 3000px;
    background: url("../images/team/project-management-1-bg.jpg") no-repeat center center;
    background-size: cover;
    z-index: 1;
  }
}

.project-management-1-block .container {
  position: relative;
  z-index: 2;
}

.project-management-1-block .card {
  max-width: 1100px;
}

.project-management-2-block {
  background: #011c27 !important;
  position: relative;
}

@media (min-width: 992px) {
  .project-management-2-block:after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    top: 0;
    max-width: 3000px;
    background: url("../images/team/project-management-2-bg.jpg") no-repeat center center;
    background-size: cover;
    z-index: 1;
  }
}

.project-management-2-block .container {
  position: relative;
  z-index: 2;
}

.legal-block .top-row .card .image {
  position: relative;
}

@media (min-width: 992px) {
  .legal-block .top-row .card .image {
    flex: 0 0 40%;
  }
}

.legal-block .top-row .card .image img {
  position: relative;
  z-index: 2;
}

.legal-block .top-row .card .image .backdrop {
  background: #F2F0F0;
  width: 70%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  right: 0;
  transition: all 1.5s ease;
  transition-delay: 0.5s;
}

.legal-block .bottom-row .heading {
  max-width: 1000px;
}

.legal-block .bottom-row .heading .divider {
  max-width: 600px;
}

.legal-block .bottom-row .custom-list {
  max-width: 1150px;
}

@media (min-width: 992px) {
  .legal-block .bottom-row .custom-list {
    display: flex;
    flex-wrap: wrap;
  }
}

.legal-block .bottom-row .custom-list li {
  flex: 0 0 50%;
}

.legal-block .bottom-row .custom-list li p {
  font-size: 18px !important;
}

.legal-block .bottom-row .text-group p {
  font-size: 16px;
}

@media (min-width: 992px) {
  .legal-block .bottom-row .text-group p {
    font-size: 18px;
  }
}

.surveying-block .card .image {
  position: relative;
}

@media (min-width: 992px) {
  .surveying-block .card .image {
    flex: 0 0 40%;
  }
}

.surveying-block .card .image img {
  position: relative;
  z-index: 2;
}

.surveying-block .card .image .backdrop {
  background: #D8D9D8;
  width: 90%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  right: -25%;
  transition: all 1.5s ease;
  transition-delay: 0.5s;
}

main.design-page section {
  background: #fff;
  position: relative;
}

@media (min-width: 992px) {
  main.design-page .image-text-card .body .title {
    font-size: 45px;
  }
}

@media (min-width: 992px) {
  .design-list-block {
    background-position: top center;
  }
}

.design-list-block .top-row {
  position: relative;
}

.design-list-block .top-row .container {
  position: relative;
  z-index: 2;
}

.design-list-block .top-row:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  top: 0;
  max-width: 3000px;
  background: url("../images/design/design-list-bg.jpg") no-repeat top center;
  background-size: cover;
  z-index: 1;
}

.final-handover-block h2 {
  font-size: 22px;
}

@media (min-width: 992px) {
  .final-handover-block h2 {
    font-size: 30px;
  }
}

.final-handover-block p {
  font-size: 15px;
}

@media (min-width: 992px) {
  .final-handover-block p {
    font-size: 16px;
  }
}

.final-handover-block .box p {
  font-size: 18px;
}

@media (min-width: 992px) {
  .final-handover-block .box p {
    font-size: 23px;
  }
}

.art-materials-block .card .image {
  position: relative;
}

@media (min-width: 992px) {
  .art-materials-block .card .image {
    flex: 0 0 40%;
  }
}

.art-materials-block .card .image img {
  position: relative;
  z-index: 2;
}

.art-materials-block .card .image .backdrop {
  background: #F2F0F0;
  width: 70%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  right: 0;
  transition: all 1.5s ease;
  transition-delay: 0.5s;
}

.power-colour-block .card .image {
  position: relative;
}

@media (min-width: 992px) {
  .power-colour-block .card .image {
    flex: 0 0 40%;
  }
}

.power-colour-block .card .image img {
  position: relative;
  z-index: 2;
}

.power-colour-block .card .image .backdrop {
  background: url("../images/design/power-colour-backdrop.jpg") no-repeat top center;
  background-size: cover;
  width: 90%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  right: -25%;
  transition: all 1.5s ease;
  transition-delay: 0.5s;
}

.importance-finish-block .card .image {
  position: relative;
}

@media (min-width: 992px) {
  .importance-finish-block .card .image {
    flex: 0 0 40%;
  }
}

.importance-finish-block .card .image img {
  position: relative;
  z-index: 2;
}

.importance-finish-block .card .image .backdrop {
  background: #F2F0F0;
  width: 70%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  right: 0;
  transition: all 1.5s ease;
  transition-delay: 0.5s;
}

.harmonious-specification-block .card .image {
  position: relative;
}

@media (min-width: 992px) {
  .harmonious-specification-block .card .image {
    flex: 0 0 40%;
  }
}

.harmonious-specification-block .card .image img {
  position: relative;
  z-index: 2;
}

.harmonious-specification-block .card .image .backdrop {
  background: url("../images/design/harmonious-specification-backdrop.jpg") no-repeat center center;
  background-size: cover;
  width: 90%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  right: -25%;
  transition: all 1.5s ease;
  transition-delay: 0.5s;
}

.attention-details-block .card .image {
  position: relative;
}

@media (min-width: 992px) {
  .attention-details-block .card .image {
    flex: 0 0 40%;
  }
}

.attention-details-block .card .image img {
  position: relative;
  z-index: 2;
}

.attention-details-block .card .image .backdrop {
  background: #F2F0F0;
  width: 70%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  right: 0;
  transition: all 1.5s ease;
  transition-delay: 0.5s;
}

.final-selection-block .card .image {
  position: relative;
}

@media (min-width: 992px) {
  .final-selection-block .card .image {
    flex: 0 0 40%;
  }
}

.final-selection-block .card .image img {
  position: relative;
  z-index: 2;
}

.final-selection-block .card .image .backdrop {
  background: #F2F0F0;
  width: 90%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  right: -25%;
  transition: all 1.5s ease;
  transition-delay: 0.5s;
}

main.joint-ventures-page section {
  background: #fff;
  position: relative;
}

@media (min-width: 992px) {
  main.joint-ventures-page .image-text-card .body .title {
    font-size: 45px;
  }
}

main.joint-ventures-page .heading .title {
  font-size: 30px;
}

@media (min-width: 992px) {
  main.joint-ventures-page .heading .title {
    font-size: 45px;
  }
}

main.joint-ventures-page .heading .h1-text {
  font-size: 20px;
}

@media (min-width: 992px) {
  main.joint-ventures-page .heading .h1-text {
    font-size: 30px;
  }
}

@media (min-width: 992px) {
  .process-agreement-block .heading>div {
    flex: 1 1 50%;
  }
}

.process-agreement-block .heading .left {
  position: relative;
}

.process-agreement-block .heading h1 {
  font-size: 35px !important;
}

@media (min-width: 992px) {
  .process-agreement-block .heading h1 {
    font-size: 40px !important;
  }
}

@media (min-width: 1200px) {
  .process-agreement-block .heading h1 {
    font-size: 50px !important;
  }
}

.process-agreement-block .heading .h1-text {
  font-size: 20px !important;
  letter-spacing: 2px;
}

@media (min-width: 992px) {
  .process-agreement-block .heading .h1-text {
    font-size: 25px !important;
  }
}

@media (min-width: 992px) {
  .process-agreement-block .heading .divider {
    transform: rotate(90deg);
    position: absolute;
    max-width: 200px;
    top: 45%;
    right: -90px;
  }
}

.process-agreement-block .heading h3 {
  font-size: 25px;
}

@media (min-width: 992px) {
  .process-agreement-block .heading h3 {
    font-size: 30px !important;
  }
}

.process-agreement-block .heading p {
  font-size: 18px;
}

.process-agreement-block .card .image {
  position: relative;
  z-index: 1;
  right: 0;
  transition: right 1.5s ease;
  transition-delay: 0.5s;
}

@media (min-width: 992px) {
  .process-agreement-block .card .image {
    flex: 0 0 500px;
  }
}

@media (min-width: 1200px) {
  .process-agreement-block .card .image {
    flex: 0 0 700px;
  }
}

.process-agreement-block .card .image img {
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .process-agreement-block .card .body {
    padding-bottom: 170px;
  }
}

.process-agreement-block .card .body h2 {
  font-size: 30px;
}

@media (min-width: 992px) {
  .process-agreement-block .card .body h2 {
    font-size: 45px;
  }
}

@media (min-width: 992px) {
  .process-agreement-block .card .body blockquote {
    position: absolute;
    z-index: 3;
    right: 0;
    width: 80%;
  }
}

@media (min-width: 992px) {
  .process-agreement-block .card .body blockquote {
    width: 65%;
  }
}

.process-agreement-block .card .body blockquote p {
  font-size: 18px;
  position: relative;
  padding-top: 40px;
}

@media (min-width: 992px) {
  .process-agreement-block .card .body blockquote p {
    padding-top: 0;
    padding-left: 80px;
    font-size: 20px;
  }
}

.process-agreement-block .card .body blockquote p:before {
  content: "“";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 100px;
  line-height: 70px;
}

@media (min-width: 992px) {
  .process-agreement-block .card .body blockquote p:before {
    left: 0;
    transform: unset;
  }
}

.process-agreement-block .card .body blockquote .author {
  border-top: 5px solid #fff;
  letter-spacing: 3px;
}

@media (min-width: 992px) {
  .process-agreement-block .card .body blockquote .author {
    border-top: 0;
    border-left: 5px solid #fff;
  }
}

.process-agreement-block .card .body blockquote .author span {
  font-size: 16px;
}

.process-agreement-block .card .body blockquote .author h6 {
  font-size: 23px;
}

@media (min-width: 992px) {
  .clients-partners-block .card .body .title {
    font-size: 35px !important;
  }
}

.clients-partners-block .step-block-1 .card .image {
  position: relative;
}

@media (min-width: 992px) {
  .clients-partners-block .step-block-1 .card .image {
    flex: 0 0 50%;
  }
}

.clients-partners-block .step-block-1 .card .image img {
  position: relative;
  z-index: 2;
}

.clients-partners-block .step-block-1 .card .image .backdrop {
  background: #F2F0F0;
  width: 90%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  right: -25%;
  transition: all 1.5s ease;
  transition-delay: 0.5s;
}

.clients-partners-block .step-block-2 .image-block {
  margin-top: 50px;
}

@media (min-width: 768px) {
  .clients-partners-block .step-block-2 .image-block {
    margin-top: -50px;
  }
}

@media (min-width: 992px) {
  .clients-partners-block .step-block-2 .image-block {
    margin-top: -80px;
  }
}

@media (min-width: 1200px) {
  .clients-partners-block .step-block-2 .image-block {
    margin-top: -100px;
  }
}

.clients-partners-block .step-block-3 .card .image {
  position: relative;
}

@media (min-width: 992px) {
  .clients-partners-block .step-block-3 .card .image {
    flex: 0 0 50%;
  }
}

.clients-partners-block .step-block-3 .card .image img {
  position: relative;
  z-index: 2;
}

.clients-partners-block .step-block-3 .card .image .backdrop {
  background: #F2F0F0;
  width: 70%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  right: 0;
  transition: all 1.5s ease;
  transition-delay: 0.5s;
}

.clients-partners-block .step-block-4 .image {
  position: relative;
}

@media (min-width: 992px) {
  .clients-partners-block .step-block-4 .image {
    flex: 0 0 50%;
  }
}

.clients-partners-block .step-block-4 .image img {
  position: relative;
  z-index: 2;
}

.clients-partners-block .step-block-4 .image .backdrop {
  background: #F2F0F0;
  width: 90%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  right: -25%;
  transition: all 1.5s ease;
  transition-delay: 0.5s;
}

.approach-drafting-block {
  position: relative;
  background: #001c27 !important;
}

@media (min-width: 992px) {
  .approach-drafting-block {
    min-height: 550px;
  }
}

.approach-drafting-block:before {
  content: "";
  background: url(../images/joint-ventures/approach-drafting-image.jpg) no-repeat top center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 100%;
  height: 100%;
}

.approach-drafting-block .card {
  max-width: 470px;
}

.contact-preparation-block .step-block-2 .subtitle {
  font-size: 25px;
}

@media (min-width: 992px) {
  .contact-preparation-block .step-block-2 .subtitle {
    font-size: 30px;
  }
}

.contact-preparation-block .step-block-2 .card {
  height: 100%;
}

.contact-preparation-block .step-block-2 .card .body {
  height: 100%;
}

.contact-preparation-block .step-block-2 .card .body h4 {
  font-size: 18px;
}

@media (min-width: 992px) {
  .contact-preparation-block .step-block-2 .card .body h4 {
    font-size: 22px;
  }
}

.directors-record-block {
  position: relative;
  background: #e5e7e6 !important;
}

@media (min-width: 992px) {
  .directors-record-block {
    min-height: 750px;
  }
}

.directors-record-block:before {
  content: "";
  background: url(../images/joint-ventures/directors-record-image.jpg) no-repeat top center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 992px) {
  .directors-record-block .card {
    max-width: 80%;
  }
}

.planning-approval-block .subtitle {
  font-size: 25px !important;
}

@media (min-width: 992px) {
  .planning-approval-block .subtitle {
    font-size: 30px !important;
  }
}

.planning-approval-block .step-block-1 ul {
  max-width: 1000px;
}

.planning-approval-block .step-block-1 ul li {
  position: relative;
  padding-left: 50px;
}

@media (min-width: 992px) {
  .planning-approval-block .step-block-1 ul li {
    padding-left: 70px;
  }
}

.planning-approval-block .step-block-1 ul li .check {
  position: absolute;
  left: 0;
  width: 35px;
  height: 35px;
  top: -6px;
}

@media (min-width: 992px) {
  .planning-approval-block .step-block-1 ul li .check {
    width: 45px;
    top: -10px;
    height: 45px;
  }
}

.planning-approval-block .step-block-1 ul li h3 {
  font-size: 20px;
}

@media (min-width: 992px) {
  .planning-approval-block .step-block-1 ul li h3 {
    font-size: 23px;
  }
}

.planning-approval-block .step-block-2 .card .image {
  position: relative;
}

@media (min-width: 992px) {
  .planning-approval-block .step-block-2 .card .image {
    flex: 0 0 50%;
  }
}

.planning-approval-block .step-block-2 .card .image img {
  position: relative;
  z-index: 2;
}

.planning-approval-block .step-block-2 .card .image .backdrop {
  background: #F2F0F0;
  width: 70%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  right: 0;
  transition: all 1.5s ease;
  transition-delay: 0.5s;
}

.planning-approval-block .step-block-3 h4 {
  font-size: 20px;
  position: relative;
  padding-left: 30px;
  color: #181818;
}

@media (min-width: 992px) {
  .planning-approval-block .step-block-3 h4 {
    font-size: 23px;
    padding-left: 40px;
  }
}

.planning-approval-block .step-block-3 h4 .number {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}

.planning-approval-block .step-block-3 p {
  font-size: 15px !important;
}

@media (min-width: 992px) {
  .planning-approval-block .step-block-3 p {
    font-size: 16px !important;
  }
}

.planning-approval-block .step-block-4 .card .image {
  position: relative;
}

@media (min-width: 992px) {
  .planning-approval-block .step-block-4 .card .image {
    flex: 0 0 50%;
  }
}

.planning-approval-block .step-block-4 .card .image img {
  position: relative;
  z-index: 2;
}

.planning-approval-block .step-block-4 .card .image .backdrop {
  background: #F2F0F0;
  width: 90%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  right: -25%;
  transition: all 1.5s ease;
  transition-delay: 0.5s;
}

.construction-subdivision-block {
  position: relative;
}

.construction-subdivision-block:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  top: 0;
  max-width: 3000px;
  background: url("../images/joint-ventures/construction-subdivision-image.jpg") no-repeat center center;
  background-size: cover;
  z-index: 1;
}

.construction-subdivision-block .container {
  position: relative;
  z-index: 2;
}

.construction-subdivision-block h1 {
  font-size: 30px;
}

@media (min-width: 992px) {
  .construction-subdivision-block h1 {
    font-size: 50px;
  }
}

.project-completion-block .step-block-1 blockquote p {
  font-size: 20px;
  position: relative;
  padding-top: 40px;
}

@media (min-width: 992px) {
  .project-completion-block .step-block-1 blockquote p {
    padding-top: 0;
    padding-left: 80px;
    font-size: 27px;
  }
}

.project-completion-block .step-block-1 blockquote p:before {
  content: "“";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 100px;
  line-height: 70px;
}

@media (min-width: 992px) {
  .project-completion-block .step-block-1 blockquote p:before {
    left: 0;
    transform: unset;
  }
}

.project-completion-block .step-block-2 h2 {
  font-size: 40px;
}

@media (min-width: 992px) {
  .project-completion-block .step-block-2 h2 {
    font-size: 60px !important;
  }
}

@media (min-width: 992px) {
  .project-completion-block .step-block-2 p.text-blue {
    font-size: 18px !important;
  }
}

.project-completion-block .step-block-2 .author {
  letter-spacing: 5px;
}

.project-completion-block .step-block-2 .author span {
  margin-top: -20px;
}

.project-completion-block .step-block-2 .author h6 {
  font-size: 23px;
}

.unique-approach-block .card .image {
  position: relative;
}

@media (min-width: 992px) {
  .unique-approach-block .card .image {
    flex: 0 0 50%;
  }
}

.unique-approach-block .card .image img {
  position: relative;
  z-index: 2;
}

.unique-approach-block .card .image .backdrop {
  background: #F2F0F0;
  width: 70%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  right: 0;
  transition: all 1.5s ease;
  transition-delay: 0.5s;
}

.average-return-block .divider {
  max-width: 1300px;
}

.average-return-block .card .image {
  position: relative;
}

@media (min-width: 992px) {
  .average-return-block .card .image {
    flex: 0 0 50%;
  }
}

.average-return-block .card .image img {
  position: relative;
  z-index: 2;
}

.average-return-block .card .image .backdrop {
  background: #F2F0F0;
  width: 90%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  right: -25%;
  transition: all 1.5s ease;
  transition-delay: 0.5s;
}

.average-return-block .disclaimer {
  max-width: 1200px;
}

.average-return-block .disclaimer p {
  font-size: 16px;
  color: #525252;
}

.lucrative-opportunity-block .heading h1 {
  font-size: 33px !important;
}

@media (min-width: 992px) {
  .lucrative-opportunity-block .heading h1 {
    font-size: 60px !important;
  }
}

.lucrative-opportunity-block .card .image {
  position: relative;
}

@media (min-width: 992px) {
  .lucrative-opportunity-block .card .image {
    flex: 0 0 50%;
  }
}

.lucrative-opportunity-block .card .image img {
  position: relative;
  z-index: 2;
}

.lucrative-opportunity-block .card .image .backdrop {
  background: #F2F0F0;
  width: 70%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  right: 0;
  transition: all 1.5s ease;
  transition-delay: 0.5s;
}

.consulting-structure-block .divider {
  max-width: 1300px;
}

.consulting-structure-block .card .image {
  position: relative;
}

@media (min-width: 992px) {
  .consulting-structure-block .card .image {
    flex: 0 0 50%;
  }
}

.consulting-structure-block .card .image img {
  position: relative;
  z-index: 2;
}

.consulting-structure-block .card .image .backdrop {
  background: #F2F0F0;
  width: 90%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  right: -25%;
  transition: all 1.5s ease;
  transition-delay: 0.5s;
}

.consulting-structure-block .disclaimer {
  max-width: 1200px;
}

.consulting-structure-block .disclaimer p {
  font-size: 16px;
  color: #525252;
}

.consulting-services-block {
  background: #011d29 !important;
  position: relative;
}

@media (min-width: 992px) {
  .consulting-services-block:after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    top: 0;
    max-width: 3000px;
    background: url("../images/joint-ventures/consulting-services-image.jpg") no-repeat center center;
    background-size: cover;
    z-index: 1;
  }
}

.consulting-services-block .container {
  position: relative;
  z-index: 2;
}

.consulting-services-block .card {
  max-width: 600px;
}

.consulting-services-block .card .body p {
  font-size: 18px !important;
}

@media (min-width: 992px) {
  .consulting-services-block .card .body p {
    font-size: 23px !important;
  }
}

@media (min-width: 992px) {
  .expertise-collaborative-block .card .body .title {
    font-size: 40px !important;
  }
}

main.joint-ventures-page section {
  background: #fff;
  position: relative;
}

@media (min-width: 992px) {
  .construction-director-block .card .body .subtitle {
    font-size: 30px !important;
  }
}

.construction-director-block .card .image {
  position: relative;
}

@media (min-width: 992px) {
  .construction-director-block .card .image {
    flex: 0 0 40%;
  }
}

.construction-director-block .card .image img {
  position: relative;
  z-index: 2;
}

.construction-director-block .card .image .backdrop {
  background: #F2F0F0;
  width: 70%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  right: 0;
  transition: all 1.5s ease;
  transition-delay: 0.5s;
}

.construction-experience-block .heading .title {
  font-size: 30px;
}

@media (min-width: 992px) {
  .construction-experience-block .heading .title {
    font-size: 45px;
  }
}

.construction-experience-block .heading .divider {
  max-width: 80px;
}

@media (min-width: 992px) {
  .construction-experience-block .heading .divider {
    max-width: 150px;
  }
}

.construction-experience-block .card .body .info-list li {
  position: relative;
  font-size: 18px;
  padding-left: 50px;
}

.construction-experience-block .card .body .info-list li .icon {
  width: 35px;
  position: absolute;
  left: 0;
  top: -5px;
}

@media (min-width: 992px) {
  .construction-experience-block .card .body .info-list li {
    font-size: 20px;
  }
}

.construction-experience-block .construction-block-1 .card .image,
.construction-experience-block .construction-block-3 .card .image,
.construction-experience-block .construction-block-5 .card .image {
  position: relative;
}

@media (min-width: 992px) {

  .construction-experience-block .construction-block-1 .card .image,
  .construction-experience-block .construction-block-3 .card .image,
  .construction-experience-block .construction-block-5 .card .image {
    flex: 0 0 50%;
  }
}

.construction-experience-block .construction-block-1 .card .image img,
.construction-experience-block .construction-block-3 .card .image img,
.construction-experience-block .construction-block-5 .card .image img {
  position: relative;
  z-index: 2;
}

.construction-experience-block .construction-block-1 .card .image .backdrop,
.construction-experience-block .construction-block-3 .card .image .backdrop,
.construction-experience-block .construction-block-5 .card .image .backdrop {
  background: #F2F0F0;
  width: 90%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  right: -25%;
  transition: all 1.5s ease;
  transition-delay: 0.5s;
}

.construction-experience-block .construction-block-2 .card .image,
.construction-experience-block .construction-block-4 .card .image,
.construction-experience-block .construction-block-6 .card .image {
  position: relative;
}

@media (min-width: 992px) {

  .construction-experience-block .construction-block-2 .card .image,
  .construction-experience-block .construction-block-4 .card .image,
  .construction-experience-block .construction-block-6 .card .image {
    flex: 0 0 50%;
  }
}

.construction-experience-block .construction-block-2 .card .image img,
.construction-experience-block .construction-block-4 .card .image img,
.construction-experience-block .construction-block-6 .card .image img {
  position: relative;
  z-index: 2;
}

.construction-experience-block .construction-block-2 .card .image .backdrop,
.construction-experience-block .construction-block-4 .card .image .backdrop,
.construction-experience-block .construction-block-6 .card .image .backdrop {
  background: #F2F0F0;
  width: 70%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  right: 0;
  transition: all 1.5s ease;
  transition-delay: 0.5s;
}

.risk-management-block .top-row .card {
  max-width: 1200px;
  margin-top: -36px;
  z-index: 5;
}

@media (min-width: 992px) {
  .risk-management-block .top-row .card {
    margin-top: -96px;
  }
}

.risk-management-block .top-row .card p {
  font-size: 18px;
}

@media (min-width: 992px) {
  .risk-management-block .top-row .card p {
    font-size: 20px;
  }
}

@media (min-width: 992px) {
  .risk-management-block .bottom-row .custom-list .list-title {
    font-size: 24px;
  }
}

@media (min-width: 992px) {
  .risk-management-block .bottom-row .custom-list p {
    font-size: 18px !important;
  }
}

.quality-assurance-block {
  background: #011c27 !important;
  position: relative;
}

@media (min-width: 992px) {
  .quality-assurance-block:after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    top: 0;
    max-width: 3000px;
    background: url("../images/team/project-management-2-bg.jpg") no-repeat center center;
    background-size: cover;
    z-index: 1;
  }
}

.quality-assurance-block .container {
  position: relative;
  z-index: 2;
}

.quality-assurance-block .card {
  max-width: 700px;
}

@media (min-width: 992px) {
  .quality-assurance-block .card .title {
    font-size: 55px;
  }
}

.qa-procurement-block .heading {
  max-width: 1300px;
}

.qa-procurement-block .heading .title {
  font-size: 30px;
}

@media (min-width: 992px) {
  .qa-procurement-block .heading .title {
    font-size: 45px;
  }
}

.qa-procurement-block .heading .h1-text {
  font-size: 18px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .qa-procurement-block .heading .h1-text {
    font-size: 23px;
  }
}

.qa-procurement-block .custom-list {
  max-width: 1150px;
}

@media (min-width: 992px) {
  .qa-procurement-block .custom-list {
    display: flex;
    flex-wrap: wrap;
  }
}

.qa-procurement-block .custom-list li {
  flex: 0 0 50%;
}

.qa-procurement-block .custom-list li p {
  font-size: 18px !important;
}

.qa-procurement-block .text-group p {
  font-size: 16px;
}

@media (min-width: 992px) {
  .qa-procurement-block .text-group p {
    font-size: 18px;
  }
}

main.sustainability-page section {
  background: #fff;
  position: relative;
}

@media (min-width: 992px) {
  main.sustainability-page .image-text-card .body .title {
    font-size: 45px;
  }
}

.sustainability-standard-block .card .image {
  position: relative;
}

@media (min-width: 992px) {
  .sustainability-standard-block .card .image {
    flex: 0 0 45%;
  }
}

.sustainability-standard-block .card .image img {
  position: relative;
  z-index: 2;
}

.sustainability-standard-block .card .image .backdrop {
  background: #F2F0F0;
  width: 90%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  right: -25%;
  transition: all 1.5s ease;
  transition-delay: 0.5s;
}

.electric-vehicle-block .card .image {
  position: relative;
}

@media (min-width: 992px) {
  .electric-vehicle-block .card .image {
    flex: 0 0 45%;
  }
}

.electric-vehicle-block .card .image img {
  position: relative;
  z-index: 2;
}

.electric-vehicle-block .card .image .backdrop {
  background: #F2F0F0;
  width: 70%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  right: 0;
  transition: all 1.5s ease;
  transition-delay: 0.5s;
}

.thermal-performance-block .card .image {
  position: relative;
}

@media (min-width: 992px) {
  .thermal-performance-block .card .image {
    flex: 0 0 45%;
  }
}

.thermal-performance-block .card .image img {
  position: relative;
  z-index: 2;
}

.thermal-performance-block .card .image .backdrop {
  background: #F2F0F0;
  width: 90%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  right: -25%;
  transition: all 1.5s ease;
  transition-delay: 0.5s;
}

.solar-energy-block .card .image {
  position: relative;
}

@media (min-width: 992px) {
  .solar-energy-block .card .image {
    flex: 0 0 45%;
  }
}

.solar-energy-block .card .image img {
  position: relative;
  z-index: 2;
}

.solar-energy-block .card .image .backdrop {
  background: #F2F0F0;
  width: 70%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  right: 0;
  transition: all 1.5s ease;
  transition-delay: 0.5s;
}

.rainwater-tanks-block {
  background: url("../images/sustainability/rainwater-tanks-image.jpg") no-repeat top center !important;
  background-size: cover;
}

.rainwater-tanks-block .card {
  max-width: 650px;
}

.rainwater-tanks-block .card .body .title {
  font-size: 20px;
}

@media (min-width: 992px) {
  .rainwater-tanks-block .card .body .title {
    font-size: 45px;
  }
}

.rainwater-tanks-block .card .body .divider {
  max-width: 80px;
}

@media (min-width: 992px) {
  .rainwater-tanks-block .card .body .divider {
    max-width: 150px;
  }
}

.rainwater-tanks-block .card .body p {
  font-size: 18px;
  line-height: 1.6;
}

@media (min-width: 992px) {
  .rainwater-tanks-block .card .body p {
    font-size: 20px;
  }
}

.diverting-construction-block .card .image {
  position: relative;
}

@media (min-width: 992px) {
  .diverting-construction-block .card .image {
    flex: 0 0 45%;
  }
}

.diverting-construction-block .card .image img {
  position: relative;
  z-index: 2;
}

.diverting-construction-block .card .image .backdrop {
  background: #D8D9D8;
  width: 90%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  right: -25%;
  transition: all 1.5s ease;
  transition-delay: 0.5s;
}

.sustainability-advantage-block h2 {
  font-size: 30px;
}

@media (min-width: 992px) {
  .sustainability-advantage-block h2 {
    font-size: 45px;
  }
}

.sustainability-advantage-block .divider {
  max-width: 80px;
}

@media (min-width: 992px) {
  .sustainability-advantage-block .divider {
    max-width: 150px;
  }
}

.sustainability-advantage-block .card {
  border-bottom: 2px solid #999;
  height: 100%;
}

@media (min-width: 992px) {
  .sustainability-advantage-block .card {
    border-bottom: 0;
    border-right: 2px solid #999;
  }
}

.sustainability-advantage-block .card .body {
  height: 100%;
}

.sustainability-advantage-block .card .body h3 {
  font-size: 20px;
}

@media (min-width: 992px) {
  .sustainability-advantage-block .card .body h3 {
    font-size: 22px;
  }
}

.sustainability-advantage-block .card .body p {
  font-size: 16px;
}

main.projects-page section {
  background: #fff;
  position: relative;
}

main.projects-page .projects-image-card .image {
  position: relative;
}

@media (min-width: 992px) {
  main.projects-page .projects-image-card .image {
    flex: 0 0 500px;
  }
}

@media (min-width: 1200px) {
  main.projects-page .projects-image-card .image {
    flex: 0 0 800px;
  }
}

main.projects-page .projects-image-card .image.animate img {
  position: relative;
  z-index: 2;
  transition: all 1.5s ease;
  transition-delay: 0.5s;
}

main.projects-page .projects-image-card .image.animate.from-left img {
  right: 0;
}

main.projects-page .projects-image-card .image.animate.from-right img {
  right: 0;
}

main.projects-page .projects-image-card .body .title {
  font-size: 20px;
}

@media (min-width: 992px) {
  main.projects-page .projects-image-card .body .title {
    font-size: 42px;
  }
}

main.projects-page .projects-image-card .body .divider {
  max-width: 80px;
}

@media (min-width: 992px) {
  main.projects-page .projects-image-card .body .divider {
    max-width: 150px;
  }
}

main.projects-page .projects-image-card .body p {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 300;
}

@media (min-width: 992px) {
  main.projects-page .projects-image-card .body p {
    font-size: 20px;
  }
}

.project-hero-block .h2-sub {
  font-size: 18px;
}

@media (min-width: 992px) {
  .project-hero-block .h2-sub {
    font-size: 35px;
  }
}

.project-hero-block h2 {
  font-size: 30px;
}

@media (min-width: 992px) {
  .project-hero-block h2 {
    font-size: 60px;
  }
}

.project-hero-block .caption {
  font-size: 18px;
  font-weight: 300;
}

@media (min-width: 992px) {
  .project-hero-block .caption {
    font-size: 20px;
  }
}

.project-section-4-block {
  overflow: hidden;
}

.project-section-4-block .card {
  max-width: 1000px;
  margin-top: -30px;
  z-index: 5;
}

.project-section-4-block .card .body .title {
  font-size: 20px;
}

@media (min-width: 992px) {
  .project-section-4-block .card .body .title {
    font-size: 42px;
  }
}

.project-section-4-block .card .body .divider {
  max-width: 145px;
}

@media (min-width: 992px) {

  .aspendale-page .project-section-3-block .card .image,
  .aspendale-page .project-section-5-block .card .image,
  .aspendale-page .project-section-8-block .card .image {
    flex: 0 0 40% !important;
  }
}

@media (min-width: 1200px) {

  .aspendale-page .project-section-3-block .card .image,
  .aspendale-page .project-section-5-block .card .image,
  .aspendale-page .project-section-8-block .card .image {
    flex: 0 0 40% !important;
  }
}

@media (min-width: 992px) {
  .aspendale-page .project-section-4-block .card {
    margin-top: -113px;
  }
}

@media (min-width: 992px) {

  .brisbane-page .project-section-3-block .card .image,
  .brisbane-page .project-section-5-block .card .image,
  .brisbane-page .project-section-8-block .card .image {
    flex: 0 0 40% !important;
  }
}

@media (min-width: 1200px) {

  .brisbane-page .project-section-3-block .card .image,
  .brisbane-page .project-section-5-block .card .image,
  .brisbane-page .project-section-8-block .card .image {
    flex: 0 0 40% !important;
  }
}

@media (min-width: 992px) {
  .brisbane-page .project-section-4-block .card {
    margin-top: -130px;
  }
}

@media (min-width: 992px) {

  .lumina-28-page .project-section-3-block .card .image,
  .lumina-28-page .project-section-5-block .card .image,
  .lumina-28-page .project-section-8-block .card .image {
    flex: 0 0 40% !important;
  }
}

@media (min-width: 1200px) {

  .lumina-28-page .project-section-3-block .card .image,
  .lumina-28-page .project-section-5-block .card .image,
  .lumina-28-page .project-section-8-block .card .image {
    flex: 0 0 40% !important;
  }
}

@media (min-width: 992px) {
  .lumina-28-page .project-section-4-block .card {
    margin-top: -82px;
  }
}

@media (min-width: 992px) {

  .preston-page .project-section-3-block .card .image,
  .preston-page .project-section-5-block .card .image,
  .preston-page .project-section-8-block .card .image {
    flex: 0 0 40% !important;
  }
}

@media (min-width: 1200px) {

  .preston-page .project-section-3-block .card .image,
  .preston-page .project-section-5-block .card .image,
  .preston-page .project-section-8-block .card .image {
    flex: 0 0 40% !important;
  }
}

@media (min-width: 992px) {
  .preston-page .project-section-4-block .card {
    margin-top: -130px;
  }
}

@media (min-width: 992px) {
  .sullivan-park-page .project-section-7-block .card .image {
    flex: 0 0 40% !important;
  }
}

@media (min-width: 1200px) {
  .sullivan-park-page .project-section-7-block .card .image {
    flex: 0 0 40% !important;
  }
}

@media (min-width: 992px) {
  .sullivan-park-page .project-section-4-block .card {
    margin-top: -82px;
  }
}

@media (min-width: 992px) {
  .sydney-page .project-section-4-block .card {
    margin-top: -82px;
  }
}

@media (min-width: 992px) {

  .ballina-nsw-page .project-section-3-block .card .image,
  .ballina-nsw-page .project-section-6-block .card .image {
    flex: 0 0 40% !important;
  }
}

@media (min-width: 1200px) {

  .ballina-nsw-page .project-section-3-block .card .image,
  .ballina-nsw-page .project-section-6-block .card .image {
    flex: 0 0 40% !important;
  }
}

@media (min-width: 992px) {
  .ballina-nsw-page .project-section-4-block .card {
    margin-top: -82px;
  }
}

main.contact-us-page section {
  background: #fff;
  position: relative;
}

.contact-form-block {
  position: relative;
}

.contact-form-block:before {
  content: "";
  background: url(../images/contact-us/contact-form-image.jpg) no-repeat bottom center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 100%;
  height: 100%;
}

.contact-form-block .container {
  position: relative;
  z-index: 2;
}

.contact-form-block .title {
  font-size: 30px;
}

@media (min-width: 992px) {
  .contact-form-block .title {
    font-size: 40px;
  }
}

.contact-form-block .author,
.contact-form-block .author h6 {
  font-size: 18px;
}

@media (min-width: 992px) {

  .contact-form-block .author,
  .contact-form-block .author h6 {
    font-size: 21px;
  }
}

.contact-form-block .contacts {
  font-size: 18px;
}

@media (min-width: 992px) {
  .contact-form-block .contacts {
    font-size: 23px;
  }
}

.contact-form-block .contacts img {
  width: 45px;
  height: 45px;
}

.contact-form-block .contacts a:hover {
  color: #5daee8;
}

.contact-form-block .socials {
  max-width: 550px;
}

.contact-form-block .socials h5 {
  font-size: 18px;
}

@media (min-width: 992px) {
  .contact-form-block .socials h5 {
    font-size: 23px;
  }
}

@media (min-width: 992px) {
  .contact-form-block .card p {
    font-size: 18px;
  }
}

.contact-form-block #contact_form .input-field {
  position: relative;
}

.contact-form-block #contact_form .input-field .invalid-feedback {
  position: absolute;
  bottom: -25px;
  font-size: 13px;
  font-style: italic;
}

.social-gallery-block #gallery {
  max-width: 1100px;
}

/***********construction css***************/
.aspect_1 {
  aspect-ratio: 55 / 60;
  object-fit: cover;
  object-position: center center;
}

section.construction-experience-block .card.image-text-card ul.info-list {
  padding-left: 0px !important;
}

section.construction-experience-block .card.image-text-card picture.image {
  max-width: 520px;
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

section.construction-experience-block .heading.text-center {
  padding-bottom: 30px !important;
  margin-bottom: 0px !important;
}

@media (max-width:767px) {
  section.construction-experience-block .card.image-text-card picture.image img {
    margin-left: 0% !important;
    width: calc(100% + 0%) !important;
    max-width: calc(100% + 0%) !important;
  }

  section.construction-experience-block .card.image-text-card .body.mb-5 {
    margin-bottom: 20px !important;
  }

  section.construction-experience-block .card.image-text-card .body span.steps-pill {
    margin-bottom: 10px !important;
  }

  section.construction-experience-block .card.image-text-card .body h3.subtitle {
    margin-bottom: 10px !important;
  }

  section.construction-experience-block .card.image-text-card .body .divider {
    margin-bottom: 13px !important;
  }

  section.construction-experience-block .card.image-text-card ul.info-list {
    margin-bottom: 10px !important;
  }

  section.construction-experience-block .py-5 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .construction-experience-block .card .body .info-list li {
    margin-bottom: 10px !important;
  }

  section.construction-experience-block .card.image-text-card picture.image .backdrop {
    right: -20px !important;
    width: calc(90%) !important;
  }

  section.construction-experience-block .card.image-text-card picture.image {
    padding-right: 0px !important;
  }

  section.construction-experience-block .card.image-text-card {
    padding-left: 10px;
    padding-right: 10px;
  }

  section#construction.construction-director-block .card.image-text-card {
    padding-inline: 10px;
  }

  section#construction.construction-director-block .card.image-text-card picture.image span {
    width: 90% !important;
    right: -22px;
  }

  section#construction.construction-director-block .card.image-text-card picture.image {
    padding: 30px 0px 30px 0px !important;
  }

  section#risk-management.risk-management-block .container {
    padding-inline: 25px !important;
  }

  section#risk-management.risk-management-block .bottom-row ul,
  section.qa-procurement-block .container ul {
    padding-left: 0px !important;
  }

  section.quality-assurance-block .container,
  section.qa-procurement-block .container {
    padding-inline: 25px !important;
  }

  section.qa-procurement-block picture {
    padding-top: 25px !important;
  }
}

/*******************************education page css*********************************/
.specialist_area {
  display: flex;
  align-items: center;
  gap: 80px;
  justify-content: center;
}

.specialist_area ul.text-blue {
  list-style: disc;
  padding-left: 25px;
  font-weight: 600;
}

.specialist_area .heading {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  width: 100%;
  max-width: 850px;
}

.specialist_area .heading>*:not(.divider) {
  width: 100%;
  margin: 0 auto;
  max-width: 660px;
}

.specialist_area img.img-fluid {
  width: 100%;
  max-width: 250px;
}

section.build_enviourment_comm {
  padding: 80px 20px;
  aspect-ratio: 192 / 83;
  background: url(https://kingcorpdevelopments.com/images//build_enviroment.jpg) !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  display: flex;
  align-items: center;
  position: relative;
}

/**section.build_enviourment_comm::before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(92deg, transparent, #000000c4);
}***/
section.build_enviourment_comm .envourment_cont .cont p {
  padding: 15px;
  background: #00000024;
}

section.build_enviourment_comm .envourment_cont {
  color: #fff;
  display: flex;
  flex-direction: column;
  row-gap: 28px;
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  position: relative;
  z-index: 9;
}

section.build_enviourment_comm .envourment_cont p:not(.mb-0) {
  margin: 0px !important;
}

section.build_enviourment_comm .envourment_cont .cont {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  align-items: flex-start;
}

section.build_enviourment_comm .envourment_cont p.bold {
  font-weight: 600;
}

section.building_design {
  padding: 0px;
  background: url(https://kingcorpdevelopments.com/images//building_design_strip.png) !important;
  background-repeat: repeat-x !important;
  background-position: center;
  background-size: contain !important;
}

section.building_design .container {
  max-width: 100%;
  padding: 0px;
  display: flex;
}

section.building_design .img_side,
section.building_design .cont_side {
  width: 50%;
}

section.building_design .cont_side {
  padding: 50px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  max-width: 775px;
}

section.building_design .cont_side {
  padding: 50px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.heading_with_logo {
  display: flex;
  align-items: center;
  gap: 20px;
}
.heading_with_logo h2 {
  margin: 0px !important;
}
.heading_with_logo {
  margin-bottom: 1.5rem;
}
.courses ul.custom-list {
  /*padding: 0px !important;*/
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.heading_with_logo ~ .divider {
  max-width: 150px;
}
section.build_enviourment_comm .divider , section.building_design .divider , section.valuation .divider , section.law_with_img .divider {
  margin-top: -20px;
}
/*.courses ul.custom-list li * {
    padding: 0px !important;
    margin: 0px !important;
}
.courses ul.custom-list li span.dot {
    display: none;
}*/
section.building_design .courses ul {
  margin-bottom: 0px !important;
}

/*******************************enviroment design***********************/
section.building_design .img_side img {
  width: 100%;
  aspect-ratio: 95 / 70;
  display: flex;
  height: 100%;
}

section.build_enviroment {
  padding: 80px 0px;
  background: url(https://kingcorpdevelopments.com/images//envioroment_management.jpg) no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
}

section.build_enviroment .enviroment_cont {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
  width: 100%;
  max-width: 730px;
}

section.build_enviroment .enviroment_cont .point_bold {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  font-weight: 600;
}

section.build_enviroment .enviroment_cont .point_bold p {
  display: flex;
  flex-wrap: wrap;
}

section.build_enviroment .enviroment_cont .point_bold p span {
  display: flex;
  min-width: 110px;
}

section.build_enviroment .enviroment_cont p {
  margin: 0px !important;
}

.heading_with_logo img {
  height: 38px;
  width: auto;
  margin-top: 0px !important;
  margin-bottom: 0px;
}
.building-design-block .heading_with_logo , section.build_enviourment_comm .heading_with_logo {
  align-items: center !important;
}
/**********************valuation css********************/
section.valuation {
  padding: 80px 0px;
  background: url(https://kingcorpdevelopments.com/images//valuation.jpg) no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
  color: #fff;
}

section.valuation .valuation_cont {
  padding: 40px;
  background: #0066868a;
  max-width: 750px;
  display: flex;
  flex-direction: column;
  row-gap: 28px;
}

section.valuation .valuation_cont p {
  margin: 0px !important;
}
section.valuation .heading_with_logo , section.law_with_img .heading_with_logo {
  align-items: center;
}

/**********************project management*****************/
.cap_case {
  text-transform: capitalize;
}

section.project-management-1-block ul.custom-list {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

section.project-management-1-block ul.custom-list {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

section.legal-block .bottom-row .heading.text-center {
  max-width: 100% !important;
}

section.project-management-1-block ul.custom-list.two_in_line,
.law_cont .two_in_line {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
}

section.project-management-1-block ul.custom-list.two_in_line li,
.law_cont .two_in_line li {
  width: calc(50% - 15px);
  margin-bottom: 0px;
}

section.law_with_img ul.custom-list.two_in_line {
  row-gap: 1.5rem;
  padding-bottom: 1.5rem;
}

section.law_with_img ul.custom-list.two_in_line li {
  padding: 10px;
  background: #00000061;
  margin: 0px !important;
}

section.law_with_img ul.custom-list.two_in_line li:nth-child(4),
section.law_with_img ul.custom-list.two_in_line li:nth-child(5),
section.law_with_img ul.custom-list.two_in_line li:nth-child(6) {
  background: #00000094;
}

section.law_with_img .heading_with_logo img {
  max-width: 115px;
}

/********************************law css******************/
section.law_with_img {
  padding: 80px 0px;
  background: url(https://kingcorpdevelopments.com/images//law.jpg) no-repeat !important;
  aspect-ratio: 192 / 90;
  display: flex;
  background-size: cover !important;
  background-position: top left;
  position: relative;
}

/*****section.law_with_img::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #000000c7;
}************/
section.law_with_img .law_cont>p {
  background: #00000091;
  padding: 15px;
}

img.filter_white {
  filter: brightness(0) invert(1);
}

section.law_with_img .container {
  position: relative;
  z-index: 11;
}

section.law_with_img * {
  color: #fff;
}

section.law_with_img .law_cont {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  max-width: 950px;
}

section.law_with_img~section.legal-block {
  padding-top: 100px;
}

section.build_enviroment .heading_with_logo h2.title {
  max-width: 360px;
}
section.building-design-block .heading_with_logo h2 {
  max-width: 470px;
}
section.build_enviourment_comm .heading_with_logo h2 {
  max-width: 440px;
}

@media (max-width:767px) {

  section.project-management-1-block ul.custom-list.two_in_line li,
  .law_cont .two_in_line li {
    width: calc(100% - 0px);
    margin-bottom: 0px;
  }

  section.specialist-areas-block .specialist_area {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start;
  }

  .specialist_area img.img-fluid {
    max-width: 160px;
  }

  section.building_design .container {
    flex-wrap: wrap;
  }

  section.building_design .img_side,
  section.building_design .cont_side {
    width: 100%;
  }

  section.building_design {
    margin-bottom: 50px;
  }

  .heading_with_logo img.img-fluid {
    order: -1;
  }

  .heading_with_logo {
    flex-wrap: wrap;
    gap: 20px;
  }

  section.law_with_img {
    aspect-ratio: unset;
  }

  /*******************education mobile design***************/
  main.team-page.education-page h2 , main.team-page.education-page h1 {
    font-size: 26px !important;
  }
  main.team-page.education-page .heading_with_logo img {
      margin: 0px !important;
      max-width: 110px !important;
      width: 100% !important;
      order: 1;
      display: none;
  }
  main.team-page.education-page section {
      padding-top: 20px;
      padding-bottom: 20px;
      padding-left: 0px !important;
      padding-right: 0px !important;
  }
  section.building_design .cont_side.justify-content-center {
      padding: 50px 12px !important;
  }
  section.valuation .valuation_cont {
      padding: 30px 12px;
  }
  section.valuation .container {
      padding: 0px;
  }
  main.team-page.education-page section .top-row {
      padding: 0px !important;
  }
  section.specialist-areas-block .specialist_area img.img-fluid {
      max-width: 110px;
  }
  main.team-page.education-page .heading_with_logo h2 {
      order: 2;
      width: 100%;
  }
  main.team-page.education-page section.project-management-2-block.py-5 .body .d-flex.align-items-lg-center {
      flex-wrap: wrap;
      gap: 20px;
  }
  main.team-page.education-page section.project-management-2-block.py-5 .body .d-flex.align-items-lg-center img.filter_white.titlelogo {
      margin: 0px !important;
      order: 0 !important;
  }
  main.team-page.education-page section.project-management-2-block.py-5 .body .d-flex.align-items-lg-center h2.title {
      order: 1;
      width: 100%;
  }
  section.law_with_img ul.custom-list.two_in_line {
      padding-left: 0px !important;
  }
  .custom-list {
      padding-left: 0px !important;
  }
  section.law_with_img ul.custom-list.two_in_line li {
      padding-left: 0px !important;
  }
  section.build_enviourment_comm .envourment_cont .cont p {
    background: #00000040;
  }
  .legal-block .bottom-row .custom-list li p {
    font-size: 16px !important;
  }
  .custom-list li p {
    font-size: 16px !important;
  }
  main.team-page.education-page section.project-management-2-block.py-5 .body .d-flex.align-items-lg-center img.filter_white.titlelogo {
      display: none;
  }
  /*************************************Css 17-08-2025**************************************/
  .team-page.education-page .specialist-areas-block .specialist_area > img {
    display: none !important;
  }
  main.team-page.education-page section.build_enviourment_comm {
      background-size: 178vw 35vh !important;
      padding-top: 35vh;
      background-position: 0% 0% !important;
      width: 100%;
  }
  main.team-page.education-page section.build_enviourment_comm .container {
    padding: 30px 20px !important;
  }
  main.team-page.education-page section.build_enviourment_comm .container * {
    color: #000 !important;
  }
  main.team-page.education-page section.build_enviourment_comm .container .cont p {
    background: transparent !important;
    padding:0px;
    padding-left: 30px;
  }
  .team-page.education-page .specialist-areas-block .container {
    padding-inline: 20px !important;
  }
  .team-page.education-page section.building_design {
    padding: 0px !important;
    margin: 0px !important;
  }
  .team-page.education-page section.building_design .cont_side {
    background: #fff;
    padding: 50px 20px !important;
  }
  main.education-page .specialist-areas-block:not(:first-child) {
    padding-top: 0px !important;
  }
  main.education-page .specialist-areas-block .body > p {
    padding-left: 30px;
  }
  .team-page.education-page section.building_design .cont_side > p {
    padding-left: 30px !important;
  }
  main.education-page .specialist-areas-block picture.image {
    padding-right: 0px !important;
  }
  main.team-page.education-page section.build_enviroment {
    padding-top: 35vh !important;
    background-size: 178vw 35vh !important;
    background-position: top right !important;
    padding-bottom: 0px !important;
  }
  main.team-page.education-page section.build_enviroment .container {
      padding: 50px 20px !important;
  }
  main.team-page.education-page section.build_enviroment .container .enviroment_cont > p {
      padding-left: 30px !important;
  }
  main.team-page.education-page section.building-design-block .container {
      padding-inline: 20px !important;
  }
  main.team-page.education-page section.building-design-block .container .body > p {
      padding-left: 30px;
  }
  main.team-page.education-page section.building-design-block .container .card picture.image {
    padding-right: 0px !important;
  }
  main.team-page.education-page section.building-design-block .container .card picture.image span.backdrop {
      right: -20px;
  }

  main.team-page.education-page section.valuation {
      padding-top: 35vh;
      padding-bottom: 0px !important;
      background-size: 178vw 35vh !important;
      background-position: top center !important;
  }
  main.team-page.education-page section.valuation .container {
      padding: 50px 20px !important;
  }
  main.team-page.education-page section.valuation .container .valuation_cont {
      padding: 0px;
      background: transparent !important;
  }
  main.team-page.education-page section.valuation .container .valuation_cont * {
      color: #000 !important;
  }
  main.team-page.education-page section.valuation .container .valuation_cont h3 b {
      color: #002c45 !important;
  }
  main.team-page.education-page section.valuation .container .valuation_cont > p {
      padding-left: 30px !important;
  }
  section.build_enviourment_comm .divider, section.building_design .divider, section.valuation .divider, section.law_with_img .divider {
      margin-bottom: 0px !important;
  }
  main.team-page.education-page section.construction-costs-block .container {
      padding-inline: 20px !important;
  }
  main.team-page.education-page section.construction-costs-block .container .body > p {
      padding-left: 30px;
  }
  main.team-page.education-page section.construction-costs-block.overflow-hidden picture.image {
      padding-right: 0px !important;
  }
  main.team-page.education-page section.construction-costs-block.overflow-hidden picture.image {
      padding-right: 0px !important;
  }
  main.team-page.education-page  section.project-management-1-block {
    background: #fff !important;
    display: flex;
    flex-direction: column-reverse;
  }
  main.team-page.education-page section.project-management-1-block::after {
    display: block !important;
    content: "";
    position: relative;
    width: 100%;
    top: 0px;
    background: url(../images/team/project-management-1-bg.jpg) no-repeat left top;
    background-size: cover;
    z-index: 1;
    height: 145vw;
    transform: rotateY(180deg);
  }
  main.team-page.education-page section.project-management-1-block .container {
    padding: 50px 20px !important;
  }
  main.team-page.education-page section.project-management-2-block .container {
    padding-inline: 20px;
  }
  main.team-page.education-page section.project-management-2-block .container .body ul.custom-list li p:not(.ms-2) {
    padding-left: 30px;
  }
  main.team-page.education-page section.project-management-1-block .body .row > div > p {
    padding-left: 30px !important;
  }
  main.team-page.education-page  section.law_with_img {
      background-size: 170vw 35vh !important;
      background-position: top left !important;
      padding-top: 35vh !important;
      padding-bottom: 0px;
  }
  main.team-page.education-page section.law_with_img .container {
      padding: 50px 20px 0px !important;
  }
  main.team-page.education-page section.law_with_img .container *:not(.text-blue) , main.team-page.education-page section.law_with_img .container h2.title {
      color: #000 !important;
  }
  main.team-page.education-page section.law_with_img .container .text-blue {
      color: #002c45;
  }
  main.team-page.education-page section.law_with_img .container ul.custom-list li {
      background: transparent;
      padding-bottom: 0px;
  }
  main.team-page.education-page section.law_with_img .container .law_cont > p {
    padding-left: 30px !important;
  }
  main.team-page.education-page section.law_with_img .law_cont > p {
      background: transparent;
      padding: 0px;
  }
  main.team-page.education-page section.legal-block {
      padding-bottom: 0px;
  }
  main.team-page.education-page section.legal-block .bottom-row .container {
      padding-inline: 20px !important;
  }
  main.team-page.education-page section.surveying-block .container {
      padding-inline: 20px !important;
  }
  main.team-page.education-page section.surveying-block .container .body > p {
      padding-left: 30px;
  }
  main.team-page.education-page section.surveying-block .container picture {
      padding-right: 0px !important;
  }
  main.team-page.education-page section.specialist-areas-block .bottom-row .body > ul.custom-list {
      margin-bottom: 20px !important;
  }
}




.team-cnt section.main-sec-2{
    background-image: url(../images/team/banner.png) ;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}  

.team-cnt .text-title {
    padding-top: 80px;
    padding-bottom: 60px;
}


.team-cnt .text-title ul li {
    color: #fff;
    font-size: 16px;
    line-height: 28px;
    list-style: none;
}

.team-cnt .text-title h2 {
    font-size: 38px;
    margin-bottom: 14px;
    color: #fff;
}

.team-cnt .text-title h3 {
    font-size: 26px;
    font-weight: 500;
    color: #fff;
    margin-top: 20px;
}

.team-cnt .sec3-title p strong {
    color: #002c45;
}

.team-cnt .text-title p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #fff;
    text-align: justify;
}

.team-cnt section.head-sec {
    text-align: center;
    padding-bottom: 30px;
}

.team-cnt .sec-title h1 {
    font-size: 42px;
    font-weight: 700;
    color: #002C45;
    text-align: justify;
}

.team-cnt .sec-title p {
    color: #000;
    font-size: 16px;
    text-align: left;
    /* padding-left: 40px; */
    font-weight: 400;
    line-height: 24px;
}

.team-cnt .sec-title {
    width: 50%;
    margin: 0 auto;
    position: relative;
}

.team-cnt .sec-title::after {
    content: "";
    background: #5DAEE8;
    width: 100%;
    height: 6px;
    left: 0;
    right: 0;
    position: absolute;
    border-radius: 30px;
    top: 90px;
}

.team-cnt .text-title ul {
    padding: 0px;
}

.team-cnt section.main-sec-3 {
    background-image: url(../images/team/concept.png) !important;
    background-size: cover !important;
    background-position: center!important;
    padding-top: 80px;
    padding-bottom: 60px;
}

.team-cnt .sec3-title h2 {
    font-size: 36px;
    line-height: 50px;
    margin-bottom: 15px;
    color: #002C45;
}

.team-cnt .sec3-title h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #002c45ea;
}

.team-cnt .sec3-title ul {
    padding: 0px;
}

.team-cnt .sec3-title ul li {
    list-style: none;
    font-size: 16px;
    line-height: 24px;
    color: black;
    margin-bottom: 8px;
}

.team-cnt .sec3-title-2 h3 {
    font-size: 24px;
    color: #002C45;
    margin-bottom: 15px;
}

.team-cnt .sec3-title-2 p {
    color: #0a0a0acc;
    font-size: 16px;
    line-height: 24px;
}

section.main-sec-4 {
    padding-top: 80px;
    padding-bottom: 60px;
}

.team-cnt .thm-image img {
    width: 90%;
}

.team-cnt .thm-image {
    text-align: left;
}

.team-cnt .main-sec-4 .thm-contnt h2 {
    font-size: 36px;
    line-height: 50px;
    color: #fff !important;
    margin-bottom: 15px;
}

.team-cnt .main-sec-4 .thm-contnt h5 {
    color: #fff !important;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}

.team-cnt .main-sec-4 .thm-contnt ul {
    padding: 0px;
    margin-bottom: 20px;
}

.team-cnt .main-sec-4 .thm-contnt ul li {
    list-style: none;
    font-size: 16px;
    line-height: 24px;
    /* color: #0a0a0abd; */
}

.team-cnt .main-sec-4 .thm-contnt p {
    color: #fff !important;
    font-size: 16px;
    line-height: 24px;
}

.abtimg img {
    width: 90%;
    display: flex;
    justify-content: end;
    margin-left: auto;
}

/* .abtsec ul li {
    margin-bottom: 8px;
} */

.team-cnt .abtsec p {
    line-height: 26px;
}

.team-cnt .main-sec-4 .thm-contnt h4 {
    margin-bottom: 14px;
    color: #fff !important;
    font-size: 24px;
    font-weight: 500;
}
/* 
.team-cnt section.main-sec-lw {
    background: #002C45 !important;
    padding-top: 80px;
    padding-bottom: 60px;
} */

.team-cnt .lw-sec-title h2 {
    font-size: 36px;
    color: #fff;
    line-height: 50px;
    margin-bottom: 15px;
}

.team-cnt .lw-sec-title h4 {
    font-size: 20px;
    color: #ffffff;
}

.team-cnt .lw-sec-title ul {
    padding: 0px;
    margin-top: 14px;
}

.team-cnt .lw-sec-title ul li {
    font-size: 16px;
    line-height: 28px;
    color: #fff;
    list-style: none;
}

.team-cnt section.main-sec-lw {
    background: #002C45;
    padding-top: 80px;
    padding-bottom: 80px;
}

.team-cnt .lw-sec-title h2 {
    font-size: 36px;
    color: #fff;
    line-height: 50px;
    margin-bottom: 15px;
}

.team-cnt .lw-sec-title h4 {
    font-size: 20px;
    color: #ffffff;
}

.team-cnt .lw-sec-title ul {
    padding: 0px;
    margin-top: 14px;
}

.team-cnt .lw-sec-title ul li {
    font-size: 16px;
    line-height: 28px;
    color: #fff;
    list-style: none;
}

.team-cnt .lw-sec-cnt h4 {
    font-size: 20px;
    color: #ffffffe3;
    margin-bottom: 15px;
}

.team-cnt .lw-sec-cnt p {
    color: #fff;
    font-size: 16px;
    line-height: 24px;
}

section.main-prf-sec {
    padding-top: 70px;
    padding-bottom: 60px;
}

.team-cnt .prf-image img {
    width: 90%;
}

.team-cnt .prf-cntnt h2 {
    font-size: 36px;
    margin-bottom: 15px;
    line-height: 50px;
    color: #002C45;
}

.team-cnt .prf-cntnt h5 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 14px;
    color: #002C45;
}

.team-cnt .prf-cntnt ul li {
    list-style: none;
    line-height: 24px;
    margin-bottom: 5px;
    color: #0A0A0A;
}

.team-cnt .prf-cntnt ul {
    padding: 0px;
    margin-bottom: 15px;
}

.team-cnt .prf-cntnt h4 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 14px;
    color: #002c45de;
}

.team-cnt .prf-cntnt p {
    font-size: 16px;
    line-height: 24px;
    color: #0A0A0A;
}

.team-cnt section.main-cst-sec {
    background: #F0F0F0 !important;
    padding-top: 80px;
    padding-bottom: 50px;
}

.team-cnt .cst-content h2 {
    font-size: 36px;
    line-height: 50px;
    margin-bottom: 15px;
    color: #002C45;
}

.team-cnt .cst-content h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #002C45;
}

.team-cnt .cst-content ul li {
    list-style: none;
    line-height: 24px;
    font-size: 16px;
    margin-bottom: 6px;
    color: #002c45e3;
}

.team-cnt .cst-content ul {
    padding: 0px;
    padding-bottom: 15px;
}

.team-cnt .cst-content p {
    color: #002c45bd;
    font-size: 16px;
    line-height: 24px;
}

section.main-sec-lead {
    padding-top: 80px;
    padding-bottom: 60px;
}

section.main-sec-lead {
    padding-top: 80px;
    padding-bottom: 60px;
}

.team-cnt .lead-sec h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #002C45;
}

.team-cnt .lead-sec h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #002C45;
    margin-top: 20px;
}

.lead-sec ul {
    padding: 0px;
}

.lead-sec ul li {
    list-style: none;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 2px;
    color: #002C45;
}

.team-cnt .lead-sec p {
    font-size: 16px;
    line-height: 28px;
    color: #002C45;
}

.lead-image img {
    width: 95%;
    margin-right: auto;
    display: flex;
    justify-content: flex-end;
}

.lead-sec {
    padding-top: 60px;
}

.main-qulty-sec{
    padding-top: 60px;
    padding-bottom: 60px;
}

.qlty-sec {
    /* text-align: center; */
    padding-top: 20px;
    /* padding-left: 95px; */
}

.team-cnt .qlty-sec ul li {
    list-style: none;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 2px;
    color: #002C45;
}

.team-cnt .qlty-sec h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #002C45;
}

.team-cnt .qlty-sec p {
    font-size: 16px;
    line-height: 24px;
    width: 90%;
    margin: 0 auto;
    margin-bottom: 15px !important;
    color: #002C45;
    margin: 0;
}

.qlty-sec h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #002C45;
    margin-top: 15px;
}


.team-cnt .mtr-sec h2 {
    font-size: 36px;
    color: #002c45 !important;
    margin-bottom: 15px;
    line-height: 50px;
}

.mtr-sec h4 {
    font-size: 20px;
    color: #002c45 !important;
    margin-bottom: 15px;
    margin-top: 15px;
}

.team-cnt .mtr-sec ul li {
    list-style: none;
    color: #fff;
    font-size: 16px;
    line-height: 28px !important;
    margin-bottom: 2px;
}

.team-cnt .mtr-sec ul {
    padding: 0px;
}

.team-cnt .mtr-sec p {
    color: #fff;
    font-size: 16px;
    line-height: 24px;
}


section.main-thrgh-sec {
    padding-top: 80px;
    padding-bottom: 60px;
}

.team-cnt .thrgh-image img {
    width: 90%;
}

.team-cnt .thrgh-content h2 {
    color: #fff !important;
    line-height: 50px;
    font-size: 36px;
    margin-bottom: 15px;
}

.team-cnt .thrgh-content h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff !important;
    margin-top: 15px !important;
}

.thrgh-content ul {
    padding: 0px;
}

.team-cnt .thrgh-content ul li {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 2px;
    list-style: none;
    color: #fff !important;
}

.team-cnt .thrgh-content p {
    font-size: 16px;
    line-height: 24px;
    color: #fff !important;
}

.team-cnt .education-page .row {
    align-items: center !important;
    gap: 0px;
}
.main-sec-4{
    background-image: url(../images/team/hope.png) !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

section.main-sec-4 {
    padding-top: 80px;
    padding-bottom: 60px;
    color: white !important;
}

.main-sec-abt {
    background-image: url(../images/team/about.png) !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    padding-top: 60px;
    padding-bottom: 60px;
}

section.main-sec-lw {
    background-image:url(../images/team/law.png) !important;
    background-position: center center !important;
    background-size: cover !important;
    padding-top: 80px  !important;
    padding-bottom: 60px !important;
}

.team-cnt .main-prf-sec {
    background-image: url(../images/team/perfect.png);
    background-position: center center  !important;
    background-size: cover !important;
    padding-top: 80px;
    padding-bottom: 60px;
}

.team-cnt .thm-contnt > * {
    color: white;
}

.team-cnt .abtsec > * {
    color: #002C45;
}

.team-cnt .main-thrgh-sec{
    background-image: url(../images/team/images/thrgh-bg.png);
    background-position: center center  !important;
    background-size: cover !important;
}

.team-cnt .thrgh-content > * {
    color: white !important;
}

.team-cnt .thrgh-content > p {
    color: white !IMPORTANT;
}

.team-cnt .cntnt-sec2 p {
    color: white;
}

.team-cnt .thrgh-content li {
    color: white !IMPORTANT;
}

.cst-image img {
    float: right;
}

.main-mtr-sec {
    padding-top: 80px;
    padding-bottom: 60px;
}


.mtr-sec > * {
    color: black !important;
}

.mtr-sec li {
    color: black !important;
}

.cntnt-sec2 {
    background: #0a0a0a38;
    padding: 20px 15px;
}

.team-cnt span.sml {
    font-size: 14px;
}

.team-cnt .education-page p{
  text-align: justify;
}

.lw-sec-title ul {
    margin-bottom: 30px;
}

.team-cnt h3 {
    margin-bottom: 20px !important;
    font-size: 30px !important;
    font-weight: 700;
}

.team-cnt .sec3-title {
    margin-bottom: 30px !important;
}

.team-cnt ul li {
    line-height: 28px !important;
     margin-bottom: 0px !important;
     font-size: 18px !important;
}

.team-cnt h4 {
    margin-bottom: 15px !important;
    margin-top: 12px;
    FONT-WEIGHT: 700;
    font-size: 30px !important;
}

.team-cnt section.main-sec-lead .container-fluid 
{
    max-width: 95% !IMPORTANT;
    margin-left: 0px;
}

.team-cnt .mtr-imgae {
    text-align: center;
}

.team-cnt section.main-sec-4 h2 {
    color: #fff !important;
}

.team-cnt section.main-sec-4 h4 {
    color: #fff !important;
}

.team-cnt section.main-sec-4 h5 {
    color: #fff !important;
}

.team-cnt .img-sec2 {
    display: none ;
}

.team-cnt  p {
    text-align: justify;
}

.team-cnt .abtsec h2 {
    margin-bottom: 15px;
}

.team-cnt .abtsec h5 {
    margin-bottom: 15px;
}

section#quality-assurance p {
    color: #fff !important;
}

.team-cnt p {
    text-align: justify;
    margin-bottom: 10px;
}

.team-cnt .abtsec p strong {
    text-align: left;
}

.team-cnt .abtsec p {
    color: #000 !IMPORTANT;
}

.team-cnt .abtsec ul li {
    color: #000;
}



.qulty-image img {
    width: 95%;
    margin-right: auto;
    display: flex;
    justify-content: flex-end;
}

.team-cnt h2 {
    font-size: 45px !important;
    line-height: 55px !important;
    font-weight: 700;
}

.team-cnt p {
    font-size: 18px !IMPORTANT;
    line-height: 30px !important;
}

.team-cnt p strong {
    font-size: 22px;
    color: #002c45 !important;
}

.team-cnt section.main-sec-2 .text-title p strong {
    color: #fff !important;
}

.team-cnt .main-sec-4 .thm-contnt p strong {
    color: #fff !important;
}

.team-cnt .lw-sec-title p strong {
    color: #fff !IMPORTANT;
}

.team-cnt .thrgh-content p strong {
    color: #fff !IMPORTANT;
}

@media only screen and (max-width:767px) {
    main.team-cnt section {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    }


  .team-cnt .abtsec p strong {
    text-align: center ;
    }
    
    .img-sec2 {
        display: block !important;
    }

    /* section.main-sec-4 h2 {
    color: #002C45 !important;
}

section.main-sec-4 h4 {
    color: #002C45 !important;
}

section.main-sec-4 h5 {
    color: #002C45 !important;
} */
.team-cnt section.main-sec-lead .container-fluid{
  max-width: 100% !important;
}

    .team-cnt section {
        background-image: none !important;
        background: none !important;
    }
    .team-cnt .sec-title {
        width: 100%;
    }
    .team-cnt .sec-title h1 {
        font-size: 24px;
        margin-bottom: 2px;
        text-align: center !important;
    }
    .team-cnt .sec-title::after {
        left: 5px;
        right: 0;
        width: 95%;
        top: 100% !important;
    }
    .team-cnt .sec-title p {
        font-size: 14px;
        margin-bottom: 5px;
        text-align: center !IMPORTANT;
    }
    .team-cnt section.head-sec {
        margin-top: 20px !important;
    }
    .team-cnt h2 {
        font-size: 30px !important;
        line-height: 38px !important;
        text-align: center;
        color: #002C45 ! IMPORTANT;
    }
    .team-cnt .text-title {
        padding-top: 10px;
        padding-bottom: 0px;
    }
    .team-cnt p {
        font-size: 14px !IMPORTANT;
        text-align: left;
        color: #000 !important;
        text-align: left !important;
    }
    .team-cnt ul li {
        font-size: 12px !important;
        line-height: 22px !important;
        text-align: center;
        color: #000000 ! IMPORTANT;
    }
    .team-cnt h3 {
        font-size: 22px !important;
        text-align: center;
        color: #002C45 !important;
    }
    .team-cnt section.main-sec-3 {
        padding-top: 30px !important;
        padding-bottom: 20px !important;
        background: #FFFFFF !important;
    }
    section.main-sec-4 {
        padding-top: 40px !important;
        padding-bottom: 40px;
        background: none !important;
    }
    .team-cnt h4 {
        font-size: 22px !important;
        text-align: center;
        line-height: 32px;
        color: #002C45 !important;
    }
    .team-cnt .abtsec {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .team-cnt h5 {
        font-size: 18px !important;
        line-height: 30px;
        text-align: center;
        color: #002C45 !important;
        MARGIN-TOP: 12PX;
        MARGIN-BOTTOM: 12PX;
    }
    section.main-sec-lw {
        padding-top: 40px !important;
        padding-bottom: 0px !important;
        background: none !important;
    }
    section.main-prf-sec {
        padding-top: 20px !IMPORTANT;
        padding-bottom: 40px !IMPORTANT;
        background: none !important;
    }
    section.main-cst-sec {
        padding-top: 0px !important;
        padding-bottom: 30px !important;
    }
    .team-cnt span.sml {
        font-size: 12px;
    }
    .cst-image {
        text-align: center;
    }
    section.main-sec-lead {
        padding-top: 40px !important;
        padding-bottom: 29px !IMPORTANT;
    }
    .lead-sec {
        padding-top: 10px;
        width: 94%;
        margin: 0 auto;
    }
    .lead-sec h4 {
        font-size: 20px !important;
    }
    section.main-qulty-sec {
        padding-top: 0px;
        padding-bottom: 40px;
    }
    .qlty-sec {
        padding-left: 0px;
    }
    .qulty-image {
        text-align: center;
    }
    section.main-thrgh-sec {
        padding-top: 40px;
        padding-bottom: 40px;
        background: none !important;
    }
    section.main-mtr-sec {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .team-cnt .mtr-imgae {
        text-align: center;
        margin-bottom: 15px;
    }
    section.main-qulty-sec .row {
        flex-direction: column-reverse;
    }
    .team-cnt img {
        width: 100% !important;
        margin-bottom: 20px;
    }
    section.main-qulty-sec .col-md-6 {
        padding: initial;
    }
    section.main-sec-lead .col-md-6 {
        padding: inherit;
    }
    section.main-cst-sec .row {
        flex-direction: column-reverse;
    }
    section.main-cst-sec .col-md-6 {
        padding: 0px;
    }
    .team-cnt .text-title p:nth-child(2) {
        text-align: center !IMPORTANT;
    }
    .cst-content {
        width: 94%;
        margin: 0 auto;
    }
    .qlty-sec {
        margin: 0 auto;
        width: 94%;
    }
    section.main-mtr-sec .col-md-6:nth-child(1) {
        padding: 0px;
    }
    .main-sec-abt {
        background: none !IMPORTANT;
        padding-top: 10px;
    }
    section.main-sec-2 {
        background: none !IMPORTANT;
    }
        .team-cnt p strong {
        color: #002C45;
        font-size: 16px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .team-smll p strong {
    font-size: 22px;
    color: #002c45 ! IMPORTANT;
    }
    .team-cnt .flip .row {
        flex-direction: column-reverse;
    }
    .team-cnt .ps-0 {
        padding: 0px !important;
    }
    .team-cnt .cntnt-sec2 {
        padding: 0px;
        background: none;
    }
    .team-cnt p {
    width: 95% !important;
    margin: 0 auto !important;
    margin-bottom: 10px !important;
}
.team-cnt .thrgh-content h2 {
    color: #002c45 !important;
    line-height: 50px;
    font-size: 36px;
    margin-bottom: 15px;
}

.team-cnt .thrgh-content h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #002c45 !important;
    margin-top: 15px !important;
}

.team-cnt .thrgh-content ul {
    padding: 0px;
}

.team-cnt .thrgh-content ul li {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 2px;
    list-style: none;
    color: #002c45 !important;
}

.team-cnt .thrgh-content p {
    font-size: 16px;
    line-height: 24px;
    color: #002c45 !important;
}

.team-cnt .main-sec-4 .thm-contnt p {
    color: #0A0A0A !important;
    font-size: 16px;
    line-height: 24px;
}

.team-cnt .main-sec-4 .thm-contnt h2 {
    font-size: 36px;
    line-height: 50px;
    color: #002C45 !important;
    margin-bottom: 15px;
}
.team-cnt .main-sec-4 .thm-contnt h5 {
    color: #002C45 !important;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}

.team-cnt .main-sec-4 .thm-contnt h4 {
    margin-bottom: 14px;
    color: #002c45e8 !important;
    font-size: 24px;
    font-weight: 500;
}

.team-cnt h3 {
    font-weight: 500;
}
/* .team-cnt .main-thrgh-sec {
    background: none !important;
} */

main.team-cnt section {
    background: none !important;
}

footer .contacts li {
    width: 100% !important;
    display: flex;
    justify-content: center;
}
.team-smll h2 {
    font-size: 30px !IMPORTANT;
    line-height: 38px !important;
}

.team-smll  strong {
    color: #002c45 !important;
}

.team-smll p {
    font-size: 16px !IMPORTANT;
    line-height: 26px !important;
}

.team-smll section.main-sec-2 .text-title p strong {
    color: #002c45 !important;
    font-size: 18px !IMPORTANT;
}

.team-smll p strong {
    font-size: 18px;
}

.team-smll .main-sec-4 .thm-contnt p strong {
    color: #002c45 !important;
}

.team-smll .lw-sec-title p strong {
    color: #002c45 !important;
}

.team-smll .thrgh-content p strong {
    color: #002c45 !important;
}

.team-smll h3 {
    font-weight: 700 !IMPORTANT;
}

.team-smll h4 {
  font-weight: 700 !important;
  }
  
}


a.dropdown-toggle.active {
    pointer-events: none !important;
}