/* Open Sans */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800&display=swap");

html,
body {
  height: 100%;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
}

*,
*:after,
*:before {
  box-sizing: border-box;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
  margin: 0;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

.wrapper {
  max-width: 440px;
  margin: 0 auto;
}
/* Header */

.header {
  display: flex;
  align-items: center;
  height: 80px;
  width: 100%;
  background-color: #212121;
  background-size: contain;
  padding: 10px 0;
}
.header__inner {
  display: flex;
  justify-content: center;
}
.header__text {
  text-transform: capitalize;
  font-size: 24px;
  color: #fbce93;
  font-weight: 700;
}
.logo {
  width: 100px;
  max-width: 80%;
  display: block;
}
/* Main */

/* .main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background: url(images/img1.png) no-repeat #212121;
  background-position: 0 0;
  background-size: 100% auto;
  position: relative;
} */

.main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background: url(images/img2.jpg) no-repeat #212121;
  background-position: center 0;
  background-size: cover;
  position: relative;
}

.main__inner {
  display: none;
  width: 100%;
  background: rgba(33, 33, 33, 0.8);
  padding: 20px 30px;
  margin-top: 20px;
}
.title {
  max-width: 440px;
  text-transform: capitalize;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 27px;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin: 0 auto;
}
/* Main box */
.main__box__wrapper {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
}
.main__box__title {
  max-width: 310px;
  font-weight: 700;
  font-size: 29px;
  text-align: center;
  text-transform: capitalize;
  color: #ffffff;

  text-shadow: 2px 2px 1px black;
  margin: 0 auto 20px;
}
.main__box {
  display: grid;
  grid-gap: 8px;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 20px;
}
.main__box__button {
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  background: linear-gradient(180deg, #ffef00 0%, #fdc708 100%);
  border-radius: 8px;
  font-weight: 700;
  font-size: 22px;
  color: #212121;
  padding: 17px;
}
.main__box__button:hover {
  background: linear-gradient(180deg, #d2c400 0%, #cea308 100%);
}

/* Footer */

.footer {
  width: 100%;
  background-color: #ffffff;
  /* border: 3px solid #212121; */
  /* background: #212121; */
}
.footer__inner {
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}
.footer__box {
  display: flex;
  justify-content: space-between;
}
.footer__logo {
  display: block;
  max-width: 180px;
}
.footer__main {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.footer__links {
  display: flex;
  flex-direction: column;
}
.footer__links-item {
  text-decoration: none;
  font-size: 18px;
  color: #212121;
  text-align: end;
  margin-bottom: 5px;
}
.footer__links-item:last-child {
  margin-bottom: 0;
}
.footer__text {
  font-size: 12px;
  color: #212121;
  margin-top: 20px;
}

@media (min-width: 760px) and (min-height: 1500px) {
  .wrapper {
    max-width: 100%;
    max-width: 900px !important;
  }
  .header {
    height: 140px;
  }
  .logo {
    width: 200px;
  }
  .main {
    height: 100vh;
    max-height: 100%;
  }
  .title {
    font-size: 30px;
  }
}

@media (min-width: 280px) and (min-height: 800px) {
  .main {
    background-position: center;
    background-size: cover;
    max-height: 660px;
  }
}
@media (min-width: 500px) and (min-height: 800px) {
  .main {
    max-height: 740px;
  }
}
@media (max-width: 550px) {
  .main__inner {
    padding: 20px;
  }
  .title {
    max-width: 100%;
    font-size: 20px;
  }
}
@media (max-width: 400px) {
  .header {
    height: auto;
    padding: 15px 0;
  }
  .header__text {
    font-size: 22px;
  }
  .logo {
    width: 130px;
  }
  .title {
    font-size: 22px;
  }
}

@media (max-width: 340px) {
  .title {
    font-size: 18px;
  }
}
