body {
  background-image: url("/img/bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #09608d;
  color: #000;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}
.subtitle {
  margin-bottom: 20px;
  color: #db136c;
}
.container {
  margin-top: 30px;
  position: relative;
  flex: 1;
}
.overlay {
  background-size: 101% 16%;
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.content {
  position: relative;
  z-index: 2;
}
.logo img {
  max-width: 200px;
  position: relative;
  bottom: -30px;
}
h1,
h2 {
  text-align: center;
}
h1 {
  font-size: 2rem;
}
h2 {
  font-size: 1.5rem;
}
.highlight {
  color: yellow;
  font-weight: bold;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
}
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;

  border-radius: 10px;
  background-color: #000;
}

.video-container iframe,
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.arrow {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  background: linear-gradient(to right, #db136c 0%, #fc3d03 100%);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  animation: bounce 2s infinite;
  z-index: 10;
}
.arrow i {
  font-size: 20px;
  color: #000;
}

@keyframes bounce {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -15px);
  }
}

.results {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  color: black;
  font-family: inherit;
  font-size: 22px;
  font-weight: 700;
  border: 0 solid transparent;
  cursor: pointer;
  text-align: center;
  z-index: 10;
}

.results::after {
  display: block;
  content: "";
  margin: 0.4em auto 0;
  width: 80px;
  height: 3px;
  background: #3b3b3b;
}
.white-result {
  width: 100%;
  height: 31px;
  background-color: white;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.form-container {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 20px;
  border-radius: 10px;
  color: #db136c;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
}
.dir {
  background: linear-gradient(to right, #8c52ff 0%, #5ce1e6 100%);
  font-size: 20px;
  transition: scale 0.3s;
}
.dir:hover {
  scale: 1.05;
}
.form-container .form-group {
  margin-bottom: 15px;
}
.form-container label {
  font-weight: bold;
}
.form-container input[type="text"],
.form-container input[type="email"] {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.form-container a {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: none;
  background-color: #007bff;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}
.form-container a:hover {
  background-color: #0056b3;
  text-decoration: none;
}

.row {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  padding-top: 10%;
  justify-content: space-around;
}

.row > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-around;
}

.sidebar {
  color: #000;
  z-index: 99;
  white-space: nowrap;
  padding: 10px;
}

.sidebar a {
  color: #000;
  font-size: 18px;
}

.sidebar a:hover {
  text-decoration: underline;
}

.circle-container {
  width: 32px;
  height: 32px;
  display: none;
  margin-top: 20px;
  margin-left: 20px;
}

.checkmark {
  display: none;
  width: 50px;
  margin-left: 5px;
  height: 50px;
}

.informations {
  display: none;
  align-items: center;
}

.success {
  display: none;
  align-items: center;
}

.text-container {
  font-size: 18px;
  margin-left: 10px;
}

.dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #2981d5;
  border-radius: 50%;
  opacity: 0;
  animation: appear 0.3s ease-in-out 0.5s forwards,
    spread 0.5s ease-in-out 1.2s forwards, rotate 1s linear 1.5s infinite,
    gather 0.3s ease-in-out 2.5s forwards;
}

@keyframes appear {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes spread {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(var(--x), var(--y));
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg) translate(var(--x), var(--y)) rotate(0deg);
  }
  100% {
    transform: rotate(270deg) translate(var(--x), var(--y)) rotate(-270deg);
  }
}

@keyframes gather {
  0% {
    transform: translate(var(--x), var(--y));
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}

#dot1 {
  --x: 0px;
  --y: -20px;
}
#dot2 {
  --x: 15px;
  --y: -15px;
}
#dot3 {
  --x: 20px;
  --y: 0px;
}
#dot4 {
  --x: 15px;
  --y: 15px;
}
#dot5 {
  --x: 0px;
  --y: 20px;
}
#dot6 {
  --x: -15px;
  --y: 15px;
}
#dot7 {
  --x: -20px;
  --y: 0px;
}
#dot8 {
  --x: -15px;
  --y: -15px;
}

.checkmark path {
  fill: #2981d5;
}

.dot-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.padng {
  padding-top: 100px;
}

@media (min-width: 1600px) {
  .row {
    padding-top: 10%;
    justify-content: space-around;
  }
}

@media (max-width: 991px) {
  .padng {
    padding-top: 0;
  }

  .logo img {
    max-width: 150px;
    position: relative;
    bottom: -12px;
  }

  .col-md-4,
  .col-md-8 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 67.333333%;
  }
  .video-container {
    padding-bottom: 75%;
  }
  .form-container {
    margin-top: 20px;
  }

  .row {
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding-top: 10%;
  }

  .overlay {
    top: 0;
    display: none;
  }

  .white-result {
    display: none;
    height: -99px;
  }

  .results {
    color: white;
    position: static;
  }

  .results::after {
    background: white;
  }

  .arrow {
    display: none;
  }
}
.modal-custom {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}
.modal-content-custom {
  background: #000;
  padding: 20px;
  border-radius: 8px;
  max-width: 400px;
  width: 100%;
  position: relative;
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 20px;
  color: #000;
}
.div_custom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.div_custom h3 {
  font-size: 24px;
}
@media (max-width: 425px) {
  .div_custom h3 {
    font-size: 18px;
  }
}

.title {
  color: #fff;
}

.subtitle {
  width: fit-content;
  margin: 0 auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 10px;
}
