<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.desktop .hero
{
    position: relative;
    width: 100%;
    min-height: 780px;
    height: 100vh;
    overflow-x: hidden;
}

.desktop .hero .hero-left
{
    position: absolute;
    left: -7%;
    top: 0;
    width: 64%;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 78.125% 100%, 0 100%);
    z-index: 1;
    overflow: hidden;
}

.desktop .hero .hero-right
{
    position: absolute;
    right: -10%;
    top: 0;
    width: 70%;
    height: 100%;
}

.desktop .hero .hero-content
{
    position: relative;
    width: 100%;
    height: 100%;
}

.desktop .hero .hero-content div.img
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-position: center center;
    background-repeat: repeat-x;
    background-size: auto 100%;

    z-index: 0;
    transition-duration: 0.25s;
    transition-timing-function: ease-in-out;
}

.desktop .hero .hero-content div.img.hover
{
    opacity: 0;
    z-index: 1;
}

.desktop .hero .hero-content div.img.reverse
{
    filter: grayscale(100%);
    clip-path: polygon(0 0, 100% 0, 78.125% 100%, 0 100%);
}

.desktop .hero .hero-content:hover div.img.reverse
/*.desktop .hero .hero-content .heading:hover ~ div.img.reverse*/
{
    filter: grayscale(0%) saturate(1.25);
}

.desktop .hero-left:hover + .hero-right .hero-content div.img.default
/*.desktop .hero .hero-content:not(:hover) div.img.default*/
/*.desktop .hero .hero-content:hover heading:hover ~ div.img.default*/
{
    filter: grayscale(100%) saturate(0);
}

.desktop .hero .hero-right .hero-content div.img
{
    background-position: center center;
}

.desktop .hero .hero-content h1
{
    margin: 0;
}

.desktop .hero .hero-content .heading
{
    position: absolute;
    z-index: 2;

    text-align: center;
    width: 400px;
    left: 50%;
    top: 15%;
    margin-left: -190px;
}

.desktop .hero .hero-content .heading h1
{
    padding: 10px 20px;
    background: #0d3542;
    font-size: 27px;
    font-weight: 400;
    font-family: "Avenir Next", "Roboto", sans-serif;
    color: white;
    border-radius: 8px;

    display: inline-block;
    letter-spacing: 5px;
}

.desktop .hero .hero-content .heading p
{
    font-size: 18px;
    font-family: "Avenir Next", "Roboto", sans-serif;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.25);
    font-weight: 400;
    color: #151515;
    line-height: 22px;
    margin: 1em 0;
}

.desktop .hero .hero-right .hero-content .heading p
{
  margin: 1em 0;
}

.desktop .hero .hero-content .heading .action
{
    margin-top: 35%;
}

.desktop .hero .hero-content .heading a.btn
{
    font-size: 22px;
    font-family: "Avenir Next", "Roboto", sans-serif;
    font-weight: 400;
    color: #fff;
    border: 2px solid #f5f5f5;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.65);
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
    padding: 8px 16px;
    display: inline-block;
    width: 240px;
    margin: 5px 0;


    background-color: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);

    transition-duration: 0.2s;
    cursor: pointer;
    box-sizing: content-box; border-radius: 8px
}

.desktop .hero .hero-content .heading a.btn:hover
{
    
    background-color: #00853d;
    opacity: 1;
}


@media screen and (max-width: 900px) {
  .mobile .hero {
    height: 1100px;
  }

.mobile .hero .hero-left {

  left: 0%;
  top: 0;
  width: 100%;
  height: 50%;
  clip-path: none;
  z-index: 1;
  overflow: hidden;
  display: block;
  background: url(https://i.imgur.com/22fooSq.jpg);
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;

  color: white;
  margin-top: 90px;
}

.mobile .hero .hero-right {
  height: 50%;
  width: 100%;
  display: block;
}

.mobile .hero .hero-content
{
    position: relative;
    width: 100%;
    height: 100%;
}

.mobile .hero .hero-content div.img
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-position: center center;
    background-repeat: repeat-x;
    background-size: auto 100%;

    z-index: 0;
    transition-duration: 0.25s;
    transition-timing-function: ease-in-out;
}

.mobile .hero .hero-content div.img.hover
{
    opacity: 0;
    z-index: 1;
}

.mobile .hero .hero-content div.img.reverse
{
    filter: grayscale(100%);
    clip-path: none;
}

.mobile .hero .hero-content:hover div.img.reverse
/*.mobile .hero .hero-content .heading:hover ~ div.img.reverse*/
{
    filter: grayscale(0%) saturate(1.5);
}

.mobile .hero-left:hover + .hero-right .hero-content div.img.default
/*.mobile .hero .hero-content:not(:hover) div.img.default*/
/*.mobile .hero .hero-content:hover heading:hover ~ div.img.default*/
{
    filter: grayscale(100%) ;
}

.mobile .hero .hero-right .hero-content div.img
{
    background-position: center center;
}

.mobile .hero .hero-content h1
{
    margin: 0;
}

.mobile .hero .hero-content .heading
{
    position: absolute;
    z-index: 2;

    text-align: center;
    width: 100%;
    top: 15%;

}

.mobile .hero .hero-left .hero-content .heading {
  top: 5%;
}

.mobile .hero .hero-content .heading h1
{
    padding: 10px 20px;
    background: #0d3542;
    font-size: 27px;
    font-weight: 400;
    font-family: "Avenir Next", "Roboto", sans-serif;
    color: white;

    display: inline-block;
    letter-spacing: 5px;
}

.mobile .hero .hero-content .heading p
{
    font-size: 16px;
    font-family: "Avenir Next", "Roboto", sans-serif;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.25);
    font-weight: 400;
    color: #151515;
    line-height: 22px;
    margin: 1em 0;
    padding-left: 15px;
    padding-right: 15px;
}

.mobile .hero .hero-right .hero-content .heading p
{
  margin: 1em 0;
}

.mobile .hero .hero-content .heading .action
{
    margin-top: 15px;
}

.mobile .hero .hero-content .heading a.btn
{
    font-size: 22px;
    font-family: "Avenir Next", "Roboto", sans-serif;
    font-weight: 400;
    color: #fff;
    border: 2px solid #f5f5f5;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.65);
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
    padding: 8px 16px;
    display: inline-block;
    width: 240px;
    margin: 5px 0;
    border-radius: 8px;

    background-color: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);

    transition-duration: 0.2s;
    cursor: pointer;
    box-sizing: content-box; border-radius: 0
}

.mobile .hero .hero-content .heading a.btn:hover
{
    transform: scale(1.1);
    background-color: #00853d;
    opacity: 1;
}


}
</pre></body></html>