* {
  font-family: "SF Pro Display", sans-serif;
}

body {
background: #020024;
background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

img {
  max-width: 100%;
  display: block;
}

.text-content {
  margin-right: 50px;
  text-align: right;
  min-width: 900px;
}

.text {
  color: #1d1d1f;
  font-size: 2.5rem;
  margin: 0;
  font-weight: 300;
}

.instagram {
  font-size: 4rem;
  margin: 0;
  background: -moz-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: -webkit-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slide{
  position: relative;
  width: 320px;
  margin: 20px auto;
  display: grid;
  height: 590px;
  padding: 00px 0;
  border-radius: 30px;
  overflow: hidden;
  border: 3px solid #f3ece4;
  outline: 1px solid #ccc;
  background-color: #000;
  box-shadow: 20px 20px 5px 0px rgba(0, 0, 0, 0.3);
}

.slide:after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 30%;
  background-color: #f7f7f7;
  width: 40%;
  height: 2px;
  border-radius: 10px;
}

.slide-items {
  position: relative;
  grid-area: 1/1;
  overflow: hidden;
  border: 6px solid #000;
  border-radius: 30px;
}

.slide-items img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.slide-nav {
  grid-area: 1/1;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
}

.slide-items > * {
  position: absolute;
  top: 0;
  opacity: 0;
  pointer-events: none;
}

.slide-items > .active {
  position: relative;
  opacity: 1;
  poiter-events: initial;
}

.slide-nav button {
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  opacity: 0;
}

.slide-thumb {
  display: flex;
  grid-column: 1/3;
  padding: 0 15px;
}

.slide-thumb > span {
  flex: 1;
  display: block;
  height: 2px;
  background: #afafaf;
  margin: 3px;
  margin-top: 20px;
  border-radius: 3px;
  overflow: hidden;
}

.slide-thumb > span.done:after {
  content: "";
  display: block;
  height: inherit;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 3px;
}

.slide-thumb > span.active:after {

  content: "";
  display: block;
  height: inherit;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  transform: translateX(100%);
  animation: thumb 5s forwards linear;
}

@keyframes thumb {
  to {
    transform: initial;
  }
}
a{text-decoration: none !important;}

.button-32 {
  width: 80px;
  display: flex;
  position: relative;
  top: 11px;
  height: 40px;
  color: #fff !important;
  border: 0;
  font-weight: bold;
  font-size: 16px;
  transition: all 150ms ease-in-out;
  box-shadow: rgba(255, 255, 255, 0.2) 0px 1px 0px 0px inset, rgba(0, 0, 0, 0.9) 0px 0px 0px 1px;
  border-radius: 10px;
  background-color: #111111;
  background-image: radial-gradient(76% 151% at 52% -52%, rgba(255, 255, 255, 0.23) 0%, transparent 100%);
}

.button-32:hover {
  filter: brightness(1.1);
}

.button-32:active {
  transform: scale(.95);
}

