html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  box-sizing: border-box;

}

body {
  display: block;
  position: relative;
  width: 100%;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  text-align: left;
  color: #FFFFFF;
  background: transparent;
  margin: 0;
  overflow-x: hidden;
}

h1,
.title {
  display: block;
  position: relative;
  font-size: clamp(28px, 5vw, 80px);
  font-weight: 800;
  line-height: 120%;
  text-transform: capitalize;
  text-align: center;
  color: #ffcf37;

}




.header,
.main,
.footer {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  width: 100%;

  padding: 10px;
  margin: 0 auto;
}

.background,
.hero__background,
.background img,
.hero__background img {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.background img,
.hero__background img {
  position: relative;
  object-fit: cover;
  object-position: 100%;
  object-position: bottom;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #05213E;

  padding: 0;
  z-index: 100;

}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  max-width: 1600px;
  max-height: 75px;
  border-radius: 0;
  background: #05213E;
  padding: 20px;
  margin-bottom: 0;
}

.logo {
  display: block;
  position: relative;
  width: 100%;
  transition: all 0.5s;
}

.logo:hover {
  transform: scale(1.2);
}

.logo img {
  display: block;
  position: relative;
  width: auto;
  max-height: 101px;
}

.main {
  padding: 75px 0 0 0;
}


.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 75px);
  padding: 0;
  border-radius: 12px;
  padding: 30px 20px;

}

.hero__data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  max-width: 100%;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  padding: 20px;


}


.hero__data p {
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 400;
  line-height: 150%;
  text-align: center;
  margin-bottom: 0;
}



.hero__title {
  text-align: center;
  align-items: center;
  margin-bottom: 16px;
}

@media screen and (max-width: 1160px) {

  .background img,
  .hero__background img {
    object-position: 100%;
  }
}

@media screen and (max-width: 1056px) {
  .hero__data {
    background: rgba(0, 0, 0, 0.7);
  }
}


@media screen and (max-width: 540px) {

  .hero {
    padding: 10px;
  }


}