@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700&family=Pacifico&display=swap');

:root {
    --main-color: #f0ad50;
    --main-dark: #255d62;
    --main-superdark: #1d474b;
    --main-light: #fff6e9;
    --light-orange: #ffd6b4;
    --main-green: #;
    --dark-orange: #eb642b;
    --light-green: #4b9ca1;

  }

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
}
p,h1,h2,h3,h4{
    color: var(--main-dark);
}
li {
    list-style: none;
}

a {
    text-decoration: none;
}

.preloader {
    align-items: center;
    background: #255D62;
    display: flex;
    height: 100vh;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    transition: opacity 0.2s linear;
    width: 100%;
    z-index: 9999;
    opacity: 1;
    transform: opacity 1s linear;
    pointer-events: none;
  }
  .preloader svg {
      max-width: 5vw;
  }

/*navbar*/
header{
    position: fixed;
    top:0;
    left: 0;
    width: 100vw;
    z-index: 100;
}
header .nav-fixed {
    width: 100%;
    transition: 0.3s ease-in-out;
    color: var(--main-light)
}

.nav-active {
    background-color: var(--main-light);
    box-shadow: 5px -1px 12px -5px grey;
    color: var(--main-dark) !important;
}


.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 1rem 1.5rem;
    height: 80px;
    color: var(--main-light);
}

.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: var(--main-dark);
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--main-light);
}

.nav-item {
    margin-left: 2rem;
}

.nav-link{
    font-family: "Lato";
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.3s;
    color: inherit;
}
.nav-menu-active{
    color: var(--main-dark);
}
.offer a{
    border: 3px solid var(--main-color);
    background-color: transparent;
    border-radius: 20px;
    color: var(--main-color);
    padding: 8px 15px;
}

.nav-link:hover{
    color: var(--main-color);
}
.offer a:hover{
    color: var(--main-light);
    background-color: var(--main-color);
}
.nav-logo {
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
    color: inherit;
}
.nav-logo span{
    color:var(--main-color);
}
li.lanuage-switcher {
    margin-left: 20px;
}
li.lanuage-switcher a.nav-link {
    font-weight: 200;
    font-size: 0.8rem;
}
#felogo{
    max-height: 25px;
    transform: translateY(3px);
}
.introtitle{
    font-size: 1.5rem;
    font-family: "Poppins", sans-serif;
    text-align: center;
    margin-top: 60px;
    margin-bottom: -30px;
}

/*Footer*/
footer{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: center;
  background: var(--main-superdark);
  color: var(--main-light);
  min-height: 300px;
  align-content: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: -3;
}
footer h2 {
  padding-bottom: 5px;
  margin-bottom: 10px;
  position: relative;
  color: var(--main-light);
}
footer h2::after {
  content: "";
  width: 50px;
  height: 3px;
  background: var(--main-color);
  /* z-index: 2; */
  left: 0;
  position: absolute;
  bottom: 0;
  transition: all 0.3s;
}
footer h2:hover::after{
  width: 150px;
}
footer a {
  display: block;
  color: var(--main-light);
  transition: color 0.3s;
  padding-bottom: 10px;
}
footer a:hover{
  color: var(--main-color);
}
.page-content{
  background: var(--main-light);
  z-index: -2;
  margin-bottom: 300px;
  box-shadow: 0 0 20px 10px var(--main-superdark);
  min-height: 100vh;
}
.nav-logo img{
    margin-bottom: 0 !important;
}
.only-offer{
    padding: 20px 30px !important;
    background: var(--main-color) !important;
    color: var(--main-light) !important;
    font-size: 1.2rem;
    border-radius: 100px !important;
}
/*Media Queries */

@media only screen and (min-width: 768px) {
    .mobile{
        display: none;
    }
}

@media only screen and (max-width: 1000px) {
    .usps{
        grid-template-columns: 1fr 1fr;
    }
    .usp{
        margin-top: 60px;
    }
    .img-box{
      width: 33%;
    }
    .notablet{
      display: none;
    }
}
@media only screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: -100%;
        left: 0;
        flex-direction: column;
        width: 100%;
        border-radius: 0 0 10px 10px;
        text-align: center;
        transition: 0.3s;
        box-shadow:
            0 10px 27px rgba(0, 0, 0, 0.05);
    }
    .nav-fixed{
        background-color: var(--main-light) !important;
        color: var(--main-dark) !important;
    }
    .nav-menu.active {
        top: 4rem;
        background-color: var(--main-light);
        color: var(--main-dark) !important;
    }

    .nav-item {
        margin: 2.5rem 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }
    .navbar{
        justify-content: space-between;
    }

    .hero-image{
        display: none;
    }
    .content-grid{
        grid-template-columns: auto;
    }
    section.infovideo {
        width: 90vw;
    }
    .nomobile{
        display: none;
    }
    .img-box{
      width: 50%;
    }
    .cta button{
      font-size: 1.5rem;
    }
    .page-content{
        margin-bottom: 80vh;
    }
    footer{
        grid-template-columns: auto;
        min-height: 80vh;
        justify-items: baseline;
        padding-left: 10%;
    }
    #felogo{
        display: none;
    }
    .mobilelogo{
        height: 22px;
    }
}

.hidden {
    display: none;
}

/*Cookie Banner */

#cookie-banner {
    padding: 1rem;
    width: calc(100% - 20px);
    text-align: center;
    position: fixed;
    bottom: 10px;
    left: 10px;
    background-color: var(--main-light);
    z-index: 999;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 30%);
}

#cookie-banner div {
    color: var(--main-dark);
    border-radius: 9999px;
    padding: 0.5rem 0.75rem;
    line-height: 1;
    align-items: center;
    display: inline-flex;
}

#cookie-banner div span:first-child {
    text-align: left;
    margin-right: 0.5rem;
    flex: 1 1 auto;
}

span#consent-cookies {
    /* position: absolute; */
    /* top: 15px; */
    /* right: 15px; */
    font-weight: bold;
    background-color: var(--main-color);
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
}
.disabled{
    background-color: var(--main-dark) !important;
    border-color: var(--main-dark) !important;
    cursor: disabled;
}
@media 
(-webkit-min-device-pixel-ratio: 1.5), 
(min-resolution: 144dpi){ 
    html{
        font-size: 18px;
    }
}
