/*
  Theme Name: Simple personal page for Me
  Author: Péntek Melinda Erika
  Version: 2.0
*/

/*************Site settings styling*************/

body{
  width: 100%;
  margin: 0 auto 0 auto;
  padding: 0;
  background-color: #ffffff;
 font-family: 'Cinzel Decorative', cursive;
}
h1,
h2,
h3,
h4{
  margin: 0;
  padding: 0;
}
.clearfix{
  overflow: auto;
  zoom: 1;
  display: block;
  clear: both;
}

/************Loader styling************/

@keyframes loading {
 0% {
  transform: rotate(0deg);
}
25%{
 transform: rotate(160deg);
}
50%{
  transform: rotate(0deg);
}
75%{
  transform: rotate(160deg);
}
100% {
  transform: rotate(0deg);
};
}

#loading {
    position: fixed;
    text-align: center;
    width: 100%;
    height: 100%;
    background-color: #5a4e68;
    z-index: 50;
    visibility: visible;
    height: 100%;
    z-index: 200;
}

.loading {
  background-color: transparent;
  border-radius: 50%;
  margin: 5px auto;
  animation: loading 5s infinite linear;
}
.spin-1{
  border: 5px solid #DA3C78;
  border-top: 5px solid transparent;
  border-left: 5px solid transparent;
  width: 120px;
  height: 120px;
  margin-top: 20%;
}
.spin-2{
  border: 5px solid #FA5C98;
  border-top: 5px solid transparent;
  border-left: 5px solid transparent;
  width: 100px;
  height: 100px;
  animation-delay: 1s;
}
.spin-3{
  border: 5px solid #FF6CA8;
  border-top: 5px solid transparent;
  border-left: 5px solid transparent;
  width: 80px;
  height: 80px;
  animation-delay: 1s;
}
.spin-4{
  border: 5px solid #FF7CB8;
  border-top: 5px solid transparent;
  border-left: 5px solid transparent;
  width: 60px;
  height: 60px;
  animation-delay: 1s;
}
.spin-5{
  border: 5px solid #FF8CC8;
  border-top: 5px solid transparent;
  border-left: 5px solid transparent;
  width: 40px;
  height: 40px;
  animation-delay: 1s;
}
.spin-6{
  border: 5px solid #FFBCD8;
  width: 20px;
  height: 20px;
  animation-delay: 1s;
}

/*************Menu styling*************/

.button_container {
  position: fixed;
  top: 5%;
  left: 2%;
  height: 27px;
  width: 35px;
  cursor: pointer;
  z-index: 3;
  transition: opacity .25s ease;
}
.button_container:hover {
  opacity: .7;
}
.button_container.active .top {
  transform: translateY(11px) translateX(0) rotate(45deg);
  background: #FFF;
}
.button_container.active .middle {
  opacity: 0;
  background: #FFF;
}
.button_container.active .bottom {
  transform: translateY(-11px) translateX(0) rotate(-45deg);
  background: #FFF;
}
.button_container span {
  background: #FF8CC8;
  border: none;
  height: 5px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all .35s ease;
  cursor: pointer;
}
.button_container span:nth-of-type(2) {
  top: 11px;
}
.button_container span:nth-of-type(3) {
  top: 22px;
}
.overlay {
  position: fixed;
  background-color: #b49fb0;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s, height .35s;
  overflow: hidden;
}
.overlay.open {
  opacity: .9;
  visibility: visible;
  height: 100%;
  z-index: 2;
}
.overlay.open li {
  animation: fadeInRight .5s ease forwards;
  animation-delay: .35s;
}
.overlay.open li:nth-of-type(2) {
  animation-delay: .4s;
}
.overlay.open li:nth-of-type(3) {
  animation-delay: .45s;
}
.overlay.open li:nth-of-type(4) {
  animation-delay: .50s;
}
.overlay nav {
  position: relative;
  height: 70%;
  top: 40%;
  transform: translateY(-50%);
  font-size: 50px;
  font-weight: 400;
  text-align: center;
}
.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  height: 100%;
}
.overlay ul li {
  display: block;
  height: 25%;
  height: calc(100% / 4);
  min-height: 50px;
  position: relative;
  opacity: 0;
}
.overlay ul li a {
  display: block;
  position: relative;
  color: #FFF;
  text-decoration: none;
  overflow: hidden;
  padding: 10%;
}
.overlay ul li a:hover:after,
.overlay ul li a:focus:after,
.overlay ul li a:active:after {
  width: 100%;
}
.overlay ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  transform: translateX(-50%);
  height: 3px;
  background: #FFF;
  transition: .35s;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

/*************Header section styling*************/

#header{
  max-width: 100%;
  margin: 0px auto 0px auto;
  padding: 10% 5%;;
  min-height: 600px;
  position: relative;
  text-align: center;
  background-image: url(../images/desktop.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

/*************Textbox*************/

.wrap-hero-content{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.hero-content{
  font-size: 20px;
  position: absolute;
  text-align: center;
  left: 50%;
  top: 50%;
  padding: 7%;
  background: rgba(255, 255, 255, 0.8);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50% 0% 50% 0%;
}

/*************Mouse scroll styling*************/

.mouse-icon {
  position: absolute;
  border: 2px solid #2f2f2f;
  background: #ffffff;
  opacity: 0.8;
  border-radius: 13px;
  height: 40px;
  width: 30px;
  margin: 0 auto;
  display: block;
  left: 0;
  right: 0;
  bottom: 30px;
  z-index: 1;
}
.mouse-icon .scroll {
  -webkit-animation-name: scrolling;
  -webkit-animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-play-state: running;
  animation-name: scrolling;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-play-state: running;
}
.mouse-icon .scroll {
  position: relative;
  border-radius: 10px;
  background: #2f2f2f;
  width: 4px;
  height: 8px;
  top: 4px;
  margin-left: auto;
  margin-right: auto;
}

@-webkit-keyframes scrolling  {
  0%   { top:2px;  opacity: 0;}
  30%  { top:8px; opacity: 1;}
  100% { top:16px; opacity: 0;}
}

@keyframes scrolling  {
  0%   { top:2px;  opacity: 0;}
  30%  { top:8px; opacity: 1;}
  100% { top:16px; opacity: 0;}
}

/*************About-me section styling*************/

#about-me{
  text-align: center;
  position: relative;
  padding: 10% 5%;
  background-color:#6D4F69;
  overflow: hidden;
  zoom: 1;
  background-image: url(../images/geometric.png);
  background-position: top center;
  background-repeat: repeat;
}
#about-me .exra-section.left,
#about-me .slogen,
#about-me .exra-section.right {
  width:33.3%;
  float: left;
  text-align: center;
}
#about-me .exra-section.left{
  text-align: right;
}
#about-me .exra-section.right{
  text-align: left;
}
#about-me .exra-section.left,
#about-me .exra-section.right{
  padding-top: 5%;
}
#about-me img{
  margin: 0 auto;
  border: 5px solid #4f2a4b;
  width: 40%;
  border-radius: 50% 0% 50% 0%
}
#about-me h1{
  font-size: 55px;
  color: #ffffff;
  line-height: 65px;
  padding: 0px 20px 15px 20px;
  margin:0 auto;
  width: 100%;
}
#about-me .slogen p{
  font-family: 'Cinzel Decorative', cursive;
  color: #9a8197;
  font-size: 22px;
  line-height: 38px;
  padding: 30px 5% 0 5%;
  font-style: italic;
}
#about-me h5{
  color: #9a8197;
  font-size: 24px;
  line-height: 30px;
  padding: 0% 0 0% 0%;
}
#about-me h6{
  color: #ffffff;
  font-size: 24px;
  line-height: 30px;
  padding: 0% 0 0% 0%;
}
#about-me h7{
  clear: both;
  display: block;
  zoom: 1;
  padding: 0% 5% 2% 5%;
  color: #ffffff;
  font-size: 23px;
  letter-spacing: 2px;
  line-height: 40px;
  font-family: 'Cinzel Decorative', cursive;
}
#about-me p{
  text-align: center;
  color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  font-size: 19px;
  line-height: 37px;
  padding: 0 5%;
}
#about-me p u{
    font-family: 'Cinzel Decorative', cursive;
    color: #ffffff;
    font-size: 24px;
    line-height: 30px;
    font-weight: bold;
    text-decoration: none;
}
#about-me p b{
    font-family: 'Cinzel Decorative', cursive;
    font-size: 60px;
    line-height: 54px;
}

/*************My skills section styling*************/

#my-skills{
  background-color: #181C2E;
  position: relative;
  padding: 10% 5%;
  color: #ffffff;
}
#my-skills h1 {
  text-align: center;
  font-size: 60px;
  line-height: 70px;
  color: #ffffff;
  padding: 0%;
  margin:0 auto;
  letter-spacing: 4px;
}

/************* Skills styling**************/

.skillst {
  margin-top: 0;
  padding: 4% 0 0% 0;
  overflow: hidden;
  zoom: 1;
}
#my-skills .exra-section {
  width: 46%;
  float: left;
  padding: 2% 2% 0% 2%;
}
.skillst .skillbar {
  width: 100%;
  height: 35px;
  background-color: #ffffff;
  position: relative;
  margin-bottom: 72px;
  box-sizing: border-box;
  border-radius: 50px;
  border: 2px solid #ef7674;
}
.skillst .count-bar {
  width: 100%;
  height: 31px;
  width: 0px;
  position: relative;
}
.skillst .count-bar {
  background-color: #ef7674;
  border-radius: 50px;
}
.skillst .count-bar span{
  font-size: 13px;
}
.skillst .title {
  position: absolute;
  line-height: 25px;
  top: -35px;
  left: 0;
  padding-left: 10px;
  font-size: 17px;
  letter-spacing: 1px;
}
.skillst .count-bar .count {
  position: absolute;
  line-height: 18px;
  top: 6px;
  right: -42px;
  width: 40px;
  height: 18px;
  color: #fff;
  text-align: center;
  background-color: #2f2f2f;;
}
.skillst .count-bar .count span {
  position: relative;
  display: block;
  color: white;
  background-color: #ef7674;
}
.skillst .count-bar .count span:after {
  position: absolute;
  left: 50%;
  margin-left: -25px;
  top: 9px;
  content: "";
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}
.skillst .count-bar .count {
  background-color: #818181;
}
.skillst .count-bar .count span:after {
  border-top: 4px solid #ef7674;
}


/**************Bear styling**************/

.body {
  width: 90px;
  height: 100px;
}
.body, .body:before, .body:after {
  position: absolute;
}
.body:before, .body:after {
  content: '';
}
.face, .face:before, .face:after,
.features,
.features:before,
.features:after {
  position: absolute;
}
.face:before, .face:after,
.features:before,
.features:after {
  content: '';
}
.bodySlant {
  background-color: #e6ac4c;
  border-radius: 28px;
  transform-origin: 50% 100%;
  transform: perspective(300px) rotateX(20deg);
  margin: 0 auto;
}
.bear {
  height: 120px;
  background-color: #8E5C3B;
  position: relative;
}
.bear:before {
  top: -17px;
  left: 3px;
  width: 29px;
  height: 38px;
  background-color: #8E5C3B;
  border-radius: 50% 50% 0 0 / 70%;
  box-shadow: 55px 0 #8E5C3B;
}
.bear:after {
  top: 50px;
  left: -12px;
  width: 14px;
  height: 15px;
  background-color: #d0ba96;
  border-radius: 40%;
  box-shadow: 100px 0 #d0ba96, 97px 0px 0px 8px #8E5C3B, 3px 0px 0px 8px #8E5C3B, 18px 65px #d0ba96, 18px 65px 0px 6px #8E5C3B, 82px 65px #d0ba96, 82px 65px 0px 6px #8E5C3B;
  animation: wave 3s infinite linear;
}
.bear .face {
  top: 19px;
  left: 30px;
  width: 30px;
  height: 30px;
  background-color: #d0ba96;
  border: 0;
  border-radius: 50%;
}
.bear .face:before {
  top: 5px;
  left: 11px;
  z-index: 5;
  width: 8px;
  height: 8px;
  background-color: #2f1f05;
  border-radius: 50%;
  box-shadow: -3px 0 #2f1f05, -2px 0 #2f1f05, 2px 0 #2f1f05, 3px 0 #2f1f05, 0 3px #2f1f05, -12px -12px #2f1f05, 12px -12px #2f1f05;
}
.bear .face:after {
  left: 12px;
  top: 11px;
  width: 10px;
  height: 10px;
  border-bottom: 3px solid #000;
  border-radius: 40%;
  transform: rotate(-30deg);
}
.bear .features {
  top: 59px;
  left: 23px;
  width: 45px;
  height: 45px;
  background-color: #d0ba96;
  border-radius: 40%;
}
.bear .features:before {
  top: -67px;
  left: -12px;
  width: 14px;
  height: 8px;
  background-color: #d0ba96;
  border-radius: 50% 50% 0 0 / 70%;
  box-shadow: 55px 0 #d0ba96;
}

@keyframes wave {
  50% {
    box-shadow: 100px 0 #d0ba96, 97px 0px 0px 8px #8E5C3B, 3px 0px 0px 8px #8E5C3B, 18px 65px #d0ba96, 18px 65px 0px 6px #8E5C3B, 82px 65px #d0ba96, 82px 65px 0px 6px #8E5C3B;
  }
  55% {
    box-shadow: 99px -6px #d0ba96, 96px -6px 0px 8px #8E5C3B, 3px 0px 0px 8px #8E5C3B, 18px 65px #d0ba96, 18px 65px 0px 6px #8E5C3B, 82px 65px #d0ba96, 82px 65px 0px 6px #8E5C3B;
  }
  60% {
    box-shadow: 100px 0 #d0ba96, 97px 0 0px 8px #8E5C3B, 3px 0px 0px 8px #8E5C3B, 18px 65px #d0ba96, 18px 65px 0px 6px #8E5C3B, 82px 65px #d0ba96, 82px 65px 0px 6px #8E5C3B;
  }
  65% {
    box-shadow: 99px -6px #d0ba96, 96px -6px 0px 8px #8E5C3B, 3px 0px 0px 8px #8E5C3B, 18px 65px #d0ba96, 18px 65px 0px 6px #8E5C3B, 82px 65px #d0ba96, 82px 65px 0px 6px #8E5C3B;
  }
  70% {
    box-shadow: 100px 0 #d0ba96, 97px 0 0px 8px #8E5C3B, 3px 0px 0px 8px #8E5C3B, 18px 65px #d0ba96, 18px 65px 0px 6px #8E5C3B, 82px 65px #d0ba96, 82px 65px 0px 6px #8E5C3B;
  }
}

/*************Educations and Works section styling*************/

#workandedu {
  background-color: #6D4F69;
  text-align: center;
  position: relative;
  padding: 10% 5%;
  color: #ffffff;
  background-image: url(../images/1.png);
  background-position: top center;
  background-repeat: repeat;
}
#workandedu h1{
  text-align: center;
  font-size: 50px;
  line-height: 70px;
  color: #ffffff;
  padding: 0%;
  margin: 0 auto;
  letter-spacing: 4px;0;
}

/*******TIMELINE styling*************/

.timeline ul {
  padding: 50px 0;
  margin: 0;
  overflow: hidden;
  zoom: 1;
}
.timeline ul li {
  list-style-type: none;
  position: relative;
  width: 6px;
  margin: 0 auto;
  padding-top: 50px;
  background: #fff;
}
.timeline ul li::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: inherit;
}
.timeline ul li div {
  position: relative;
  bottom: 0;
  width: 400px;
  padding: 15px;
  background: #ef7674;
  font-size: 18px;
  line-height: 28px;
}
.timeline ul li div::before {
  content: '';
  position: absolute;
  bottom: 7px;
  width: 0;
  height: 0;
  border-style: solid;
}
.timeline ul li:nth-child(odd) div {
  left: 45px;
}
.timeline ul li:nth-child(odd) div::before {
  left: -15px;
  border-width: 8px 16px 8px 0;
  border-color: transparent #ef7674 transparent transparent;
}
.timeline ul li:nth-child(even) div {
  left: -469px;
}
.timeline ul li:nth-child(even) div::before {
  right: -15px;
  border-width: 8px 0 8px 16px;
  border-color: transparent transparent transparent #ef7674;
}
time {
  font-family: 'Cinzel Decorative', cursive;
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 8px;
}

/*******TIMELINE Effects styling*************/

.timeline ul li::after {
  transition: background .5s ease-in-out;
}
.timeline ul li.in-view::after {
  background: #ef7674;
}
.timeline ul li div {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 2s ease-in-out;
  -moz-transition: all 2s ease-in-out;
  -o-transition: all 2s ease-in-out;
  transition: all 2s ease-in-out;
}
.timeline ul li:nth-child(odd) div {
  transform: translate3d(200px, 0, 0);
}
.timeline ul li:nth-child(even) div {
  transform: translate3d(-200px, 0, 0);
}
.timeline ul li.in-view div {
  font-family: 'Open Sans', sans-serif;
  transform: none;
  visibility: visible;
  opacity: 1;
}

/*************Contact section styling*************/

#contact{
  background-color: #181C2E;
  min-height: 500px;
  text-align: center;
  padding: 10% 0 0 0 ;
}
#contact h1{
  font-size: 55px;
  color: #ffffff;
  line-height: 65px;
  margin: 0 auto;
  width: 100%;
}
#contact h3{
  font-family: 'Open Sans', sans-serif;
  color: #ef7674;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 2px;
  margin: 0 auto;
  padding: 2%;
  text-align: center;
}
.contact-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.mail {
  min-height: 60px;
  padding: 3% 0;
}
.mail a {
  font-family: 'Open Sans', sans-serif;
  padding: 6px 15px;
  text-decoration: none;
  left: auto;
  outline: none;
  border: 2px solid rgb(255,255,255);
  -webkit-border-radius: 40px;
  border-radius: 40px;
  color: rgb(255, 255, 255);
  font-size: 26px;
  line-height: 30px;
  text-decoration: none;
  text-align: center;
  background: rgba(0,0,0,0);
  -webkit-transition: background-color 0.3s cubic-bezier(0, 0, 0, 0), color 0.3s cubic-bezier(0, 0, 0, 0), width 0.3s cubic-bezier(0, 0, 0, 0), border-width 0.3s cubic-bezier(0, 0, 0, 0), border-color 0.3s cubic-bezier(0, 0, 0, 0);
  -moz-transition: background-color 0.3s cubic-bezier(0, 0, 0, 0), color 0.3s cubic-bezier(0, 0, 0, 0), width 0.3s cubic-bezier(0, 0, 0, 0), border-width 0.3s cubic-bezier(0, 0, 0, 0), border-color 0.3s cubic-bezier(0, 0, 0, 0);
  -o-transition: background-color 0.3s cubic-bezier(0, 0, 0, 0), color 0.3s cubic-bezier(0, 0, 0, 0), width 0.3s cubic-bezier(0, 0, 0, 0), border-width 0.3s cubic-bezier(0, 0, 0, 0), border-color 0.3s cubic-bezier(0, 0, 0, 0);
  transition: background-color 0.3s cubic-bezier(0, 0, 0, 0), color 0.3s cubic-bezier(0, 0, 0, 0), width 0.3s cubic-bezier(0, 0, 0, 0), border-width 0.3s cubic-bezier(0, 0, 0, 0), border-color 0.3s cubic-bezier(0, 0, 0, 0);
}
.mail a:hover{
  color: rgba(255,255,255,1);
  background: #ef7674;
}
.social {
  text-align: center;
  min-height: 100px;
}
.social .link {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px dashed white;
  background-clip: content-box;
  padding: 10px;
  transition: .5s;
  color: #D7D0BE;
  margin-left: 15px;
  margin-right: 15px;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2), 0 1px 0 rgba(255, 255, 255, 0.2);
  font-size: 70px;
}
.social .link span {
  display: block;
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.social .link span .fa{
  font: normal normal normal 5px/1 FontAwesome;
}
.social .link:hover {
  -webkit-transform: scale(1.5) rotate(360deg);
  -moz-transform: scale(1.5) rotate(360deg);
  -ms-transform: scale(1.5) rotate(360deg);
  -o-transform: scale(1.5) rotate(360deg);
  transform: scale(1.5) rotate(360deg);
}
.social .link.google-plus {
  background-color: tomato;
  color: white;
}
.social .link.twitter {
  background-color: #00ACEE;
  color: white;
}
.social .link.facebook {
  background-color: #3B5998;
  color: white;
}
span.fa.fa-facebook-square,
span.fa.fa-google-plus-square {
  font-size: 30px;
}

/*************Paper plane and Clouds styling*************/

.frame {
  width: 500px;
  height: auto;
  margin: 15% auto 0;
  position: absolute;
  width: 100%;
}
svg {
  max-width: 100%;
  height: auto;
  display: block;
}
/*Paper Plane*/
/*Paper Plane: Container*/
.plane-container {
  width: 200px;
  margin: 0px auto;
  z-index: 3;
}
/*Paper Plane: Image*/
.plane {
  width: 100%;
  height: 60px;
}
/*Paper Plane: Animation*/
.plane-container {
  -webkit-animation: paper-plane-scoping 2s alternate infinite;
  -moz-animation: paper-plane-scoping 2s alternate infinite;
  animation: paper-plane-scoping 2s alternate infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  animation-timing-function: linear;
}
@-webkit-keyframes paper-plane-scoping {
  0% {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    transform: translateY(100px);
  }
}
.plane {
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;

  -webkit-animation: paper-plane-soaring 4s forwards infinite;
  -moz-animation: paper-plane-soaring 4s forwards infinite;
  animation: paper-plane-soaring 4s forwards infinite;
}
@-webkit-keyframes paper-plane-soaring {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  40% {
    -webkit-transform: rotate(15deg);
    -moz-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  50% {
    -webkit-transform: rotate(15deg);
    -moz-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  60% {
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
/*Clouds*/
.clouds {
  overflow: hidden;
  transform: translateZ(0);
  position: relative;
  min-height: 430px;
  padding: 0 0 40px 0;
}
.cloud {
  position: absolute;
  top: 20%;
  width: 300px;
  right: 0;
  opacity: 1;
}
.cloud.front {
  z-index: 9;
}
.cloud.distant {
  z-index: 1;
}
.cloud.background {
  z-index: 1;
}
/*Cloud Sizing*/
.cloud.smaller {
  margin-right: 400px;
  width: 100px;
  margin-top: 50px;
}
.cloud.small {
  margin-right: 200px;
  width: 150px;
}
.cloud.big {
  width: 500px;
  margin-top: 50px;
  margin-right: 150px;
}
.cloud.massive {
  width: 600px;
  margin-top: 20px;
  margin-right: 0px;
}
/*Cloud: Animation*/
.cloud {
  -webkit-animation-name: cloud-movement;
  -webkit-animation-timing-function: linear;
  -webkit-animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 8s;

  -moz-animation-name: cloud-movement;
  -moz-animation-timing-function: linear;
  -moz-animation-direction: forwards;
  -moz-animation-iteration-count: infinite;
  -moz-animation-duration: 8s;

  animation-name: cloud-movement;
  animation-timing-function: linear;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-duration: 8s;
}
.slow {
  -webkit-animation-duration: 9.2s;
  -moz-animation-duration: 9.2s;
  animation-duration: 9.2s;
}
.slower {
  -webkit-animation-duration: 11.2s;
  -moz-animation-duration: 11.2s;
  animation-duration: 11.2s;
}
.slowest {
  -webkit-animation-duration: 13.5s;
  -moz-animation-duration: 13.5s;
  animation-duration: 13.5s;
}
.super-slow {
  -webkit-animation-duration: 20.5s;
  -moz-animation-duration: 20.5s;
  animation-duration: 20.5s;
}
@-webkit-keyframes cloud-movement {
  0% {
    opacity: 0.1;
    -webkit-transform: translateX(300px);
    -moz-transform: translateX(300px);
    transform: translateX(300px);
  }
  10% {

    opacity: 0.7;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-1000px);
    -moz-transform: translateX(-1000px);
    transform: translateX(-1000px);
  }
}

/*************Back to top styling*************/

#back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 9999;
  width: 40px;
  height: 36px;
  text-align: center;
  line-height: 30px;
  background: #ef7674;
  color: #fff;
  cursor: pointer;
  border: 0;
  border-radius: 2px;
  text-decoration: none;
  opacity: 0;
  -webkit-transition: background-color 0.3s cubic-bezier(0, 0, 0, 0), color 0.3s cubic-bezier(0, 0, 0, 0), width 0.3s cubic-bezier(0, 0, 0, 0), border-width 0.3s cubic-bezier(0, 0, 0, 0), border-color 0.3s cubic-bezier(0, 0, 0, 0);
  -moz-transition: background-color 0.3s cubic-bezier(0, 0, 0, 0), color 0.3s cubic-bezier(0, 0, 0, 0), width 0.3s cubic-bezier(0, 0, 0, 0), border-width 0.3s cubic-bezier(0, 0, 0, 0), border-color 0.3s cubic-bezier(0, 0, 0, 0);
  -o-transition: background-color 0.3s cubic-bezier(0, 0, 0, 0), color 0.3s cubic-bezier(0, 0, 0, 0), width 0.3s cubic-bezier(0, 0, 0, 0), border-width 0.3s cubic-bezier(0, 0, 0, 0), border-color 0.3s cubic-bezier(0, 0, 0, 0);
  transition: background-color 0.3s cubic-bezier(0, 0, 0, 0), color 0.3s cubic-bezier(0, 0, 0, 0), width 0.3s cubic-bezier(0, 0, 0, 0), border-width 0.3s cubic-bezier(0, 0, 0, 0), border-color 0.3s cubic-bezier(0, 0, 0, 0);
}
#back-to-top:hover {
  background: #ffffff;
  color: #ef7674;
}
#back-to-top.show {
    opacity: 1;
}

/*************Scrollbar styling*************/
::-webkit-scrollbar {
    width:13px;
    background-color: transparent;
}
::-webkit-scrollbar-track {
    -webkit-border-radius: 10px;
    border-radius: 0px;
    background-color: #a1779b;
}
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background-color: #34082c;
    -webkit-box-shadow: inset 0 0 6px #656565;
}
::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.67);
}