.ConInfo {
    display: flex;
    height: 808px;
}

.Info {
    background-color: #111111;
    border: 1px solid #3c3c3c;
    width: 720px;
    height: 806px;
}

.PhotoOne {
    width: 720px;
    height: 100%;
    overflow: hidden;
}

.PhotoOne img {
    display: block;
    width: 100%;
    border: 1px solid #3c3c3c;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

@media (max-width: 440px) {
  .PhotoOne {
    display: none;
  }
}

.Zagalovok {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 212px;
}

@media (max-width: 440px) {
  .Zagalovok {
    margin-top: 250px;
  }
}

.Zagalovok h1 {
    color: white;
    font-family: "Vetrino";
    font-size: 74px;
    font-weight: 400;
    text-align: center;
    margin: 0;
}

@media (max-width: 440px) {
  .Zagalovok h1 {
    font-size: 48px;
  }
}

.Zagalovok p {
    width: 478px;
    color: #4c4c4c;
    font-family: "SF Pro Display";
    font-size: 16px;
    font-weight: 400;
    line-height: 135.2%;
    text-align: center;
    margin: 0;
    margin-top: 25px;
}

@media (max-width: 440px) {
  .Zagalovok p {
    width: 367px;
  }
}

.Conbtn2 {
    margin-top: 42px;
    display: flex;
    gap: 22px;
}

.btnZap {
    cursor: pointer;
    width: 113px;
    height: 36px;
    color: black;
    border: none;
    border-radius: 8px;
    background-color: white;
    font-family: "SF Pro Display";
    font-size: 16px;
    font-weight: 500;
    transition: color 0.8s ease, border 0.8s ease, background-color 0.8s ease;
}

.btnZap:hover {
    color: white;
    background-color: #202020;
    border: 0.5px solid white;
}

.btnCal {
    cursor: pointer;
    width: 113px;
    height: 36px;
    color: #888888;
    border: 1px solid #2f2f2f;
    border-radius: 8px;
    background-color: #202020;
    font-family: "SF Pro Display";
    font-size: 16px;
    font-weight: 500;
    transition: color 0.8s ease, border 0.8s ease;
}

.btnCal:hover {
    color: white;
    border: 0.5px solid white;
}

.conBig {
    display: flex;
    gap: 22px;
    margin-top: 109px;
}

.btnBig {
    width: 317px;
    height: 195px;
    background-color: #161616;
    border: 1px solid #3d3d3d;
    border-radius: 8px;
}

.price {
    display: flex;
    flex-direction: column;
}

.zagl {
    display: flex;
    gap: 12px;
    margin-left: 22px;
}

.pip {
    margin: 0;
}

.price h3 {
    color: white;
    font-family: "SF Pro Display";
    font-size: 18px;
    font-weight: 500;
}

.price p {
    color: #606060;
    font-family: "SF Pro Display";
    font-size: 16px;
    font-weight: 400;
    width: 277px;
    text-align: justify;
    margin: 0;
    margin-left: 20px;
}

.btn3 {
    margin: 0;
    cursor: pointer;
    width: 277px;
    height: 36px;
    color: #888888;
    background-color: #202020;
    border: 1px solid #2f2f2f;
    border-radius: 8px;
    font-family: "SF Pro Display";
    font-size: 16px;
    font-weight: 500;
    margin-top: 21px;
    margin-left: 20px;
    transition: color 0.8s ease, border 0.8s ease;
}

.btn3:hover {
    color: white;
    border: 1px solid white;
}

.marquee {
  width: 1438px;
  height: 69px;
  overflow: hidden;
  background: #111;
  border: 1px solid #3c3c3c;
  color: #BEBEBE;
  font-family: "SF Pro Display";
  font-size: 20px;
  font-weight: 500;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.marquee__inner {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
}

.marquee__inner img {
  margin: 0 40px;
  vertical-align: middle;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

.marquee--left .marquee__inner {
  animation: scroll-left linear infinite;
}

.marquee--right .marquee__inner {
  animation: scroll-right linear infinite;
}