@import url(//fonts.googleapis.com/css?family=Eczar:500,700);
@import url(//fonts.googleapis.com/css?family=Karla:400,700);

@keyframes translate {
  0% {transform: translateX(-20%);}
  100% {transform: translateX(20%);}
}
@-webkit-keyframes translate {
  0% {transform: translateX(-20%);}
  100% {transform: translateX(20%);}
}
@-moz-keyframes translate {
  0% {transform: translateX(-20%);}
  100% {transform: translateX(20%);}
}
@-o-keyframes translate {
    0% {transform: translateX(-20%);}
  100% {transform: translateX(20%);}
}

body {
  font-family: Karla;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #f3dad0;
}

div.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f3dad0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 1s ease;
  z-index: 2;
}

div.loader img {
  animation-iteration-count: 1;
	-webkit-animation-iteration-count: 1; 
  -moz-animation-iteration-count: 1; 
  -o-animation-iteration-count: 1; 
  -webkit-animation: translate 4s cubic-bezier(0.64, 0, 0.28, 0.99);
  -webkit-animation-fill-mode: forwards;
  -moz-animation: translate 4s cubic-bezier(0.64, 0, 0.28, 0.99);
  -moz-animation-fill-mode: forwards;
  -o-animation:  translate 4s cubic-bezier(0.64, 0, 0.28, 0.99);
  -o-animation-fill-mode: forwards;
  animation: translate 4s cubic-bezier(0.64, 0, 0.28, 0.99);
  animation-fill-mode: forwards;
}

div.loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.block {
  display: block;
}

.bold {
  font-weight: 700;
}

.blue {
  color: #1f0d49;
}

blockquote {
  margin-bottom: 2px;
}

blockquote,
.blockquote,
nav a {
  font-family: Eczar;
  font-size: 16px;
  line-height: 1.3;
  color: #1f0d49;
}

.pquote {
  font-family: Karla;
  font-size: 16px;
  line-height: 1.5;
  color: #1f0d49;
}

.radius {
  border-radius: 50%;
    border: 5px solid white;
    width: 75px;
    margin-bottom: 15px;
}

h1 {
  font-family: Eczar;
  font-size: 87px;
  line-height: 1.3;
  max-width: 300px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

h1 .line {
  display: inline-block;
  border-bottom: 8px white solid;
  border-radius: 4px;
  line-height: 1;
}

.dash {
  display: inline-block;
  position: relative;
}

.dash:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-image: url(underline.png);
  background-repeat: repeat no-repeat;
  border-radius: 5px;
}

.welcome .container {
  display: flex;
  flex-direction: column;
  padding: 50px 0;
  justify-content: space-evenly;
  align-items: center;
  min-height: 100vh;
}

.welcome p {
  font-size: 23px;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 10px;
  text-align: center;
  padding-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
}

.start-description {
  margin: 0 auto 0 auto;
}

.start-description a {
  font-family: Eczar;
  text-decoration: none;
  background-color: #ffffff;  
  padding: 20px 30px;
  border-radius: 34px;
  display: inline-block;
  transition: all 0.5s ease;
  border: 3px solid rgba(255,255,255,1);
}

.start-description a:hover {
  background-color: rgba(255,255,255,0);
  border: 3px solid rgba(255,255,255,1);
  color: #ffffff;
}

h2 {
  font-family: Eczar;
  font-size: 32px;
  line-height: 1.3;
  color: #f3dad0;
  margin-bottom: 30px;
}

h3 {
  font-family: Eczar;
  font-size: 26px;
  line-height: 1.6;
  color: #1f0d49;
}

.margin-top-bottom {
  margin-top: 15px;
  margin-bottom: 35px;
}

.margin-top-bottom a {
  border-bottom: #1f0d49 2px solid;
  text-decoration: none;
  color: #1f0d49;
  transition: all 0.5s ease;
}

.margin-top-bottom a:hover {
  opacity: 0.75;
  border-bottom: rgba(31,13,73,0.6) 2px solid;
}

.send-email a {
  background-color: #1f0d49;
  border-color: #1f0d49;
  color: #f3dad0;
  font-family: Karla;  
  margin-bottom: 25px;
  transition: all 0.5s ease;
}

.send-email a:hover {
  color: #1f0d49;
  border-color: #1f0d49;
}

.container {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 30px;
}

header {
  width: 100%;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 2;
  background-color: #ffffff;
  box-shadow: 0px 0px 4px rgba(0,0,0,0);
  padding: 30px 0;
  transform: translateY(-100%);
  transition: all 0.5s ease;
}

.open {
  transform: translateY(0%);
  box-shadow: 0px 0px 4px rgba(0,0,0,0.4);
}

.welcome {
  background-image: url(van-home-11.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  color: #ffffff;
}

.fixed-nav {
  padding: 50px 0;
}

nav {
  display: flex;
  justify-content: space-between;
}

nav a {
  text-decoration: none;
  border-bottom: 3px solid #f3dad0;
  padding-bottom: 2px;
  transition : all 0.5s ease;
}

.cook {
  width: 70%;
  right: 50%;
  transform: translateX(55%);
}

nav a:hover {
  border-bottom: 3px solid rgba(31, 13, 73, 0.7);
  color: rgba(31,13,73,0.7);
}

.description {
  padding-bottom: 40px;
}

.description .one-third {
  padding: 30px 40px 30px 40px;
}

.description h2 {
  margin-bottom: 14px;
}

.description .container,
.bigpart .container {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.one-third {
  width: 33.33%;
  padding: 50px 40px 30px 40px;
  background-color: #f3dad0;
}

.two-third {
  padding-left: 35px;
  width: 66.66%;
}

.separator {
  background-color: #f3dad0;
  padding: 35px 0 40px;
  text-align: center;
  color: #1f0d49;
}

.separator p {
  max-width: 890px;
  margin-right: auto;
  margin-left: auto;
}

.bigpart {
  padding: 40px 0 45px 0;
}

.inter-margin {
  padding: 40px 0 0 0;
}

.sideblue {
  width: 33.33%;
  padding: 40px 30px;
  background-color: #1f0d49;
  position: relative;
}

.sideblue img {
  position: absolute;
  bottom: 0;
}

.one-half {
  width: 47%;
  padding: 35px 0px 0px 0px;
  background-color: #fff;
}

.right {
  float: right;
}

.left {
  float: left;
}

.electric img {
  bottom: 5%!important;
}

.light-blue {
  background-color: #d9dde8;
}

.contact {
  padding: 45px 0 45px;
}

footer a {
  text-decoration: none;
  color: #f3dad0;
  padding-bottom: 3px;
  border-bottom: 2px solid #f3dad0;
  transition: all 0.5s ease;
}

footer a:hover {
  opacity: 0.7;
}

footer p {
  background-color: #1f0d49;
    text-align: center;
    padding: 10px 0;
  line-height: 1.8;
}

@media(max-width:1050px){
  body {
    font-size: 14px;
  }
  
  .one-third {
    padding: 30px;
  }
  
  .description h2 {
    margin-bottom: 20px;
  }
}

@media(max-width:980px){
  
  .full {
  padding: 40px 30px 40px 30px;
}
  
  h1 .dash {
  background-position: 94% 83%;
}
  .welcome {
    background-position: 50%;
  }
  .one-third {
    width: 100%;
    margin-bottom: 30px;
    padding: 40px 40px 30px 40px;
  }
  .two-third {
    width: 100%;
    padding-left: 0;
  }
  
  .sideblue {
    width: 100%;
    margin-bottom: 30px;
  }
  
  .half {
    padding: 40px 50% 40px 30px;
  }
  
  .sideblue img {
    right: 5%;
    max-width: 45%;
  }
  
  .one-half {
    padding: 30px 0px 0px 0px;
    width: 48%;
  }
  
  .electric img {
    right: 15px;
    bottom: 50%!important;
    transform: translateY(50%);
  }
  
    .welcome {
  background-image: url(van-home-11-tablet.jpg);
}
  
}

@media(max-width:690px){
  .dash:after {
    background-position: center;
  }
  .welcome .container {
    padding: 30px 0;
  }
  
  .welcome p {
    font-size: 16px;
    padding: 5px 60px 15px;
  }
  
  h1 {
     font-size: 65px;
  }
  
  .container {
     padding: 0 25px;
  }
  
  nav {
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
  
  nav a {
    margin-right: 4px;
    margin-left: 4px;
    margin-bottom: 10px;
  }
  
  .fixed-nav {
    padding: 35px 0 25px;
  }
  
  .description {
    padding-bottom: 35px;
  }
  
  .one-third {
    padding: 30px 30px 30px;
    margin-bottom: 25px;
  }
 
  .electric img{
    bottom: 5%!important;
    width: 70%;
  }
  
  h2 {
    font-size: 26px;
    margin-bottom: 15px;
  }
  
  body {
    font-size: 14px;
  }
  
  .one-half {
    width: 100%;
    padding: 25px 0px 0px 0px;
  }
  
  .separator {
    padding: 35px 0 35px;
  }
  
  .sideblue {
    padding: 30px 30px 120px;
  }
  
  .blockquote {
    font-size: 14px;
  }
  
  .sideblue img {
    right: 50%;
    transform: translateX(50%);
    max-width: 60%;
  }
  
  .inter-margin{
    padding: 40px 0 0 0!important;
  }
  
  .full {
    padding: 30px 30px 30px;
  }
  
  .bigpart {
    padding: 30px 0 35px 0;
  }
  
  header {
    padding: 10px 0;
 } 
  
  header nav a {
    font-size: 12px;
  }
  
  .welcome {
  background-image: url(van-home-11-mobile.jpg);
}

}

