  body{
    font-family: "Segoe UI", Helvetica, Verdana, sans-serif;
  }
  .logo{
      max-width: 200px;
      height: auto;
  }
  .container {
    margin: auto;
    background: white;
    width: 100% !important;
    height: auto;
    overflow-y: auto;
    padding: 0px;
  }
  
  /* mak images fill their container*/
  img {
    max-width: 100%;
  }
  img:hover {
    cursor: pointer;
  }
  
  /* CSS Grid*/
  .img-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0px;
  }

 .overlay-container {
    display: block;
    position: relative;
    margin-bottom: -10px;
    overflow-y: hidden;
  }
  .overlay-container::before {
    content: attr(data-overlay-text);
    font: 1em/1.5em "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    position: absolute;
    z-index: 1;
    /*On top of parent*/
    top: 35%;
    left: 18%;
    text-align: center;
    color: black;
    background-color: #fff;
    opacity: 0;
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    width: auto;
    padding: 10px 25px;
    margin: 0 auto;
  }
  .overlay-container:hover::before {
    opacity: 1;
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -moz-transform: translateX(-40px);
    -ms-transform: translateX(-40px);
    -o-transform: translateX(-40px);
    -webkit-transform: translateX(-40px);
    transform: translateX(-40px);
    overflow: hidden;
  }

  .footer-div{
      background-color: white;
      padding-top: 42px;
      padding-bottom: 30px;
      text-align: center;
  }
  .footer-ul{
    padding-left: 0px;
    list-style-type: none;
    margin-bottom: 15px;
    margin-left: -15px;
  }
  .footer-ul li{
    display: inline-block;
    margin-right: 15px;
  }
  .footer-ul li a{
    text-decoration: none;
    cursor: pointer;
    color: #343434;
    font-size: 16px;
    font-weight: 500;
    font-family: "Segoe UI", Helvetica, Verdana, sans-serif;
  }
  .footer-ul li a:hover{
    text-decoration: none;
    border-bottom: 1px solid #ededed;
    color: #CABF3F;
  }
  .copyright{
    color: #bdbaba;
    font-size: 15px;
    font-family: "Segoe UI", Helvetica, Verdana, sans-serif;
  }
  #return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #A60309;
    background: rgba(192, 12, 12, 0.8);
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
}
.fa-arr{
    position: absolute;
    top: 12px;
    left: 16px;
    font-size: 25px;
    color: white;
    cursor: pointer;
}

  
  
  .video-overlay {
    position: fixed;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.80);
    opacity: 0;
    transition: all ease 500ms;
  }
  
  .video-overlay.open {
    position: fixed;
    z-index: 1000;
    opacity: 1;
  }
  
  .video-overlay-close {
    position: absolute;
    z-index: 1000;
    top: 15px;
    right: 20px;
    font-size: 36px;
    line-height: 1;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: all 200ms;
  }
  
  .video-overlay-close:hover {
    color: #fa183d;
  }
  
  .video-overlay iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    /* width: 90%; */
    /* height: auto; */
    box-shadow: 0 0 15px rgba(0,0,0,0.75);
  }
  
  /* Media Query for changing grid on bigger screens*/
  
  /* Bigger than Phones(tablet) */
  @media only screen and (min-width: 750px) {
    .img-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  }
  
  /* Bigger than Phones(laptop / desktop) */
  @media only screen and (min-width: 970px) {
    .img-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  }

  @media only screen and (max-width: 550px){
    iframe{
        width:300px !important;
    }
  }

  @media only screen and (max-width: 767px){
    .footer-ul{
      margin-left: 0px;
      padding-left: 10px;
      padding-right: 10px;
    }
  }
  