* {
  margin: 0;
  padding: 0;
}

html,
body {
  padding: 0;
  margin: 0;
  height: 100%;
  font-family: "Inter", "Arial", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

.header-wrap .logo {
  padding-left: 80px;
  font-size: 24px;
  font-weight: 600;
}
.header-wrap navbar {
  height: 72px;
  position: fixed;
  background: transparent;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
  color: #fff;
  transition: background-color 0.3s ease-in-out;
}
.header-wrap navbar:after {
  position: absolute;
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  bottom: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.header-wrap navbar nav {
  font-family: Inter;
  font-size: 20px;
  font-weight: normal;
  margin-left: 270px;
  flex: 1;
}
.header-wrap navbar nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 80px;
}
.header-wrap navbar nav ul li {
  position: relative;
  text-align: center;
}
.header-wrap navbar nav ul li a {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0.8;
}
.header-wrap navbar nav ul li a:after {
  content: " ";
  width: 30%;
  height: 2px;
  background: transparent;
  margin: 0 auto;
  transition: all 0.3s ease-in-out;
}
.header-wrap navbar nav ul li:hover a {
  opacity: 1;
}
.header-wrap navbar nav ul li.active a {
  opacity: 1;
}
.header-wrap navbar nav ul li.active a:after,
.header-wrap navbar nav ul li:hover a:after {
  background: #fff;
}

navbar.sticky {
  background: #222326;
  top: 0;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  gap: 10px;
  padding: 50px 0 70px;
  background: #282828;
}

.footer {
  display: flex;
  gap: 10px;
  color: #ffffff;
}

.reserved {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.viewport {
  width: 1905px;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0 auto;
  position: relative;
}

.header-wrap {
  padding-top: 72px;
  background: url("../img/background.png") no-repeat center;
  background-size: cover;
  height: 960px;
  min-height: 960px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.header-wrap .content {
  width: 1100px;
  margin: 0 auto;
}
.header-wrap .content .slogan h1 {
  color: #fff;
  font-size: 60px;
  margin: 0;
  text-align: center;
}
.header-wrap .content .slogan p {
  font-family: Roboto;
  font-size: 22px;
  margin: 0;
}

.section-wrap {
  color: rgba(0, 0, 0, 0.8);
  font-family: Inter;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
}
.section-wrap .section-title {
  margin: 180px 0 57px 0;
  text-align: center;
  font-size: 48px;
  color: #171717;
}

.gallery-wrap .section-title {
  margin: 120px 0 57px 0;
}
.gallery-wrap .gallery {
  display: flex;
  gap: 24px;
  width: 100%;
  color: #fff;
}
.gallery-wrap .gallery h4 {
  font-family: Inter;
  font-size: 30px;
  font-weight: bold;
  margin: 12px 0 32px 0;
  padding: 0;
}
.gallery-wrap .gallery > div {
  flex: 1;
  height: 624px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  text-align: center;
}
.gallery-wrap .gallery > div:first-child {
  background: url("../img/p1.png") no-repeat center;
}
.gallery-wrap .gallery > div:nth-child(2) {
  background: url("../img/p2.png") no-repeat center;
}
.gallery-wrap .gallery > div:nth-child(3) {
  background: url("../img/p3.png") no-repeat center;
}
.gallery-wrap .gallery .content {
  padding-bottom: 40px;
}
.gallery-wrap .gallery .section-wrap {
  text-align: center;
}
.gallery-wrap .gallery .section-wrap h2 {
  font-size: 40px;
  font-weight: 600;
  margin: 0;
}

.section {
  display: flex;
}
.section > div {
  flex: 1;
  overflow: hidden;
}
.section > div > .pic {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section .content {
  color: rgba(23, 23, 23, 0.8);
}
.section .content > * {
  padding-left: 90px;
  max-width: 580px;
  margin: 0;
}
.section .content.content-01 > * {
  padding-left: 290px;
}
.section .content h2 {
  font-size: 48px;
  color: #000;
  font-weight: bold;
  margin: 30px 0;
  line-height: 1.2;
}
.section .icon {
  margin-top: 130px;
}

.contact_us {
  margin-right: 80px;
  background-color: #ffffff;
  padding: 10px 20px;
  border: 1px solid #fff;
  border-radius: 60px;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  color: #000;
  transition: all 0.3s;
}

.contact_us:hover {
  opacity: 1;
}

.yellow {
  color: #ffff3b;
}