/*****************************************************************************/
/*********************************FullHD 1440**********************************/
/*****************************************************************************/

.home-title {
  padding: 30px 0;
  text-align: center;
}

.home-title h1 {
  font-size: 3rem;
}

.subtitle {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
}

.subtitle2 {
  margin-top: 70px;
  margin-bottom: 70px;
  font-size: 1.85em;
  line-height: 1.25;
  font-weight: 500;
  text-align: center;
}

.bottom-download {
  position: relative;
  margin-top: 100px;
  padding: 80px 20px;
  background-color: #005aa7;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.bottom-download .blue-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bottom-download-title {
  position: relative;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.35em;
  color: #fff;
  z-index: 1;
}

.bottom-download .button-lg-orange {
  max-width: 360px;
  margin: 40px auto 0;
}

/*********************************INTRO*********************************/


.intro {
  width: 360px;
  color: #b6ddff;
}

.intro-text {
  font-size: 1.7rem;
  text-align: start;
  font-weight: 300;
  line-height: 1.35em;
}

.intro-download {
  margin-top: 45px;
}

.intro-microsoft-store {
  margin-top: 20px;
  margin-bottom: 30px;
}

.intro-microsoft-store a {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 15px;
  font-size: 15px;
  font-weight: 300;
  color: #b6ddff;
  text-decoration: none;
  transition: all .2s ease-in;
}

.intro-microsoft-store a:hover {
  color: #fff;
}

.intro-microsoft-store svg {
  position: relative;
  top: -2px;
  width: 30px;
}

.intro-download-mobile {
  display: none;
}

.intro-discount {
  width: auto;
  max-width: 350px;
  margin: 20px auto 0;
  background: #ffffff0f;
  border-radius: 8px;
  padding: 10px 0;
  color: #1d1d1d;
  display: flex;
  align-items: center;
}

.intro-discount-icon {
display: flex;
justify-content: center;
align-items: center;
padding:0 10px;
}

.intro-discount-text {
  padding-right: 10px;
  color: #FFEB3B;
  font-size: 17px;
  flex: 1;
}

.intro-discount-text a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 300;
  text-decoration: underline dashed;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.intro-discount-text > span {
  color: #fff !important;
  font-weight: 300;
  font-size: 16px;
}

.intro-discount form {
  margin-top: 10px;
}

.intro-discount-text a:hover {
  text-decoration: none;
}
.discount_question input[type=submit] {
  background-color: #0b4596;
  border: 1px solid #0b4596;
  border-radius: 0 4px 4px 0;
  padding: 5px 8px;
  color: #fff;
  box-shadow: none;
  appearance: none;
  outline: none;
  transition: all .15s ease-in;
  cursor: pointer;
  width: 65px;
}

.discount_question {
  display: flex;
  flex-wrap: nowrap;
}

.discount_question input[type=text] {
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 4px 0 0 4px;
  padding: 5px 8px;
  color: #1d1d1d;
  box-shadow: none;
  appearance: none;
  outline: none;
  transition: all .15s ease-in;
  width: calc(100% - 60px);
}
.discount_question input[type=text]:focus {
  border: 1px solid #0b4596;
}

.discount_question input[type=submit]:hover {
  background-color: #1d1d1d;
  border: 1px solid #1d1d1d;
  color: #fff;
}

/*********************************SLIDESHOW*********************************/

.slideshow-wrapper {
  position: relative;
  background-color: #005aa7;
  color: #ffffff;
}

.slideshow-wrapper .blue-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slideshow-wrapper > .container {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  padding: 50px 20px;
  column-gap: 100px;
  z-index: 1;
}

.slideshow {
  flex: 1;
}

intro-slideshow {
  display: block;
}

.slider-container {
  width: 100%;
  height: 0;
  padding-bottom: 68.82%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.slider-container .slide {
  position: absolute;
  transition: all .3s linear;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
}

.slider-container img {
  cursor: pointer;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.slider-container .slide.active {
  opacity: 1;
  z-index: 10;
}

.slider-container .c:after {
  content: attr(title) '!';
  background-color: rgba(34, 34, 34, 0.97);
  color: #fff;
  position: absolute;
  padding: 10px 20px;
  border-radius: 2px;
  background: attr(img);
  bottom: 10px;
  margin-left: 10px;
}

.arrows-container .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: calc(50% - 35px);
  width: 70px;
  height: 70px;
  border: 0;
  background: rgba(255, 255, 255, .6);
  backdrop-filter: blur(8px);
  cursor: pointer;
  z-index: 20;
  border-radius: 3px;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

.slider-container .arrows-container .arrow.left {
  left: 0;
  transform: translateX(-100%);
}

.slider-container .arrows-container .arrow.right {
  right: 0;
  transform: translateX(100%);
}

.slider-container:hover .arrows-container .arrow.left {
  transform: translateX(0);
}

.slider-container:hover .arrows-container .arrow.right {
  transform: translateX(0);
}

.btn-container {
  display: flex;
  flex-direction: row-reverse;
  margin: 15px 0 0 auto;
  align-items: center;
  column-gap: 15px;
  width: fit-content;
  opacity: .8;
}

.btn-container .button {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  height: 15px;
  margin: 5px 5px;
  padding: 0;
  width: 15px;
}

.btn-container .button:after {
  content: '';
  position: absolute;
  inset: -6px;
  z-index: -1;
}

.btn-container .control {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
}

.btn-container .control svg {
  fill: #232323
}

.btn-container .control[data-play] svg {
  margin-left: 1px
}

.btn-container .button.active:before {
  content: '';
  background-color: #232323;
  border-radius: 50%;
  height: 9px;
  position: absolute;
  top: 2px;
  left: 2px;
  width: 9px;
}

.play {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/play.png);
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.6;
  z-index: 2;
}

.slideshow:hover .play {
  display: block;
  opacity: 0.7;
}


.button-lg-orange {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  max-width: 350px;
  min-height: 60px;
  margin: 0 auto;
  padding: 15px 30px;
  text-decoration: none;
  color: #fff;
  font-size: 1em;
  letter-spacing: 1px;
  background: #ff7b0e;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .2);
  border-radius: 10px;
  transition: .35s ease;
}

.button-lg-orange:hover {
  box-shadow: 0 2px 2px rgba(0, 0, 0, .1);
}

.button-lg-orange svg {
  position: relative;
  top: -1px;
  margin-right: 15px;
  width: 35px;
  height: 35px;
}

.button-lg-orange svg path {
  stroke: #fff;
}

.button-lg-orange:before {
  content: '';
  position: absolute;
  top: 0;
  width: 250%;
  height: 100%;
  transition: .35s ease;
  transform: translateX(49%) skewX(-25deg);
  background: rgba(255, 255, 255, .1);
}

.button-lg-orange:hover:before {
  transform: translateX(10%) skewX(-25deg);
}


.button-lg-orange span {
  position: absolute;
  display: block;
  transition: .35s ease;
  background: rgba(255, 255, 255, .75);
}

.button-lg-orange span:nth-child(1) {
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
}

.button-lg-orange:hover span:nth-child(1) {
  width: 100%;
  height: 1px;
  transform: translateX(100%);
}

.button-lg-orange span:nth-child(2) {
  top: 0;
  left: 0;
  width: 1px;
  height: 0;
}

.button-lg-orange:hover span:nth-child(2) {
  height: 100%;
  transform: translateY(100%);
}

.button-lg-orange span:nth-child(3) {
  bottom: 0;
  right: 0;
  width: 0;
  height: 1px;
}

.button-lg-orange:hover span:nth-child(3) {
  width: 100%;
  height: 1px;
  transform: translateX(-100%);
}

.button-lg-orange span:nth-child(4) {
  bottom: 0;
  right: 0;
  width: 1px;
  height: 0;
}

.button-lg-orange:hover span:nth-child(4) {
  height: 100%;
  transform: translateY(-100%);
}


/* Large Screens (Desktops) */

@media only screen and (max-width: 1440px) {
  .slideshow-wrapper > .container {
    column-gap: 60px;
  }
}

/* Medium Screens (Large Tablets) */

@media only screen and (max-width: 1023px) {
  .intro-microsoft-store, .intro-download {
    display: none;
  }
  .intro-download-mobile {
    display: block;
    margin-top: 30px;
  }
}

/* Small Screens (Tablets) */

@media only screen and (max-width: 920px) {
  .slideshow-wrapper > .container {
    flex-direction: column;
    row-gap: 50px;
    padding-top: 30px;
    padding-bottom: 60px;
  }

  .slideshow {
    max-width: 500px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .intro {
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .intro-text {
    font-size: 1.5rem;
    text-align: center;
  }

  .intro-discount-text {
    font-size: 15px;
  }

  .intro-microsoft-store a {
    justify-content: center;
  }

  .subtitle2 {
    margin-top: 60px;
    margin-bottom: 60px;
    font-size: 1.65rem;
  }

  .bottom-download-title {
    font-size: 1.65rem;
  }

  .home-title h1 {
    font-size: 2.4rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }
}

/* Extra Small Screens (Mobile) */

@media only screen and (max-width: 576px) {
  .slideshow-wrapper > .container {
    padding-top: 15px;
  }

  .home-title h1 {
    font-size: 1.8rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .bottom-download-title {
    font-size: 1.4rem;
  }

  .intro-text {
    font-size: 1.2rem;
  }

  .subtitle2 {
    margin-top: 50px;
    margin-bottom: 50px;
    font-size: 1.35rem;
  }
}
