@charset "UTF-8";
/* DEFAULT */
@media only screen {
  .push-right {
    position: relative;
    right: 0;
  }
  .contact-right {
    height: auto;
    max-width: 565px;
    width: 50vw;
  }
  .grid2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }
  #bg-1 {
    background: #023E36 url("../images/bg-1.webp") no-repeat 50% 0%;
    background-size: cover;
    min-height: 55.5vw;
    padding-bottom: 6vw;
  }
  #bg-2 {
    background: #023E36 url("../images/bg-2.webp") no-repeat 50% 0%;
    background-size: cover;
    border-top: 1px solid #FAC827;
    min-height: 65.5vw;
    padding-bottom: 6vw;
  }
  #bg-3 {
    background: #023E36 url("../images/bg-3.webp") no-repeat 50% 0%;
    background-size: cover;
    border-top: 1px solid #FAC827;
    min-height: 66vw;
    padding-bottom: 6vw;
  }
  #bg-4 {
    background: #023E36 url("../images/bg-4.webp") no-repeat 50% 0%;
    background-size: cover;
    border-top: 1px solid #FAC827;
    min-height: 70vw;
    padding-bottom: 6vw;
  }
}
/* MEGAPIXEL */
@media only screen and (min-width: 2001px) {}
/* DESKTOP */
@media only screen and (max-width: 2000px) {}
/* MOBILE */
@media only screen and (max-width: 700px) {
  .grid2 {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    grid-row-gap: 1px;
  }
}