@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;400&display=swap");

:root {
  --orange: #ff7a00;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.2s linear;
  text-transform: capitalize;
  font-family: "Roboto", sans-serif;
}

a {
  text-decoration: none !important;
}

/*slide show her*/

.slide_show {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.slideshow_item {
  width: inherit;
  height: inherit;
  position: absolute;
  opacity: 0;
  animation: cycleImages 31s infinite;
}

.slideshow_item:nth-child(1) {
  animation-delay: 0s;
}

.slideshow_item:nth-child(2) {
  animation-delay: 10s;
}

.slideshow_item:nth-child(3) {
  animation-delay: 20s;
}

.slideshow_item:nth-child(4) {
  animation-delay: 30s;
}

.slideshow_item:nth-child(5) {
  animation-delay: 40s;
}

.slideshow_item:nth-child(6) {
  animation-delay: 50s;
}

.slideshow_item:nth-child(7) {
  animation-delay: 60s;
}

.slideshow_item:nth-child(8) {
  animation-delay: 70s;
}

.slideshow_item:nth-child(9) {
  animation-delay: 80s;
}

.slideshow_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slideshow_item-text {
  max-width: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 2rem 3rem;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.slideshow_item-text h5 {
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.slideshow_item-text p {
  font-family: "Roboto", sans-serif;
  margin-bottom: 1rem;
  font-size: 15px;
}

@keyframes cycleImages {
  25% {
    opacity: 1;
  }

  40% {
    opacity: 0;

    grid-auto-flow: column;
  }
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

.heading {
  font-size: 4rem;
  text-align: center;
  letter-spacing: 1.7rem;
  color: #444;
  padding-top: 10rem;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-color: var(--orange);
  text-underline-offset: -1.4rem;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: #fff;
  z-index: 100;
  padding: 1rem 1rem;
}

.header-logo {
  padding-top: 26px;
  padding-right: 50px;
  padding-right: 280px;
  font-size: 15px;
  font-weight: 900;
}

.header .logo img {
  height: 5rem;
  align-items: center;
}

.header nav ul {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 0;
  padding: 0;
}

.header nav ul li {
  margin: 0 1.5rem;
}

.header nav ul li a {
  font-size: 1.6rem;
  color: #ff7a00;
}

.header nav ul li a:hover {
  color: #000;
  text-decoration: none;
}

.header .fa-bars {
  font-size: 2.5rem;
  color: #666;
  cursor: pointer;
  display: none;
}

.home .hero {
  min-height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.home .row {
  margin: 0;
}

.home .hero .text1 {
  font-size: 5rem;
  width: 45rem;
  background: #fff;
  padding: 1rem;
  text-align: center;
  opacity: 0.8;
}

.home .hero .text2 {
  font-size: 3rem;
  width: 35rem;
  background: var(--orange);
  padding: 1rem;
  text-align: center;
  opacity: 0.8;
  margin-top: 1rem;
  color: #fff;
}

.home .counting {
  min-height: 40vh;
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.home .counting .box {
  margin: 2rem 4rem;
  text-align: center;
}

.home .counting .box .count {
  font-size: 7rem;
  color: #444;
}

.home .counting .box h3 {
  font-size: 2rem;
  color: var(--orange);
}

.about {
  min-height: 100vh;
  padding-bottom: 3rem;
}

.about .image {
  padding: 2rem;
}

.about .image img {
  height: 45rem;
  object-fit: cover;
  box-shadow: 2.5rem 2.5rem 0 1rem var(--orange);
}

.about .info {
  padding: 2rem;
  margin-top: 3rem;
}

.about .info h2 {
  color: var(--orange);
  font-size: 3rem;
}

.about .info p {
  font-size: 1.4rem;
  color: #444;
  margin: 2rem 0;
}

.service {
  min-height: 100vh;
}

.info h3 {
  font-weight: bold;
  align-items: center;
  padding-bottom: 20px;
}

.services-img img {
  border-radius: 50%;
  width: 70%;
}

.service .box-container {
  width: 90%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.service .box-container .box {
  height: 25rem;
  width: 25rem;
  border-left: 0.5rem solid var(--orange);
  border-right: 0.5rem solid var(--orange);
  border-radius: 0.5rem;
  text-align: center;
  padding-top: 6rem;
  margin: 2rem 3rem;
}

.service .box-container .box .fas {
  color: var(--orange);
  font-size: 5rem;
}

.service .box-container .box p {
  color: #333;
  font-size: 1.1rem;
  margin: 2rem 0;
}

.project {
  min-height: 100vh;
  background: whi;
}

.project .heading {
  color: #333;
}

.project .box-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.project .box-container .box {
  height: 20rem;
  width: 30rem;
  border-radius: 0.5rem;
  margin: 2rem;
  overflow: hidden;
}

.project .box-container .box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.project .box-container .box:hover img {
  transform: scale(1.3);
}

.contact {
  min-height: 100vh;
}

.contact-box-container {
  width: 93%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-box:hover {
  transform: scale(0.9);
}

.contact-box-container .contact-box {
  height: 15rem;
  flex: 1 0 30rem;
  margin: 2rem;
  box-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  text-align: center;
  padding-top: 4rem;
}

.contact-box-container .contact-box i {
  color: var(--orange);
  font-size: 3rem;
}

.contact-box-container .contact-box h3 {
  font-size: 15px;
  color: #444;
}

.box a {
  width: 200%;
}

.slider {
  max-width: 1100px;
  display: flex;
}

.slider .card {
  flex: 1;
  margin: 0 10px;
  background: #fff;
  height: 50vh;
}

.slider .card .img {
  height: 200px;
  width: 100%;
}

.slider .card .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.slider .card .content {
  padding: 10px 20px;
}

.card .content .title {
  font-size: 15px;
  font-weight: 600;
}

.card .content .btn {
  display: block;
  text-align: left;
  margin: 10px 0;
}

.card .content .btn button {
  background: #e74c3c;
  color: #fff;
  border: none;
  outline: none;
  font-size: 17px;
  padding: 5px 8px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s;
}

.card .content .btn button:hover {
  transform: scale(0.9);
}

.slider {
  margin-left: 120px;
  margin-bottom: 129px;
}

/* responsive media query start */
@media (max-width: 1104px) {
  .about .about-content .left img {
    height: 350px;
    width: 350px;
  }
}

.footer {
  background: #333;
  text-align: center;
}

.footer .row {
  width: 100%;
  margin-left: 0;
  padding: 1rem;
}

.footer .row .col-md-3 {
  margin: 1rem 0;
}

.footer h2 {
  font-size: 2.5rem;
  color: #fff;
}

.footer p {
  font-size: 1.2rem;
  color: #ccc;
}

.footer .list {
  display: flex;
  flex-flow: column;
}

.footer .list a {
  color: #ccc;
  font-size: 1.7rem;
}

.footer .letter p {
  font-size: 2rem;
}

.footer .letter input[type="email"] {
  outline: none;
  border: none;
  background: none;
  padding: 0 1rem;
  color: #fff;
  height: 3rem;
  width: 100%;
  border: 0.1rem solid #fff;
  font-size: 1.5rem;
}

.footer .letter input[type="submit"] {
  outline: none;
  border: none;
  background: #fff;
  margin: 1rem 0;
  width: 10rem;
  font-size: 1.6rem;
}

.footer .letter input[type="submit"]:hover {
  background: var(--orange);
  color: #fff;
}

.footer .credit {
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  padding: 1rem 0;
  margin: 1rem 0;
  margin-bottom: 0;
  border-top: 0.1rem solid #aaa;
  letter-spacing: 0.2rem;
}

.footer .credit span {
  color: var(--orange);
}

.fa-times {
  transform: rotate(180deg);
  margin-bottom: 100px;
}

/* media queries  */

@media (max-width: 768px) {
  html {
    font-size: 50%;
  }

  .header .fa-bars {
    display: block;
  }

  .header nav {
    position: fixed;
    top: 6rem;
    right: -120%;
    height: calc(100vh - 6rem);
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }

  .header nav ul {
    height: 100%;
    width: 39rem;
    background: #fff;
    flex-flow: column;
    justify-content: center;
    float: right;
  }

  .header nav ul li {
    margin: 1rem 0;
    color: #ff7a00 !important;
  }

  .header nav ul li a {
    display: block;
    padding: 0.5rem 0;
    border: 0.1rem solid rgba(0, 0, 0, 0.3);
    width: 25rem;
    border-radius: 5rem;
    color: #ff7a00 !important;
    text-align: center;
  }

  .header nav ul li a:hover {
    background: #333;
    color: #fff;
  }

  .header .nav-toggle {
    right: 0%;
  }
}

@media (max-width: 400px) {
  .home .hero .text1 {
    font-size: 3.5rem;
    width: 33rem;
  }

  .home .hero .text2 {
    font-size: 2.5rem;
    width: 30rem;
  }
}

.g_maps {
  display: flex;
  justify-content: center;
  align-items: center;
}

.iframe-g-maps {
  border-radius: 12px;
}
