#desktop-menu {
    display: flex;
    height: 100%;
    position: fixed;
    align-items: center;
    background: #ffffff;
    z-index: 100;
}

#desktop-menu .logo {
    width: 50px;
    height: auto;
    margin-bottom: 40px;
}

#desktop-menu .menu-container {
    display: flex;
    flex-direction: column;
     margin-left:50px;
    max-width: 200px;
}

#desktop-menu .menu-tabs {
    display: flex;
    flex-direction: column;
    position: relative;
}

#desktop-menu ul.menu-tabs{
    list-style: none;
    padding: 0;
    max-width: 55px;
}

#desktop-menu ul.menu-tabs li{
    position: relative;
}

#desktop-menu .menu-tabs a{
    text-decoration: none;
    color: #000000;
    font-weight: bold;
    font-size: 1em;
    line-height: 2.8em;
    position: relative;
    transition: all 0.3s;
}

#desktop-menu .menu-tabs .wip span{
    position: absolute;
    background: yellow;
    color: #000000;
    border-radius: 3px;
    padding: 1px 4px;
    font-size: 11px;

    text-transform: uppercase;
    font-weight: bold;
    box-shadow: 5px 5px 10px rgba(0,0,0,.2), 
              5px 5px 25px rgba(0,0,0,.1);
    top: 2px;
    right: -30px;
     transition: all 1s;
}

#desktop-menu a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  border-radius: 4px;
  background-color: #18272F;
  bottom: -7px;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform .3s ease-in-out;
}

#desktop-menu a:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

#desktop-menu ul:hover > li span,
#desktop-menu ul:hover > li a {
  opacity: 0.3;
}

#desktop-menu ul .wip:hover span,
#desktop-menu ul li a:hover {
  opacity: 1;
}

/************ mobile ***********/
#mobile-menu{
    display: none;
}

#menu-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #ffffff;
    z-index: 10;
    transition: all 0.5s ease;
}

.menu-closed {
    display: block;
    position: absolute;
    color: #000000;
    z-index: 10;
    width: 100%;
     padding-top: 30px;
     
}

#stickyMenu {
    position: absolute;
     top: 0;
     background-color: #ffffff;
    
     border-bottom-right-radius: 20px;
     border-bottom-left-radius: 20px;
  }

  .sticky {
    position: fixed !important;
    z-index: 10; 
     padding: 20px 0px 20px 0px;
     transition: all 0.5s;
     border-bottom: 10px solid #222222;
  }


.menu-open {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 103%;
    color: #000000;
    z-index: 10;
    overflow: auto;
}


.top-menu .big-menu {
     display: none;
     width: 100%;
     margin: auto;
      padding: 20px 30px;
}


.top-menu .menu-container {
     display: flex;
     flex-wrap: wrap;
      align-items: flex-end;
     align-content: space-between;
     width: 100%;
    height: 100%;
}

.top-menu .menu-header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 0px 30px 0 40px;

}

.top-menu .menu-header .logo {
    width: 50px;
    height: auto;
}

.hide {
    display: none !important;
}

.top-menu .menu-cross {
    display: none;
     width: 90px;
}

.top-menu .menu-burger {
    display: flex;
    align-items: center;
     width: 90px;
}

.top-menu img.open-btn{
    width: 40px;
    height: auto;
}

.top-menu img.close-btn{
    width: 40px;
    height: auto;
    transition: all 0.6s ease;
    transition-delay: 0.1s;
}

.top-menu img.close-btn:hover{
    rotate: 90deg;
}

.top-menu .menu-text-open,
.top-menu .menu-text-close {
    color: #000000;
    text-transform: uppercase;
    margin-right: 15px;
    font-size: 13px;
    cursor: pointer;
}


.menu-open .two-column-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: #000000;
    width: 100%;
    height: 65%;
    padding-bottom: 50px;
    position: relative;

}


.menu-open .left-column {
    position: relative;
   flex: 3;
}

.menu-open .right-column {
    flex: 1;
}

.menu-open .left-column a {
    text-decoration: none;
    color: #000000;
    font-size: 15vw;
    line-height: 0.8;
    font-weight: 900;
}

.menu-open .left-column .wip{
    position: absolute;
    background: yellow;
    color: #000000;
    border-radius: 3px;
    padding: 2px 4px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    box-shadow: 5px 5px 10px rgba(0,0,0,.2), 
              5px 5px 25px rgba(0,0,0,.1);
    top: 2px;
     transition: all 1s;
}


.menu-open .left-column a:hover {
    opacity: 0.5;
}


.menu-open .sub-menu-container {
    background-color: #ffffff;
    padding: 30px 2vw;
    border-radius: 20px;
    border-bottom: 10px solid #222222;
    border-right: 10px solid #222222;
}

.menu-open .sub-menu-container h2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8vw;
    font-weight: normal;
    text-transform: uppercase;
    font-size: 13px;
}

.menu-open .menu-icon {
    margin-left: auto;
    width: 8px;
}

.menu-open .right-column a {
    display: flex;
    align-items: center;
}

.menu-open .right-column a img {
    width: 18px;
    height: auto;
    position: absolute;
    margin-left: 0.3vw;
}


.menu-open .sub-menu-container a {
    display: block;
    text-decoration: none;
    color: #000000;
    margin-bottom: 10px;
    font-size: 2.4vw;
    line-height: 0.8;
    font-weight: bold;
    text-transform: uppercase;
}

.menu-open .sub-menu-container a:hover {
    opacity: 0.5;
}


.menu-open .horizontal-sub-menu {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 20px 10px;
    padding-bottom: 30px;
     width: 100%;
     line-height: 18px;
}

.menu-open .sub-menu-column {
    text-transform: uppercase;
}

.menu-open .sub-menu-column p {
    margin: 0;
    font-size: 0.8em;
    text-align: right;
}

.menu-open .sub-menu-column a {
    margin-right: 10px;
    font-size: 0.8em;
    color: #000000;
    text-decoration: none;
}

.menu-open .sub-menu-column a:hover {
    opacity: 0.5;
}

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

}

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

#desktop-menu{
    display: none;
}

#mobile-menu{
    display: block;
}
}


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

#mobile-menu .period-color{
    margin-left: 2px;
    width: 15px;
    height: 15px;
    border: 2px solid #000000;
}
    
.menu-open .two-column-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
}

.menu-open .left-column {
   width: 100%;
   margin: 80px 0 30px;
}

.menu-open .right-column {
    width: 100%;
}

.menu-open .left-column a{
    margin-bottom: 10px;
}

.menu-open .sub-menu-container {
    padding-top: 20px;
    padding-left: 20px;
}

.menu-open .sub-menu-container a {
    font-size: 1.2em;
    line-height: 1.2em;
}

.menu-open .horizontal-sub-menu {
    flex-direction: column-reverse;
    align-items: flex-start;
      padding: 20px 2px;
}

.menu-open .horizontal-sub-menu .copyright{
    display: none;
}

.menu-open .sub-menu-column a {
    margin-right: 15px;
}

.menu-open .sub-menu-column p {
    padding: 0;
}

.menu-open .sub-menu-column{
    margin: 0;
     margin-bottom: 20px;
}

.top-menu .menu-header {
    padding-bottom: 0px;
}

}

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

.menu-open .left-column a {
    font-size: 18vw;
    line-height: 1;
}

}

/************ FOOTER ***********/


footer {
    position: relative;
    margin-top: 30px;
    padding: 50px 50px;   
    background: #ffffff;
    z-index: 2;
}

footer .footer-column {
    width: 30%; 
}


footer .footer-column ul,
footer .footer-subcolumn ul {
    list-style: none;
    padding: 0;
}


footer .footer-column p {
    margin: 5px 0;
    color: #000000 !important;
    font-size: 0.8em;
}

footer .footer-subcolumn {
    width: 50%;
    float: left;
}

footer .main_tabs{
    font-weight: bold;
    font-size: 1em;
    line-height: 2em;
    width: 40%;

}

footer .footer-subcolumn ul li {
     margin-bottom: 13px;
}

footer .footer-subcolumn ul li a {
    text-decoration: none;
    color: #000000;
    
}

footer .footer-subcolumn p {
    margin: 5px 0;
}

footer .button-section {
    display: flex;
}

#overview a.animated-icon,
footer a.animated-icon {
    display: flex;
    align-items: center;
    justify-content: center;
     width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #222222;
    margin-right: 10px;
    text-align: center;
    transition: border-color 0.4s;
}

#overview .circle,
footer .circle{
    position: absolute;
    width: 0px;
    height: 0px;
    border-radius: 50%;
    background-color: #000000;
    transition: all 0.2s;
    z-index: -1;
}

footer button{
    margin-bottom: 20px;
}


footer .yellow-circle .circle{
    background-color: #fb93ff;
}

footer .yellow-circle img{
    filter: invert(0) !important;

}

#overview a.animated-icon:hover,
footer .top:hover a.animated-icon,
footer .presentation:hover a.animated-icon,
footer a.animated-icon:hover {
    border-color: transparent;
}

#overview a.animated-icon:hover .circle,
footer .top:hover .circle,
footer .presentation:hover .circle,
footer a.animated-icon:hover .circle{
    width: 35px;
    height: 35px;
}

#overview a.animated-icon:hover img,
footer .top:hover img,
footer .presentation:hover img,
footer a.animated-icon:hover img{
    filter: invert(1);
     padding: 6px;  
}

#overview a.animated-icon img,
footer a.animated-icon img {
    padding: 8px;
    transition: all 0.1s;
}



footer .horizontal-sub-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px; 
}


footer .subscribe{
margin-top: 20px;
   width: 30%;
}

footer .social{
    margin-top: 20px;
     width: 30%;
}

footer .sub-menu-column {
    display: flex;
}

footer .sub-menu-column a {
    margin-right: 10px; 
    margin-bottom: 15px; 
    color: #707070;
}

.active-footer-link  {
    color: #000000 !important;
    text-decoration: none;
}

.active-footer-link:hover  {
    opacity: 1!important;
}


footer .main_tabs a:hover,
footer .sub-menu-column a:hover {
    opacity: 0.5;
}


footer .footer-subcolumn-right {
    display: flex;
    justify-content: flex-end; 
    align-items: center;

}

footer .footer-subcolumn-right a {
    margin-right: 10px; 
    font-weight: bold;
    color: #000000;
    text-decoration: none;
    font-size: 15px;
}


footer .footer-content {
    display: flex;
    justify-content: space-between;
}

footer .horizontal-menu-wrapper {
    width: 100%;
    margin-top: 40px; 
}

footer .horizontal-menu {
    display: flex;
    justify-content: space-between;
}

footer .horizontal-menu-column {
    display: flex;
    align-items: center;
}

footer .horizontal-menu-column p {
    margin: 0;
    font-size: 15px;
}

footer .presentation a {
    color: #000000;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    font-size: 15px;

}


footer .w75{
    width: 75%;
}


footer .subscribe .button-section,
footer .right .button-section{
    margin-bottom: 20px;
}

footer img {
  display: block;
  min-width: 100%;
  height: auto;
  border: 0;
}

footer .w75 img.logo{
    width: 100%;
    max-width: 150px;
    min-width: 0;
}

/* Tooltip text */

.tooltip {
  position: relative;
 }

.tooltip .tooltiptext {
  visibility: hidden;
  width: 60px;
  bottom: 40px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 1px;
  border-radius: 6px;
  position: absolute;
  z-index: 3;
  text-transform: uppercase;
  font-size: 12px;
}

.tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  bottom: 45px;
  transition: all 0.2s;
}

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


}

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

  footer .social{
  display: none;
}

footer .main_tabs{
    width: 100%;
}

footer .subscribe{
    margin-top: 30px;
    width: 100%;   
}


footer .footer-content {
    flex-wrap: wrap;
}


footer .footer-column .right {
    width: 30%; 
}


footer .footer-column p {
    font-size: 0.9em;
}

footer .horizontal-menu-column p,
footer .presentation a {
    font-size: 16px;
}


footer a.animated-icon {
     width: 45px;
    height: 45px;
}

footer a.animated-icon img {
    padding: 13px;
}
 

footer .presentation:hover a.animated-icon,
footer a.animated-icon:hover {
    border-color: transparent;
}

footer .presentation:hover .circle,
footer a.animated-icon:hover .circle{
    width: 48px;
    height: 48px;
}

footer .presentation:hover img,
footer a.animated-icon:hover img{
     padding: 11px;
     
}


footer .tooltip .tooltiptext {
  bottom: 50px;
}

footer .tooltip:hover .tooltiptext {
  bottom: 55px;
}

footer .subscribe .button-section {
    margin-bottom: 30px;
}
}

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




}

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

    footer {
    padding: 50px 30px;   
}



}

