@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Jura:wght@300..700&family=Onest:wght@100..900&display=swap");
body {
  background: rgb(11, 2, 32);
}

.container {
  max-width: 1470px;
  margin: 0 auto;
  font-family: "Onest", sans-serif;
}

.about {
  position: relative;
}
.about::before {
  content: "";
  width: 100%;
  background: linear-gradient(rgba(174, 10, 10, 0), rgba(1, 1, 29, 0.1) 26.89%, rgb(3, 1, 27) 84.87%);
  position: absolute;
  height: 100%;
}
.about video {
  width: 100%;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.info {
  position: absolute;
  bottom: 5%;
  margin: 10px 40px;
  color: rgb(255, 255, 255);
}
@media (max-width: 1000px) {
  .info {
    width: 80%;
    margin: 10px 20px;
  }
}
@media (max-width: 640px) {
  .info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: auto;
  }
}
.info h1 {
  font-size: 4rem;
  margin: 20px 0;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .info h1 {
    font-size: 2.3rem;
    margin: 10px 0;
  }
}
@media (max-width: 1000px) {
  .info h1 {
    font-size: 2rem;
  }
}
@media (max-width: 850px) {
  .info h1 {
    font-size: 1.7rem;
  }
}
@media (max-width: 770px) {
  .info h1 {
    font-size: 1.4rem;
  }
}

@media (max-width: 1000px) {
  .video {
    width: 40%;
    display: inline;
  }
}
@media (max-width: 640px) {
  .video {
    width: 30%;
  }
}
.video img {
  width: 100%;
}
@media (max-width: 1000px) {
  .video img {
    height: 100%;
  }
}
@media (max-width: 900px) {
  .video img {
    height: auto;
  }
}

.descr {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.5px;
}
@media (max-width: 1000px) {
  .descr {
    font-size: 18px;
  }
}
@media (max-width: 900px) {
  .descr {
    font-size: 16px;
  }
}
@media (max-width: 790px) {
  .descr {
    display: none;
  }
}

.btn_info {
  background: rgb(226, 150, 242);
  padding: 15px 50px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  border-radius: 30px;
  text-align: center;
  color: rgb(255, 255, 255);
}
.btn_info:after {
  content: "";
  background-color: rgb(226, 150, 242);
}
.btn_info:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: rgb(157, 52, 178);
  transition: all 0.3s;
  border-radius: 10rem;
  z-index: -1;
}
.btn_info:hover:before {
  width: 100%;
}
@media (max-width: 850px) {
  .btn_info {
    padding: 15px 40px;
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .btn_info {
    width: 160px;
    font-size: 12px;
    padding: 10px;
  }
}

label {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
  gap: 10px;
}

select,
input,
button {
  font-size: 0.8em;
}

#e_mail,
#phone_number {
  width: 70%;
  padding: 15px 10px;
  border-radius: 15px;
  border: solid gray 1px;
}

.step {
  display: none;
}

.step.active {
  display: block;
}

.progress-bar-container {
  background-color: #f0f0f0;
  border-radius: 20px;
  margin-bottom: 20px;
  width: 100%;
  height: 30px;
}
@media (max-width: 1090px) {
  .progress-bar-container {
    height: 20px;
  }
}
@media (max-width: 768px) {
  .progress-bar-container {
    width: 75%;
  }
}
@media (max-width: 600px) {
  .progress-bar-container {
    width: 100%;
  }
}

.progress-bar {
  height: 100%;
  width: 10%; /* начальное значение */
  background-color: rgb(226, 150, 242);
  border-radius: 20px;
  transition: width 0.3s;
}

.count {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
@media (max-width: 768px) {
  .count {
    grid-template-columns: none;
    gap: 30px;
  }
}

.countInfo {
  padding: 40px;
  color: rgb(255, 255, 255);
}
@media (max-width: 768px) {
  .countInfo {
    padding: 20px;
  }
}
.countInfo h2 {
  font-size: 2rem;
  text-align: center;
  gap: 10px;
}
@media (max-width: 1270px) {
  .countInfo h2 {
    font-size: 1.7rem;
  }
}
@media (max-width: 1090px) {
  .countInfo h2 {
    font-size: 1.7rem;
    width: 90%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .countInfo h2 {
    font-size: 1.3rem;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .countInfo h2 {
    font-size: 1.1rem;
    margin: 15px 0;
  }
}
.countInfo input[type=email],
.countInfo input[type=tel] {
  border: none !important;
}
@media (max-width: 1270px) {
  .countInfo img {
    width: 50px;
  }
}
@media (max-width: 1090px) {
  .countInfo img {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 768px) {
  .countInfo img {
    height: 30px;
  }
}
@media (max-width: 600px) {
  .countInfo img {
    height: 20px;
    width: 20px;
  }
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: 10;
  justify-content: center;
  align-items: center;
}

.modal {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  width: 80%;
  max-width: 400px;
  text-align: center;
}

.modal h2 {
  font-size: 1.5em;
  color: rgb(226, 150, 242);
  margin-bottom: 10px;
}

.modal p {
  color: rgb(0, 0, 0);
}
.modal button {
  padding: 10px 20px;
  font-size: 1em;
  margin-top: 20px;
  background: rgb(226, 150, 242);
  color: rgb(255, 255, 255);
  border-radius: 20px;
  width: 150px;
  border: none;
  cursor: pointer;
}

.nextBtn {
  border-radius: 30px;
  padding: 15px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  background: rgb(226, 150, 242);
  border: none;
  width: 300px;
  cursor: pointer;
  font-size: 15px;
}
@media (max-width: 768px) {
  .nextBtn {
    width: 250px;
  }
}
@media (max-width: 600px) {
  .nextBtn {
    width: 200px;
    padding: 10px;
    font-size: 14px;
  }
}

.main_label {
  font-size: 24px;
  font-weight: 400;
}
@media (max-width: 1090px) {
  .main_label {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .main_label {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .main_label {
    font-size: 16px;
  }
}

#step-info {
  font-weight: 700;
}
@media (max-width: 768px) {
  #step-info {
    font-size: 14px;
  }
}

.form-group div {
  margin: 30px 0;
}
@media (max-width: 768px) {
  .form-group div label {
    font-size: 14px;
  }
}

.custom-radio input[type=radio] {
  display: none;
}

.custom-radio span {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgb(226, 150, 242);
  border-radius: 50%;
  position: relative;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .custom-radio span {
    width: 15px;
    height: 15px;
  }
}

.custom-radio input[type=radio]:checked + span::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: rgb(226, 150, 242);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.custom-checkbox input[type=checkbox] {
  display: none;
}
.custom-checkbox span {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgb(226, 150, 242);
  border-radius: 4px;
  position: relative;
  vertical-align: middle;
}
.custom-checkbox span::before {
  content: "";
  position: absolute;
  left: 6px;
  width: 4px;
  height: 10px;
  top: 2px;
  border: solid rgb(226, 150, 242);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
}
.custom-checkbox input[type=checkbox]:checked + span::before {
  opacity: 1;
}

.presentation {
  background: url("../images/pngwing.com-25.png");
  width: 100%;
  height: 400px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
@media (max-width: 550px) {
  .presentation {
    height: 320px;
  }
}
@media (max-width: 550px) {
  .presentation {
    height: 250px;
  }
}

.video-container {
  position: absolute;
  width: 75%;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (max-width: 768px) {
  .video-container {
    width: 73%;
  }
}
@media (max-width: 550px) {
  .video-container {
    width: 65%;
  }
}
@media (max-width: 480px) {
  .video-container {
    width: 75%;
  }
}

.video-container video {
  width: 100%;
  height: auto;
}

.preferences {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: rgb(255, 255, 255);
  padding: 40px;
  gap: 50px;
}
@media (max-width: 1020px) {
  .preferences {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .preferences {
    padding: 20px;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .preferences {
    grid-template-columns: none;
  }
}

.pref_card {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 768px) {
  .pref_card {
    gap: 10px;
  }
}
.pref_card h3 {
  font-weight: 600;
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .pref_card h3 {
    font-size: 16px;
    margin-top: 5px;
  }
}
.pref_card p {
  font-weight: 200;
}
@media (max-width: 768px) {
  .pref_card p {
    margin: 0;
  }
}
@media (max-width: 600px) {
  .pref_card p {
    font-size: 14px;
  }
}
.pref_card img {
  transition: transform 0.3s ease-in-out;
}
@media (max-width: 2000px) {
  .pref_card img {
    width: 90px;
    height: 90px;
  }
}
@media (max-width: 768px) {
  .pref_card img {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 600px) {
  .pref_card img {
    width: 60px;
    height: 60px;
  }
}
.pref_card:hover img {
  animation: imgBounce 0.6s ease-in-out;
}

@keyframes imgBounce {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(0);
  }
  70% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.portfolio {
  color: rgb(255, 255, 255);
}
.portfolio h4 {
  text-align: center;
  font-size: 2rem;
}
@media (max-width: 1090px) {
  .portfolio h4 {
    font-size: 1.7rem;
  }
}
@media (max-width: 768px) {
  .portfolio h4 {
    font-size: 1.3rem;
  }
}
@media (max-width: 600px) {
  .portfolio h4 {
    font-size: 1.1rem;
    margin: 15px 0;
  }
}

.video_gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 40px;
}
@media (max-width: 768px) {
  .video_gallery {
    padding: 20px;
  }
}
@media (max-width: 600px) {
  .video_gallery {
    grid-template-columns: none;
  }
}
.video_gallery article video {
  width: 100%;
  border-radius: 20px;
}
.video_gallery article h5 {
  font-size: 20px;
  margin: 15px 0;
}
@media (max-width: 768px) {
  .video_gallery article h5 {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .video_gallery article h5 {
    font-size: 16px;
  }
}

#playButton {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  cursor: pointer;
}

.videoWrapper {
  position: relative;
  display: inline-block;
}

.categories {
  padding: 40px 100px;
  color: rgb(255, 255, 255);
}
@media (max-width: 1300px) {
  .categories {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .categories {
    padding: 20px;
  }
}
.categories h2 {
  font-size: 2rem;
  text-align: center;
}
@media (max-width: 1090px) {
  .categories h2 {
    font-size: 1.7rem;
  }
}
@media (max-width: 768px) {
  .categories h2 {
    font-size: 1.3rem;
  }
}
@media (max-width: 600px) {
  .categories h2 {
    font-size: 1.1rem;
  }
}

.categ_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1000px) {
  .categ_cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 460px) {
  .categ_cards {
    grid-template-columns: none;
    gap: 10px;
  }
}
.categ_cards div {
  display: flex;
  align-items: center;
  font-size: 20px;
  gap: 20px;
}
@media (max-width: 460px) {
  .categ_cards div {
    justify-content: center;
    gap: 10px;
  }
}
.categ_cards div h4 {
  font-weight: 300;
}
@media (max-width: 768px) {
  .categ_cards div h4 {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .categ_cards div h4 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .categ_cards div img {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 600px) {
  .categ_cards div img {
    width: 40px;
    height: 40px;
  }
}

.videocontent_pref {
  padding: 40px;
  color: rgb(255, 255, 255);
}
@media (max-width: 768px) {
  .videocontent_pref {
    padding: 20px;
  }
}
.videocontent_pref h2 {
  font-size: 2rem;
  text-align: center;
}
@media (max-width: 1090px) {
  .videocontent_pref h2 {
    font-size: 1.7rem;
  }
}
@media (max-width: 768px) {
  .videocontent_pref h2 {
    font-size: 1.3rem;
  }
}
@media (max-width: 600px) {
  .videocontent_pref h2 {
    font-size: 1.1rem;
  }
}

.key_pref {
  padding: 10px 20px;
  box-shadow: 1px 1px 5px 1px #04021e;
  border-radius: 10px;
  background: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  transition: transform 0.3s ease;
}
@media (max-width: 600px) {
  .key_pref img {
    width: 20px;
    height: 20px;
  }
}
.key_pref p {
  margin: 0;
}
@media (max-width: 600px) {
  .key_pref p {
    font-size: 14px;
  }
}
.key_pref:nth-child(1) {
  transform: rotate(-10deg);
}
@media (max-width: 600px) {
  .key_pref:nth-child(1) {
    transform: rotate(-4deg);
  }
}
.key_pref:nth-child(2) {
  transform: rotate(5deg);
}
@media (max-width: 600px) {
  .key_pref:nth-child(2) {
    transform: rotate(2deg);
  }
}
.key_pref:nth-child(3) {
  transform: rotate(-5deg);
}
@media (max-width: 1200px) {
  .key_pref:nth-child(3) {
    transform: rotate(3deg);
  }
}
@media (max-width: 600px) {
  .key_pref:nth-child(3) {
    transform: rotate(-4deg);
  }
}
.key_pref:nth-child(4) {
  transform: rotate(7deg);
}
@media (max-width: 1200px) {
  .key_pref:nth-child(4) {
    transform: rotate(1deg);
  }
}
.key_pref:nth-child(5) {
  transform: rotate(-3deg);
}
@media (max-width: 1200px) {
  .key_pref:nth-child(5) {
    transform: rotate(-6deg);
  }
}
@media (max-width: 600px) {
  .key_pref:nth-child(5) {
    transform: rotate(-6deg);
  }
}

.key_pref:hover {
  transform: rotate(0deg);
}

.video_pref_wrapper {
  display: flex;
  gap: 20px;
  margin: 60px 0;
}
@media (max-width: 1200px) {
  .video_pref_wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .video_pref_wrapper {
    margin: 20px 0;
  }
}
@media (max-width: 600px) {
  .video_pref_wrapper {
    grid-template-columns: none;
  }
}

@media (max-width: 768px) {
  .steps {
    padding: 20px;
  }
}
.steps h2 {
  font-size: 2rem;
  text-align: center;
  color: rgb(255, 255, 255);
}
@media (max-width: 1090px) {
  .steps h2 {
    font-size: 1.7rem;
  }
}
@media (max-width: 768px) {
  .steps h2 {
    font-size: 1.3rem;
  }
}
@media (max-width: 600px) {
  .steps h2 {
    font-size: 1.1rem;
  }
}

.circle {
  border-radius: 50%;
  padding: 30px;
  background: rgb(255, 255, 255);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(226, 150, 242);
  font-size: 30px;
  font-weight: bold;
  transition: 0.3s ease;
}
@media (max-width: 768px) {
  .circle {
    width: 30px;
    height: 30px;
    font-size: 24px;
  }
}
@media (max-width: 670px) {
  .circle {
    width: 20px;
    height: 20px;
    font-size: 20px;
  }
}
.circle p {
  margin: 0;
}

.inner_wrapper {
  display: flex;
  gap: 20px;
  width: 60%;
  align-items: center;
}
@media (max-width: 1300px) {
  .inner_wrapper {
    width: 85%;
  }
}
@media (max-width: 768px) {
  .inner_wrapper {
    width: 100%;
  }
}
@media (max-width: 670px) {
  .inner_wrapper {
    flex-direction: column;
    align-items: start;
    gap: 0;
  }
}
.inner_wrapper:hover .circle {
  background: rgb(226, 150, 242);
  color: rgb(255, 255, 255);
}
.inner_wrapper:hover .line {
  color: rgb(226, 150, 242);
}

.linewrapper {
  color: rgb(255, 255, 255);
  font-size: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1090px) {
  .linewrapper {
    font-size: 75px;
    font-weight: 200;
    line-height: 30px;
  }
}

.line {
  line-height: 25px;
  transition: 0.3s ease;
}
@media (max-width: 670px) {
  .line {
    display: none;
  }
}

.name_step {
  color: rgb(226, 150, 242);
  font-size: 20px;
  font-weight: 700;
  margin: 7px 0;
}
@media (max-width: 768px) {
  .name_step {
    font-size: 18px;
  }
}

.descr_step {
  color: white;
  font-size: 14px;
  margin: 0;
  font-weight: 200;
}
@media (max-width: 768px) {
  .descr_step {
    font-size: 13px;
  }
}

.steps_cards_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 670px) {
  .steps_cards_wrapper {
    gap: 20px;
  }
}

.footer {
  background: rgb(255, 255, 255);
}

.footer_info {
  padding: 40px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .footer_info {
    padding: 20px;
  }
}
@media (max-width: 650px) {
  .footer_info {
    flex-direction: column;
    gap: 20px;
  }
}

.q1 {
  font-size: 40px;
  font-weight: 700;
  margin: 0;
}
@media (max-width: 1090px) {
  .q1 {
    font-size: 32px;
  }
}
@media (max-width: 900px) {
  .q1 {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .q1 {
    font-size: 20px;
  }
}

.left_info {
  width: 50%;
}
@media (max-width: 650px) {
  .left_info {
    width: 100%;
  }
}
.left_info form {
  margin-top: 40px;
}
.left_info form input[type=tel],
.left_info form input[type=text],
.left_info form input[type=email] {
  width: 100%;
  padding: 15px 5px;
  font-size: 15px;
  border: none;
  border-bottom: solid grey 1px;
}
@media (max-width: 768px) {
  .left_info form input[type=tel],
  .left_info form input[type=text],
  .left_info form input[type=email] {
    padding: 5px;
  }
}
.left_info form textarea {
  width: 100%;
  border: none;
  border-bottom: solid gray 1px;
  max-height: 100px;
  min-height: 30px;
  resize: vertical;
}
.left_info .polit {
  display: flex;
  align-items: center;
  font-size: 14px;
  gap: 7px;
}
@media (max-width: 768px) {
  .left_info .polit {
    font-size: 11px;
  }
}
.left_info label {
  margin: 0;
  font-size: 14px;
  margin-top: 20px;
}

#form-submit {
  background: rgb(226, 150, 242);
  color: rgb(255, 255, 255);
  padding: 12px;
  border-radius: 30px;
  border: none;
  width: 250px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
}
@media (max-width: 670px) {
  #form-submit {
    width: 200px;
    font-size: 14px;
    padding: 10px;
  }
}

.phone_number,
.email,
.adress,
.work_hours {
  margin: 50px 0;
}
@media (max-width: 768px) {
  .phone_number,
  .email,
  .adress,
  .work_hours {
    margin: 0;
    margin-bottom: 10px;
  }
}
.phone_number a,
.email a,
.adress a,
.work_hours a {
  text-decoration: none;
  color: rgb(0, 0, 0);
}
.phone_number a:hover,
.email a:hover,
.adress a:hover,
.work_hours a:hover {
  text-decoration: underline;
}

.right_info {
  text-align: right;
}
@media (max-width: 870px) {
  .right_info {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .right_info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
  }
}
@media (max-width: 600px) {
  .right_info {
    font-size: 13px;
  }
}
@media (max-width: 670px) {
  .right_info {
    align-items: center;
  }
}

.phone,
.mail {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: end;
  margin: 0;
}
@media (max-width: 600px) {
  .phone,
  .mail {
    justify-content: center;
  }
}

.email a {
  display: block;
  margin: 10px 0;
}
@media (max-width: 670px) {
  .email {
    text-align: center;
  }
}

.adress p {
  margin: 0;
}
@media (max-width: 870px) {
  .adress {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .adress {
    margin: 20px 0;
    width: 70%;
  }
}
@media (max-width: 670px) {
  .adress {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .adress {
    font-size: 13px;
  }
}
@media (max-width: 670px) {
  .adress img {
    width: 20px;
    height: 20px;
  }
}

.work_hours {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: end;
}
.work_hours p {
  margin: 5px 0;
}
@media (max-width: 768px) {
  .work_hours img {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 670px) {
  .work_hours img {
    width: 30px;
    height: 30px;
  }
}

.messangers_info {
  background: rgb(226, 150, 242);
  padding: 20px 40px;
}
@media (max-width: 670px) {
  .messangers_info {
    padding: 10px 20px;
  }
}

.conf {
  color: rgb(0, 0, 0);
}

.messangers_info {
  text-align: center;
}
.messangers_info p {
  margin: 5px 0;
  font-size: 14px;
  color: rgb(255, 255, 255);
}
@media (max-width: 670px) {
  .messangers_info p {
    font-size: 12px;
  }
}
.messangers_info .icons {
  justify-content: center;
  margin-bottom: 20px;
}
@media (max-width: 670px) {
  .messangers_info .icons {
    margin-bottom: 10px;
  }
}

#scrollToTopBtn {
  position: fixed;
  bottom: 20px;
  left: 40px;
  width: 64px;
  height: 64px;
  cursor: pointer;
  display: none;
  z-index: 1000;
}
@media (max-width: 670px) {
  #scrollToTopBtn {
    left: 10px;
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 670px) {
  #scrollToTopBtn img {
    width: 45px;
    height: 45px;
  }
}

.videoWrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}
.videoWrapper video {
  -o-object-fit: cover;
     object-fit: cover;
}

.playPauseButton {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.6);
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 50%;
  padding: 12px 18px;
  outline: none;
  transition: background-color 0.3s;
}

.playPauseButton:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.messangers_right {
  display: none;
  flex-direction: column;
  position: fixed;
  right: 10px;
  bottom: 50%;
  gap: 10px;
}
@media (max-width: 670px) {
  .messangers_right {
    display: flex;
  }
}

.error {
  color: red;
}/*# sourceMappingURL=index.css.map */