/*
 *
 * Mixin Component
 *
 */
/*
 *
 * Mixin Component
 *
 */
/*
 *
 * Extend Component
 *
 */
.dFlexStartCenter, .contact-us .contact-info .item {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
}

.dFlexCenterCenter, .contact-us .contact-info .item .header {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.dFlexAroundCenter {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-align-items: center;
  align-items: center;
}

.dFlexBetweenCenter {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}

.dFlexEndCenter {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: center;
  align-items: center;
}

.dFlexCenterStart {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.backgroundImage {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
}

/*
 *
 * Variables
 *
 */
.bg-grey-3 {
  background-color: #f7f7f7;
}

.textPrimary {
  color: #cb8e23;
}

.textSecondary {
  color: #1d4d4f;
}

.error {
  color: red;
}

/*
 *
 * Contact Us Page
 *
 */
.contact-us {
  direction: rtl;
  text-align: right;
}
.contact-us .contact-form input, .contact-us .contact-form textarea {
  width: 100%;
  height: 50px;
  padding: 10px;
  border: solid thin #dddddd;
  border-radius: 10px;
  margin-bottom: 10px;
}
.contact-us .contact-form textarea {
  height: 170px;
}
.contact-us .contact-form .btn-send-container {
  text-align: left;
}
.contact-us .contact-form .btn-send-container .btn-send {
  height: 50px;
  text-align: center;
  background-color: #1d4d4f;
  color: white;
  margin-top: 10px;
  text-transform: capitalize;
}
.contact-us .contact-form .btn-send-container .btn-send:hover {
  background-color: white;
  color: #1d4d4f;
  border: solid thin #1d4d4f;
}
.contact-us .contact-info {
  margin-top: 100px;
}
.contact-us .contact-info .item .header {
  width: 50px;
  height: 50px;
  color: #cb8e23;
  border: solid thin #cb8e23;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.contact-us .contact-info .item .header i {
  font-size: 25px;
}
.contact-us .contact-info .item .body {
  margin-right: 10px;
}
.contact-us .contact-info .item .body span:nth-of-type(1) {
  font-weight: bold;
  color: #1d4d4f;
  display: block;
  text-transform: capitalize;
}
.contact-us .contact-social-media {
  margin-top: 40px;
}
.contact-us .contact-social-media ul {
  width: 100%;
  text-align: center;
}
.contact-us .contact-social-media ul li {
  display: inline-block;
  margin: 0 20px;
  color: #1d4d4f;
  font-size: 25px;
}
.contact-us .contact-social-media ul li:hover i {
  color: #cb8e23;
}
.contact-us .contact-social-media ul .btn-call-container {
  display: none;
}
.contact-us .contact-social-media ul .btn-call-container a {
  border: solid thin #ddd;
  text-transform: capitalize;
}
.contact-us .contact-social-media ul .btn-call-container a:hover {
  color: white;
  background-color: #1d4d4f;
  border: solid thin #1d4d4f;
}
.contact-us .contact-social-media ul .btn-call-container:hover i {
  color: white;
}
.contact-us #map {
  width: 100%;
  height: 400px;
  margin-top: 50px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
.contact-us .btn-direction-container {
  text-align: center;
}
.contact-us .btn-direction-container .btn-direction {
  text-align: center;
  background-color: white;
  border: solid thin #ddd;
  color: #1d4d4f;
  margin-top: 15px;
  text-transform: capitalize;
}
.contact-us .btn-direction-container .btn-direction:hover {
  background-color: #1d4d4f;
  color: white;
  border: solid thin #1d4d4f;
}

/*== Responsive ==*/
@media (max-width: 768px) {
  .contact-us .contact-form .btn-send-container {
    text-align: right;
  }
  .contact-us .contact-info .item {
    margin-bottom: 30px;
  }
  .contact-us .contact-social-media ul {
    padding: 0;
    text-align: right;
  }
  .contact-us .contact-social-media ul .btn-call-container {
    display: block;
    float: right;
  }
  .contact-us .contact-social-media ul .btn-call-container a i {
    -webkit-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    transform: scaleX(-1);
  }
}
@media (max-width: 576px) {
  .contact-us .contact-form .btn-send-container {
    text-align: center;
  }
  .contact-us .contact-social-media ul {
    text-align: center;
  }
  .contact-us .contact-social-media ul .btn-call-container {
    display: block;
    float: none;
    margin-top: 20px;
  }
  .contact-us #map {
    height: 250px;
  }
}

/*# sourceMappingURL=contact-us.css.map */
