/* -------------------------------- 

Primary style

-------------------------------- */
*, *::after, *::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 96.5%;
}

body {
  font-size: 1.6rem;
 
  font-family: 'Titillium Web', sans-serif;
  color: #ffffff;
  background-color: #131d20;
}
body::before {
  /* never visible - this is used in jQuery to check the current MQ */
  content: 'mobile';
  display: none;
}
@media only screen and (min-width: 980px) {
  body::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'desktop';
  }
}

a {
  color: #000000;
  text-decoration: none;
}

/* -------------------------------- 

Main Components 

-------------------------------- */


#name-error, #email-error, #number-error {color: #FF4500}


@media only screen and (min-width: 980px) {
  .cd-section {
    height: 100vh;
  }
}
.cd-section h1 {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  font-size: 3.6rem;
  z-index: 99999;
       font-family: 'Kaushan Script', cursive;
}

.cd-section h2 {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  font-size: 2.6rem;
    color: #35464d;
      z-index: 99998;
}

@media only screen and (min-width: 768px) {
  .cd-section h1 {
    font-size: 3.2rem;
  }
}
@media only screen and (min-width: 980px) {
  .cd-section h1 {
    font-size: 4.2rem;
  }
}

.cd-block, .cd-half-block {
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.cd-block {
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center;
}
  .cd-section:first-of-type .cd-block {
  visibility: visible;
  height: 100vh;
  background-color: #77b9c9;
  background-image: url("../img/start.jpg");
  background-size: cover;
  background-position: center;
}

.cd-section:first-of-type .cd-block:after {
content: ""; // ::before and ::after both require content
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(120deg, #eaee44, #33d0ff);
    opacity: .85;
    position: absolute;
}

@media only screen and (min-width: 980px) {
  .cd-block {
    position: fixed;
    width: 100%;
    min-height: 100vh;
    top: 0;
    left: 0;
    height: 100vh;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.7);
    visibility: hidden;
      
  }
  .cd-section:first-of-type .cd-block {
    visibility: visible;
      border: 20px solid white;
  }
  .cd-block > * {
    visibility: visible;
  }
}

.cd-half-block {
  background: #ffffff;
  color: #263b40;
}

.cd-half-block:nth-of-type(1) {
  height: 60vh;
  background-color: #263b40;
  background-position: center center;
  background-repeat: no-repeat;
}

.cd-half-block:nth-of-type(2) {
  padding: 4em 10%;
    background-color: #8fD8D2
}

.cd-section:nth-of-type(3) .cd-half-block:nth-of-type(2) {
  padding: 4em 10%;
    background-color: #FEDCD2
}

.cd-section:nth-of-type(4) .cd-half-block:nth-of-type(2) {
  padding: 4em 10%;
    background-color: #57bc90
}

.cd-section:nth-of-type(5) .cd-half-block:nth-of-type(2) {
  padding: 4em 10%;
    background-color: #df744a
}

.cd-section:nth-of-type(6) .cd-half-block:nth-of-type(2) {
  padding: 4em 10%;
    background-color: #FEDCD2
}

.cd-section:nth-of-type(7) .cd-half-block:nth-of-type(2) {
  padding: 4em 10%;
    background-color: #29363B
}

.cd-half-block p {
  font-size: 1.8rem;
  line-height: 1.8;
}

.cd-section:nth-of-type(2) .cd-half-block:first-of-type {
  background-image: url("../img/me-img-06.jpg");
  background-size: cover;
}

.cd-section:nth-of-type(3) .cd-half-block:first-of-type {
  background-image: url("../img/me-img-05.jpg");
  background-size: cover;
}

.cd-section:nth-of-type(4) .cd-half-block:first-of-type {
  background-image: url("../img/me-img-01.jpg");
  background-size: cover;
}

.cd-section:nth-of-type(5) .cd-half-block:first-of-type {
  background-image: url("../img/me-img-02.jpg");
  background-size: cover;
}

.cd-section:nth-of-type(6) .cd-half-block:first-of-type {
  background-image: url("../img/me-img-03.jpg");
  background-size: cover;
}

.cd-section:nth-of-type(7) .cd-half-block:first-of-type {
  background-image: url("../img/me-img-04.jpg");
  background-size: cover;
}
.cd-section:nth-of-type(8) .cd-half-block:first-of-type {
    -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media only screen and (min-width: 980px) {
  .cd-half-block {
    height: 100vh !important;
    width: 50%;
    position: absolute;
    top: 0;
  }
  .cd-half-block p {
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
    padding: 0 30%;
    font-size: 2.4rem;
      display: flex;
  align-items: center;
  justify-content: center;
  }
    
    
  .cd-section:nth-of-type(even) .cd-half-block:first-of-type, .cd-section:nth-of-type(odd) .cd-half-block:nth-of-type(2) {
    left: 0;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  .cd-section:nth-of-type(odd) .cd-half-block:first-of-type, .cd-section:nth-of-type(even) .cd-half-block:nth-of-type(2) {
    right: 0;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.cd-vertical-nav {
  position: fixed;
  z-index: 1;
  right: 49%;
  bottom: 0%;
  top: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: none;
}
.cd-vertical-nav a {
  display: block;
  height: 40px;
  width: 40px;
  /* image replace */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: rgba(255,255,255,0.2) url(../img/cd-icon-arrow_white.svg) no-repeat center center;
  -webkit-transition: opacity 0.2s 0s, visibility 0.2s 0s;
  -moz-transition: opacity 0.2s 0s, visibility 0.2s 0s;
  transition: opacity 0.2s 0s, visibility 0.2s 0s;
  -webkit-box-shadow: 0 0 10px #fff;
-moz-box-shadow: 0 0 10px #fff;
-o-box-shadow: 0 0 10px #fff;
-ms-box-shadow: 0 0 10px #fff;
box-shadow: 0 0 30px rgba(0,0,0,0.5);
}
.cd-vertical-nav a.cd-prev {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  margin-bottom: 10px;
}
.cd-vertical-nav a.inactive {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s 0s, visibility 0s 0.2s;
  -moz-transition: opacity 0.2s 0s, visibility 0s 0.2s;
  transition: opacity 0.2s 0s, visibility 0s 0.2s;
}
@media only screen and (min-width: 980px) {
  .cd-vertical-nav {
    display: block;
  }
}


/* MODAL style */

.blocker {z-index: 9999!important}
.modal {
max-width: 500px;
width: 90%;
background: #fff;
padding: 15px 30px;
-webkit-border-radius: 0px!important;
-moz-border-radius: 0px!important;
-o-border-radius: 0px!important;
-ms-border-radius: 0px!important;
border-radius: 0px!important;
-webkit-box-shadow: 0 0 10px #000;
-moz-box-shadow: 0 0 10px #000;
-o-box-shadow: 0 0 10px #000;
-ms-box-shadow: 0 0 10px #000;
box-shadow: 0 0 10px #000;
text-align: left;}

.modal a.close-modal {
  top: -10px;
  right: -10px;
  width: 20px;
  height: 20px;
  background: none!important;
  border: none!important;
}

.modal a.close-me{
    position: absolute;
    top: -50px;
  right: -35px;
color: white;
}

.modal a.close-me:after{
  display: inline-block;
  content: "\00d7"; /* This will render the 'X' */
    font-size: 5rem;
}
/* ====================================
Navigation 
==================================== */

.overlay-navigation {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsla(0, 0%, 100%, 0.2);
  display: none;
  opacity: 0;
}

.overlay-navigation nav,
.overlay-navigation nav ul {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.overlay-navigation nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}


.overlay-navigation nav ul li {
  -webkit-flex-basis: 33.3333%;
  -ms-flex-preferred-size: 33.3333%;
  flex-basis: 33.3333%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  display: none;
}

.overlay-navigation nav li a {
  position: relative;
  top: 46%;
  color: #fff;
   font-family: 'Kaushan Script', cursive;
  text-decoration: none;
  display: block;
  text-align: center;
  font-size: 2.9rem;
  opacity: 0;
}

.overlay-navigation nav li a:before {
  content: '';
  width: 70px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 100;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

.overlay-navigation nav li a:after {
  content: attr(data-content);
  font-size: 1.7rem;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  opacity: 0;
  position: absolute;
  z-index: 100;
  color: #fff;
  display: block;
  margin-right: auto;
  margin-left: auto;
  left: 0;
  right: 0;
  bottom: -50px;
  text-transform: none;
  font-family: 'Titillium Web', sans-serif;
  font-style: italic;
  letter-spacing: 0;
}

.overlay-navigation nav li a:hover:before {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

.overlay-navigation nav li a:hover:after {
  -webkit-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
  opacity: 1;
}

.overlay-navigation nav li:nth-of-type(1) {
  background-color: #35464d;
}

.overlay-navigation nav li:nth-of-type(2) {
  background-color: #7AC143
}

.overlay-navigation nav li:nth-of-type(3) {
  background-color: #8fD8D2
}

.overlay-navigation nav li:nth-of-type(4) {
  background-color: #FDCEA9
}

.overlay-navigation nav li:nth-of-type(5) {
  background-color: #99B998
}


/* ====================================
Burger king
==================================== */

.open-overlay {
  position: fixed;
  right: 5rem;
  top: 3.2rem;
  z-index: 100;
  width: 34px;
  display: block;
  cursor: pointer;
}

.open-overlay span {
  display: block;
  height: 1px;
  background-color: #fff;
  cursor: pointer;
  margin-top: 6px;
}

.animate-top-bar {
  -webkit-animation: animate-top-bar .6s linear 1 both;
  animation: animate-top-bar .6s linear 1 both
}

.animate-bottom-bar {
  -webkit-animation: animate-bottom-bar .6s linear 1 both;
  animation: animate-bottom-bar .6s linear 1 both
}

.animate-middle-bar {
  -webkit-animation: animate-middle-bar .6s linear 1 both;
  animation: animate-middle-bar .6s linear 1 both
}

.animate-out-top-bar {
  -webkit-animation: animate-out-top-bar .6s linear 1 both;
  animation: animate-out-top-bar .6s linear 1 both
}

.animate-out-bottom-bar {
  -webkit-animation: animate-out-bottom-bar .6s linear 1 both;
  animation: animate-out-bottom-bar .6s linear 1 both
}

.animate-out-middle-bar {
  -webkit-animation: animate-out-middle-bar .6s linear 1 both;
  animation: animate-out-middle-bar .6s linear 1 both
}


/* ====================================
Animation keyframes
==================================== */

@keyframes animate-top-bar {
  0% {
    background-color: #fff;
  }
  50% {
    -webkit-transform: translateY(9px);
    transform: translateY(9px)
  }
  80% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    background-color: #fff
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background-color: rgba(0,0,0,0.6);
  }
}

@keyframes animate-bottom-bar {
  0% {
    background-color: #fff;
  }
  50% {
    -webkit-transform: translateY(-9px);
    transform: translateY(-9px)
  }
  80% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    background-color: #fff;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background-color: rgba(0,0,0,0.6);
  }
}

@keyframes animate-middle-bar {
  0% {
    background-color: #fff;
  }
  80% {
    background-color: #fff;
  }
  100% {
    background-color: rgba(0,0,0,0.6);
  }
}

@keyframes animate-out-top-bar {
  0% {
    background-color: rgba(0,0,0,0.6)
  }
  50% {
    -webkit-transform: translateY(9px);
    transform: translateY(9px)
  }
  80% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    background-color: rgba(0,0,0,0.6)
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background-color: #FFF;
  }
}

@keyframes animate-out-bottom-bar {
  0% {
    background-color: rgba(0,0,0,0.6)
  }
  50% {
    -webkit-transform: translateY(-9px);
    transform: translateY(-9px)
  }
  80% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    background-color: rgba(0,0,0,0.6);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background-color: #FFF;
  }
}

@keyframes animate-out-middle-bar {
  0% {
    background-color: rgba(0,0,0,0.6)
  }
  80% {
    background-color: rgba(0,0,0,0.6);
  }
  100% {
    background-color: #fff;
  }
}



@media (max-width: 640px) {
 .overlay-navigation nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
 .overlay-navigation nav ul li {
    height: 20%;
  }
 .overlay-navigation nav ul li a {
    font-size: 2.4rem;
  }
  .overlay-navigationnav li a:after {
    font-size: 0.6rem;
    bottom: -25px;
  }
  .overlay-navigationnav li a:hover:after {
    transform: translateY(0);
  }
  .open-overlay {
    right: 1rem;
      top: 1.8rem;
  }
    .open-overlay span {height: 5px;}
 .overlay-navigation nav li a:before {
    width: 25px;
  }
}





.contact100-form-btn {
    font-size: 2rem;
    color: #fff;
    line-height: 1.2;
    justify-content: center;
    align-items: center;
    padding: 10px 1.2em;
    margin: 5% 10px 0 10px;
    background: transparent;
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, .3);
    -moz-box-shadow: 0 2px 20px 0 rgba(0, 0, 0, .3);
    -webkit-box-shadow: 0 2px 20px 0 rgba(0, 0, 0, .3);
    -o-box-shadow: 0 2px 20px 0 rgba(0, 0, 0, .3);
    -ms-box-shadow: 0 2px 20px 0 rgba(0, 0, 0, .3);
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s;
    display: inline-block
}

.contact100-form-btn:hover {
    background: #29363B;
    box-shadow: 0 10px 30px 0 rgba(51, 51, 51, .5);
    -moz-box-shadow: 0 10px 30px 0 rgba(51, 51, 51, .5);
    -webkit-box-shadow: 0 10px 30px 0 rgba(51, 51, 51, .5);
    -o-box-shadow: 0 10px 30px 0 rgba(51, 51, 51, .5);
    -ms-box-shadow: 0 10px 30px 0 rgba(51, 51, 51, .5);
            color: #fff;
}


 @media (min-width: 1024px) {
.contact100-form-btn {
    font-size: 3rem;
    }
    

.social-modal-btn {
    font-size: 2rem;
    color: #fff;
    line-height: 1.2;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    margin: 6%;
    background: transparent;
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, .3);
    -moz-box-shadow: 0 2px 20px 0 rgba(0, 0, 0, .3);
    -webkit-box-shadow: 0 2px 20px 0 rgba(0, 0, 0, .3);
    -o-box-shadow: 0 2px 20px 0 rgba(0, 0, 0, .3);
    -ms-box-shadow: 0 2px 20px 0 rgba(0, 0, 0, .3);
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s
}

.social-modal-btn:hover {
    background: #29363B;
    box-shadow: 0 10px 30px 0 rgba(51, 51, 51, .5);
    -moz-box-shadow: 0 10px 30px 0 rgba(51, 51, 51, .5);
    -webkit-box-shadow: 0 10px 30px 0 rgba(51, 51, 51, .5);
    -o-box-shadow: 0 10px 30px 0 rgba(51, 51, 51, .5);
    -ms-box-shadow: 0 10px 30px 0 rgba(51, 51, 51, .5);
            color: #fff;
}


    
.whatsapp_btn:hover {
    background: #7AC143;
}

.insta_btn:hover {
    background: #1a9929;
}




input[type=text], input[type=email],  input[type=tel],input[type=number], textarea {
    border:none;
    border-bottom:1px solid #ccc;
    padding:8px 0 0 8px;
    margin:8px 0;
    font-size:1.2rem;
    color:#8f8f8f;
    width:100%;
    font-family: 'Titillium Web', sans-serif;
    background: #fefefe;
           -webkit-appearance: none;
}
input[type=submit] {
        font-size:1.8rem;
    border:none;
    padding:8px 25px;
        width:100%;
    margin:15px 0;
    color:#fff;
    background:#ff4b5a;
    cursor:pointer;
      font-family: 'Titillium Web', sans-serif;
    border-radius: 25px;
    line-height: 1.2;
-webkit-transition: all 0.4s;
-o-transition: all 0.4s;
-moz-transition: all 0.4s;
transition: all 0.4s;
box-shadow: 0 10px 30px 0px rgba(255, 75, 90, 0.5);
-moz-box-shadow: 0 10px 30px 0px rgba(255, 75, 90, 0.5);
-webkit-box-shadow: 0 10px 30px 0px rgba(255, 75, 90, 0.5);
-o-box-shadow: 0 10px 30px 0px rgba(255, 75, 90, 0.5);
-ms-box-shadow: 0 10px 30px 0px rgba(255, 75, 90, 0.5);
       -webkit-appearance: none;
}
input[type=submit]:hover {
    opacity:0.9;
}

.output_message {color:#57bc90;}
.output_message h1 {font-size: 3rem;text-align: center;padding: 3rem 0;font-family: 'Kaushan Script', cursive;}
.output_message h2 {color:#ff4b5a; font-size: 3rem;text-align: center;padding: 3rem 0;}

#whatsappform {background:#7AC143}
#whatsappform h1 {color:#fff;font-size: 3rem;text-align: center;padding: 3rem 0 0 0 ;font-family: 'Kaushan Script', cursive;}
#whatsappform h2 {color:#fff; font-size: 2rem;text-align: center;padding: 3rem 0;}
#whatsappform p {color:#29363B; font-size: 1.4rem;text-align: center;padding: 1rem 0 3rem 0;}
#whatsappform input{background:white;}
#whatsappform input[type=submit] {background:#29363B}


#socialform {background:#35464d}
#socialform h1 {color:#fff;font-size: 3rem;text-align: center;padding: 3rem 0 0 0 ;font-family: 'Kaushan Script', cursive;}
#socialform h2 {color:#fff; font-size: 2rem;text-align: center;padding: 3rem 0;}
#socialform p {color:#7AC143; font-size: 1.4rem;text-align: center;padding: 1rem 0 3rem 0;}
#socialform input{background:white;}
#socialform input[type=submit] {background:#29363B}