@import url("https://fonts.googleapis.com/css?family=Open+Sans");

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

body {
  font-family: "Open Sans", sans-serif;
}

@media only screen and (min-width: 1441px) {
  .slider-container {
    position: relative;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: space-around;
    gap: 5rem;
    background-image: url("Slide-bg.png");
    background-position: right;
    background-repeat: no-repeat;
  }

  .left-slide {
    height: 100%;
    position: absolute;
    top: 0;
    left: 5%;
    width: 35%;
    transition: transform 0.5s ease-in-out;
  }

  .texts h1 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    background: #ab64a0;
    background: linear-gradient(to right, #ab64a0 0%, #2eb2c9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .texts p {
    display: inline-block;
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 2rem;
    margin-right: 5rem;
  }

  .left-slide>div {
    align-items: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 100%;
  }

  .slide {
    /* display: none; */
  }

  .right-slide-mobile {
    display: none;
  }

  .left-slide h1 {}

  .right-slide {
    height: 400vh;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    row-gap: 0vw;
    top: 5vh;
    left: 55vw;
    width: 35vw;
    transition: transform 0.5s ease-in-out;
  }

  .right-slide>div img {
    height: 100%;
    max-width: 100%;
  }

  .slider-container .action-buttons button {
    position: absolute;
    left: 35%;
    top: 50%;
    z-index: 100;
  }

  .slider-container .action-buttons .down-button {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    transform: translateX(-100%);
  }

  .slider-container .action-buttons .up-button {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    transform: translateY(-100%);
  }
}

@media only screen and (min-width: 651px) and (max-width: 1440px) {
  .slider-container {
    position: relative;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: space-around;
    gap: 5rem;
    background-image: url("Slide-bg-s.png");
    background-position: right;
    background-repeat: no-repeat;
  }

  .left-slide {
    height: 100%;
    position: absolute;
    top: 0;
    left: 5%;
    width: 35%;
    transition: transform 0.5s ease-in-out;
  }

  .texts h1 {
    font-size: 2.55rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    background: #ab64a0;
    background: linear-gradient(to right, #ab64a0 0%, #2eb2c9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .texts p {
    display: inline-block;
    font-size: 1.33rem;
    color: #000000;
    margin-bottom: 2rem;
    margin-right: 5rem;
  }

  .left-slide>div {
    align-items: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 100%;
  }

  .slide {
    /* display: none; */
  }

  .right-slide-mobile {
    display: none;
  }

  .left-slide h1 {}

  .right-slide {
    height: 400vh;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    row-gap: 0vw;
    top: 5vh;
    left: 55vw;
    width: 40vw;
    transition: transform 0.5s ease-in-out;
  }

  .right-slide>div img {
    height: 100%;
    max-width: 100%;
  }

  .slider-container .action-buttons button {
    position: absolute;
    left: 35%;
    top: 50%;
    z-index: 100;
  }

  .slider-container .action-buttons .down-button {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    transform: translateX(-100%);
  }

  .slider-container .action-buttons .up-button {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    transform: translateY(-100%);
  }
}

.trail {
  z-index: 10000;
  position: absolute;
}

.trail {
  top: 45%;
  left: 9%;
  transform: translateX(-50%);
  width: 15%;
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  gap: 0.75rem;
  text-align: center;
  font-size: 1.5rem;
}

@media only screen and (max-width: 650px) {
  .trail {
    width: 39%;
    bottom: 53%;
  }
}

@media only screen and (min-width: 1100px) {
  .texts h1 {
    font-size: 2.85rem;
  }

  .texts p {
    font-size: 1.39rem;
  }
}

.box4,
.box5 {
  display: none;
}

.trail .dot .active {
  background-color: #081235;
  opacity: 1;
}

.trail div {
  width: 10px;
  height: 10px;
  cursor: pointer;
  background-color: gray;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s ease;
}

.trail div:hover {
  background-color: #ff0000;
}

@media only screen and (max-width: 650px) {
  .trail div {
    padding: 0.2rem;
  }

  .trail {
    /* top: 45%; */
    left: 9%;
    transform: translateX(-50%);
    width: 15%;
    display: grid;
    /* display: flex; */
    grid-template-rows: repeat(4, 1fr);
    gap: 0.75rem;
    text-align: center;
    font-size: 1.5rem;
  }
}

@media only screen and (max-width: 650px) and (min-width: 450px) {
  .right-slide {
    height: 50%;
    position: absolute;
    display: flex;
    flex-direction: row;
    column-gap: 22rem;
    bottom: 20px;
    left: 22vw;
    width: 1000%;
    transition: transform 0.5s ease-in-out;
  }
}

/* Saturday morning code starts */
/* Saturday morning code starts */
/* Saturday morning code starts */
@media only screen and (max-width: 650px) {
  .slider-container {
    position: relative;
    overflow: hidden;
    /* width: 100vw; */
    height: 100vh;
    display: flex;
    justify-content: space-around;
    gap: 5rem;
    /* background-image: url("Slide-bg-m.png"); */
    background-position: top;
    background-repeat: no-repeat;
  }

  .left-slide {
    height: 400vh;
    display: flex;
    position: absolute;
    top: 0vh !important;
    transition: transform 0.5s ease-in-out;
    flex-direction: column-reverse;
    column-gap: 0rem;
    row-gap: 0vh;
    align-content: flex-end;
    justify-content: space-around;
  }

  .right-slide-mobile {
    width: 90%;
  }

  .texts h1 {
    font-size: 1.5625rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    background: #ab64a0;
    background: linear-gradient(to right, #ab64a0 0%, #2eb2c9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-block-start: 0em;
    margin-block-end: 0em;
  }

  .texts {
    width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
  }

  .texts p {
    display: inline-block;
    font-size: 1rem;
    color: #000000;
    margin-bottom: 2rem;
    margin: 0 3rem;
    text-align: center;
  }

  .left-slide>div {
    align-items: center;
    color: #fff;
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
    row-gap: 3rem;
    position: relative;
    top: -15vh;
  }

  .slide {
    display: flex;
  }

  .sld3 h1 {
    /* width: 90%; */
    /* padding: 0 1rem; */
  }

  .left-slide h1 {}

  .right-slide {
    height: 50%;
    position: absolute;
    display: flex;
    flex-direction: row;
    column-gap: 22rem;
    bottom: 20px;
    left: 7%;
    width: 1000%;
    display: none;
    transition: transform 0.5s ease-in-out;
    /* border-radius: 300px 0px 0px 0px; */
    /* background-color: #cbae86; */
  }

  .right-slide-mobile {
    /* display: none; */
  }

  .right-slide>div img {
    height: 100%;
    max-width: 100%;
    /* border-radius: 300px 0px 0px 300px;
	background-color: #cbae86; */
  }

  .slider-container .action-buttons button {
    position: absolute;
    left: 35%;
    top: 50%;
    z-index: 100;
  }

  .slider-container .action-buttons .down-button {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    transform: translateX(-100%);
  }

  .slider-container .action-buttons .up-button {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    transform: translateX(100%);
  }
}

/* Saturday morning code ends */
/* Saturday morning code ends */
/* Saturday morning code ends */