@charset "utf-8";
/* CSS Document */

/******************************

[Table of Contents]

1. Page Content
2. Responsiv Page

******************************/

.header{
  position: relative;
}

.header::before{
  content: "";
  position: absolute;
  bottom: -81px;
  left: 0;
  width: 100%;
  height: 80px;
  background-image: url(../images/section/13_bg.JPG);
  transform: rotate(180deg);
  z-index: -1;
}

/*********************************
1. Page Content
*********************************/
.contact{
  padding: 60px 0 40px;
  min-height: calc(100vh - 200px);
}

.contact .head{
  margin-bottom: 70px;
}

.contact .head .breadcrumb{
  background-color: transparent;
  padding: 0;
}

.contact .head .breadcrumb li{
  font-size: 18px;
}

.contact .head .breadcrumb li a{
  color: #000;
}

.contact .head h1{
  font-weight: 600;
  font-size: 36px;
  letter-spacing: 1px;
  margin: 10px 0 20px;
  line-height: 1.4;
  position: relative;
  display: inline-block;
}

.contact .head h1::before{
  content: "";
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 100px;
  height: 4px;
  background-color: var(--seconde-color);
}

.contact .head h1::after{
  content: "";
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 60px;
  height: 4px;
  background-color: var(--seconde-color);
}

.contact-form .form-group{
  margin-bottom: 30px;
}

.contact-form .form-group .form-control{
  box-shadow: none;
  outline: 0;
  height: 52px;
  border: 1px solid #0000;
  border-radius: 5px;
  padding: 0 24px;
  transition: .3s ease;
  background: #fff;
}

.contact-form .form-group .form-control:focus{
  border-color: var(--seconde-color);
}

.contact-form .form-group textarea.form-control{
  height: 150px;
  padding-top: 15px;
  resize: none;
}

.contact-form .form-group button{
  font-size: 18px;
  background-color: var(--main-color);
  color: #fff;
  padding: 12px 60px;
  transition: .3s ease;
  border: 1px solid #0000 !important;
  border-radius: 5px;
}

.contact-form .form-group button:hover{
  background-color: #0000;
  color: var(--main-color);
  border-color: var(--main-color)  !important;
}