* {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: DelaGothic;
  src: url(../fonts/DelaGothicOne-Regular-2.ttf);
}

@font-face {
  font-family: Lexend Exa;
  src: url(../fonts/Lexend_Exa.ttf);
}

.page {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}

.myLine {
  width: 100%;
  display: flex;
  border: 3px solid var(--theme-color);
  transition: all 0.3s;
}

.myLine:not(:last-child) {
  border-bottom: 0;
}

.myLine .myCol {
  flex: 1;
}

.myLine .myCol:not(:last-child) {
  border-right: 3px solid var(--theme-color);
}

.textStork {
  position: relative;
}

.textStork::after {
  content: attr(data-text);
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  color: transparent;
  transform: translateY(-50%);
  -webkit-text-stroke: 0.6em var(--theme-color);
}

.textStork_2 {
  position: relative;
}

.textStork_2::after {
  content: attr(data-text);
  position: absolute;
  top: 50%;
  left: 0;
  color: transparent;
  transform: translateY(-50%);
  
  z-index: -1;
  -webkit-text-stroke: 0.03em var(--theme-color);
}

.textStork_3 {
  position: relative;
  font-weight: bold !important;
}

.textStork_3::after {
  content: attr(data-text);
  position: absolute;
  top: 50%;
  left: 0;
  color: transparent;
  -webkit-text-stroke: 0.4em var(--theme-color);
  transform: translateY(-50%);
  z-index: -1;
}

.textStork_4 {
  position: relative;
}

.textStork_4::after {
  content: attr(data-text);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  color: transparent;
  -webkit-text-stroke: 0.06em var(--theme-color);
  z-index: -1;
}

.myHeader {
  margin: auto;
  margin-top: 21px;
  width: 96%;
}

.myHeader .myLine {
  height: 115px;
  box-sizing: border-box;
}

.myHeader .myLine .myCol {
  font-family: DelaGothic;
  flex: auto;
  font-size: 24px;
  font-weight: 700;
  line-height: 28.8px;
  text-align: left;
  display: flex;
  width: 50% !important;
  box-sizing: border-box;
}

.myHeader .myLine .myCol:first-child {
  align-items: center;
  font-size: 22px;
}

.myHeader .myLine .myCol:first-child .text {
  max-width: 295px;
  padding-left: 51px;
}

.myHeader .myLine .myCol:last-child {
  display: flex;
  justify-content: flex-end;
}

.myHeader .myLine .myCol:last-child .item {
  position: relative;
  min-width: 87px;
  margin-right: 35px;
  cursor: pointer;
}

.myHeader .myLine .myCol:last-child .item .img {
  height: 160px;
  width: auto;
  margin-top: -5px;
  display: none;
}

.myHeader .myLine .myCol:last-child .item .text {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  text-align: right;
  font-family: Lexend Exa;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
}

.myHeader .myLine .myCol:last-child .active .img {
  display: block;
}

.myHeader .myLine .myCol:last-child .active .text {
  right: 46.5px;
}
