@charset "utf-8";


.about-banner {
  position: relative;
  margin-top: var(--spacing-section-large);
  padding: var(--spacing-section-medium) 0;
  text-align: center;
}

.about-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .2;
}

.about-banner img {
  max-height: 150px;
}

.about-banner .container-xl {
  position: relative;
}

@media (max-width: 991px) {
  .about-banner img {
    max-height: 100px;
  }
  
}



/*  */
#service .service-icon {
  margin-right: 20px;
  max-height: 45px;
}

#service .service-data {
  margin-top: var(--spacing-section-medium);
  padding: var(--spacing-section-medium) 0;
  background-color: #1C1C1C;
  color: #939393;
}

#service .service-data .col > div {
  display: flex;
  -ms-flex-align: center!important;
  align-items: center!important;
  flex-wrap: wrap;
}

#service .service-data h6 {
  font-weight: 600;
  color: #fff;
}

#service .service-data i {
  margin-right: 20px;
  font-size: 40px;
}

#service .service-data img {
  margin-right: 20px;
  max-height: 40px;
}


@media (max-width: 991px) {
  #service .service-data .col > div {
    text-align: center;
    -ms-flex-pack: center!important;
    justify-content: center!important;
  }
  
  #service .service-data .col > div > div {
    width: 100%;
  }
  
  #service .service-data i {
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  #service .service-data img {
    margin-right: 0;
    margin-bottom: 10px;
  }
}


/* portfolio */
#portfolio .portfolio-list {
  padding: 0 50px;
}

@media (max-width: 991px) {
  #portfolio .portfolio-list {
    padding: 0 15px;
  }
}

.form-control::placeholder {color: #c9c9c9;}

/* # */

#contact .contact-bg {
  padding-top: var(--spacing-section-large);
  position: relative;
}

#contact .contact-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(50% + 150px);
  background-color: #1C1C1C;
}

#contact .section-heading h5 {
  color: #fff;
}

#contact .contact-info .col > div {
  padding: 80px 0;
  height: 100%;
  background-color: #fff;
  box-shadow: 0 0 12px rgba(0,0,0,.1);
  text-align: center;
}

#contact .contact-info i {
  margin-bottom: 25px;
  font-size: 40px;
  color: #f7d23d;
}

#contact .contact-inquiry {
  padding-top: 80px;
}


#contact td {
  padding: 0;
  border: none;
}

#contact .btn_submit {
  margin: 0;
}

#contact input[type='text'] {
  padding: 12px 16px !important;
  width: 100%;
  height: 54px;
  background-color: #f9f9f9;
  line-height: 1.42857143;
  border: none;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  color: #777;
  outline: 0;
  margin-bottom: 10px;
}

#contact input[type='text']::placeholder {
  white-space-collapse: preserve;
  text-wrap: nowrap;
  overflow-wrap: normal;
  overflow-x: hidden;
  overflow-y: hidden;
  line-height: initial;
}

#contact textarea {
  padding: 12px 16px !important;
  width: 100%;
  height: 120px;
  background-color: #f9f9f9;
  line-height: 1.42857143;
  border: none;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  color: #777;
  outline: 0;
}

@media (max-width: 991px) {
  #contact .contact-bg {
    padding-bottom: var(--spacing-section-large);
  }
  
  #contact .contact-bg::before {
    height: 100%;
  }
  
  #contact .contact-info .col > div {
    padding: 30px 0;
  }
}

@media (max-width: 767px) {
  #contact .contact-info i {
    margin-bottom: 15px;
    font-size: 30px;
  }
}

