html {
  scroll-behavior: smooth;
}

body {
  font-family: "museo-sans", sans-serif;
  font-weight: 300;
  font-style: normal;
}

/*/////////////////HEADER//////////////////*/

.header {
  position: fixed;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: white;
  box-sizing: border-box;
  padding: 20px;
  justify-content: center;
  z-index: 100;
}

.header-container {
  width: 940px;
  display: flex;
  align-items: center;
}

.header-container-Link {
  display: flex;
}

.header-sideLeft {
  width: 50%;
  display: flex;
  justify-content: flex-start;
}

.header-sideRight {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header-sideLeft img {
  width: 200px;
}

.header-sideRight img {
  width: 35px;
  cursor: pointer;
  margin-right: 15px;
}

.header-btnFly {
  display: flex;
  background-color: #2c3783;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 10px 10px 45px;
  background-image: url(../images/plane.svg);
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: left;
  background-position-x: 15px;
  margin-right: 15px;
}

.header-btnFly-car {
  display: flex;
  background-color: #72253d;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 10px 10px 45px;
  background-image: url(../images/car-white.svg);
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: left;
  background-position-x: 15px;
  margin-right: 15px;
}

/*///////////////END HEADER//////////////////*/

/*//////////////////HOME/////////////////////*/

.section-home {
  display: flex;
  width: 100%;
  height: 700px;
  background-image: url(../images/bg-home.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
}

.home-container {
  display: flex;
  width: 940px;
  padding: 20px;
}

.home-sideLeft {
  width: 50%;
  padding: 275px 0px 0px 0px;
  font-size: 28px;
  font-weight: 700;
  color: white;
}

.home-sideLeft img {
  width: 350px;
}

.home-sideRight {
  width: 50%;
}

/*/////////////////////////////////////////////*/


/*/////////////////////////////////////////////*/

@media only screen and (max-width: 768px) {
  .header-container {
    width: 100%;
  }

  .home-container {
    width: 100%;
  }

  .header-container {
    width: 100%;
  }

  .header-sideLeft {
    width: 20%;
  }

  .header-sideRight {
    width: 80%;
  }

  .section-home {
    background-position-x: -115px;
  }

  .home-container {
    width: 100%;
    flex-direction: column;
  }

  .home-sideLeft {
    width: 100%;
  }

  .home-sideRight {
    width: 100%;
  }

}

@media only screen and (max-width: 425px) {
  .header-container-Link {
    display: none;
    width: 100%;
    position: absolute;
    top: 82px;
    justify-content: center;
    background-color: rgb(218 218 218 / 80%);
    padding: 10px;
    box-sizing: border-box;
  }

  .header-sideLeft {
    width: 50%;
  }

  .header-sideRight {
    width: 50%;
  }
  .header-sideLeft img {
    width: 90%;
  }
  .section-home {
    background-position-x: -295px;
  }

  .home-sideLeft img {
    width: auto;
  }
}

@media only screen and (max-width: 425px) {
  .section-home {
    background-position-x: -365px;
  }
}
