@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&family=Ubuntu:wght@300;400;500;700&display=swap");
* {
  margin: 0;
  box-sizing: border-box;
}

body,
html {
  padding: 0;
}

body {
  font-family: "Ubuntu", sans-serif;
  background: #161313;
  color: #fff;
  line-height: 1.5;
}

@media (min-width: 992px) {
  .hide-mobile {
    display: none !important;
  }
}

.container {
  max-width: 1550px;
  margin: 0 auto;
  width: 90%;
}
@media (max-width: 1200px) {
  .container {
    width: 100%;
    padding: 0 15px;
  }
}

a {
  text-decoration: none;
}

.btn {
  line-height: 1;
  padding: 11px 15px 13px;
  border-radius: 20px;
  font-size: 12px;
  background: #c70000;
  color: #fff;
  letter-spacing: 1px;
  display: inline-block;
  border: none;
  transition: 0.3s ease-in-out;
}
.btn.btn-large {
  font-size: 26px;
  padding: 20px 55px 22px;
  border-radius: 50px;
}
.btn:focus, .btn:active {
  outline: none;
  box-shadow: none;
}
.btn:hover {
  background: #750000;
  color: #fff;
}
.btn:hover span {
  color: #fff;
}
@media (max-width: 991px) {
  .btn.btn-large {
    font-size: 18px;
    padding: 16px 40px 18px;
  }
}

.page-sections {
  background: linear-gradient(-142deg, rgba(0, 0, 0, 0) 0%, rgba(232, 4, 5, 0.11) 100%);
}

.section-title {
  font-size: 41px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 80px;
  text-align: center;
}
.section-title span {
  display: inline-block;
}
.section-title span:after {
  content: "";
  height: 2px;
  background: #750000;
  display: block;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .section-title {
    font-size: 30px;
  }
}

.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
  padding-top: 10px;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo {
  transition: opacity 0.15s ease-in-out;
}
.header-nav {
  display: flex;
  font-size: 21px;
  font-weight: 300;
  transition: opacity 0.15s ease-in-out;
}
.header-nav ul {
  display: flex;
  align-items: center;
  list-style-type: none;
  margin: 0;
}
.header-nav li {
  margin: 0 43px;
}
.header-nav a {
  color: #fff;
  transition: 0.15s ease-in-out;
  border-bottom: 1px solid transparent;
}
.header-nav a:hover, .header-nav a.active {
  color: #ff0101;
  border-bottom: 1px solid #ff0101;
}
.header.scrolled .header-logo,
.header.scrolled .header-nav {
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 1200px) {
  .header .header-nav {
    font-size: 18px;
  }
  .header .header-nav li {
    margin: 0 30px;
  }
}
@media (max-width: 991px) {
  .header .header-nav {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    justify-content: center;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.7);
    z-index: 100;
  }
  .header .header-nav ul {
    margin: 0 auto;
    flex-direction: column;
    padding: 0;
  }
  .header .header-nav ul li {
    margin: 15px 0;
  }
  .header .header-actions {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 105;
  }
  .header .header-menu-button {
    margin-left: 20px;
    cursor: pointer;
    width: 25px;
    height: 20px;
  }
  .header .header-menu-button span {
    background: #c70000;
    display: block;
    width: 25px;
    height: 2px;
  }
  .header .header-menu-button span:not(:last-of-type) {
    margin-bottom: 7px;
  }
}

body.menu-open .header-menu-button {
  position: relative;
}
body.menu-open .header-menu-button span {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 0;
  display: none;
}
body.menu-open .header-menu-button span:first-child {
  display: block;
  transform: translate(-50%, -50%) rotate(45deg);
}
body.menu-open .header-menu-button span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
  display: block;
}
body.menu-open .header-nav {
  display: flex;
}

.footer {
  padding-top: 150px;
  padding-bottom: 50px;
  color: #fff;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  margin: 0 -15px;
}
.footer-row-logo {
  margin-bottom: 20px;
}
.footer-row-logo img {
  max-width: 160px;
}
.footer-col {
  width: 33.333%;
  padding: 0 15px;
}
.footer-col-info p {
  margin-bottom: 20px;
}
.footer-col-links {
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
}
.footer .footer-links {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: 13px;
  color: #fff;
}
.footer .footer-links:not(:last-child) {
  padding-right: 20px;
}
.footer .footer-links li.footer-links-title {
  font-weight: 700;
  font-size: 15px;
}
.footer .footer-links li:not(.footer-links-title) {
  position: relative;
  padding-left: 15px;
}
.footer .footer-links li:not(.footer-links-title):before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9c0000;
  margin-right: 8px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.footer .footer-links a {
  font-weight: 400;
  color: inherit;
}
.footer .social-list {
  display: flex;
  align-items: center;
  list-style-type: none;
}
.footer .social-list li:not(:last-child) {
  margin-right: 40px;
}
.footer .social-list a {
  transition: 0.3s ease-in-out;
  display: inline-block;
}
.footer .social-list a:hover {
  transform: rotate(-360deg);
}
@media (max-width: 1200px) {
  .footer .footer-row {
    flex-direction: column;
  }
  .footer .footer-row .footer-col {
    margin-bottom: 20px;
  }
  .footer .footer-col {
    width: 100%;
  }
  .footer .footer-col-links {
    flex-direction: column;
    padding: 0 15px;
  }
  .footer .footer-links:not(:last-child) {
    padding: 0;
    margin-bottom: 20px;
  }
  .footer .footer-col-social {
    margin-top: 40px;
  }
  .footer .social-list {
    justify-content: center;
    padding: 0;
  }
  .footer .social-list img {
    max-width: 40px;
  }
}

body .modals {
  position: fixed;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40700;
  display: none;
}
body .modals .modal_container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .modals .modal_container .modal_back {
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.35);
  z-index: 40701;
}
body .modals .modal_container .modal_content {
  width: 500px;
  z-index: 40702;
  background: #151313;
  border: none;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  color: #fff;
}
body .modals .modal_container .modal_content:before {
  content: "";
  border-radius: 30px;
  position: absolute;
  background-color: #151313;
  background: linear-gradient(-142deg, rgba(0, 0, 0, 0) 0%, rgba(232, 4, 5, 0.11) 100%);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
body .modals .modal_container .modal_content.donationModal {
  width: 1140px;
  padding: 0;
  background-size: 400px auto;
  background-repeat: no-repeat;
  background-position: left 30px bottom -38px;
}
body .modals .modal_container .modal_content.donationModal #donateFormError.shown {
  background: #4a0000;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  margin: 15px 0;
  width: 100%;
}
body .modals .modal_container .modal_content.donationModal .modal_header {
  padding: 90px 0 0;
}
body .modals .modal_container .modal_content.donationModal .modal_body {
  padding: 0 105px 120px;
}
body .modals .modal_container .modal_content.donationModal .donation_container {
  padding-top: 40px;
  display: flex;
  align-items: center;
}
body .modals .modal_container .modal_content.donationModal .title {
  font-size: 3rem;
  font-weight: 700;
  font-family: "Ubuntu", sans-serif;
  color: #eeeeee;
  margin: 0 0 30px;
  line-height: 1;
}
body .modals .modal_container .modal_content.donationModal .donation_form {
  width: 280px;
}
body .modals .modal_container .modal_content.donationModal .donation_form .input {
  padding: 0;
}
body .modals .modal_container .modal_content.donationModal .donation_form .form-button {
  margin-top: 100px;
  text-align: center;
}
body .modals .modal_container .modal_content.donationModal .donation_form .form-button .btn {
  padding: 13px 40px 15px;
  font-size: 18px;
  background: #4a0000;
}
body .modals .modal_container .modal_content.donationModal .donation_form .form-button #donate_pre_submit.disable {
  opacity: 0.7;
  pointer-events: none;
}
body .modals .modal_container .modal_content.donationModal .donation_info {
  padding-left: 70px;
  padding-bottom: 30px;
  flex: 1;
}
body .modals .modal_container .modal_content.donationModal .donation_info h3 {
  font-weight: 700;
  margin-bottom: 20px;
}
body .modals .modal_container .modal_content.donationModal .donation_info-links {
  text-align: center;
  margin-top: 50px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
body .modals .modal_container .modal_content.donationModal .donation_info-links a {
  color: #fff;
  margin: 6px 10px;
}
body .modals .modal_container .modal_content.donationModal .donation_info-links a:hover {
  text-decoration: none;
}
body .modals .modal_container .modal_content.donateInfo {
  width: auto;
}
body .modals .modal_container .modal_content.donateInfo .modal_header {
  width: 100%;
  height: 4vw;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  position: relative;
  border-bottom: thin solid #b60000;
}
body .modals .modal_container .modal_content.donateInfo .modal_header i {
  position: absolute;
  right: 0;
  width: 1.3vw;
  height: 1.3vw;
  margin-right: 1.5vw;
}
body .modals .modal_container .modal_content.donateInfo .modal_body {
  padding: 0.75vw;
}
body .modals .modal_container .modal_content.donateInfo .itm_container {
  width: 40vw;
  height: 30vw;
  display: flex;
  flex-direction: column;
}
body .modals .modal_container .modal_content.donateInfo .itm_container .line {
  display: flex;
}
body .modals .modal_container .modal_content.donateInfo .itm_container .line .item {
  width: 10vw;
  height: 10vw;
  padding: 0.75vw;
  user-select: none;
}
body .modals .modal_container .modal_content.donateInfo .itm_container .line .item .cont {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(182, 0, 0, 0);
  border: thin solid rgba(182, 0, 0, 0.8);
  transition: 0.3s ease-in-out;
  border-radius: 0.4vw;
}
body .modals .modal_container .modal_content.donateInfo .itm_container .line .item .cont:hover {
  background: rgba(182, 0, 0, 0.9);
}
body .modals .modal_container .modal_content.donateInfo .itm_container .line .item .cont:hover .desc_cont {
  opacity: 1;
}
body .modals .modal_container .modal_content.donateInfo .itm_container .line .item .cont .desc_cont {
  position: absolute;
  display: flex;
  justify-content: center;
  flex-direction: column;
  bottom: 0;
  width: 100%;
  height: auto;
  transition: 0.3s;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 0 0 0.4vw 0.4vw;
  opacity: 0;
  padding: 0.5vw;
}
body .modals .modal_container .modal_content.donateInfo .itm_container .line .item .cont .desc_cont span {
  color: #eeeeee;
  text-align: center;
}
body .modals .modal_container .modal_content.donateInfo .itm_container .line .item .cont .desc_cont span.cost {
  font-family: "Montserrat-SB";
  font-size: 1vw;
}
body .modals .modal_container .modal_content.donateInfo .itm_container .line .item .cont .desc_cont span.desc {
  font-family: "Montserrat-R";
  font-size: 0.7vw;
}
body .modals .modal_container .modal_content.donateInfo .itm_container .line .item .cont .cimg {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 0.4vw;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
body .modals .modal_container .modal_content.donateContractOffer {
  width: auto;
  max-width: 80vw;
}
body .modals .modal_container .modal_content.donateContractOffer .modal_header {
  width: 100%;
  height: 4vw;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  position: relative;
  border-bottom: thin solid #b60000;
}
body .modals .modal_container .modal_content.donateContractOffer .modal_header i {
  position: absolute;
  right: 0;
  width: 1.3vw;
  height: 1.3vw;
  margin-right: 1.5vw;
}
body .modals .modal_container .modal_content.donateContractOffer .modal_body {
  padding: 0.75vw;
}
body .modals .modal_container .modal_content.donateContractOffer .modal_body ul,
body .modals .modal_container .modal_content.donateContractOffer .modal_body li {
  font-family: "Montserrat-R";
  font-size: 0.9vw;
  color: #eeeeee;
  margin-top: 0.4vw;
}
body .modals .modal_container .modal_content.donateContractOffer .modal_body ul {
  list-style: none;
  counter-reset: li;
}
body .modals .modal_container .modal_content.donateContractOffer .modal_body li:before {
  counter-increment: li;
  content: counters(li, ".") ". ";
}
body .modals .modal_container .modal_content .modal_header,
body .modals .modal_container .modal_content .modal_footer,
body .modals .modal_container .modal_content .modal_body {
  position: relative;
  z-index: 2;
}
body .modals .modal_container .modal_content .modal_body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 80px 50px;
}

body #policyModal .modal_container .modal_content .modal_body,
body #confPolicyModal .modal_container .modal_content .modal_body {
  max-height: calc(100vh - 20px);
  box-sizing: border-box;
}
body #policyModal .modal_container .modal_content .modal_body .policy-info,
body #confPolicyModal .modal_container .modal_content .modal_body .policy-info {
  overflow-y: auto;
}
body #policyModal .modal_container .modal_content .modal_body .policy-info::-webkit-scrollbar,
body #confPolicyModal .modal_container .modal_content .modal_body .policy-info::-webkit-scrollbar {
  width: 7px;
}
body #policyModal .modal_container .modal_content .modal_body .policy-info::-webkit-scrollbar-thumb,
body #confPolicyModal .modal_container .modal_content .modal_body .policy-info::-webkit-scrollbar-track {
  background-color: #fafafa00;
  border-radius: 100px;
  margin: 10px;
}
body #policyModal .modal_container .modal_content .modal_body .policy-info::-webkit-scrollbar-thumb,
body #confPolicyModal .modal_container .modal_content .modal_body .policy-info::-webkit-scrollbar-thumb {
  background-color: #b2b2b2;
  border-radius: 100px;
}

body .modals .modal_container .modal_content .modal_body .winError {
  height: auto;
  width: 20vw;
  border-radius: 0.4vw;
  margin: 0 0 0 0;
  background: #b60000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transition: 0.3s;
  font-family: "Montserrat-R";
  font-size: 1vw;
  color: #eeeeee;
}
body .modals .modal_container .modal_content .modal_body .winError.shown {
  animation: pulseShow 1.5s linear;
  padding: 1vw;
  opacity: 1;
  margin-bottom: 1vw;
}
body .modals .modal_container .modal_content .modal_body .winError.hidden {
  animation: none;
  padding: 0;
  opacity: 0;
  margin-bottom: 0;
}
body .modals .modal_container .modal_content .modal_body .imgc {
  width: 50%;
  height: auto;
  margin-bottom: 25px;
}
body .modals .modal_container .modal_content .modal_body .imgc img {
  width: 100%;
  border-radius: 0.4vw;
}
body .modals .modal_container .modal_content .modal_body .input {
  margin: 0 0 25px;
  padding: 0 20px;
  width: 100%;
}
body .modals .modal_container .modal_content .modal_body .input .pre-input {
  display: none;
}
body .modals .modal_container .modal_content .modal_body .input .pre-input i {
  width: 1.5vw;
  height: 1.4vw;
}
body .modals .modal_container .modal_content .modal_body .input input {
  width: 100%;
  height: 50px;
  border-radius: 30px;
  border: none;
  outline: none;
  text-align: center;
  background: #fff;
  font-size: 1rem;
  font-family: "Ubuntu", sans-serif;
  transition: 0.3s;
}
body .modals .modal_container .modal_content .modal_body .input input::placeholder {
  font-size: 1rem;
  font-family: "Ubuntu", sans-serif;
}
body .modals .modal_container .modal_content .modal_footer {
  display: flex;
  align-items: center;
  flex-direction: column;
  border-top: none;
  width: 100%;
  padding: 0 0 100px;
}
body .modals .modal_container .modal_content .modal_footer #donate_submit {
  margin-bottom: 15px;
}
body .modals .modal_container .modal_content .modal_footer .form-button {
  padding: 0 30px;
  margin-bottom: 15px;
  text-align: center;
}
body .modals .modal_container .modal_content .modal_footer .form-button-note {
  font-size: 0.8rem;
  color: #8f8f92;
  max-width: 300px;
  margin: 10px auto 0;
}
body .modals .modal_container .modal_content .modal_footer .form-button-note.small {
  font-size: 0.7rem;
  margin-top: 5px;
}
body .modals .modal_container .modal_content #authForm,
body .modals .modal_container .modal_content #restoreForm,
body .modals .modal_container .modal_content #restoreForm_confirm {
  width: 100%;
  transition: 0.3s ease-in-out;
}
body .modals .modal_container .modal_content #authForm #restoreWinError_confirm,
body .modals .modal_container .modal_content #restoreForm #restoreWinError_confirm,
body .modals .modal_container .modal_content #restoreForm_confirm #restoreWinError_confirm {
  height: auto;
  margin: 0 0 1vw 0;
  padding: 1vw;
}
body .modals .modal_container .modal_content #authForm .imgc,
body .modals .modal_container .modal_content #restoreForm .imgc,
body .modals .modal_container .modal_content #restoreForm_confirm .imgc {
  margin: 0 0 25px;
}
body .modals .modal_container .modal_content #authForm .title,
body .modals .modal_container .modal_content #restoreForm .title,
body .modals .modal_container .modal_content #restoreForm_confirm .title {
  font-size: 3rem;
  font-weight: 700;
  font-family: "Ubuntu", sans-serif;
  color: #eeeeee;
  margin: 0 0 40px;
  line-height: 1;
  text-transform: uppercase;
}
body .modals .modal_container .modal_content #authForm .title span,
body .modals .modal_container .modal_content #restoreForm .title span,
body .modals .modal_container .modal_content #restoreForm_confirm .title span {
  display: inline-block;
}
body .modals .modal_container .modal_content #authForm .title span:after,
body .modals .modal_container .modal_content #restoreForm .title span:after,
body .modals .modal_container .modal_content #restoreForm_confirm .title span:after {
  content: "";
  height: 2px;
  background: #750000;
  display: block;
  width: 90%;
  margin: 10px auto 0;
}
body .modals .modal_container .modal_content #authForm .btn_secondary,
body .modals .modal_container .modal_content #restoreForm .btn_secondary,
body .modals .modal_container .modal_content #restoreForm_confirm .btn_secondary {
  font-size: 14px;
  color: #eeeeee;
  background: transparent;
  text-decoration: underline;
}
body .modals .modal_container .modal_content #authForm i,
body .modals .modal_container .modal_content #restoreForm i,
body .modals .modal_container .modal_content #restoreForm_confirm i {
  opacity: 1;
  cursor: default;
}
body .modals .modal_container .modal_content #authForm .btn.btn-large,
body .modals .modal_container .modal_content #restoreForm .btn.btn-large,
body .modals .modal_container .modal_content #restoreForm_confirm .btn.btn-large {
  padding: 13px 60px 15px;
  font-size: 18px;
  background: #4a0000;
}
body .modals .modal_container .modal_content #restoreForm,
body .modals .modal_container .modal_content #restoreForm_confirm {
  transition: 0.3s;
  opacity: 0;
}
body #authModal .modal_container .modal_content {
  background-size: 400px auto;
  background-repeat: no-repeat;
  background-position: left 70px bottom -38px;
}
body .info-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40002;
  display: none;
}
body .info-modal-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 25px 50px;
  color: #fff;
  background: #151313;
  border-radius: 50px;
  width: 540px;
}
@media (max-width: 767px) {
  body .info-modal-inner {
    width: 95%;
  }
}
body .info-modal-close {
  position: absolute;
  right: 30px;
  top: 20px;
  cursor: pointer;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #9c0000;
}
body .info-modal-close:before, body .info-modal-close:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  display: block;
  width: 10px;
  height: 1px;
}
body .info-modal-close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
body .info-modal-close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
body .info-modal-title {
  font-size: 23px;
  font-weight: 500;
  padding-bottom: 30px;
  position: relative;
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;
}
body .info-modal-title-dots {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}
body .info-modal-title-dots span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #9c0000;
  margin-right: 10px;
}
body .info-modal-list {
  font-size: 17px;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  list-style-type: none;
  color: #e0e0e0;
}
body .info-modal-list li {
  margin-bottom: 10px;
  position: relative;
}
body .info-modal-list li:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9c0000;
  margin-right: 8px;
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translate(0, -50%);
}
body .tutorial-section .tutorial-block .info ul.info-modal-list {
  margin: 0;
}
body #policyModal .modal_container .modal_content .modal_body, body #confPolicyModal .modal_container .modal_content .modal_body {
  padding: 60px 40px 50px;
}
body #policyModal .modal_container .modal_content .modal_body .title, body #confPolicyModal .modal_container .modal_content .modal_body .title {
  font-size: 27px;
  margin-bottom: 30px;
}

.hero-section {
  height: 1160px;
  position: relative;
  padding-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: bottom center;
}
.hero-section:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
}
.hero-section .container {
  position: relative;
  z-index: 3;
}
.hero-section .info {
  text-align: center;
}
.hero-section .logo-large {
  margin-bottom: 200px;
}
.hero-section .logo-large img {
  max-width: 100%;
}
@media (max-width: 991px) {
  .hero-section .logo-large img {
    width: 80%;
    max-width: 540px;
  }
}
.hero-section .servers-online {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translate(0, -50%);
  counter-reset: online;
}
.hero-section .servers-online-row {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.hero-section .servers-online-row:before {
  counter-increment: online;
  content: counter(online);
  width: 35px;
  height: 35px;
  display: block;
  background: #600303;
  border-radius: 10px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 500;
}
.hero-section .servers-online-players {
  font-size: 19px;
  font-weight: 300;
  color: #9d9d9d;
}
.hero-section .servers-online-players strong {
  font-weight: 500;
  color: #fff;
  font-size: 26px;
  margin-right: 10px;
}
.hero-section .servers-online-total {
  font-size: 19px;
  font-weight: 300;
}
.hero-section .servers-online-total strong {
  font-weight: 400;
}
@media (max-width: 991px) {
  .hero-section .servers-online {
    left: 0;
    right: 0;
    bottom: 0;
    top: initial;
    transform: none;
    padding: 15px 30px;
    background: rgba(22, 19, 19, 0.8);
    text-align: center;
  }
  .hero-section .servers-online-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero-section .servers-online-list .servers-online-row {
    margin: 0 10px 15px;
  }
}
@media (max-width: 991px) {
  .hero-section {
    height: 100vh;
    padding: 60px 0 100px;
  }
  .hero-section .logo-large {
    margin-bottom: 60px;
  }
}

.professions-section {
  padding: 35px 0 140px;
}
.professions-section .professions-list {
  display: flex;
  align-items: flex-end;
}
.professions-section .profession {
  position: relative;
}
.professions-section .profession-image {
  transform: scale(1.31);
}
.professions-section .profession-image img {
  max-width: 100%;
}
.professions-section .profession-name {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 33px;
  font-weight: 700;
  color: #000000;
  transform: rotate(-75deg);
  line-height: 1;
}
.professions-section .profession.profession-citizen .profession-name {
  right: -84px;
  bottom: 110px;
  transform: rotate(-74deg);
}
.professions-section .profession.profession-army .profession-name {
  right: -29px;
  bottom: 115px;
}
.professions-section .profession.profession-police .profession-name {
  right: -48px;
  bottom: 115px;
}
.professions-section .profession.profession-government .profession-name {
  right: -103px;
  bottom: 119px;
}
.professions-section .profession.profession-mafia .profession-name {
  right: -33px;
  bottom: 110px;
}
@media (max-width: 1200px) {
  .professions-section .professions-list {
    justify-content: center;
    flex-wrap: wrap;
  }
  .professions-section .profession {
    width: 200px;
  }
}
@media (max-width: 500px) {
  .professions-section {
    overflow: hidden;
  }
  .professions-section .profession {
    width: 50%;
    margin-bottom: 15px;
  }
}

.social-section .social-blocks {
  display: flex;
  justify-content: center;
}
@media (max-width: 1200px) {
  .social-section .social-blocks {
    flex-direction: column;
    align-items: center;
  }
  .social-section .social-blocks .social {
    margin-right: 0;
  }
}
.social-section .social {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  margin-right: 30px;
}
.social-section .social .img {
  width: 180px;
  margin-right: 45px;
}
.social-section .social .img img {
  max-width: 100%;
}
.social-section .social .info {
  font-size: 20px;
  font-weight: 300;
  flex: 1;
  margin-right: 70px;
  text-align: center;
}
.social-section .social .info p:not(:last-of-type) {
  margin-bottom: 15px;
}
.social-section .social .info strong {
  font-weight: 700;
}
.social-section .social .actions {
  width: 200px;
  text-align: center;
}
.social-section .social .actions .btn {
  width: 100%;
  text-align: center;
  padding: 14px 15px;
}
.social-section .social .actions .followers-count {
  font-size: 13px;
  color: #939393;
  font-weight: 300;
  margin-top: 5px;
}
@media (max-width: 991px) {
  .social-section .social {
    flex-direction: column;
    align-items: center;
  }
  .social-section .social .img {
    margin: 0 0 25px;
    width: 140px;
  }
  .social-section .social .info {
    margin: 0;
  }
}

.tutorial-section .tutorial-block {
  display: flex;
  margin-bottom: 100px;
}
.tutorial-section .tutorial-block:nth-child(2n+1) {
  flex-direction: row-reverse;
}
.tutorial-section .tutorial-block:nth-child(2n+1) .info {
  padding-left: 60px;
}
.tutorial-section .tutorial-block .img {
  flex: 1;
  margin: 0 -50px;
}
.tutorial-section .tutorial-block .img img {
  max-width: 100%;
}
.tutorial-section .tutorial-block .info {
  width: 810px;
  font-size: 20px;
  font-weight: 300;
  padding-top: 20px;
}
.tutorial-section .tutorial-block .info h3 {
  font-size: 41px;
  font-weight: 700;
  margin-bottom: 25px;
}
.tutorial-section .tutorial-block .info p {
  margin-bottom: 20px;
}
.tutorial-section .tutorial-block .info > ul {
  margin: 0 0 40px;
  padding: 0;
  list-style-type: none;
}
.tutorial-section .tutorial-block .info > ul li {
  margin-bottom: 5px;
}
.tutorial-section .tutorial-block .info > ul li:before {
  content: "-";
  margin-right: 5px;
  color: #9c0000;
  font-size: 20px;
}
.tutorial-section .tutorial-block .info .red {
  color: #ff0000;
}
.tutorial-section .tutorial-block .info-buttons {
  text-align: center;
}
.tutorial-section .tutorial-block .info-buttons .btn.btn-large {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  text-align: center;
  font-size: 20px;
}
@media (max-width: 1440px) {
  .tutorial-section .tutorial-block .img {
    padding-right: 50px;
    width: 50%;
  }
  .tutorial-section .tutorial-block .info {
    width: 50%;
  }
}
@media (max-width: 1200px) {
  .tutorial-section .tutorial-block {
    flex-direction: column;
    align-items: center;
  }
  .tutorial-section .tutorial-block:nth-child(2n+1) {
    flex-direction: column;
  }
  .tutorial-section .tutorial-block:nth-child(2n+1) .info {
    padding-left: 0;
  }
  .tutorial-section .tutorial-block .img {
    padding: 0;
    max-width: 540px;
    width: 100%;
  }
  .tutorial-section .tutorial-block .info {
    width: 100%;
    max-width: 768px;
    font-size: 16px;
    text-align: center;
  }
  .tutorial-section .tutorial-block .info h3 {
    font-size: 30px;
  }
  .tutorial-section .tutorial-block .info br {
    display: none;
  }
  .tutorial-section .tutorial-block .info .info-modal-list {
    text-align: left;
  }
  .tutorial-section .tutorial-block .info-buttons .btn.btn-large {
    font-size: 16px;
  }
}

/*# sourceMappingURL=styles.css.map */
