body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #29322d;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
  }

::-webkit-scrollbar {
    width: 2px;
    background-color: black;
  }
   
::-webkit-scrollbar-thumb {
    background: grey;
}

.header {
    position: absolute;
    display: flex;
    width: 100%;
    height: 50px;
    top: 10px;
    z-index: 10;
}

.logo {
    position: relative;
    width: 40px;
}

.logo_container {
    display: flex;
    width: 300px;
    justify-content: center;
    align-items: center;
}

.logo_container>a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #e3d1b6;
}

.logo_container>a>span {
    margin-left: 10px;
    margin-right: 10px;
}

.nav{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
}

.nav>ul {
    width: 65%;
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-evenly;
}

.nav>ul>li>a {
    text-decoration: none;
    color: #e3d1b6;
}


.nav * {
    box-sizing: border-box;
    transition: all .35s ease;
  }
  
  .nav li {
    display: inline-block;
    list-style: outside none none;
    margin: .5em 1em;
    padding: 0;
  }
  
  .nav a {
    padding: .5em .8em;
    position: relative;
  }
  
  .nav a::before,
  .nav a::after {
    content: '';
    height: 14px;
    width: 14px;
    position: absolute;
    transition: all .35s ease;
    opacity: 0;
  }
  
  .nav a::before {
    content: '';
    right: 0;
    top: 0;
    border-top: 1px solid #e3d1b6;
    border-right: 1px solid #e3d1b6;
    transform: translate(-100%, 50%);
    border-radius: 7px;
  }
  
  .nav a:after {
    content: '';
    left: 0;
    bottom: 0;
    border-bottom: 1px solid #e3d1b6;
    border-left: 1px solid #e3d1b6;
    transform: translate(100%, -50%);
    border-radius: 7px;
  }
  
  .nav a:hover:before,
  .nav a:hover:after{
    transform: translate(0,0);
    opacity: 1;
  }

  .menu-icon {
    display: none;
  }

  .nav-mobile-overlay {
    width: 100%;
    background-color: rgba(41, 50, 45, 0.9);
    position: fixed;
    height: 100vh;
    top: 0;
    z-index: 10;
    display: none;
  }

  .footer {
    position: relative;
    width:100%;
    background-color: #e3d1b6;
    color: #29322d;
    text-align: center;
  }

  .posfixed {
    overflow: hidden;
  }

  .footer-info-left {
    position: relative;
    margin-top: 10px;
    margin-left: 30px;
    float: left;
    width: 250px;
    display: inline-block;
    text-align: left;
  }

  .footer-info-right {
    position: relative;
    margin-top: 10px;
    margin-right: 5px;
    width: 280px;
    display: inline-block;
    float: right;
    text-align: end;
  }

  .footer-info-right>p>a {
    text-decoration: none;
    color: #29322d;
  }

  .footer-info-center {
    position: relative;
    display: inline-block;
    margin-top: 10px;
    text-align: center;
    width: 250px;
  }

  .media-connection {
    position: relative;
    text-align: center;
    margin-top: 10px;
    padding-bottom: 5px;
  }

  .media-link {
    margin: 30px;
  }

  .media-link>img {
    cursor: pointer;
    transition: all .2s ease-in-out;
  }

  .media-link>img:hover {
    transform: scale(1.2);
  }

  .media-link>img {
    width: 40px;
  }

  .copyright-info {
    padding-bottom: 5px;
  }

  .footer-info-right {
    box-sizing: border-box;
    transition: all .35s ease;
  }
  
  .footer-info-right p {
    display: inline-block;
    list-style: outside none none;
    margin: .5em 1em;
    padding: 0;
  }
  
  .footer-info-right a {
    padding: .5em .8em;
    position: relative;
  }
  
  .footer-info-right a::before,
  .footer-info-right a::after {
    content: '';
    height: 14px;
    width: 14px;
    position: absolute;
    transition: all .35s ease;
    opacity: 0;
  }
  
  .footer-info-right a::before {
    content: '';
    right: 0;
    top: 0;
    border-top: 1px solid #29322d;
    border-right: 1px solid #29322d;
    transform: translate(-100%, 50%);
    border-radius: 7px;
  }
  
  .footer-info-right a:after {
    content: '';
    left: 0;
    bottom: 0;
    border-bottom: 1px solid #29322d;
    border-left: 1px solid #29322d;
    transform: translate(100%, -50%);
    border-radius: 7px;
  }
  
  .footer-info-right a:hover:before,
  .footer-info-right a:hover:after{
    transform: translate(0,0);
    opacity: 1;
  }

  @media only screen and (min-width: 2600px) {
    .header {
        left: 0;
        right: 0;
        margin: auto;
        max-width: 2600px;
    }

    .footer {
        max-width: 2600px;
        margin: auto;
    }
}

@media only screen and (orientation: portrait) {
    .nav {
      display: none !important;
  }
    .logo {
      width: 30px !important;
  }

    .logo_container {
      justify-content: flex-start !important;
  }

    .media-link>img {
      width: 30px !important;
  }

    .footer-info-left {
      width: 45%;
      margin-left: 15px;
  }

    .footer-info-center {
      width: 45%;
      float: right;
      text-align: end;
      margin-right: 15px;
  }

    .footer-info-right {
      float: none;
      /*width: 240px;*/
      text-align: center;
      margin-right: 0;
      position: relative;
      margin: auto;
      margin-bottom: 10px;
    }

    .menu-icon, .menu-close {
      display: block;
      width: 36px;
      transition: all .2s ease-in-out;
      cursor: pointer;
      position: absolute;
      top: 7px;
      right: 10px;
    }

    .menu-icon:hover {
      transform: scale(1.2);
    }

    .menu-close:hover {
      transform: scale(1.2);
    }

    .menu-close {
      top: 17px;
    }

    .nav-mobile {
      width: 100%;
      display: flex;
      align-items: center;
      height: 100vh;
  }
  
    .nav-mobile>ul {
      width: 100%;
      list-style-type: none;
      padding: 0;
      margin: 0;
      display: inline-grid !important;
      text-align: center;
      padding-bottom: 50px;
  }
  
    .nav-mobile>ul>li>a {
      text-decoration: none;
      color: #e3d1b6;
  }
  
  
    .nav-mobile * {
      box-sizing: border-box;
      transition: all .35s ease;
    }
    
    .nav-mobile li {
      display: inline-block;
      list-style: outside none none;
      margin: .5em 1em;
      padding: 10px;
    }
    
    .nav-mobile a {
      padding: .5em .8em;
      position: relative;
    }
    
    .nav-mobile a::before,
    .nav-mobile a::after {
      content: '';
      height: 14px;
      width: 14px;
      position: absolute;
      transition: all .35s ease;
      opacity: 0;
    }
    
    .nav-mobile a::before {
      content: '';
      right: 0;
      top: 0;
      border-top: 1px solid #e3d1b6;
      border-right: 1px solid #e3d1b6;
      transform: translate(-100%, 50%);
      border-radius: 7px;
    }
    
    .nav-mobile a:after {
      content: '';
      left: 0;
      bottom: 0;
      border-bottom: 1px solid #e3d1b6;
      border-left: 1px solid #e3d1b6;
      transform: translate(100%, -50%);
      border-radius: 7px;
    }
    
    .nav-mobile a:hover:before,
    .nav-mobile a:hover:after{
      transform: translate(0,0);
      opacity: 1;
    }

}
  