body {
  background: #ffffff;
  font-family: "Candara", "Trebuchet MS", "Futura Bk BT", "Arial", "Helvetica", sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

html,
body {
  /* this will solve/FIX the RIGHT-SIDE WHITESPACE PROBLEM */
  width: 100%;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

::selection {
  color: #fff;
  background: #17bed2;
  text-shadow: none;
}

::-webkit-selection {
  color: #fff;
  background: #17bed2;
  text-shadow: none;
}

img {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -ms-user-drag: none;
}

.container-fluid {
  max-width: 100%;
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0;
}

.section-btn {
  margin: 32px 0 0 0;
  padding: 0;
}

.section-btn a,
.section-btn button {
  line-height: 45px;
  -webkit-perspective: 1000px;
  perspective: 1000px;
  color: #ffffff;
  font-weight: normal;
}

.section-btn a span,
.section-btn button span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 0.5px;
  padding: 0 25px;
  background: #60ba02;
  border-radius: 1px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.csstransforms3d .section-btn a span::before,
.csstransforms3d .section-btn button span::before {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  border-radius: 1px;
  color: #ffffff;
  padding: 0 25px;
  content: attr(data-hover);
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
}

.section-btn a:hover span,
.section-btn a:focus span,
.section-btn button:hover span,
.section-btn button:focus span {
  -webkit-transform: rotateX(90deg) translateY(-22px);
  transform: rotateX(90deg) translateY(-22px);
}

.csstransforms3d .section-btn a:hover span::before,
.csstransforms3d .section-btn a:focus span::before,

.csstransforms3d .section-btn button:hover span::before,
.csstransforms3d .section-btn button:hover span::before {
  background: #000000;
}

.section-btn a span,
.section-btn button span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 0.5px;
  padding: 0 25px;
  background: #60ba02;
  border-radius: 1px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

/* GENERAL */
html {
  -webkit-font-smoothing: antialiased;
}

a {
  color: #4dc47d;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #535353;
  outline: none;
  text-decoration: none;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: #252525;
}

.parallax-section {
  background-attachment: fixed !important;
  background-size: cover !important;
}

/* 1. PRE LOADER  */
#preloader-m7 {
  background-color: #262626;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.pulse {
  left: 46%;
  position: relative;
  top: 44%;
}

.pulse:before,
.pulse:after {
  content: '';
  width: 80px;
  height: 80px;
  border-radius: 500px;
  position: absolute;
}

.pulse:before {
  -webkit-animation: pulse-outer 0.8s ease-in infinite;
  animation: pulse-outer 0.8s ease-in infinite;
}

.pulse:after {
  -webkit-animation: pulse-inner 0.8s linear infinite;
  animation: pulse-inner 0.8s linear infinite;
}

.pulse:before,
.pulse:after {
  border: 5px solid #09a503;
}

@-webkit-keyframes pulse-outer {
  0% {
    opacity: 1;
    filter: alpha(opacity=100);
  }

  50% {
    opacity: 0.5;
    filter: alpha(opacity=50);
  }

  100% {
    opacity: 0;
    filter: alpha(opacity=0);
  }
}

@keyframes pulse-outer {
  0% {
    opacity: 1;
    filter: alpha(opacity=100);
  }

  50% {
    opacity: 0.5;
    filter: alpha(opacity=50);
  }

  100% {
    opacity: 0;
    filter: alpha(opacity=0);
  }
}

@-webkit-keyframes pulse-inner {
  0% {
    -webkit-transform: scale(0);
    opacity: 0;
    filter: alpha(opacity=0);
  }

  100% {
    -webkit-transform: scale(1);
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

@keyframes pulse-inner {
  0% {
    transform: scale(0);
    opacity: 0;
    filter: alpha(opacity=0);
  }

  100% {
    transform: scale(1);
    opacity: 1;
    filter: alpha(opacity=100);
  }
}


/******************************************************************************  4. HOME  *****************************************************************************/
#home {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100vh;
  position: relative;
  padding-top: 30px;
}

#home h1 {
  color: #ffffff;
  font-size: 48px;
  font-weight: bold;
  line-height: 50px;
}

#home h2 {
  color: #0095a9;
  font-size: 42px;
  font-weight: bold;
  line-height: 44px;
}

#home p {
  color: rgba(250, 250, 250, 0.7);
  font-size: 20px;
  font-weight: lighter;
  line-height: 26px;
  letter-spacing: 0.5px;
}

#home .home-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
}

#home video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  transform: translateX(-50%) translateY(-50%);
  background-size: cover;
  transition: 1s opacity;
}

.section-btn a span,
.section-btn button span {
  font-size: 19px;
  font-weight: normal;
  letter-spacing: 0.5px;
}


/**************************************************************** 17. Contact Form 1 Middle CTA(Small) ***************************************************************/
#contact-form-m5 .form-control,
#contact-form-m5 .btn.submit_btn {
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
}

#contact-form-m5 {
  background: #a58d5f none repeat scroll 0 0;
  background: linear-gradient(to right, #a58d5f 92%, #9cd919 8%);
  padding: 27px 32px;
}

#contact-form-m5 h3 {
  margin: 20px 0px;
  color: #3f3524;
}

.first-heading-m5 {
  font-size: 40px;
  font-weight: lighter;
  line-height: 42px;
  margin: 0;
  padding: 15px 0px 0px 0px;
}

#contact-form-m5 .second-heading-m5 {
  font-size: 40px;
  font-weight: bold;
  line-height: 42px;
  margin: -20px 0px 0px 0px;
}

#contact-form-m5 form.form-inline {
  padding-right: 0px;
  padding-top: 0px;
}

#contact-form-m5 .form-inline .form-control {
  border: 2px solid transparent;
  border-radius: 10px;
  font-size: 15px;
  height: 45px;
  margin: 8px;
  padding: 10px 20px;
  width: 250px;
  box-shadow: none;
}

#contact-form-m5 .form-inline textarea.form-control {
  width: 388px;
  resize: none;
}

#contact-form-m5 .form-control:focus {
  border: 2px solid #9cd919;
  box-shadow: 0px 0px 5px 1px #9cd919;
}

#contact-form-m5 .btn.submit_btn {
  background: #9cd919 none repeat scroll 0 0;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  height: 45px;
  width: 120px;
  border-radius: 10px;
  margin: 6px 8px 6px 0;
  box-shadow: 3px 3px 3px #473b27;
}

.form-control::-webkit-input-placeholder {
  color: #adadad;
}

#contact-form-m5 .btn.submit_btn:hover {
  background: #52a62d none repeat scroll 0 0;
}

#contact-form-m5 #success-1 {
  margin: 8px 8px 0px 13px;
  text-align: left;
}

/*********************************************************************************************************************************************************************/



/**************************************************************** 20. Main Contact Form with Address *****************************************************************/
#main-contact-form-m4 {
  color: #282828;
  padding: 150px 0 150px;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
}

.main-container {
  padding: 0px 0px;
}

.center {
  text-align: center;
}

.anchor-send a {
  -webkit-transition: all .3s;
  transition: all .3s
}

.uppercase {
  text-transform: uppercase;
}

.h-30 {
  height: 30px
}

.h-10 {
  height: 10px
}

.mouse {
  position: absolute;
  width: 22px;
  height: 42px;
  bottom: 40px;
  left: 50%;
  margin-left: -12px;
  border-radius: 15px;
  border: 2px solid #888;
  -webkit-animation: intro 1s;
  animation: intro 1s;
}

.scroll {
  display: block;
  width: 3px;
  height: 3px;
  margin: 6px auto;
  border-radius: 4px;
  background: #888;
  -webkit-animation: finger 2s infinite;
  animation: finger 2s infinite;
}

@-webkit-keyframes intro {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes intro {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes finger {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
}

@keyframes finger {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

.details-text i {
  margin-right: 10px;
}

.textarea-contact-m4 {
  height: 200px;
  width: 100%;
  border: solid 1px rgba(0, 0, 0, .1);
  position: relative;
}

.textarea-contact-m4 textarea {
  height: 100%;
  width: 100%;
  border: 0;
  padding: 20px;
  background-color: transparent;
  float: left;
  z-index: 2;
  font-size: 15px;
  color: #9a9a9a;
  resize: none;
}

.textarea-contact-m4>span {
  position: absolute;
  top: 20px;
  left: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 15px;
  text-transform: uppercase;
  color: #818181
    /*#393939*/
  ;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  z-index: 1;
}

.input-contact-m4 {
  height: 40px;
  width: 100%;
  border: solid 1px rgba(0, 0, 0, .1);
  position: relative;
  margin-bottom: 30px;
}

.input-contact-m4 input[type="text"] {
  height: 100%;
  width: 100%;
  border: 0;
  padding: 0 20px;
  float: left;
  position: relative;
  background-color: transparent;
  z-index: 2;
  font-size: 15px;
  color: #6e6e6e;
}

.input-contact-m4>span {
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 15px;
  text-transform: uppercase;
  color: #6a6a6a;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  z-index: 1;
}

.input-contact-m4>span.active,
.textarea-contact-m4>span.active {
  color: #09af03;
  font-size: 11px;
  top: 0px;
  left: 5px;
  background-color: #fff;
  padding: 5px
}

input:focus,
textarea:focus {
  outline: none;
}

#main-contact-form-m4 .main-container-b h2 {
  color: #494949;
  font-size: 42px;
  font-weight: bold;
  line-height: 44px;
  letter-spacing: 0.5px;
}

#main-contact-form-m4 h3 {
  color: #323232;
  font-size: 34px;
  font-weight: lighter;
  line-height: 36px;
  letter-spacing: 0.5px;
}

#main-contact-form-m4-h3span {
  font-size: 20px;
  font-weight: lighter;
  line-height: 29px;
  letter-spacing: 0.5px;
}

#main-contact-form-m4 .main-container .main-container-b .main-container-b-p {
  color: #60ba02;
  font-size: 20px;
}

#main-contact-form-m4 p {
  font-size: 18px;
  font-weight: lighter;
  letter-spacing: 0.5px;
}

.contact-info-m4 {
  margin-top: 20px;
}

#main-contact-form-m4 .contact-info-m4 p {
  font-size: 16px;
  font-weight: bold;
}

.contact-info-m4 svg {
  height: 20px;
  width: 20px;
  display: inline-block;
  text-align: center;
  margin-right: 10px;
  fill: #60ba02;
}

.contact-info-m4 p {
  display: inline-block;
  margin-right: 20px;
}

.btn-box {
  background: #60ba02;
  padding: 10px 50px;
  border-radius: 0;
  color: #fff;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 20px;
  font-weight: bold;
}

.btn-box:hover,
.btn-box:focus {
  background: transparent;
  color: #60ba02;
  border: 1px solid #60ba02;
}

.social-ul-m4 {
  list-style: none;
  display: inline-block;
  padding-left: 0;
}

.social-ul-m4 li {
  margin: 0 10px;
  float: left;
}

.social-ul-m4 li a svg {
  width: 26px;
  height: 26px;
  fill: #555;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.social-ul-m4 li a svg:hover {
  fill: #888;
}

/*********************************************************************************************************************************************************************/

/*************************************************************************** 21. Footer ******************************************************************************/
footer {
  padding: 30px 0;
  text-align: center;
  background: #f5f5f5;
}

.copyright {
  color: #424242;
  font-size: 20px;
  font-weight: lighter;
  margin-bottom: 0;
}

footer img {
  margin: 0 auto;
}

/*********************************************************************************************************************************************************************/