*, *:before, *:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #15181A;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

.skw-pages {
  overflow: hidden;
  position: relative;
  height: 100vh;
}

.skw-page {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.skw-page__half {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100vh;
  transition: transform 1s;
}
.skw-page__half--left {
  left: 0;
  transform: translate3d(-32.4vh, 100%, 0);
}
.skw-page__half--right {
  left: 50%;
  transform: translate3d(32.4vh, -100%, 0);
}
.skw-page.active .skw-page__half {
  transform: translate3d(0, 0, 0);
}
.skw-page__skewed {
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 140%;
  height: 100%;
  transform: skewX(-18deg);
  background: #000;
}
.skw-page__half--left .skw-page__skewed {
  left: -40%;
}
.skw-page__half--right .skw-page__skewed {
  right: -40%;
}
.skw-page__content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column wrap;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 0 30%;
  color: #fff;
  transform: skewX(18deg);
  transition: transform 1s, opacity 1s;
  background-size: cover;
}
.skw-page__half--left .skw-page__content {
  padding-left: 30%;
  padding-right: 30%;
  transform-origin: 100% 0;
}
.skw-page__half--right .skw-page__content {
  padding-left: 30%;
  padding-right: 30%;
  transform-origin: 0 100%;
}
.skw-page.inactive .skw-page__content {
  opacity: 0.5;
  transform: skewX(18deg) scale(0.95);
}
.skw-page__heading {
  margin-bottom: 15px;
  text-transform: uppercase;
  font-size: 25px;
  text-align: center;
}
.skw-page__description {
  font-size: 18px;
  text-align: center;
}
.skw-page__link {
  color: #FFA0A0;
}
.skw-page .float-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #4CAF50;
  color: white;
  text-align: center;
  line-height: 60px;
  font-size: 14px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 9999;
}
.skw-page .float-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.skw-page-1 .skw-page__half--left .skw-page__content {
  background-image: url("https://images.unsplash.com/photo-1683665951932-1415ae570f14?q=80&w=1668&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
}
.skw-page-1 .skw-page__half--right .skw-page__content {
  background: #292929;
}
.skw-page-2 .skw-page__half--left .skw-page__content {
  background: #292929;
}
.skw-page-2 .skw-page__half--right .skw-page__content {
  background-image: url("./img/good.png");
}
.skw-page-3 .skw-page__half--left .skw-page__content {
  background-image: url("./img/google.png");
}
.skw-page-3 .skw-page__half--right .skw-page__content {
  background: #292929;
}
.skw-page-4 .skw-page__half--left .skw-page__content {
  background: #292929;
}
.skw-page-4 .skw-page__half--right .skw-page__content {
  background-image: url("https://images.unsplash.com/photo-1611001897293-561e0c30f938?q=80&w=1740&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
}
.skw-page-5 .skw-page__half--left .skw-page__content {
  background-image: url("https://plus.unsplash.com/premium_photo-1720556221767-990b2e11807c?q=80&w=1740&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
}
.skw-page-5 .skw-page__half--right .skw-page__content {
  background: #292929;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-container {
  background-color: white;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.modal-header {
  padding: 16px 20px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-size: 18px;
  color: #333;
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
  transition: color 0.2s;
}

.modal-close:hover {
  color: #333;
}

.modal-body {
  padding: 20px;
  color: #666;
  font-size: 14px;
}

.modal-footer {
  padding: 16px 20px;
  border-top: 1px solid #e0e0e0;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.modal-btn {
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.2s;
}

.modal-btn-cancel {
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
  color: #666;
}

.modal-btn-cancel:hover {
  background-color: #e9e9e9;
}

.modal-btn-confirm {
  background-color: #4CAF50;
  border: 1px solid #4CAF50;
  color: white;
}

.modal-btn-confirm:hover {
  background-color: #45a049;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .float-button {
    width: 120px;
  }
  .skw-pages {
    display: none !important;
  }
  .mobile-page {
    display: block !important;
    min-height: 100vh;
    background-color: #15181A;
  }
  *,
  *:before,
  *:after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
  }
  html {
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    font-size: 62.5%;
  }
}
@media only screen and (max-width: 768px) and (max-width: 800px) {
  html {
    font-size: 57%;
  }
}
@media (max-width: 768px) {
  body {
    background-color: #000;
    color: #fff;
    padding: 8rem;
  }
}
@media only screen and (max-width: 768px) and (max-width: 1000px) {
  body {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .container {
    position: relative;
    overflow: hidden;
    border-radius: 5rem;
  }
}
@media only screen and (max-width: 768px) and (max-width: 1000px) {
  .container {
    border-radius: 0;
  }
}
@media (max-width: 768px) {
  .slider {
    display: flex;
    width: 500%;
    height: 55rem;
    transition: all 0.25s ease-in;
    transform: translateX(0);
  }
}
@media only screen and (max-width: 768px) and (max-width: 1000px) {
  .slider {
    height: 100vh;
  }
}
@media (max-width: 768px) {
  .slider .box {
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    overflow: hidden;
    position: relative;
  }
}
@media only screen and (max-width: 768px) and (max-width: 650px) {
  .slider .box {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .slider .box .bg {
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.2);
    width: 55%;
    transform: skewX(7deg);
    position: absolute;
    height: 100%;
    left: -10%;
    padding-left: 20rem;
    transform-origin: 0 100%;
  }
}
@media only screen and (max-width: 768px) and (max-width: 800px) {
  .slider .box .bg {
    width: 65%;
  }
}
@media only screen and (max-width: 768px) and (max-width: 650px) {
  .slider .box .bg {
    width: 100%;
    left: 0;
    bottom: 0;
    height: 54%;
    transform: skewX(0deg);
  }
}
@media (max-width: 768px) {
  .slider .box .bg::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: inherit;
    pointer-events: none;
    transform: skewX(10deg);
  }
}
@media only screen and (max-width: 768px) and (max-width: 650px) {
  .slider .box .bg::before {
    width: 120%;
    bottom: 0;
    transform: skewX(0deg);
  }
}
@media (max-width: 768px) {
  .slider .box .details {
    padding: 5rem;
    padding-left: 10rem;
    z-index: 100;
    grid-column: 1/span 1;
    grid-row: 1/-1;
  }
}
@media only screen and (max-width: 768px) and (max-width: 650px) {
  .slider .box .details {
    grid-row: 2/span 1;
    grid-column: 1/-1;
    text-align: center;
    padding: 2rem;
    transform: translateY(-9rem);
  }
}
@media (max-width: 768px) {
  .slider .box .details h1 {
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
  }
  .slider .box .details p {
    display: inline-block;
    font-size: 1.3rem;
    color: #B5B4B4;
    margin-bottom: 2rem;
    margin-right: 5rem;
  }
}
@media only screen and (max-width: 768px) and (max-width: 800px) {
  .slider .box .details p {
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  .slider .box .details button {
    padding: 1rem 3rem;
    color: #fff;
    border-radius: 2rem;
    outline: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .slider .box .details button:hover {
    opacity: 0.8;
  }
  .slider .box .details button:focus {
    outline: none;
    border: none;
  }
  .slider .box1 {
    background-color: #500033;
  }
  .slider .box1 .illustration .inner {
    background-color: #FF0077;
  }
  .slider .box1 .illustration .inner::after, .slider .box1 .illustration .inner::before {
    background-color: rgba(255, 0, 119, 0.4);
  }
  .slider .box1 button {
    background-color: #FF0077;
  }
  .slider .box2 {
    background-color: #000050;
  }
  .slider .box2 .illustration .inner {
    background-color: #0033FF;
  }
  .slider .box2 .illustration .inner::after, .slider .box2 .illustration .inner::before {
    background-color: rgba(0, 51, 255, 0.4);
  }
  .slider .box2 button {
    background-color: #0033FF;
  }
  .slider .box3 {
    background-color: #00501D;
  }
  .slider .box3 .illustration .inner {
    background-color: #00FF44;
  }
  .slider .box3 .illustration .inner::after, .slider .box3 .illustration .inner::before {
    background-color: rgba(0, 255, 68, 0.4);
  }
  .slider .box3 button {
    background-color: #00FF44;
  }
  .slider .box4 {
    background-color: #554D00;
  }
  .slider .box4 .illustration .inner {
    background-color: #FF4E00;
  }
  .slider .box4 .illustration .inner::after, .slider .box4 .illustration .inner::before {
    background-color: rgba(255, 78, 0, 0.4);
  }
  .slider .box4 button {
    background-color: #FF4E00;
  }
  .slider .box5 {
    background-color: #300050;
  }
  .slider .box5 .illustration .inner {
    background-color: #8000FF;
  }
  .slider .box5 .illustration .inner::after, .slider .box5 .illustration .inner::before {
    background-color: rgba(128, 0, 255, 0.4);
  }
  .slider .box5 button {
    background-color: #8000FF;
  }
  .slider .illustration {
    grid-column: 2/-1;
    grid-row: 1/-1;
    justify-self: center;
  }
}
@media only screen and (max-width: 768px) and (max-width: 650px) {
  .slider .illustration {
    grid-row: 1/span 1;
    grid-column: 1/-1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .slider .illustration div {
    height: 25rem;
    width: 18rem;
    border-radius: 3rem;
    background-color: #FF0077;
    position: relative;
    transform: skewX(-10deg);
  }
}
@media only screen and (max-width: 768px) and (max-width: 800px) {
  .slider .illustration div {
    height: 20rem;
    width: 15rem;
  }
}
@media (max-width: 768px) {
  .slider .illustration div::after, .slider .illustration div::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 3rem;
    top: 0;
    left: 0;
  }
  .slider .illustration div::after {
    transform: translate(4rem, -1rem);
  }
  .slider .illustration div::before {
    transform: translate(2rem, -2rem);
  }
  .prev,
  .next,
  .trail {
    z-index: 10000;
    position: absolute;
  }
  .prev,
  .next {
    width: 4rem;
    cursor: pointer;
    opacity: 0.2;
    transition: all 0.3s ease;
  }
}
@media only screen and (max-width: 768px) and (max-width: 650px) {
  .prev,
  .next {
    display: none;
  }
}
@media (max-width: 768px) {
  .prev:hover,
  .next:hover {
    opacity: 1;
  }
  .prev {
    top: 50%;
    left: 2%;
    transform: translateY(-50%);
  }
  .next {
    top: 50%;
    right: 2%;
    transform: translateY(-50%);
  }
  .trail {
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    text-align: center;
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 768px) and (max-width: 650px) {
  .trail {
    width: 90%;
    bottom: 13%;
  }
}
@media (max-width: 768px) {
  .trail div {
    padding: 2rem;
    border-top: 3px solid #fff;
    cursor: pointer;
    opacity: 0.3;
    transition: all 0.3s ease;
  }
  .trail div:hover {
    opacity: 0.6;
  }
}
@media only screen and (max-width: 768px) and (max-width: 650px) {
  .trail div {
    padding: 1rem;
  }
}
@media (max-width: 768px) {
  .active {
    opacity: 1 !important;
  }
  .skw-page__half {
    width: 100%;
    height: 50vh;
  }
  .skw-page__half--left {
    left: 0;
    top: 0;
    transform: translate3d(0, -32.4vh, 0);
  }
  .skw-page__half--right {
    left: 0;
    top: 50%;
    transform: translate3d(0, 32.4vh, 0);
  }
  .skw-page__content {
    padding: 0 10%;
    transform: skewX(0);
  }
  .skw-page__half--left .skw-page__content, .skw-page__half--right .skw-page__content {
    padding: 0 10%;
    transform-origin: center;
  }
  .skw-page__heading {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
  }
  .skw-page__description {
    font-size: clamp(1rem, 3vw, 1.2rem);
  }
  .float-button {
    width: 50px;
    height: 50px;
    line-height: 50px;
    bottom: 20px;
    right: 20px;
  }
  .modal-container {
    width: 90%;
    max-width: none;
  }
}
@media (min-width: 768px) {
  .skw-pages {
    display: block !important;
  }
  .mobile-page {
    display: none !important;
  }
}/*# sourceMappingURL=index.css.map */