body, html {
    height: 100%;
    margin: 0;
    font: 400 15px/1.8 "Lato", sans-serif;
    color: #777;
  }
  
  .bgimg-1, .bgimg-2, .bgimg-3 {
    position: relative;
    
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  
  }
  .bgimg-1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.30),rgba(0,0,0,0.30)), url(../images/background-1.jpg);
    min-height: 100%;
  }
  
  .bgimg-2 {
    background-image: url("../images/background-2.jpg");
    min-height: 400px;
  }
  
  .bgimg-3 {
    background-image: url("../images/background-3.jpg");
    min-height: 400px;
  }
  
  .caption {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    text-align: center;
    color: #000;
  }
  
  .caption span.border {
    background-color: transparent;
    color: #fff;
    padding: 18px;
    font-size: 40px;
    border: 1px solid white;
  }
  .caption span.border_2 {
    background-color: transparent;
    color: #fff;
    padding: 18px;
    font-size: 25px;
    border: 1px solid white;
  }
  
  .first{
    color: #777;
    background-color:white;
    text-align:center;
    padding:15px 80px;
    padding-bottom: 30px;
    text-align: center;
  }
  .first h3 {
    text-transform: uppercase;
    font-size: 35px;
    color: #111;
  }
  .first p {
    margin-top: 0;
    padding-top: 0;
    font-size: 20px;
  }
  .second{
    color:#ddd;
    background-color:#282E34;
    text-align:center;
    padding:15px 80px;
    padding-bottom: 30px;
    
  }
  .second h3 {
    text-transform: uppercase;
    font-size: 35px;
    color: #ffffff;
  }
  .second p {
    margin-top: 0;
    padding-top: 0;
    font-size: 20px;
  }
  .third{
    color:#ddd;
    background-color:#282E34;
    text-align:center;
    justify-content: center;
    padding:15px 80px;
    padding-bottom: 50px;
  }
  .third h3 {
    text-transform: uppercase;
    font-size: 35px;
    color: #ffffff;
  }
  .third p {
    margin-top: 0;
    padding-top: 0;
    font-size: 20px;
  }
  .between{
    position:relative;
  }
  /* Turn off parallax scrolling for tablets and phones */
  @media only screen and (max-device-width: 1024px) {
    .bgimg-1, .bgimg-2, .bgimg-3 {
      background-attachment: scroll;
    }
  }


.row{
    margin-top: 5%;
    display: flex;
    justify-content: center;
}
.row-phone{
  display: flex;
}
.values-col{
    flex-basis: 33.33%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}
.values-col img{
    width: 100%;
    margin: auto 0;
    display: block;
}
.layer{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}
.layer:hover{
    background: rgba(0, 0, 0, 0.30);
}
.layer h3{
    width: 100%;
    font-weight: 500;
    color: white;
    font-size: 30px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    top: 20%;
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}
.layer:hover h3{
    bottom: 49%;
    opacity: 1;
}

@media(max-width: 700px){
  .first, .second{
    padding-left: 20px;
    padding-right: 20px;
  }
  .row{
    flex-direction: column;
  }

  .layer h3{
  font-size: 20px;
  }

}

/*-----Map---------*/
.map_container{
  width: 100%;
  height: 480px;
  border-radius: 15px;
  overflow: hidden;
  margin: auto;
}

/*---navigation---*/
.logo{
  width: 220px;
  cursor: pointer;
}
.sidenav {
  height: 100vh;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}
.sidenav .bottom{
  position: absolute;
  bottom: 60px;
  left: 50%;
}
.sidenav .bottom a{
  font-size: 20px;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

#main {
  transition: margin-right .5s;
  padding: 16px;
}
.topnav-right {
  margin: 25px 25px;
  float: right;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}

}
@media(max-width: 700px){
  .logo{
      padding: 10px;
      width: 170px;
  }
  .banner{
      height: 100vh;
  }
  .bottom-text{
      display: block;
      padding-bottom: 5px;
  }
}

/*-------Footer-------*/
.footer{
  width: 100%;
  text-align: center;
  padding: 30px 0;
}
.footer h4{
  margin-bottom: 25px;
  margin-top: 20px;
  font-weight: 600;
}
.icons .fa{
  color: #f44336;
  margin: 0 13px;
  cursor: pointer;
  padding: 18px 0;
}
.fa-fire{
  color: #f44336;
}