.home_frame {
  color: white;
  font-family: "Montserrat", sans-serif;
  padding: 0px 125px;
}

.home_title_note {
  font-size: 35px;
  position: relative;
  z-index: 10;
}

.underline-container {
  position: relative;
  display: inline-block;
  z-index: 10;
}

.underline-container svg {
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 100%;
  height: 15px;
}

path {
  stroke: #35d779;
  stroke-width: 6;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 100;
  animation: draw 1.5s ease-in-out forwards;
}

@keyframes draw {
  from {
    stroke-dashoffset: 1000;
  }
  to {
    stroke-dashoffset: 0;
  }
}

/* Sub content */
.sub_content_1 {
  font-size: 20px;
  line-height: 1.5;
}

/* download_section */
.download_section {
  display: flex;
  flex-direction: column;
}

.icon_heading {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-left: 5px solid #fff;
  border-radius: 5px;
}

.icon_surrounding {
  margin-left: 20px;
}

.icon_size {
  width: fit-content;
  height: 48px;
}

.icon_text_content {
  font-weight: 600;
  font-size: 24px;
}

.download_os_frame {
  width: 100%;
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.download_inner_os_frame {
  width: 25%;
  height: 350px;
  background-color: #000;
  margin: 25px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.os_icons {
  margin: 10px 0px;
}

.icon_os_size {
  width: fit-content;
  height: 128px;
}

.os_heading {
  font-size: 24px;
  font-weight: 700;
  margin: 5px;
  color: white;
  font-family: "Montserrat", sans-serif;
}

.platform_version {
  margin: 5px;
  font-size: 16px;
  font-weight: 500;
}

.companion_version {
  margin: 5px;
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  color: black;
  padding: 0px 20px;
  border-radius: 20px;
  background-color: #fff;
}

.download_link {
  text-decoration: none;
  display: inline-block;
}

.download_vist_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin: 20px 5px 5px 5px;
  font-size: 18px;
  padding: 5px 15px;
  color: #000;
  background-color: #35d779;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.download_vist_text {
  font-weight: bold;
}

.download_vist_btn:hover {
  background-color: #fff;
}

.download_arrow {
  height: 32px;
  transition: transform 0.3s ease;
}

.download_vist_btn:hover .download_arrow {
  transform: rotate(180deg);
}

/* Download Fade */
.download_section,
.download_inner_os_frame {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.download_section.show,
.download_inner_os_frame.show {
  opacity: 1;
  transform: translateY(0);
}

/* Featues */
.feature_section {
  display: flex;
  flex-direction: column;
}

.icon_heading_home {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-left: 5px solid #fff;
  border-radius: 5px;
}

.icon_surrounding_home {
  margin-left: 20px;
}

.icon_size_home {
  width: fit-content;
  height: 48px;
}

.icon_text_content_home {
  font-weight: 600;
  font-size: 24px;
}

.features_frame {
  width: 100%;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
}

.features_frame_inside {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  gap: 20px;
}

.progress-group {
  transform: rotate(-90deg);
  transform-origin: center;
}

.progress-circle {
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 4s ease-in-out;
  animation: progressAnimation 3s forwards ease-in-out;
}

.progress-text {
  font-size: 50px;
  fill: #fff;
  font-weight: bold;
  text-anchor: middle;
  dominant-baseline: middle;
}

@keyframes progressAnimation {
  from {
    stroke-dashoffset: 200;
  }
  to {
    stroke-dashoffset: calc(210 - (283 * 0.96));
  }
}

.features_left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}

.feature_content {
  width: 100%;
  background-color: #000;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 10px 10px;
  border-radius: 10px;
  border-left: 2px solid #35d779;
  border-right: 2px solid #35d779;
}

.feature_content_1 {
  font-size: 20px;
  font-weight: 350;
}

.feature_justify_content {
  margin-left: 50px;
}

.features_right {
  margin-top: 20px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5px 10px;
  border-radius: 20px;
  background-color: #000;
  font-size: 28px;
}

.video_download_feature {
  margin-top: 20px;
  width: fit-content;
  height: 256px;
}

.audio_feature {
  margin-top: 100px;
}

.Qr_feature {
  margin-top: 100px;
}

.download_feature {
  margin-top: 100px;
}

.features_frame_inside {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.features_frame_inside.show {
  opacity: 1;
  transform: translateY(0);
}

/* Security Section */
.security_section {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}

.security_content_frame {
  display: flex;
  flex-direction: column;
}

.security_content_inside {
  display: flex;
  flex-direction: row;
  background-color: #000;
  margin-top: 20px;
  width: 60%;
  padding: 10px;
  position: relative;
}

.security_content_inside::before,
.security_content_inside::after {
  content: "";
  position: absolute;
  background-color: white;
  border-radius: 5px;
}

/* Top Border */
.security_content_inside::before {
  top: 0;
  right: 0;
  width: 100px;
  height: 5px;
}

/* Left Border */
.security_content_inside::after {
  top: 0;
  right: 0;
  width: 5px;
  height: 100px;
}

.security_content_inside:nth-child(even) {
  align-self: flex-end;
}

.security_content_inside {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.security_content_inside.show {
  opacity: 1;
  transform: translateY(0);
}

.security_icon {
  width: fit-content;
  height: 128px;
}

.security_content_bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.security_head_1 {
  font-size: 24px;
  font-weight: 500px;
  font-style: italic;
  color: white;
}
.security_head_2 {
  font-size: 18px;
  color: white;
}

/* Tablet */
@media screen and (max-width: 768px) {
  .home_frame {
    padding: 0px 25px;
  }
  .home_title_note {
    font-size: 20px;
  }
  .download_os_frame {
    flex-direction: column;
  }
  .features_frame_inside {
    flex-direction: column;
    margin-right: 20px;
  }
  .features_frame_inside:nth-child(odd) .features_right {
    order: -1;
  }

  .features_frame_inside:nth-child(odd) .features_left {
    order: 1;
  }

  .features_frame_inside:nth-child(even) .features_left {
    order: 1;
  }

  .features_frame_inside:nth-child(even) .features_right {
    order: -1;
  }
  .feature_justify_content {
    margin-left: 0px;
  }
  .icon_text_content {
    font-size: 20px;
  }
  .icon_text_content_home {
    font-size: 24px;
  }
  .video_download_feature {
    width: fit-content;
    height: 128px;
  }
  .download_inner_os_frame {
    width: 100%;
  }

  .audio_feature {
    margin-top: 50px;
  }

  .Qr_feature {
    margin-top: 50px;
  }

  .download_feature {
    margin-top: 50px;
  }

  /* Security */

  .security_section {
    margin-top: 20px;
  }
  .security_content_frame {
    gap: 10px;
  }
  .security_content_inside {
    width: 95%;
    flex-direction: column;
  }

  .security_head_1 {
    font-size: 18px;
  }
  .security_head_2 {
    font-size: 16px;
  }
  .security_content_top {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .security_content_bottom {
    gap: 20px;
  }
  .security_content_inside:nth-child(even) {
    align-self: flex-start;
  }
}

/* Mobile Phone */
@media screen and (max-width: 350px) {
  .home_frame {
    padding: 0px 15px;
  }
  .home_title_note {
    font-size: 15px;
  }
  .download_os_frame {
    flex-direction: column;
  }

  .feature_justify_content {
    margin-left: 0px;
  }
  .icon_text_content {
    font-size: 20px;
  }
  .icon_text_content_home {
    font-size: 24px;
  }

  .features_frame_inside {
    flex-direction: column;
    margin-right: 20px;
  }

  .features_frame_inside:nth-child(odd) .features_right {
    order: -1;
  }

  .features_frame_inside:nth-child(odd) .features_left {
    order: 1;
  }

  .features_frame_inside:nth-child(even) .features_left {
    order: 1;
  }

  .features_frame_inside:nth-child(even) .features_right {
    order: -1;
  }
  .video_download_feature {
    width: fit-content;
    height: 128px;
  }
  .download_inner_os_frame {
    width: 100%;
  }

  .audio_feature {
    margin-top: 50px;
  }

  .Qr_feature {
    margin-top: 50px;
  }

  .download_feature {
    margin-top: 50px;
  }

  /* Secutity */
  .security_section {
    margin-top: 20px;
  }
  .security_content_frame {
    gap: 10px;
  }
  .security_content_inside {
    width: 95%;
    flex-direction: column;
  }

  .security_head_1 {
    font-size: 18px;
  }
  .security_head_2 {
    font-size: 16px;
  }
  .security_content_top {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .security_content_bottom {
    gap: 20px;
  }
  .security_content_inside:nth-child(even) {
    align-self: flex-start;
  }
}
