/* 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 */
.section1 .aboutPage p {
  color: #686666;
}

/* 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 */
body {
  overflow-x: hidden;
}

/* 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: 270px;
  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: 220px;
    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;
  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 */
.section1 {
  margin-top: 50px;
  margin-bottom: 50px;
}

.section1 h2 {
  margin-bottom: 80px;
  color: #555353;
  font-weight: bold;
}

.section1 .aboutPage {
  margin-bottom: 80px;
  border: 2px solid #ccc;
  padding: 40px 0 40px 0;
  border-radius: 20px;
  -webkit-transform: translateY(200px);
          transform: translateY(200px);
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.section1 .aboutPage i {
  margin-bottom: 20px;
  background-color: #d35400;
  color: #fff;
  padding: 20px;
  border-radius: 20px;
}

.section1 .aboutPage h4 {
  color: #777777;
  font-weight: bold;
}

.section1 .aboutPage p {
  width: 90%;
  margin: auto;
}

/* end section 1 */
/* start section 2 */
.section2 {
  background: url("../images/about/video.jpg") no-repeat center center fixed/cover;
  width: 100%;
  height: 500px;
}

.section2 .layer {
  background-color: rgba(0, 0, 0, 0.6);
  min-height: 100%;
}

.section2 .layer .video h2 {
  color: #dbd7d7;
  padding-top: 100px;
  margin-bottom: 50px;
  font-weight: bold;
}

.section2 .layer .video i {
  color: #6e0404;
  background-color: #a09d9d;
  width: 110px;
  height: 110px;
  line-height: 110px;
  border-radius: 50%;
  cursor: pointer;
}

@media (max-width: 767px) {
  .section2 .layer .video i {
    line-height: 100px;
  }
}

.section2 .layer .video i:hover {
  color: #c70808;
  background-color: #fff;
}

/* end section 2 */
/* start section 3 */
.container h2 {
  margin-top: 90px;
  font-weight: bold;
}

.owl-carousel {
  margin-top: 50px;
  margin-bottom: 80px;
}

.owl-carousel .team {
  background-color: #fff;
  -webkit-box-shadow: 2px 2px 10px #ccc;
          box-shadow: 2px 2px 10px #ccc;
  border-radius: 20px;
  padding: 20px;
  margin: 20px;
}

.owl-carousel .team img {
  width: 130px !important;
  height: 130px;
  margin: 10px auto 20px;
}

.owl-carousel .team p {
  color: #706f6f;
}

.owl-carousel .team h4 {
  color: #706f6f;
  font-weight: bold;
  font-size: 22px;
}

.owl-carousel .team h5 {
  color: #454545;
  font-size: 17px;
  font-weight: bold;
}

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

@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=about.css.map */