* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: sans-serif;
  font-family: "Raleway", sans-serif;
  font-size: inherit;
}

html {
  font-size: 62.5%;
}

:root {
  --bodyColor: $bodyColor;
  --primary: $primary;
  --secondary: $secondary;
  --universal: $universal;
  --inverse: $inverse;
  --grey: $grey;
  --lal: $lal;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bodyColor);
  overflow-x: hidden;
}

.globalContainer,
.footer-section-wrapper .footer-inner,
.about--inner,
.about--upper,
.about--mincard-container,
.client .section-inner,
.why-us .section-inner,
.testimonial-section .section-inner,
.project .section-inner,
.services .section-inner,
.company,
.quote,
.sheet--inner,
.values .value-list-wrp,
.values,
.contact,
.global-banner--text-inner,
.banner--text-inner,
.header--menu-wraper {
  max-width: 1799px;
  margin: 0 auto;
  width: 85%;
}

html {
  font-size: 62.5%;
}

@media screen and (max-width: 1366px) {
  html {
    font-size: 60%;
  }
}

.header {
  height: 9rem;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.4s ease;
  background: transparent;
}

@media screen and (max-width: 768px) {
  .header {
    height: 8rem;
  }
}

@media screen and (max-width: 768px) {
  .header {
    height: 6rem;
  }
}

.header--menu-wraper {
  display: flex;
  height: 100%;
  justify-content: space-between;
  align-items: center;
}

.header--logo-wrap {
  display: block;
}

@media screen and (max-width: 1024px) {
  .header--logo-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.header--logo-wrap img {
  width: 130px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 768px) {
  .header--logo-wrap img {
    width: 120px;
  }
}

@media screen and (max-width: 768px) {
  .header--logo-wrap img {
    width: 80px;
  }
}

.header--list-wrap {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  align-items: center;
}

.header--list-wrap .list {
  margin: 0 1rem;
  position: relative;
  padding: 3.5rem 0;
}

@media screen and (max-width: 1024px) {
  .header--list-wrap .list {
    padding: 1.5rem 1rem;
  }
}

.header--list-wrap .list .smenu-wrp {
  position: absolute;
  left: 0;
  top: 8.9rem;
  min-width: 25rem;
  width: 100%;
  background: #f6f6f6;
  padding: 1rem;
  visibility: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.4s ease;
}

.header--list-wrap .list .smenu-wrp .smenu-list {
  padding: 1rem 0;
  margin-bottom: 1rem;
  transition: all 0.8s ease-in-out;
  text-align: left;
  position: relative;
}

.header--list-wrap .list .smenu-wrp .smenu-list::before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 1px;
  content: "";
  background: #cd2e1b;
  transition: all 0.2s ease-out;
}

.header--list-wrap .list .smenu-wrp .smenu-list::after {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  content: "";
  background: #cd2e1b;
  transition: all 0.4s ease-in-out;
}

.header--list-wrap .list .smenu-wrp .smenu-list .smenu-link {
  font-size: 1.6rem;
  color: #000;
  padding: 0 0.5rem;
}

.header--list-wrap .list .smenu-wrp .smenu-list:hover::before {
  height: 0;
}

.header--list-wrap .list .smenu-wrp .smenu-list:hover::after {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .header--list-wrap .list .smenu-wrp {
    top: initial;
    left: initial;
    max-height: 0;
    transform: translateY(0);
    position: initial;
    padding: 0 1rem;
    transition: max-height 0.5s ease;
    margin-top: 0.6rem;
  }
}

.header--list-wrap .list .link {
  color: #fff;
  font-size: 1.6rem;
  text-transform: capitalize;
  transition: all 0.4s ease;
  position: relative;
  padding: 0.5rem 0;
}

@media screen and (max-width: 1024px) {
  .header--list-wrap .list .link {
    color: #000;
  }
}

.header--list-wrap .list .link::before {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  content: "";
  background: #fff;
  transition: all 0.4s ease;
}

.header--list-wrap .list .link::after {
  position: absolute;
  left: 0;
  top: 0;
  height: 1px;
  width: 0;
  content: "";
  background: #fff;
  transition: all 0.4s ease;
}

.header--list-wrap .list .link:hover::before {
  width: 100%;
}

.header--list-wrap .list .link:hover::after {
  width: 100%;
}

.header--list-wrap .list .link-icon-extend {
  display: none;
  font-size: inherit;
  transition: all 0.4s ease;
}

@media screen and (max-width: 1024px) {
  .header--list-wrap .list .link-icon-extend {
    display: inline-block;
    margin-left: 2rem;
    font-size: 1.4rem;
  }
}

.header--list-wrap .list .link-icon-extend:hover {
  transform: rotate(180deg);
}

.header--list-wrap .list:hover .smenu-wrp {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  max-width: 15rem;
}

@media screen and (max-width: 1024px) {
  .header--list-wrap .list:hover .smenu-wrp {
    max-height: 40rem;
  }
}

@media screen and (max-width: 1024px) {
  .header--list-wrap {
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    max-width: initial;
    padding: 4rem;
    background: #fff;
    transform: translateY(-120%);
    transition: all 0.4s ease-in-out;
  }
}

.header .menu-bar-section {
  justify-self: end;
  width: 40px;
  height: 40px;
  display: none;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
  z-index: 1;
  cursor: pointer;
}

.header .menu-bar-section .menu-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  transition: all 0.4s ease;
  width: 50%;
  height: 36%;
}

@media screen and (max-width: 768px) {
  .header .menu-bar-section .menu-icon {
    width: 60%;
    height: 40%;
  }
}

.header .menu-bar-section .menu-icon .line {
  background-color: #fff;
  position: relative;
  width: 100%;
  height: 2px;
  transition: all 0.4s ease;
  overflow: hidden;
}

.header .menu-bar-section .menu-icon .line::before {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #000;
  position: absolute;
  content: "";
  transition: all 0.4s ease;
  transform: translateX(-100%);
}

.header .menu-bar-section .menu-icon .line.line-1::before {
  transition-delay: 0.1s;
}

.header .menu-bar-section .menu-icon .line.line-2::before {
  transition-delay: 0.2s;
}

.header .menu-bar-section .menu-icon .line.line-3::before {
  transition-delay: 0.3s;
}

.header .menu-bar-section.menu-crossed .menu-icon .line.line-2 {
  transform: scale(0);
}

.header .menu-bar-section.menu-crossed .menu-icon .line.line-1 {
  transform: translate(1px, 8px) rotate(45deg);
}

.header .menu-bar-section.menu-crossed .menu-icon .line.line-3 {
  transform: translate(1px, -5px) rotate(-45deg);
}

.header .menu-bar-section:hover .menu-icon .line::before {
  transform: rotateX(0);
}

@media screen and (max-width: 1024px) {
  .header .menu-bar-section {
    display: flex;
  }
}

.header .menu-call {
  transform: translateY(0);
}

.\--change {
  background: #f6f6f6;
  transition: all 0.4s ease;
}

.\--change .header--list-wrap .list .link {
  color: #000;
}

.\--change .header--list-wrap .list .link::before {
  background: #000;
}

.\--change .header--list-wrap .list .link::after {
  background: #000;
}

.\--change .menu-bar-section .menu-icon .line {
  background-color: #000;
}

.banner {
  position: relative;
  overflow: hidden;
  margin-bottom: 4rem;
}

.banner .slick-prev {
  right: 25%;
  transition: all 0.4s ease;
  z-index: 1;
  color: #fff;
  left: initial;
  bottom: 10%;
  font-weight: 600;
  font-size: 1.6rem;
  top: initial;
  margin-right: 5rem;
}

.banner .slick-prev::before {
  display: none;
}

.banner .slick-prev:hover {
  letter-spacing: 2px;
}

.banner .slick-next {
  right: 10%;
  transition: all 0.4s ease;
  z-index: 1;
  color: #fff;
  bottom: 10%;
  font-weight: 600;
  font-size: 1.6rem;
  top: initial;
}

.banner .slick-next::before {
  display: none;
}

.banner .slick-next:hover {
  letter-spacing: 2px;
}

.banner--wrapper {
  height: 100vh;
}

.banner--wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transform: scale(1.1);
  z-index: 0;
}

.banner--wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transform: scale(1.1);
  display: none;
}

.banner--text-inner {
  z-index: 2;
}

.banner--text-wraper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.banner--text-wraper .content {
  color: #fff;
  width: 100%;
  max-width: 50rem;
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.global-banner {
  position: relative;
  overflow: hidden;
  margin-bottom: 4rem;
}

.global-banner--wrapper {
  height: 45vh;
}

.global-banner--wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transform: scale(1.1);
  z-index: 0;
}

.global-banner--wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  transform: scale(1.1);
}

.global-banner--text-inner {
  z-index: 2;
  text-align: -webkit-center;
}

.global-banner--text-wraper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  padding-top: 4rem;
}

.global-banner--text-wraper .bnr-head {
  font-size: 6.5rem;
  font-weight: 500;
  color: #fff;
  position: relative;
}

.global-banner--text-wraper .bnr-head::before {
  content: "";
  background: #cd2e1b;
  width: 10rem;
  height: 4px;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  position: absolute;
}

@media screen and (max-width: 768px) {
  .global-banner--text-wraper .bnr-head::before {
    height: 2px;
    bottom: -4px;
  }
}

@media screen and (max-width: 768px) {
  .global-banner--text-wraper .bnr-head {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 425px) {
  .global-banner--text-wraper .bnr-head {
    font-size: 2rem;
  }
}

.global-banner--text-wraper .content {
  color: #fff;
  width: 100%;
  max-width: 50rem;
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
  .global-banner--text-wraper .content {
    font-size: 1.4rem;
    line-height: 1.2;
  }
}

.global-banner.not-found-banner .global-banner--wrapper {
  height: 100vh;
}

.global-banner.not-found-banner .global-banner--wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}

.banner__video__section {
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.banner__video__section::before {
  background-color: rgba(0, 0, 0, 0.3);
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.banner__video__section .banner__video__wrap {
  height: 100vh;
  overflow: hidden;
}

.banner__video__section .banner__video__wrap .video__itself {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.banner__video__section .iso-text-left {
  position: absolute;
  color: #fff;
  font-size: 1.8rem;
  font-family: monospace;
  left: 7.5%;
  bottom: 7%;
}

.bnr-head {
  color: #fff;
  font-size: 6.5rem;
  font-weight: 200;
  text-transform: capitalize;
  margin-bottom: 2rem;
  width: 100%;
  max-width: 200rem;
}

@media screen and (max-width: 768px) {
  .bnr-head {
    font-size: 3.5rem;
  }
}

.section-hedwrp {
  display: flex;
  flex-direction: column;
}

.section-hedwrp .globhead {
  color: #000;
  font-size: 3.5rem;
  text-transform: capitalize;
  margin-bottom: 2rem;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .section-hedwrp .globhead {
    font-size: 2.5rem;
  }
}

.section-hedwrp .globhead.refaceed {
  max-width: 81rem;
  align-self: center;
  text-align: center;
  width: 100%;
}

.section-hedwrp .globhead.__center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.section-hedwrp .globhead.__white {
  color: #fff;
}

.section-hedwrp .sub-head {
  color: #000;
  font-size: 1.6rem;
  text-transform: capitalize;
  display: inline-block;
  text-transform: capitalize;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  .section-hedwrp .sub-head {
    font-size: 1.6rem;
  }
}

.section-hedwrp .sub-head.cont {
  padding: 2rem;
  text-align: justify;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  max-width: 65rem;
  width: 100%;
  font-weight: 400;
  margin-top: 4rem;
  line-height: 1.5;
}

.section-hedwrp .sub-head.__center {
  text-align: center;
  max-width: 844px;
  margin: 0 auto;
}

.section-hedwrp .sub-head.__white {
  color: #fff;
}

.clr-chnge .globhead {
  color: #fff;
}

.clr-chnge .sub-head {
  color: #fff;
}

.crd-head {
  color: #000;
  font-size: 2.2rem;
  font-weight: 500;
  text-transform: capitalize;
  display: inline-block;
  text-transform: capitalize;
}

@media screen and (max-width: 768px) {
  .crd-head {
    font-size: 1.8rem;
  }
}

.footer-heading {
  font-size: 3.6rem;
  color: #000;
  font-weight: 600;
  margin-bottom: 4rem;
  text-transform: capitalize;
}

@media screen and (max-width: 768px) {
  .footer-heading {
    font-size: 1.8rem;
  }
}

.contact-head {
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 2rem;
}

.head {
  font-size: 2.4rem;
  font-weight: 600;
  position: relative;
  padding: 1rem 0;
}

.head::before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  background: #000;
  content: "";
}

.sub-head {
  font-size: 1.4rem;
  font-weight: 500;
  position: relative;
  padding: 1rem 0;
}

.mid {
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  padding: 1vh 3vh;
  padding-left: 0;
  position: relative;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}

.mid::before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: #000;
  content: "";
  z-index: -1;
}

.vertical {
  font-size: 2.6rem;
  position: relative;
  padding: 1rem 0;
  color: rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  position: absolute;
  right: -11%;
  bottom: 44%;
  transform: rotate(90deg);
  display: inline-block;
}

@media screen and (max-width: 1024px) {
  .vertical {
    display: none;
  }
}

.vertical.oppose {
  right: initial;
  left: -15%;
  transform: rotate(-90deg);
}

.value-head {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  padding-bottom: 1rem;
}

.value-head .number {
  font-size: inherit;
}

.\--card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  grid-gap: 4rem;
  align-items: center;
}

@media screen and (max-width: 550px) {
  .\--card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
    grid-gap: 2rem;
  }
}

.\--card .card-main {
  padding: 1.5rem;
  box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.1);
}

.\--card .card-main .img-wrp {
  height: 15rem;
}

.\--card .card-main .img-wrp img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  /*filter: grayscale(100%);*/
  transition: all 0.4s ease;
}

.\--card .card-main .text-wrp {
  text-align: center;
}

.\--card .card-main .text-wrp p {
  font-size: 1.6rem;
  color: #000;
  text-align: left;
  line-height: 1.4;
}

.\--card .card-main:hover .img-wrp img {
  filter: grayscale(0);
}

.services--card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(60rem, 1fr));
  grid-gap: 4rem;
}

@media screen and (max-width: 768px) {
  .services--card {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(40rem, 1fr));
    grid-gap: 2rem;
  }
}

.services--card .services-main {
  transition: all 0.4s ease;
  position: relative;
  padding: 2rem 2rem 2rem 2rem;
  background: #fff;
  display: flex;
}

@media screen and (max-width: 550px) {
  .services--card .services-main {
    flex-direction: column;
  }
}

.services--card .services-main .services-img {
  height: 20rem;
  position: relative;
  max-width: 30rem;
  width: 100%;
}

@media screen and (max-width: 550px) {
  .services--card .services-main .services-img {
    max-width: initial;
    height: 25rem;
  }
}

.services--card .services-main .services-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.services--card .services-main .service-content {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 2rem;
}

.services--card .services-main .services-head,
.services--card .services-main .services-text {
  margin-bottom: 1.5rem;
  position: relative;
}

.services--card .services-main .services-project .client-head {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
  .services--card .services-main .services-project .client-head {
    font-size: 1.6rem;
  }
}

.services--card .services-main .services-project .project-head {
  font-size: 2.4rem;
  font-weight: 500;
  padding-bottom: 1rem;
}

@media screen and (max-width: 768px) {
  .services--card .services-main .services-project .project-head {
    font-size: 2.2rem;
  }
}

.services--card .services-main .services-project .project-details {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.services--card .services-main .services-project .project-details .location-proj {
  font-size: 1.8rem;
  text-transform: capitalize;
  margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
  .services--card .services-main .services-project .project-details .location-proj {
    font-size: 1.6rem;
  }
}

.services--card .services-main .services-project .project-details .location-proj .location-icon-proj {
  margin-right: 0.8rem;
}

.services--card .services-main .services-project .project-details .period-proj {
  font-size: 1.6rem;
}

.services--card .services-main .services-news .news-title {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1rem;
  background: #cd2e1b;
  display: inline-block;
  color: #fff;
  padding: 0.5rem;
}

@media screen and (max-width: 768px) {
  .services--card .services-main .services-news .news-title {
    font-size: 1.4rem;
  }
}

.services--card .services-main .services-news .story-title {
  font-size: 2rem;
  font-weight: 500;
  padding-bottom: 1rem;
}

@media screen and (max-width: 768px) {
  .services--card .services-main .services-news .story-title {
    font-size: 1.8rem;
  }
}

.services--card .services-main .services-news .publish-cont .date {
  font-size: 1.6rem;
  font-weight: 500;
}

.services--card .services-main .services-news .publish-cont .news-content {
  font-size: 1.4rem;
  padding: 1rem 0;
  line-height: 1.4;
  text-align: justify;
}

.services--card .services-main .services-text {
  position: relative;
}

.services--card .services-main .services-text p {
  font-size: 1.6rem;
}

.services--card .services-main::before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0;
  width: 1px;
  content: "";
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

.services--card .services-main::after {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  content: "";
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

.services--card .services-main:hover {
  box-shadow: 2px -2px 4px rgba(0, 0, 0, 0.2);
}

.services--card .services-main:hover::before {
  height: 100%;
}

.services--card .services-main:hover::after {
  width: 100%;
}

.services--card .services-main.\--blockcard {
  flex-direction: column;
}

.services--card .services-main.\--blockcard .services-img {
  max-width: initial;
}

.services--card .services-main.\--blockcard .service-content {
  padding: initial;
  padding-top: 2rem;
}

.services--card .card-overlay {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.refce-servic {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(37rem, 1fr));
  grid-gap: 4rem;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .refce-servic {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(28rem, 1fr));
    grid-gap: 2rem;
  }
}

.why-card {
  background: #fff;
  padding: 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-bottom: 2px solid transparent;
  transition: all 0.4s ease;
}

.why-card .icon-link {
  margin: 2rem 0;
  background: rgba(205, 46, 27, 0.5);
  border-radius: 50%;
  height: 80px;
  width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: -2px 0px 6px rgba(0, 0, 0, 0.2);
}

.why-card .icon-link span {
  font-size: 3rem;
  color: #fff;
}

.why-card .icon-link span i {
  font-size: inherit;
}

.why-card .heading {
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: 500;
  text-transform: capitalize;
  position: relative;
  padding: 0.5rem 0;
}

@media screen and (max-width: 1366px) {
  .why-card .heading {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 550px) {
  .why-card .heading {
    margin: 1rem 0;
  }
}

.why-card .heading::before {
  content: "";
  background: rgba(67, 67, 67, 0.8);
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
}

.why-card .text {
  font-size: 1.6rem;
  color: #000;
  line-height: 1.5;
}

.why-card:hover {
  border-color: rgba(205, 46, 27, 0.5);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.mini {
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #000;
}

@media screen and (max-width: 550px) {
  .mini {
    padding: 1rem;
  }
}

.mini .mini-img {
  width: 100%;
  height: 45rem;
}

@media screen and (max-width: 1024px) {
  .mini .mini-img {
    height: 45rem;
  }
}

@media screen and (max-width: 550px) {
  .mini .mini-img {
    height: 25rem;
  }
}

.mini .mini-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
}

.mini--iner-text {
  text-align: left;
}

@media screen and (max-width: 550px) {
  .mini--iner-text {
    padding: 1rem;
  }
}

.mini .mini-name {
  font-size: 2rem;
  font-weight: 500;
  padding-top: 2rem;
  padding-bottom: 1rem;
}

@media screen and (max-width: 550px) {
  .mini .mini-name {
    padding-top: initial;
  }
}

.mini .mini-designation {
  font-size: 1.8rem;
  font-weight: 400;
  padding-bottom: 1.5rem;
}

.mini .mini-text {
  font-size: 1.6rem;
  line-height: 1.4;
  padding-bottom: 1rem;
  text-align: justify;
}

@media screen and (max-width: 550px) {
  .mini .mini-text {
    font-size: 1.5rem;
  }
}

.contact--crd {
  display: flex;
  flex-direction: column;
  border-left: 1px solid #434343;
  padding-left: 2.3rem;
}

.contact--crd .icon-contact {
  display: flex;
}

.contact--crd .icon-contact .icon-cont-wrap {
  height: 35px;
  width: 35px;
  margin-right: 2rem;
  background: black;
  border-radius: 30px;
}

.contact--crd .icon-contact .icon-cont-wrap .contlink {
  font-size: 2rem;
  justify-content: center;
  padding-top: 0.8rem;
  display: flex;
}

.contact--crd .icon-contact .icon-cont-wrap .contlink i {
  font-size: inherit;
  color: #fff;
}

.contact--crd .location {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
  padding: 1rem 0;
  color: black;
}

.contact--crd .location .icon {
  margin-right: 1rem;
  font-size: 2rem;
}

.contact--crd .location.bold {
  font-weight: bold;
}

.btn-link {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  border: none;
  display: inline-block;
  padding: 1.3rem 2rem;
  text-transform: capitalize;
  letter-spacing: 2px;
  position: relative;
  outline: none;
  background-color: #000;
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
}

.btn-link span {
  margin-left: 1rem;
  color: #cd2e1b;
}

.btn-link::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 4.2rem;
  width: 4.2rem;
  border-radius: 50%;
  content: "";
  background: #3f3b3b;
  transition: all 0.4s ease;
  z-index: -1;
  transform: scale(3.5) skew(-52deg, -14deg);
}

.btn-link:hover::before {
  transform: scale(7.5) skew(-10deg, -10deg);
}

.shadow {
  color: #000;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  outline: none;
  background: transparent;
}

.shadow span {
  margin-left: 1rem;
  color: #000;
}

.shadow::before {
  background: #000;
}

.shadow::after {
  background: #000;
}

.contact-form-wrp {
  margin-top: 6rem;
  margin-bottom: 6rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
  grid-gap: 10rem;
  padding-top: 1rem;
  padding-left: 1rem;
  position: relative;
}

@media screen and (max-width: 768px) {
  .contact-form-wrp {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(38rem, 1fr));
    grid-gap: 2rem;
    padding-left: initial;
  }
}

@media screen and (max-width: 550px) {
  .contact-form-wrp {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
    grid-gap: 2rem;
  }
}

.contact-form-wrp--card-inner {
  display: flex;
  flex-direction: column;
}

.contact-form-wrp--inner {
  display: flex;
  flex-direction: column;
}

.contact-form-wrp .contact-form {
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  position: relative;
  padding: 2rem;
  z-index: 2;
}

.contact-form-wrp .contact-form .text-wraper {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 1rem 0;
}

.contact-form-wrp .contact-form .text-wraper.btn {
  display: inline-block;
}

.contact-form-wrp .contact-form .text-wraper .lable-link {
  padding-left: 1rem;
  padding-bottom: 2rem;
  margin-right: 2rem;
  display: flex;
  padding: 1rem 0;
  font-size: 1.6rem;
  display: inline-block;
}

.contact-form-wrp .contact-form .text-wraper .form-input {
  border: none;
  border-bottom: 2px solid;
  border-color: rgba(67, 67, 67, 0.4);
  outline: none;
  font-size: 1.4rem;
  padding: 1rem;
  display: block;
  resize: none;
  color: #000;
}

.contact-form-wrp .contact-form .text-wraper .error-message {
  margin: 1rem 0;
  color: #cd2e1b;
  font-size: 1.2rem;
  padding-left: 1rem;
  font-weight: bold;
}

@media screen and (max-width: 1366px) {
  .globalContainer,
  .footer-section-wrapper .footer-inner,
  .about--inner,
  .about--upper,
  .about--mincard-container,
  .client .section-inner,
  .why-us .section-inner,
  .testimonial-section .section-inner,
  .project .section-inner,
  .services .section-inner,
  .company,
  .quote,
  .sheet--inner,
  .values .value-list-wrp,
  .values,
  .contact,
  .header--menu-wraper,
  .banner--text-inner,
  .global-banner--text-inner {
    width: 95%;
  }
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #fff;
}

::-webkit-scrollbar-thumb {
  background: #2f89fc;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #cd2e1b;
}

.category-strip {
  display: flex;
  justify-content: flex-end;
  padding: 2rem 0;
}

@media screen and (max-width: 768px) {
  .category-strip {
    justify-content: flex-start;
    padding: 1rem 0;
  }
}

.category-strip--wrp {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .category-strip--wrp {
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .category-strip--wrp .list {
    padding: 0.5rem 0;
  }
}

.category-strip--wrp .list .link {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.5s ease-in-out;
}

.category-strip--wrp .list .link:hover {
  color: white;
}

.category-strip--wrp .list .link.bg-change {
  color: white;
}

.slide-strip {
  display: flex;
  justify-content: flex-end;
  padding: 2rem 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  width: 0;
  height: 0;
  width: 0;
  transform: translateX(115%);
  transition: all 0.2s ease-in-out;
  height: 0;
  display: none;
}

@media screen and (max-width: 768px) {
  .slide-strip {
    justify-content: flex-start;
  }
}

.slide-strip--wrp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.slide-strip--wrp .slick-prev {
  right: 25%;
  transition: all 0.4s ease;
  z-index: 1;
  color: #fff;
  left: initial;
  bottom: 10%;
  font-size: 1.6rem;
  top: initial;
}

.slide-strip--wrp .slick-prev::before {
  display: none;
}

.slide-strip--wrp .slick-prev:hover {
  letter-spacing: 2px;
}

.slide-strip--wrp .slick-next {
  right: 10%;
  transition: all 0.4s ease;
  z-index: 1;
  color: #fff;
  bottom: 10%;
  font-size: 1.6rem;
  top: initial;
}

.slide-strip--wrp .slick-next::before {
  display: none;
}

.slide-strip--wrp .slick-next:hover {
  letter-spacing: 2px;
}

.slide-strip--wrp .list {
  height: 50rem;
  position: relative;
  transition: all 0.6s ease-in-out;
}

@media screen and (max-width: 1366px) {
  .slide-strip--wrp .list {
    height: 40rem;
  }
}

@media screen and (max-width: 768px) {
  .slide-strip--wrp .list {
    height: 38rem;
  }
}

@media screen and (max-width: 550px) {
  .slide-strip--wrp .list {
    height: 35rem;
  }
}

.slide-strip--wrp .list .link img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.slide-strip--wrp .list .name-wraper {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #fff;
  padding: 1rem;
  height: 11rem;
  transition: all 0.6s ease-in-out;
}

.slide-strip--wrp .list .name-wraper .project-name {
  font-size: 2.2rem;
  font-weight: 300;
  color: #000;
  margin-bottom: 1rem;
  transition: all 0.4s ease-in-out;
}

.slide-strip--wrp .list .name-wraper .category {
  font-size: 1.4rem;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  transition: all 0.4s ease-in-out;
}

.slide-strip--wrp .list .name-wraper .cont {
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  padding: 2rem 0;
  line-height: 1.4;
}

.slide-strip--wrp .list .name-wraper::after {
  position: absolute;
  right: 0;
  top: 0;
  width: 3px;
  height: 100%;
  content: "";
  background: #2f89fc;
}

.slide-strip--wrp .list:hover .name-wraper {
  width: 100%;
  height: 30%;
  background: rgba(0, 0, 0, 0.9);
  top: 0;
}

.slide-strip--wrp .list:hover .name-wraper .project-name {
  color: #fff;
}

.slide-strip--wrp .list:hover .name-wraper .category {
  color: #fff;
}

.slide-strip--wrp .list:hover .name-wraper .cont {
  opacity: 1;
  visibility: visible;
  color: #fff;
}

.slide-strip--wrp .list:hover .name-wraper::after {
  width: 3px;
  height: 100%;
  background: #2f89fc;
}

.slide-strip.active {
  height: 100%;
  width: 100%;
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
  display: block;
}

.button-strip {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  min-width: 80rem;
}

.button-strip .list {
  margin-left: 6rem;
}

.button-strip .list .link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0 2rem;
  transition: all 0.4s ease;
}

.button-strip .list .link:hover {
  letter-spacing: 5px;
}

.color--recast {
  color: #fff;
}

.color--recast::before {
  background: white;
}

.contact {
  margin-bottom: 4rem;
}

.contact--card-wrp {
  padding-top: 4rem;
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
  grid-gap: 4rem;
  align-content: flex-start;
}

.values {
  margin-bottom: 4rem;
  padding: 2rem;
}

.values .value-list-wrp {
  background: rgba(71, 71, 71, 0.1);
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

.values .value-list-wrp .value-list {
  font-size: 1.8rem;
  line-height: 1.4;
  margin: 1.2rem 0;
  background: white;
  box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  max-width: 115rem;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .values .value-list-wrp .value-list {
    font-size: 1.6rem;
  }
}

.values .value-list-wrp .value-list.ccard {
  box-shadow: initial;
  padding: 1rem;
  background: initial;
}

.sheet {
  background: rgba(67, 67, 67, 0.2);
  margin-bottom: 4rem;
}

.sheet--inner {
  padding: 4rem 0;
}

.quote {
  margin-bottom: 4rem;
}

.success-container {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  border: 1px solid rgba(47, 137, 252, 0.4);
  z-index: 5;
}

.success-container .icon {
  font-size: 8rem;
  color: #2f89fc;
}

.success-container .success-message {
  margin-top: 2rem;
  font-size: 1.4rem;
  color: seagreen;
}

.global-flushed-content {
  --heading-font: 2.2rem;
  --magin-bottom: 2rem;
}

.global-flushed-content * {
  font-size: 1.6rem;
  color: #4c4c4c;
}

.global-flushed-content h1 {
  font-size: calc(var(--heading-font));
  margin-bottom: 1rem;
}

.global-flushed-content h2 {
  font-size: calc(var(--heading-font) - 0.3rem);
  margin-bottom: 1rem;
}

.global-flushed-content h3 {
  font-size: calc(var(--heading-font) - 0.4rem);
  margin-bottom: 1rem;
}

.global-flushed-content h4 {
  font-size: calc(var(--heading-font) - 0.6rem);
  margin-bottom: 1rem;
}

.global-flushed-content h5 {
  font-size: calc(var(--heading-font) - 0.8rem);
  margin-bottom: 1rem;
}

.global-flushed-content h6 {
  font-size: calc(var(--heading-font) - 1rem);
  margin-bottom: 1rem;
}

.global-flushed-content p {
  margin-bottom: calc(var(--magin-bottom) - 1rem);
  line-height: 1.5;
  text-align: justify;
}

.global-flushed-content ol,
.global-flushed-content ul {
  margin-bottom: var(--magin-bottom);
  list-style-type: unset;
  margin-bottom: 4rem;
}

.global-flushed-content ol li,
.global-flushed-content ul li {
  margin-bottom: calc( var(--magin-bottom) - 0.5rem );
  padding-left: 2rem;
  position: relative;
}

.global-flushed-content ol {
  counter-reset: ordered-list;
}

.global-flushed-content ol li::before {
  counter-increment: ordered-list;
  content: counter(ordered-list) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-size: inherit;
  font-weight: 600;
  color: #2f89fc;
}

.global-flushed-content ul li::before {
  height: 10px;
  width: 10px;
  position: absolute;
  left: 0;
  top: 0.4rem;
  font-weight: 600;
  border-radius: 50%;
  background-color: #2f89fc;
  content: "";
}

.global-flushed-content a {
  color: #2f89fc;
  word-break: break-all;
}

.global-flushed-content.color--recast * {
  color: #fff;
}

.company {
  margin-bottom: 6rem;
}

.services {
  padding-bottom: 5rem;
  padding-top: 5rem;
  background-color: #f4f4f4;
}

.project {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.project .section-inner {
  z-index: 1;
}

.project::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: linear-gradient(180deg, black 10%, rgba(37, 37, 37, 0.5) 50%, black 90%);
  transition: all 0.4s ease;
  z-index: -1;
}

.project .transform-slide {
  margin: 6rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

@media screen and (max-width: 768px) {
  .project .transform-slide {
    margin: 0rem 0;
  }
}

.testimonial-section {
  margin-bottom: 4rem;
  padding-top: 5rem;
}

.testimonial-section .section-inner .testimonial-wrp {
  display: flex;
  flex-direction: column;
  padding: 3rem 0;
  justify-content: center;
  overflow: hidden;
}

.testimonial-section .section-inner .testimonial-wrp .testimonial-card {
  text-align: justify;
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f6f6f6;
  position: relative;
  overflow: hidden;
}

.testimonial-section .section-inner .testimonial-wrp .testimonial-card .icon-top {
  position: absolute;
  top: 10%;
  left: 10%;
  font-size: 5.5rem;
  color: rgba(47, 137, 252, 0.2);
}

@media screen and (max-width: 1024px) {
  .testimonial-section .section-inner .testimonial-wrp .testimonial-card .icon-top {
    font-size: 3.5rem;
  }
}

@media screen and (max-width: 550px) {
  .testimonial-section .section-inner .testimonial-wrp .testimonial-card .icon-top {
    font-size: 1.5rem;
  }
}

.testimonial-section .section-inner .testimonial-wrp .testimonial-card .icon-bottom {
  position: absolute;
  bottom: 10%;
  right: 10%;
  font-size: 1.5rem;
  color: rgba(47, 137, 252, 0.2);
}

.testimonial-section .section-inner .testimonial-wrp .testimonial-card .company-name {
  font-size: 1.8rem;
  text-transform: capitalize;
  font-weight: 500;
  color: #000;
  margin: 1rem 0;
}

.testimonial-section .section-inner .testimonial-wrp .testimonial-card .testimonial-card--name {
  font-size: 1.8rem;
  text-transform: capitalize;
  font-weight: 500;
  color: #000;
  margin-bottom: 1rem;
}

.testimonial-section .section-inner .testimonial-wrp .testimonial-card .testimonial-card--post {
  font-size: 1.6rem;
  text-transform: capitalize;
  font-weight: 400;
  color: #000;
  margin-bottom: 2rem;
}

.testimonial-section .section-inner .testimonial-wrp .testimonial-card .testimonial-card--discription {
  font-size: 1.6rem;
  color: #000;
  line-height: 1.3;
  margin-bottom: 2rem;
}

.testimonial-section .section-inner .testimonial-wrp .testimonial-card:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2px;
  height: 0;
  transition: all 0.4s ease;
  background: rgba(47, 137, 252, 0.5);
}

.testimonial-section .section-inner .testimonial-wrp .testimonial-card:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  transition: all 0.4s ease;
  background: rgba(47, 137, 252, 0.5);
}

.testimonial-section .section-inner .testimonial-wrp .testimonial-card:hover {
  box-shadow: 2px -2px 4px rgba(0, 0, 0, 0.2);
}

.testimonial-section .section-inner .testimonial-wrp .testimonial-card:hover::before {
  height: 100%;
}

.testimonial-section .section-inner .testimonial-wrp .testimonial-card:hover::after {
  width: 100%;
}

.testimonial-section .section-inner .testimonial-wrp .testimonial-card--image {
  height: 10rem;
  width: 10rem;
}

.testimonial-section .section-inner .testimonial-wrp .testimonial-card--image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  box-shadow: 2px -2px 4px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}

.why-us {
  padding-bottom: 4rem;
  padding-top: 5rem;
}

.why-us .section-inner .why-crd-wrp {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(27rem, 1fr));
  grid-gap: 4rem;
}

.client {
  padding-bottom: 6rem;
  padding-top: 5rem;
  display: flex;
}

.client .section-inner--crd-wrp-continer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
  grid-gap: 2rem;
}

@media screen and (max-width: 768px) {
  .client .section-inner--crd-wrp-continer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(34rem, 1fr));
    grid-gap: 1rem;
  }
}

@media screen and (max-width: 550px) {
  .client .section-inner--crd-wrp-continer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
    grid-gap: 4rem;
  }
}

.client .section-inner--crd-wrp {
  background: #fff;
}

.client .section-inner--crd {
  background: #fff;
  padding: 2rem;
  transition: all 0.4s ease;
  display: flex;
  place-content: center;
}

.client .section-inner--crd .crd-img {
  margin: 1rem;
  height: 18rem;
  width: 18rem;
  display: flex;
}

.client .section-inner--crd .crd-img img {
  max-height: 15rem;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.\--bg-light-grey {
  background-color: #f6f6f6;
}

.about--mincard-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
  grid-gap: 1rem;
}

.about--cont .cont-inner .text-hold {
  font-size: 1.6rem;
  color: #434343;
  text-align: justify;
  line-height: 1.4;
  padding-bottom: 2rem;
}

.about--inner {
  margin-bottom: 5rem;
  padding: 5rem 0;
}

.about--inner.card-re {
  padding: initial;
}

.about--detail-cont {
  display: flex;
}

@media screen and (max-width: 1024px) {
  .about--detail-cont {
    flex-direction: column;
    align-items: center;
  }
}

.about--detail-cont .image-wraper {
  width: 30%;
  height: 60rem;
  padding: 20px 15px 0px 0px;
  border: 1px solid;
  border-color: #000;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .about--detail-cont .image-wraper {
    width: 100%;
    max-width: 50rem;
    margin-bottom: 8rem;
  }
}

@media screen and (max-width: 550px) {
  .about--detail-cont .image-wraper {
    height: 100%;
    min-height: 30rem;
    padding: 10px 5px 0px 0px;
  }
}

.about--detail-cont .image-wraper::before {
  position: absolute;
  left: -20px;
  top: 20px;
  height: 100%;
  width: 100%;
  border: 3px solid #D4AF37;
  content: "";
}

@media screen and (max-width: 550px) {
  .about--detail-cont .image-wraper::before {
    left: -5px;
    top: 5px;
  }
}

.about--detail-cont .image-wraper img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.about--detail-cont .image-wraper.bord-recast {
  border-color: #fff;
}

.about--detail-cont .text-wraper {
  width: 70%;
  padding-left: 4rem;
  padding-right: 10rem;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .about--detail-cont .text-wraper {
    padding-right: 4rem;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .about--detail-cont .text-wraper {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.about--detail-cont .text-wraper .mid-line .icon-img {
  text-align: center;
  position: relative;
  z-index: 0;
}

.about--detail-cont .text-wraper .mid-line .icon-img::before {
  position: absolute;
  left: 0;
  bottom: 50%;
  height: 1px;
  width: 100%;
  background: rgba(67, 67, 67, 0.5);
  content: "";
  z-index: -1;
}

.about--detail-cont .text-wraper .mid-line .icon-img.recast::before {
  background: #fff;
}

.about--detail-cont .text-wraper .mid-line .mid-conat {
  font-size: 1.6rem;
  line-height: 1.4;
  padding: 1rem;
  text-align: justify;
  margin-bottom: 1rem;
}

@media screen and (max-width: 1024px) {
  .about--detail-cont .text-wraper .mid-line .mid-conat {
    padding: initial;
  }
}

.about--detail-cont.card-reface {
  flex-direction: column;
  align-items: center;
  box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.about--detail-cont.card-reface .image-wraper {
  width: 80%;
  margin-bottom: 3rem;
}

.about--detail-cont.card-reface .text-wraper {
  width: 100%;
}

.about.bg-recast {
  background: black;
}

@media screen and (max-width: 1024px) {
  .about.bg-recast .about--detail-cont {
    flex-direction: column-reverse;
  }
}

.footer-section-wrapper {
  background: #f6f6f6;
}

.footer-section-wrapper .footer-inner {
  padding-top: 3rem;
}

.footer-section-wrapper .footer-inner .footer-logo-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
}

.footer-section-wrapper .footer-inner .footer-logo-section .footer-image {
  width: 13.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer-section-wrapper .footer-inner .contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 2rem;
  margin-bottom: 4rem;
  align-items: baseline;
  position: relative;
}

.footer-section-wrapper .footer-inner .contact-details .contact-content {
  padding: 4rem 0rem;
}

@media screen and (max-width: 768px) {
  .footer-section-wrapper .footer-inner .contact-details .contact-content {
    padding: 1rem 1rem;
  }
}

.footer-section-wrapper .footer-inner .contact-details .contact-content .address {
  width: 70%;
  font-size: 1.6rem;
  color: #000;
  line-height: 25px;
  font-weight: 400;
  margin-bottom: 1rem;
}

.footer-section-wrapper .footer-inner .contact-details .contact-content .phone,
.footer-section-wrapper .footer-inner .contact-details .contact-content .email {
  font-size: 1.4rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-section-wrapper .footer-inner .contact-details .contact-content .phone .btn-clk,
.footer-section-wrapper .footer-inner .contact-details .contact-content .email .btn-clk {
  font-size: inherit;
  color: #000;
  font-weight: initial;
}

.footer-section-wrapper .footer-inner .contact-details .contact-content .phone .btn-clk .headi,
.footer-section-wrapper .footer-inner .contact-details .contact-content .email .btn-clk .headi {
  font-size: inherit;
  color: #000;
  font-weight: inherit;
  padding-right: 0.5rem;
}

.footer-section-wrapper .footer-inner .contact-details::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  top: -1rem;
  background: #434343;
  transition: all 0.4s ease-in-out;
}

.footer-section-wrapper .footer-inner .social-content {
  padding: 4rem 1rem;
}

@media screen and (max-width: 768px) {
  .footer-section-wrapper .footer-inner .social-content {
    padding: 1rem 1rem;
  }
}

.footer-section-wrapper .footer-inner .social-content .icon-wrapper {
  display: flex;
}

.footer-section-wrapper .footer-inner .social-content .icon-wrapper .red-link-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-section-wrapper .footer-inner .social-content .icon-wrapper .red-link-wrap .link {
  justify-content: center;
  padding-top: 0.8rem;
  display: flex;
}

.footer-section-wrapper .footer-inner .social-content .icon-wrapper .red-link-wrap .link .link-clk {
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
}

.footer-section-wrapper .footer-inner .maps-section iframe {
  height: 30rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer-section-wrapper .copyright-line {
  text-align: center;
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  position: relative;
}

@media screen and (max-width: 550px) {
  .footer-section-wrapper .copyright-line {
    flex-direction: column;
  }
}
.section-description p {
    font-size: 16px;
    line-height: 30px;
}

.section-description ul li {
    font-size: 16px;
    line-height: 38px;
    list-style: decimal;
    margin-left: 20px;
}

.section-description h2{
    font-size: 22px;
    margin: 10px 0;
}
.footer-section-wrapper .copyright-line .line {
  font-size: 1.4rem;
  text-transform: capitalize;
  color: #000;
  margin-bottom: 1.5rem;
}

.footer-section-wrapper .copyright-line::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  top: -1rem;
  background: #434343;
  transition: all 0.4s ease-in-out;
}

.icon-wrap {
  height: 35px;
  width: 35px;
  margin-right: 2rem;
  background: #000;
  border-radius: 30px;
}

.icon-wrap .iconlink {
  font-size: 2rem;
  justify-content: center;
  padding-top: 0.8rem;
  display: flex;
}

.icon-wrap .iconlink i {
  font-size: inherit;
  color: #fff;
}