@charset "UTF-8";
body {
    margin: 0;
    font-family: arial;
    width: 100vw;
    height: 100vh;
    animation: bugfix infinite 1s;
    -webkit-animation:bugfix infinite 1s
}

@keyframes bugfix {
    from {
        padding:0
    }

    to {
        padding:0
    }
}

@-webkit-keyframes bugfix {
    from {
        padding:0
    }

    to {
        padding:0
    }
}

#overlay-button {
    position: absolute;
    right: 2em;
    top: 3em;
    padding: 26px 11px;
    z-index: 5;
    cursor: pointer;
    user-select:none
}

#overlay-button span {
    height: 2px;
    width: 35px;
    border-radius: 2px;
    background-color: #ffffff;
    position: relative;
    display: block;
    transition:all .2s ease-in-out
}

#overlay-button span:before {
    top: -10px;
    visibility:visible
}

#overlay-button span:after {
    top:10px
}

#overlay-button span:after, #overlay-button span:before {
    height: 2px;
    width: 35px;
    border-radius: 2px;
    background-color: #ffffff;
    position: absolute;
    content: "";
    transition:all .2s ease-in-out
}

#overlay-button:hover span, #overlay-button:hover span:after, #overlay-button:hover span:before {
    background:#f7c849
}

input[type=checkbox] {
    display:none
}

input[type=checkbox]:checked ~ #overlay {
    visibility: visible;
    opacity:1
}

input[type=checkbox]:checked ~ #overlay ul {
    transition: top 2s ease 0s;
    top:0
}

input[type=checkbox]:checked ~ #overlay-button span, input[type=checkbox]:checked ~ #overlay-button:hover span {
    background:0 0
}

input[type=checkbox]:checked ~ #overlay-button span:before {
    transform: rotate(45deg) translate(7px, 7px);
    opacity:1
}

input[type=checkbox]:checked ~ #overlay-button span:after {
    transform:rotate(-45deg) translate(7px, -7px)
}

#overlay {
    height: 100vh;
    width: 100vw;
    background: #eb3323;
    z-index: 2;
    visibility: hidden;
    position: fixed;
    opacity: 0;
    transition:visibility 0s, opacity .5s linear
}

#overlay.active {
    visibility:visible
}

#overlay ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    height: 100vh;
    padding-left: 0;
    list-style-type:none
}

#overlay ul li {
    padding:.5em;
   
}

.nav-item a {
    color: #000;
    text-decoration:none
}

#overlay ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size:1.5em;


}

#overlay ul li a:hover {
    color:#f7c849
}

 /* Styles for the line transition */
 #overlay ul li a:before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 5px;
    background-color: #f7c849;
    transition: width 0.3s ease;
    border-radius:50px;
  }

  #overlay ul li a:hover:before {
    width: 100%;
  }





ul li img {
    padding:10px
}

.header-nav {
    position: absolute;
    z-index: 3;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    left: 0;
    right: 0;
    width: 80%;
    max-width: 1100px;
}

.nav {
    width: 90%;
    padding-top: 0px;
    margin-top: 0px;
    height: 20px;
    float:right;

}

 /* Styles for the menu bar */
 ul.menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }

  ul.menu li {
    color: #fff;
    font-size: 20px;
    display: inline-block;
    margin-right: 10px;
    padding: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
  }

  ul.menu li:hover {
    color: #fc1111;
    background-color: #ffffff;
    border-radius: 5px;

  }

  .menu-active{

        color: #fc1111;
        font-size: 20px;
        display: inline-block;
        background-color: #ffffff;
        padding: 6px;
        border-radius: 5px;
        margin-right: 10px;
        margin-top: 0px;
        

  }

  /* Styles for the line transition */
  ul.menu li:before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 5px;
    background-color: #f7c849;
    transition: width 0.3s ease;
    border-radius:50px;
  }

  ul.menu li:hover:before {
    width: 100%;
  }


#overlay-button {
    display:none
}

#overlay {
    display:none
}



h1 {
    font-family: 'Josefin Sans', sans-serif;
    font-size:1.75em
}

h3 {
    font-family: 'Josefin Sans', sans-serif;
    font-size:1em
}

h4 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: .9em;
    color:#000
}



@media screen and (max-width: 1000px) {


    .nav {
        display:none
    }

    .header-nav {
        margin-top:0
    }

    #overlay-button {
        display: inherit;
        top:1em
    }

    #overlay {
        display:inherit
    }

    .menu-active{
       margin-right:0px;

    }

}

.header-nav {
    padding-top:0
}

@media screen and (max-width: 1200px) {
    .review {
        float: inherit;
        width: 100%;
        max-width: 90%;
        margin-left:40px
    }

    .maintext {
        width:80%
    }
}

.social-item {
    width: 50px;
    background: #ce8283
}

 /* Scroll to top */
 .scroll-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px;
    background-color: #333;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.9s ease, transform 0.9s ease;
    transform: translateY(100%);
    z-index: 1;
  }

  .scroll-to-top.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }