html {
  box-sizing: border-box;
}

*, *::before {
  box-sizing: inherit;
}

a {
  text-decoration: none;
  color: inherit;
  font-family: inherit;
  cursor: pointer;
}

button {
  border: none;
  margin: 0;
  padding: 0;
  width: inherit;
  height: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

span {
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  padding: 0;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  position: relative;
}

main {
  display: block;
  margin: 0;
}

::placeholder {
  color: inherit;
}

select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-transform: inherit;
}

button {
  font-family: inherit;
}

.container {
  max-width: 1920px;
  margin-inline: auto;
  padding: 0 2vw;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: url(../img/Background.png) center center/cover no-repeat;
  position: relative;
}

main {
  flex: 1 1 0;
}

a {
  transition: 0.35s;
}

.hero {
  margin-top: 100px;
  position: relative;
  width: 100%;
}
.hero .container {
  position: relative;
}
.hero__inner {
  display: flex;
  gap: 15%;
  align-items: center;
}
.hero__title {
  font-weight: 900;
  font-size: 140px;
  line-height: 1;
  max-width: 400px;
}
.hero__media {
  width: 550px;
  height: 450px;
}
.hero__media-img {
  width: 100%;
  height: 100%;
}
.hero__bottom {
  margin-top: 90px;
  text-align: center;
}
.hero__bottom-text {
  font-size: 50px;
  font-weight: 900;
}

.man {
  object-fit: cover;
  width: 400px;
  position: absolute;
  bottom: 20px;
  right: 20px;
}

@media (max-width: 1640px) {
  .hero__inner {
    gap: 100px;
  }
}
@media (max-width: 1500px) {
  .man {
    width: 300px;
  }
}
@media (max-width: 1234px) {
  .hero__media {
    width: 400px;
    height: 350px;
  }
  .hero__bottom-text {
    font-size: 40px;
  }
}
@media (max-width: 1130px) {
  .hero__title {
    font-size: 110px;
    max-width: 330px;
  }
  .man {
    width: 200px;
  }
}
@media (max-width: 1000px) {
  .hero__media {
    width: 300px;
    height: 250px;
  }
  .man {
    bottom: 50px;
    width: 250px;
  }
  .hero__title {
    font-size: 90px;
    max-width: 270px;
  }
}
@media (max-width: 880px) {
  .hero__inner {
    flex-direction: column;
    gap: 40px;
  }
  .hero__title {
    max-width: 100%;
    font-size: 70px;
    text-align: center;
  }
  .hero__bottom {
    margin-top: 200px;
  }
}
@media (max-width: 660px) {
  .hero {
    margin-top: 50px;
  }
  .man {
    bottom: 130px;
    width: 200px;
  }
}
@media (max-width: 500px) {
  .man {
    display: none;
  }
  .hero__bottom {
    margin-top: 100px;
  }
  .hero__bottom-text {
    font-size: 35px;
  }
  .hero__title {
    font-size: 60px;
  }
}
.header {
  padding-top: 50px;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 10%;
}
.header__logo {
  width: 400px;
}
.header__logo img {
  width: 100%;
  height: 100%;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 50px;
}
.header__nav-link {
  font-weight: 400;
  font-size: 30px;
}

@media (max-width: 1100px) {
  .header__nav-link {
    font-size: 25px;
  }
}
@media (max-width: 1000px) {
  .header__inner {
    gap: 50px;
  }
  .header__nav-link {
    font-size: 20px;
  }
}
@media (max-width: 800px) {
  .header__nav {
    gap: 30px;
  }
  .header__nav-link {
    font-size: 18px;
  }
}
@media (max-width: 700px) {
  .header__inner {
    flex-direction: column;
  }
}
@media (max-width: 500px) {
  .header__inner {
    gap: 20px;
  }
  .header__logo {
    width: 88%;
  }
  .header__nav {
    width: 100%;
    gap: 10px;
    justify-content: space-between;
  }
  .header__nav-link {
    font-size: 4.4vw;
  }
}