* {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
    background-image: url("/img/bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

a[href^="tel"] {
  color: inherit;
}

.nav {
    width: 100%;
    height: 80px;
    background: #222;
    color: #fff;
}

.left {
    float: left;
    line-height: 80px;
}

.left a {
    color: #fff;
}

.right {
    float: right;
    line-height: 80px;
}

.right p {
    font-size: 20px;
}

@media screen and (max-width: 1200px){
    .left {
        margin-left: 20px;
    }
    .right {
        margin-right: 20px;
    }
}

@media screen and (max-width: 600px){
    .nav {
        height: 120px;
    }
    .left {
        float: none;
        text-align: center;
        line-height: 60px;
        margin: 0px;
    }
    .left h1 {
        font-size: 28px;
    }
    .right {
        float: none;
        text-align: center;
        line-height: 60px;
        margin: 0px;
    }
}

.container {
    max-width: 1200px;
    margin: auto;
}

.box {
    width: 90%;
    background: #fff;
    margin: auto;
    border-radius: 3px;
    box-shadow: 0px 0px 5px;
    padding: 40px;
    margin-bottom: 50px;
    margin-top: 50px;
}

.box h1 {
    text-align: left;
    text-transform: uppercase;
}

@media screen and (max-width: 600px){
    .box h1 {
        font-size: 22px;
    }
}

.box p {
    margin-top: 20px;
    text-align: left;
}

.box h2 {
    text-align: center;
    font-size: 36px;
    padding: 40px;
}

.box h3 {
    text-align: left;
    font-size: 28px;
    text-transform: uppercase;
}

.check_left {
    float: left;
    width: 50%;
}

.check_right {
    float: right;
    width: 50%;
}

.border {
    width: 100%;
    height: 1px;
    background: #525252;
    margin-top: 10px;
}

.box hr {
    width: 50%;
    margin: auto;
}

.gallery-section{
  width: 100%;
  padding: 40px 0;
  background: #fff;
}

.inner-width{
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 0px;
  background: #fff;
}

.gallery-section .gallery{
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: center;
}

.gallery-section .image{
  flex: 25%;
  overflow: hidden;
  cursor: pointer;
}

.gallery-section .image img{
  width: 100%;
  height: 100%;
  transition: 0.4s;
}

.gallery-section .image:hover img{
  transform: scale(1.4);
}

@media screen and (max-width:960px) {
  .gallery-section .image{
    flex: 33.33%;
  }
}

@media screen and (max-width:768px) {
  .gallery-section .image{
    flex: 50%;
  }
}

@media screen and (max-width:480px) {
  .gallery-section .image{
    flex: 50%;
  }
}

.varaa {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 18px;
    background: #144896;
    padding: 10px 20px;
}

.varaa:hover {
    opacity: 0.8;
}

footer {
    background: #222;
    width: 100%;
}

footer p {
    padding: 40px;
    text-align: center;
    color: #fff;
}

footer a {
    color: #ff7979;
}

footer a:hover {
    opacity: 0.8;
}