/* CSSReset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global */

@font-face {
  font-family: "Comfortaa";
  src: url(../fonts/Comfortaa-VariableFont_wght.ttf);
}

.section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 5vw;
}

.container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1vw;
}

.inner *{
  margin-bottom: 20px;
}

.color {
  border-radius: 10px;
  padding: 1vw;
  background-color: #298ddd78;
  background-image: url("https://www.transparenttextures.com/patterns/asfalt-dark.png");
}

.background {
  background-color: #06050d;
  background-image: url("https://www.transparenttextures.com/patterns/gplay.png");
}

.image{
  width: 100%;
  height: 25vw;
  margin-top: 30px;
  object-fit: cover;
  object-position: center;
}

.image:hover{
  width: 110%;
  height: 30vw;
  transition: 2s;
  object-fit: cover;
  object-position: center;
}

.div{
  width: 90%;
  height: 25vw;
  overflow: hidden;
}

.w1 {
  width: 100%;
}

.w2 {
  width: 47.5%;
}

.w3 {
  width: 30%;
}

.section__title {
  margin-bottom: 3vw;
}

h1 {
  font-size: 4em;
  color: white;
  display: block;
  font-family: 'Lobster', cursive;
}

h2 {
  font-size: 2.7em;
  font-family: 'Lobster', cursive;
  text-align: center;
  padding-top: 40px;
}

h3 {
  font-size: 1.9em;
  font-family: 'Lobster', cursive;
  text-align: center;
  margin: 0;
  padding: 0;
}

p {
  font-size: 1.5em;
  text-align: justify;
  font-family: 'Lobster', cursive;
  padding: 5px;
}

.text{
  text-align: center;
}

.text__color {
  color: white;
}

.flex__wrap {
  flex-wrap: wrap;
}

/* Menu */
.menu__section {
  height: 100px;
  background: #2266a1;
  padding-top: 0;
  padding-bottom: 0;
  position: fixed;
}

.menu__section__bottom {
  height: 120px;
  background: #2266a1;
  /*background: #77a5d9;*/
  padding-top: 0;
  padding-bottom: 0;
}

.menu__wrap {
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

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

.menu__link {
  text-decoration: none;
  color: white;
  font-size: 1.9em;
  font-family: 'Lobster', cursive;
}

.menu__link:hover{
  background-color: #184a75;
  padding: 0.5vw;
  border-radius: 15px;
}

.logo {
  height: 100px;
  padding: 5px;
}

/* Banner */
.banner__section {
  height: 100vh;
  background-image: url("picture.jpg");
  background-size: cover;
}

.banner__container {
  height: 100%;
  justify-content: center;
}

.banner__wrap {
  display: flex;
  justify-content: end;
}

.end {
  display: flex;
  justify-content: end;
}

@media (max-width: 1920px) {
  .w3__w3{
    width: 65%;
  }
  p{
    font-size: 1.4em;
  }
  .image {
    height: 23vw;
  }
  .inner{
    margin-bottom: 4.3vw;
  }
}

@media (max-width: 1200px) {
  .w3__w3{
    width: 75%;
  }
  .w2{
    width: 100%;
  }
  .image {
    height: 45vw;
  }
  .inner{
    margin-bottom: 4.3vw;
  }
}

@media (max-width: 1000px) {
  .w3__w3{
    width: 75%;
  }
  .w2{
    width: 100%;
  }
  .image {
    height: 45vw;
    object-fit: cover;
    object-position: center;
  }
  .inner{
    margin-bottom: 4.3vw;
  }
  .menu__link{
    font-size: 1.7em;
  }
}

@media (max-width: 900px) {
  .w3__w3{
    width: 80%;
  }
  .w2{
    width: 100%;
  }
  .image {
    height: 45vw;
    object-fit: cover;
    object-position: center;
  }
  .inner{
    margin-bottom: 4.3vw;
  }
}

@media (max-width: 768px) {
  .w2 {
    width: 100%;
  }
  .w3__w3{
    width: 80%;
  }
  .image {
    height: 50vw;
    object-fit: cover;
    object-position: center;
  }
  .inner{
    margin-bottom: 4.3vw;
  }
  .menu__link{
    font-size: 1.5em;
  }
  .section__title {
    margin-bottom: 5vw;
  }
}