* {
  font-family: 'Montserrat', sans-serif;
}

html{
  height: 100%;
  scroll-behavior: smooth;
  font-family: 'Montserrat', sans-serif;
}

body{
  margin: 0;
  position: relative;
  min-height: 100vh;
  background-color: #FFF8F4;
}

a:link {
    color: black;
    text-decoration: none;
}

a:visited {
    color: black;
    text-decoration: none;
}

a:hover {
    color: black;
    text-decoration: none;
}

a:active {
    color: black;
    text-decoration: none;
}

.title{
  font-size: 64px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

#logo>img{
  width: 230px;
  margin: 20px;
  margin-left: 64px;
  margin-bottom: 25px;
}

#header{
  background-color: #2D8B86;
  z-index: 2;
  position: relative;
}

#header_nameAndLogo{
  transition: 0.4s;
}

#header_nameAndLogo>a{
  display: flex;
  align-items: center;
  transition: 0.4s;
}
  
#header_nameAndLogo>a>p{
  font-size: 35px;
}
  
#header_nameAndLogo>a>p>span{
    font-weight: bold;
}
  
#menu{
  display: flex;
}

#menu a{
  color: #FFF8F4;
}

#menuContainer{
  padding-right: 70px;
}

#menu>div{
  margin: 12px;
  margin-bottom: 4px;
  width: 100px;
  text-align: center;
}

#menu>div>p{
  margin-bottom: 4px;
}

#hr {
  width: 20%;
  height: .25rem;
  margin: 0;
  border: none;
  transition: .3s ease-in-out;
  background: #E3AA8A;
}

#header_firstLine{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/*Mobile*/
.mobile_button{
  display: none;
  width: 100%;
}
.mobile_button img{
  width: 50px;
  padding: 20px;
}
.mobile_header{
  position: fixed;
  left: -99999px;
  /* transition: left 0s 525ms,background-color 350ms cubic-bezier(.55,0,.1,1) 175ms; */
  transition: left 0s,background-color 350ms cubic-bezier(.55,0,.1,1);
  top: 0;
  bottom: 0;
  background-color: #FFF8F4;
  z-index: 500;
  width: 100%;
  animation: anim-opacity-99 525ms linear;
}
.mobile_main{
  width: 80%;
  background-color: #2D8B86;
  height: 100%;
  padding: 8px;
  transform: translate3d(-100%,0,0);
  transition: transform 350ms cubic-bezier(.55,0,.1,1);
}
.mobile_main a{
  color: #FFF8F4;
}
.mobile_header img{
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
}
  



#mainContainer{
  width: 1400px;
  padding-bottom: 100px;
}

/*footer*/
footer{
    display: flex;
    background-color: #E3AA8A;
    justify-content: center;
    align-items: center;
    height: 300px;
    color: #FFF8F4;
    padding-top: 0;
    position: absolute;
    bottom: 0;
    width: 100%;
    font-size: 22px;
    z-index: 3;
}

footer hr{
  height: 2px;
  width: 54%;
  background-color: #FFF8F4;
  border: none;
}

footer a{
  color: #FFF8F4!important;
}

#footer_left a{
  padding-left: 24px;
  position: absolute;
  top: 44px;
  left: 0;
}

#footer_left img{
  height: 64px;
}

#footer_middle{
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: space-evenly;
}

#footer_middle a:hover{
  opacity: 0.5;
}

#footer_right{
  height: 100%;
}
#footer_right img{
  position: absolute;
  height: 82%;
  right: 0;
  bottom: 0;
}

#footer_logo{
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 36px;
}

#footer_logo img{
  margin: 5px;
  width: 42px;
}

#footer_links{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

footer .rights{
  font-size: 12px;
}

@media screen and (max-width: 480px)
{
  .mobile_button{
    display: block;
  }
  #menuContainer{
    padding-right: 0;
  }
  header #logo>img{
    display: none;
  }
  #menu>div {
    display: none;
  }
  #header_firstLine {
    justify-content: center;
  }
  footer{
    flex-direction: column;
    height: auto;
    padding: 20px 0;
  }
  #footer_right{
    display: none;
  }
  #footer_left a{
    padding: 4px;
    top: 0;
    position: relative;
  }
  #footer_middle{
    padding: 4px;
  }
  .title{
    font-size: 32px;
  }
}  

@media (min-width: 480px) and (max-width: 780px)
{
  #menuContainer{
    padding-right: 0;
  }
  header #logo>img{
    display: none;
  }
  #menu>div {
    margin: 4px;
    width: 85px;
  }
  #header_firstLine {
    justify-content: center;
  }
  footer{
    flex-direction: column;
    height: auto;
    padding: 20px 0;
  }
  #footer_right{
    display: none;
  }
  #footer_left a{
    padding: 4px;
    top: 0;
    position: relative;
  }
  #footer_middle{
    padding: 4px;
  }
  .title{
    font-size: 54px;
  }
}  

@media (min-width: 781px) and (max-width: 979px)
{
  #menuContainer{
    padding-right: 0;
  }
  header #logo>img{
    margin-left: 14px;
  }
  #menu>div {
    margin: 4px;
  }
}