html {
  position: relative;
}

body {
  width: 100%;
  font-family: 'Verdana', sans-serif;
  color: #000000;
  background-color: #f7f7f7;
  margin: 0;
  scroll-behavior: smooth;
  /**background-image: url("./img/superbus-bg3.jpeg");**/
  background-size: cover;
  background-position: center;
  /**position: absolute;
  bottom: 0px;
  padding-bottom: 30px;**/
}

html {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

a {
  color: rgb(17, 16, 16);
  text-decoration: none;
  scroll-behavior: smooth;
}

/*** HERO***/

.hero {
  width: 100%;
}

.hero__mob {
  width: 100%;
}

@media (max-width: 743px) {
  .hero {
    display: none;
  }
  
}

@media (min-width: 744px) {
  .hero__mob {
    display: none;
  }
  
}


#hero {
  background-color: #080808;
}

/*** MAIN ***/


#main {
  display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: #080808;
    background-repeat: no-repeat;
    background-position-y: bottom;
    background-size: contain;
}

.mainlogo {
  width: 80%;
  margin: auto;
  max-width: 350px;
  margin-top: 60px;
}

.singlelogo {
  width: 50%;
  margin: auto;
  max-width: 325px;
  margin-top: 60px;
    margin-bottom: 20px;
}

.qrcode {
  margin: 30px auto;
  width: 60%;
  max-width: 400px;
    /**animation-duration: 2s;
    animation-name: clignoter;
    animation-iteration-count: infinite;
    transition: none;*//
}

/**@keyframes clignoter {
  0%   { opacity:1; }
  40%   {opacity:0.8; }
  100% { opacity:1; }
 }**/

.qrcode__img {
  width: 100%;
  margin: auto;
  /**transition: all 0.3s;**/
  border-radius: 3px;
}

/**.qrcode__img:hover {
  transform: scale(1.1);
  transition: all 0.3s;
  transition-timing-function: ease-in-out;
}**/


.lien {
  margin: 25px auto;
    background-color: #e24220;
    padding: 15px 25px;
    color: white;
    border: 1px solid #fdeec9;
    font-family: bilo, sans-serif;
    font-weight: 600;
    transition: all 0.3s;
}


.lien:hover, .lien2:hover{
  background-color: #f7f7f7;
  color: #e24220;
  border: 1px solid #e24220;

}

.lien2 {
  margin: 25px;
    background-color: #e24220;
    padding: 15px 25px;
    color: white;
    border: 1px solid #fdeec9;
    font-family: bilo, sans-serif;
    font-weight: 600;
    width: 175px;
    text-align: center;
    transition: all 0.3s;
}

.link__block {
  display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 80px;
    justify-content: center;
}

@media (max-width: 743px) {
  .link__block {
      flex-direction: column;
  }

.lien2 {
  margin: 20px;
}
}

#tour {
  display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    margin-bottom: 50px;
}

/*** loader

.loader{
  width: 102px;
  height: 100px;
  border-radius: 100%;
  position: relative;
  margin: auto;
  margin-top: 60px;
}

.loader span{
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: #D8D8D8;
  margin: 35px 5px;
  opacity: 0;
}

.loader span:nth-child(1){
  animation: opacitychange 1s ease-in-out infinite;
}

.loader span:nth-child(2){
  animation: opacitychange 1s ease-in-out 0.33s infinite;
}

.loader span:nth-child(3){
  animation: opacitychange 1s ease-in-out 0.66s infinite;
}

@keyframes opacitychange{
  0%, 100%{
    opacity: 0;
  }

  60%{
    opacity: 1;
  }
}*/



/*** FOOTER ***/

footer {
  box-sizing: border-box;
  padding-top: 20px;
  color: black;
  padding-bottom: 25px;
}

.footer__social {
  display: flex;
  flex-direction: row;
  margin: 0;
  justify-content: center;
}
@media (max-width: 743px) {
  .footer__social__text__name {
    display: none;
  }
  .footer__social {
    flex-direction: column;
    align-items: center;
  }

  .footer__row {
    display: flex;
      flex-direction: row;
      width: 100%;
  }
}

.footer__row {
  display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 80%;
    max-width: 250px;
}


.footer__social__link {
  box-sizing: border-box;
  text-align: center;
  transition: all 150ms;
}
.footer__icon:hover {
  color: rgb(80, 80, 80);
  transition: all 150ms;
}
.footer__social__text {
  font-size: 30px;
}

.footer__icon {
  transition: all 150ms;
}

