html, body {
  scroll-behavior: smooth;
}

                            @import url('https://fonts.cdnfonts.com/css/geometria');


*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

button {
  outline: none;
}

button:focus {
  outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}


.social {
    position: fixed;
    right: 30px;
    top: 18%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 100;
}

.social a {
    margin-bottom: 30px;
}

.social a i {
    font-size: 30px;
    color: rgba(255, 255, 255, 0.61);
    -webkit-transition: .5s;
    transition: .5s;
}

.social .rotate {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    margin-bottom: 35px;
}

/*** 
====================================================================
Global Settings
====================================================================
   ***/
body {
  font-family: "Cinzel", serif;
  font-size: 16px;
  color: #fff;
  line-height: 21px;
  font-weight: 400;
  background: #090D12;
}

a {
  text-decoration: none;
  opacity: 1;
  color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
}
a:hover {
  opacity: 0.88;
}

ul li {
  list-style: none;
}

.auto__container {
  position: relative;
  max-width: 1760px;
  margin: 0 auto;
  padding: 0 40px;
}

h1 {
  font-weight: 900;
  font-size: 60px;
  line-height: 80px;
}

h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 60px;
  position: relative;
  text-align: center;
  padding-bottom: 45px;
}
h2:after {
  content: "";
  width: 100%;
  height: 21px;
  max-width: 774px;
  background-image: url("../images/separator.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
}

h4 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
}

h5 {
  font-weight: 700;
  font-size: 17px;
  line-height: 23px;
  text-transform: uppercase;
}
h5.big {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
}
h5.big strong {
  color: #9F885C;
  font-weight: 700;
}

p.big {
  font-size: 16px;
  line-height: 21px;
  font-weight: 700;
}
p.sm {
  font-size: 16px;
  line-height: 22px;
}

main {
  overflow: hidden;
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 17px;
  line-height: 23px;
  background: #F8C339;
  padding: 11px 25px;
  color: #000;
  text-transform: uppercase;
  font-family: "Cinzel", serif;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: #090D12;
}
.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-animation-name: sticky;
          animation-name: sticky;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
}
.header__inner {
  padding: 19px 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
  max-width: 1480px;
  margin-left: auto;
}
.header__inner-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__inner-side > span {
  width: 32px;
  height: 32px;
  background-color: #3C4147;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.header__inner-side > span:hover {
  opacity: 0.9;
}
.header__inner-side hr {
  height: 33px;
  width: 1px;
  background-color: #26282A;
  margin: 0 17px;
}
.header__inner-user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  line-height: 17px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}
.header__inner-user-icon {
  width: 22px;
  height: 22px;
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header__inner-user-icon img {
  width: 100%;
}
.header__inner-user span {
  width: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 12px;
}
.header__inner-user span img {
  width: 100%;
}

.subheader {
  position: absolute;
  top: 67px;
  left: 0;
  width: 100%;
  z-index: 5;
}
.subheader::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: -1;
  content: "";
}
.subheader.sticky {
  position: fixed;
  top: 67px;
  left: 0;
  width: 100%;
  -webkit-animation-name: sticky2;
          animation-name: sticky2;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
}
.subheader__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
}
.subheader__inner-links a {
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  color: #fff;
  margin-right: 46px;
  text-transform: uppercase;
}

.subheader__inner-links a:hover {
  color: #E9B121;
}
.subheader__inner-links a:last-child {
  margin-right: 0;
}
.subheader__inner-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.subheader__inner-buttons a {
  font-size: 13px;
  line-height: 16px;
  font-weight: 700;
}
.subheader__inner-buttons .button {
  color: #090D12;
  padding: 9px 28px;
  margin-left: 20px;
  border-radius: 4px;
  background-color: #E9B121;
}

@-webkit-keyframes sticky {
  0% {
    top: -63px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}

@keyframes sticky {
  0% {
    top: -63px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
@-webkit-keyframes sticky2 {
  0% {
    top: -100px;
    opacity: 0;
  }
  100% {
    top: 67px;
    opacity: 1;
  }
}
@keyframes sticky2 {
  0% {
    top: -100px;
    opacity: 0;
  }
  100% {
    top: 67px;
    opacity: 1;
  }
}
.nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav__inner li {
  margin-right: 58px;
  position: relative;
}
.nav__inner li:hover {
  opacity: 1;
}
.nav__inner li:hover .nav__inner-dropdown {
  max-height: 100px;
  opacity: 1;
}
.nav__inner li:last-child {
  margin-right: 0;
}
.nav__inner li:first-child {
  margin-right: 45px;
}
.nav__inner li.active a {
  color: #fff;
}
.nav__inner li.active a svg {
  fill: #fff;
}
.nav__inner a {
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  color: #697079;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav__inner a svg {
  width: 9px;
  height: 9px;
  margin-left: 8px;
  fill: #697079;
}
.nav__inner-dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: calc(100% + 4px);
  left: 100%;
  width: 120%;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background-color: #090D12;
  padding: 8px;
  border-radius: 6px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.nav__inner-dropdown a {
  padding: 4px;
  font-size: 12px;
  line-height: 14px;
  color: #fff;
}

.burger {
  display: none;
}

.footer {
  padding: 5px 0;
}
.footer__inner-main {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__inner-main-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 5px;
  width: calc(68% - 15px);
}
.footer__inner-main-buttons {
  width: calc(32% - 15px);
  max-width: 338px;
}
.footer__inner-main-buttons h4 {
  margin-bottom: 35px;
}
.footer__inner-copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__inner-copy-info {
  width: calc(68% - 15px);
  color: #585858;
  font-size: 15px;
  line-height: 20px;
}
.footer__inner-copy .copy {
  width: calc(32% - 15px);
  max-width: 338px;
  font-size: 15px;
  line-height: 20px;
}
.footerLink {
  width: calc(25% - 10px);
}
.footerLink h4 {
  margin-bottom: 24px;
}
.footerLink a {
  margin-bottom: 20px;
  display: block;
  font-weight: 400;
}
.footer .button {
  margin-right: 13px;
  padding: 12px 40px;
  font-family: "Cinzel", serif;
  font-weight: 700;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  cursor: pointer;
}
.footer .button:hover {
  opacity: 0.8;
}
.footer .button:last-child {
  margin: 0;
}
.footer .button__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer .button.secondary {
  background-color: #373F48;
  color: #fff;
}

.hero {
  position: relative;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero__bg-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}
.hero__bg-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.hero__bg-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
}
.hero__bg-bottom img {
  width: 100%;
}
.hero__inner {
  min-height: 100vh;
  padding: 200px 0 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.hero__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero__inner-row-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.hero__inner-seperator {
  width: 19%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 218px;
  height: 10px;
  margin-bottom: 80px;
}
.hero__inner-seperator:last-of-type {
  margin: 40px 0 0 0;
}
.hero__inner-seperator img {
  width: 100%;
}
.hero__inner h2 {
  color: #C1C1C1;
  margin-bottom: 45px;
  padding: 0;
  text-align: left;
}
.hero__inner h2::after {
  display: none;
}
.hero__inner h5 {
  margin-bottom: 4px;
  color: #7E7E7E;
}
.hero__inner h5:last-child {
  margin: 0;
  color: #fff;
  font-weight: 900;
}
.hero__inner .button {
  font-size: 25px;
  line-height: 30px;
  color: #000;
  padding: 10px 60px;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFCB46), to(#E9B121));
  background: linear-gradient(180deg, #FFCB46 0%, #E9B121 100%);
  font-weight: 700;
  margin-right: 48px;
}
.hero__inner .button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  background-color: transparent;
  border: 1px solid #fff;
  opacity: 0.2;
  pointer-events: none;
  content: "";
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}


.download {
  background-image: url("../images/filesBg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;

}
.download:after {
  content: "";
  width: 100%;
  height: 120px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url("../images/hero-top.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}



.download__inner {
  padding: 140px 0 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.download__inner h2 {
  margin-bottom: 85px;
}
.download__inner p.big {
  text-align: center;
  max-width: 874px;
  margin: 0 auto 64px;
}
.download__inner-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.download__inner-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1060px;
  margin: 0 auto;
}
.download__inner-text span {
  width: 48px;
  height: 32px;
  margin-right: 26px;
  display: block;
}
.download__inner-text span img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.download__inner-text h5 {
  width: calc(100% - 74px);
}

.files-bg {
  background: rgb(51 64 80 / 22%);
  backdrop-filter: blur(3px);
  border-radius: 5px;
  padding: 20px;
  width: 1280px;
}

.download__content {
  width: 100%;
  margin-top: 50px;
}


.download__step {
  background-color: #0000003d;
    border: 1px solid #fefefe1a;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    padding: 20px 20px 20px 20px;
    margin-top: 5px;
    display: inline-grid;
}
.download__step2 {
  background-color: #0000003d;
  border: 1px solid #fefefe1a;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  padding: 20px 20px 20px 20px;
  margin-top: 5px;
  display: inline-grid;
  text-align: justify;
}
.download__step2 p, .download__step2 ul {
  float: left;
  padding: 0px!important;
  margin: 0px!important;
  color: #fff!important;
}

.download__step__title {
  float: left;
  width: 100%;
}

.download__step__left {
  float: left;
}

.download__step__right {
  float: right;
}

.download__step__title h4 {
  font-size: 24px;
    margin-top: 14px;
}

.download__step p {
  float: left;
    margin: 30px 10px 10px 10px;
    color: #8b8b8b;
}

.download__step__btn {
float: right;
    margin-top: 7px;
}

.download__step__ctn {
  margin-left: auto;
  margin-right: auto;
}


.download-box {
margin-left: auto;
    width: 100%;
    margin-right: auto;
    text-align: center;
    margin-top: 10px;
    border: 1px solid #7e7e7e1c;
    padding: 20px 20px 20px 20px;
}

.download-box h1 {
      font-size: 30px;
    color: white;
    font-weight: 900;
    margin-top: 10px;
}

.download-box span {
  color: #8b8b8b;
}
.download-buttons {
      display: inherit;
    padding-top: 20px;
}


.about {
  background-image: url("../images/aboutBg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.about:after {
  content: "";
  width: 100%;
  height: 120px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url("../images/hero-top.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.about__inner {
  padding: 40px 0 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.about__inner h2 {
  margin-bottom: 25px;
}
.about__inner p.big {
  text-align: center;
  max-width: 874px;
  margin: 0 auto 64px;
}
.about__inner-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about__inner-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1060px;
  margin: 0 auto;
}
.about__inner-text span {
  width: 48px;
  height: 32px;
  margin-right: 26px;
  display: block;
}
.about__inner-text span img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.about__inner-text h5 {
  width: calc(100% - 74px);
}
.aboutItem {
  width: calc(33.3% - 8px);
  max-width: 547px;
  padding: 109px 65px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(25.48%, rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 25.48%, rgba(0, 0, 0, 0) 100%);
}
.aboutItem h3 {
  margin-bottom: 33px;
  color: #9F885C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.aboutItem h3 span {
  margin-right: 18px;
  width: 71px;
  height: 71px;
}
.aboutItem h3 span img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.about .button {
  margin: 0 auto 106px;
  font-size: 19px;
  line-height: 25px;
  padding: 11px 60px;
  position: relative;
  font-weight: 700;
}
.about .button::before {
  content: "";
  width: calc(100% + 14px);
  height: calc(100% + 12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: absolute;
  top: -6px;
  left: -7px;
  pointer-events: none;
}

.offers__inner {
  padding: 32px 0 80px;
}
.offers__inner h2 {
  margin-bottom: 116px;
}
.offers__inner-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.offersItem {
  width: calc(33.3% - 13px);
  max-width: 546px;
  padding: 12px;
  border: 1px dashed #373737;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.offersItem__body {
  padding-bottom: 121%;
  position: relative;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  height: 100%;
}
.offersItem__body-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.offersItem__body-image::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#000000));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  z-index: 1;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.offersItem__body-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.7;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.offersItem__body-info {
  position: absolute;
  z-index: 2;
  left: 56px;
  bottom: 48px;
}
.offersItem__body-info h3 {
  color: #9F885C;
  margin-bottom: 30px;
  font-size: 35px;
  line-height: 45px;
}
.offersItem__body-info h3 span {
  display: block;
  font-size: 20px;
  line-height: 26px;
}
.offersItem__body-info .button {
  padding: 11px 22px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  font-weight: 700;
}
.offersItem__body-info .button:hover {
  opacity: 0.8;
}
.offersItem:hover {
  margin: -35px 0;
}

@media (max-width: 1450px) {
  h1 {
    font-size: 55px;
    line-height: 70px;
  }

  h2 {
    font-size: 35px;
    line-height: 50px;
  }
}
@media (max-width: 1380px) {
  h1 {
    font-size: 50px;
    line-height: 65px;
  }

  h2 {
    font-size: 30px;
    line-height: 45px;
  }

  h3 {
    font-size: 18px;
    line-height: 26px;
  }

  p.sm {
    font-size: 15px;
    line-height: 23px;
  }

  .hero__inner-seperator {
    margin-bottom: 50px;
  }
  .hero__inner-seperator:last-of-type {
    margin-top: 50px;
  }
  .hero__inner h2 {
    margin-bottom: 55px;
  }
  .hero__inner .button {
    padding: 8px 40px;
    margin-right: 35px;
  }

  .subheader__inner-links a {
    margin-right: 30px;
  }

  .nav__inner li {
    margin-right: 40px;
  }
  .nav__inner li:first-child {
    margin-right: 27px;
  }

  .about__inner h2 {
    font-size: 37px;
    line-height: 46px;
  }
  .aboutItem {
    padding: 85px 40px;
  }

  .offers__inner h2 {
    font-size: 37px;
    line-height: 46px;
    margin-bottom: 100px;
  }
  .offersItem__body-info {
    left: 25px;
    bottom: 40px;
  }
  .offersItem h3 {
    font-size: 30px;
    line-height: 40px;
  }
  .offersItem h3 span {
    font-size: 18px;
    line-height: 26px;
  }
  .offersItem .button {
    padding: 10px 20px;
    font-size: 16px;
    line-height: 24px;
  }

  .footerLink h4 {
    font-size: 17px;
    line-height: 24px;
  }
  .footerLink a {
    font-size: 15px;
    line-height: 22px;
  }
}
@media (max-width: 1250px) {
  h1 {
    font-size: 45px;
    line-height: 55px;
  }
}
@media (max-width: 1180px) {
  h1 {
    font-size: 40px;
    line-height: 45px;
  }

  h2 {
    font-size: 25px;
    line-height: 35px;
  }

  .header__inner {
    width: 100%;
  }

  .nav__inner li a {
    font-size: 14px;
    line-height: 17px;
  }

  .about__inner h2 {
    margin-bottom: 75px;
  }
  .about__inner p.big {
    margin-bottom: 50px;
  }
  .about__inner .button {
    margin-bottom: 90px;
  }
  .aboutItem {
    padding: 70px 30px;
  }
  .aboutItem h3 span {
    width: 65px;
    height: 65px;
    margin-right: 15px;
  }

  .offersItem__body-info {
    left: 20px;
    bottom: 30px;
  }
  .offersItem h3 {
    font-size: 25px;
    line-height: 33px;
    margin-bottom: 20px;
  }
  .offersItem h3 span {
    font-size: 17px;
    line-height: 24px;
  }
  .offersItem .button {
    padding: 9px 18px;
    font-size: 15px;
    line-height: 22px;
  }

  .footer {
    padding: 50px 0;
  }
  .footer__inner-main {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer__inner-main-links {
    width: 100%;
    margin-bottom: 50px;
  }
  .footer__inner-main-buttons {
    width: 100%;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 50px;
    text-align: center;
  }
  .footer__inner-copy {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer__inner-copy-info {
    width: 100%;
    margin-bottom: 50px;
  }
  .footer__inner-copy .copy {
    width: 100%;
  }

  .auto__container {
    padding: 0 30px;
  }
}
@media (max-width: 1024px) {
  ::-webkit-scrollbar {
    display: none;
  }

  h3 {
    font-size: 17px;
    line-height: 25px;
  }

  p.sm {
    font-size: 14px;
    line-height: 22px;
  }

  .hero__inner {
    padding: 150px 0 70px;
  }
  .hero__inner h2 {
    margin-bottom: 40px;
  }
  .hero__inner h5 {
    font-size: 15px;
    line-height: 18px;
  }
  .hero__inner .button {
    font-size: 20px;
    line-height: 22px;
    padding: 8px 30px;
    margin-right: 25px;
  }

  .header__inner {
    padding: 10px 0;
  }
  .header__inner-side hr {
    margin: 0 12px;
  }
  .header__inner-user span {
    margin-left: 10px;
    width: 8px;
  }

  .subheader {
    top: 53px;
  }
  .subheader.sticky {
    position: absolute;
    top: 53px;
    -webkit-animation: unset;
            animation: unset;
  }
  .subheader__inner {
    padding: 8px 0;
  }
  .subheader__inner-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .subheader__inner-links a {
    margin-right: 20px;
    font-size: 12px;
    line-height: 14px;
  }
  .subheader__inner-buttons .button {
    padding: 7px 20px;
    margin-left: 16px;
  }


  body.active {
    overflow: hidden;
  }

  .nav {
    position: fixed;
    top: 52px;
    left: 0;
    width: 100%;
    height: calc(100% - 52px);
    z-index: 9;
    background: rgba(0, 0, 0, 0.4);
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
  }
  .nav.active {
    transform: translate(0, 0);
    -moz-ransform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
  .nav__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    top: 0;
    left: 0;
    width: 280px;
    z-index: 1;
    padding: 50px 20px 20px 20px;
    height: 100%;
    overflow-y: auto;
    background-color: #090D12;
  }
  .nav__inner-dropdown {
    position: unset;
    -webkit-transform: translate(0);
            transform: translate(0);
    text-align: start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-left: 30px;
    padding: 0;
  }
  .nav__inner li {
    width: 100%;
  }
  .nav__inner li:nth-child(n) {
    margin: 0 0 20px 0;
  }
  .nav__inner li:last-child {
    margin: 0;
  }
  .nav__inner li a {
    font-size: 16px;
    line-height: 19px;
    padding: 10px;
  }

  .burger {
    display: block;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    position: relative;
    width: 30px;
    height: 30px;
  }
  .burger:hover {
    opacity: 0.8;
  }
  .burger::before {
    top: 20%;
    width: 100%;
    height: 2px;
    background-color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -moz-ransform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
  .burger span {
    top: 50%;
    width: 100%;
    height: 2px;
    background-color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-ransform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
  }
  .burger::after {
    bottom: 20%;
    width: 100%;
    height: 2px;
    background-color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -moz-ransform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
  .burger.active::before {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .burger.active span {
    opacity: 0;
  }
  .burger.active::after {
    bottom: 50%;
    -webkit-transform: translate(-50%, 50%) rotate(-45deg);
    transform: translate(-50%, 50%) rotate(-45deg);
  }

  .about__inner h2 {
    font-size: 32px;
    line-height: 38px;
  }
  .aboutItem {
    padding: 60px 20px;
  }
  .aboutItem h3 span {
    width: 55px;
    height: 55px;
    margin-right: 11px;
  }

  .offers__inner h2 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 70px;
  }
  .offersItem {
    width: calc(33.3% - 5px);
    padding: 8px;
  }
  .offersItem__body-info {
    left: 20px;
  }
  .offersItem h3 {
    font-size: 23px;
    line-height: 28px;
    margin-bottom: 15px;
  }
  .offersItem h3 span {
    font-size: 16px;
    line-height: 22px;
  }
  .offersItem .button {
    padding: 9px 18px;
    font-size: 14px;
    line-height: 18px;
  }
}
@media (max-width: 930px) {
  h1 {
    font-size: 35px;
    line-height: 40px;
  }

  h3 {
    font-size: 16px;
    line-height: 23px;
  }

  h5.big {
    font-size: 16px;
    line-height: 24px;
  }

  p.big {
    font-size: 15px;
    line-height: 22px;
  }

  .about__inner h2 {
    font-size: 28px;
    line-height: 35px;
    margin-bottom: 50px;
  }
  .about__inner-main {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .aboutItem {
    width: calc(50% - 10px);
  }

  .social {
    display: none;
  }
  .aboutItem:last-child {
    margin: 0 auto 30px;
  }
  .aboutItem h3 span {
    width: 45px;
    height: 45px;
    margin-right: 11px;
  }

  .offers__inner {
    padding: 32px 0 50px;
  }
  .offers__inner h2 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 50px;
  }
  .offers__inner-main {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .offersItem {
    width: calc(50% - 10px);
    margin-bottom: 30px;
  }
  .offersItem:hover {
    margin: 0 0 30px 0;
  }
  .offersItem:last-child {
    margin: 0 auto;
  }
}
@media (max-width: 750px) {
  h1 {
    font-size: 30px;
    line-height: 35px;
  }

  h2 {
    font-size: 20px;
    line-height: 25px;
  }

  .hero__inner-seperator {
    margin-bottom: 35px;
  }
  .hero__inner-seperator:last-of-type {
    margin-top: 35px;
  }

  .subheader__inner {
    padding: 7px 0;
  }
  .subheader__inner-links a {
    font-size: 10px;
    line-height: 12px;
    margin-right: 10px;
  }
  .subheader__inner-buttons a {
    font-size: 10px;
    line-height: 12px;
  }
  .subheader__inner-buttons .button {
    margin-left: 8px;
    padding: 6px 15px;
  }

  .footer {
    padding: 30px 0;
  }
  .footer__inner-main-links {
    margin-bottom: 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer__inner-copy-info {
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 18px;
  }
  .footer__inner-copy .copy {
    font-size: 14px;
    line-height: 18px;
  }
  .footerLink {
    width: calc(50% - 10px);
    margin-bottom: 20px;
  }

  .auto__container {
    padding: 0 20px;
  }
}
@media (max-width: 650px) {
  .about__inner h2 {
    font-size: 25px;
    line-height: 32px;
    margin-bottom: 35px;
  }
  .about__inner p.big {
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 30px;
  }
  .about__inner-main {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .about__inner-text span {
    width: 42px;
    height: 28px;
    margin-right: 15px;
  }
  .about__inner-text h5 {
    font-size: 15px;
    line-height: 22px;
    width: calc(100% - 60px);
  }
  .about__inner .button {
    padding: 10px 50px;
    font-size: 17px;
    line-height: 22px;
    margin-bottom: 70px;
  }
  .aboutItem {
    width: 100%;
    margin-bottom: 10px;
  }
  .aboutItem h3 span {
    width: 45px;
    height: 45px;
    margin-right: 11px;
  }

  .offers__inner {
    padding-bottom: 50px;
  }
  .offers__inner h2 {
    font-size: 25px;
    line-height: 32px;
  }
  .offers__inner-main {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .offersItem {
    width: 100%;
  }
  .offersItem__body {
    padding-bottom: 100%;
  }
  .offersItem__body-info {
    width: 100%;
    top: 50%;
    bottom: unset;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    text-align: center;
  }
}

.offersItem__body-info p {
  margin-top: 10px;
  font-size: 15px;
  color: #fff;
  font-weight: 200;
   font-family: 'Noto Sans Georgian';
   width: 400px;
   line-height: 14px;
}

@media (max-width: 540px) {
  h1 {
    font-size: 25px;
    line-height: 30px;
  }

  h2 {
    font-size: 17px;
    line-height: 22px;
  }

  h5.big {
    font-size: 15px;
    line-height: 22px;
  }

  .bgvideo {
    display: none;
  }

  .hero__inner {
    padding: 150px 0 50px;
    min-height: 30vh;
  }
  .hero__inner h2 {
    margin-bottom: 30px;
  }
  .hero__inner h5 {
    font-size: 13px;
    line-height: 16px;
    margin: 0;
  }
  .hero__inner .button {
    font-size: 15px;
    line-height: 16px;
    padding: 6px 18px;
    margin-right: 18px;
  }

  .header__inner {
    padding: 8px 0;
  }
  .header__inner-side > span {
    width: 24px;
    height: 24px;
  }
  .header__inner-side hr {
    margin: 0 8px;
    height: 26px;
  }
  .header__inner-user {
    font-size: 10px;
    line-height: 12px;
  }
  .header__inner-user-icon {
    width: 16px;
    height: 16px;
  }
  .header__inner-user span {
    width: 6px;
    margin-left: 7px;
  }

  .subheader {
    top: 42px;
  }
  .subheader__inner {
    padding: 10px 0;
  }
  .subheader__inner-links {
    -webkit-box-orient: vertical;
    display: inline;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .subheader__inner-links a {
    font-size: 11px;
    line-height: 13px;
    margin: 0px 30px 0px 1px;
  }
  .subheader__inner-links a:last-child {
    margin: 0;
  }
  .subheader__inner-buttons a {
    font-size: 11px;
    line-height: 13px;
    display: none;
  }
  .subheader__inner-buttons .button {
    padding: 5px 10px;
    margin-left: 12px;
    display: ;
  }

  .nav {
    top: 41px;
    height: calc(100% - 41px);
  }

  .burger {
    width: 24px;
    height: 26px;
  }

  .about:after {
    height: 38px;
  }
  .about__inner {
    padding: 30px 0 50px;
  }
  .about__inner h2 {
    padding-bottom: 30px;
  }
  .about__inner h2:after {
    height: 17px;
  }
  .about__inner p.big {
    font-size: 13px;
    line-height: 18px;
  }
  .about__inner .button {
    padding: 9px 40px;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 40px;
  }
  .about__inner-text h5 {
    font-size: 14px;
    line-height: 19px;
    width: calc(100% - 50px);
  }

  .footer__inner-main-links {
    margin-bottom: 0;
  }
  .footer__inner-main-buttons {
    margin-bottom: 40px;
  }
  .footer__inner-main-buttons h4 {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 20px;
  }
  .footer .button {
    padding: 10px 30px;
    font-size: 16px;
    line-height: 18px;
  }
  .footer .button__row {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .offers__inner {
    padding: 30px 0;
  }
  .offers__inner h2 {
    padding-bottom: 30px;
  }
  .offers__inner h2:after {
    height: 17px;
  }
}
@media (max-width: 440px) {
  .hero__inner-seperator {
    min-width: 170px;
    margin-bottom: 26px;
  }
  .hero__inner-seperator:last-of-type {
    margin-top: 26px;
  }
  .hero__inner h2 {
    margin-bottom: 20px;
  }
  .hero__inner h5 {
    font-size: 12px;
    line-height: 14px;
  }
  .hero__inner .button {
    font-size: 12px;
    line-height: 14px;
    padding: 5px 12px;
  }
  .hero__inner .button::before {
    width: calc(100% + 8px);
    height: calc(100% + 8px);
  }

  .footer {
    padding: 20px 0;
  }
  .footerLink h4 {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 20px;
  }
  .footerLink a {
    font-size: 14px;
    line-height: 18px;
  }
}
@media (max-width: 390px) {
  .auto__container {
    padding: 0 15px;
  }

  h1 {
    font-size: 20px;
    line-height: 25px;
  }

  h2 {
    font-size: 15px;
    line-height: 19px;
  }

  .hero__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .hero__inner-row-content {
    margin-bottom: 15px;
  }
  .hero__inner h2 {
    margin-bottom: 20px;
  }
  .hero__inner h5 {
    font-size: 12px;
    line-height: 14px;
  }
  .hero__inner .button {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin: 0;
  }

  .subheader__inner-links a {
    font-size: 10px;
    line-height: 12px;
    margin: 0 0 4px;
  }
  .subheader__inner-buttons a {
    font-size: 10px;
    line-height: 12px;
  }
  .subheader__inner-buttons .button {
    padding: 4px 8px;
    margin-left: 8px;
  }

  .about__inner h2 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 20px;
  }
  .about__inner-text span {
    width: 30px;
    height: 22px;
  }
  .about__inner-text h5 {
    font-size: 13px;
    line-height: 17px;
  }

  .footer__inner-copy-info {
    font-size: 13px;
    line-height: 17px;
    margin-bottom: 15px;
  }
  .footer__inner-copy .copy {
    font-size: 13px;
    line-height: 17px;
  }
  .footerLink {
    width: 100%;
  }
  .footer .button {
    padding: 10px 20px;
    font-size: 14px;
    line-height: 18px;
  }
  .footer .button__row {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .offers__inner h2 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 20px;
  }
  .offersItem {
    margin-bottom: 20px;
  }
}



.online-popup {
  position: absolute;
  top: 120px;
  right: 30px;
  background: url(https://stageofglory.fun//images/online-bg.png) top no-repeat;
  width: 126px;
  height: 226px;
  text-align: center;
  -webkit-animation: float infinite 2s;
          animation: float infinite 2s;
  z-index: 10;
}

.online-popup .online-text {
  position: absolute;
  bottom: 40px;
  right: 0;
  left: 0;
  margin-left: auto;
  margin-right: auto;
}

.online-popup .online-text p {
  color: white;
  font-size: 25px;
}

.online-popup .online-text .green {
  color: #35e935;
  font-size: 18px;
}

.online-popup span {
  position: absolute;
  top: -5px;
  right: -10px;
  opacity: 0.5;
  cursor: pointer;
  -webkit-transition: .5s;
  transition: .5s;
}

.online-popup span:hover {
  opacity: 1;
}

.acvtive-server {
  width: 440px;
  height: 150px;
  margin-top: 40px;
}

.active-server-information-online {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-bottom: 55px;
    height: 63px;
    background-color: #00000047;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    padding: 0px 15px 0px 15px;
    border: 1px solid #ffffff21;
}

.active-server-information-online p {
  margin-left: 10px;
}

.active-server-information-online span {
     margin-left: 10px;
    font-size: 11px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    background-color: rgba(var(--black-rgb), 0.6);
    border-radius: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 0px 0px 10px rgba(var(--online-rgb), 0.5);
    box-shadow: 0px 0px 10px rgba(var(--online-rgb), 0.5);
}

.news {
  width: 60%;
  float: left;
  background: transparent;
}

.news .title {
  font-size: 25px;
  color: #fff;
}
.download__inner p, .download__inner ul
{
  margin:5px;
  padding:20px;
  text-align:justify;
}
