@font-face {
  font-family: "tajawal medium";
  src: url(../fonts/Tajawal-Medium.ttf);
}
@font-face {
  font-family: "tajawal regular";
  src: url(../fonts/Tajawal-Regular.ttf);
}
@font-face {
  font-family: "tajawal light";
  src: url(../fonts/Tajawal-Light.ttf);
}
@font-face {
  font-family: "tajawal extra-light";
  src: url(../fonts/Tajawal-ExtraLight.ttf);
}
@font-face {
  font-family: "archia regular";
  src: url(../fonts/archia-regular.ttf);
}
@font-face {
  font-family: "sk-trial";
  src: url(../fonts/SK-Concretica-Trial-400.ttf);
}
body {
  font-family: "tajawal regular";
}

.tajawal-m, h1, h2, h3, h4, h5, h6 {
  font-family: "tajawal medium";
}

.tajawal-r {
  font-family: "tajawal regular";
}

.tajawal-l {
  font-family: "tajawal light";
}

.tajawal-xl {
  font-family: "tajawal extra-light";
}

#dev-by-lobb {
  text-align: center;
}
#dev-by-lobb #lobb-logo {
  margin-bottom: 5px;
}
#dev-by-lobb #dev-by-lobb-title {
  font-family: "tajawal regular";
}

button:focus, input:focus, textarea:focus {
  box-shadow: none;
  border: none;
  outline: none;
}

img {
  transform: scale(-1, 1);
}

a {
  text-decoration: none;
}

section, body {
  background-color: #ECF1F7;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-header .section-title {
  font-family: "tajawal medium";
  color: #0C0F12;
  font-size: 55px;
  line-height: 53px;
}
.section-header .section-desc {
  font-family: "tajawal light";
  color: rgba(7, 8, 9, 0.8);
  font-size: 16px;
  line-height: 30px;
  width: 32%;
}

/* services in box */
.services-card {
  width: 350px;
  height: 350px;
  padding: 28px 22px 35px;
  box-shadow: 4px 4px 60px 0px #8888881F;
  background-color: #ECF1F7;
  z-index: 20;
}
.services-card.doubled-size {
  width: 98%;
}
.services-card.long-sen .id {
  margin-bottom: 10px !important;
}
.services-card.long-sen .name {
  font-size: 20px;
  line-height: 24px;
}
.services-card.long-sen .desc {
  font-size: 16px;
  line-height: 22px;
}
.services-card .id {
  font-family: "archia regular";
  font-size: 20px;
  line-height: 30px;
  color: rgba(7, 8, 9, 0.8);
  margin-bottom: 20px;
}
.services-card .name {
  font-family: "tajawal medium";
  color: #0C0F12;
  font-size: 28px;
  line-height: 34px;
  width: 182px;
  margin-bottom: 9px;
}
.services-card .desc {
  font-family: "tajawal light";
  color: rgba(7, 8, 9, 0.8);
  font-size: 16px;
  line-height: 27px;
  text-align: justify;
}

/* contact form */
.contact-form .contact-title {
  font-family: "tajawal medium";
  color: #0C0F12;
  font-size: 35px;
  line-height: 53px;
  width: 137px;
  height: 45px;
  text-align: center;
  margin-bottom: 25px;
  position: relative;
}
.contact-form .contact-title::after {
  content: "";
  width: 123px;
  height: 0;
  border: 1px solid #0C0F12;
  position: absolute;
  top: 55%;
  right: 146px;
}
.contact-form .contact-input, .contact-form .contact-btn {
  box-sizing: border-box;
  border-radius: 27.5px;
  padding: 12px 25px;
  height: 50px;
  font-size: 16px;
  line-height: 13px;
}
.contact-form #useMsg {
  height: 140px;
  resize: none;
}
.contact-form .contact-input {
  background-color: transparent;
  border: 0.5px solid #CDCDCD;
  width: 100%;
  margin-bottom: 20px;
  color: #8A8A8A;
}
.contact-form .contact-input:focus {
  border-color: transparent;
  background-color: #FFFFFF;
}
.contact-form .contact-btn {
  width: 150px;
  background: linear-gradient(100.39deg, #353535 11.13%, #040404 63.94%);
  color: #FFFFFF;
  padding: 12px 33px;
}

.project-imgs {
  margin-top: 50px;
}
.project-imgs img {
  transform: scale(1);
}
.project-imgs .row-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 19px;
  margin-bottom: 20px;
  padding-right: 60px;
}
.project-imgs .single-project {
  overflow: hidden;
  position: relative;
  transition: all 0.5s ease;
  margin-bottom: 20px;
}
.project-imgs .single-project .img-content img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.project-imgs .single-project .overlay {
  background: linear-gradient(0deg, rgba(12, 15, 18, 0.9) 5%, transparent 90%);
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  display: flex;
  align-items: flex-end;
  width: 100%;
  opacity: 0;
  transition: all 0.5s ease;
}
.project-imgs .single-project .overlay .project-details .project-name {
  color: #FFFFFF;
  font-size: 28px;
  line-height: 38px;
  padding-right: 17px;
  margin-bottom: 0;
  width: 240px;
  transition: all 0.5s ease;
}
.project-imgs .single-project .overlay .project-details .show-more {
  margin-left: auto;
  position: absolute;
  bottom: 0;
  left: 14px;
  font-size: 15px;
  line-height: 20px;
  font-family: "tajawal medium";
  color: #FFFFFF;
  transition: all 0.5s ease;
}
.project-imgs .single-project .overlay .project-details .show-more img {
  margin-right: 12px;
  width: 24px !important;
  height: 24px !important;
}
.project-imgs .single-project:hover .overlay {
  opacity: 1;
}
.project-imgs .single-project:hover .overlay .project-name {
  margin-bottom: 60px;
}
.project-imgs .single-project:hover .overlay .show-more {
  bottom: 14px;
}

@media (max-width: 1199px) {
  .section-header .section-desc {
    width: 40%;
  }
}
@media (max-width: 991px) {
  .section-header .section-desc {
    width: 46%;
  }

  .project-imgs .row-content {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }
  .project-imgs .single-project .overlay {
    opacity: 1;
  }
  .project-imgs .single-project .overlay .project-details .project-name {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 40px;
    width: 150px;
  }
  .project-imgs .single-project .overlay .project-details .show-more {
    bottom: 10px;
    font-size: 12px;
  }
  .project-imgs .single-project .overlay .project-details .show-more img {
    width: 16px;
    height: 16px;
    margin-right: 7px;
  }
}
@media (max-width: 768px) {
  .section-header {
    flex-wrap: wrap !important;
  }
  .section-header .section-desc {
    width: 79% !important;
    margin-top: 15px !important;
  }
}
@media (max-width: 576px) {
  .section-header .section-desc {
    width: 85% !important;
  }
}
@media (max-width: 500px) {
  .section-header {
    text-align: center;
  }
  .section-header .section-title {
    font-size: 40px;
    line-height: 49px;
    width: 100%;
  }
  .section-header .section-desc {
    width: 100% !important;
  }

  footer .footer-bg-img .overlay #footer-row-1 .footer-title {
    font-size: 40px;
    line-height: 45px;
  }
}
/* arabic style */
/* top header */
.top-header {
  background-color: #1F1F1F;
}
.top-header .header-bg-img {
  background-image: url(../img/top-header-bg.webp);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}
.top-header .header-bg-img .overlay {
  padding-bottom: 70px;
  padding-left: 40px;
  /* navbar */
}
.top-header .header-bg-img .overlay #navbar {
  padding: 46px 0 54px;
}
.top-header .header-bg-img .overlay #navbar .navbar {
  padding: 0;
  padding-right: 90px;
}
.top-header .header-bg-img .overlay #navbar .navbar .container-fluid {
  padding: 0;
}
.top-header .header-bg-img .overlay #navbar .navbar .container-fluid .navbar-brand {
  margin-left: 0;
  padding: 0;
}
.top-header .header-bg-img .overlay #navbar .navbar .container-fluid .navbar-nav {
  flex-wrap: wrap;
}
.top-header .header-bg-img .overlay #navbar .navbar .container-fluid .navbar-nav li {
  margin-top: 12px;
}
.top-header .header-bg-img .overlay #navbar .navbar .container-fluid .navbar-nav li:not(:last-child) {
  margin-left: 30px;
}
.top-header .header-bg-img .overlay #navbar .navbar .container-fluid .navbar-nav li a {
  color: #FFFFFF;
  padding: 0;
  transition: all 0.5s ease;
  font-size: 16px;
}
.top-header .header-bg-img .overlay #navbar .navbar .container-fluid button {
  background: transparent;
  border: none;
}
.top-header .header-bg-img .overlay .header-content .header-title-desc {
  margin-top: 150px;
  text-align: right;
  width: 89%;
  padding-right: 110px;
}
.top-header .header-bg-img .overlay .header-content .header-title-desc .header-title h1 {
  font-size: 80px;
  line-height: 90px;
  color: #FFFFFF;
  margin: 60px 0 25px;
  font-weight: 700;
}
.top-header .header-bg-img .overlay .header-content .header-title-desc .header-desc p {
  font-size: 20px;
  line-height: 30px;
  color: #FFFFFF;
  margin-bottom: 35px;
  opacity: 0.8;
  font-weight: 500;
}
.top-header .header-bg-img .overlay .header-content .header-title-desc .know-more {
  font-size: 18px;
  line-height: 15px;
  padding: 0 30px 14px 0;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid #FFFFFF;
  background-color: transparent;
}
.top-header .header-bg-img .overlay .header-content .header-title-desc .know-more img {
  margin-right: 17px;
  transform: scale(1);
}
.top-header .header-bg-img .overlay .header-content .header-img-content {
  position: relative;
  height: 705px;
}
.top-header .header-bg-img .overlay .header-content .header-img-content .black-img {
  position: absolute;
  height: 100%;
  width: 56%;
  background-color: #36424D;
  top: 0;
  left: 0;
}
.top-header .header-bg-img .overlay .header-content .header-img-content .header-big-img {
  position: absolute;
  top: 25px;
  left: 25px;
}
.top-header .header-bg-img .overlay .header-content .header-img-content .scroll-down {
  color: rgba(255, 255, 255, 0.7);
  position: absolute;
  bottom: 95px;
  left: -95px;
  font-size: 16px;
  line-height: 19px;
  padding-left: 16px;
  transform: rotate(90deg);
}
.top-header .header-bg-img .overlay .header-content .header-img-content .scroll-down::after {
  content: "";
  position: absolute;
  bottom: 45%;
  left: -112px;
  height: 1px;
  width: 97px;
  background-color: #FFFFFF;
}
.top-header .header-bg-img .overlay .header-content .play-btn {
  position: relative;
  border: none;
  background-color: transparent;
  margin: 57px auto 0;
  height: 40px;
  display: flex;
  align-items: center;
  width: 57px;
  overflow: hidden;
  padding: 30px 0;
  transition: all 0.5s ease;
}
.top-header .header-bg-img .overlay .header-content .play-btn span {
  position: absolute;
  font-size: 20px;
  line-height: 28px;
  color: #FFFFFF;
  padding-right: 64px;
  white-space: nowrap;
  right: 0;
}
.top-header .header-bg-img .overlay .header-content .play-btn:hover {
  width: 260px;
}
.top-header .header-bg-img .overlay .header-content .play-btn:hover span {
  border-right: 1px solid #FFFFFF;
}
.top-header .header-bg-img .overlay .header-content .play-btn img {
  position: absolute;
  transform: scale(1);
  left: 0;
}

/* about us */
#about-us {
  padding: 185px 0 205px;
}
#about-us .about-img-content {
  position: relative;
}
#about-us .about-img-content .long-box {
  position: absolute;
  top: 0;
  right: -25px;
  overflow: hidden;
  z-index: 20;
}
#about-us .about-img-content .short-box {
  position: absolute;
  top: 40px;
  left: 45px;
  z-index: 10;
}
#about-us .about-details {
  padding: 24px 0 30px;
}
#about-us .about-details .about-us-title {
  font-size: 55px;
  line-height: 53px;
  color: #0C0F12;
  margin-bottom: 26px;
}
#about-us .about-details .about-us-desc {
  font-size: 16px;
  line-height: 34px;
  color: rgba(7, 8, 9, 0.8);
  margin-bottom: 62px;
  text-align: justify;
  text-align-last: center;
  width: 83%;
}
#about-us .about-details .know-more {
  border: 1px solid transparent;
  border-image-source: linear-gradient(270.38deg, #FFFFFF 34.41%, rgba(65, 65, 65, 0) 92.62%);
  border-image-slice: 1;
  background: linear-gradient(96.01deg, #353535 7.58%, #000000 98.13%);
  color: #FFFFFF;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  padding: 15px 30px;
}

/* our services */
#our-services {
  position: relative;
}
#our-services .our-services-img {
  margin-top: 116px;
  position: relative;
  background-color: #ECF1F7;
  height: 1302px;
}
#our-services .our-services-img .img-content {
  position: absolute;
  display: flex;
  align-items: center;
}
#our-services .our-services-img .img-content img {
  z-index: 10;
  transform: scale(1);
}
#our-services .our-services-img .img-content .services-card {
  margin-left: -153px;
}
#our-services .our-services-img #s-card-1 {
  top: 0;
  left: 0;
}
#our-services .our-services-img #s-card-2 {
  top: 186px;
  right: 0;
}
#our-services .our-services-img #s-card-3 {
  top: 718px;
  left: 172px;
}

/* our projects */
#our-projects {
  margin-top: 211px;
  margin-bottom: 235px;
}
#our-projects .section-header .section-desc {
  width: 36%;
}
#our-projects .project-gallery {
  margin-top: 150px;
}
#our-projects .project-gallery img {
  transform: scale(1);
}

/* engineering services */
#engineering-services {
  margin-bottom: 230px;
}
#engineering-services .section-header {
  display: block;
}
#engineering-services .section-header .section-title {
  font-size: 34px;
  line-height: 45px;
}
#engineering-services .section-header .hint {
  width: 100%;
  font-size: 15px;
  font-family: "tajawal medium";
}
#engineering-services .section-header .hint2 {
  font-size: 18px;
}
#engineering-services .engin-carousel {
  margin-top: 50px;
  display: flex;
}
#engineering-services .engin-carousel .carousel-inner {
  z-index: 20;
}
#engineering-services .engin-carousel .carousel-inner .carousel-item {
  padding: 1rem 0.5rem;
}
#engineering-services .engin-carousel .carousel-inner .carousel-item .services-card {
  box-shadow: 1px 1px 10px 1px #88888815;
}
#engineering-services .engin-carousel .carousel-inner .carousel-item .services-card .name {
  width: 200px;
}
#engineering-services .engin-carousel .carousel-inner .carousel-item .services-card .id {
  margin-bottom: 10px;
}
#engineering-services .engin-carousel .carousel-inner .carousel-item .long {
  padding-top: 20px;
}
#engineering-services .engin-carousel .carousel-inner .carousel-item .long .id {
  margin-bottom: 0;
}
#engineering-services .engin-carousel .carousel-indicators {
  z-index: 10;
  flex-direction: column;
  position: absolute;
  margin: 0;
  transform: translateY(-50%);
  right: -40px;
}
#engineering-services .engin-carousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #0C0F12;
}
#engineering-services .engin-carousel .carousel-control-next {
  opacity: 0.8;
  left: -40px;
  width: auto;
}
#engineering-services .engin-carousel .carousel-control-prev {
  opacity: 0.8;
  right: -40px;
  width: auto;
}
#engineering-services .engin-carousel .carousel-control-prev svg {
  transform: scale(-1, 1);
}
#engineering-services #enginCarousel-2 .carousel-indicators {
  transform: translateY(-10%);
}
#engineering-services #enginCarousel-2 .carousel-indicators {
  right: -25px;
}
#engineering-services #enginCarousel-2 .carousel-control-next {
  left: 35px;
}
#engineering-services #enginCarousel-3 .carousel-inner .carousel-item .services-card {
  width: 100%;
}

/* our clients */
#our-clients .client-carousel .carousel-indicators {
  position: static;
  margin-top: 50px;
}
#our-clients .client-carousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #0C0F12;
}
#our-clients .client-carousel .carousel-inner .logo-content {
  display: flex;
  justify-content: center;
}
#our-clients .client-carousel .carousel-inner .logo-content img {
  max-width: 190px;
  height: 110px;
  transform: scale(1);
}
#our-clients .clients-logo {
  margin-top: 116px;
  margin-bottom: 111px;
}

/* contact us */
#contact-us {
  background-color: #FFFFFF;
  padding: 112px 0;
}
#contact-us .f-bg-color {
  background-color: #ECF1F7;
  margin-left: 4%;
  width: 45%;
}
#contact-us .form-content {
  padding: 40px 55px;
}

/* footer */
footer {
  background-color: #1F1F1F;
}
footer .footer-bg-img {
  background: url(../img/footer-bg.webp) no-repeat;
  background-size: cover;
}
footer .footer-bg-img .overlay {
  padding: 145px 0 97px;
  color: #FFFFFF;
  font-family: "tajawal light";
}
footer .footer-bg-img .overlay #footer-row-1 {
  align-items: flex-end;
}
footer .footer-bg-img .overlay #footer-row-1 .footer-title {
  font-size: 60px;
  line-height: 60px;
  margin-bottom: 0;
}
footer .footer-bg-img .overlay #footer-row-1 .email {
  text-align: left;
  font-size: 24px;
  line-height: 24px;
}
footer .footer-bg-img .overlay #footer-row-2 {
  align-items: center;
  margin: 110px 0 100px;
}
footer .footer-bg-img .overlay #footer-row-2 .address .address-title {
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 15px;
}
footer .footer-bg-img .overlay #footer-row-2 .address .address-desc {
  font-size: 18px;
  line-height: 20px;
}
footer .footer-bg-img .overlay #footer-row-2 .phone {
  margin-top: 40px;
}
footer .footer-bg-img .overlay #footer-row-2 .phone .phone-title {
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 10px;
}
footer .footer-bg-img .overlay #footer-row-2 .phone .phone-content {
  width: 88px;
  text-align: left;
}
footer .footer-bg-img .overlay #footer-row-2 .phone .phone-desc {
  font-size: 18px;
  line-height: 20px;
  font-family: "tajawal light";
  margin-bottom: 0.5rem;
}
footer .footer-bg-img .overlay #footer-row-2 .social-media .social {
  font-size: 24px;
  line-height: 24px;
  padding: 0 18px;
  color: #FFFFFF;
}
footer .footer-bg-img .overlay #footer-row-2 .social-media .social:not(:last-child) {
  border-left: 2px solid #FFFFFF;
}
footer .footer-bg-img .overlay #footer-row-2 .social-media .social:first-child {
  padding-right: 0;
}
footer .footer-bg-img .overlay #footer-row-2 .social-media .social:last-child {
  padding-left: 0;
}
footer .footer-bg-img .overlay #footer-row-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .footer-bg-img .overlay #footer-row-3 .copyright {
  font-size: 16px;
  line-height: 26px;
}

@media (min-width: 1600px) {
  #contact-us .contact-img-content img {
    width: 100%;
  }
  #contact-us .f-bg-color {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 1600px) and (min-width: 1199px) {
  #our-services .container,
#our-projects .container,
#our-clients .container,
#contact-us .container,
#engineering-services .container,
footer .container {
    width: 1149px !important;
  }
}
@media (max-width: 1400px) {
  .top-header .header-bg-img .overlay {
    padding-left: 0;
  }
  .top-header .header-bg-img .overlay #navbar .navbar {
    padding-right: 0 !important;
  }
  .top-header .header-bg-img .overlay #navbar .navbar .navbar-nav {
    margin-right: auto !important;
  }
  .top-header .header-bg-img .overlay .header-content .header-title-desc {
    padding-right: 0;
    width: 83%;
  }
  .top-header .header-bg-img .overlay .header-content .header-title-desc .header-title h1 {
    font-size: 75px;
    line-height: 90px;
  }
  .top-header .header-bg-img .overlay .header-content .header-img-content .scroll-down {
    left: -85px;
  }

  #about-us .about-img-content .long-box {
    right: -75px;
  }
  #about-us .about-img-content .short-box {
    left: 35px;
  }
  #about-us .about-details .about-us-desc {
    width: 97%;
  }

  #our-projects .section-header .section-desc {
    width: 37%;
  }
}
@media (max-width: 1400px) and (min-width: 1200px) {
  #navbar .navbar .navbar-nav li:not(:last-child) {
    margin-left: 21px !important;
  }
}
@media (max-width: 1199px) and (min-width: 992px) {
  #navbar .navbar .navbar-nav li:not(:last-child) {
    margin-left: 15px !important;
  }
  #navbar .navbar .navbar-nav li a {
    font-size: 14px !important;
  }
}
@media (max-width: 1199px) {
  .hide-in-1199 {
    display: none !important;
  }

  .top-header .header-bg-img .overlay #navbar .navbar .container-fluid .navbar-nav .nav-item:not(:last-child) {
    margin-left: 70px;
  }
  .top-header .header-bg-img .overlay .header-content .header-title-desc {
    margin-top: 50px;
    width: 95%;
  }
  .top-header .header-bg-img .overlay .header-content .header-title-desc .header-title h1 {
    font-size: 72px;
    line-height: 101px;
  }
  .top-header .header-bg-img .overlay .header-content .header-img-content {
    height: 590px;
  }
  .top-header .header-bg-img .overlay .header-content .header-img-content .scroll-down {
    left: -73px;
  }
  .top-header .header-bg-img .overlay .header-content .header-img-content .header-big-img {
    width: 495px;
    top: 50px;
    left: 10px;
  }

  #about-us .about-img-content .long-box {
    right: 0;
  }
  #about-us .about-img-content .short-box {
    left: 10px;
  }
  #about-us .about-details {
    padding-right: 20px;
  }
  #about-us .about-details .about-us-desc {
    width: 100%;
  }

  #our-services .our-services-img .img-content .services-card {
    margin-left: -200px;
  }
  #our-services .our-services-img #s-card-3 {
    left: 140px;
  }

  #our-projects .section-header .section-desc {
    width: 44%;
  }

  #our-clients #our-clients #clientsCarousel .carousel-indicators {
    margin-top: 20px;
  }

  #contact-us .f-bg-color {
    margin-left: 0;
    width: 50%;
  }
  #contact-us .form-content {
    padding: 32px 50px 43px 45px;
  }
  #contact-us .contact-content .contact-img-content {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  #contact-us .contact-content .contact-img-content img {
    position: absolute;
    left: -83px;
    top: -20px;
  }
}
@media (max-width: 991px) {
  .hide-in-991 {
    display: none !important;
  }

  .top-header .header-bg-img .overlay #navbar .navbar .navbar-nav {
    margin-top: 25px;
    padding-top: 10px;
    border-top: 1px solid #FFFFFF;
  }
  .top-header .header-bg-img .overlay #navbar .navbar .navbar-nav .nav-item {
    padding: 12px 0;
    margin-top: 0 !important;
  }
  .top-header .header-bg-img .overlay #navbar .navbar .navbar-nav .nav-item a:hover {
    color: #FFFFFF !important;
  }
  .top-header .header-bg-img .overlay .header-content .header-title-desc {
    width: 100%;
  }

  #about-us {
    padding: 150px 0 220px;
  }
  #about-us .about-details {
    text-align: left;
  }
  #about-us .about-details .about-us-title {
    text-align: center;
  }
  #about-us .about-details .about-us-desc {
    text-align-last: right;
    margin-bottom: 30px;
  }

  #our-services .our-services-img {
    height: auto;
    position: static;
    margin-top: 90px;
  }
  #our-services .our-services-img .img-content {
    position: static;
  }
  #our-services .our-services-img .img-content .services-card {
    margin-left: 0;
    width: auto;
    height: auto;
    padding: 33px 40px 40px;
    margin-bottom: 30px;
  }
  #our-services .our-services-img .img-content .services-card .name {
    width: auto;
    margin-bottom: 12px;
  }

  #our-projects {
    margin: 150px 0 220px;
  }
  #our-projects .project-gallery {
    margin-top: 75px;
  }

  #engineering-services #enginCarousel-2 .carousel-control-next {
    left: -35px;
  }

  #contact-us .f-bg-color {
    margin-right: 0;
    width: 66.66666667%;
  }
  #contact-us .contact-content .contact-img-content img {
    left: -202px;
  }

  footer .footer-bg-img .overlay #footer-row-2 {
    margin: 70px 0 90px;
  }
  footer .footer-bg-img .overlay #footer-row-2 .phone {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .hide-in-767 {
    display: none !important;
  }

  .top-header .header-bg-img .overlay .header-content .header-title-desc {
    width: 84%;
  }

  #about-us .about-details {
    padding-right: 0;
  }

  #our-services .our-services-img {
    margin-top: 50px;
  }

  #our-projects .project-gallery {
    margin-top: 50px;
  }

  #our-clients .clients-logo {
    margin-top: 50px;
  }
  #our-clients .client-carousel .carousel-inner .row > * {
    display: flex;
    justify-content: center;
  }
  #our-clients .client-carousel .carousel-inner .logo-content {
    margin-bottom: 40px;
  }
  #our-clients .client-carousel .carousel-inner .logo-content img {
    max-width: 190px;
    height: 110px;
  }

  #contact-us .f-bg-color {
    width: 100%;
  }

  footer .footer-bg-img .overlay #footer-row-1 .footer-title {
    font-size: 51px;
    line-height: 50px;
  }
}
@media (max-width: 576px) {
  .top-header .header-bg-img .overlay .header-content .header-title-desc {
    width: 88%;
  }
  .top-header .header-bg-img .overlay .header-content .header-title-desc .header-title h1 {
    font-size: 50px;
    line-height: 70px;
  }

  #engineering-services .engin-carousel .carousel-control-next {
    display: none;
  }
  #engineering-services .engin-carousel .carousel-control-prev {
    display: none;
  }

  #contact-us {
    padding: 1rem 0;
  }

  footer .footer-bg-img .overlay #footer-row-1 .footer-title {
    font-size: 47px;
    line-height: 49px;
  }
  footer .footer-bg-img .overlay #footer-row-1 .email {
    text-align: right;
  }
}
@media (max-width: 500px) {
  .top-header .header-bg-img .overlay .header-content .header-title-desc {
    width: 77%;
    text-align: center;
    margin: 0 auto;
  }
  .top-header .header-bg-img .overlay .header-content .header-title-desc .header-title h1 {
    font-size: 35px;
    line-height: 49px;
  }
  .top-header .header-bg-img .overlay .header-content .header-title-desc .header-desc p {
    font-size: 17px;
    line-height: 28px;
  }

  #about-us .about-details {
    text-align: center;
  }
  #about-us .about-details .about-us-title {
    font-size: 40px;
    line-height: 49px;
  }
  #about-us .about-details .about-us-desc {
    font-size: 15px;
    line-height: 30px;
  }

  #our-services .our-services-img .img-content .services-card .name {
    font-size: 27px;
  }
  #our-services .our-services-img .img-content .services-card .desc {
    font-size: 14px;
    line-height: 27px;
  }

  footer .footer-bg-img .overlay #footer-row-1 .footer-title {
    font-size: 40px;
    line-height: 40px;
  }
}
@media (max-width: 440px) {
  .top-header .header-bg-img .overlay .header-content .header-title-desc {
    width: 100%;
  }

  #our-clients .clients-logo .logo-content {
    width: 225px;
    height: 156px;
  }
  #our-clients .clients-logo .logo-content svg {
    width: 110px;
  }

  #contact-us {
    padding: 0;
  }
  #contact-us .container {
    padding: 0;
  }
  #contact-us .form-content {
    padding: 20px 24px 50px;
  }
  #contact-us .form-content .contact-form .contact-title {
    width: 100%;
    text-align: center;
  }
  #contact-us .form-content .contact-form .contact-title::after {
    position: static;
    width: 0;
    border: none;
  }

  footer .footer-bg-img .overlay {
    padding: 100px 0 60px;
  }
  footer .footer-bg-img .overlay #footer-row-2 {
    margin-bottom: 70px;
  }
  footer .footer-bg-img .overlay #footer-row-2 .address .address-desc {
    font-size: 15px;
  }
  footer .footer-bg-img .overlay #footer-row-3 {
    margin-top: 20px;
  }
}

/*# sourceMappingURL=style.css.map */
