
/*COLOR PALLETTE*/

:root {
  --main-logo-color: #02733B; /* Green */
  --secondary-logo-color: #4AB749; /* bright green */
  --hero-right-gradient-color1: #B21400; /* red */
  --hero-right-gradient-color2: #FF1D00; /* dark red */
  --black: #272727;
}


/* Basic Styles
*********************************************/

body {overflow: hidden;}

a { color: var(--main-logo-color); }

a:hover { text-decoration: none; color: var(--secondary-logo-color); }

h1 { font-family: 'Oswald', sans-serif; color: #4d4d4d;}

h2 { font-family: 'Oswald', sans-serif;}

p { font-family: 'Heebo', sans-serif;
    line-height: 40px;
    color: var(--black);
}

.bullets ul { 
  padding-left:20px;
 list-style:none; 
}

.bullets li { 
  margin-bottom:10px; 
      font-family: 'Heebo', sans-serif;
    line-height: 40px;
    color: var(--black);
    font-size: 1.2rem;
    font-weight: 400;
    list-style: none;
}

.bullets li:before {    
    font-family: 'FontAwesome';
    content: '\f0a9';
    margin:0 12px 4px -25px;
    color: var(--main-logo-color);
}


.white-header{
    width: 20%;
    height: 253px;
    position: absolute;
    z-index: 1;
    background: white;
    -webkit-clip-path: polygon(0 0, 0 100%, 99% 0);
    clip-path: polygon(0 0, 0 100%, 99% 0);
}

.white-text { color: white; }

.margin-top-3vh { margin-top: 3vh; margin-bottom: 3vh }

.padding-3vh { padding-top: 5vh; padding-bottom: 5vh }

.one-hundred-vh { height: 100vh }


/* cursor follow
*********************************************/

.follower {
    width: 35px;
    height: 35px;
    border: white 3px solid;
    border-radius: 40px;
    transition-duration: 250ms;
    transition-timing-function: ease-out;
    position: absolute;
    transform: translateX(-50%) translateY(-50%);
    z-index: 25;
    overflow: hidden;
    pointer-events:none;
}


.stop-follower {
    width: 0px;
    height: 0px;
    border: white 0px solid;
    border-radius: 40px;
    cursor: pointer;
}

/* Button
*********************************************/

.btn {
    border: none;
    display: block;
    text-align: center;
    cursor: pointer;
    text-transform: uppercase;
    outline: none;
    overflow: hidden;
    position: relative;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    background-color: var(--black);
    padding: 17px 60px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.20);
    font-family: 'Do Hyeon', sans-serif;
    letter-spacing: 2px;

}


.btn span {
  position: relative;
  z-index: 1;
}

.btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 490%;
  width: 140%;
   background-image: linear-gradient(-225deg, var(--main-logo-color) 0%, var(--secondary-logo-color) 100%);
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
  transform: translateX(-98%) translateY(-25%) rotate(45deg);
}

.btn:hover:after {
  -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
  transform: translateX(-9%) translateY(-25%) rotate(45deg);
}

.link {
  font-size: 20px;
  margin-top: 30px;
}

.link a {
  color: #000;
  font-size: 25px;
}

/* NAV
*******************************/

.logo {
    width: 113px;
    position: absolute;
    z-index: 25;
    top: 18px;
    left: 30px;
    transition: left 900ms;
    -webkit-transition: left 900ms;
}

.logo-scroll {
    z-index: 25;
    left: 5px;
}

/*SVG LOGO COLORS*/

.logo0{fill:#02733B;}
.logo1{fill:#1e7e34; stroke: #1e7e34; stroke-width:1px;}
.logo2{fill:#4AB749;}
.logo3{fill:#096032;}
.logo4{fill:#669E70;}
.logo5{fill:#1e7e34 !important;}



#textArea {transition: opacity 330ms; opacity: 1; animation: appear 3s 3s forwards;}

@keyframes appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.disapear {display: none !important}

.whiteCircles {
  fill: none;
  stroke: white;
  stroke-width:14;
  stroke-dasharray: 1000;
  animation: dash 3s forwards;
}

.whiteCircles2 {
  fill: none;
  stroke: white;
  stroke-width:14;
  stroke-dasharray: 1000;
  animation: dash 3s 1s forwards;
}

.whiteCircles-service2 {
  fill: none;
  stroke: #85D6F9  ;
  stroke-width:14;
  stroke-dasharray: 1000;
  animation: dash 3s 1s forwards;
}

.whiteCircles-service {
  fill: none;
  stroke: #85D6F9  ;
  stroke-width:14;
  stroke-dasharray: 1000;
  animation: dash 3s 1s forwards;
}


@keyframes dash {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: 1000;
  }
}

.nav-effect {
    width: 0%;
    height: 35px;
    background: #669E70;
    display: block;
    position: absolute;
    right: 0px;
    opacity: 1;
    z-index: -1;
    -webkit-transition: width 1s;
    transition: width 1s;
}



.effect:hover >.nav-effect  {
    width: 20%;
}

.nav-container {
  position: fixed;
  background: transparent;
  width: 600px;
  height: 600px;
  right: -120px;
  top: 100px;
  opacity: 0;
  transition: opacity 500ms, right 500ms;

}


ul#navbar  {
    text-align: right;
    margin-right: 35px;
    font-size: 25px;
    margin-top: 25px;
    list-style: none;

}

#navbar li a  {
    line-height: 55px;
    font-family: 'Oswald', sans-serif;
    text-decoration: none;
    color: black;
}

.nav-container-open {
  opacity: 1;
  right: 45px;
  z-index: 1000;
}

/*HAMBURGER STYLES*/

.wrapper-menu {
    width: 32px;
    height: 33px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    -webkit-transition: top 330ms, right 330ms, transform 330ms ease-out;
    transition: top 330ms;
    position: fixed;
    right: 40px;
    top: 30px;
    z-index: 50;
}

.wrapper-menu-scroll {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: transform 330ms ease-out;
    position: fixed;
    top: 25px;
    z-index: 50;
    right: 30px;
}

.wrapper-menu.open {
  -webkit-transform: rotate(-45deg);
}

.line-menu {
  background-color: white;
  border-radius: 5px;
  width: 100%;
  height: 6px;
  background: var(--black);
  transition: background-color 330ms;
}

/*.line-menu.open {
  background: black;
}*/

.line-menu.half {
  width: 50%;
}

.line-menu.start {
  -webkit-transition: -webkit-transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57), background-color 330ms;
  -webkit-transform-origin: right;
}

.open .line-menu.start {
  -webkit-transform: rotate(-90deg) translateX(3px);
  /*background-color: black;*/
}

.line-menu.end {
  align-self: flex-end;
  -webkit-transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57), background-color 330ms;
  -webkit-transform-origin: left;

}

.open .line-menu.end {
   -webkit-transform: rotate(-90deg) translateX(-3px); background-color: black;
}

/*.open .line-menu {
  background-color: black;
}*/


/* fade list in
*******************************/

.line-height{
  line-height: 30px;
}

svg#svgex1 {
    margin-top: 50px;
}

.section-1-container {
    margin-top: 50px;
}


.clip-svg {
  clip-path: url(#myClip);
}


/* Main container
*********************************************/

/* This is our main container that acts as the clipping mask for the navigation menu */

.main {
    background: white;
    height: 97vh;
    position: relative;
    width: 97%;
    top: 1.5vh;
    left: 1.5%;
    clip-path: polygon(75% 0, 100% 0, 100% 61%, 100% 100%, 0 100%, 0 0);
    -webkit-clip-path: polygon(75% 0, 100% 0, 100% 61%, 100% 100%, 0 100%, 0 0);
    /* animation: menuClose 500ms forwards; */
    transition: clip-path 400ms;
    -webkit-transition: -webkit-clip-path 400ms;
    overflow-x: hidden;
    overflow-y: scroll;
}

/* When the user scrolls down the clipping mask changes to create a sticky header navigation */

.main-scroll {
  clip-path: polygon(75% 10%, 100% 10%, 100% 61%, 100% 100%, 0 100%, 0% 10%);
  -webkit-clip-path:  polygon(75% 10%, 100% 10%, 100% 61%, 100% 100%, 0 100%, 0% 10%);
}

/* When the navigation menu is open the clipping path changes for the main container */

.menu-open {
     -webkit-clip-path: polygon(69% 10%, 100% 130%, 100% 61%, 100% 100%, 0 100%, 0% 10%) !important;
      clip-path: polygon(69% 10%, 100% 130%, 100% 61%, 100% 100%, 0 100%, 0% 10%) !important;
}


/* Homepage hero section
*********************************************/

.hero-bkgrd { background-image: none;}


.andle-div {
  background-image: linear-gradient(to top, var(--hero-right-gradient-color1) 0%, var(--hero-right-gradient-color2) 30%);
  clip-path: polygon(49% 0, 100% 0, 100% 100%, 0 100%, 0 76%);
  -webkit-clip-path: polygon(49% 0, 100% 0, 100% 100%, 0 100%, 0 76%);
  width: 100%;
  height: 100vh;
  /*background-image: linear-gradient(to top, #6a85b6 0%, #bac8e0 100%);*/
  position: absolute;
  right: 0px;
  top: 0px;
}

.right-hero {
    display: table-cell;
    vertical-align: middle;
    height: 650px;
    max-width: 520px;
}

.right-hero h1 {
    font-family: 'Oswald', sans-serif;
    color: white;
    text-shadow: 2px 2px 2px black;
    font-size: 3em;
    line-height: 53px;
    margin-bottom: 22px;
}

.right-hero p {
  font-size: 1.1em;
  line-height: 30px;
 }

 .list-icon {
  margin-right: 15px;
  color: var(--main-logo-color)
}

/* HERO ANIMATION */

/* Jetpack character colors */

.smile {fill: #C18761}
.st0{fill:#EE957A;}
.st1{fill: var(--secondary-logo-color);} /*darker version ov main color - right jetpack strap */
.st2{fill:#32292F;}
.st3{fill:#161A1E;}
.st4{fill:#FFFFFF;}
.st5{fill:#323A44;}
.st6{fill:#F0B67F;}
.st7{fill: var(--main-logo-color);} /*MAIN COLOR - jetpack, goggles */
.st8{fill:#17132d;}
.st9{fill:#5bb1ff;}
.st10{fill:#FDE888;}
.st11{fill:#F1BA77;}
.st12{fill:#E58C65;}
.st13{fill:#DBEEFD;}
.st14{fill:#93CDF8;}
.st15{opacity:0.65;fill:#F4A9B7;}


/* Animations
************************************/

.shapeshifter {
  animation-duration: 2s;
  width: 40%;
  background-repeat: no-repeat;
  animation-iteration-count: infinite;
  z-index: 3;
  position: absolute;
  top: 65px;
  left: 0px;

}

.streak-container {
    height: 100vh;
    position: absolute;
    overflow: hidden;
    width: 100%;
}

.streak {
    width: 5px;
    height: 150px;
    background: white;
    border-radius: 15px;
    position: absolute;
    left: 235px;
    animation: streak 1s infinite;
    top: 100px;
    z-index: 1;
}

.streak1 {
    width: 5px;
    height: 150px;
    left: 317px;
    top: 100px;
    opacity: 0.8;
}

.streak2 {
    width: 5px;
    height: 75px;
    left: 160px;
    top: 200px;
    opacity: 0.4;
}

.streak3 {
    width: 5px;
    height: 185px;
    left: 370px;
    top: 170px;
    opacity: 0.6;
}

.streak4 {
    width: 5px;
    height: 300px;
    left: 204px;
    top: 250px;
    opacity: 0.9;
}

.conts {
    line-height: 24px;

}

@keyframes streak {
  0% {
    transform: translateY(-2rem) translateX(2rem) rotate(47deg);
  }
   50% {
        transform: translateY(0rem) translateX(0rem) rotate(47deg);
  }
  100% {
        transform: translateY(-2rem) translateX(2rem) rotate(47deg);
  }
}

/* CLOUDS */

.circle {
  background: white;
  border-radius: 100%;
  z-index: 2;
}

.circle1 {
    width: 300px;
    height: 300px;
    position: absolute;
    left: -155px;
    bottom: 285px;
    -webkit-animation:grow 2s infinite;
}

.circle2 {
    width: 450px;
    height: 450px;
    position: absolute;
    left: -135px;
    bottom: 45px;
    -webkit-animation:grow 4s infinite;
}


.circle3 {
    width: 500px;
    height: 500px;
    position: absolute;
    left: -95px;
    bottom: 49px;
    -webkit-animation:grow 3s infinite;
}

.circle4 {
    width: 600px;
    height: 600px;
    position: absolute;
    left: -295px;
    bottom: 34px;
    -webkit-animation:grow 2s infinite;
}

.circle5 {
    width: 600px;
    height: 600px;
    position: absolute;
    left: -249px;
    bottom: -136px;
    -webkit-animation: grow 2s infinite;
}


.circle6 {
    width: 600px;
    height: 600px;
    position: absolute;
    left: -135px;
    bottom: -136px;
    -webkit-animation:grow 4s infinite;
}

.circle7 {
    width: 550px;
    height: 550px;
    position: absolute;
    left: -305px;
    bottom: -184px;
    -webkit-animation: grow 4s infinite;
}

.circle8 {
    width: 600px;
    height: 600px;
    position: absolute;
    left: -49px;
    bottom: -256px;
    -webkit-animation: grow 2s infinite;
}


.circle9 {
    width: 600px;
    height: 600px;
    position: absolute;
    left: -145px;
    bottom: -259px;
    -webkit-animation:grow 4s infinite;
}

.circle10 {
    width: 550px;
    height: 550px;
    position: absolute;
    left: -201px;
    bottom: -284px;
    -webkit-animation: grow 4s infinite;
}

@-webkit-keyframes grow {
  0% {
    -webkit-transform: scale( 0.3 );
    -moz-transform: scale( 0.3 );
    -o-transform: scale(0.3 );
    -ms-transform: scale( 0.3 );
    transform: scale( 0.3 );
  }

  50% {
    -webkit-transform: scale( 0.5 );
    -moz-transform: scale( 0.5 );
    -o-transform: scale( 0.5 );
    -ms-transform: scale( 0.5 );
    transform: scale( 0.5 );
  }

  100% {
    -webkit-transform: scale( 0.3 );
    -moz-transform: scale( 0.3 );
    -o-transform: scale( 0.3 );
    -ms-transform: scale( 0.3 );
    transform: scale( 0.3 );
  }
}


/* Flying icons */

.hero-white-icons {
  width: 37%;
  position: absolute;
  left: 214px;
  top: 73px;
  transform: rotate(18deg);
  z-index: 2;
}

.white-icons0{fill:#FFFFFF; opacity: 0}

.white-icon-1 { animation: icons 4s  infinite ease-in-out }

.white-icon-2 { animation: icons 4s infinite ease-in-out }

.white-icon-3 { animation: icons2 5s  infinite ease-in-out }

.white-icon-4 { animation: icons2 5s infinite ease-in-out }

.white-icon-5 { animation: icons3 5s infinite ease-in-out }

.white-icon-6 { animation: icons3 5s infinite ease-in-out }

.white-icon-7 { animation: icons3 5s infinite ease-in-out }

@keyframes icons {
    0% {opacity: 0; transform: translate(5em,-5em);}
    20% {opacity: 0.4; }
    40% {opacity: 0; transform: translate(-20em,20em); }
    60% {opacity: 0; transform: translate(-20em,20em); }
    80% {opacity: 0; transform: translate(-20em,20em); }
    100% {opacity: 0; transform: translate(-20em,20em); }

}

@keyframes icons2 {
    0% {opacity: 0; transform: translate(10em,-10em);}
    20% {opacity: 0; transform: translate(10em,-10em);}
    40% {opacity: 0.4; }
    60% {opacity: 0; transform: translate(-10em,10em); }
    80% {opacity: 0; transform: translate(-10em,10em); }
    100% {opacity: 0; transform: translate(-10em,10em); }

}

@keyframes icons3 {
    0% {opacity: 0; transform: translate(15em,-15em);}
    20% {opacity: 0; transform: translate(15em,-15em);}
    40% {opacity: 0; transform: translate(15em,-15em);}
    60% {opacity: 0.4; }
    80% {opacity: 0; transform: translate(-10em,10em); }
    100% {opacity: 0; transform: translate(-10em,10em); }

}

/*section one homepage*/

  .passion0{fill:#E7B785;}
  .passion1{fill:#E49980;}
  .passion2{fill:#331923;}
  .passion3{fill:#FF1D00;}
  .passion4{fill:#B21400;}
  .passion5{clip-path:url(#SVGID_2_);fill:#FF1D00;}

  .passion6{fill:#FF1D00;}
  .passion7{fill:#B21400;}


footer p { margin: 0px }

/**************************************************************
***************************************************************
******************  IPAD LANDSCAPE  ***************************
***************************************************************
***************************************************************/

@media only screen and (max-width: 1024px) {

.follower {
  display: none;
}



.logo {
    width: 113px;
    position: absolute;
    z-index: 25;
    top: 20px;
    left: 30px;
}

.wrapper-menu {

    top: 25px;
    right: 36px;

}

.wrapper-menu-scroll {

    right: 36px;
    top: 25px;

}

.menu-open {
    -webkit-clip-path: polygon(69% 10%, 100% 130%, 100% 61%, 100% 100%, 0 100%, 0% 10%) !important;
    clip-path: polygon(50% 10%, 100% 130%, 100% 61%, 100% 100%, 0 100%, 0% 10%) !important;
}

.hero-white-icons {
    width: 37%;
    position: absolute;
    left: 160px;
    top: 136px;
    transform: rotate(16deg);
    z-index: 2;
}

.flex-mobile { display: flex; }

.list-icon {
    margin-right: 15px;
    color: var(--main-logo-color);
    margin-top: 10px;
}
.mobile-break { display: block; }



}

/**************************************************************
***************************************************************
******************       IPHONE 6   ***************************
***************************************************************
***************************************************************/

@media only screen and (max-width: 768px) {

/* Basic Styles
*********************************************/

h1 {
    font-size: 36px;
    text-align: center;
}

p {
  font-family: 'Roboto Condensed', sans-serif;
  line-height: 28px;
  font-size: 15px;

  }

    .circle {
    z-index: 0;
}

.text-center {text-align: left !important;}

  .main {
  clip-path: polygon(75% 10%, 100% 10%, 100% 61%, 100% 100%, 0 100%, 0% 10%);
  -webkit-clip-path:  polygon(75% 10%, 100% 10%, 100% 61%, 100% 100%, 0 100%, 0% 10%);
}

.white-header { display: none }

#textArea { display: none !important; visibility: hidden; }

.mb-5, .my-5 {
    margin-bottom: 2em !important;
}

  .andle-div {
    display: none;
}

.hero-bkgrd {background-image: linear-gradient(to top, var(--hero-right-gradient-color1) 0%, var(--hero-right-gradient-color2) 30%);}

.whiteCircles { stroke: white }

.h2 { font-size: 20px !important; }

.right-hero h1 {
    font-family: 'Do Hyeon', sans-serif;
    color: white;
    text-shadow: 2px 2px 2px black;
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 15px;
    margin-top: 100px;
    text-align: center;
}

.right-hero p {
    font-size: 16px;
    line-height: 25px;
}


.lead {
  font-size: 1.2rem;
  font-weight: 400;
  /* text-align: center; */
}

.list-icon {
    margin-right: 15px;
    color: var(--main-logo-color);
    margin-top: 5px;
}

h1.text-center {
    font-size: 27px;
}


/* NAV
*******************************/

.logo {
    width: 100px;
    /* height: 30px; */
    position: absolute;
    z-index: 25;
    top: 15px;
    left: 0;
}

.logo-scroll {
    width: 100px;
    /* height: 30px; */
    position: absolute;
    z-index: 25;
    top: 15px;
    left: 0px;
}



.nav-container {
    position: fixed;
    background: white;
    width: 600px;
    height: 600px;
    right: -120px;
    top: 100px;
    opacity: 0;
    transition: opacity 500ms, right 500ms;
    -webkit-transition: opacity 500ms, right 500ms;


}

.nav-container-open { opacity: 1; right: 45px; }

.menu-open {
    -webkit-clip-path: polygon(72% 0, 84% 34%, 100% 83%, 100% 100%, 0 100%, 0 0) !important;
    clip-path: polygon(-4% 0, 13% 32%, 72% 144%, 100% 100%, 0 100%, 0 0) !important;
}

.logo5 {display: none;}
.logo6 {
    display: none;
}


ul {
 /*   text-align: right;*/
    margin-right: 35px;
    font-size: 25px;
    margin-top: 25px;
    list-style: none;

}

li {
    line-height: 55px;
    font-family: 'Roboto Condensed', sans-serif;
}

/* Hamburger
*******************************/
.wrapper-menu {
    width: 32px;
    height: 33px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    -webkit-transition: transform 330ms ease-out;
    position: fixed;
    right: 25px;
    top: 25px;
    z-index: 50;
}

.wrapper-menu-scroll {

    top: 20px;

}


.wrapper-menu.open {
  -webkit-transform: rotate(-45deg);
}

.line-menu {
  background-color: #222;
  border-radius: 5px;
  width: 100%;
  height: 6px;
}

.line-menu.half {
  width: 50%;
}

.line-menu.start {
  -webkit-transition: -webkit-transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  -webkit-transform-origin: right;
}

.open .line-menu.start {
  -webkit-transform: rotate(-90deg) translateX(3px);
}

.line-menu.end {
  align-self: flex-end;
  -webkit-transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  -webkit-transform-origin: left;
}

.open .line-menu.end {
   -webkit-transform: rotate(-90deg) translateX(-3px);
}

.shapeshifter {
    width: 65% !important;
    top: 446px !important;
    left: 48px !important;
}

.hero-white-icons {
    width: 117%;
    position: absolute;
    left: 200px;
    top: 156px;
    transform: rotate(16deg);
    z-index: 2;
}

.right-hero {
    display: block;
    vertical-align: middle;
    height: 650px;
    max-width: 450px;
    padding-top: 25px;
}

.streak-container {
    height: 100vh;
    position: absolute;
    overflow: hidden;
    width: 100%;
}

.streak1 {
    width: 5px;
    height: 150px;
    left: 267px;
    top: 400px;
    opacity: 0.8;
}

.streak2 {
    width: 5px;
    height: 75px;
    left: 110px;
    top: 500px;
    opacity: 0.4;
}

.streak3 {
    width: 5px;
    height: 185px;
    left: 320px;
    top: 470px;
    opacity: 0.6;
}

.streak4 {
    width: 5px;
    height: 300px;
    left: 154px;
    top: 550px;
    opacity: 0.9;
}

.circle1 {
    width: 300px;
    height: 300px;
    position: absolute;
    left: -155px;
    top: 345px;
    -webkit-animation: grow 2s infinite;
}

.circle2 {
    width: 450px;
    height: 450px;
    position: absolute;
    left: -135px;
    top: 415px;
    -webkit-animation: grow 4s infinite;
}


.circle3 {
    width: 500px;
    height: 500px;
    position: absolute;
    left: -155px;
    top: 437px;
    -webkit-animation: grow 3s infinite;
    display: none;
}

.circle4 {
    width: 600px;
    height: 600px;
    position: absolute;
    left: -295px;
    top: 424px;
    -webkit-animation: grow 2s infinite;
    display: none;
}

.circle5 {
    width: 600px;
    height: 600px;
    position: absolute;
    left: -295px;
    top: 409px;
    -webkit-animation: grow 2s infinite;
    display: none;
}


.circle6 {
    width: 550px;
    height: 550px;
    position: absolute;
    left: -280px;
    top: 287px;
    -webkit-animation: grow 4s infinite;
}

.circle10 {
    display: none
}


.menu-open {clip-path: polygon(20% 0, 46% 50%, 61% 80%, 71% 100%, 0 100%, 0 0);}

svg#svgex1 {
    margin-top: 48px;
}

.section-1-container {
    margin-top: 50px;
}


.btn {

    margin: auto;
}

.mobile-p-t {  padding-top: 110px !important;}

.fdb-block {

    padding: 1.5rem 0;

}

}

/**************************************************************
***************************************************************
******************       IPHONE 5   ***************************
***************************************************************
***************************************************************/


@media only screen and (max-width: 320px) {

  .mobile-break { display: none }

  .circle {
    display: none
}

.right-hero h1 {
    font-family: 'Do Hyeon', sans-serif;
    color: white;
    text-shadow: 2px 2px 2px black;
    font-size: 1.9em;
    line-height: 42px;
    margin-bottom: 15px;
    margin-top: 45px;
    text-align: center;
}

.mb-5, .my-5 {
    margin-bottom: 2rem!important;
}

.shapeshifter {
    animation-duration: 2s;
    -webkit-animation-timing-function: steps(18);
    width: 85% !important;
    /* height: 46%; */
    background-repeat: no-repeat;
    animation-iteration-count: infinite;
    z-index: 3;
    position: absolute;
    top: 369px !important;
    left: 16px !important;
}

.hero-white-icons {
    width: 100%;
    position: absolute;
    left: 130px;
    top: 436px;
    transform: rotate(16deg);
    z-index: 2;
}

.nav-container-open {

    right: 0px ;
}

ul#navbar {
    margin-top: 0px;
}

.logo-scroll {
    width: 87px;
    /* height: 30px; */
    position: absolute;
    z-index: 25;
    top: 10px;
    left: -9px;
}

.logo {
    width: 92px;
    /* height: 30px; */
    position: absolute;
    z-index: 25;
    top: 10px;
    left: 0px;
}


}


.blog-sidebar-wrap {
  padding: 30px;
  background: #fff;
  box-shadow: 0px 0px 10px 0 rgba(0, 0, 0, 0.1);
}

.single-blog-area {
  margin-bottom: 30px;
}

.blog-inner {
  margin-top: 30px;
}
.blog-inner .meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.blog-inner li {
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  text-transform: capitalize;
  margin-bottom: 5px;
}
.blog-inner li::after {
  content: "-";
  margin: 0 10px;
}
.blog-inner li:last-child::after {
  display: none;
}

.blog-contend {
  margin-top: 20px;
}
.blog-contend h3 {
  font-weight: 600;
}
.blog-contend .blog-btn {
  display: inline-block;
  padding: 5px 15px;
}

.blog-date-categori {
  margin-bottom: 10px;
}
.blog-date-categori ul li {
  display: inline-block;
}
.blog-date-categori ul li a {
  font-size: 14px;
  margin-right: 10px;
  font-weight: 500;
}
.blog-date-categori ul li a i {
  font-size: 14px;
  margin-right: 5px;
}

.search-post {
  position: relative;
  margin-top: 20px;
}
.search-post input {
  border: 1px solid #dddddd;
  font-size: 14px;
  height: 40px;
  padding: 10px 50px 10px 10px;
  position: relative;
  width: 100%;
}
.search-post .btn-search {
  border: medium none;
  font-size: 16px;
  padding: 6px 14px;
  position: absolute;
  right: 0;
  top: 0;
  background: #ddd;
}
.search-post .btn-search:hover {
  background: #F4B04D;
  color: #ffffff;
}

.social-icons {
  float: right;
  margin-top: 5px;
}
.social-icons li {
  display: inline-block;
  margin-left: 10px;
}

.blog-image-slider .slick-arrow {
  background: #dddddd none repeat scroll 0 0;
  border: 1px solid #dddddd;
  font-size: 16px;
  height: 40px;
  position: absolute;
  top: 50%;
  width: 40px;
  z-index: 9;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.blog-image-slider .slick-arrow:hover {
  background: #F4B04D;
  color: #ffffff;
  border-color: #F4B04D;
}
.blog-image-slider .slick-next {
  right: 0;
}

.post-info {
  margin-top: 20px;
  margin-bottom: 60px;

}
.post-info .blockquote-inner {
  border-left: 5px solid #F4B04D;
  background: #fafafa;
  font-size: 15px;
  font-style: italic;
  margin: 30px 0;
  padding: 20px 10px;
}
.post-info .post-commet {
  border-bottom: 1px solid #e7e4dd;
  border-top: 1px solid #e7e4dd;
  font-size: 15px;
  margin: 60px 0 30px;
  padding: 15px 0;
  text-align: left;
  text-transform: uppercase;
}
.post-info .post-commet .social-icons {
  margin-top: 1px;
  font-size: 16px;
}

.comment-form-comment .comment-notes {
  width: 100%;
  padding: 10px;
  border: 1px solid #999;
  height: 140px;
  font-size: 15px;
  color: #666;
}
.comment-form-comment label {
  display: block;
}
.comment-form-comment label span {
  color: #F4B04D;
}

.comment-form-author, .comment-form-email, .comment-form-url {
  float: left;
  padding: 0 10px;
  width: 33.3333%;
}
@media only screen and (max-width: 479px) {
  .comment-form-author, .comment-form-email, .comment-form-url {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .comment-form-author, .comment-form-email, .comment-form-url {
    width: 100%;
  }
}

.comment-input {
  margin: 0 -10px;
  overflow: hidden;
}
.comment-input label {
  display: block;
}
.comment-input input {
  width: 100%;
  padding: 10px;
  border: 1px solid #999;
  height: 40px;
  font-size: 14px;
  color: #666;
}

.comment-form-submit .comment-submit {
  background: #F4B04D;
  color: #ffffff;
  border: none;
  padding: 8px 15px;
  margin-top: 20px;
}
.comment-form-submit .comment-submit:hover {
  background: #000000;
}

.blog-wrap-col-3 .blog-contend h3 {
  font-size: 18px;
}
.blog-wrap-col-3 .blog-contend .blog-date-categori {
  margin-bottom: 10px;
}
.blog-wrap-col-3 .blog-contend .blog-date-categori ul li {
  display: inline-block;
}
.blog-wrap-col-3 .blog-contend .blog-date-categori ul li a {
  font-size: 14px;
  margin-right: 10px;
  font-weight: 400;
}
.blog-wrap-col-3 .blog-contend .blog-date-categori ul li a i {
  font-size: 14px;
  margin-right: 5px;
}
.blog-wrap-col-3 .blog-btn {
  display: inline-block;
  padding: 5px 15px;
}

.pro_review {
  display: flex;
}
.pro_review.ans {
  margin-bottom: 50px;
  margin-left: 50px;
  margin-top: 50px;
}
@media only screen and (max-width: 479px) {
  .pro_review.ans {
    margin-bottom: 30px;
    margin-left: 20px;
    margin-top: 30px;
  }
}

.review_thumb {
  margin-right: 20px;
  min-width: 8%;
}
@media only screen and (max-width: 767px) {
  .review_thumb {
    min-width: 25%;
  }
}

.review_info h4 {
  font-weight: 700;
  font-family: "Lato", sans-serif;
}

.rating_send a {
  font-size: 12px;
  border: 1px solid #333;
  display: block;
  float: right;
  font-size: 14px;
  margin-top: -30px;
  padding: 2px 10px;
  color: #000;
}

.review_date {
  margin-top: 5px;
}

.review_details p {
  margin-top: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-sidebar-wrap {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-sidebar-wrap {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 479px) {
  .blog-sidebar-wrap {
    margin-top: 60px;
  }
}

.blog-sidebar .title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
}
.blog-sidebar ul li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
  display: block;
}
.blog-sidebar ul li:last-child {
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom: none;
}
.blog-sidebar ul li a {
  font-size: 14px;
  display: block;
}
.blog-sidebar ul li a span {
  float: right;
}

.sidbar-blog-inner {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}
.sidbar-blog-inner .sidbar-blog-image {
  padding-right: 15px;
}
.sidbar-blog-inner .sidbar-blog-image img {
  width: 150px;
}
.sidbar-blog-inner .sidbar-blog-content {
  position: relative;
  width: 100%;
}
.sidbar-blog-inner .sidbar-blog-content h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
  font-family: "Lato", sans-serif;
}

.sidebar-tag > a {
  border: 1px solid #333;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  margin: 10px 10px 0 0;
  padding: 4px 18px;
  border-radius: 30px;
}
.sidebar-tag > a:hover {
  background: #F4B04D;
  color: #ffffff;
  border: 1px solid #F4B04D;
}


@media (min-width: 992px) {
.col-lg-8 {
    max-width: 100% !important;
}
}
