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

a {
  color: inherit;
  text-decoration: none;
}

html {
  font-size: 10px;
  direction: rtl;
  font-family: yekanbakh-regular;
  height: 100%;
  scroll-behavior: smooth;
}

.container {
  max-width: 1250px;
  padding: 0px 10px;
  margin: auto;
}

.container-left {
  max-width: 1250px;
  margin-right: auto;
}

.color-primary {
  color: #f14b29;
}

.bg-primary {
  background: #f14b29;
}

.font-fat {
  font-family: yekanbakh-fat;
  font-weight: 100;
}

::-moz-selection {
  background: #f14b29;
  color: #fff;
}

::selection {
  background: #f14b29;
  color: #fff;
}

.neskala-search {
  font-size: 1.6em;
}

header {
  position: relative;
  height: 100%;
  color: #fff;
  overflow: hidden;
}

header::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#00000040), color-stop(40%, #00000000));
  background: linear-gradient(to bottom, #00000040, #00000000 40%);
  pointer-events: none;
  z-index: 1;
}

header .container.nav {
  position: absolute;
  padding-top: 20px;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
}

header .container.nav nav {
  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;
  color: white;
}

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

header .container.nav nav ul.items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style-type: none;
}

header .container.nav nav ul.items li {
  -webkit-transition: margin-bottom 0.3s;
  transition: margin-bottom 0.3s;
}

header .container.nav nav ul.items li a {
  padding: 5px 10px;
  margin: 0px 10px;
  display: inline-block;
  font-size: 1.7rem;
  -webkit-transition: text-shadow 0.3s, -webkit-transform 0.3s;
  transition: text-shadow 0.3s, -webkit-transform 0.3s;
  transition: text-shadow 0.3s, transform 0.3s;
  transition: text-shadow 0.3s, transform 0.3s, -webkit-transform 0.3s;
}

header .container.nav nav ul.items li a:hover {
  text-shadow: 0 0 10px #ffffffc0;
}

header .container.nav nav ul.items li a.search-item {
  direction: ltr;
}

header .container.nav nav ul.items li a.search-item button {
  background: none;
  border: none;
  cursor: pointer;
  color: #ffffff;
  font-size: 1.5rem;
}

header .container.nav nav ul.items li a.search-item button .neskala-search {
  position: relative;
  top: 4px;
  z-index: 3;
}

header .container.nav nav ul.items li a.search-item.active .search-input {
  cursor: text;
  width: 250px;
  opacity: 1;
  margin-right: -12rem;
}

header .container.nav nav ul.items li a.search-item.active .neskala-search {
  color: #000000;
}

header .container.nav nav ul.items li a.search-item .search-input {
  font-family: yekanbakh-regular;
  direction: rtl;
  text-align: right;
  padding: 10px 15px;
  position: relative;
  top: -5px;
  left: -3.5rem;
  margin-right: -3.5rem;
  background: #ffffff;
  border: none;
  cursor: pointer;
  border-radius: 20px;
  width: 4rem;
  opacity: 0;
  -webkit-transition: width 0.4s, opacity 0.4s, margin-right 0.4s;
  transition: width 0.4s, opacity 0.4s, margin-right 0.4s;
}

header .container.nav nav ul.items li.user {
  position: relative;
  direction: ltr;
}

header .container.nav nav ul.items li.user.active .popup-box {
  -webkit-transform: rotateX(0deg);
          transform: rotateX(0deg);
}

header .container.nav nav ul.items li.user .popup-box {
  -webkit-transform-origin: 50% -10px;
          transform-origin: 50% -10px;
  -webkit-transform: rotateX(90deg);
          transform: rotateX(90deg);
  position: absolute;
  left: -15px;
  background: #ffffff;
  color: #000000;
  margin-top: 15px;
  -webkit-box-shadow: 0 0 15px #00000050;
          box-shadow: 0 0 15px #00000050;
  border-radius: 5px;
  width: 350px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

header .container.nav nav ul.items li.user .popup-box::after {
  content: "";
  position: absolute;
  left: 35px;
  top: -7px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 15px;
  height: 15px;
  background: #ffffff;
}

header .container.nav nav ul.items li.user .popup-box::before {
  content: "";
  top: -30px;
  left: 10px;
  width: 60px;
  height: 40px;
  position: absolute;
}

header .container.nav nav ul.items li.user .popup-box .guest {
  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;
  padding: 25px 25px;
}

header .container.nav nav ul.items li.user .popup-box .guest .or {
  font-size: 1.6rem;
  padding: 0px 5px;
}

header .container.nav nav ul.items li.user .popup-box .guest a {
  width: 130px;
  border-radius: 5px;
  text-align: center;
  display: inline-block;
  background: #ffffff;
  border: 3px solid #000000;
  font-family: yekanbakh-regular;
  font-weight: 900;
  font-size: 1.5rem;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  padding: 5px 0px;
}

header .container.nav nav ul.items li.user .popup-box .guest a.register {
  background: #000000;
  color: #ffffff;
}

header .container.nav nav ul.items li.user .popup-box .guest a:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

header .container.nav nav ul.items li.user .popup-box .auth {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 10px;
}

header .container.nav nav ul.items li.user .popup-box .auth .informations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  font-size: 1.5rem;
}

header .container.nav nav ul.items li.user .popup-box .auth .informations img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}

header .container.nav nav ul.items li.user .popup-box .auth .informations .texts p {
  text-align: center;
}

header .container.nav nav ul.items li.user .popup-box .auth .informations .texts .email {
  color: #00000080;
}

header .container.nav nav ul.items li.user .popup-box .auth .link {
  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;
}

header .container.nav nav ul.items li.user .popup-box .auth .link .dot {
  width: 5px;
  height: 5px;
  background: black;
  border-radius: 50%;
  margin: 1px;
}

header .container.nav nav button.mobile-menu-icon-open {
  background: none;
  color: #ffffff;
  border: none;
  font-size: 3.5rem;
  padding-left: 20px;
  padding-bottom: 8px;
  cursor: pointer;
  display: none;
}

header .slider {
  z-index: 2;
  position: relative;
}

header .slider .slide {
  position: relative;
  background-position: center;
  background-size: cover;
}

header .slider .slide .background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}

header .slider .slide .background::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: black;
}

header .slider .slide .overlay::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#00000050), to(#00000000));
  background: linear-gradient(to bottom, #00000050, #00000000);
  pointer-events: none;
}

header .slider .slide .container {
  position: relative;
  padding-top: 200px;
}

header .slider .slide .container .title {
  font-family: yekanbakh-fat;
  padding-top: 50px;
  font-size: 6.5rem;
  font-weight: 100;
}

header .slider .slide .container .subtitle {
  font-size: 4rem;
  font-family: yekanbakh-fat;
}

header .slider .slide .container .more {
  margin-top: 40px;
  margin-left: 10%;
  margin-right: auto;
  width: 200px;
  font-size: 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .slider .slide .container .more:hover .neskala-arrow-left {
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
}

header .slider .slide .container .more:hover span:first-child {
  text-shadow: 0 0 10px #ffffffa0;
}

header .slider .slide .container .more span {
  margin: 0 11px;
  -webkit-transition: text-shadow 0.3s, -webkit-transform 0.3s;
  transition: text-shadow 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, text-shadow 0.3s;
  transition: transform 0.3s, text-shadow 0.3s, -webkit-transform 0.3s;
}

header .slider .slide .container .more span.neskala-arrow-left {
  font-size: 1.67rem;
  background: #f14b29;
  padding: 10px;
  border-radius: 50%;
}

header .slider .slide.slide-2 {
  padding-bottom: 150px;
}

header .slider .slide.slide-2 .title {
  text-align: left;
  margin-left: 13%;
  line-height: 1;
}

header .slider .slide.slide-2 .background {
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}

header .slider .slide.slide-2 .overlay::after {
  background: -webkit-gradient(linear, left top, left bottom, from(#00000050), to(#00000000));
  background: linear-gradient(to bottom, #00000050, #00000000);
}

header .slider .slide.slide-2 .neskala-arrow-left {
  border: 2px solid #ffffff;
  background: none !important;
}

header .slider .slide.slide-2 .slider-buttons {
  text-align: left;
  margin-left: 15%;
  padding-top: 50px;
}

header .slider .slide.slide-2 .slider-buttons button {
  border: none;
  background: #fff;
  color: #000;
  font-size: 2rem;
  padding: 2rem;
  margin: 0 5px;
  opacity: 1;
}

header .slider .slide.slide-2 .slider-buttons button:not(.disabled) {
  cursor: pointer;
}

header .slider .slide.slide-2 .slider-buttons button.disabled {
  opacity: 0.6;
}

header .slider .slide.slide-2 .slider-buttons button span {
  position: relative;
  left: 0;
  -webkit-transition: left 0.3s;
  transition: left 0.3s;
}

header .slider .slide.slide-2 .slider-buttons button.active#right:hover span {
  left: 5px;
}

header .slider .slide.slide-2 .slider-buttons button.active#left:hover span {
  left: -5px;
}

header .slider .pagination {
  width: 5px;
  height: 75%;
  position: absolute;
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-30%);
          transform: translateY(-30%);
  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;
}

header .slider .pagination .swiper-pagination-bullet {
  border-radius: 0 !important;
  height: 100%;
  width: 100%;
  margin: 2px 0px;
  padding: 0px 1px;
  background: #ffffff;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  cursor: pointer;
}

header .slider .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

header .foot {
  z-index: 2;
  position: relative;
  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-top: 80px;
}

header .foot .slider-buttons {
  width: 25%;
  text-align: center;
}

header .foot .slider-buttons button {
  border: none;
  background: #fff;
  color: #000;
  font-size: 2rem;
  padding: 2rem;
  margin: 0 5px;
  opacity: 1;
}

header .foot .slider-buttons button:not(.disabled) {
  cursor: pointer;
}

header .foot .slider-buttons button.disabled {
  opacity: 0.6;
}

header .foot .slider-buttons button span {
  position: relative;
  left: 0;
  -webkit-transition: left 0.3s;
  transition: left 0.3s;
}

header .foot .slider-buttons button.active#right:hover span {
  left: 5px;
}

header .foot .slider-buttons button.active#left:hover span {
  left: -5px;
}

header .foot .slogans {
  width: 75%;
  padding: 45px;
  border-top-right-radius: 70px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: black;
}

header .foot .slogans .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0px 15px;
  padding: 0px 15px;
}

header .foot .slogans .item .logo {
  background: #fce7e3;
  color: #f15231;
  font-size: 2.2rem;
  display: inline-block;
  padding: 8px 10px 0px 10px;
  border-radius: 15px;
  margin-left: 10px;
}

header .foot .slogans .item .logo .neskala-hand {
  display: inline-block;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

header .foot .slogans .item .texts span {
  display: block;
}

header .foot .slogans .item .texts .top {
  font-size: 1.6rem;
  margin-bottom: -5px;
  font-family: yekanbakh-regular;
  font-weight: 900;
}

header .foot .slogans .item .texts .bottom {
  font-size: 1.3rem;
  color: #999;
  font-weight: yekanbakh-thin;
}

section#join {
  margin-top: 90px;
  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;
}

section#join .right {
  padding-left: 50px;
  width: 60%;
}

section#join .right .title {
  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;
}

section#join .right .title h3 {
  font-size: 3rem;
  font-family: yekanbakh-heavy;
  font-weight: 100;
}

section#join .right .title a {
  font-size: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #444;
}

section#join .right .title a span {
  position: relative;
  left: 0;
  margin-right: 10px;
  -webkit-transition: left 0.3s;
  transition: left 0.3s;
}

section#join .right .title a:hover span {
  left: -5px;
}

section#join .right p.description {
  width: 70%;
  font-size: 1.75rem;
  color: #000000b0;
  line-height: 1.8;
}

section#join .right .steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

section#join .right .steps .steps-container {
  direction: ltr;
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

section#join .right .steps .steps-container .step {
  width: 180px;
  padding: 3.5rem 3rem;
  background: #ebebeb;
  border-radius: 10px;
  margin-left: 10px;
  font-size: 1.8rem;
  color: #fff;
  font-family: yekanbakh-heavy;
  font-weight: 100;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}

section#join .right .steps .steps-container .step:hover:not(.active) {
  -webkit-box-shadow: 0 0 10px #ebebeb90;
          box-shadow: 0 0 10px #ebebeb90;
}

section#join .right .steps .steps-container .step.active {
  background: #f14b29;
}

section#join .right .steps .steps-container .step.active:hover {
  -webkit-box-shadow: 0 0 10px #f14b2990;
          box-shadow: 0 0 10px #f14b2990;
}

section#join .right .steps .steps-container .step span {
  display: block;
}

section#join .right .steps .steps-container .step .number {
  font-size: 3rem;
}

section#join .right .steps .steps-container .step .step-text {
  font-family: yekanbakh-thin;
  margin-top: 10px;
  font-size: 0.8em;
}

section#join .right .steps .steps-controller {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

section#join .right .steps .steps-controller button {
  background: #efefef;
  padding: 2rem;
  font-size: 2rem;
  color: #fff;
  border: none;
  margin: 5px;
  position: relative;
  right: 35px;
  outline: none;
}

section#join .right .steps .steps-controller button span {
  position: relative;
  left: 0;
  -webkit-transition: left 0.3s;
  transition: left 0.3s;
}

section#join .right .steps .steps-controller button.active {
  cursor: pointer;
  background: #7f7f7f;
}

section#join .right .steps .steps-controller button.active.btn-left:hover span {
  left: -3px;
}

section#join .right .steps .steps-controller button.active.btn-right:hover span {
  left: 3px;
}

section#join .right .steps .steps-controller button.active:active span {
  top: 2px;
}

section#join .left {
  width: 40%;
}

section#join .left .img-container {
  width: 100%;
}

section#join .left .img-container img {
  width: 100%;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

section#news {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 3fr 3fr 6fr;
      grid-template-columns: 3fr 3fr 6fr;
  grid-gap: 30px;
  padding: 130px 30px;
  color: white;
}

section#news .item {
  position: relative;
  padding: 150px 30px 70px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

section#news .item .title {
  font-size: 2.5rem;
}

section#news .item .cta-container {
  padding-top: 30px;
  text-align: left;
}

section#news .item .cta-container .cta {
  background: #fff;
  color: #000;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 1.3rem;
  font-family: yekanbakh-thin;
  -webkit-transition: padding 0.3s;
  transition: padding 0.3s;
}

section#news .item .cta-container .cta:hover {
  padding: 10px 20px;
}

section#news .item * {
  position: relative;
  z-index: 2;
}

section#news .item:hover::after {
  opacity: 0.4;
}

section#news .item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(#00000070), to(#00000020));
  background: linear-gradient(to top, #00000070, #00000020);
  opacity: 0.7;
  pointer-events: none;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

section#facilities {
  padding-bottom: 80px;
}

section#facilities .header {
  padding-bottom: 72px;
}

section#facilities .header h5.title {
  font-size: 2.8rem;
  font-weight: 900;
  font-family: yekanbakh-thin;
  text-shadow: 0 0 1px #000000a0;
}

section#facilities .header .controls {
  margin-top: -3.8rem;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

section#facilities .header .controls .buttons {
  padding-top: 11px;
  font-size: 2.5rem;
}

section#facilities .header .controls .buttons span {
  margin: 5px;
  cursor: pointer;
  color: #000000;
}

section#facilities .header .controls .buttons span.disabled {
  color: #cecece;
  cursor: default;
}

section#facilities .header .controls .more {
  display: inline-block;
  padding: 11px 25px;
  border: 1px solid #cecece;
  font-family: yekanbakh-thin;
  border-radius: 50px;
  font-size: 1.5rem;
  margin-right: 20px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}

section#facilities .header .controls .more:hover {
  border-color: #929292;
}

section#facilities .body .items .item .img-container {
  padding: 72px 0 34px;
  text-align: center;
  border-radius: 15px;
  background-color: #d8d8d8;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

section#facilities .body .items .item .img-container img {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

section#facilities .body .items .item .img-container:hover {
  background-color: #cacaca;
}

section#facilities .body .items .item .img-container:hover img {
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
}

section#facilities .body .items .item .text-container {
  padding-top: 30px;
}

section#facilities .body .items .item .text-container .title {
  font-size: 2rem;
  font-family: yekanbakh-regular;
  font-weight: 100;
}

section#facilities .body .items .item .text-container .subtitle {
  font-size: 1.5rem;
  color: #808080;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

section#club {
  background: -webkit-gradient(linear, left top, left bottom, from(#00000020), to(#00000020)), url("/assets/images/club-background.png");
  background: linear-gradient(to bottom, #00000020, #00000020), url("/assets/images/club-background.png");
  background-size: cover;
  max-height: 230px;
  margin-bottom: 70px;
  border-radius: 15px;
  padding: 80px 120px 70px;
  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;
  color: #ffffff;
}

section#club .right .title {
  font-size: 2.9rem;
  font-family: yekanbakh-heavy;
  font-weight: 300;
  margin: 10px 0 -10px;
}

section#club .right .subtitle {
  font-size: 3rem;
}

section#club .left .club-number-input {
  padding: 1.15rem 2.5rem 1rem;
  border-radius: 30px;
  width: 300px;
  font-family: yekanbakh-regular;
  outline: none;
  display: inline-block;
  color: #999999;
  border: none;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

section#club .left .club-number-input:hover {
  -webkit-transform: scaleX(1.03);
          transform: scaleX(1.03);
}

section#club .left .club-submit {
  font-family: yekanbakh-regular;
  background: #f14b29;
  color: #ffffff;
  border: none;
  font-size: 1.5rem;
  padding: 1rem 3rem;
  border-radius: 2.5rem;
  cursor: pointer;
  margin-right: 8px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

section#club .left .club-submit:hover {
  -webkit-transform: scaleX(1.1);
          transform: scaleX(1.1);
}

footer .columns {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 5fr 5fr;
      grid-template-columns: 5fr 5fr;
}

footer .columns .col-right .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}

footer .columns .col-right .logo img {
  padding-bottom: 1rem;
  margin-left: 1rem;
  margin-right: -1rem;
}

footer .columns .col-right .logo h2 {
  font-size: 2rem;
  font-family: yekanbakh-heavy;
  font-weight: 100;
}

footer .columns .col-right .description {
  padding-top: 1rem;
  color: #777;
  font-size: 1.5rem;
  font-family: yekanbakh-thin;
}

footer .columns .col-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

footer .columns .col-left .links {
  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;
  width: 40%;
}

footer .columns .col-left .links .col .title {
  font-weight: bold;
  font-size: 1.6rem;
  padding-bottom: 3rem;
  display: inline-block;
}

footer .columns .col-left .links .col ul {
  list-style-type: none;
}

footer .columns .col-left .links .col ul li {
  padding: 1px 0px;
}

footer .columns .col-left .links .col ul li a {
  display: inline-block;
  padding: 3px 0px;
  font-size: 1.4rem;
  font-family: yekanbakh-thin;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

footer .columns .col-left .links .col ul li a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

footer .columns .col-left .logos {
  position: relative;
}

footer .columns .col-left .logos::after {
  content: "";
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #000000;
  -webkit-filter: blur(30px);
          filter: blur(30px);
  opacity: 0.1;
}

footer .columns .col-left .logos a {
  position: relative;
  z-index: 2;
}

footer .columns .col-left .logos a img {
  border-radius: 15px;
}

footer .social-icons {
  padding-top: 4rem;
  padding-bottom: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #c5c5c5;
  font-size: 1.8rem;
}

footer .social-icons .icon {
  padding: 0 0.8rem 0;
  margin: 0 0.8rem 0;
  -webkit-transition: color 0.3s, -webkit-transform 0.3s;
  transition: color 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, color 0.3s;
  transition: transform 0.3s, color 0.3s, -webkit-transform 0.3s;
}

footer .social-icons .icon:hover {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  color: #a0a0a0;
}

footer .copy {
  text-align: center;
  padding: 3.1rem 0 2.9rem;
  border-top: 0.5px solid #dedede;
  color: #bebebe;
  font-size: 1.2rem;
}

@media only screen and (max-width: 1080px) {
  section#club {
    padding: 80px;
  }
}

@media only screen and (max-width: 1024px) {
  header .foot .slogans {
    padding: 45px 0px !important;
  }
}

@media only screen and (max-width: 992px) {
  section#join .right .title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  section#join .right .title a {
    width: 100%;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
  section#join .right .description {
    width: 100% !important;
  }
  section#news {
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
  }
  section#club {
    padding: 80px 30px;
  }
}

@media only screen and (max-width: 950px) {
  footer .container .columns {
    -ms-grid-columns: 5fr 6fr;
        grid-template-columns: 5fr 6fr;
  }
}

@media only screen and (max-width: 900px) {
  header .foot .slogans .item {
    margin: 0 7px 0 0 !important;
  }
  section#club {
    padding: 40px 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .container .columns .col-left {
    -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;
  }
  footer .container .columns .col-left .links {
    margin-bottom: 20px;
    width: 100%;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  footer .container .columns .col-left .logos {
    text-align: center;
    width: 70%;
  }
}

@media only screen and (max-width: 850px) {
  header .container.nav nav ul.items li a.search-item.active .search-input {
    width: 200px !important;
  }
}

@media only screen and (max-width: 800px) {
  header .foot .slogans .item {
    margin: 0 7px 0 0 !important;
    padding: 0 7px 0 0 !important;
  }
}

@media only screen and (max-width: 768px) {
  header .container.nav nav ul.items li a.search-item.active .search-input {
    margin-right: -80px;
  }
  header .container.nav nav ul li a {
    margin: 0 !important;
  }
  header .foot {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  header .foot .slogans {
    margin-top: 10px;
    width: 100%;
    border-radius: 0;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  header .foot .slider-buttons {
    width: 100%;
  }
  section#join {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  section#join .right {
    width: 100%;
    padding-left: 0;
  }
  section#join .right .title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  section#join .right .title a {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 20px 0;
    width: auto;
    font-size: 2.2rem;
  }
  section#join .right .title a span {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  section#join .right .description {
    text-align: center;
    padding: 0 20px 20px;
  }
  section#join .right .steps {
    padding: 0 20px;
  }
  section#join .right .steps .steps-container {
    width: 70%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  section#join .right .steps .steps-controller {
    width: 30%;
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
  }
  section#join .left {
    width: 60%;
  }
  section#news {
    grid-gap: 10px;
  }
}

@media only screen and (max-width: 700px) {
  section#news .item {
    padding: 150px 10px 70px !important;
  }
  section#facilities .header .controls {
    margin-top: 0 !important;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
    width: 100% !important;
  }
  footer .container .columns {
    -ms-grid-columns: 6fr 5fr;
        grid-template-columns: 6fr 5fr;
  }
  footer .container .columns .col-left .logos {
    width: 100%;
  }
}

@media only screen and (max-width: 680px) {
  header .nav.container .container nav ul.items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
    position: fixed;
    right: -40%;
    width: 40%;
    top: 0;
    height: 100%;
    margin: 0;
    background: #f14b29;
    overflow: scroll;
    -webkit-transition: right 0.3s, -webkit-box-shadow 0.5s;
    transition: right 0.3s, -webkit-box-shadow 0.5s;
    transition: right 0.3s, box-shadow 0.5s;
    transition: right 0.3s, box-shadow 0.5s, -webkit-box-shadow 0.5s;
  }
  header .nav.container .container nav ul.items.active {
    right: 0;
    -webkit-box-shadow: 0 0 200px #000000b0;
            box-shadow: 0 0 200px #000000b0;
  }
  header .nav.container .container nav ul.items li {
    width: 100%;
    text-align: center;
  }
  header .nav.container .container nav ul.items li a {
    padding: 20px 0px !important;
  }
  header .nav.container .container nav ul.items li.user .popup-box {
    background: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    left: 0 !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
  header .nav.container .container nav ul.items li.user .popup-box::after {
    display: none !important;
  }
  header .nav.container .container nav ul.items li.user .popup-box .guest {
    padding: 5px 10px !important;
  }
  header .nav.container .container nav ul.items li.user .popup-box .guest a {
    background: none !important;
    padding: 5px 0px !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
  }
  header .nav.container .container nav ul.items li.user .popup-box .guest .or {
    color: #ffffff !important;
  }
  header .nav.container .container nav ul.items li.user .popup-box .auth {
    position: relative;
    top: -40px;
  }
  header .nav.container .container nav ul.items li.user .popup-box .auth .link {
    display: none;
  }
  header .nav.container .container nav ul.items li.user .popup-box .auth p {
    color: #ffffff !important;
  }
  header .nav.container .container nav ul.items li.user.active {
    margin-bottom: 50px;
  }
  header .nav.container .container nav ul.items li.search a {
    width: 100% !important;
  }
  header .nav.container .container nav ul.items li.search a:not(.active) button {
    padding-left: 3px;
  }
  header .nav.container .container nav ul.items li.search a:not(.active) button span {
    -webkit-transition: none !important;
    transition: none !important;
  }
  header .nav.container .container nav ul.items li.search a.active {
    position: relative;
  }
  header .nav.container .container nav ul.items li.search a.active input.search-input[type="text"] {
    position: absolute !important;
    left: 0 !important;
    width: 100% !important;
    top: 17px !important;
  }
  header .nav.container .container nav ul.items li.search a.active span.neskala-search {
    position: absolute;
    left: 8px !important;
    top: 25px !important;
  }
  header .nav.container .container nav button.mobile-menu-icon-open {
    display: block !important;
  }
}

@media only screen and (max-width: 650px) {
  section#news {
    -ms-grid-columns: 1fr 1fr !important;
        grid-template-columns: 1fr 1fr !important;
  }
  section#news .item:last-child {
    -ms-grid-column: 1;
        grid-column-start: 1;
    grid-column-end: 3;
  }
}

@media only screen and (max-width: 600px) {
  section#join .right .title .color-primary {
    text-align: center;
  }
  section#join .right .steps {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  section#join .right .steps .steps-container {
    width: 100% !important;
  }
  section#join .right .steps .steps-container .step {
    margin: 10px;
  }
  section#join .right .steps .steps-controller {
    width: 100% !important;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  section#join .right .steps .steps-controller button {
    right: 0;
  }
  section#join .left {
    width: 75%;
  }
}

@media only screen and (max-width: 580px) {
  footer .container .columns {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  footer .container .columns .col-right {
    text-align: center;
  }
  footer .container .columns .col-right .logo {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer .container .columns .col-right .social-icons {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media only screen and (max-width: 550px) {
  header .foot .slogans {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 20px !important;
  }
  header .foot .slogans .item {
    width: calc(50% - 10px);
    margin-top: 20px !important;
  }
}

@media only screen and (max-width: 500px) {
  nav ul.items li.user .popup-box .guest {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  nav ul.items li.user .popup-box .guest .or {
    margin: 7px 0;
  }
  nav ul.items li.user .popup-box .auth .informations {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  nav ul.items li.user .popup-box .auth .informations img {
    margin-bottom: -5px;
    margin-top: 10px;
  }
  nav ul.items li.user.active {
    margin-bottom: 110px !important;
  }
  section#facilities .header .title {
    text-align: center;
  }
  section#facilities .body .items .item .text-container {
    text-align: center;
  }
}

@media only screen and (max-width: 450px) {
  section#join .right .steps {
    padding: 0 0 !important;
  }
  section#news {
    -ms-grid-columns: 1fr !important;
        grid-template-columns: 1fr !important;
  }
  section#news .item:last-child {
    grid-column: auto;
  }
  section#club {
    max-height: initial !important;
  }
  section#club .right {
    margin-bottom: 25px !important;
  }
  section#club .right .title,
  section#club .right .subtitle {
    text-align: center !important;
  }
  section#club .left .club-number-input {
    width: 100% !important;
    margin-bottom: 10px;
  }
  section#club .left .club-submit {
    margin-right: 0 !important;
    width: 100% !important;
  }
}

@media only screen and (max-width: 400px) {
  header .foot .slogans .item {
    width: 70% !important;
  }
  section#join .right .steps .step {
    padding: 2rem 1.5rem !important;
  }
  section#join .left {
    width: 85%;
  }
}

@media only screen and (max-width: 350px) {
  header .foot .slogans .item {
    width: 80% !important;
  }
  footer .container .columns .col-right .logo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media only screen and (max-width: 350px) {
  header .foot .slogans .item {
    width: 90% !important;
  }
}
/*# sourceMappingURL=style.css.map */