/* COVER STYLE START */
.cover {
  background: url('../images/cover/pattern.svg') center / cover no-repeat, var(--blue);
  height: auto;
  width: 100%;
}

.cover-container {
  max-width: 1220px;
  padding: 80px 10px 0 10px;
  margin: 0 auto;
}

.cover-slider {
  max-width: 1200px;
  min-width: 300px;
  background-color: var(--blue);
  display: block;
  position: relative;
  overflow: hidden;
  user-select: none;
}

.slider-container {
  width: 400%;
  height: 100%;
  position: relative;
  display: flex;
  transition: 200ms;
}

.slide {
  width: 100%;
  height: 100%;
  display: inline-block;
  -webkit-animation-name: fade;
  -webkit-animation-duration: 3s;
  animation-name: fade;
  animation-duration: 3s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.1
  }

  to {
    opacity: 1
  }
}

@keyframes fade {
  from {
    opacity: 0.1
  }

  to {
    opacity: 1
  }
}

@media screen and (min-width: 941px) {
  .cover-slider {
    height: 350px;
  }

  .slide {
    padding: 60px 120px;
  }
}

@media screen and (max-width: 940px) {
  .cover-slider {
    height: 450px;
  }

  .slide {
    padding: 60px 60px;
  }
}

#slide_1 {
  background: linear-gradient(75deg, rgba(16, 43, 73, 0.8) 1%, rgba(0, 0, 0, 0) 70%), url(../images/slider/slide_1.jpg) center / cover no-repeat;
}

.slide .btn {
  margin-top: 40px;
}

.slide-headline {
  font-family: var(--geometria);
  font-weight: 800;
  color: #ffffff;
  max-width: 600px;
  margin-bottom: 30px;
}

.slide-text {
  font-family: var(--geometria);
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
}

#slider-left,
#slider-right {
  position: absolute;
  /* background-color: rgb(0, 0, 0); */
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#slider-right {
  right: 0;
}

@media screen and (min-width: 941px) {

  #slider-left,
  #slider-right {
    width: 100px;
  }

  .slide-headline {
    font-size: 28px;
  }
}

@media screen and (max-width: 940px) {

  #slider-left,
  #slider-right {
    width: 60px;
  }

  .slide-headline {
    font-size: 24px;
  }
}

.slider-arrow {
  background-color: rgba(247, 249, 250, 0.3);
  width: 40px;
  height: 40px;
  border-radius: 20px;
  transition: 100ms;
  display: flex;
  align-items: center;
  justify-content: center;
}

#slider-left:hover .slider-arrow {
  background-color: rgba(247, 249, 250, 0.6);
}

#slider-right:hover .slider-arrow {
  background-color: rgba(247, 249, 250, 0.6);
}

.dot-wrapper {
  display: flex;
  width: 68px;
  justify-content: space-between;
  margin: 0 auto;
  position: relative;
  bottom: 28px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: rgba(244, 245, 246, 0.5);
  transition: 100ms;
}

.dot-active {
  width: 24px !important;
  background-color: #ffffff !important;
}

.scroll_down {
  display: flex;
  align-items: center;
  font-family: var(--geometria);
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  margin: 30px 0;
}

.scroll_down-icon {
  width: 32px;
  margin-right: 10px;
}

.cover-tile-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1220px;
  min-width: 300px;
  margin: 0 auto;
  padding-bottom: 120px;
}

.cover-tile-wrapper {
  padding: 0 10px 20px;
}

@media screen and (min-width: 941px) {
  .cover-tile-wrapper {
    width: 50%;
  }
}

@media screen and (max-width: 940px) {
  .cover-tile-wrapper {
    width: 100%;
  }
}

.cover-tile {
  position: relative;
}

.tile-1 {
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.6) 5%, rgba(0, 0, 0, 0) 70%), url(../images/cover/tile-1.jpg) center / cover no-repeat;
}

.tile-2 {
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0) 70%), url(../images/cover/tile-2.jpg) center / cover no-repeat;
}

.cover-tile-content {
  position: absolute;
  bottom: 60px;
}

.tile-headline {
  font-family: var(--geometria);
  color: #ffffff;
  font-weight: 800;
}

.tile-text {
  font-family: var(--geometria);
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  margin: 10px 0 20px;
}

@media screen and (min-width: 621px) {
  .cover-tile {
    padding: 60px;
    height: 360px;
  }

  .tile-headline {
    font-size: 28px;
  }
}

@media screen and (max-width: 620px) {
  .cover-tile {
    padding: 20px;
    height: 260px;
  }

  .tile-headline {
    font-size: 20px;
  }
}

/* COVER STYLE END */

/* CONTENT STYLE START */
.wrapper {
  max-width: 1220px;
  min-width: 300px;
  padding: 0 10px;
  margin: 0 auto;
}

.person-container {
  display: flex;
  align-items: center;
  margin-bottom: 70px;
}

@media screen and (min-width: 941px) {
  .person-container {
    flex-direction: row;
  }

  .person-info {
    margin: 20px 0 0 40px;
  }

  .anatoliy {
    margin-right: 60px;
    width: 390px;
    height: 440px;
  }

  .person-description {
    position: relative;
    bottom: 35px;
  }
}

@media screen and (max-width: 940px) {
  .person-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .person-info {
    margin: 20px 0;
  }

  .anatoliy {
    margin-right: initial;
    width: 100%;
    height: auto;
  }

  .person-headline {
    text-align: justify;
    text-align-last: left;
  }

  .person-text {
    text-align: justify;
    text-align-last: left;
  }
}

.anatoliy {
  object-fit: cover;
}

.person-name {
  font-family: var(--geometria);
  color: #000000;
  font-size: 24px;
  font-weight: 500;
  line-height: 115%;
}

.person-post {
  font-family: var(--geometria);
  color: #000000;
  opacity: 0.6;
  font-size: 14px;
  font-weight: 400;
}

.person-description {
  width: auto;
}

.person-headline {
  font-family: var(--geometria);
  color: #333333;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 35px;
}

.person-text {
  font-family: var(--geometria);
  color: rgba(0, 0, 0, 0.6);
  font-weight: 400;
  line-height: 155%;
}

@media screen and (min-width: 621px) {
  .person-headline {
    font-size: 20px;
  }

  .person-text {
    font-size: 18px;
  }
}

@media screen and (max-width: 620px) {
  .person-headline {
    font-size: 16px;
  }

  .person-text {
    font-size: 14px;
  }
}

.person-line {
  width: 100%;
  height: 1px;
  background-color: var(--blue);
  opacity: 0.2;
  margin: 30px 0;
}

/* CONTENT STYLE END */

/* TABS STYLE START */
.btn-right {
  display: block;
  text-align: center;
}

@media screen and (min-width: 621px) {
  .btn-right {
    /* position: absolute; */
    float: right;
    /* right: 0; */
  }
}

@media screen and (max-width: 620px) {
  .btn-right {
    /* position: initial; */
    float: inline-end;
    margin-top: 20px;
  }
}

.tab-wrapper {
  border-bottom: solid 2px #C4C4C4;
  margin-bottom: 40px;
  display: flex;
}

.tab {
  display: inline-block;
  font-family: var(--mulish);
  font-weight: 300;
  text-align: center;
  height: 40px;
  color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  position: relative;
  top: 2px;
}

@media screen and (min-width: 941px) {
  .tab {
    width: 160px;
    font-size: 20px;
  }
}

@media screen and (min-width: 621px) and (max-width: 940px) {
  .tab {
    width: 25%;
    font-size: 20px;
  }
}

@media screen and (max-width: 620px) {
  .tab {
    width: 25%;
    font-size: 16px;
  }
}

.tab:hover {
  font-weight: 500;
  color: #000000;
}

.tab-active {
  font-weight: 500;
  color: #000000;
  border-bottom: solid 2px var(--orange);
}

.tab-content {
  display: flex;
  flex-wrap: wrap;
}

.tab-hide {
  display: none !important;
}

.tab-item {
  padding: 24px;
  /* cursor: pointer; */
}

@media screen and (min-width: 941px) {
  .tab-item {
    width: 25%;
  }
}

@media screen and (min-width: 621px) and (max-width: 940px) {
  .tab-item {
    width: 50%;
  }
}

@media screen and (max-width: 620px) {
  .tab-item {
    width: 100%;
  }
}

.tab-item:hover {
  background-color: #FDFBF5;
}

.tab-item-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.tab-item-headline {
  font-family: var(--geometria);
  font-weight: 700;
  font-size: 20px;
  line-height: 125%;
  color: #000000;
  margin: 10px 0 5px 0;
}

.tab-item-text {
  font-family: var(--mulish);
  font-weight: 400;
  font-size: 16px;
  line-height: 115%;
  color: rgba(0, 0, 0, 0.4);
}

/* TABS STYLE END */

/* STEPS STYLE START */
.steps-wrapper {
  background-color: var(--orange);
  display: flex;
}

@media screen and (min-width: 941px) {
  .steps-wrapper {
    flex-direction: row;
  }
}

@media screen and (max-width: 940px) {
  .steps-wrapper {
    flex-direction: column;
  }
}

.steps-left {
  background-color: #FDFBF5;
  transition: 200ms;
}

.steps-right {
  background: url('../images/steps/pattern.svg') center / cover no-repeat, var(--orange);
}

.steps-left-container {
  position: relative;
  box-sizing: border-box;
  transition: 200ms;
}


@media screen and (min-width: 941px) {

  .steps-left,
  .steps-right {
    height: auto;
    width: 50%;
  }

  .steps-left-container,
  .steps-right-container {
    max-width: 610px;
    height: 100%;
    /* background-color: rgba(255, 0, 0, 0.1); */
  }

  .steps-left-container {
    margin-left: auto;
    padding: 40px 0 0 40px;
  }

  .steps-right-container {
    margin-right: auto;
    padding: 40px 10px 40px 40px;
  }
}

@media screen and (max-width: 940px) {

  .steps-left,
  .steps-right {
    width: auto;
  }

  .steps-left-container {
    height: auto;
    margin-left: initial;
    padding: 40px 0 0 0;
  }

  .steps-right-container {
    margin-right: initial;
    padding: 20px;
  }
}

.steps-image {
  display: block;
  width: 100%;
  pointer-events: none;
  transition: 100ms;
}

@media screen and (min-width: 941px) {
  .steps-image {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}

@media screen and (max-width: 940px) {
  .steps-image {
    position: initial;
  }
}

.steps-switch {
  display: flex;
  align-items: center;
  cursor: pointer;
  height: 24px;
  user-select: none;
  margin-bottom: 24px;
}

@media screen and (max-width: 940px) {
  .steps-switch {
    margin-left: 20px;
  }
}

.steps-switch-line {
  height: 2px;
  background-color: rgba(33, 33, 33, 0.2);
  transition: 200ms;
}

.steps-switch-line-active {
  height: 4px;
  background-color: var(--blue);
  transition: 200ms;
}

.steps-switch-text {
  font-family: var(--geometria);
  line-height: 100%;
  margin-left: 24px;
  font-size: 20px;
  font-weight: 500;
  color: rgba(33, 33, 33, 0.2);
  transition: 100ms;
}

.steps-switch-text-active {
  font-size: 24px;
  font-weight: 700;
  color: var(--blue);
  transition: 100ms;
}

.steps-headline {
  font-family: var(--geometria);
  font-weight: 500;
  line-height: 120%;
  color: #ffffff;
}

@media screen and (min-width: 941px) {
  .steps-switch-line {
    width: 70px;
  }

  .steps-switch-line-active {
    width: 120px;
  }

  .steps-headline {
    font-size: 36px;
  }
}

@media screen and (max-width: 940px) {
  .steps-switch-line {
    width: 30px;
  }

  .steps-switch-line-active {
    width: 70px;
  }

  .steps-headline {
    font-size: 22px;
  }
}

.steps-shell {
  margin: 32px 0;
  display: flex;
}

.steps-shell-digit {
  font-family: var(--geometria);
  font-size: 32px;
  font-weight: 800;
  line-height: 100%;
  color: #ffffff;
  opacity: 0.2;
}

.steps-shell-text {
  font-family: var(--geometria);
  font-size: 16px;
  font-weight: 300;
  line-height: 175%;
  color: #ffffff;
  margin-left: 32px;
}

/* STEPS STYLE END */

/* INFO STYLE START */
.info-wrapper {
  background-color: var(--orange);
  display: flex;
  width: 100%;
}

.info-left {
  background-color: #ffffff;
}

.info-right {
  background-color: #FDFBF5;
  position: relative;
}

/* .steps-left-container {
  margin-left: auto;
  padding: 40px 0 0 40px;
}

.steps-right-container {
  margin-right: auto;
  padding: 40px 10px 40px 40px;
} */

@media screen and (min-width: 941px) {
  .info-wrapper {
    flex-direction: row;
  }

  .info-left,
  .info-right {
    width: 50%;
  }

  .info-left-container {
    max-width: 610px;
    height: 100%;
    margin-left: auto;
    padding: 140px 40px 20px 10px;
  }

  .info-right-container {
    max-width: 610px;
    height: auto;
    margin-right: auto;
    padding: 140px 10px 70px 0;
  }
}

@media screen and (max-width: 940px) {
  .info-wrapper {
    flex-direction: column;
  }

  .info-left,
  .info-right {
    width: 100%;
  }

  .info-left-container,
  .info-right-container {
    max-width: auto;
    height: 100%
  }

  .info-left-container {
    padding: 30px 10px;
  }
}

.info-headline {
  font-family: var(--geometria);
  font-weight: 500;
  line-height: 125%;
  color: #161616;
}

@media screen and (min-width: 941px) {
  .info-headline {
    font-size: 48px;
    margin: 0 0 70px 0;
  }
}

@media screen and (max-width: 940px) {
  .info-headline {
    font-size: 24px;
    margin: 0 0 30px 0;
  }
}

.info-text {
  font-family: var(--geometria);
  font-weight: 400;
  line-height: 225%;
  color: rgba(0, 0, 0, 0.65);
  margin-bottom: 30px;
}

.info-digits-wrapper {
  display: flex;
  justify-content: space-around;
}

.info-digits-container {
  display: block;
}

.info-digits-numeral {
  font-family: var(--mulish);
  font-weight: 700;
  line-height: 100%;
  color: var(--orange);
  margin-bottom: 5px;
}

.info-digits-text {
  font-family: var(--geometria);
  font-weight: 500;
  line-height: 125%;
  color: #000000;
}

.info-gallery-wrapper {
  width: 100%;
  height: 450px;
  overflow: hidden;
}

@media screen and (min-width: 941px) {
  .info-digits-wrapper {
    padding: 0;
  }

  .info-digits-numeral {
    font-size: 56px;
  }

  .info-digits-text {
    font-size: 20px;
  }

  .info-gallery-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
  }

}

@media screen and (max-width: 940px) {
  .info-digits-wrapper {
    padding: 20px 0;
  }

  .info-digits-numeral {
    font-size: 36px;
  }

  .info-digits-text {
    font-size: 16px;
  }

  .info-gallery-wrapper {
    position: relative;
  }
}

.info-slider-container {
  height: 450px;
  width: 400%;
  display: flex;
  position: absolute;
  transition: 500ms;
}

.info-gallery-wrapper img {
  display: block;
  object-fit: cover;
  width: 25%;
  height: 100%;
}

.info-gallery-control {
  height: auto;
  padding: 24px 32px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../images/info/pattern.svg) center / cover no-repeat, var(--blue);
}

@media screen and (min-width: 941px) {
  .info-gallery-control {
    width: 320px;
  }
}

@media screen and (max-width: 940px) {
  .info-gallery-control {
    width: 200px;
  }
}

.info-gallery-dots {
  width: 68px;
  display: flex;
  justify-content: space-between;
}

.info-dot {
  background-color: white;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  /* cursor: pointer; */
}

/* .info-dot:hover {
  background-color: var(--hover-orange);
} */

.info-dot-active {
  background-color: var(--orange) !important;
}

.info-gallery-headline {
  font-family: var(--mulish);
  font-size: 20px;
  line-height: 125%;
  font-weight: 700;
  color: white;
  margin: 10px 0;
}

.info-gallery-text {
  font-family: var(--mulish);
  font-size: 18px;
  line-height: 125%;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
}

/* INFO STYLE END */