.subtitle {
  font-weight: 600;
}

.color-1 {
  color: #004263;
}

.color-2 {
  color: var(--primary-color);
}

.color-3 {
  color: #34424e;
}

.color-4 {
  color: white;
}

.color-5 {
  color: #2a3946;
}

.color-6 {
  color: #e6746d;
}

.bg-color-1 {
  background-color: var(--primary-color);
}

.bg-color-2 {
  background-color: #1d2837;
}

.bg-color-3 {
  background-color: #eee;
}

.next-btn {
  position: absolute;
  height: 30px;
  width: 30px;
  left: 50%;
  bottom: 20px;
  transform: translate(-50%, -50%);
  margin: 0 auto;
  cursor: pointer;
  -webkit-mask: url(/svg/arrow-circle.svg) no-repeat 100% 100%;
  mask: url(/svg/arrow-circle.svg) no-repeat 100% 100%;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: var(--primary-color);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.next-btn:hover {
  bottom: 10px;
}

.arrow-icon {
  max-width: 15px;
  height: 15px;
  width: 15px;
  margin: 0;
  background-color: var(--primary-color);
  -webkit-mask: url(/svg/arrow-thick.svg) no-repeat 100% 100%;
  mask: url(/svg/arrow-thick.svg) no-repeat 100% 100%;
  -webkit-mask-position: 0;
  mask-position: 0;
  -webkit-mask-size: contain;
  mask-size: contain;
}


.s2, .s3 {
  min-height: 90vh;
}

.s2 .content, .s3 .content {
  min-height: 90vh;
  padding: 4rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.s2 .content {
  justify-content: space-between;
}

.s2 .sfooter {
  text-align: center;
}

.s2 .devices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  max-width: 1300px;
  gap: 2rem;
  width: 100%;
}

.s2 .device-wrapper {
  text-align: start;
}

.s2 .device-wrapper h6 {
  margin-top: 10px;
  margin-bottom: 0;
  padding-bottom: 0;
}

.s2 .device-card {
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bullet-wrapper {
  max-width: 268px;
}

.bullet-img {
  max-width: 300px;
  margin-bottom: 20px
}

@media screen and (min-width: 1300px) {
  .bullet-img {
    max-width: 300px;
  }

  .bullet-wrapper {
    max-width: 300px;
  }
}

.bullet-list {
  text-align: start;
}

.bullet-item {
  text-align: start;
  display: flex;
  flex-direction: row;
  margin-top: 20px;
  margin-bottom: 20px;
}

.bullet-title { font-size: 32px; margin-bottom: 10px; }
.bullet-item .arrow-icon { flex: 1; margin-top: 4px; }
.bullet-item p { flex: 1; }

#s5 .item {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

#s5 .item p, .s6 .title-wrapper p {
  font-weight: 400;
  font-size: 26px;
  line-height: 32px;
}

#s5 .item-icon { width: 40px; margin-right: 10px; }
#s6 .title { margin-bottom: 10px; margin-top: 0; }
#s6 .title-wrapper p { margin-top: 20px; max-width: 1170px; }

.toggle-container {
  margin-top: 40px;
  background: transparent;
  border: #1d2837 solid 1px;
  padding: 5px;
  border-radius: 35px;
}

.toggle-button {
  border-radius: 26px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  background: transparent;
  color: #1d2837;
}

.s6 .active {
  background: #1d2837;
  color: white;
}

@media screen and (min-width: 992px) {
  .s2 p {
    max-width: 825px;
    margin: 0 auto;
  }
}

.link {
  cursor: pointer;
  padding-bottom: 0;
  box-shadow: inset 0 -4px 0 0 var(--primary-color);
}

.link:hover {
  background-color: var(--primary-color);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.alt-link {
  cursor: pointer;
  padding-bottom: 0;
  box-shadow: inset 0 -4px 0 0 #e6746d;
}

.alt-link:hover {
  background-color: #e6746d;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#Layer_1 {
  width: 900px;
  max-width: 100%;
  height: auto;
}

.play-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #f5f5f5;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
  cursor: pointer;
  border: none;
  z-index: 2;
}

.play-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 10px rgba(52, 217, 200, 1);
  text-shadow: 0 0 10px rgba(52, 217, 200, 1);
}

.play-button,
.play-button div {
  position: absolute;
  left: 50%;
  top: 50%;
}

.play-button div {
  width: 20px;
  height: 20px;
  border-style: solid;
  box-sizing: border-box;
  border-width: 11px 0 11px 20px;
  border-color: transparent transparent transparent white;
  transform: translate(-40%, -50%);
}

.maximized {
  position: fixed;
  background: var(--neutral-color);
  top: 0;
  left: 0;
  z-index: 1000;
  height: 100%;
  width: 100%;
  object-fit: contain;
  -moz-transition: all 0.3s ease 0.3s;
  -ms-transition: all 0.3s ease 0.3s;
  -o-transition: all 0.3s ease 0.3s;
  -webkit-transition: all 0.3s ease 0.3s;
  transition: all 0.3s ease 0.3s;
}

.close-button {
  visibility: hidden;
  opacity: 0;
  border-radius: 50%;
  padding: 0.5em;
  width: 30px;
  height: 30px;
  border: 2px solid #2cb9ac;
  color: #2cb9ac;
  position: fixed;
  z-index: 2000;
  background: transparent;
  top: 15px;
  right: 15px;
  cursor: pointer;
}

.close-button::before,
.close-button::after {
  content: " ";
  position: absolute;
  display: block;
  background-color: #2cb9ac;
  width: 2px;
  left: 12px;
  top: 5px;
  bottom: 5px;
  transform: rotate(45deg);
}

.close-button::after {
  transform: rotate(-45deg);
}

.close-button:focus {
  outline: none;
}

.close-button-visible {
  visibility: visible;
  opacity: 1;
  -moz-transition: visibility 0s, opacity 0.5s linear;
  -ms-transition: visibility 0s, opacity 0.5s linear;
  -o-transition: visibility 0s, opacity 0.5s linear;
  -webkit-transition: visibility 0s, opacity 0.5s linear;
  transition: visibility 0s, opacity 0.5s linear;
  transition-delay: 0.5s;
}
