@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&display=swap');

/* RESET.CSS */

* {
  padding: 0;
  margin: 0;
  border: 0;
}

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h2 {
  font-weight: 700;
  font-size: 34px;
  line-height: 44px;
  text-align: center;
  margin: 20px 0;
  color: var(--color-yellow);
}
@media (max-width: 450px) {
  h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

h3 {
  font-weight: 700;
  font-size: 30px;
  line-height: 34px;
  margin: 20px 0;
  text-align: center;
  color: var(--color-yellow);
}
@media (max-width: 450px) {
  h3 {
    color: var(--color-violet-lt);
    font-size: 28px;
    line-height: 34px;
  }
}

a {
  color: inherit;
  cursor: pointer;
}

/* INDEX */
:root {
  --main-color: #e1ba5f;
  --light-color: #ffffff;
  --dark-color: #000000;
  --bacground-color: #050400;
  --main-font-family: 'Lora', serif;
  --main-font-weight: 600;
  --main-font-size: 16px;
  --logo-font-size: 18px;
  --btn-font-size: 16px;
  --title-font-size: 44px;
  --subtitle-font-size: 28px;
  --desctitle-font-size: 36px;
}

html, body {
  font-family: var(--main-font-family);
  font-weight: var(--main-font-weight);
  font-size: var(--main-font-size);
  background: var(--bacground-color);
  color: var(--light-color);
  
  overflow-x: hidden;
}

.wrapper {
  min-height: 100%;
  width: 100%;
}

[class*="__container"] {
  max-width: 830px;
  padding: 0 15px;
  margin: 0 auto;
  height: 100%; 
}

/* BURGER */

.burger {
  display: none;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 100;
  height: 72px;
  width: 90px;
  border-radius: 50%;
  transition: all .3s;
}  
.burger span {
  display: block;
  height: 2px;
  width: 30px;
  background-color: var(--main-color);
  border-radius: 3px;
  margin: 3px 0px;
  transition: all .3s;
  position: relative;
}
.burger span::after, .burger span::before{
  content: "";
  display: block;
  height: 2px;
  width: 30px;
  background-color: var(--main-color);
  transition: all .3s;
  position: absolute;
  top: -7px;
}
.burger span::before {
  transition: all 0.3s;
  top: 7px;
}
.burger-close {
  background-color: transparent;
}
.burger-close span {
  background-color: transparent;
  transition: all 0.3s;
}
.burger-close span::after {
  top: 0;
  height: 5px;
  transform: rotateZ(135deg);
  transition: all 0.3s;
}
.burger-close span::before {
  top: 0;
  height: 5px;
  transform: rotateZ(-135deg);
  transition: all 0.3s;
}
.burger--follow {
  box-shadow: 0 1px 8px var(--light-color);
  background-color: #ffffff86;
  left: 20px;
  top: 16px;
  height: 40px;
  width: 50px;
  transition: all .5s .4s ;
} 

/* BTN-UP */

.btn-up {
  position: fixed;
  background-color: var(--main-color);
  right: 20px;
  bottom: 0px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 50px;
  transition: all .3s;
  opacity: 1;
  pointer-events: all;
  border: solid 1px var(--bacground-color);
  z-index: 11;
}
.btn-up::before {
  content: "";
  width: 40px;
  height: 40px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2300296B' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z'/%3E%3C/svg%3E");
}
.btn-up:hover {
  background-color: var(--dark-color);
  transition: all .3s;
}
.btn-up_hide {
  opacity: 0;
  pointer-events: none;
}

/* -------------HEADER------------- */


.header__container {
  max-width: 1370px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.header__emblem {
  font-weight: 700;
  font-size: var(--logo-font-size);
  line-height: 121%; /* 29px */
  color: var(--main-color);
  text-transform: uppercase;
  flex: 1 1 auto;
}
.header__navmenu {
  display: flex;
  justify-content: center;
  flex: 2 1 auto;
}
.header__navmenu ul {
  display: flex;
  flex-direction: row;
  gap: 29px;
}
.header__navmenu li {
  font-size: var(--main-font-size);
  line-height: 133%; /* 24px */
  transition: all .3s;
}
.header__navmenu-btn {
  color: var(--light-color);
  cursor: pointer;
}
.header__navmenu li:hover, 
.header__navmenu li:focus {
  scale: 1.1;
  transition: all .3s;
}
.header__btns {
  display: flex;
  gap: 20px;
}
.header__btns-link {
  display: inline-block;
  box-sizing: border-box;
  border: solid 1px var(--main-color);
  padding: 11px 40px;
  font-weight: 600;
  font-size: var(--btn-font-size);
  color: var(--bacground-color);
  line-height: 20px;
  background: var(--main-color);
  border-radius: 40px;
  transition: all .3s;
}
.header__btns-link:hover, 
.header__btns-link:focus {
  color: var(--main-color);
  background: var(--bacground-color);
  scale: 1.1;
  transition: all .3s;
}

/* -------------main------------- */


.main {
  padding-top: 30px;
}
.main__container img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  450px;
  object-fit: cover;
  object-position: 50% 50%;
}
.main__title { 
  font-weight: 700;
  font-size: var(--title-font-size);
  line-height: 145%;  
  display: flex;
  align-items: center;
  text-align: center;  
  color: var(--main-color);
  padding-top: 50px;
}

/* -------------BANNER------------- */

.banner {
  height: 275px;
}
.banner__container {
  position: relative;
  max-width: 2320px;
  width: 100%;
  overflow-x: clip;
  padding: 0;
}
.banner__line {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
}
.banner__line ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 120px;
  font-weight: 500;
  padding: 18px;
  font-size: var(--logo-font-size);
  line-height: 160%;
  width: 100%;
}
.banner__line ul li {
  white-space: nowrap;
}
.banner__line-blue {
  background: #d3c23f;
  top: 100px;
  z-index: 5;
  transform: rotate(5deg);
}
.banner__line-yellow {
  background: var(--main-color);
  color: #1B1B1B;
  top: 100px;
  z-index: 3;
  transform: rotate(-5deg);
}

/* -------------information------------- */

.information__container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  padding-bottom: 30px;
}
.information__container::before {
  content: "";
  position: absolute;
  top: 0;
  left: -569px;
  width: 500px;
  height: 500px;
  background: url("../images/circle-blue.png") 0 0 no-repeat;
}
.information__container::after {
  content: "";
  position: absolute;
  top: 1010px;
  left: 870px;
  width: 500px;
  height: 500px;
  background: url("../images/circle-yellow.png") 0 0 no-repeat;
}
.information__container p {
  font-size: var(--main-font-size);
  line-height: 189%; /* or 34px */
  text-indent: 20px;  
  color: var(--light-color);
}
.information__container a {
  text-decoration-line: underline;
  color: var(--main-color);
}
.information__container ul {
  padding-left: 20px;
  line-height: 189%; /* or 34px */ 
}
.information__container ul li {
  list-style: disc;
}
.information__container ol {
  padding-left: 20px;
  line-height: 189%; /* or 34px */ 
}

/* -------------description------------- */



.information__title {
  margin: 10px 0;
  font-weight: 500;
  font-size: var(--desctitle-font-size);
  line-height: 94%;  
  color: var(--main-color);
}
.information__subtitle {
  margin: 10px 0;
  font-weight: 500;
  font-size: var(--subtitle-font-size);
  line-height: 121%;
  color: var(--main-color);
}
.information__container img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  max-height: 530px;
  max-width: 800px;
  object-fit: cover;
  object-position: 50% 50%;
}

/* -------------stat------------- */

.information__stat {
  padding-top: 20px;
  padding-bottom: 101px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.information__stat table {
  margin: 0 auto;
  max-width: 1040px;
  width: 100%;
  font-weight: 500;
  font-size: var(--main-font-size);
  line-height: 22px;
  color: var(--light-color);
  border-collapse: collapse;
}
.information__stat tr {
  border-top: 1px solid var(--light-color);
  border-bottom: 1px solid var(--light-color);
}
.information__stat td:last-child {
  text-align: right;
}
.information__stat td {
  padding: 20px;
}
.information__stat-four td {
  width: 310px;
}
.information__stat-three td:nth-child(2) {
  text-align: center;
}

.footer {
  background-color: var(--main-color);
}
.footer__container {
  text-align: center;
  padding: 36px 0;
}
.footer__container p {
  font-size: var(--main-font-size);
  line-height: 156%; /* or 28px */
  color: var(--dark-color);
}

@media (max-width: 768px) {
  :root {
    --title-font-size: 32px;
    --subtitle-font-size: 30px;
  }

  .burger {
    display: flex;
  }

  .header__container {
    flex-direction: column;
    gap: 30px;
    padding: 30px 0;
  }
  .header__emblem {
    margin: 0;
    font-family: 'Lora';
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
  }
  .header__navmenu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    z-index: 50;
    background-color: #8c743b;
    transition: all 1s;
  }
  .header__navmenu ul {
    flex-direction: column;
    gap: 50px;
    padding-top: 180px;
    padding-left: 30px;
    transition: all 1s;
  }
  .header__navmenu ul li {
    font-size: 0;
    transition: all .5s;
  }
  .header__navmenu--open {
    transition: all 1s;
    scale: 1;
    width: 315px;
    height: 100%;
  }
  .header__navmenu--open ul li{
    font-size: var(--main-font-size);
    transition: all 1.5s;
  }
  .header__btns {
    margin: 0;
    flex-direction: column;
    text-align: center;
  }
  .header__btns-link {
    width: 250px;
  }

  .main {
    padding: 0;
  }
  .main__title {
    padding: 30px 0;
  }

  .banner {
    display: none;
  }

  .information__title {
    font-size: var(--subtitle-font-size);
    margin: 0;
  }
  .information__subtitle {
    margin: 0;
  }

  .information__stat {
    padding-bottom: 50px;
    padding-top: 0;
  }
  .information__stat table {
    font-size: 16px;
    line-height: 20px;
  }
  .information__stat-four td {
    width: 45%;
  }
  .information__stat td:nth-child(2) {
    text-align: right;
}
.information__stat tr {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .information__stat-three tr {
    flex-wrap: nowrap;
  }
  .information__stat td {
    max-width: 50%;
    padding: 20px 5px;
  }

  .footer__inner {
    padding: 40px 0;
  }
  .footer__inner p {
    letter-spacing: 0.01em;
  }
}