﻿@import url('https://fonts.googleapis.com/css?family=Ubuntu&display=swap');

:root {
  --teal-1: #38A89D;
  --teal-2: #4DC0B5;
  --teal-3: #64D5CA;
  --teal-4: #A0F0ED;
  --blue-1: #2779BD;
  --blue-2: #3490DC;
  --blue-3: #6CB2EB;
  --blue-4: #BCDEFA;
  --indigo-1: #7e56b3;
  --indigo-2: #a365cd;
  --indigo-3: #b678d7;
  --indigo-4: #e8b2ff;
  --pink-1: #EB5286;
  --pink-2: #F66D9B;
  --pink-3: #FA7EA8;
  --pink-4: #FFBBCA;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  font-size: 100%;
  font-family: 'Ubuntu', sans-serif;
  color: #14151f;
}
body.mobile-open {
  overflow-y: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
h1 {
  font-size: 2.5vw;
  margin: 20px 0;
}
h2 {
  font-size: 2rem;
  margin: 16px 0;
}
p {
  font-size: .85rem;
  line-height: 1.6rem;
}
.container {
  max-width: 1024px;
  margin: 0 auto;
}
.mobile-nav {
  background: #333;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  transform: translateY(100%);
  z-index: 999;
  transition: transform .3s ease-in .7s;
  display: none;
}
.mobile-open .mobile-nav {
  transform: translateY(0);
  transition: transform .3s ease-out;
}
.mobile-nav .links {
  width: 100%;
  height: 100%;
  text-align: center;
}
.mobile-nav .links a {
  position: absolute;
  left: 50%;
  color: #FFF;
  font-size: 1.5rem;
}
.mobile-nav .links a:nth-child(1) {
  transform: translate(-50%, 28vh);
}
.mobile-nav .links a:nth-child(2) {
  transform: translate(-50%, 39vh);
}
.mobile-nav .links a:nth-child(3) {
  transform: translate(-50%, 50.4vh);
}
.mobile-nav .links a:nth-child(4) {
  transform: translate(-50%, 60vh);
}
nav {
  position: fixed;
  width: 100%;
  background: #F1F5F8;
  padding: .5rem;
  border-bottom: solid 1px #CCC;
  z-index: 9999;
}
nav .container {
  display: flex;
  position: relative;
}
.border{
display:inline-block;
border:2px solid black;
width:24%;
height:300px;
}
.dropdown-lang {
  position:absolute;
  background: transparent;
	list-style: none;
	margin: 0px 0px 0px 3%;
	padding-left: 0px;
	border-radius:7%;
	z-index: 10;
}

.dropdown-lang li {
	color: #fff;
  background: transparent;
	display: block;
	float: left;
	padding:  0rem .4rem 0rem .3rem ;
	position: relative;
	text-decoration: none;
  transition-duration: 0.5s;

}
  
.dropdown-lang li, .dropdown-lang ul {
  color: #fff;


}

.dropdown-lang li:hover {
	cursor: pointer;
}

.lang-flag ul li ul {
	background: transparent;
	visibility: hidden;
  opacity: 0;
  min-width: 0.7 rem;
	position: absolute;
  transition: all 0.5s ease;
/*  margin-top: .2rem;*/
	left: 0;
  display: none;
}

 .lang-flag ul li:hover > ul,
 .lang-flag ul li:focus-within > ul, /* this is the line we add */
 .lang-flag ul li ul:hover {
  visibility: visible;
  opacity: 1;
  display: block;
 background: silver;

}

.lang-flag ul li ul li {
	clear: both;
  width: 55px;
}

nav .logo {
  width: 25vh;
}
nav .logo span:nth-child(1) {
  color: var(--teal-1);
}
nav .logo span:nth-child(2) {
  color: var(--blue-1);
}
nav .logo span:nth-child(3) {
  color: var(--indigo-1);
}
nav .logo span:nth-child(4) {
  color: var(--pink-1);
}
nav .burger {
  position: absolute;
  right: 0;
  top: calc(50% - 15px);
  height: 30px;
  width: 35px;
  cursor: pointer;
  display: none;
}
nav .burger .menu, nav .burger .close {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
nav .burger .menu {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
nav .burger .close {
  z-index: 1;
}
nav .burger .line {
  height: 3px;
  transform-origin: right;
  background: #222;
}
nav .burger .close .line {
  transform-origin: center;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: all .4s ease-in;
}
.mobile-open nav .burger .close .line:first-child {
  transform: rotate(225deg);
  opacity: 1;
  transition: all .6s ease-in 1s;
}
.mobile-open nav .burger .close .line:last-child {
  transform: rotate(-225deg);
  opacity: 1;
  transition: all .6s ease-in 1s;
}
nav .burger .menu .line:nth-child(1) {
  background: var(--teal-1);
  animation: 1s ease-out backwards returnLine1;
}
.mobile-open .burger .menu .line:nth-child(1) {
  animation: .8s ease-in forwards moveLine1;
}
nav .burger .menu .line:nth-child(2) {
  background: var(--blue-1);
  animation: 1s ease-out .2s backwards returnLine2;
}
.mobile-open .burger .menu .line:nth-child(2) {
  animation: .8s ease-in .15s forwards moveLine2;
}
nav .burger .menu .line:nth-child(3) {
  background: var(--indigo-1);
  animation: 1s ease-out .4s backwards returnLine3;
}
.mobile-open .burger .menu .line:nth-child(3) {
  animation: .8s ease-in .3s forwards moveLine3;
}
nav .burger .menu .line:nth-child(4) {
  background: var(--pink-1);
  animation: 1s ease-out .6s backwards returnLine4;
}
.mobile-open .burger .menu .line:nth-child(4) {
  animation: .8s ease-in .45s forwards moveLine4;
}
.no-animation nav .burger .line {
  animation: none !important;
}
nav .links {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
}
.link {
  margin-left: 25px;
  padding: 0 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.link a {
  display: block;
  font-size: 1.2rem;
  transition: color .25s ease-out;
}
.link .underline {
  width: 100%;
  display: flex;
  position: absolute;
  bottom: 5px;
}
.link .underline .part {
  height: 4px;
  flex: 0 0 25%;
  transform: translateY(20px);
  opacity: 0;
  transition: all .2s ease-out;
}
.underline .part:nth-child(1) {
  transition-delay: 0s;
}
.underline .part:nth-child(2) {
  transition-delay: .075s;
}
.underline .part:nth-child(3) {
  transition-delay: .15s;
}
.underline .part:nth-child(4) {
  transition-delay: .225s;
}

.link.teal .part:nth-child(1) {
  background: var(--teal-1);
}
.link.teal .part:nth-child(2) {
  background: linear-gradient(90deg, var(--teal-1), var(--teal-2));
}
.link.teal .part:nth-child(3) {
  background: linear-gradient(90deg, var(--teal-2), var(--teal-3));
}
.link.teal .part:nth-child(4) {
  background: linear-gradient(90deg, var(--teal-3), var(--teal-4));
}
.link.blue .part:nth-child(1) {
  background: var(--blue-1);
}
.link.blue .part:nth-child(2) {
  background: linear-gradient(90deg, var(--blue-1), var(--blue-2));
}
.link.blue .part:nth-child(3) {
  background: linear-gradient(90deg, var(--blue-2), var(--blue-3));
}
.link.blue .part:nth-child(4) {
  background: linear-gradient(90deg, var(--blue-3), var(--blue-4));
}
.link.indigo .part:nth-child(1) {
  background: var(--indigo-1);
}
.link.indigo .part:nth-child(2) {
  background: linear-gradient(90deg, var(--indigo-1), var(--indigo-2));
}
.link.indigo .part:nth-child(3) {
  background: linear-gradient(90deg, var(--indigo-2), var(--indigo-3));
}
.link.indigo .part:nth-child(4) {
  background: linear-gradient(90deg, var(--indigo-3), var(--indigo-4));
}
.link.pink .part:nth-child(1) {
  background: var(--pink-1);
}
.link.pink .part:nth-child(2) {
  background: linear-gradient(90deg, var(--pink-1), var(--pink-2));
}
.link.pink .part:nth-child(3) {
  background: linear-gradient(90deg, var(--pink-2), var(--pink-3));
}
.link.pink .part:nth-child(4) {
  background: linear-gradient(90deg, var(--pink-3), var(--pink-4));
}

.link.teal a:hover {
  color: var(--teal-1);
}
.link.blue a:hover {
  color: var(--blue-1);
}
.link.indigo a:hover {
  color: var(--indigo-1);
}
.link.pink a:hover {
  color: var(--pink-1);
}
.link a:hover + .underline .part {
  opacity: 1;
  transform: translateY(0);
}

section {
  padding: 50px 0;
}
section.main-content {
  padding-top: 140px;
  background: #FFF;
  min-height: 200vh;
}
a:hover {
  text-decoration: underline;
}

/* Hero Unit ----------------------*/
.hero-unit {
  height: 100vh;
/*  padding:5% 0;*/
/*  background: url(https://static.pexels.com/photos/2884/building-vintage-bike-monument.jpg) no-repeat center center;*/
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
}
.hero-unit h1,
.hero-unit h2,
.hero-unit h3,
.hero-unit h4,
.hero-unit h5,
.hero-unit h6 {
  margin-top: -0.5rem;
  margin-bottom: 0;
  color: white;
}
.hero-unit h1 {
  font-weight: bold;
}

.hero-unit hgroup {
  margin: 2rem 0 .5rem;
}
.hero-unit .card-icon { /* front of card */
  display: block;
  margin: 0.5rem auto 0;
  font-size: 2rem;
  color: white;
}
.hero-unit .clients {
  margin: 2rem auto;
}
.hero-unit .clients a {
  color: white;
}
.clients .fa-stack-2x {
  color: gray;
}
.clients:hover .fa-stack-2x {
  color: #333333;
}
.row {
    max-width: 90rem;
    margin-bottom: 30px;
}
/* Card design - front */
.button.large {
  margin: 0;
  padding: .6rem;
}
.button.large a {
  color: white;
  font-size: 1.75rem;
  font-weight: 100;
  margin-top: 2rem;
}
.reciclare{
overflow:auto;
padding:1em;
overflow:hidden;	
}
.reciclare img{
width:4rem; 
float:left;

 }
.reciclare h5{
position:relative;
color: #52ad38;
left:1em;
margin-top:.22em;

}


.background {
  position: fixed;
  bottom: 0px;
  right: 0px;
  width: 50%;
  height: 100%;
  background: #4f7f43;
  -webkit-clip-path: polygon(52% 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(52% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: -1;
  transition: all .8s ease;
}
.background2 {
  position: fixed;
  bottom: 0px;
  right: -20%;
  width: 50%;
  height: 100%;
  background: white;
  -webkit-clip-path: polygon(52% 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(52% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: -1;
  transition: all .8s ease;
}



h1 {
  transition: all 1s ease;
}

h2 {
  font-size: 1.2em;
  text-transform: uppercase;
  margin-top: -20px;
  letter-spacing: 3px;
  font-family: "Open Sans", sans-serif;
  color: #373449;
}

ul {
  font-family: "Open Sans", sans-serif;
  font-size: .8em;
  letter-spacing: 2px;
  display: inline-block;
  padding: 0 45px;
  text-transform: uppercase;
  color: #373449;
}


.highlight {
  background-color: #FFDC7B;
}


.less-margin {
  margin-top: -35px;
}


.css-grid{
  display: grid;
  grid-gap: 0.5em;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-auto-rows: minmax(300px, auto);
  overflow: hidden;
}
.flip-card {
  background-color: transparent;
  perspective: 1000px;
    }
  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.46, 0.03, 0.52, 0.96);
    transform-style: preserve-3d;
    }

 .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }
  .front, .back {
    position: absolute;
    width: 100%;
    height: 100%;
      -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .front {
    color: black;
    z-index: 2;
    padding: .5rem;
    }
   .front img{
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
 
  .back {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fafafa;
    transform: rotateY(180deg);
    z-index: 2;
    }
   .back h4{
      font-family: 'Lato', sans-serif;
      font-size: 2em;
      margin: 10px 0;
    }
   .back p{
      font-size:1.1em;
    }
/* First button color */
.flips-cards .flip-card:first-child > .flip-card-inner .back {
  background-color: rgba(40, 57, 77, 1);
}
.flips-cards .flip-card:first-child > .flip-card-inner .front{
  background-color: rgba(40, 57, 77, 1);
}

/* Second button color */
.flips-cards .flip-card:nth-child(2) > .flip-card-inner .back{
  background-color: rgba(109, 193, 202, 1);
}
.flips-cards .flip-card:nth-child(2) >  .flip-card-inner .front{
  background-color: rgba(109, 193, 202, 1);
}

/* Third button color */
.flips-cards .flip-card:nth-child(3) > .flip-card-inner .back {
  background-color: rgba(211, 81, 45, 1);
}
.flips-cards .flip-card:nth-child(3) >  .flip-card-inner .front{
  background-color: rgba(211, 81, 45, 1);
}

/* Fourth button color */
.flips-cards .flip-card:nth-child(6) > .flip-card-inner .back{
  background-color: rgba(235, 167, 36, 1);
}
.flips-cards .flip-card:nth-child(6) >  .flip-card-inner .front{
  background-color: rgba(235, 167, 36, 1);
}

/* Fifth button color */
.flips-cards .flip-card:nth-child(5) > .flip-card-inner .back {
  background-color: rgba(150, 76, 75, 1);
}
.flips-cards .flip-card:nth-child(5) >  .flip-card-inner .front {
  background-color: rgba(150, 76, 75, 1);
}

/* Sixth (last) button color */
.flips-cards .flip-card:nth-child(4) > .flip-card-inner .back {
  background-color: rgba(100, 66, 87, 1);
}
.flips-cards .flip-card:nth-child(4) >  .flip-card-inner .front{
  background-color: rgba(100, 66, 87, 1);

}
/* Eighth (last) button color */
.flips-cards .flip-card:nth-child(7) > .flip-card-inner .back {
  background-color: rgba(82, 75, 150, 1);
}
.flips-cards .flip-card:nth-child(7) >  .flip-card-inner .front{
  background-color: rgba(82, 75, 150, 1);

}
/* Sevent (last) button color */
.flips-cards .flip-card:nth-child(8) >  .flip-card-inner .back {
  background-color: rgba(102, 61, 23, 1);
}
.flips-cards .flip-card:nth-child(8) >  .flip-card-inner .front{
  background-color: rgba(102, 61, 23, 1);

}
.iframe{

}
.mar-top{
margin-top:7%;
}
.product-card {
  max-width: 900px;
  height: auto;
  min-height: 600px;
  padding:3%;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 90px;
  box-shadow: 4px 10px 20px rgba(55, 52, 73, 0.4);
    color: #919495;
 text-align: left;
  position: relative;
}

.product-details {
  width: 100%;
  float: left;
  height: 100%;
  padding: 10px;
  }
 .product-details h1 {
    font-family: "Work Sans", sans-serif;
    color: #a6bba0;
    text-transform: uppercase;
    font-size: 2.2vw;
    font-weight:bold;
    line-height: 1.4;
    text-shadow: 2px 1px 0px rgba(55, 52, 73, 0.9);
    top:15px;
    margin-bottom:15px;
      }
.product-details p {
    font-family: "Open Sans", sans-serif;
    font-size: .8em;
    letter-spacing: 2px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #373449;
    
        }
  .product-details .look {
  position: absolute;
  color: #EDEDED;
  width:7%;
  opacity: .9;
  right: 4%;
  bottom: 4%;
  font-size: .3em;
  white-space: nowrap;
/*  transform: rotate(90deg);*/
}
      
.product-image {
  position: absolute;
  top: 42%;
  left:10%;
    z-index: 10;
  }
 .product-image img {
    max-width: 390px;

  }

@media (max-width: 900px) {
  .product-card {
    margin-left: 20px;
    margin-right: 20px;
  }
  .hero-unit hgroup {
    margin: 2.6rem 0 .2rem;
}
}

@media (max-width: 540px) {
  .product-card {
    overflow: hidden;
    margin-bottom: 50px;
  }
  .product-details {
    width: 100%;
        background-color: rgba(255, 255, 255, 0.5);
  }
  .product-details p {
    line-height: 1;    
        }
    .product-image {    
top: 40%; 
left:0px;
  }

}

@media (max-width: 440px) {
  .product-card {
  min-height:480px;
  }
    .product-details {
         width: 100%;
    margin-top: 74%;
  }
 .product-image {    
top: -30px; 
left:0px;
  }

}
@media screen and (max-width:365px) {
    .product-details {
      width: 100%;
      position: relative;
      color: #333;
      margin-top: 80%;
  }
     .top{
 /*	margin-top: 82%; */
}
.contactmap {

}
}
 
 
 /* Computer */
.grid_1 { width: 6.5%; } 
.grid_2 { width: 15%; } 
.grid_3 { width: 23.5%; } 
.grid_4 { width: 32%; } 
.grid_5 { width: 40.5%; }
.grid_6 { width: 49%; } 
.grid_7 { width: 57.5%; } 
.grid_8 { width: 66%; } 
.grid_9 { width: 74.5%; } 
.grid_10 { width: 83%; } 
.grid_11 { width: 91.5%; } 
.grid_12 { width: 100%; } 

.grid_1,
.grid_2,
.grid_3,
.grid_4,
.grid_5,
.grid_6,
.grid_7,
.grid_8,
.grid_9,
.grid_10,
.grid_11,
.grid_12 {
	margin: 0 2% 1% 0;
	float: left;
	display: block;
}

.alpha{margin-left:0;}
.omega{margin-right:0;}



.clear{clear:both;display:block;overflow:hidden;visibility:hidden;width:0;height:0}.clearfix:after{clear:both;content:' ';display:block;font-size:0;line-height:0;visibility:hidden;width:0;height:0}* html .clearfix,*:first-child+html .clearfix{zoom:1}




/* Mobile */
@media screen and (max-width : 480px) {

.grid_1,
.grid_2,
.grid_3,
.grid_4,
.grid_5,
.grid_6,
.grid_7,
.grid_8,
.grid_9,
.grid_10,
.grid_11,
.grid_12 {
	width:100%;
}

}

/* Slide 5 */
#slide5 {
  margin-left: 20px;
    margin-right: 20px;
	padding: 20px 0 20px 0;
	}
.contactmap {
	background: #70796d;
	border-radius: 4px;
}
#slide5 h2 {
	margin: 13px 0 0 30px;
	color: #fff;
	font-size: 1.2em;
}
#slide5 h4 {
	margin: 10px 0 10px 30px;
	color: #fff;
	font-size: .9em;
}
hr{
	margin: 1.1rem 1.25rem 1.1rem;
}
#slide5 p {
	line-height: 150%;
	color: #fff;
	padding: 5px 0 0 30px;
}
.contactype {
	position: relative;
	cursor: pointer;
	color: #fff;
	text-shadow: 0 1px 1px rgba(0,0,0,0.1);
	text-align: center;
	background-color: #c3c3c3;
	border-radius: 5px;
	height: 100px;
	float: left;
	transition: all .3s ease-in;
}
.contactype p {
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: -7.5px;
	left: 0;
	padding: 0 !important;
}
.contactype:hover,.contactype.active {
	background-color: #f48022;
}
.contactype div {
	font-size: 4em;
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	transition: all .2s ease-in;
}
.contactmap .grid_8.omega .grid_6 {
	margin: 40px 0 0 220px;
}
.contactmap .information span {
	font-weight: bold;
}
.contactmap {
	height: 425px;
	margin-bottom: 0%;
}
.contactmap .btn{
text-decoration:none;
}
.contactmap .btn:hover{
color: #000000
}
.contactmap .grid_8.omega {
	background-color: #fff;
	height: 100%;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
		margin-bottom: 0%;
}
#contact-car .grid_10.omega {
	margin: 0 auto;
	display: block;
}
#map_canvas {
	margin: 0;
	padding: 0;
	height: 100%;
}
.callus {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 240px;
	margin-left: -155px;
	border-radius: 5px 5px 0 0;
	background-color: rgba(255,255,255,.8);
	color: #000;
	line-height: 1.5em;
	font-size: 1.5em;
	z-index: 99;
	padding: 10px 35px;
	text-align: center;
	animation-delay: 4s;
}
.callus:hover {
	background-color: #fff;
}

.text-left {
  position: absolute;
  bottom: 8px;
  right: 16px;
/*  font-size: 1.8em;*/
}
h4.text-left{
color: white;
text-transform: uppercase;
    font-size: calc(80% + .55vw + .55vh + .55vmin);
text-shadow: 2px 2px 3px rgba(42, 61, 40, 0.9);
}

/*--------------------------------
FOOTER
---------------------------------*/
video {
 width:55vh;
  max-width: 100%;
  height: auto;
}
footer {
     background-color: black;
opacity: .8;
}
.footer {
  display: table;
  width: 100%;
/*  position: relative;
  margin-top:4%;*/
  margin-top: 7%;
  bottom: 0;
  left: 0;
  z-index: -1;
    height: 100%;
} 
 .footer-half{
    width: 100%;
 bottom: 0px;
 left: 0px;
 background-color: black;
opacity: .8;

    }
    
.footer-half .footer-company-name {

    text-align: center;
    color:  silver;
    font-size: calc(50% + .075vw + .075vh + 1vmin);
    font-weight: normal;
    margin-bottom: 0px;
}
 .footer__half {
    width: 50%;
    display: table-cell;
    padding: 100px 140px;
}

.footer__half-1 {
/*    background-image: url('https://image.ibb.co/mRGjDm/section_bg_7.jpg');*/
background-color:black;
opacity:.8;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer__half-2 {
    background-color: black;
    opacity:.8;
}

.footer__big-title {
    margin-top: 0;
    text-transform: uppercase;
    line-height: 40px;
    font-size: 30px;
    margin-bottom: 25px;
    color: #fff;
}
h2.footer__big-title{
    text-transform: uppercase;
  font-size: calc(80% + .4vw + .4vh + .4vmin);
  font-weight:bold;
}
h4.footer__big-title{
    margin-top: 0;
    text-transform: uppercase;
    line-height: 40px;
  font-size: calc(80% + .26vw + .26vh + .26vmin);
    margin-bottom: 25px;
    color: #fff;
}
.footer__title {
    letter-spacing: 1px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
    color: #daa37f;
}

.footer__desc {
    color: #d7d7d7;
    margin-bottom: 25px;
}
/*-------------------------------- */
 
 
/* RESPONSIVE*/
/*---------------------------------*/
@media screen and (max-width:440px){

}
@media screen and (max-width:1024px){
  .sect{
    padding:100px 0;
  }
  .row--margin {
    margin-top: 55px;
}
  .banner__title {
    font-size: 54px;
  }
  .half-sect__first{
    padding:100px;

  }
  .three-img__img{
    padding-bottom: 40%;
  }
  .sect--no-bottom{
    padding-bottom:0px !important;
  }
  .footer__half {
    padding: 90px 120px;
  }
  .sect-t-footer{
    display:none;
  }

}


@media screen and (max-width:991px){
  .sect{
    padding:80px 0;
  }
   .banner__title {
    font-size: 50px;
  }
  .row--margin {
    margin-top: 45px;
}
  .coffee {
    padding: 0 15px;
  }
  .coffe__img{
    width:100%;
  }
  .half-sect__first {
    padding: 80px;
  }
  .last-articles{
        margin-bottom:30px;
  }
  
  .sect__title, .description__title, .footer__big-title {
    line-height: 38px;
    font-size: 28px;
  }
  .footer__half {
    padding: 60px 90px;
}
ul {
    font-size: 3vw;
    padding: 0 15px;
    }
}
@media screen and (min-width:768px){
#slide5 {
margin-top:7%;
}
}
@media screen and (max-width:767px){
  .banner__title {
    font-size: 48px;
}
  .three-img{
    height:auto;
  }
  .sect{
    padding:60px 0;
  }
  .row--margin {
    margin-top: 30px;
}
  .coffee{
    margin-bottom:30px;
  }
  .coffee__img {
    width: 35%;
  }
  .coffee__descr, .sect__subtitle{
    padding: 0 50px;
  }
  .sect__title, .description__title, .footer__big-title {
    line-height: 36px;
    font-size: 26px;
  }
  .half-sect__first {
    padding: 50px;
  }
  .article-pre{
    margin-bottom:15px;
  }
  .footer__half {
    width: 100%;
    display: block;
    padding: 50px 50px;
  }
    .half-sect {
    display: block;
    height: auto;
  }
  .half {
    width: 100%;
    display: block;
  }
  .half-sect__second{
    padding-bottom:60%;
  }
  
 #slide5 {
margin-top:10px;
    margin-bottom: 20px;
}
}

@media screen and (max-width:480px){
  .banner__title {
    font-size: 44px;
  }
  .sect{
    padding:50px 0;
  }
  .sect__title, .description__title {
    line-height: 30px;
    font-size: 22px;
    margin-bottom: 15px;
  }
  .sect__subtitle{
    padding:0;
  }
  .coffee__img {
    width: 65%;
  }
  .coffee__descr, .sect__subtitle {
    padding: 0 15px;
  }
  .best--margin {
    margin-top: 10px;
    margin-bottom: 20px;
  }
  .row--margin {
    margin-top: 15px;
  }
  .best__img {
    width: 44px;
  }
  .best__title {
    margin-top: 15px;
  }
  .three-img__img {
    padding-bottom: 60%;
    width:100%;
  }

  .footer__half {
    padding: 25px 35px 65px;
}
  .footer__desc {
    margin-bottom: 10px;
}

	.contactmap {
    height: 100%;
}
 #slide5 {
margin-top:50px;
}
}
/*    footer  responsive end   */
@media only screen and ( max-width: 40em ) {
	.hero-unit {
		height: 800px;
	}

}
@media only screen and ( max-width: 30em ) {
	.hero-unit h1 {
		font-size: 1.75rem;
	}
	.hero-unit h3 {
		font-size: 1.125rem;
	}
}
@media only screen and ( max-width: 25em ) {
	.hero-unit {
		height: 920px;
	}
	.hero-unit hgroup {
		    margin: 2.6rem 0 0rem 0;
	}
	.hero-unit h1 {
		font-size: 1.35rem;
		padding-bottom: 0.25rem;
	}
	.hero-unit h3 {
		font-size: 0.85rem;
	}
	.hero-unit .card-icon {
		font-size: 1.35rem;
	}
	.hero-unit .card-back .card-icon {
		font-size: 2rem;
		margin: 0;
		padding: 5px 0 20px 5px;
	}
	}
@media (max-width: 768px) {
  .mobile-nav {
    display: initial;
  }
  nav {
    padding: 1rem 2rem;
  }
  nav .burger {
    display: flex;
  }
  nav .links {
    display: none;
  }
}

@keyframes moveLine1 {
  5% {
    transform: translate(0, -3px) rotate(0deg);
  }
  60% {
    transform: translate(-4vw, 27vh) rotate(180deg);
  }
  100% {
    transform: translate(calc(1rem - 50vw), calc(30vh + 4px)) rotate(180deg);
    background: var(--teal-3);
  }
}

@keyframes moveLine2 {
  5% {
    transform: translate(0, -3px) rotate(0deg);
  }
  60% {
    transform: translate(-4vw, 37vh) rotate(180deg);
  }
  100% {
    transform: translate(calc(1rem - 50vw), calc(40vh - 4px)) rotate(180deg);
    background: var(--blue-3);
  }
}

@keyframes moveLine3 {
  5% {
    transform: translate(0, -3px) rotate(0deg);
  }
  60% {
    transform: translate(-4vw, 47vh) rotate(180deg);
  }
  100% {
    transform: translate(calc(1rem - 50vw), calc(50vh - 12px)) rotate(180deg);
    background: var(--indigo-3);
  }
}

@keyframes moveLine4 {
  5% {
    transform: translate(0, -3px) rotate(0deg);
  }
  60% {
    transform: translate(-4vw, 57vh) rotate(180deg);
  }
  100% {
    transform: translate(calc(1rem - 50vw), calc(60vh - 20px)) rotate(180deg);
    background: var(--pink-3);
  }
}

@keyframes returnLine1 {
  0% {
    transform: translate(calc(3.2rem - 50vw), calc(30vh + 4px));
    background: var(--teal-3);
  }
  5% {
    transform: translate(calc(3rem - 50vw), calc(30vh + 4px));
  }
  40% {
    transform: translate(20vw, calc(30vh + 4px));
  }
  60% {
    transform: translate(20vw, 0);
    background: var(--teal-1);
  }
}

@keyframes returnLine2 {
  0% {
    transform: translate(calc(3.2rem - 50vw), calc(40vh - 4px));
    background: var(--blue-3);
  }
  5% {
    transform: translate(calc(3rem - 50vw), calc(40vh - 4px));
  }
  40% {
    transform: translate(20vw, calc(40vh - 4px));
  }
  60% {
    transform: translate(20vw, 0);
    background: var(--blue-1);
  }
}

@keyframes returnLine3 {
  0% {
    transform: translate(calc(3.2rem - 50vw), calc(50vh - 12px));
    background: var(--indigo-3);
  }
  5% {
    transform: translate(calc(3rem - 50vw), calc(50vh - 12px));
  }
  40% {
    transform: translate(20vw, calc(50vh - 12px));
  }
  60% {
    transform: translate(20vw, 0);
    background: var(--indigo-1);
  }
}

@keyframes returnLine4 {
  0% {
    transform: translate(calc(3.2rem - 50vw), calc(60vh - 20px));
    background: var(--pink-3);
  }
  5% {
    transform: translate(calc(3rem - 50vw), calc(60vh - 20px));
  }
  40% {
    transform: translate(20vw, calc(60vh - 20px));
  }
  60% {
    transform: translate(20vw, 0);
    background: var(--pink-1);
  }
}