@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Quicksand:300,400,500%7CRoboto:300,300i,400,400i');

/*VESTA Onepage Template*/
/* == CONTENT == */
/*
  01. GENERAL SETTINGS
  02. PRELOADER
  03. MENU
  04. SCROLL DOWN ICON
  05. ABOUT SECTION
  06. SKILLBAR
  07. HOBBIES & INTERESTS
  08. SERVICES 
  09. FUN FACTS SECTION
  10. PORTFOLIO SECTION
  11. SOCIAL LINKS
  12. RESUME
  13. TESTIMONIALS SECTION
  14. CONTACT FORM
  15. FOOTER
  16. MEDIA QUERIES FOR RESPONSIVE DESIGN
  */

 /*--- 01. GENERAL SETTINGS ---*/
h5 {
  display: block;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
}
html,
body {
  width: 100%;
  height: 100%;
  font-family: 'Roboto', sans-serif;
  color: #757575;
  background-color: #363636;
  line-height: 1.5;
  font-size: 16px;
  letter-spacing: 1px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
h1 {
  font-size: 110px;
}
h2 {
  font-size: 68px;
}
h3 {
  font-size: 42px;
}
h4 {
  font-size: 26px;
}
h5 {
  font-size: 16px;
}
h6 {
  font-size: 10px;
}
p {
  margin: 0 0 0 0;
}
a {color: #ffffff;}
a:hover,
a:focus,
a:visited {
  text-decoration: none;
  color: #000;
  outline: 0 auto -webkit-focus-ring-color;
}
button {
  background-color: #ff6f1b;
  color: #4a4a4a;
  border: none;
  padding: 5px 20px;
  letter-spacing: 3px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
button:hover {
  background-color: #757575;
  color: #F2F2F2;
}
button:focus {
  border: none;
  box-shadow: none;
  outline-style: none;
}
.carousel-indicators {
  z-index: 0;
}
.text-header {
  text-align: center;
}
.header-block {
  padding: 0 0 0 12px;
  font-size: 26px;
  color: #4a4a4a;
  margin-bottom: 96px;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 10px;
  display: inline-block;
}
.large-text {
  text-align: right;
  text-transform: uppercase;
  line-height: 38px;
  display: block;
  color: #333;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 3px;
  text-decoration: underline;
  background: #ff6f1bad;
    padding: 5px 10px
}
/*--- 02. PRELOADER ---*/
@-webkit-keyframes clockwise {
  to {
    -webkit-transform: rotate(360deg) translatez(0);
    transform: rotate(360deg) translatez(0);
  }
}
@keyframes clockwise {
  to {
    -webkit-transform: rotate(360deg) translatez(0);
    transform: rotate(360deg) translatez(0);
  }
}
.loader {
  position: absolute;
  left: calc(50% - 25px);
  top: calc(50% - 25px);
  height: 50px;
  width: 50px;
  border-width: 10px;
  border-style: solid;
  border-color: rgba(103, 103, 103, 0.75) rgba(103, 103, 103, 0.75) rgba(103, 103, 103, 0.25) rgba(103, 103, 103, 0.25);
  border-radius: 100%;
  -webkit-animation: clockwise .5s linear infinite;
  animation: clockwise .5s linear infinite;
}
#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1060;
  background-color: #ff6f1b;
}
/*----- 03 MENU -----*/
.mobile-overlay {
  height: 0;
  width: 50%;
  position: fixed;
  z-index: 1046;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.mobile-overlay li {
  list-style-type: none;
}
.mobile-overlay .close-menu {
  margin-top: 5px;
  margin-right: 25px;
  text-align: right;
}
.mobile-overlay_height {
  height: 100%;
}
/* Position the content inside the overlay */
.mobile-overlay_content {
  position: relative;
  color: #4c445d;
  top: 15%;
  padding: 24px 60px;
  font-size: 16px;
  font-weight: 300;
  text-align: left;
  margin-top: 10px;
  letter-spacing: 10px;
  text-transform: uppercase;
}
/* The navigation links inside the overlay */
.mobile-overlay a {
  padding: 14px 0;
  text-decoration: none;
  color: #fff;
  display: block;
  /* Display block instead of inline */
  -webkit-transition: opacity 0.2s cubic-bezier(0.77, 0.02, 0.125, 0.99);
  -webkit-transition: opacity 0.2s cubic-bezier(0.77, 0.02, 0.12);
  transition: opacity 0.2s cubic-bezier(0.77, 0.02, 0.12);
  -webkit-transition-property: opacity, padding-left, top, height;
  transition-property: opacity, padding-left, top, height;
}
.menu-item a:hover {
  padding-left: 45px;
  color: #ff6f1b;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.line-hover {
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.menu-item a:hover > .line-hover {
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
  top: 50%;
  left: -20px;
  opacity: 1;
  position: absolute;
  width: 35px;
  height: 3px;
  background-color: #ff6f1b;
}
.mobile-overlay .menu-item {
  opacity: 0;
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transition: opacity 0.3s ease,-webkit-transform 0.3s ease;
  transition: opacity 0.3s ease,-webkit-transform 0.3s ease;
  transition: opacity 0.3s ease,transform 0.3s ease;
  transition: opacity 0.3s ease,transform 0.3s ease,-webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.mobile-overlay_show {
  opacity: 1 !important;
  -webkit-transform: translateX(0) !important;
  transform: translateX(0) !important;
}
/*hamburger menu*/
.hamburger {
  width: 45px;
  height: 33px;
  position: fixed;
  cursor: pointer;
  z-index: 1041;
  right: 30px;
  top: 24px;
  /* background: #ff6f1b; */
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.icon-open {
  width: 45px;
  height: 35px;
  position: fixed;
  cursor: pointer;
  z-index: 1047;
  right: 30px;
  top: 24px;
  background: transparent;
}
.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 35px;
  opacity: 1;
  top: 5px;
  right: 5px;
  -webkit-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.color-menu {
  background: #4a4a4a none repeat scroll 0% 0%;
}
.toggle-color-menu {
  background: #ff6f1b none repeat scroll 0% 0%;
}
.hamburger span:nth-child(1) {
  margin-top: 0px;
}
.hamburger span:nth-child(2) {
  margin-top: 10px;
  margin-right: 0px;
}
.hamburger span:nth-child(3) {
  margin-top: 20px;
}
.hamburger.opened span:nth-child(1) {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  margin-top: 11px;
}
.hamburger.opened span:nth-child(2) {
  opacity: 0;
  right: 75px;
}
.hamburger.opened span:nth-child(3) {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  margin-top: 11px;
}
/*----end MENU---*/
.logo {
  margin-left: 30px;
  margin-top: 24px;
}
.programe {
    width: 70%;
}
.intro-text {
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  height: 42%;
  margin: auto;
  width: 95%;
}
.intro-text h1 {
  text-transform: uppercase;
  font-family: 'Quicksand', sans-serif;
  color: #333;
  font-weight: 300;
}
.intro-text h4 {
  font-weight: 300;
  font-style: italic;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 24px;
  display: inline-block;
  padding: 0 15px;
  background-color: #ff6f1b;
}
.intro-text p {
  color: #333333;
}
.intro-text:before {
  content: "";
  width: 250px;
  height: 350px;
  position: absolute;
  top: 25%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
}
/*--- 04. SCROLL DOWN ICON ---*/
#wrapper {
  display: table;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 24px;
  z-index: 1;
}
#wrapper-inner {
  display: table-cell;
  vertical-align: bottom;
  width: 100%;
  height: 100%;
}
#scroll-down {
  display: block;
  position: relative;
  text-align: center;
}
.arrow-down {
  display: block;
  margin: 0 auto;
  width: 10px;
  height: 38px;
}
#scroll-title {
  display: inline-block;
  padding: 0 12px;
  text-transform: uppercase;
  color: #333;
  font-family: 'Quicksand', sans-serif, Helvetica, Arial;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  background: #ff6f1b;
}
#scroll-down:before {
  -webkit-animation: elasticus 1.7s cubic-bezier(1, 0, 0, 1) infinite;
  /* Safari 4+ */
  /* Fx 5+ */
  /* Opera 12+ */
  animation: elasticus 1.7s cubic-bezier(1, 0, 0, 1) infinite;
  /* IE 10+, Fx 29+ */
  position: absolute;
  bottom: -21px;
  left: 50%;
  margin-left: -2px;
  width: 2px;
  height: 90px;
  background: #9fa0a2;
  content: ' ';
  z-index: -1;
}
@-webkit-keyframes elasticus {
  0% {
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
  }
  50% {
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50.1% {
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
  }
}
@keyframes elasticus {
  0% {
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
  }
  50% {
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50.1% {
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
  }
}
/*end scroll down*/
.parallax-window {
  position: relative !important;
  width: 100%;
  min-height: 100%;
  color: #fff;
  background: rgba(255, 255, 255, 0.5);
}
.parallax-mirror {
  z-index: 0!important;
}
header:before {
  content: "";
  z-index: -2;
  position: absolute;
  width: 100%;
  height: 100%;
}
/*--- 05. ABOUT SECTION ---*/
#about {
  padding: 72px 0 96px 0;
  background-color: #fff;
}
.position-img {
  position: relative;
  height: 100%;
}
.img-profile {
  position: absolute;
  z-index: 0;
  padding: 15px;
  border: 1px solid #DBDBDB;
}
.about-me-text {
  margin-top: 24px;
}
.about-me-text p {
  text-align: justify;
}
.personal-info-text {
  text-align: right;
}
.personal-info h4 {
  text-transform: uppercase;
  background: #ff6f1b;
  display: inline-block;
  padding: 5px 10px;
  margin-top: 10px;
  color: #333;
  font-size: 16px;
  letter-spacing: 9px;
}
.personal-info ul {
  margin-top: 24px;
  list-style-type: none;
}
.personal-info ul li {
  text-align: right;
  margin-top: 6px;
}
.personal-info ul li strong {
  text-transform: uppercase;
  padding-right: 5px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  color: #4a4a4a;
}
/*--- 06. SKILLBAR ---*/
.skill h4 {
  text-align: left;
  text-transform: uppercase;
  background: #ff6f1b;
  display: inline-block;
  padding: 5px 10px;
  margin-top: 10px;
  color: #333;
  font-size: 16px;
  letter-spacing: 9px;
}
.skillbar {
  margin-top: 24px;
}
.progress-bar {
  background-color: #ff6f1b;
  box-shadow: none;
  -webkit-transition: width 2s ease;
  transition: width 2s ease;
}
.progress {
  height: 6px;
  margin-top: 9px;
  margin-bottom: 15px;
  border-radius: 0;
  box-shadow: none;
  border: 1px solid #757575;
}
.progressText {
  font-size: 16px;
  font-weight: 500;
  font-family: 'Quicksand', sans-serif;
  color: #4a4a4a;
}
/*--- 07. HBBIES & INTERESTS ---*/
.hobbies_bg .content {
  padding-bottom: 96px;
  padding-top: 72px;
  position: relative;
}
.hobbies_bg {
  background: url("../images/hobbies.jpg") 50% 0 fixed;
  background-size: cover;
  position: relative !important;
  text-align: center;
}
.hobbies_bg h4 {
  color: #fff;
  margin-bottom: 72px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 10px;
}
.hobbies_bg .content .row .timer-section .fa {
  font-size: 52px;
}
.timer-section {
  padding: 0;
}
/*--- 08. SERVICES ---*/
#service {
  padding: 72px 0 96px 0;
  background: url("../images/rockywall.png");
  position: relative;
}
.tab-content p {
  background: #dedede;
  color: #4a4a4a;
  text-align: justify;
  padding: 5px 15px;
}
.tab-content h3 {
  padding-right: 15px;
  color: #333;
  margin-right: 15px;
}
.tab-content > .active {
  margin-top: 48px;
}
.nav-tabs > li > a {
  font-size: 26px;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  color: #757575;
  border-radius: 0;
  -webkit-transition: .2s;
  -moz-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}
.nav-tabs > li > a:hover,
.nav-tabs > li > a:focus {
  background-color: #ff6f1b;
  border-color: transparent;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #333;
  background-color: #ff6f1b!important;
  border: 1px solid #ff6f1b!important;
  border-bottom-color: transparent!important;
  cursor: default;
}
/*--- 09. FUN FACTS ---*/
.counter {
  background: url("../images/background_1.jpg") 50% 0 fixed;
  background-size: cover;
  position: relative !important;
  text-align: center;
}
.counter .content {
  padding-bottom: 96px;
  padding-top: 96px;
  position: relative;
}
.counter .content h4 {
  margin-bottom: 72px;
  color: #DBDBDB;
}
.timer {
  color: #ff6f1b;
  font-weight: 400;
  font-size: 26px;
}
.timer-section:after {
  position: absolute;
  content: "";
  display: block;
  width: 1px;
  height: 50px;
  background: #878787;
  top: 5px;
}
.separatorFix:after {
  display: none;
}
.timer-text {
  margin-top: 24px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 400;
  color: #fff;
  letter-spacing: 1px;
}
/*--- 10. PORTFOLIO SECTION ---*/
#portfolio {
  padding: 72px 0 96px 0;
  text-align: center;
  background: url("../images/rockywall.png");
  color: #fff;
}
.portfolio_filter {
  text-align: center;
}
.portfolio_filter ul {
  margin-bottom: 24px;
  text-align: center;
  color: #dedede;
}
.portfolio_filter ul li {
  font-weight: 400;
  padding-right: 20px;
  padding-left: 20px;
  display: inline-block;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 2px;
  color: #333;
}
.select-cat {
  color: #616161;
  background: #ff6f1b;
}
.portfolio_filter ul li:hover {
  color: #616161;
}
/* clear fix */
.grid:after {
  content: '';
  display: block;
  clear: both;
}
.grid-sizer,
.grid-item {
  width: 33.33333333%;
}
.grid-item {
  float: left;
  overflow: hidden;
}
.grid-item img {
  display: block;
  width: 100%;
}
.works {
  position: relative;
  float: left;
  overflow: hidden;
  width: 100%;
  background: #f77777;
}
figure {
  margin: 14px;
  position: relative;
  overflow: hidden;
}
.hover-img .image-holder-description {
  background: #ff6f1b;
  height: 50%;
  width: 0;
  top: 0;
  opacity: 1;
  position: absolute;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.hover-img .holder-left {
  background: #ff6f1b;
  height: 50%;
  bottom: 0;
  left: 100%;
  width: 100%;
  opacity: 1;
  position: absolute;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.hover-img:hover .image-holder-description {
  opacity: 0.7;
  width: 100%;
}
.hover-img:hover .holder-left {
  left: 0;
  opacity: 0.7;
}
.image-link i {
  color: #333333;
  opacity: 0;
  display: inline-block;
  font-size: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 5;
}
.image-link:hover i {
  opacity: 0.5;
}
.modal-box {
  max-width: 70%;
  background: #ff6f1b;
  position: relative!important;
  margin: 0 auto;
  left: 0!important;
}
.modal-box img {
  width: 100%;
  height: 100%;
}
.modal-box-content h4:before {
  left: -8px;
  bottom: 8px;
  content: "";
  width: 35px;
  height: 3px;
  background: #4a4a4a;
  position: absolute;
}
.modal-box-content {
  padding: 24px 15px;
}
.modal-box-content h4 {
  position: relative;
  padding-left: 35px;
  letter-spacing: 1px;
  margin-bottom: 16px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  font-family: 'Quicksand', sans-serif;
}
.modal-box-content p {
  color: #fff;
  padding-left: 35px;
}
.mfp-close {
  font-size: 40px!important;
  color: #ff6f1b !important;
}
button.mfp-close{
  background: rgba(0, 0, 0, 0.7) !important;
}
/*--- 11. SOCIAL LINKS ---*/
.counter_bg {
  background: url("../images/social.jpg") 50% 0 fixed;
  background-size: cover;
  position: relative !important;
  text-align: center;
}
.counter_bg h4 {
  color: #fff;
  margin-bottom: 12px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 10px;
}
.counter_bg p {
  color: #ff6f1b;
  margin-bottom: 72px;
  font-weight: 300;
}
.counter_bg .content {
  padding-bottom: 96px;
  padding-top: 72px;
  position: relative;
}
.social-text {
  margin-top: 24px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 400;
  color: #fff;
  letter-spacing: 1px;
}
.fa {
  font-size: 42px;
  color: #ff6f1b;
}
/*--- 12. RESUME ---*/
#resume {
  padding: 72px 0 96px 0;
  background-color: #fff;
}
ul {
  list-style-type: none;
}
.align-text {
  text-align: right;
}
.verticalText {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-writing-mode: tb-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: tb-rl;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #4a4a4a;
  padding: 10px 2px;
  background-color: #ff6f1b;
  margin-right: -11px;
  margin-top: 18px;
}
.resume-text {
  margin-top: 24px;
}
.resume-block li {
  margin-top: 24px;
}
.resume-block h5 {
  margin-bottom: 12px;
  color: #4a4a4a;
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
}
.resume-block:before {
  content: ' ';
  position: absolute;
  height: 100%;
  width: 1px;
  left: 150px;
  top: 0;
  background: #DBDBDB;
}
.title-text {
  font-family: 'Quicksand', sans-serif;
  font-weight: 300;
  padding-bottom: 3px;
  border-bottom: 2px solid #ff6f1b;
  display: inline-block;
  color: #4a4a4a;
  letter-spacing: 1px;
}
/*--- 13. TESTIMONIALS SECTION ---*/
.testimonials {
  padding: 72px 0;
  background: url("../images/testimonials_bg.jpg") 50% 0 fixed;
  background-position: center;
  background-size: cover;
  box-shadow: inset 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
}
.testimonials div .header-block {
  margin-bottom: 48px;
  color: #fff;
}
.carousel-control.left {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 100%);
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.0001)));
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 100%);
}
.carousel-control.right {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 100%);
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.0001)));
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 100%);
}
.carousel-indicators {
  position: relative;
  bottom: -14px;
}
.carousel-caption {
  position: static;
  padding-bottom: 0;
  padding-top: 0;
  text-shadow: none;
}
.carousel-caption h4 {
  margin-top: 24px;
}
.fill {
  width: 150px;
  margin: 0 auto;
  box-shadow: none;
  box-shadow: 0 0 0 3px #ff7777;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
}
.item {
  display: block;
  margin: 0 auto;
}
.item p {
  width: 50%;
  text-align: center;
  font-style: italic;
  font-weight: 300;
  margin: 0 auto;
}
/*--- 14. CONTACT FORM ---*/
#contact {
  background: url("../images/contact_bg.jpg");
  background-size: cover;
  padding: 72px 0 24px 0;
}
.well {
  min-height: 20px;
  padding: 5px 15px 0 15px;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 0;
}
.form-control {
  margin-bottom: 24px;
  display: block;
  width: 100%;
  height: 40px;
  padding: 6px 12px;
  font-size: 14px;
  font-style: italic;
  line-height: 1.42857143;
  color: #555 !important;
  background-color: transparent;
  background-image: none;
  border: none;
  border: 1px solid #757575;
  border-radius: 0 ;
  box-shadow: none;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.has-error .form-control {
  box-shadow: none;
}
.has-error .form-control:focus {
  box-shadow: none;
}
.form-control:focus {
  border-color: #cc6633;
  outline: 0;
  box-shadow: none;
}
.text-danger {
  margin-top: 24px;
  font-weight: 400;
  color: #cc6633;
  text-transform: uppercase;
}
.text-success {
  margin-top: 24px;
  color: #8a8a8a;
  font-weight: 400;
  text-transform: uppercase;
}
.contactBox {
  margin-bottom: 24px;
}
.contactBox h5 {
  color: #4a4a4a;
  text-transform: uppercase;
  font-weight: 500;
  font-family: 'Quicksand', sans-serif;
}
.contactBox .fa {
  text-align: right;
  font-size: 26px;
  vertical-align: middle;
  width: 22px;
  line-height: 24px;
  display: inline-block;
  margin-right: 15px;
}
.contactBox p {
  padding-left: 36px;
}
/*--- 15. FOOTER ---*/
.footerLeft {
  display: inline-block;
  color: #4a4a4a;
}
.footerRight {
  float: right;
  display: inline-block;
}
.footerRight a span {
  font-size: 24px;
  color: #4a4a4a;
}
.footerRight a span:hover {
  color: #616161;
}
.contactFooter {
  padding-top: 24px;
  margin-top: 96px;
  border-top: 1px solid #D4D4D4;
}
/*--- 16. MEDIA QUERIES FOR RESPONSIVE DESIGN ---*/
@media (max-height: 420px) {
  .mobile-overlay a {
    padding: 5px 0;
  }
  #wrapper-inner {
    display: none;
  }
}
@media (max-width: 1200px) {
  .resume-block:before {
    left: 146px;
  }
}
@media (min-width: 1440px) {
  .intro-text h1 {
    font-size: 35px;
  }
  .intro-text h4 {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .img-profile {
    position: absolute;
    width: 50%;
  }
  .large-text {
    text-align: left;
    margin-bottom: 24px;
  }
  .progress {
    margin-bottom: 14px;
  }
  .timer-section:after {
    left: 0;
  }
  .title-text {
    font-size: 16px;
    text-transform: uppercase;
  }
  .resume-block:before {
    left: 212px;
  }
  .employment-section {
    margin-top: 72px;
  }
  .well {
    margin-top: 48px;
  }
  .contact-left {
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  * {
    -webkit-padding-start: 0;
  }
  .header-block {
    margin-bottom: 72px;
    letter-spacing: 5px;
  }
  .logo {
    margin-left: 15px;
    margin-top: 19px;
    height: 33px;
  }
  .hamburger {
    right: 15px;
    top: 15px;
  }
  .icon-open {
    right: 15px;
    top: 15px;
  }
  .mobile-overlay {
    width: 100%;
  }
  .mobile-overlay_content {
    letter-spacing: 5px;
    padding: 24px 0 24px 60px;
  }
  .intro-text h1 {
    font-size: 110px;
  }
  .intro-text h4 {
    font-size: 16px;
    font-weight: 400;
  }
  .intro-text p {
    font-weight: 400;
    width: 95%;
  }
  .img-profile {
    position: relative;
    margin: 0 auto;
    width: 50%;
  }
  .large-text {
    margin-top: 48px;
    text-align: left;
  }
  .about-me-text p {
    margin-top: 24px;
  }
  .personal-info-text {
    text-align: left;
  }
  .personal-info ul li {
    text-align: left;
  }
  .personal-info ul li p {
    display: inline-block;
    margin-left: 15px;
  }
  .nav-tabs > li > a {
    font-size: 26px;
    padding: 10px;
  }
  .tab-content p {
    margin: 15px;
  }
  .tab-content h3 {
    margin-top: 0;
    margin-left: 15px;
  }
  .title-text {
    font-size: 26px;
  }
  .verticalText {
    -webkit-transform: none;
    transform: none;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    position: relative;
    padding: 2px 10px;
    display: inline-block;
  }
  .align-text {
    text-align: left;
  }
  .resume-text {
    margin-top: 0;
  }
  .resume-block {
    margin-top: 24px;
  }
  .resume-block h5 {
    margin-top: 14px;
  }
  .resume-block:before {
    content: none;
  }
  .title-text {
    margin-bottom: 24px;
  }
  .employment {
    margin-top: 48px;
  }
  .timer-section:after {
    display: none;
  }
  .timer-section {
    margin-top: 48px;
  }
  .separatorFix {
    margin-bottom: 24px;
    margin-top: 0;
  }
  figure {
    margin: 5px;
  }
  .carousel-indicators {
    bottom: -24px;
  }
  .contactFooter {
    margin-top: 72px;
  }
  .footerLeft {
    display: block;
    text-align: center;
  }
  .footerRight {
    text-align: center;
    display: block;
    float: none;
    margin-top: 24px;
  }
}
@media (max-width: 526px) {
  .intro-text h1 {
    font-size: 68px;
  }
  .img-profile {
    width: 85%;
  }
}
@media (max-height: 550px) {
  .intro-text h1 {
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 15px;
  }
}
