* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
  -webkit-transition: .5s;
  transition: .5s;
  color: var(--text-main);
}

img {
  -webkit-transition: .5s;
  transition: .5s;
}

button {
  border: none;
  outline: none;
}

h1 {
  font-family: 'DXAngelus';
  text-transform: uppercase;
  font-weight: normal;
  letter-spacing: -1px;
}

li {
  list-style: none;
  -webkit-transition: .5s;
  transition: .5s;
}

:root {
  --body: #fbfbf9;
  --nav: #efebe2;
  --text-main: #6f6551;
  --text-secondary: #d49600;
  --orange: #e2b042;
  --inner: #efebe2;
}

body {
  background: url(../images/bg/body.jpg) top no-repeat;
  background-color: var(--body);
  font-family: 'Proxima Nova';
  overflow-x: hidden;
}

body, html {
  overflow-x: hidden !important;
}

nav {
  position: fixed;
  width: 100%;
  height: 90px;
  background-color: var(--nav);
  text-transform: uppercase;
  z-index: 100;
}

nav .nav-right {
  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;
}

nav .nav-right .user {
  background: url(../images/button/4.png) top no-repeat;
  height: 40px;
  width: 257px;
  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;
}

nav .nav-right .user .sign-up {
  background: url(../images/button/2.png) top no-repeat;
  color: white;
  width: 60%;
}

nav .nav-right .user .sign-up:hover {
  padding-bottom: 10px;
}

nav .nav-right .user .sign-in {
  padding-left: 20px;
}

nav .nav-right .user .sign-in:hover {
  padding-bottom: 5px;
}

nav .nav-right .user a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  font-weight: 600;
  font-size: 16px;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

nav .nav-right .user a i {
  display: none;
}

nav .nav-right .lang {
  height: 90px;
  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;
  position: relative;
  margin-left: 30px;
  cursor: pointer;
  padding-top: 4px;
}

nav .nav-right .lang:hover span img {
  opacity: 1;
}

nav .nav-right .lang:hover .lang-dropdown {
  max-height: 150px;
  visibility: visible;
}

nav .nav-right .lang span img {
  opacity: 0.5;
  -webkit-transition: .5s;
  transition: .5s;
}

nav .nav-right .lang .lang-dropdown {
  position: absolute;
  top: 70px;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-height: 0;
  visibility: hidden;
  -webkit-transition: .5s;
  transition: .5s;
  overflow: hidden;
}

nav .nav-right .lang .lang-dropdown a {
  margin-bottom: 6px;
}

nav .nav-right .lang .lang-dropdown a:hover img {
  opacity: 1;
}

nav .nav-right .lang .lang-dropdown a img {
  opacity: 0.5;
}

nav .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

nav .mobile-open {
  display: none;
}

nav .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 90px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

nav .nav-list .nav-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

nav .nav-list .nav-list-close {
  display: none;
}

nav .nav-list .nav-item:not(:last-child) {
  margin-right: 46px;
}

nav .nav-list .rotate {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

nav .nav-list .drop .nav-item-dropdown {
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  position: absolute;
  top: 90px;
  background-color: var(--nav);
  width: 200px;
  -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;
  -webkit-transition: .5s;
  transition: .5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 0px;
  padding-top: 0;
}

nav .nav-list .drop .nav-item-dropdown.active {
  visibility: visible;
  max-height: 500px;
}

nav .nav-list .drop .nav-item-dropdown a:not(:last-child) {
  margin-bottom: 0px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.075);
}

nav .nav-list .drop .nav-item-dropdown a {
  padding: 25px 40px 25px 40px;
  width: 100%;
  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;
  cursor: pointer;
}

nav .nav-list .nav-item {
  position: relative;
  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;
  cursor: pointer;
  height: 90px;
}

nav .nav-list .nav-item a {
  font-weight: 600;
  font-size: 18px;
  position: relative;
  height: 100%;
  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;
}

nav .nav-list .nav-item a::before {
  content: '';
  height: 2px;
  background-color: var(--orange);
  width: 0%;
  top: 0;
  position: absolute;
  -webkit-transition: .5s;
  transition: .5s;
}

nav .nav-list .nav-item a.active {
  color: var(--orange);
}

nav .nav-list .nav-item a.active::before {
  width: 100%;
}

nav .nav-list .nav-item a:hover {
  color: var(--orange);
}

nav .nav-list .nav-item a:hover::before {
  width: 100%;
}

nav .nav-list .nav-item a i {
  margin-left: 10px;
  -webkit-transition: .5s;
  transition: .5s;
  font-size: 12px;
  padding-bottom: 4px;
}

header .container {
  text-align: center;
  color: white;
  padding-top: 200px;
}

header .container .header-logo {
  margin-bottom: 50px;
}

header .container .header-logo a {
  width: auto;
}

header .container .header-logo a:hover img {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

header .container .header-line {
  background: url(../images/line-header.png) top no-repeat;
  height: 34px;
  margin-bottom: 60px;
}

header .container .header-text h1 {
  font-size: 45px;
  margin-bottom: 15px;
}

header .container .header-text p {
  font-size: 24px;
  line-height: 30px;
}

header .container .header-button {
  margin-top: 40px;
}

header .container .header-button a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: 'DXAngelus';
  text-transform: uppercase;
  width: 398px;
  height: 156px;
  background: url(../images/button/1.png) top no-repeat;
  font-size: 30px;
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.562);
  color: white;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

header .container .header-button a:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.partners {
  background: url(../images/bg/partner.jpg) top repeat;
  height: 336px;
  position: relative;
  margin-top: 100px;
}

.partners .line {
  background: url(../images/line.png) top repeat;
  height: 41px;
  position: absolute;
  width: 100%;
  top: -10px;
}

.partners .partners-list .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.partners .partners-list .swiper-slide {
  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;
  height: 336px;
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.social .social-content {
  width: 50%;
  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;
  height: 416px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.social .social-content .social-logo {
  -webkit-transition: .5s;
  transition: .5s;
}

.social .social-content:hover .social-logo {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}

.social .social-content .social-description {
  text-transform: uppercase;
  color: white;
  text-decoration: underline;
  font-size: 18px;
  margin-top: 45px;
}

.social .discord {
  background: url(../images/bg/discord.jpg) top no-repeat;
}

.social .youtube {
  background: url(../images/bg/youtube.jpg) top no-repeat;
}

footer {
  background: url(../images/bg/footer.jpg) top no-repeat;
  position: relative;
  height: 776px;
  text-align: center;
  padding-top: 140px;
  z-index: 40;
}

footer .footer-line {
  background: url(../images/line2.png) top repeat;
  height: 44px;
  position: absolute;
  top: -30px;
  z-index: 50;
  width: 100%;
}

footer .join-us .join-us-text {
  font-size: 28px;
  color: white;
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.493);
}

footer .join-us .join-us-button {
  margin-top: 25px;
}

footer .join-us .join-us-button a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 398px;
  height: 156px;
  background: url(../images/button/1.png) top no-repeat;
  font-size: 30px;
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.562);
  color: white;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: 'DXAngelus';
  text-transform: uppercase;
}

footer .join-us .join-us-button a:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

footer .copyright {
  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;
  padding-top: 250px;
  width: 100%;
}

footer .copyright div {
  width: 50%;
}

footer .copyright .unsimple {
  margin-left: 50px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer .copyright .copyright-text {
  text-align: right;
  font-size: 14px;
  padding-right: 50px;
  border-right: 1px solid rgba(124, 107, 78, 0.411);
}

footer .copyright .copyright-text p {
  color: #50442f;
  text-transform: uppercase;
  font-weight: 600;
}

footer .copyright .copyright-text span {
  color: #8b7a5c;
  font-size: 13px;
}

.effect {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  -webkit-animation: fly 10s infinite linear;
          animation: fly 10s infinite linear;
}

.effect2 {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  -webkit-animation: fly 10s 5s infinite linear;
          animation: fly 10s 5s infinite linear;
  opacity: 0;
}

@-webkit-keyframes fly {
  0% {
    top: 200px;
    right: 0;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    top: -1000px;
    opacity: 1;
    right: -1000px;
  }
}

@keyframes fly {
  0% {
    top: 200px;
    right: 0;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    top: -1000px;
    opacity: 1;
    right: -1000px;
  }
}

.container {
  width: 1420px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  footer {
    height: auto;
    padding-bottom: 80px;
  }
  footer .join-us .join-us-text h1 {
    font-size: 44px;
  }
  footer .join-us .join-us-button a {
    background: url(../images/button/1.png) top/contain no-repeat;
    width: 300px;
    height: 100px;
    font-size: 18px;
  }
  footer .copyright {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 150px;
  }
  footer .copyright div {
    width: 100%;
  }
  footer .copyright .unsimple {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: 0;
  }
  footer .copyright .copyright-text {
    padding-right: 0;
    text-align: center;
    border: none;
    margin-bottom: 30px;
  }
  .social {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .social .social-content {
    width: 100%;
  }
  .social .social-content .social-logo img {
    width: 200px;
  }
  header {
    height: auto;
  }
  header .container .header-logo img {
    width: 300px;
  }
  header .container .header-text p {
    font-size: 18px;
  }
  header .container .header-button a {
    background: url(../images/button/1.png) top/contain no-repeat;
    width: 300px;
    height: 100px;
    font-size: 18px;
  }
  nav .nav-list {
    left: -750px;
  }
}

@media (max-width: 1200px) {
  .effect {
    display: none;
  }
  .effect2 {
    display: none;
  }
  nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  nav .nav-right .lang {
    margin-left: 10px;
  }
  nav .nav-right .user {
    background: none;
    width: auto;
  }
  nav .nav-right .user .sign-in {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background-color: lightgray;
    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-right: 10px;
    padding-right: 20px;
    background: url(../../../assets/images/icons/sign_in_icon.png) top/cover no-repeat;
  }
  nav .nav-right .user .sign-up {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background: url(../../../assets/images/icons/sign_up_icon.png) top/cover no-repeat;
  }
  nav .nav-right .user a {
    width: auto;
  }
  nav .nav-right .user a span {
    display: none;
  }
  nav .nav-right .user a i {
    display: block;
    margin: 0;
  }
  nav .mobile-open {
    display: block;
    width: 50px;
    height: 50px;
    background-color: #d3d3c5;
    color: var(--text-main);
    border-radius: 100%;
    font-size: 20px;
    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;
    -webkit-transition: .5s;
    transition: .5s;
    background: url(../../images/icons/MENU_ICON.png) top/cover no-repeat;
  }
  nav .mobile-open:hover {
    background-color: white;
  }
  nav .nav-list {
    position: fixed;
    padding-top: 70px;
    height: 100vh;
    width: 80%;
    left: -1200px;
    background-color: rgba(255, 255, 255, 0.76);
    -webkit-transition: .5s;
    transition: .5s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    top: 0;
    bottom: 0;
    overflow-y: scroll;
    -webkit-backdrop-filter: blur(15px);
            backdrop-filter: blur(15px);
  }
  nav .nav-list .nav-list-close {
    display: block;
    position: absolute;
    z-index: 100;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #d3d3c5;
    color: var(--text-main);
    border-radius: 100%;
    font-size: 20px;
    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;
    -webkit-transition: .5s;
    transition: .5s;
    background: url(../../images/icons/menu_close_icon.png) top/cover no-repeat;
  }
  nav .nav-list .nav-list-close:hover {
    background-color: white;
  }
  nav .nav-list .drop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  nav .nav-list .drop .nav-item-dropdown {
    position: initial;
    width: 100vw;
    top: 0;
  }
  nav .nav-list .drop .nav-item-dropdown.active {
    margin-top: 0px;
  }
  nav .nav-list .nav-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  nav .nav-list .nav-item:not(:last-child) {
    margin-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.062);
  }
  nav .nav-list .nav-item {
    width: 100%;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: auto;
  }
  nav .nav-list .nav-item a {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  nav .nav-list.active {
    left: 0;
  }
}

@media (max-width: 1420px) {
  .container {
    width: 90%;
    margin: 0 auto;
  }
}

@media (min-width: 1920px) {
    body {
        background: #f5f4ef url(../images/bg/body-1920.jpg) top no-repeat;
    }
  footer {
    background: url(../images/bg/footer.jpg) top/cover no-repeat;
  }
  .social .discord {
    background: url(../images/bg/discord.jpg) top/cover no-repeat;
  }
  .social .youtube {
    background: url(../images/bg/youtube.jpg) top/cover no-repeat;
  }
}
/*# sourceMappingURL=main.css.map */