.popup-form__holder {
  position: fixed;
  z-index: -1;
  opacity: 0;
  width: 90%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  max-width: 700px;
  transition: .5s;
}
.popup-form__holder.active {
  z-index: 15;
  opacity: 1;
  transition: .5s;
}
.form__parent {
  position: relative;
}
.form-holder__inner {
  padding: 70px 75px;
}

.form__closer {
  position: absolute;
  right: 30px;
  top: 30px;
  text-decoration: none;
  color: #010101;
  transition: .25s;
}

/* .form__heading {
  text-align: center;
  font-family: "Oswald", sans-serif;
} */
.form__heading h3 {
  /* font-size: 30px; */
  line-height: 1;
  padding: 0;
  margin: 0;
}

body.no-scroll {
  overflow: hidden;
}

.form-overlay {
  position: fixed;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, .5);
  z-index: -1;
  transition: .5s;
}

.form-overlay.active {
  opacity: 1;
  transition: .5s;
  z-index: 9;
}

.feedback__form {
  margin-bottom: 140px;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
}

.form__wrapper {
  position: relative;
  margin: 24px 0;
}
.form__wrapper.form__wrapper-desc {
  margin-bottom: 30px;
}
.form__description {
  text-align: center;
  font-size: 12px;
  color: #7e7e7e;
  position: absolute;
  left: 0;
  right: 0;
  line-height: 1;
}

.main-btn {
  cursor: pointer;
  width: 190px;
  height: 40px;
  background: #0F1414;
  font-family: 'Overpass';
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  padding: 10px 0;
  display: block;
  text-align: center;
  transition: .5s;
  border: none;
}
.main-btn:hover {
  background: #4982CF;
  color: #fff;
}

.form__input {
  position: relative;
  color: #000;
  font-size: 15px;
  width: 100%;
  height: 32px;
  display: block;
  border: none;
  border-bottom: 1px solid #F5F5F5;
  background-color: transparent;
  outline: none;
  border-radius: 0;
  box-shadow: none;
  z-index: 1;
  font-weight: 700;
  font-family: 'Overpass';
  font-style: normal;
  outline: none;
}

.form__input.form__input-zindex {
  z-index: 10;
}

.form__input.disabled {
  pointer-events: none;
  opacity: .7;
}

.form__input-placeholder {
  font-family: 'Overpass';
  font-style: normal;
  font-weight: 300;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  color: #7E7E7E;
  font-size: 18px;
  width: 100%;
  z-index: 0;
  transition: font-size .15s ease-out, .15s ease-out;
}
.form__input-noempty ~ .form__input-placeholder, .form__input:focus ~ .form__input-placeholder,
.form__input-placeholder.open {
  top: -10%;
  font-size: 12px;
}

.form__error {
  text-align: center;
  font-size: 12px;
  color: red;
  position: absolute;
  left: 0;
  right: 0;
  opacity: 0;
  transition: .25s;
}
.form__error.active{
  opacity: 1;
}

.form__textarea {
  font-weight: 700;
  font-family: 'Overpass';
  font-style: normal;
  color: #000;
  font-size: 15px;
  border: 1px solid #F5F5F5;
  width: 100%;
  min-height: 100px;
  padding: 16px 22px;
  outline: none;
}

.form-agree__label {
  font-family: 'Overpass';
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 0;
  color: #7E7E7E;
}

.form-agree__link {
  font-family: 'Overpass';
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 42px;
  color: #7E7E7E;
  transition: .3s ease;
}

.form-agree {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.form-agree+label {
  display: inline-flex;
  align-items: center;
  user-select: none;
}

.form-agree+label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #adb5bd;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

.form-agree:checked+label::before {
  border-color: #4982CF;
  background-color: #4982CF;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.form-agree.form-agree__error+label::before {
  border-color: red;
}


textarea.form__textarea::-webkit-input-placeholder {
  color: #7E7E7E;
  font-family: 'Overpass';
  font-style: normal;
  font-weight: 300;
}

textarea.form__textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #7E7E7E;
  font-family: 'Overpass';
  font-style: normal;
  font-weight: 300;
}

textarea.form__textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #7E7E7E;
  font-family: 'Overpass';
  font-style: normal;
  font-weight: 300;
}

textarea.form__textarea:-ms-input-placeholder {
  color: #7E7E7E;
  font-family: 'Overpass';
  font-style: normal;
  font-weight: 300;
}

.form__button {
  margin: 50px auto 0;
  max-width: 200px;
}

.form-success__holder {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: -1;
  transition: .5s;
  background: #fff;
  width: 90%;
  max-width: 500px;
  font-family: Overpass;
  font-style: normal;
}
.form-success__holder.active{
  opacity: 1;
  z-index: 99;
}
.form-success__inner {
  padding: 90px 80px;
  position: relative;
  text-align: center;
}
.form-success__closer {
  position: absolute;
  right: 15px;
  top: 15px;
  color: #000;
}

.atr-club__banner {
    position: relative
}

.atr-club__banner picture img {
    width: 100%
}

.atr-club-banner__info {
    position: absolute;
    color: #fff;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0 auto;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    z-index: 2;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.atr-club-banner__head {
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 5%
}

.atr-club-banner__logo {
    position: absolute;
    left: 105%;
    display: block;
    width: 100%;
    bottom: 30%
}

.atr-club-banner__title {
    font-family: Oswald, sans-serif;
    font-size: 126px;
    line-height: 1;
    margin: 0
}

.atr-club-banner__subtitle,
.atr-club-banner__title {
    font-weight: 700;
    text-transform: uppercase;
    color: #fff
}

.atr-club-banner__subtitle {
    font-family: Overpass, sans-serif;
    font-size: 48px;
    line-height: 1.3;
    text-align: center;
    margin: 2% 0 0
}

.atr-club-banner__bott {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 25px;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: #000;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.atr-club-banner__left {
    font-family: Overpass, sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
    text-align: center;
    color: #fff
}

.atr-club-banner__all {
    font-family: Oswald, sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 1.1;
    text-align: center;
    color: #fff;
    border: 3px solid #4982cf;
    padding: 5px 35px;
    margin: 0 20px
}

.atr-club-banner__all span {
    color: #4982cf;
    display: block
}

.atr-club__event {
    max-width: 1920px;
    margin: 0 auto
}

.atr-club__event-item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 15px
}

.atr-club__event-left {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.atr-club__event-btns {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 25px;
    margin: 0 auto
}

.atr-club__event-name {
    font-family: Oswald, sans-serif;
    font-weight: 500;
    font-size: 41px;
    line-height: 1.2;
    color: #000;
    margin-bottom: 45px;
    text-align: center
}

.atr-club__event-banner {
    position: relative;
    transition: .25s ease
}

.atr-club__event-banner:after {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(73, 130, 207, .4117647059);
    z-index: 2;
    left: 0;
    top: 0;
    transition: .25s ease
}

.atr-club__event-banner.hover:after {
    opacity: 1;
    transition: .25s ease
}

.atr-club__event-info {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3
}

.atr-club__event-title {
    font-family: Oswald, sans-serif;
    font-weight: 600;
    font-size: 45px;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    background: #4982cf;
    padding: 15px 75px
}

.atr-club__event-date {
    font-family: Overpass, sans-serif;
    font-weight: 700;
    font-size: 39px;
    line-height: 1;
    color: #000;
    margin: 15px 75px
}

.atr-club__event-date-kolsky {
    color: #fff
}

.kavkaz__weather {
    background-image: url(/img/kavkaz/weather-bg.jpg);
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    color: #fff;
    padding: 65px;
    margin: 10px 0;
    background-size: cover
}

.kavkaz__weather-img {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 5%
}

.kavkaz__weather-img span {
    font-family: Oswald, sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.2;
    color: #fff;
    margin-top: 10px
}

.kavkaz__weather-desc {
    font-family: Overpass, sans-serif;
    font-weight: 700;
    font-size: 19px;
    line-height: 1.3;
    color: #fff;
    width: 35%
}

.kavkaz__weather-list {
    width: 40%;
    margin-left: 5%
}

.kavkaz__weather-text {
    font-family: Overpass, sans-serif;
    font-weight: 400;
    font-size: 17px;
    margin-bottom: 10px
}

.kavkaz__weather-text span {
    font-family: Oswald, sans-serif;
    font-weight: 600;
    font-size: 21px;
    line-height: 1.2;
    color: #fff
}

.atr-club__event-calend {
    position: absolute;
    right: 45px;
    top: 0;
    background: #4982cf;
    width: 72px;
    height: 133px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: end;
    -ms-flex-align: end;
    align-items: end;
    padding-bottom: 10px;
    z-index: 3
}

.atr-club__about {
    max-width: 1920px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 15px auto 0
}

.atr-club__about-item:nth-child(3) {
    margin: 0 10px
}

.atr-club__about-item-project {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 25px;
    margin: 0 auto
}

.atr-club__about-item {
    position: relative;
    transition: .25s ease
}

.atr-club__about-item:after {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(73, 130, 207, .4117647059);
    z-index: 2;
    left: 0;
    top: 0;
    transition: .25s ease
}

.atr-club__about-item.hover:after {
    opacity: 1;
    transition: .25s ease
}

.atr-club__about-item-project:after {
    display: none
}

.atr-club__about-title {
    font-family: Oswald, sans-serif;
    font-weight: 500;
    font-size: 41px;
    line-height: 1.2;
    color: #000;
    margin-bottom: 45px;
    text-align: center
}

.atc-expedition__btns {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: end;
    -ms-flex-pack: end;
    justify-content: end
}

.atr-club__event-spoiler {
    padding: 40px 0;
    display: none
}

.atr-club__spoiler-item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 10px 0;
    width: 100%
}

.atr-club__spoiler-left {
    font-family: Oswald, sans-serif;
    font-weight: 600;
    font-size: 36px;
    color: #000;
    position: relative;
    line-height: 1.1;
    padding-left: 40px;
    width: 20%;
    margin: 50px 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.atr-club__spoiler-left:after {
    top: 0;
    left: 0;
    position: absolute;
    height: 50px;
    content: "";
    border-left: 7px solid #4982cf
}

.atr-club__spoiler-cup .atr-club__spoiler-left {
    font-size: 24px
}

.atr-club__spoiler-cup .atr-club__spoiler-left:after {
    top: -8px
}

.atr-club__spoiler-cup .atr-club__spoiler-btn,
.atr-club__spoiler-cup .atr-club__spoiler-date {
    width: 100%
}

.atr-club__spoiler-right {
    width: 80%;
    position: relative;
    display: block;
    min-height: 140px;
    height: 100%
}

.atr-club__spoiler-inner {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 50px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    min-height: 140px;
    height: 100%;
    background-repeat: no-repeat;
    z-index: 3
}

.atr-club__spoiler-inner:after {
    z-index: -1;
    background: rgba(15, 20, 20, .7);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    transition: .25s ease
}

.atr-club__spoiler-inner.hover:after {
    background: rgba(73, 130, 207, .4117647059);
    transition: .25s ease
}

.atr-club__spoiler-inner1 {
    background-image: url(/assets/img/arctictrucks-club/atr-club__spoiler-item1-2026.png)
}

.atr-club__spoiler-inner2 {
    background-image: url(/assets/img/arctictrucks-club/atr-club__spoiler-item2-2026.png)
}

.atr-club__spoiler-inner3 {
    background-image: url(/assets/img/arctictrucks-club/atr-club__spoiler-item3-2026.png)
}

.atr-club__spoiler-inner-baikal {
    background-image: url(/assets/img/arctictrucks-club/bailkal-sched-2.jpg)
}

.atr-club__spoiler-inner-kavkaz {
    background-image: url(/assets/img/arctictrucks-club/kavkaz.jpg)
}

.atr-club__spoiler-inner-kirgiziya {
    background-image: url(/assets/img/arctictrucks-club/kirgiziya.jpg)
}

.atr-club__spoiler-inner-pereval {
    background-image: url(/assets/img/arctictrucks-club/pereval.jpg)
}

.atr-club__spoiler-date {
    font-family: Oswald, sans-serif;
    font-weight: 600;
    font-size: 27px;
    color: #add0ff
}

.atr-club__spoiler-date span {
    color: #fff;
    line-height: 1.1
}

.atr-club__spoiler-btn a {
    font-family: Overpass, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.3;
    color: #fff;
    text-decoration: none;
    padding: 7px 45px;
    border: 2px solid #4982cf;
    transition: .25s ease
}

.atr-club__spoiler-btn a:hover {
    transition: .25s ease;
    background: #4982cf
}

.atr-club__spoiler-noprogramm {
    font-family: Overpass, sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.3;
    color: #fff;
    max-width: 360px;
    width: 100%;
    position: relative
}

.atr-club__spoiler-noprogramm:after {
    height: 40px;
    width: 40px;
    content: "";
    position: absolute;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='42' height='42' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M41.672 10.5c-.197-.131-.46-.197-.656-.066l-13.388 4.791-9.384-3.412c.525-1.313.787-2.494.787-3.479a6.345 6.345 0 00-1.903-4.593 6.455 6.455 0 00-4.594-1.903 6.47 6.47 0 00-6.497 6.496c0 1.247.46 2.757 1.247 4.594L.46 15.225c-.262.131-.459.394-.459.656v23.625c0 .263.131.46.328.59.131.067.263.132.394.132.066 0 .197 0 .262-.066l13.388-4.724 12.994 4.79a.56.56 0 00.459 0l13.65-4.856c.262-.131.46-.394.46-.656V11.09c.065-.263-.066-.46-.263-.591zM12.534 3.15c1.378 0 2.625.525 3.544 1.51.985.918 1.51 2.23 1.51 3.543 0 .919-.329 2.166-.985 3.61-1.181 2.624-3.15 5.38-4.069 6.628-.13-.132-.197-.263-.328-.46-.853-1.181-2.231-3.15-3.215-5.184-.985-1.903-1.444-3.478-1.444-4.66-.066-2.69 2.231-4.987 4.987-4.987zm28.022 31.04l-12.928 4.594-12.994-4.79c-.065 0-.197-.066-.262-.066-.066 0-.197 0-.263.066L1.444 38.522V16.406l6.562-2.297v.066c.066.066.066.131.131.197l.197.394c.066.065.066.13.132.197.065.13.13.262.197.393.065.066.065.132.13.197.066.131.132.263.198.328.065.066.065.131.13.197.066.131.132.197.198.328.065.066.065.132.131.197.066.131.131.197.197.328.066.066.066.131.131.197.066.131.131.197.197.328.066.066.066.131.131.197.066.131.132.197.197.328.066.066.066.131.131.131a.903.903 0 00.197.263c0 .066.066.066.066.131a.905.905 0 00.197.263l.065.065c.066.066.132.197.197.263l.066.066c.066.065.131.196.197.262l.197.197c.13.197.262.328.262.394.131.197.328.262.59.262.198 0 .395-.131.591-.262l.197-.197.066-.066.131-.131.066-.066c.065-.065.065-.131.131-.197 0-.065.066-.065.066-.13.065-.066.13-.132.13-.198.066-.065.066-.131.132-.197.066-.065.131-.13.197-.262.066-.066.066-.131.131-.197a.903.903 0 00.197-.262c.066-.066.131-.132.131-.197.066-.066.132-.197.197-.263.066-.066.132-.197.197-.262.066-.066.131-.197.197-.263s.131-.197.197-.262c.066-.132.131-.197.197-.328.065-.066.131-.197.197-.263.065-.131.13-.197.196-.328s.132-.197.197-.328c.066-.131.132-.197.197-.328.066-.132.132-.197.197-.329.066-.13.131-.196.197-.328.066-.13.131-.197.197-.328s.131-.197.197-.328c.065-.131.131-.197.197-.328.065-.131.13-.263.197-.328.065-.131.13-.197.13-.328v-.066l9.713 3.544a.56.56 0 00.46 0l12.665-4.528V34.19z' fill='%234982CF'/%3E%3Cpath d='M34.45 27.825c.131.066.328.066.46.066.393 0 .787-.132 1.115-.328.46-.329.787-.788.919-1.313.13-.525 0-1.116-.263-1.575a2.312 2.312 0 00-1.312-.919c-1.116-.262-2.297.46-2.56 1.575-.13.525 0 1.116.263 1.575.394.46.853.788 1.378.919zm-.197-2.231c.066-.394.46-.59.788-.525.196.065.328.131.393.328.066.131.132.328.066.525s-.131.328-.328.394c-.131.065-.328.13-.525.065s-.328-.131-.394-.328v-.46zM7.218 25.66l-.46.262-.262-.46c-.197-.328-.656-.459-.984-.196-.329.197-.46.656-.197.984l.262.46-.46.262c-.327.197-.459.656-.196.984.066.263.328.328.525.328.131 0 .262-.065.394-.13l.459-.263.263.459a.783.783 0 00.59.328c.131 0 .263-.066.394-.131.328-.197.46-.656.197-.985l-.263-.459.46-.262c.328-.197.459-.657.197-.985-.132-.328-.591-.394-.92-.197zM13.976 27.628c-.853 0-1.97-.131-2.69-.328-.395-.066-.788.197-.854.59-.066.394.197.788.59.854.722.131 1.904.328 2.954.328a.728.728 0 00.722-.722.728.728 0 00-.722-.722zM19.36 25.134c-.46.657-.984 1.182-1.64 1.575-.197.132-.46.263-.722.394-.394.131-.525.59-.394.984.131.263.394.46.656.46.066 0 .197 0 .263-.066.328-.131.59-.262.853-.46a7.992 7.992 0 002.034-1.902c.263-.328.197-.788-.131-.985-.197-.393-.656-.328-.919 0zM24.61 20.41c-.721 0-1.115.196-1.508.328-.92.393-1.707 1.246-1.904 1.509a.797.797 0 00.066 1.05.709.709 0 00.46.197c.196 0 .393-.066.524-.263.328-.394.854-.853 1.378-1.115.394-.132.525-.197.985-.263a.728.728 0 00.722-.722.728.728 0 00-.722-.722zM27.3 21.525c-.132.394 0 .788.393.984.722.328 1.772.854 2.56 1.444.13.066.262.131.393.131a.69.69 0 00.59-.328c.198-.328.132-.787-.196-.984-.919-.59-1.969-1.181-2.822-1.51-.328-.262-.722-.065-.919.263zM12.536 9.975a2.213 2.213 0 002.231-2.231 2.213 2.213 0 00-2.231-2.231 2.213 2.213 0 00-2.231 2.23c0 1.248 1.05 2.232 2.23 2.232zm0-3.019c.394 0 .787.328.787.788a.798.798 0 01-.787.787.798.798 0 01-.788-.787c.066-.394.394-.788.788-.788z' fill='%234982CF'/%3E%3C/svg%3E");
    left: -55px;
    top: 0
}

.atr-club__spoiler-close {
    font-family: Overpass, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.3;
    color: #e05c5c;
    text-decoration: none;
    padding: 10px 70px;
    border: 2px solid #e05c5c;
    transition: .25s ease;
    text-transform: uppercase
}

.atr2-club__banner {
    position: relative;
    max-width: 100%;
    height: auto
}

.atr2-club__banner-img {
    width: 100%;
    height: auto
}

.atr2-club-banner__info {
    position: absolute;
    top: 8%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 0 2%;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.atr2-club-banner__center-mob {
    display: none
}

.atr2-club-banner__left {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.atr2-club-banner__logo {
    max-width: 12vw;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content
}

.atr2-club-banner__desc {
    margin-left: 2.5vw;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.atr2-club-banner__title {
    font-family: Oswald, sans-serif;
    font-size: 86px;
    font-size: 4.5vw
}

.atr2-club-banner__subtitle,
.atr2-club-banner__title {
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    color: #fff
}

.atr2-club-banner__subtitle {
    font-family: Overpass, sans-serif;
    font-size: 48px;
    font-size: 2.5vw
}

.atr2-club-banner__right {
    margin-top: 3%
}

.atr2-club-banner__shedule-name {
    font-family: Oswald, sans-serif;
    font-weight: 400;
    font-size: 52px;
    font-size: 2.7vw;
    line-height: 1.1;
    text-transform: uppercase;
    text-align: right;
    color: #fff;
    margin-bottom: 2.5vw
}

.atr2-club-banner__table-item {
    font-family: Overpass, sans-serif;
    font-weight: 600;
    font-size: 22px;
    font-size: 1.15vw;
    line-height: 1.3;
    color: #fff;
    border: 1px solid #fff;
    margin-bottom: 1.05vw;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1.05vw
}

.atr2-club-banner__table-name {
    text-align: right
}

.atr2-club-banner__btn {
    position: absolute;
    bottom: 6%;
    left: 10%;
    display: -ms-flexbox;
    -ms-flex-pack: justify;
    padding: 0 2%
}

.actions-detail__breadcrumbs {
    margin-top: 35px;
    font-family: Overpass;
    font-style: normal;
    font-weight: 300;
    font-size: 13px;
    line-height: 1;
    color: #000;
    text-decoration: none;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.actions-detail__breadcrumbs-link {
    margin-left: 10px
}

.actions-detail__container {
    max-width: 1000px
}

.actions-detail__container,
.actions-detail__container-fluid {
    width: 100%;
    margin: 0 auto;
    position: relative
}

.actions-detail__heading {
    font-family: Oswald;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.3;
    text-align: center;
    text-transform: uppercase;
    color: #000;
    margin-top: 40px
}

.actions-detail__banner {
    position: relative;
    text-align: center
}

.actions-detail__date {
    position: absolute;
    display: block;
    left: 0;
    bottom: 0;
    padding: 10px 15px;
    font-family: Overpass;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    text-transform: uppercase;
    color: #fff;
    background: #0f1414;
    z-index: 2
}

.actions-detail__text {
    margin-top: 40px;
    margin-bottom: 60px;
    font-family: Overpass;
    font-style: normal;
    font-weight: 300;
    font-size: 17px;
    line-height: 21px;
    color: #000
}

.actions-detail__text-marker {
    background-color: #0f1414;
    color: #fff;
    padding: 4px 6px
}

.actions-detail__text-disclaimer {
    font-size: 13px
}

.actions-detail__gallery {
    border-top: 1px solid #f5f5f5
}

.actions-detail__gallery-title {
    font-family: Oswald;
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 1;
    text-transform: uppercase;
    color: #000;
    margin: 20px 0
}

.actions-detail__slide {
    width: 100%;
    padding: 0 5px
}

.actions-detail__slide-src {
    transition: .3s ease-in-out;
    position: relative
}

.actions-detail__slide-src:hover {
    display: block;
    background: #4982cf;
    cursor: pointer
}

.actions-detail__slide-img {
    transition: .3s ease-in-out;
    position: relative;
    display: block;
    z-index: 2
}

.actions-detail__slide-img:hover {
    opacity: .5
}

.actions-detail__slide-src:hover:after {
    content: "";
    background-image: url(/actions-detail/img/zoom.svg);
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    width: 37px;
    height: 37px;
    margin: 0 auto
}

.actions-detail__follow {
    width: 100px;
    text-align: center;
    border-top: 1px solid #f5f5f5;
    margin: 0 auto 100px
}

.actions-detail__follow-text {
    font-family: Overpass;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 1;
    color: #000;
    margin-top: 20px;
    margin-bottom: 15px
}

.text table {
    min-width: 50%;
    max-width: 100%;
    position: relative;
    font-size: inherit;
    margin: 0 0 2em;
    background: #fff;
    border-collapse: separate;
    border-spacing: 0
}

.text table td,
.text table th {
    color: inherit;
    font-weight: 300;
    vertical-align: top;
    text-align: left;
    padding: 1em 1em .85em
}

.text table td {
    font-size: .94em;
    line-height: 130%;
    border: 1px solid #e8eaea;
    border-bottom-color: #fff;
    border-left: none
}

.text table td:first-child {
    border-left: 1px solid #e8eaea
}

.text table tr:nth-child(odd) td {
    background: #f8f9f9
}

.text table tr:first-child td:first-child,
.text table tr:first-child th:first-child {
    border-radius: 2px 0 0 0
}

.text table tr:last-child td {
    border-bottom: 1px solid #e8eaea
}

.text table tr:last-child td:first-child,
.text table tr:last-child th:first-child {
    border-radius: 0 0 0 2px
}

@media (max-width:480px) {
    .text table td {
        font-size: 11px
    }
    .actions-detail__heading {
        margin: 25px 0
    }
}

@media (max-width:1640px) {
    .atr2-club-banner__btn {
        left: 9%
    }
}

@media (max-width:1440px) {
    .atr-club-banner__title {
        font-size: calc(126px - 3vw)
    }

    .atr-club-banner__subtitle {
        font-size: calc(48px - .5vw)
    }

    .atr-club-banner__logo {
        bottom: 20%
    }

    .atr-club-banner__logo img {
        width: 200px
    }

    .atr-club__spoiler-date span {
        display: block;
        padding: 0
    }

    .atr2-club-banner__btn {
        left: 8%
    }
}

@media (max-width:1366px) {
    .atr2-club-banner__table-item {
        font-size: 18px
    }

    .atr2-club-banner__shedule-name {
        font-size: 28px
    }

    .atr2-club-banner__right {
        width: 33%
    }
}

@media (max-width:1280px) {
    .atr-club-banner__title {
        font-size: calc(126px - 5vw)
    }

    .atr-club-banner__subtitle {
        font-size: calc(48px - 1vw)
    }

    .atr-club-banner__logo {
        bottom: 0
    }

    .atr-club-banner__logo img {
        width: 170px
    }

    .atr-club-banner__left {
        font-size: 22px
    }

    .atr-club-banner__all {
        font-size: 28px
    }

    .atr-club__event-title {
        font-weight: 500;
        font-size: 40px
    }

    .atr2-club-banner__btn {
        left: inherit;
        right: 8%
    }
}

@media (max-width:1100px) {
    .atr2-club-banner__right {
        width: 40%
    }
}

@media (max-width:1024px) {
    .atr-club__event-date {
    font-size: 29px;
    }
    .atr2-club-banner__title {
        font-size: 46px;
        font-size: 4.5vw
    }

    .atr2-club-banner__subtitle {
        font-size: 26px;
        font-size: 2.5vw
    }

    .atr2-club-banner__table-item {
        font-size: 16px
    }

    .atr-club__banner {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }

    .atr-club__event-item {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .atr-club__event-banner,
    .atr-club__event-btns {
        width: 100%
    }

    .atr-club__about {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .atr-club__about-item {
        width: 33%;
        max-height: 332px
    }

    .atr-club__about-item img {
        object-fit: cover;
        height: 332px
    }

    .atr-club__about-item-project {
        width: 100%;
        -webkit-order: 0;
        -ms-flex-order: 0;
        order: 0
    }

    .atr-club__about-item:first-child {
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1
    }

    .atr-club__about-item:nth-child(3) {
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
        margin: 0 15px
    }

    .atr-club__about-item:nth-child(4) {
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3
    }

    .atr-club__about-item-project,
    .atr-club__event-btns {
        padding: 15px
    }

    .atr-club__about-item-project,
    .atr-club__about-title,
    .atr-club__event-name {
        margin-bottom: 35px;
        font-size: 36px
    }

    .atr-club-banner__info {
        position: relative;
        background: #0f1414
    }

    .atr-club-banner__logo {
        display: none
    }

    .atr-club-banner__head {
        position: static;
        margin-top: 30px
    }

    .atr-club-banner__title {
        font-size: 64px
    }

    .atr-club-banner__subtitle {
        font-size: 32px;
        margin-bottom: 25px
    }

    .atr-club-banner__bott {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .atr-club-banner__all {
        margin: 15px 0
    }

    .atr-club__spoiler-item {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .atr-club__spoiler-left {
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin: 25px 0
    }

    .atr-club__spoiler-cup .atr-club__spoiler-left,
    .atr-club__spoiler-right {
        width: 100%
    }

    .atr-club__spoiler-cup .atr-club__spoiler-date {
        text-align: center;
        min-width: inherit
    }

    .kavkaz__weather {
        padding: 40px;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .kavkaz__weather-list {
        width: 100%;
        margin-left: 0;
        margin-top: 20px
    }

    .kavkaz__weather-desc {
        width: 85%
    }

    .kavkaz__weather-img span {
        font-size: 24px
    }

    .kavkaz__weather-img {
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center
    }
}

@media (max-width:900px) {
    .atr-club__spoiler-left {
        margin: 20px 0;
        padding: 0
    }

    .atr-club__spoiler-left:after {
        border-left: none;
        border-top: 7px solid #4982cf;
        width: 50px;
        margin: 0 auto;
        bottom: 10px;
        left: 0;
        right: 0;
        top: inherit
    }

    .atr-club__spoiler-right {
        width: 100%
    }

    .atr-club__spoiler-inner {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 25px
    }

    .atr-club__spoiler-date span {
        display: inline-block;
    }

    .atr-club__event-spoiler {
        margin: 20px auto
    }

    .atr-club__spoiler-inner1 {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center
    }

    .atr-club__spoiler-date {
        width: 100%;
        margin: 0 auto;
        text-align: center
    }

    .kavkaz__weather-desc {
        width: 80%
    }

    .kavkaz__weather-list {
        width: 100%;
        margin-left: 0;
        margin-top: 4%
    }

    .kavkaz__weather {
        padding: 40px
    }
}

@media (max-width:800px) {
    .atr2-club-banner__right {
        margin-top: 0
    }

    .atr2-club-banner__table-item {
        font-size: 14px
    }
}

@media (max-width:768px) {
    .atr-club__about-item-project, .atr-club__about-title, .atr-club__event-name {
        margin-bottom: 25px;
        font-size: 28px;
    }
        .form-holder__inner {
        padding: 50px 25px;
        max-height: 90vh;
        overflow: auto;
    }
    .atr2-club-banner__info {
        position: relative;
        top: 0;
        padding: 2%
    }

    .atr2-club-banner__center-mob {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        position: absolute;
        top: 3%;
        left: 0;
        right: 0;
        margin: 0 auto;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .atr2-club-banner__title {
        font-size: 5.5vw
    }

    .atr2-club-banner__subtitle {
        font-size: 3vw
    }

    .atr2-club-banner__logo {
        max-width: 15vw
    }

    .atr2-club-banner__left {
        display: none
    }

    .atr2-club-banner__right {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin: 0 auto;
        width: 100%
    }

    .atr2-club-banner__shedule-name {
        color: #000;
        text-align: center
    }

    .atr2-club-banner__table-item {
        color: #000;
        border: 1px solid #000;
        font-size: 16px;
        padding: 15px;
        margin-bottom: 10px
    }

    .atr2-club-banner__btn {
        bottom: inherit;
        top: 33%;
        left: 6%;
        right: inherit
    }

    .atr-club__event-title {
        font-size: 26px;
        padding: 15px 40px
    }

    .atr-club-banner__title {
        font-size: 7vw
    }

    .atr-club-banner__subtitle {
        font-size: 4vw;
        margin-top: 3vw
    }

    .atr-club-banner__left {
        font-size: 3vw
    }

    .atr-club__event-date {
        margin: 15px 40px
    }

    .atr-club__event-calend {
        height: 100px
    }

    .atr-club__about-item {
        max-height: 250px
    }

    .atr-club__about-item img {
        height: 250px
    }

    .atr-club__about-item:nth-child(3) {
        margin: 0
    }

    .atc-expedition__btns {
        margin-top: 25px
    }
}

@media (max-width:700px) {
    .kavkaz__weather-img {
        width: 100%;
        margin-right: 0;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 15px
    }

    .kavkaz__weather-img span {
        font-size: 28px
    }

    .kavkaz__weather-desc {
        width: 100%;
        font-size: 16px
    }

    .kavkaz__weather-text {
        font-size: 16px
    }

    .kavkaz__weather-text span {
        font-size: 18px
    }
}

@media (max-width:640px) {
    .atr2-club-banner__title {
        font-size: 7.5vw
    }

    .atr2-club-banner__subtitle {
        font-size: 4vw
    }

    .atr2-club-banner__table-item {
        font-size: 14px;
        padding: 10px
    }

    .atr2-club-banner__btn {
        top: 30%
    }

    .atr-club__spoiler-right {
        min-height: 200px
    }

    .atr-club__spoiler-inner {
        min-height: 200px;
        background-size: cover;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around
    }

    .atr-club__spoiler-date {
        text-align: center;
        font-size: 24px
    }

    .atr-club__spoiler-date span {
        display: block;
        padding: 0
    }

    .atr-club__spoiler-noprogramm:after {
        display: none
    }

    .atr-club__spoiler-noprogramm {
        text-align: center;
        font-size: 15px
    }
}

@media (max-width:540px) {
    .atr2-club-banner__btn {
        top: 26%
    }
}

@media (max-width:480px) {
    .atr2-club-banner__shedule-name {
        font-size: 20px;
        margin: 15px 0
    }

    .atr2-club-banner__btn {
        position: relative;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        left: inherit
    }

    .atr-club__event-title {
        font-size: 22px;
        padding: 15px
    }

    .atr-club__event-date {
        font-size: 28px;
        margin: 15px
    }

    .atr-club__event-calend {
        right: 0;
        height: 75px;
        width: 55px
    }

    .atr-club__event-calend svg {
        height: 36px
    }

    .atr-club__about-item {
        max-height: -webkit-max-content;
        max-height: -moz-max-content;
        max-height: max-content;
        width: 100%
    }

    .atr-club__about-item img {
        height: auto;
        width: 100%
    }

    .atr-club__spoiler-close {
        margin-bottom: 15px
    }

    .kavkaz__weather {
        padding: 20px
    }
}