* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Gilroy';
  background-color: #081d26;
  background-image: url("./../img/bg/background.jpg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  color: #fff;
}

/* Header */

.header {
  padding-top: 64px;
  padding-bottom: 953px;
}

.nav-wrapper {
  margin-bottom: 198px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 32px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

img {
  display: block;
  max-width: 100%;
}

.no-scroll {
  overflow-y: hidden;
}

.container-wide {
  max-width: 1790px;
  padding: 0 15px;
  margin: 0 auto;
}

.container {
  max-width: 1492px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  display: flex;
}

.space-between {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

.nav {
  font-weight: 700;
  font-size: 18px;
}

.nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.nav li+li {
  margin-left: 40px;
}

.nav a {
  position: relative;
  color: #fff;
  text-decoration: none;
  transition: color 0.3 ease-in;
  padding-bottom: 5px;
}

.nav a::after {
  position: absolute;
  left: 0;
  bottom: -10px;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #FBD784;
  opacity: 0;
  transition: all 0.3 ease-in;
}

.nav a:hover::after {
  bottom: -10px;
  opacity: 1;
}

.nav a:hover {
  color: #FBD784;
}

.account {
  position: relative;
  padding-left: 30px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  transition: color 0.3 ease-in;
}

.account:hover {
  color: #FBD784;
}

.account::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("./../img/icons/account.svg");
  background-size: contain;
}

.nav-button {
  position: relative;
  z-index: 9;
  display: none;
  height: 25px;
  border: none;
  padding: 0;
  cursor: pointer;
  background: none;
}

.nav-button:focus,
.nav-button:active {
  outline: none;
}

.nav-button-icon {
  position: relative;
  display: block;
  width: 42px;
  height: 5px;
  border: none;
  background-color: #fff;
}

.nav-button-icon::before {
  position: absolute;
  left: 0;
  top: -10px;
  content: "";
  display: block;
  width: 42px;
  height: 5px;
  background-color: #fff;
}

.nav-button-icon::after {
  position: absolute;
  left: 0;
  bottom: -10px;
  content: "";
  display: block;
  width: 42px;
  height: 5px;
  background-color: #fff;
}

.nav-button-close .nav-button-icon {
  background-color: transparent;
}

.nav-button-close .nav-button-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.nav-button-close .nav-button-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

.mobile-nav {
  position: fixed;
  z-index: 8;
  top: 0;
  right: 0;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 320px;
  height: 100%;
  padding: 70px 70px 50px 30px;
  background-color: rgba(11, 29, 38, 0.8);
}

.mobile-nav .nav,
.mobile-nav .account {
  display: block;
}

.mobile-nav .nav ul {
  flex-direction: column;
}

.mobile-nav .nav ul li {
  margin: 0;
  margin-bottom: 25px;
}

/* Hero */

.hero {
  display: block;
  max-width: 980px;
  padding: 0 15px;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  transition: transform 0.6s cubic-bezier(0.660, 0.215, 0.295, 1.640);
}

.hero:hover {
  transform: translateY(-5%);
}

.hero-category {
  margin-bottom: 32px;
  position: relative;
  padding-left: 104px;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.222;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #FBD784;
}

.hero-category::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  content: "";
  width: 72px;
  height: 2px;
  background-color: #FBD784;
}

.hero-title {
  margin-bottom: 32px;
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-weight: 500;
  font-size: 88px;
  line-height: 1.136;
  text-transform: capitalize;
  color: #FFFFFF;
}

.hero-scroll {
  display: inline-block;
  position: relative;
  padding-right: 32px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.222px;
  color: #FFFFFF;
}

.hero-scroll::after {
  display: block;
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 24px;
  background-image: url("./../img/icons/arrow-down.svg");
}

/* Article */

.article {
  margin-bottom: 200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.article:nth-child(even) {
  flex-direction: row-reverse;
}

.article-text {
  position: relative;
  padding-left: 150px;
  max-width: 782px;
  margin-right: 20px;
}

.article-text::before {
  position: absolute;
  left: 23px;
  top: 0;
  transform: translateY(-50%);
  display: block;
  content: attr(data-number);
  width: 240px;
  height: 240px;
  font-style: normal;
  font-weight: 700;
  font-size: 240px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.1);
}

.article-subtitle {
  margin-bottom: 75px;
  position: relative;
  padding-left: 96px;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.222;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #FBD784;
}

.article-subtitle::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  content: "";
  width: 72px;
  height: 2px;
  background-color: #FBD784;
}

.article-title {
  max-width: 555px;
  margin-bottom: 27px;
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-weight: 500;
  font-size: 64px;
  line-height: 1.2;
  color: #FFFFFF;
}

.article-text p {
  margin-bottom: 27px;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.78;
  color: #FFFFFF;
}

.article-read-more {
  display: inline-block;
  position: relative;
  padding-right: 40px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.222px;
  color: #FBD784;
  text-decoration: none;
}

.article-read-more::after {
  display: block;
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 16px;
  background-image: url("./../img/icons/arrow-right.svg");
}

.article-img img {
  display: block;
}

/* Footer */

.footer {
  padding-bottom: 120px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
}

.footer-copyright {
  display: flex;
  flex-direction: column;
}

.footer-copyright-logo {
  margin-bottom: 24px;
}

.footer-copyright-desk {
  max-width: 303px;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.78;
}

.footer-copyright-terms {
  margin-top: auto;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.5);
}

.footer-nav-wrapper {
  display: flex;
}

.footer-nav+.footer-nav {
  margin-left: 212px;
}

.footer-nav {
  max-width: 200px;
}

.footer-nav-title {
  margin-bottom: 24px;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.33;
  color: #FBD784;
}

.footer-nav ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.footer-nav li {
  padding: 0;
  margin: 0;
  margin-bottom: 16px;
}

.footer-nav li:last-child {
  margin-bottom: 0;
}

.footer-nav a {
  position: relative;
  color: #fff;
  text-decoration: none;
}

.footer-nav a::after {
  position: absolute;
  left: 0;
  bottom: -10px;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fff;
  opacity: 0;
  transition: all 0.3s ease-in;
}

.footer-nav a:hover::after {
  bottom: -10px;
  opacity: 1;
}