/* importing files */
/* start color variables */
/* end color variables */
/* start media variables */
/* end media variables */
/* start prefixes mixin */
/* end prefixes mixin */
/* start keyframe mixin */
/* end keyframe mixin */
/* importing files */
/* start global rules */
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Source Sans Pro', sans-serif;
}

/* end global rules */
/* start rules of body */
/* end rules of body */
/* start loading page */
.load {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  height: 100%;
  width: 100%;
  z-index: 9999999;
  padding-left: 48%;
  padding-top: 20%;
  display: block;
}

@media (max-width: 767px) {
  .load {
    padding-left: 40%;
    padding-top: 60%;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .load {
    padding-left: 38%;
    padding-top: 48%;
  }
}

.load .lds-hourglass {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}

.load .lds-hourglass:after {
  content: " ";
  display: block;
  border-radius: 50%;
  width: 0;
  height: 0;
  margin: 6px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 36px solid #000;
  border-color: #000 transparent #000 transparent;
  -webkit-animation: lds-hourglass 1.2s infinite;
          animation: lds-hourglass 1.2s infinite;
}

@-webkit-keyframes lds-hourglass {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    -webkit-transform: rotate(900deg);
            transform: rotate(900deg);
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  100% {
    -webkit-transform: rotate(1800deg);
            transform: rotate(1800deg);
  }
}

@keyframes lds-hourglass {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    -webkit-transform: rotate(900deg);
            transform: rotate(900deg);
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  100% {
    -webkit-transform: rotate(1800deg);
            transform: rotate(1800deg);
  }
}

/* end loading page */
/* start navbar */
.navbar {
  background-color: transparent;
  position: relative;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

@media (max-width: 767px) {
  .navbar {
    background-color: #2f3640 !important;
    padding: 10px !important;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .navbar {
    background-color: #2f3640 !important;
    padding: 15px !important;
  }
}

@media (min-width: 992px) {
  .navbar {
    background-color: transparent;
  }
}

.navbar .down {
  color: #d35400;
  position: absolute;
  display: none;
  cursor: pointer;
}

@media (max-width: 767px) {
  .navbar .down {
    display: block;
    top: 10px;
    right: 20px;
  }
}

@media (min-width: 768px) {
  .navbar .down {
    display: block;
    top: 15px;
    right: 40px;
  }
}

@media (min-width: 992px) {
  .navbar .down {
    display: none;
  }
}

.navbar .nav-brand {
  cursor: pointer;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
}

.navbar .nav-brand i:first-of-type {
  color: #d35400;
  font-size: 40px;
  -webkit-animation: rotating 1.5s infinite linear;
  animation: rotating 1.5s infinite linear;
}

.navbar .nav-brand i:last-of-type {
  color: #d35400;
  font-size: 25px;
  -webkit-animation: rotating 1.5s infinite linear;
  animation: rotating 1.5s infinite linear;
}

@media (max-width: 767px) {
  .navbar .nav-brand {
    font-size: 22px;
  }
  .navbar .nav-brand i:first-of-type {
    font-size: 30px;
  }
  .navbar .nav-brand i:last-of-type {
    font-size: 18px;
  }
}

.navbar ul {
  padding: 0;
  margin: 0;
  color: #fff;
}

@media (max-width: 767px) {
  .navbar ul {
    display: none;
  }
}

@media (min-width: 768px) {
  .navbar ul {
    display: none;
  }
}

@media (min-width: 992px) {
  .navbar ul {
    display: block !important;
  }
}

.navbar ul li {
  display: inline-block !important;
  margin-right: 15px;
  cursor: pointer;
  position: relative;
  padding: 7px 10px;
  margin: 5px 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 20px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .navbar ul li {
    width: 100%;
    margin-left: -10px;
    font-size: 15px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .navbar ul li {
    width: 100%;
  }
}

.navbar ul li:hover {
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

.navbar ul li:hover .dropdown {
  color: #fff;
}

.navbar ul li i {
  color: #d35400;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar ul li a {
  text-decoration: none;
  color: #fff;
}

.navbar .dropdown {
  position: absolute;
  top: 60px;
  right: -69px;
  background-color: transparent;
  width: 180px;
  border-radius: 0 0 5px 5px;
  display: none;
}

@media (max-width: 767px) {
  .navbar .dropdown {
    background-color: #2f3640 !important;
    left: -8px;
    top: 45px;
  }
}

@media (min-width: 768px) {
  .navbar .dropdown {
    background-color: #2f3640;
    left: -8px;
    top: 50px;
  }
}

@media (min-width: 992px) {
  .navbar .dropdown {
    background-color: transparent;
  }
}

.navbar .dropdown p a {
  margin-left: 10px;
  cursor: pointer;
  border-bottom: 3px solid #2f3640;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar .dropdown p a:hover {
  color: #d35400;
  margin-left: 15px;
}

.navbar .dropdown p a:first-of-type {
  padding-top: 10px;
}

@-webkit-keyframes rotating {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotating {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/* end navbar */
/* start header */
div.header {
  background: url("../images/header/header.jpg") no-repeat center center fixed;
  background-size: cover;
  width: 100%;
  color: #fff;
}

div.header .layer {
  background-color: rgba(47, 54, 64, 0.8);
  height: 100%;
}

div.header .layer .head {
  padding-top: 150px;
}

@media (max-width: 767px) {
  div.header .layer .head {
    padding-top: 120px;
  }
}

div.header .layer .head h4 {
  width: 220px;
  margin: auto;
  font-weight: bold;
  padding: 5px;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

@media (max-width: 767px) {
  div.header .layer .head h4 {
    width: 170px;
    font-size: 16px;
  }
}

div.header .layer .head h1 {
  font-size: 60px;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  div.header .layer .head h1 {
    font-size: 40px;
    margin-bottom: 20px;
  }
}

div.header .layer .head div.ul {
  display: inline-block;
  width: 200px;
}

@media (max-width: 767px) {
  div.header .layer .head div.ul {
    width: 120px;
  }
}

div.header .layer .head li {
  margin: 10px 20px;
  font-size: 30px;
  background-color: #d35400;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  line-height: 80px;
  display: inline-block;
  overflow: hidden;
  margin-bottom: 80px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 767px) {
  div.header .layer .head li {
    font-size: 20px;
    width: 65px;
    height: 65px;
    line-height: 60px;
    margin-bottom: 40px;
  }
}

div.header .layer .head li span.words {
  display: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

div.header .layer .head li:hover {
  width: 130px;
  border-radius: 40px;
}

@media (max-width: 767px) {
  div.header .layer .head li:hover {
    width: 100px;
  }
}

div.header .layer .head li:hover i {
  display: none;
}

div.header .layer .head li:hover span.words {
  display: block;
}

div.header .layer .head li a {
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* end header */
/* start section 1 */
div.section1 {
  margin: 50px auto 50px;
}

div.section1 .container {
  width: 70%;
}

@media (max-width: 767px) {
  div.section1 .container {
    width: 100%;
  }
}

div.section1 .container .map-responsive {
  width: 100%;
  height: 500px;
  margin: auto;
}

/* end section 1 */
/* start section 2 */
.section2 {
  padding-top: 50px;
  padding-bottom: 40px;
  background-color: #eae9e9;
}

@media (max-width: 767px) {
  .section2 {
    padding-bottom: 40px;
  }
}

.section2 h2 {
  font-weight: bold;
  margin-bottom: 20px;
}

.section2 h2:before {
  font-family: "Font Awesome 5 Pro";
  content: "\f35a";
  padding-right: 10px;
  color: #d35400;
}

.section2 h3 {
  font-weight: bold;
  margin-bottom: 20px;
}

.section2 .form {
  margin-bottom: 60px;
}

.section2 .form i {
  display: block;
  font-size: 22px;
  margin-bottom: 10px;
  color: #d35400;
}

.section2 .form i aside {
  display: inline-block;
}

.section2 .form i a, .section2 .form i aside {
  font-size: 20px;
  margin-left: 10px;
  text-decoration: none;
  color: #000;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.section2 .form i a:hover {
  color: #d35400;
}

.section2 .form input {
  width: 500px;
  height: 50px;
  border-radius: 10px;
  padding: 10px;
  font-size: 19px;
  display: block;
  margin-bottom: 10px;
  outline: none;
  border-bottom: 2px solid var(--primary-color);
  background-color: #d6d6d5;
  -webkit-box-shadow: 1px 1px 2px;
          box-shadow: 1px 1px 2px;
}

@media (max-width: 767px) {
  .section2 .form input {
    width: 300px;
    height: 45px;
    font-size: 17px;
  }
}

.section2 .form textarea {
  width: 500px;
  height: 150px;
  border-radius: 10px;
  padding: 10px;
  font-size: 19px;
  display: block;
  margin-bottom: 10px;
  outline: none;
  border-bottom: 2px solid var(--primary-color);
  -webkit-box-shadow: 1px 1px 2px;
          box-shadow: 1px 1px 2px;
  background-color: #d6d6d5;
}

@media (max-width: 767px) {
  .section2 .form textarea {
    width: 300px;
    height: 120px;
    font-size: 17px;
  }
}

.section2 .form button {
  width: 120px;
  height: 55px;
  font-size: 20px;
  border-radius: 10px;
  outline: none;
  background-color: #d35400;
  color: #fff;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.section2 .form button:hover {
  background-color: #2f3640;
  color: #fff;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}

/* end section 2 */
/* start footer */
div.footer {
  background: url("../images/footer/footer.jpg") no-repeat center center fixed/cover;
  color: #fff;
}

@media (max-width: 767px) {
  div.footer {
    text-align: center;
  }
}

div.footer .layer {
  background-color: rgba(32, 31, 31, 0.92);
  height: 100%;
}

div.footer .layer .foot {
  padding-top: 80px;
}

@media (max-width: 767px) {
  div.footer .layer .foot {
    padding-top: 40px;
  }
}

div.footer .layer .foot h4 {
  margin-bottom: 30px;
  font-weight: bold;
}

@media (max-width: 767px) {
  div.footer .layer .foot h4 {
    font-size: 22px;
    margin-bottom: 20px;
  }
}

div.footer .layer .foot p {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.5px;
  color: #c9c7c7;
}

@media (max-width: 767px) {
  div.footer .layer .foot p {
    font-size: 16px;
  }
}

div.footer .layer .foot p.myinfo {
  display: inline-block;
}

div.footer .layer .foot li {
  padding-bottom: 30px;
  font-size: 18px;
  font-weight: 600px;
  color: #c9c7c7;
}

@media (max-width: 767px) {
  div.footer .layer .foot li {
    padding-bottom: 20px;
    font-size: 17px;
  }
}

div.footer .layer .foot i {
  margin-right: 10px;
}

div.footer .layer .foot i.vac {
  font-size: 25px;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  margin-right: 10px;
  margin-top: 20px;
  background-color: #555353;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 767px) {
  div.footer .layer .foot i.vac {
    font-size: 22px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
  }
}

div.footer .layer .foot i.vac:hover {
  background-color: #777777;
}

div.footer .layer .foot i.location {
  font-size: 20px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background-color: #555353;
  border-radius: 50%;
}

div.footer p.end {
  font-size: 20px;
  font-weight: 600;
  padding-top: 30px;
  padding-bottom: 40px;
  margin: 0;
  color: #e4e2e2;
}

@media (max-width: 767px) {
  div.footer p.end {
    font-size: 16px;
  }
}

div.footer p.end span {
  color: #d35400;
}

div.footer p.end i {
  padding: 5px;
  color: #d35400;
}

/* end footer */
/*# sourceMappingURL=contact.css.map */