ibody{
  font-family: 'Quicksand', sans-serif;
}

html, body {
  min-width: 100%;
  scroll-behavior: smooth;
}

body{
  margin:0px;
  padding: 0px;
  box-sizing: border-box;
}

.top_header{
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  width:100vw;
}
.logo_container{
  margin-left: 6%;
  z-index: 999;
  -webkit-tap-highlight-color: transparent;
}
.line_at_top_container{
  background-color: white;
  height: 5px;
}
.line_at_top{
  margin-left: 10vw;
  margin-right:10vw;
  background-color:#54697e;
}
nav{
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-height: 10vh;
  background-color: white;
  width: 100%;
  z-index: 800;
}
.logo{
  height:7vh;
  min-height: 4vh;
}
.nav_links{
  display: flex;
  justify-content: space-around;
  width: 80%;
  background-color: white;
  list-style: none;
}
.nav_links a{
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 1.2vw;
  text-transform: uppercase;
  display: inline-block;
  justify-content: space-around;
  white-space: nowrap;
  color: black;
  -webkit-transition: .2s all;
  -moz-transition: .2s all;
  -ms-transition: .2s all;
  -o-transition: .2s all;
  transition: .2s all;
  -webkit-tap-highlight-color: transparent;
}
.language_flag{
  background-size: cover;
  background-position: top;
}
.language{
  display: inherit;
}
.language a{
  background-color: rgba(255, 255, 255, 80%);
  width: 100%;
  height: 100%;
  padding: 0.5vh 0.5vw;
}
.active_page{
  border-bottom: 1px solid #54697e;
  transition: 1s;
}
.active_page:hover{
  border-bottom: 1px solid pink;
  transition: 1s;
}
.nav_links a:hover{
  color:pink;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.language_button{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  align-items: center;
  top: 50%;
  left:50%;
}

.burger{
  display: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.burger div{
  width: 25px;
  height: 3px;
  background-color: rgb(0,0,0);
  margin: 5px;
  transition: all 0.3s ease;
}

.dropdown_content a {
  color: black;
  padding: 4vh 4vw;
  text-decoration: none;
  display: block;
  font-size: 1.3vw;
}

.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown_content {
  visibility: hidden;
  transition: 0.2s;
  opacity: 0;
  position: absolute;
  background-color: white;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  top: 105%;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
}

.header_accordion{
  display: none;
}
.header_panel{
  display: none;
}
.products_small_screen{
  display: none;
}
@media screen and (min-width:1025px){
  .dropdown:hover .dropdown_content {
    display: grid;
    visibility: visible;
    transition: opacity 0.2s linear;
    opacity: 1;
  }
}


@media screen and (max-width:1024px){
  body{
    overflow-x: hidden;
  }
  .active_page{
    border-bottom: none;
}
.language{
  display: flex;
  justify-content: space-around;
  width: 100%;
}
.language a{
  padding: 0px !important;
  display: flex;
  align-items: center;
}
.language_flag{
  background-size: cover;
  background-position: top;
  width: 10vh;
  height: 10vh;
  display:flex;
}
  .active_page:hover{
    border-bottom: none;
  }
  .dropdown{
    width: 100%;
  }
  .nav_links{
    position: fixed;
    right: 0px;
    height: 92vh;
    top: 10vh;
    background-color: white;
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    transform: translateX(100%);
    transition: transform 0.2s ease-in;
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .nav_links::-webkit-scrollbar {
    display:none;
}
  .nav_links li{
    opacity: 0;
  }
  .products_wide_screen{
    display: none;
  }
  .products_small_screen{
    display: block;
  }
  .burger{
    display: block;
  }
  .nav_active{
    transform: translateX(0%);
  }
  .nav_links a{
    font-size: 4vw;
    padding:5vh 0vw;
    width: 100%;
  }
  nav{
    justify-content:space-between;
  }
  .logo{
    padding: 0px 0px;
  }
  .burger{
    margin: 0px 10%;
  }
  .header_accordion{
    display: contents;
    background-color: white;
    cursor: pointer;
    padding: 35px;
    width: 100%;
    border: none;
    text-align: center;
    outline: none;
    transition: 0.4s;
    text-decoration: none;
    letter-spacing: 1px;
    font-size: 4vw;
    font-family: 'Quicksand', Helvetica, Geneva;
    text-transform: uppercase;
    display: inline-block !important;
    justify-content: space-around;
    white-space: nowrap;
    color: black;
    -webkit-transition: .2s all;
    -moz-transition: .2s all;
    -ms-transition: .2s all;
    -o-transition: .2s all;
    transition: .2s all;
    -webkit-tap-highlight-color: transparent;
  }

  .active_header, .header_accordion:active {
    background-color: #C1E1FF;
  }


  .header_accordion:after {
    content: "\f107";
    font-family: FontAwesome;
    float: right;
    font-size: 4vw;
  }

  .active_header:after {
    content: "\f106";
  }

  .header_panel{
    display: block;
    padding: 0px 18px;
    background-color: #d5f1ff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
  }
  .header_panel a{
    font-size: 3.5vw;
    width:100%;
  }
}
@keyframes navlinkFade {
  from{
    opacity: 0;
    transform: translateX(50px);
  }
  to{
    opacity: 1;
    transform: translateX(0px);
  }
}
@media screen and (min-width: 2000px) {
  .navlinks a{
     font-size: 30px;
  }
}

  .toggle .line1{
    transform:rotate(-45deg) translate(-5px,6px);
  }

  .toggle .line2{
    opacity: 0;
  }
  .toggle .line3{
    transform:rotate(45deg) translate(-5px,-6px);
  }
