/* Banner */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Muli:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i&subset=latin-ext,vietnamese');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}

::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}

::-webkit-scrollbar
{
    width: 6px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb
{
    background-color: #000000;
}



/* Navbar section */

.navTrigger {
  display: none;
}

.nav {
  width: 100%;
  height: 65px;
  position: fixed;
  line-height: 65px;
  text-align: center;
  
  
}

.nav div.logo {
  float: left;
  width: auto;
  height: auto;
  padding-left: 3rem;
}

.nav div.logo a {
  text-decoration: none;
  color: #fff;
  font-size: 0.9rem;
}

.nav div.logo a:hover {
  color: #00E676;
}

.nav div.main_list {
  height: 65px;
  float: right;
}

.nav div.main_list ul {
  width: 100%;
  height: 65px;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav div.main_list ul li {
  width: auto;
  height: 65px;
  padding: 0;
  padding-right: 3rem;
}

.nav div.main_list ul li a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  line-height: 65px;
  font-size: 2.4rem;
  
}

.nav div.main_list ul li a:hover {
  color: #00E676;
}

.nav {
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}



/* Media qurey section */

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .containerNav {
      margin: 0;
  }
}

@media screen and (max-width:768px) {
  .navTrigger {
      display: block;
  }
  .nav div.logo {
      margin-left: 15px;
  }
  .nav div.main_list {
      width: 100%;
      height: 0;
      overflow: hidden;
  }
  .nav div.show_list {
      height: auto;
      display: none;
  }
  .nav div.main_list ul {
      flex-direction: column;
      width: 100%;
      height: 100vh;
      right: 0;
      left: 0;
      bottom: 0;
      background-color: #111;
      /*same background color of navbar*/
      background-position: center top;
  }
  .nav div.main_list ul li {
      width: 100%;
      text-align: right;
  }
  .nav div.main_list ul li a {
      text-align: center;
      width: 100%;
      font-size: 3rem;
      padding: 20px;
  }
  .nav div.media_button {
      display: block;
  }
}


/* Animation */
/* Inspiration taken from Dicson https://codemyui.com/simple-hamburger-menu-x-mark-animation/ */

.navTrigger {
  cursor: pointer;
  width: 30px;
  height: 25px;
  margin: auto;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
}

.navTrigger i {
  background-color: #fff;
  border-radius: 2px;
  content: '';
  display: block;
  width: 100%;
  height: 4px;
}

.navTrigger i:nth-child(1) {
  -webkit-animation: outT 0.8s backwards;
  animation: outT 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.navTrigger i:nth-child(2) {
  margin: 5px 0;
  -webkit-animation: outM 0.8s backwards;
  animation: outM 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.navTrigger i:nth-child(3) {
  -webkit-animation: outBtm 0.8s backwards;
  animation: outBtm 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.navTrigger.active i:nth-child(1) {
  -webkit-animation: inT 0.8s forwards;
  animation: inT 0.8s forwards;
}

.navTrigger.active i:nth-child(2) {
  -webkit-animation: inM 0.8s forwards;
  animation: inM 0.8s forwards;
}

.navTrigger.active i:nth-child(3) {
  -webkit-animation: inBtm 0.8s forwards;
  animation: inBtm 0.8s forwards;
}

@-webkit-keyframes inM {
  50% {
      -webkit-transform: rotate(0deg);
  }
  100% {
      -webkit-transform: rotate(45deg);
  }
}

@keyframes inM {
  50% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(45deg);
  }
}

@-webkit-keyframes outM {
  50% {
      -webkit-transform: rotate(0deg);
  }
  100% {
      -webkit-transform: rotate(45deg);
  }
}

@keyframes outM {
  50% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(45deg);
  }
}

@-webkit-keyframes inT {
  0% {
      -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
      -webkit-transform: translateY(9px) rotate(0deg);
  }
  100% {
      -webkit-transform: translateY(9px) rotate(135deg);
  }
}

@keyframes inT {
  0% {
      transform: translateY(0px) rotate(0deg);
  }
  50% {
      transform: translateY(9px) rotate(0deg);
  }
  100% {
      transform: translateY(9px) rotate(135deg);
  }
}

@-webkit-keyframes outT {
  0% {
      -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
      -webkit-transform: translateY(9px) rotate(0deg);
  }
  100% {
      -webkit-transform: translateY(9px) rotate(135deg);
  }
}

@keyframes outT {
  0% {
      transform: translateY(0px) rotate(0deg);
  }
  50% {
      transform: translateY(9px) rotate(0deg);
  }
  100% {
      transform: translateY(9px) rotate(135deg);
  }
}

@-webkit-keyframes inBtm {
  0% {
      -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
      -webkit-transform: translateY(-9px) rotate(0deg);
  }
  100% {
      -webkit-transform: translateY(-9px) rotate(135deg);
  }
}

@keyframes inBtm {
  0% {
      transform: translateY(0px) rotate(0deg);
  }
  50% {
      transform: translateY(-9px) rotate(0deg);
  }
  100% {
      transform: translateY(-9px) rotate(135deg);
  }
}

@-webkit-keyframes outBtm {
  0% {
      -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
      -webkit-transform: translateY(-9px) rotate(0deg);
  }
  100% {
      -webkit-transform: translateY(-9px) rotate(135deg);
  }
}

@keyframes outBtm {
  0% {
      transform: translateY(0px) rotate(0deg);
  }
  50% {
      transform: translateY(-9px) rotate(0deg);
  }
  100% {
      transform: translateY(-9px) rotate(135deg);
  }
}

.affix {
  padding: 0;
  background-color: #111;
  
}






.myH2 {
text-align:center;
font-size: 4rem;
}
.myP {
text-align: justify;
padding-left:15%;
padding-right:15%;
font-size: 20px;
}
@media all and (max-width:700px){
.myP {
  padding:2%;
}
}







.banner{
    position: relative;
    width: 100%;
    height: 120vh;
    background: url(back.jpg);
    background-size: cover;
    background-position: bottom;
    display: flex;
    justify-content: center;
    align-items: center;

}

.banner #text{
    position: relative;
    font-size: 5em;
    color: #fff;
    text-align: center;
    background-color: #000;
    opacity: 65%;
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
    padding-left: 20px;
    padding-right: 20px;
}

@media only screen and (max-width: 600px) {
    .banner{
        height: 50vh;
    }
    .banner #text{
        font-size: 1.1em;
        color: #fff;
        padding:5px;
    }
  }

.banner .clouds{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.banner .clouds img{
    position: absolute;
    bottom: 0;
    max-width: 100%;
    animation: animate calc(3s * var(--i)) linear infinite;
}

@keyframes animate{
    0%{
        opacity: 0;
        transform: scale(1);

    }
    25%,75%{
        opacity: 1;

    }
    100%{
        opacity: 0;
        transform: scale(3);
    }
}

#banner-section{
    position: relative;
    padding: 75px 100px;
}

#banner-section h2{
    position: relative;
    font-size: 2.5em;
    margin-bottom: 20px;
}

@media only screen and (max-width: 600px) {
  #banner-section h2{
    
    font-size: 1.5em;
    
   }
}

@media only screen and (max-width: 600px) {
  #banner-section p{
    
    font-size: 0.7em;
    
   }
}



/* Please ❤ this if you like it! */


/* ======================================== * 
		        BEST VIEWED FULLSCREEN
   https://codepen.io/ig_design/full/GPVXVx
 * ======================================== */


::selection {
   background-color: #000;
   color: #fff;
 }
 ::-moz-selection {
   background-color: #000;
   color: #fff;
 }
 a:hover{
   text-decoration: none;
 }
 /* #Cursor
 ================================================== */
 
 .cursor,
 .cursor2,
 .cursor3{
   position: fixed;
   border-radius: 50%;	
   transform: translateX(-50%) translateY(-50%);
   pointer-events: none;
   left: -100px;
   top: 50%
 }
 .cursor{
   background-color: #fff;
   height: 0;
   width: 0;
   z-index: 99999;
 }
 .cursor2,.cursor3{
   height: 36px;
   width: 36px;
   z-index:99998;
   -webkit-transition:all 0.3s ease-out;
   transition:all 0.3s ease-out
 }
 .cursor2.hover,
 .cursor3.hover{
   -webkit-transform:scale(2) translateX(-25%) translateY(-25%);
   transform:scale(2) translateX(-25%) translateY(-25%);
   border:none
 }
 .cursor2{
   border: 2px solid #fff;
   box-shadow: 0 0 22px rgba(255, 255, 255, 0.6);
 }
 .cursor2.hover{
   background: rgba(255,255,255,.1);
   box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
 }
 @media screen and (max-width: 1200px){
   .cursor,.cursor2,.cursor3{
     display: none
   }
 }
 
 .shadow-title{
   position: fixed;
   
   margin-top: 30px;
   left: 20px;
   width: 100%;
   height: 300%;
   text-align: left;
   font-family: 'Muli', sans-serif;
   -webkit-writing-mode: vertical-lr;
   writing-mode: vertical-lr;
   font-size: 18vw;
   line-height: 1;
   color: rgba(200,200,200,.1);
   background: linear-gradient(90deg, rgba(200,200,200,0), rgba(200,200,200,0.35));
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   font-weight: 900;
   z-index: 1;
 }
 
 .section-parallax{
	position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  z-index: 2;
}
 .section {
   position: relative;
   width: 100%;
   display: block;
 }
 .full-height {
   height: 100vh;
 }
 .section.z-bigger {
   z-index: 100;
 }
 .section.z-bigger-2 {
   z-index: 200;
 }
 .section-title-wrap{
   position: absolute;
   top: 50%;
   left: 0;
   width: 100%;
   transform: translateY(-50%);
   z-index: 3;
 }
 .section-title-wrap p{
   letter-spacing: 2px;
   font-size: 22px;
   font-weight: 700;
   padding: 0;
   color: #6f598f;
 }
 .section-title-wrap h1{
   margin: 0;
   padding: 0;
   font-size: 5vw;
   letter-spacing: 8px;
   font-weight: 900;
   color: #fff;
   line-height: 1;
   text-transform: uppercase;
 }
 .padding-top-bottom {
   padding-top: 100px;
   padding-bottom: 100px;
 }
 .over-hide{
   overflow: hidden;
 }
 .background-dark {
   background-color: #101010;
 }
 .project-link-wrap{
   position: relative;
   display: block;
   width: 100%;
   text-align: center;
   margin: 0 auto;
   cursor: pointer;
 }
 .project-link-wrap p{
   font-size: 100px;
   line-height: 80px;
   color: #c4c3ca;
   font-weight: 900;
   text-align: center;
   margin: 0 auto;
   cursor: pointer;
   opacity: 0.35;
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
 }
 .project-link-wrap:hover p{
   opacity: 0.15;
 }
 
 @media only screen and (max-width: 600px) {
   .project-link-wrap p{
    font-size: 50px;
   }
 }

 /* Case Study Showcase
 ================================================== */

.z-bigger{
    background-color: #3d3d3d;
    z-index: 9999999;
}
 
 .case-study-wrapper {
   position: absolute;
   top: 50%;
   left: 50%;
   z-index: 10;
   width: auto;
   margin: 0;
   padding: 8px 15px;
   -webkit-transform: translate(-50%, -50%);
   transform: translate(-50%, -50%);
   list-style: none;
   background-color: rgba(31,32,41,.8);
   border-radius: 10px;
   box-shadow: 0 0 30px rgba(0,0,0,.8);
 }
 .case-study-wrapper .case-study-name {
   margin: 5px;
   display: inline-block;
 }
 .case-study-wrapper .case-study-name a {
   position: relative;
   list-style: none;
   margin: 0 auto;
   display: block;
   text-align: center;
   padding: 0;
   font-size: 14px;
   font-weight: 800;
   line-height: 1;
   letter-spacing: 2px;
   color: #8e8d9a;
   opacity: 0.5;
   text-decoration: none;
   text-transform: uppercase;
   -webkit-transition: all 300ms linear;
   transition: all 300ms linear; 
 }	
 .case-study-wrapper .case-study-name a:hover {
   text-decoration: none;
 }	
 .case-study-wrapper .case-study-name.active a {
   opacity: 1;
   color: #fff;
 }	
 .case-study-images {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   margin:0;
   z-index:2;
 }	
 .case-study-images li {
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
   overflow: hidden;
   list-style:none;
   -webkit-transition: all 300ms linear;
   transition: all 300ms linear; 
 }	
 .case-study-images li .img-hero-background{
   position: absolute;
   width: calc(100% - 80px);
   max-width: 950px;
   -webkit-background-size: cover;
   -moz-background-size: cover;
   -o-background-size: cover;
   background-size: cover;
   background-position:center center;
   background-repeat:no-repeat;
   top: 50%;
   left: 50%;
   overflow: hidden;
   list-style:none;
   opacity: 0;
   border-radius: 20px;
   box-shadow: 0 0 50px rgba(0,0,0,.6);
   -webkit-transform: translate(-50%, -50%);
   transform: translate(-50%, -50%);
   -webkit-transition: all 300ms linear;
   transition: all 300ms linear; 
 }
 .case-study-images li .img-hero-background img{
   width: 100%;
   height: auto;
   display: block;
 }
 .case-study-images li.show .img-hero-background {
   opacity: 1;
 } 
 .case-study-images li .case-study-title{
   position: absolute;
   top: 0;
   height: 100%;
   text-align: center;
   left: 30px;
   display: block;
   opacity: 0;
   z-index: 19;
   letter-spacing: 1px;
   font-size: 14px;
   -webkit-writing-mode: vertical-lr;
   writing-mode: vertical-lr;
   font-weight: 400;
   line-height: 16px;
   color: #fff; 
   font-style: italic;
   -webkit-transform: translateX(-100%);
   transform: translateX(-100%);
   -webkit-transition: all 300ms linear;
   transition: all 300ms linear; 
 }
 .case-study-images li.show .case-study-title {
   opacity: 1;
   -webkit-transform: translateX(0);
   transform: translateX(0);
 } 
 .case-study-images li .hero-number-back{
   position: absolute;
   bottom: 0;
   left: 50%;
   -webkit-transform: translateX(-50%);
   transform: translateX(-50%);
   display: block;
   list-style:none;
   opacity: 0;
   font-size: 100px;
   font-weight: 900;
   line-height: 1;
   color: rgba(255,255,255,.2);
   z-index: 5;
   -webkit-transition: all 300ms linear;
   transition: all 300ms linear; 
 } 
 .case-study-images li .hero-number{
   position: absolute;
   bottom: 40px;
   left: 50%;
   width: 40px;
   margin-left: -70px;
   display: block;
   letter-spacing: 2px;
   text-align: center;
   list-style:none;
   opacity: 0;
   font-size: 13px;
   font-weight: 300;
   line-height: 1;
   color: #fff;
   z-index: 6;
   -webkit-transform: translateY(100%);
   transform: translateY(100%);
   -webkit-transition: all 300ms linear;
   transition: all 300ms linear; 
 } 
 .case-study-images li .hero-number-fixed{
   position: absolute;
   bottom: 40px;
   left: 50%;
   margin-left: 30px;
   width: 40px;
   text-align: center;
   display: block;
   letter-spacing: 2px;
   list-style:none;
   font-size: 13px;
   font-weight: 300;
   line-height: 1;
   color: #fff;
   z-index: 6;
 }
 .case-study-images li .hero-number-fixed:before{
   position: absolute;
   content: '';
   top: 50%;
   left: -60px;
   width: 60px;
   height: 1px;
   z-index: 1;
   background-color: rgba(255,255,255,.4);
 }
 .case-study-images li.show .hero-number {
   opacity: 1;
   -webkit-transform: translateY(0);
   transform: translateY(0);
 } 
 .case-study-images li.show .hero-number-back {
   opacity: 1;
 } 
 
 /* #back to top arrow
 ================================================== */
 
 .scroll-to-top{
   position: fixed;
   bottom: 30px;
   right: 30px;
   opacity: 0;
   visibility: hidden;
   width: 10px;
   height: 40px;
   z-index: 999999999999999999999999999999999;
   background-repeat: no-repeat;
   background-position: top center;
   background-size: 10px 40px;
   cursor: pointer;
   background-image: url('http://www.ivang-design.com/svg-load/parallax/arrow-up.png');
   transform: translateY(-15px);
   -webkit-transition: all 250ms linear;
   transition: all 250ms linear; 
 }
 .scroll-to-top:hover{
   bottom: 32px;
 }
 .scroll-to-top.active-arrow{
   opacity: 1;
   visibility: visible;
   transform: translateY(0);
 }
 
 /* #Media
 ================================================== */
 
 @media (max-width: 1200px) { 
   .scroll-to-top{
     right: 13px;
   } 
   .case-study-images li .case-study-title{
     left: 13px;
   }
 }
 
 @media (max-width: 991px) { 
   .case-study-images li .hero-number-back{
     font-size: 26vw;
   } 
 }
 
 @media (max-width: 767px) {	
   .case-study-wrapper {
     background-color: rgba(31,32,41,.95);
     box-shadow: 0 0 10px rgba(0,0,0,.8);
   }
   .case-study-wrapper .case-study-name a {
     font-size: 11px;
     letter-spacing: 1px;
     text-align: center;
     margin: 5px;
   }
   .case-study-wrapper .case-study-name {
     margin: 0 auto;
     text-align: center;
   }
   .case-study-images li .hero-number-back{
     font-size: 32vw;
   } 
 }
 
 /* #Link to page
 ================================================== */
 
 /*.link-to-portfolio {*/
 /*    position: fixed;*/
 /*    top: 30px;*/
 /*    right: 30px;*/
 /*    z-index: 20;*/
 /*    cursor: pointer;*/
 /*    width: 40px;*/
 /*    height: 40px;*/
 /*    text-align: center;*/
 /*    border-radius: 3px;*/
 /*    background-position: center center;*/
 /*    background-size: cover;*/
 /*    background-image: url('https://ivang-design.com/ig-logo.jpg');*/
 /*    box-shadow: 0 0 0 2px rgba(255,255,255,.1);*/
 /*    transition: opacity .2s, border-radius .2s, box-shadow .2s;*/
 /*    transition-timing-function: ease-out;*/
 /*}*/
 /*.link-to-portfolio:hover {*/
 /*    opacity: 0.8;*/
 /*    border-radius: 50%;*/
 /*    box-shadow: 0 0 0 20px rgba(255,255,255,.1);*/
 /*}*/

 nav{
   z-index: 9999999999999;
 }



/* Blog Section */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');




/** Page content */
.page-content { padding: 30px 0; flex: 1 0 auto; }

.page-heading { font-size: 2rem; }

.post-list-heading { font-size: 1.75rem; }

.post-list { margin-left: 0; list-style: none; }

.post-list > li { margin-bottom: 30px; }

.post-meta { font-size: 14px; color: #828282; }

.post-link { display: block; font-size: 1.5rem; }

/** Posts */
.post-header { margin-bottom: 30px; }

.post-title, .post-content h1 { font-size: 2.625rem; letter-spacing: -1px; line-height: 1.15; }

@media screen and (min-width: 800px) { .post-title, .post-content h1 { font-size: 2.625rem; } }

.post-content { margin-bottom: 30px; }

.post-content h1, .post-content h2, .post-content h3 { margin-top: 60px; }

.post-content h4, .post-content h5, .post-content h6 { margin-top: 30px; }

.post-content h2 { font-size: 1.75rem; }

@media screen and (min-width: 800px) { .post-content h2 { font-size: 2rem; } }

.post-content h3 { font-size: 1.375rem; }

@media screen and (min-width: 800px) { .post-content h3 { font-size: 1.625rem; } }

.post-content h4 { font-size: 1.25rem; }

.post-content h5 { font-size: 1.125rem; }

.post-content h6 { font-size: 1.0625rem; }

.post-content img { max-width: 100%; ; vertical-align: middle; padding: 20px; border-radius: 40px;}




/** Blockquotes */
blockquote { color: #828282; border-left: 4px solid #e8e8e8; padding-left: 15px; font-size: 1.125rem; font-style: italic; }

blockquote > :last-child { margin-bottom: 0; }

blockquote i, blockquote em { font-style: normal; }


/** Code formatting */

.highlight .c { color: #998; font-style: italic; }

.highlight .err { color: #a61717; background-color: #e3d2d2; }

.highlight .k { font-weight: bold; }

.highlight .o { font-weight: bold; }

.highlight .cm { color: #998; font-style: italic; }

.highlight .cp { color: #999; font-weight: bold; }

.highlight .c1 { color: #998; font-style: italic; }

.highlight .cs { color: #999; font-weight: bold; font-style: italic; }

.highlight .gd { color: #000; background-color: #fdd; }

.highlight .gd .x { color: #000; background-color: #faa; }

.highlight .ge { font-style: italic; }

.highlight .gr { color: #a00; }

.highlight .gh { color: #999; }

.highlight .gi { color: #000; background-color: #dfd; }

.highlight .gi .x { color: #000; background-color: #afa; }

.highlight .go { color: #888; }

.highlight .gp { color: #555; }

.highlight .gs { font-weight: bold; }

.highlight .gu { color: #aaa; }

.highlight .gt { color: #a00; }

.highlight .kc { font-weight: bold; }

.highlight .kd { font-weight: bold; }

.highlight .kp { font-weight: bold; }

.highlight .kr { font-weight: bold; }

.highlight .kt { color: #458; font-weight: bold; }

.highlight .m { color: #099; }

.highlight .s { color: #d14; }

.highlight .na { color: #008080; }

.highlight .nb { color: #0086B3; }

.highlight .nc { color: #458; font-weight: bold; }

.highlight .no { color: #008080; }

.highlight .ni { color: #800080; }

.highlight .ne { color: #900; font-weight: bold; }

.highlight .nf { color: #900; font-weight: bold; }

.highlight .nn { color: #555; }

.highlight .nt { color: #000080; }

.highlight .nv { color: #008080; }

.highlight .ow { font-weight: bold; }

.highlight .w { color: #bbb; }

.highlight .mf { color: #099; }

.highlight .mh { color: #099; }

.highlight .mi { color: #099; }

.highlight .mo { color: #099; }

.highlight .sb { color: #d14; }

.highlight .sc { color: #d14; }

.highlight .sd { color: #d14; }

.highlight .s2 { color: #d14; }

.highlight .se { color: #d14; }

.highlight .sh { color: #d14; }

.highlight .si { color: #d14; }

.highlight .sx { color: #d14; }

.highlight .sr { color: #009926; }

.highlight .s1 { color: #d14; }

.highlight .ss { color: #990073; }

.highlight .bp { color: #999; }

.highlight .vc { color: #008080; }

.highlight .vg { color: #008080; }

.highlight .vi { color: #008080; }

.highlight .il { color: #099; }


pre, code { font-family: "Menlo", "Inconsolata", "Consolas", "Roboto Mono", "Ubuntu Mono", "Liberation Mono", "Courier New", monospace; font-size: 0.9375em; border: 1px solid #e8e8e8; border-radius: 3px; background-color: #eeeeff; }

code { padding: 1px 5px; }

pre { padding: 8px 12px; overflow-x: auto; }

pre > code { border: 0; padding-right: 0; padding-left: 0; }

.highlight { border-radius: 3px; background: #eeeeff; }

.highlighter-rouge .highlight { background: #eeeeff; }

/** Icons */
.orange { color: #f66a0a; }

.grey { color: #828282; }

.svg-icon { width: 16px; height: 16px; display: inline-block; fill: currentColor; padding: 5px 3px 2px 5px; vertical-align: text-bottom; }

/** Tables */
table { margin-bottom: 30px; width: 100%; text-align: left; color: #3f3f3f; border-collapse: collapse; border: 1px solid #e8e8e8; }

table tr:nth-child(even) { background-color: #f7f7f7; }

table th, table td { padding: 10px 15px; }

table th { background-color: #f0f0f0; border: 1px solid #e0e0e0; }

table td { border: 1px solid #e8e8e8; }

@media screen and (max-width: 800px) { table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; -ms-overflow-style: -ms-autohiding-scrollbar; } }



/** Figures */
figure > img { display: block; }

figcaption { font-size: 14px; }

nav{
  z-index: 9999999999999;
}


.card-container{
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.card-content{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 30px;
}

.card{
  position: relative;
  background: #fff;
  max-width: 325px;
  width: 325px;
  height: auto;
  margin: 25px;
  box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
  border-radius: 10px;
  overflow: hidden;
}

.card-image{
  max-height: 200px;
}

.card-image img{
  max-width: 100%;
  height: auto;
}

.card-info{
  position: relative;
  color: #222;
  padding: 10px 20px 20px;
}

.card-info h3{
  font-size: 1.8em;
  font-weight: 800;
  margin-bottom: 5px;
}

.card-info p{
  font-size: 1em;
  margin-bottom: 5px;
}

.pagination{
  text-align: center;
  margin: 30px 30px 60px;
  user-select: none;
}

.pagination li{
  display: inline-block;
  margin: 5px;
  box-shadow: 0 5px 25px rgb(1 1 1 / 10%);
}

.pagination li a{
  color: #fff;
  text-decoration: none;
  font-size: 1.2em;
  line-height: 45px;
}

.previous-page, .next-page{
  background: #00E676;
  width: 80px;
  border-radius: 45px;
  cursor: pointer;
  transition: 0.3s ease;
}

.previous-page:hover{
  transform: translateX(-5px);
}

.next-page:hover{
  transform: translateX(5px);
}

.current-page, .dots{
  background: #ccc;
  width: 45px;
  border-radius: 50%;
  cursor: pointer;
}

.active-card{
  background: #159758;
}

.disable{
  background: #ccc;
}
      









 /*testimonials*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}




.swiper-container {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 320px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    background: #d1ebff;
    filter: blur(4px);
    border-radius: 10px;
}

.swiper-slide-active{
    filter: blur(0px);
    background: #fff;
    border-radius: 10px;
}


.testimonialBox{
    position: relative;
    width: 100%;
    padding: 40px;
    padding-top: 90px;
    color: #999;
}

.testimonialBox .quote{
    position: absolute;
    top: 20px;
    right: 30px;
    opacity: 0.2;
}

.testimonialBox .details{
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonialBox .details .imgBx{
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}

.testimonialBox .details .imgBx img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonialBox .details h3{
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #2196f3;
    line-height: 1.1em;
}

.testimonialBox .details h3 span{
    font-size: 12px;
    color: #666;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right{
    background-image: none;
}


/* #Link to page
================================================== */

.link-to-portfolio {
	  position: fixed;
    top: 30px;
    right: 30px;
    z-index: 20;
    cursor: pointer;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 3px;
    background-position: center center;
    background-size: cover;
    background-image: url('https://ivang-design.com/ig-logo.jpg');
    box-shadow: 0 0 0 2px rgba(0,0,0,.1);
    transition: opacity .2s, border-radius .2s, box-shadow .2s;
    transition-timing-function: ease-out;
}
.link-to-portfolio:hover {
    opacity: 0.8;
    border-radius: 50%;
    box-shadow: 0 0 0 20px rgba(0,0,0,.1);
}





 /* windmill */

 .switch-wrap {
   z-index: 3;
	position: relative;
	font-size: 17px;
	color: #212121;
	font-weight: 600;
	letter-spacing: 1px;
	text-align: center;
	margin: 0 auto;
	margin-top: 30px;
	-webkit-transition: all 500ms linear;
	transition: all 500ms linear; 
}
.switch-wrap span {
	font-size: 14px;
	color: #000;
	font-weight: 500;
	letter-spacing: 0;
}
#switch,
#circle {
	height: 31px;
	cursor: pointer;
	border: 2px solid #000;
	-webkit-transition: all 0.4s cubic-bezier(0.54, 1.6, 0.5, 1);
		transition: all 0.4s cubic-bezier(0.54, 1.6, 0.5, 1);
} 
#switch {
	width: 60px;
	margin: 0 auto;
	border-radius: 27px;
	position: relative;
	display: block;
	text-align: center;
	margin: 0 auto;
    transform: translateY(10px);
}
#circle {
	margin-top: 5%;
	margin-left: 5%;
	width: 40%;
	height: 80%;
	border-radius: 50%;
	box-shadow: inset 4px -1px 0 0 #f1c40f;
}
.switched {
	border-color: #000 !important;
}
.switched #circle {
	margin-left: 55%;
	box-shadow: inset 4px -1px 0 0 #2ecc71;
}
.main-wrapper{
	position: relative;
	margin: 0 auto;
	text-align: center;
	width: 400px;
	height: 300px;
	overflow: hidden;
	display: block;
	border: 2px solid #000;
	z-index: 5;
	margin-top: 30px;
  margin-bottom: 60px;
	background: #fff;
}

@media only screen and (max-width: 600px) {
  
  .main-wrapper{
    width: 320px;
    height: 250px;
  }

}

.sun {
	position: absolute;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 2px solid #000;
	top: 50px;
	left: 270px;
	z-index: 1;
	animation: rotate 10s linear infinite; 
}
@keyframes rotate {
  0% { 
		transform: rotate(0deg);  
  }
  100% { 
		transform: rotate(-360deg);   
  }
}
.sun span {
	position: absolute;
	width: 2px;
	height: 14px;
	background-color: #000;
	top: -18px;
	left: 7px;
	z-index: 1;
	transform-origin: center bottom;
    transform: scaleY(1);
	animation: sun-ray-1 1s linear infinite;
	box-shadow: 4px 4px 0 0 #f1c40f;
}
@keyframes sun-ray-1 {
  0%,100% { 
		transform: scaleY(1); 
  }
  50% { 
		transform: scaleY(0.6); 
  }
}
.sun span:nth-child(2) {
    transform: rotate(45deg) scaleY(0.6);
	top: -15px;
	left: 16px;
	animation: sun-ray-2 1s linear infinite;
}
@keyframes sun-ray-2 {
  0%,100% { 
    transform: rotate(45deg) scaleY(0.6);
  }
  50% { 
    transform: rotate(45deg) scaleY(1);
  }
}
.sun span:nth-child(3) {
    transform: rotate(90deg) scaleY(1);
	top: -5px;
	left: 20px;
	animation: sun-ray-3 1s linear infinite;
}
@keyframes sun-ray-3 {
  0%,100% { 
    transform: rotate(90deg) scaleY(1);
  }
  50% { 
    transform: rotate(90deg) scaleY(0.6);
  }
}
.sun span:nth-child(4) {
    transform: rotate(135deg) scaleY(0.6);
	top: 3px;
	left: 15px;
	animation: sun-ray-4 1s linear infinite;
}
@keyframes sun-ray-4 {
  0%,100% { 
    transform: rotate(135deg) scaleY(0.6);
  }
  50% { 
    transform: rotate(135deg) scaleY(1);
  }
}
.sun span:nth-child(5) {
    transform: rotate(180deg) scaleY(1);
	top: 6px;
	left: 7px;
	animation: sun-ray-5 1s linear infinite;
}
@keyframes sun-ray-5 {
  0%,100% { 
    transform: rotate(180deg) scaleY(1);
  }
  50% { 
    transform: rotate(180deg) scaleY(0.6);
  }
}
.sun span:nth-child(6) {
    transform: rotate(225deg) scaleY(0.6);
	top: 3px;
	left: -2px;
	animation: sun-ray-6 1s linear infinite;
}
@keyframes sun-ray-6 {
  0%,100% { 
    transform: rotate(225deg) scaleY(0.6);
  }
  50% { 
    transform: rotate(225deg) scaleY(1);
  }
}
.sun span:nth-child(7) {
    transform: rotate(270deg) scaleY(1);
	top: -5px;
	left: -5px;
	animation: sun-ray-7 1s linear infinite;
}
@keyframes sun-ray-7 {
  0%,100% { 
    transform: rotate(270deg) scaleY(1);
  }
  50% { 
    transform: rotate(270deg) scaleY(0.6);
  }
}
.sun span:nth-child(8) {
    transform: rotate(315deg) scaleY(0.6);
	top: -14px;
	left: -2px;
	animation: sun-ray-8 1s linear infinite;
}
@keyframes sun-ray-8 {
  0%,100% { 
    transform: rotate(315deg) scaleY(0.6);
  }
  50% { 
    transform: rotate(315deg) scaleY(1);
  }
}
.mountain-1{
    position: absolute;
	border: 2px solid #000;
	width: 14px;
	height: 14px;
	bottom: 37px;
	left: 80px;
	z-index: 1;
    transform: rotate(-45deg);
}
.mountain-1:before{
    position: absolute;
	content: '';
	width: 70px;
	height: 2px;
	background-color: #000;
	top: -2px;
	left: -72px;
}
.mountain-1:after{
    position: absolute;
	content: '';
	height: 14px;
	width: 2px;
	background-color: #000;
	top: 10px;
	left: 10px;
	box-shadow: 4px -4px 0 0 #94c6e7;
}
.mountain-2{
    position: absolute;
	border: 2px solid #000;
	width: 18px;
	height: 18px;
	bottom: 47px;
	left: 130px;
	z-index: 1;
    transform: rotate(-45deg);
}
.mountain-2:before{
    position: absolute;
	content: '';
	width: 40px;
	height: 2px;
	background-color: #000;
	top: -2px;
	left: -42px;
}
.mountain-2:after{
    position: absolute;
	content: '';
	height: 16px;
	width: 2px;
	background-color: #000;
	top: 14px;
	left: 14px;
	box-shadow: 4px -4px 0 0 #94c6e7;
}
.mountain-3{
    position: absolute;
	border: 2px solid #000;
	width: 20px;
	height: 20px;
	bottom: 70px;
	left: 198px;
	z-index: 1;
    transform: rotate(-45deg);
}
.mountain-3:before{
    position: absolute;
	content: '';
	width: 70px;
	height: 2px;
	background-color: #000;
	top: -2px;
	left: -72px;
}
.mountain-3:after{
    position: absolute;
	content: '';
	height: 30px;
	width: 2px;
	background-color: #000;
	top: 16px;
	left: 16px;
	box-shadow: 4px -12px 0 0 #94c6e7;
}
.mountain-4{
    position: absolute;
	width: 0;
	height: 0;
	bottom: 76px;
	left: 245px;
	z-index: 1;
    transform: rotate(-45deg);
}
.mountain-4:before{
    position: absolute;
	content: '';
	width: 15px;
	height: 2px;
	background-color: #000;
	top: 0;
	left: -15px;
}
.mountain-4:after{
    position: absolute;
	content: '';
	height: 60px;
	width: 2px;
	background-color: #000;
	top: 0;
	left: 0;
	box-shadow: -5px 6px 0 0 #94c6e7;
}
.mountain-5{
    position: absolute;
	border: 2px solid #000;
	width: 14px;
	height: 14px;
	bottom: 50px;
	left: 290px;
	z-index: 1;
    transform: rotate(-45deg);
}
.mountain-5:before{
    position: absolute;
	content: '';
	width: 15px;
	height: 2px;
	background-color: #000;
	top: -2px;
	left: -17px;
}
.mountain-5:after{
    position: absolute;
	content: '';
	height: 84px;
	width: 2px;
	background-color: #000;
	top: 10px;
	left: 10px;
	box-shadow: -5px 6px 0 0 #94c6e7;
}
.windmill-pole-wrap{
    position: absolute;
	bottom: -3px;
	left: 130px;
	perspective: 70px;
	z-index: 50;
}
.windmill-pole-wrap.back-left{
	left: 50px;
	z-index: 1;
	transform: scale(0.7);
	transform-origin: center bottom;
}
.windmill-pole-wrap.right{
	left: auto;
	right: 85px;
	transform: scale(0.85);
	transform-origin: center bottom;
}
.windmill-pole{
    position: absolute;
	bottom: 0;
	border: 3px solid #000;
	width: 14px;
	height: 220px;
	left: -7px;
	background-color: #fff;
	transform: rotateX(15deg);
	transform-origin: center bottom;
}
.windmill-pole-ellipses{
    position: absolute;
	bottom: 114px;
	left: 130px;
	z-index: 51;
}
.windmill-pole-ellipses.back-left{
	left: 50px;
	bottom: 80px;
	z-index: 3;
	transform: scale(0.7);
	transform-origin: center bottom;
}
.windmill-pole-ellipses.right{
	left: auto;
	right: 85px;
	bottom: 100px;
	transform: scale(0.85);
	transform-origin: center bottom;
}
.windmill-pole-ellipses-wrapper{
    position: absolute;
	top: 0;
	left: 0;
	animation: rotate-ellipses 6s linear infinite;    
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    animation-play-state: paused;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear; 
}
.windmill-pole-ellipses-wrap{
    position: absolute;
	top: 0;
	left: 0;
	animation: rotate-ellipses 2s linear infinite;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear; 
    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
    animation-play-state: running;
}
.windmill-pole-ellipses-center{
    position: absolute;
	top: -7px;
	left: -7px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background-color: #fff;
	border: 2px solid #000;
	z-index: 2;
}
.ellipses {
    position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.ellipses span{
    position: absolute;
	top: -70px;
	left: -5px;
	width: 10px;
	height: 70px;
	border-radius: 100%;
	background-color: #fff;
	border: 2px solid #000;
	transform-origin: center bottom;
}
.ellipses span:nth-child(2){
    transform: rotate(120deg);
}
.ellipses span:nth-child(3){
    transform: rotate(240deg);
}
.ellipses.delayed span{
    transform: rotate(60deg);
}
.ellipses.delayed span:nth-child(2){
    transform: rotate(180deg);
}
.ellipses.delayed span:nth-child(3){
    transform: rotate(300deg);
}
body.slow-wind .windmill-pole-ellipses-wrapper{
    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
    animation-play-state: running;
}
body.slow-wind .windmill-pole-ellipses-wrap{
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    animation-play-state: paused;
}
@keyframes rotate-ellipses {
  0% { 
		transform: rotate(0deg);  
  }
  100% { 
		transform: rotate(-360deg);   
  }
}
.clouds-wind-wrapper{
    position: absolute;
	top: 0;
	left: 0;
	width: 1200px;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear; 
	z-index: 5;
	animation: moveClouds 4s linear infinite;
    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
    animation-play-state: running;
}
.clouds-wind-wrap{
    position: absolute;
	top: 0;
	left: 0;
	width: 1200px;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear; 
	animation: moveClouds 12s linear infinite;
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    animation-play-state: paused;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear; 
}
@keyframes moveClouds {
  0% { 
		transform: translateX(0);  
  }
  100% { 
		transform: translateX(-33.333333333333%);  
  }
}
body.slow-wind .clouds-wind-wrapper{
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    animation-play-state: paused; 
}
body.slow-wind .clouds-wind-wrap{
    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
    animation-play-state: running;
}
.clouds-wind-section{
    position: absolute;
	top: 0;
	left: 0;
	width: 400px;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear; 
}
.clouds-wind-section.snd{
	left: 400px;
}
.clouds-wind-section.trd{
	left: 800px;
}
.cloud{
    position: absolute;
	top: 50px;
	left: 50px;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear; 
}
.cloud span{
    position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border-width: 2px;
	border-style: solid;
	border-color: transparent transparent #000 #000;
	background-color: #fff;
	transform: rotate(45deg);
	z-index: 7;
}
.cloud span:nth-child(2){
	top: -9px;
	left: 10px;
	width: 22px;
	height: 22px;
	border-color: transparent transparent transparent #000;
	z-index: 6;
}
.cloud span:nth-child(3){
	top: -22px;
	left: 20px;
	width: 30px;
	height: 30px;
	border-color: #000 transparent transparent #000;
	box-shadow: 2px -3px 0 0 #3498db;
	z-index: 3;
}
.cloud span:nth-child(4){
	top: 5px;
	left: 10px;
	width: 40px;
	height: 15px;
	border-radius: 0;
	border: none;
	border-bottom: 2px solid #000;
	transform: rotate(0);
	z-index: 6;
}
.cloud span:nth-child(5){
	top: -7px;
	left: 35px;
	width: 27px;
	height: 27px;
	border-color: #000 #000 transparent transparent;
	box-shadow: 2px -3px 0 0 #3498db;
	z-index: 4;
}
.cloud.snd{
	top: 100px;
	left: 300px;
}
.cloud.trd{
	top: 150px;
	left: 220px;
	transform: rotateY(180deg);
	transform-origin: center center;
}
.cloud.trd span{
	box-shadow: -3px 2px 0 0 #3498db;
}
.cloud.trd span:nth-child(4){
	box-shadow: none;
}
.cloud.trd span:nth-child(5){
	box-shadow: none;
}
.wind{
    position: absolute;
	top: 90px;
	left: 50px;
}
.wind span{
    position: absolute;
	top: 0;
	left: 0;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border-width: 2px;
	border-style: solid;
	transform: rotate(45deg);
	border-color: transparent transparent #000 #000;
}
.wind span:before{
    position: absolute;
	content: '';
	bottom: 15px;
	right: -38px;
	width: 45px;
	height: 2px;
	background-color: #000;
	transform: rotate(-45deg);
	box-shadow: 4px 4px 0 0 #3498db;
}
.wind span:after{
    position: absolute;
	content: '';
	bottom: 40px;
	right: -48px;
	width: 14px;
	height: 2px;
	background-color: #000;
	transform: rotate(-45deg);
	box-shadow: 4px 4px 0 0 #3498db;
}
.wind span:nth-child(2){
	top: 3px;
	left: -16px;
	width: 12px;
	height: 12px;
}
.wind span:nth-child(2):after{
	width: 50px;
	bottom: 58px;
	right: -83px;
}
.wind span:nth-child(3){
	top: 18px;
	left: 12px;
	width: 40px;
	height: 2px;
	border: none;
	border-radius: 0;
	background-color: #000;
	transform: rotate(0);
}
.wind span:nth-child(3):before{
	width: 10px;
	bottom: auto;
	top: 0;
	left: 50px;
	right: auto;
	transform: rotate(0);
}
.wind span:nth-child(3):after{
	width: 30px;
	bottom: auto;
	top: 0;
	left: 70px;
	right: auto;
	transform: rotate(0);
}
.wind span:nth-child(4){
	top: 23px;
	left: 24px;
	width: 10px;
	height: 2px;
	border: none;
	border-radius: 0;
	background-color: #000;
	transform: rotate(0);
}
.wind span:nth-child(4):before{
	width: 40px;
	bottom: auto;
	top: 0;
	left: 20px;
	right: auto;
	transform: rotate(0);
}
.wind span:nth-child(4):after{
	width: 10px;
	bottom: auto;
	top: 0;
	left: 70px;
	right: auto;
	transform: rotate(0);
}
.wind.snd{
	top: 140px;
	left: 260px;
	transform: scale(0.9);
}
.wind-small{
    position: absolute;
	top: 0;
	left: 0;
}
.wind-small span{
    position: absolute;
	top: 170px;
	left: 32px;
	height: 2px;
	width: 8px;
	background-color: #000;
	box-shadow: 4px 4px 0 0 #3498db;
}
.wind-small span:nth-child(2){
	top: 150px;
	left: 52px;
	width: 16px;
}
.wind-small span:nth-child(2):after{
	left: 26px;
	width: 6px;
	height: 2px;
	background-color: #000;
    position: absolute;
	content: '';
	top: 0;
	box-shadow: 4px 4px 0 0 #3498db;
}
.wind-small span:nth-child(3){
	top: 187px;
	left: 102px;
	width: 16px;
}
.wind-small span:nth-child(4){
	top: 180px;
	left: 362px;
	width: 10px;
}
.wind-small span:nth-child(5){
	top: 40px;
	left: 332px;
	width: 20px;
}
.wind-small span:nth-child(5):after{
	left: 30px;
	width: 7px;
	height: 2px;
	background-color: #000;
    position: absolute;
	content: '';
	top: 0;
	box-shadow: 4px 4px 0 0 #3498db;
}
.wind-small span:nth-child(6){
	top: 30px;
	left: 122px;
	width: 16px;
}
.wind-small span:nth-child(7){
	top: 70px;
	left: 172px;
	width: 12px;
}
.wind-small span:nth-child(8){
	top: 50px;
	left: 188px;
	width: 8px;
}
.wind-small span:nth-child(8):after{
	left: 18px;
	width: 3px;
	height: 2px;
	background-color: #000;
    position: absolute;
	content: '';
	top: 0;
	box-shadow: 4px 4px 0 0 #3498db;
}

.tree{
    position: absolute;
	bottom: 0;
	left: 180px;
	z-index: 3;
	transform-origin: center bottom;
	animation: moveTree 1s linear infinite;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear; 
    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
    animation-play-state: running;
}
.tree-wrap{
    position: absolute;
	bottom: 0;
	left: 0;
	z-index: 3;
	transform-origin: center bottom;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear; 
}
@keyframes moveTree {
  0%,100% { 
		transform: skewX(16deg);  
  }
  20% { 
		transform: skewX(18deg); 
  }
  40% { 
		transform: skewX(20deg); 
  }
  60% { 
		transform: skewX(17deg); 
  }
  80% { 
		transform: skewX(18deg); 
  }
}
body.slow-wind .tree-wrap{
	transform: skewX(-10deg); 
}
body.slow-wind .tree{
	animation-duration: 1.8s;
}
.tree span{
    position: absolute;
	bottom: 0;
	left: 0;
	width: 2px;
	height: 8px;
	background-color: #000;
	z-index: 3;
	transform: scale(1.1); 
}
.tree span:after{
    position: absolute;
	content: '';
	bottom: 100%;
	left: 50%;
	margin-left: -8px;
	width: 16px;
	height: 26px;
	background-color: #fff;
	border-radius: 50%;
	border-width: 2px;
	border-style: solid;
	border-color: #000 #000 #000 #000;
}
.tree span:before{
    position: absolute;
	content: '';
	bottom: calc(100% + 4px);
	left: 50%;
	margin-left: -4px;
	width: 16px;
	height: 26px;
	border-radius: 50%;
	border-width: 2px;
	border-style: solid;
	border-color: transparent #2ecc71 transparent transparent;
	transform: rotate(-15deg);
}
.tree span:nth-child(2){
	left: 30px;
}
.tree span:nth-child(3){
	left: 160px;
}
.tree span:nth-child(4){
	left: -107px;
}

/* #Link to page
================================================== */

.link-to-portfolio {
	  position: fixed;
    top: 30px;
    right: 30px;
    z-index: 20;
    cursor: pointer;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 3px;
    background-position: center center;
    background-size: 30px 30px;
  background-repeat: no-repeat;
  background-color: #212121;
    background-image: url('https://blog.codepen.io/wp-content/uploads/2012/06/Button-White-Small.png');
    box-shadow: 0 0 0 2px rgba(0,0,0,.1);
    transition: opacity .2s, border-radius .2s, box-shadow .2s;
    transition-timing-function: ease-out;
}
.link-to-portfolio:hover {
    opacity: 0.8;
    border-radius: 50%;
    box-shadow: 0 0 0 20px rgba(0,0,0,.1);
}

z-bigger-2.container.p{
    z-index: 99999999;
    color: white;
}

/*contact form*/
@import url(https://fonts.googleapis.com/css?family=Dancing+Script:400,700);
* {
    box-sizing: border-box;
}


small {
    display: block;
    padding: 1rem 0;
    font-size: 0.8rem;
    transition: opacity 0.33s;
}
textarea, input, button {
    line-height: 1.5rem;
    border: 0;
    outline: none;
    font-family: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.side textarea, .side input {
    color: #4e5e72;
    background-color: transparent;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='24'><rect fill='rgb(229, 225, 187)' x='0' y='23' width='10' height='1'/></svg>");
}
textarea {
    width: 100%;
    height: 8rem;
    resize: none;
}
input {
    width: 50%;
    margin-bottom: 1rem;
}
.side input[type=text]:invalid, .side input [type=email]:invalid {
    box-shadow: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='24'><rect fill='rgba(240, 132, 114, 0.5)' x='0' y='23' width='10' height='1'/></svg>");
}
button {
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    background-color: rgba(78, 94, 114, 0.9);
    color: white;
    font-size: 1rem;
    transition: background-color 0.2s;
}
button:hover,button :focus {
    outline: none;
    background-color: rgba(78, 94, 114, 1);
}
input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='24'><rect fill='rgba(78, 94, 114, 0.3)' x='0' y='23' width='10' height='1'/></svg>");
    outline: none;
}
.wrapper {
    width: 35rem;
    background-color: white;
}
@media only screen and (max-width: 600px) {
  
  .wrapper{
    width: 300px;
    
  }

}
.letter {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 30rem;
    margin: auto;
    perspective: 60rem;
}

@media only screen and (max-width: 600px) {
  
  .letter{
    width: 300px;
    height: auto;
  }

}

.side {
    height: 12rem;
    background-color: #fcfcf8;
    outline: 1px solid transparent;
}
.side:nth-of-type(1) {
    padding: 2rem 2rem 0;
    border-radius: 1rem 1rem 0 0;
    box-shadow: inset 0 0.75rem 2rem rgba(229, 225, 187, 0.5);
}
.side.side:nth-of-type(2) {
    padding: 2rem;
    border-radius: 0 0 1rem 1rem;
    box-shadow: 0 0.3rem 0.3rem rgba(0, 0, 0, 0.05), inset 0 -0.57rem 2rem rgba(229, 225, 187, 0.5);
    text-align: right;
}
.envelope {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
}
.envelope.front {
    width: 10rem;
    height: 6rem;
    border-radius: 0 0 1rem 1rem;
    overflow: hidden;
    z-index: 9999;
    opacity: 0;
}
.envelope.front::before, .envelope.front::after {
    position: absolute;
    display: block;
    width: 12rem;
    height: 6rem;
    background-color: #e9dc9d;
    transform: rotate(30deg);
    transform-origin: 0 0;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
    content: '';
}
.envelope.front::after{
    right: 0;
    transform: rotate(-30deg);
    transform-origin: 100% 0;
}
.envelope.back {
    top: -4rem;
    width: 10rem;
    height: 10rem;
    overflow: hidden;
    z-index: -9998;
    opacity: 0;
    transform: translateY(-6rem);
}
.envelope.back::before {
    display: block;
    width: 10rem;
    height: 10rem;
    background-color: #e9dc9d;
    border-radius: 1rem;
    content: '';
    transform: scaleY(0.6) rotate(45deg)
}
small{
    text-align: center;
}
.result-message {
    opacity: 0;
    transition: all 0.3s 2s;
    transform: translateY(9rem);
    z-index: -9999;
    text-align: center;
}
.sent .letter {
    -webkit-animation: scaleLetter 1s forwards ease-in /*,
               pushLetter 0.5s 1.33s forwards ease-out*/ ;
    animation: scaleLetter 1s forwards ease-in /*,
               pushLetter 0.5s 1.33s forwards ease-out*/ ;
}
.sent .side:nth-of-type(1) {
    transform-origin: 0 100%;
    -webkit-animation: closeLetter 0.66s forwards ease-in;
    animation: closeLetter 0.66s forwards ease-in;
}
.sent .side:nth-of-type(1) h1, .sent .side:nth-of-type(1) textarea {
    -webkit-animation: fadeOutText 0.66s forwards linear;
    animation: fadeOutText 0.66s forwards linear;
}
.sent button {
    background-color: rgba(78, 94, 114, 0.2);
}
.sent .envelope {
    -webkit-animation: fadeInEnvelope 0.5s 1.33s forwards ease-out;
    animation: fadeInEnvelope 0.5s 1.33s forwards ease-out;
}
.sent .result-message {
    opacity: 1;
    transform: translateY(12rem);
}
.sent small {
    opacity: 0;
}
.centered {
    position: absolute;
    left: 0;
    right: 0;
    margin: 1rem auto;
}
@-webkit-keyframes closeLetter {
    50% {transform: rotateX(-90deg);}
    100% {transform: rotateX(-180deg);}
}
@keyframes closeLetter {
    50% {transform: rotateX(-90deg);}
    100% {transform: rotateX(-180deg);}
}
@-webkit-keyframes fadeOutText {
    49% {opacity: 1;}
    50% {opacity: 0;}
    100% {opacity: 0;}
}
@keyframes fadeOutText {
    49% {opacity: 1;}
    50% {opacity: 0;}
    100% {opacity: 0;}
}
@-webkit-keyframes fadeInEnvelope {
    0% {opacity: 0; transform: translateY(8rem);}
    /*90% {opacity: 1; transform: translateY(4rem);}*/
    100% {opacity: 1; transform: translateY(4.5rem);}
}
@keyframes fadeInEnvelope {
    0% {opacity: 0; transform: translateY(8rem);}
    /*90% {opacity: 1; transform: translateY(4rem);}*/
    100% {opacity: 1; transform: translateY(4.5rem);}
}
@-webkit-keyframes scaleLetter {
    66% {transform: translateY(-8rem) scale(0.5, 0.5);}
    75% {transform: translateY(-8rem) scale(0.5, 0.5);}
    90% {transform: translateY(-8rem) scale(0.3, 0.5);}
    97% {transform: translateY(-8rem) scale(0.33, 0.5);}
    100%{transform: translateY(-8rem) scale(0.3, 0.5);}
}
@keyframes scaleLetter {
    66% {transform: translateY(-8rem) scale(0.5, 0.5);}
    75% {transform: translateY(-8rem) scale(0.5, 0.5);}
    90% {transform: translateY(-8rem) scale(0.3, 0.5);}
    97% {transform: translateY(-8rem) scale(0.33, 0.5);}
    100%{transform: translateY(-8rem) scale(0.3, 0.5);}
}

.wrapper.centered{
    z-index: 9999999;
}


/*
@keyframes pushLetter {
  0% {transform: translateY(-8rem) scale(0.3, 0.5);}
  50% {transform: translateY(-8rem) scale(0.3, 0.5);}
  90% {transform: translateY(-8.5rem) scale(0.3, 0.5);}
  100% {transform: translateY(-8rem) scale(0.3, 0.5);}
}
*/


/*Footer*/


.footer {
    z-index: 99999999999;
    margin-top: 150px;
    display: flex;
    flex-flow: row wrap;
    padding: 30px 30px 20px 30px;
    color: #2f2f2f;
    background-color: rgb(0, 0, 0);
    border-top: 1px solid #e5e5e5;
}

.footer > * {
    flex:  1 100%;
}

.footer__addr {
    z-index: 99999999999;
    margin-right: 1.25em;
    margin-bottom: 2em;
}

.footer__logo {
    z-index: 99999999999;
    font-family: 'Pacifico', cursive;
    font-weight: 400;
    text-transform: lowercase;
    font-size: 1.5rem;
}

.footer__addr h2 {
    z-index: 99999999999;
    margin-top: 1.3em;
    font-size: 15px;
    font-weight: 400;
}

.nav__title {
    z-index: 99999999999;
    font-weight: 400;
    font-size: 15px;
    color: #00E676;
}

.footer address {
    z-index: 99999999999;
    font-style: normal;
    color: #999;
}

.footer h2{
  color: #00E676;
}

.footer__btn {
    z-index: 99999999999;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    max-width: max-content;
    background-color: #fff;
    border-radius: 100px;
    color: #000000;
    line-height: 0;
    margin: 0.6em 0;
    font-size: 1rem;
    padding: 0 1.3em;
}

.footer ul {
    z-index: 99999999999;
    list-style: none;
    padding-left: 0;
}

.footer li {
    z-index: 99999999999;
    line-height: 2em;
}

.footer a {
    z-index: 99999999999;
    text-decoration: none;
}

.footer__nav {
    z-index: 99999999999;
    display: flex;
    flex-flow: row wrap;
}

.footer__nav > * {
    flex: 1 50%;
    margin-right: 1.25em;
}

.nav__ul a {
    z-index: 99999999999;
    color: #999;
}

.nav__ul--extra {
    z-index: 99999999999;
    column-count: 2;
    column-gap: 1.25em;
}

.legal {
    z-index: 99999999999;
    display: flex;
    flex-wrap: wrap;
    color: #999;
}


@media screen and (min-width: 24.375em) {
    .legal  {
        margin-left: auto;
    }
}

@media screen and (min-width: 40.375em) {
    .footer__nav > * {
        flex: 1;
    }

    .nav__item--extra {
        flex-grow: 2;
    }

    .footer__addr {
        flex: 1 0px;
    }

    .footer__nav {
        flex: 2 0px;
    }
}