/* Contact Section
********************************************************************* */

.sec-contact {
  background: #F1F1F1;
  color: #000;
}

.sec-contact h3{
  margin-top: 0;
  color: #858585;
  font-weight: 500;
  text-align: center;
}

.sec-contact h2{
  text-align: center;
  margin-top: 0;
  margin-bottom: 1em;
}

.sec-contact .flex {
  justify-content: space-between;
  display: flex;
}

.sec-contact .layer1 {
  background: linear-gradient(to left, #464445, #232223);
}

.sec-contact .layer2 {
  background: linear-gradient(to left, #464445, #232223);
  margin-top: 1em;
}

.sec-contact .background {
  box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
  padding: 1.5rem;
}

.sec-contact .map {
  background: #fff;
  height: 16.15em;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.sec-contact .map iframe {
  width: 100%;
  height: 100%;
}

.sec-contact a, .sec-contact a:hover, .sec-contact a:active {
  text-decoration: none !important;
}

.sec-contact a:hover .wrapper > p, a:hover .overlay > i,
.sec-contact a:focus .wrapper > p, a:focus .overlay > i,
.sec-contact a:active .wrapper > p, a:active .overlay > i {
  color: #3D8BD6;
}

.sec-contact .line {
  margin-bottom: 1em;
  display: flex;
  align-items: center;
  width: fit-content;
}

.sec-contact .overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: #fff;
  font-size: 28px;
  font-weight: 600;
  color: #464445;
  line-height: 1;
}

.sec-contact img {
  width: 3em;
  height: 3em;
  user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.sec-contact .wrapper {
  margin-left: 1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5em;
}

.sec-contact h4 {
  margin: 0;
  color: #858585;
  font-weight: 600;
}

.sec-contact p {
  margin: 0;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
}

.sec-contact form .col-sm-6 {
  margin-bottom: 1em;
}


.sec-contact label{
  color: #fff;
}

.sec-contact input, textarea {
  width: 100%;
  border-radius: 0;
  font-size: 15px;
  padding: 1rem; /* The 6px vertically centers text on FF, ignored by Webkit */
  border: none;
  box-shadow: none;
  box-sizing: border-box;
  outline: none;
  background: #fff;
  color: #000;
}

.sec-contact input::placeholder {
  color: #000;
}

.sec-contact input:focus {
  color: #000;
}

.sec-contact textarea {
  color: #000;
  min-height: 10em;
  min-width: 100%;
  max-width: 100%;
}

.sec-contact textarea::placeholder {
  color: #000;
}

.sec-contact textarea:focus {
  color: #000;
}

.sec-contact button {
  justify-content: space-between;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  padding: 1rem 1.5rem;
  color: #fff;
  margin-top: 1em;
  margin-bottom: 0;
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0;
  border: none;
  display: inline-flex;
  background: linear-gradient(to left, #42688E, #3D8BD6);
}

.sec-contact button:hover, .sec-contact button:hover i,
.sec-contact button:focus, .sec-contact button:focus i,
.sec-contact button:active, .sec-contact button:active i {
  color: #000;
}

.sec-contact button i {
  line-height: 1.5;
  margin-left: 0.5rem;
  font-size: 18px;
}

@media (min-width: 768px) {
  .sec-contact .layer2 {
    background: #464445;
    margin-top: 0;
  }
  .sec-contact button {
    padding: 1rem 2rem;
  }
}