.my-mfp-zoom-in.mfp-ready.mfp-bg {
  background-color: rgb(17, 17, 17);
  opacity: 0.5 !important;
}

.mfp-close-btn-in .mfp-close {
  color: rgba(0, 0, 0, 0.5) !important;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  line-height: 1;
  font-size: 30px;
  top: 12px;
  right: 12px;
  opacity: 1;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.mfp-close-btn-in .mfp-close:active {
  top: 12px;
}
.mfp-close-btn-in .mfp-close:hover {
  background-color: rgba(255, 255, 255, 0.75);
  color: rgba(0, 0, 0, 0.7) !important;
}

.start-dialog {
  background: white;
  text-align: left;
  max-width: 800px;
  margin: 40px auto;
  position: relative;
}
@media only screen and (max-width: 576px) {
  .start-dialog {
    max-width: 290px;
  }
}
.start-dialog__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 576px) {
  .start-dialog__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.start-dialog__content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .start-dialog__content {
    padding: 35px 10px;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
  }
}
@media only screen and (max-width: 576px) {
  .start-dialog__content {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
    padding: 35px 20px;
  }
}
.start-dialog__title {
  margin-bottom: 32px;
  color: #0ec12f;
  font-size: 28px;
  font-weight: bold;
}
.start-dialog__text {
  margin-bottom: 80px;
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  .start-dialog__text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 576px) {
  .start-dialog__text {
    margin-bottom: 40px;
  }
}
.start-dialog__link {
  color: #fff;
  -webkit-transition: all 0.35s ease-out;
  -o-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
  height: 55px;
  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;
  text-align: center;
  padding: 5px 10px;
  background-color: #ff4d4d;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  padding-top: 7px;
}
@media only screen and (max-width: 768px) {
  .start-dialog__link {
    font-size: 18px;
    height: 50px;
  }
}
.start-dialog__link:hover {
  color: #fff;
  text-decoration: none;
  background-color: #f00;
}
.start-dialog__link:focus, .start-dialog__link:active {
  color: #fff;
  text-decoration: none;
}
.start-dialog__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
@media only screen and (max-width: 768px) {
  .start-dialog__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 350px;
            flex: 0 0 350px;
  }
}
@media only screen and (max-width: 576px) {
  .start-dialog__img {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    min-height: 0;
    height: auto;
  }
}
.start-dialog__img img {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right bottom;
     object-position: right bottom;
}
@media only screen and (max-width: 576px) {
  .start-dialog__img img {
    position: static;
    width: 100%;
    height: auto;
    block-size: auto;
  }
}