:root {
  --bg: #0d1d3a;
  --mainColor: #f782c2;
  --text: #fff;
  --lightColor: #a3a3a3;
  --font1: "Oswald", sans-serif;
  --font2: "Bebas Neue", sans-serif;
  --font3: "Outfit", sans-serif;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--mainColor) var(--bg);
  scroll-behavior: smooth;
}

body,
html {
  background-color: var(--bg);
}

h2 {
  color: var(--mainColor);
  text-transform: uppercase;
  font-family: var(--font2);
  font-weight: 100;
  font-size: 2.2vw;
  cursor: default;
}

h4,
h5 {
  font-family: var(--font1);
  text-transform: uppercase;
  font-size: 1vw;
  color: var(--lightColor);
}

a {
  text-decoration: none;
  cursor: pointer;
}

@keyframes slideIn {
  to {
    transform: translateX(-6px);
    opacity: 1;
  }
}
@keyframes fromLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fromRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInSecondPhoto {
  to {
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes opacity {
  to {
    opacity: 1;
  }
}
@keyframes fadeInLoop {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInLogo {
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes fromDownForPhone {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fromTopForPhone {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#landing,
.about,
.socials,
.footer,
.collabs {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: row;
}

.divider {
  background-color: var(--bg);
  height: 13vh;
}

.wrapper {
  background-color: var(--bg);
  height: auto;
  width: 100vw;
}
.wrapper #landing .pic_place1_3 {
  flex: 2;
  overflow: hidden;
  position: relative;
}
.wrapper #landing .pic_place1_3 img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translateX(-90px);
  opacity: 0;
  animation: slideIn 0.6s ease-out forwards;
}
.wrapper #landing .pic_place1_3::before {
  content: "";
  width: 6px;
  height: 100%;
  background-color: #f782c2;
  position: absolute;
  top: 0;
  right: 0;
}
.wrapper #landing .wlcm_content > * {
  padding: 1vw;
}
.wrapper #landing .wlcm_content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.wrapper #landing .wlcm_content .title h1 {
  color: var(--text);
  font-family: var(--font1);
  font-size: 3vw;
  opacity: 0;
  transform: translateY(-20px);
  animation: fromTopForPhone 0.6s ease-out forwards !important;
}
.wrapper #landing .wlcm_content .title h4 {
  font-weight: 400;
  letter-spacing: 0.115vw;
  opacity: 0;
  transform: translateY(20px);
  animation: fromDownForPhone 0.6s ease-out forwards !important;
}
.wrapper #landing .wlcm_content .logo {
  align-self: center;
  width: 30vw;
  opacity: 0;
  transform: translateX(100px);
  animation: slideIn 0.6s ease-out forwards;
}
.wrapper #landing .wlcm_content h5 {
  font-weight: 500;
  align-self: flex-end;
}
.wrapper .about .text_area > * {
  padding: 1vw;
}
.wrapper .about .text_area {
  position: relative;
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.wrapper .about .text_area p {
  color: var(--text);
  font-family: var(--font3);
  font-size: 1.3vw;
  text-align: justify;
  width: 70%;
  line-height: 3vw;
  font-weight: 200;
  opacity: 0;
  transform: translateY(40px);
}
.wrapper .about .text_area .heart {
  width: 5vw;
  opacity: 0;
  animation: fadeInLoop 0.5s ease-in-out infinite alternate;
}
.wrapper .about .text_area.in-view p {
  animation: fromDownForPhone 1s ease-out forwards;
}
.wrapper .about .text_area::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  opacity: 1;
  height: 100%;
  background-color: var(--mainColor);
}
.wrapper .about .pic_place2 {
  flex: 1;
}
.wrapper .about .pic_place2 img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transform: translateX(100px);
}
.wrapper .about .pic_place2.in-view img {
  animation: slideInSecondPhoto 1s ease-out forwards;
}
.wrapper .socials {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.wrapper .socials .socials_title {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wrapper .socials .insta_tiktok {
  flex: 3;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
.wrapper .socials .insta_tiktok .left,
.wrapper .socials .insta_tiktok .right {
  height: 100%;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  opacity: 0;
}
.wrapper .socials .insta_tiktok .left {
  transition: background-color 0.3s ease;
}
.wrapper .socials .insta_tiktok .left .tiktok {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.wrapper .socials .insta_tiktok .left .tiktok h1 {
  color: var(--text);
  font-size: 6vw;
  font-family: var(--font3);
  position: absolute;
  top: 20%;
  left: 43%;
  z-index: 15;
  transition: all 0.3s ease;
}
.wrapper .socials .insta_tiktok .left .tiktok h1 span {
  color: transparent;
  -webkit-text-stroke: 1px black;
  transition: all 0.3s ease;
}
.wrapper .socials .insta_tiktok .left .tiktok a {
  display: block;
  height: 100%;
  width: 100%;
}
.wrapper .socials .insta_tiktok .left .tiktok .tiktokMob {
  height: auto;
  overflow: hidden;
  position: absolute;
  width: 12vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.wrapper .socials .insta_tiktok .left .tiktok .text {
  display: flex;
  flex-direction: column;
  color: var(--text);
  text-transform: uppercase;
  font-family: var(--font3);
  gap: 0.5vw;
  position: absolute;
  top: 45%;
  left: 65%;
  transition: all 0.3s ease;
}
.wrapper .socials .insta_tiktok .left .tiktok .text p {
  font-size: 1.2vw;
  font-weight: bold;
  transition: all 0.3s ease;
  z-index: 15;
}
.wrapper .socials .insta_tiktok .left .tiktok .text span {
  color: var(--mainColor);
  transition: color 0.3s ease;
}
.wrapper .socials .insta_tiktok .left .tiktok .text .small_heart {
  width: 1vw;
}
.wrapper .socials .insta_tiktok .left .tiktok .social_logo {
  position: absolute;
  bottom: 5%;
  right: 10%;
  z-index: 0;
  width: 14vw;
  transition: right 0.6s ease;
}
.wrapper .socials .insta_tiktok .right {
  position: relative;
  transition: background-color 0.3s ease;
}
.wrapper .socials .insta_tiktok .right .insta {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.wrapper .socials .insta_tiktok .right .insta h1 {
  color: var(--text);
  font-size: 6vw;
  font-family: var(--font3);
  position: absolute;
  top: 20%;
  left: 15%;
  z-index: 15;
  transition: all 0.3s ease;
}
.wrapper .socials .insta_tiktok .right .insta h1 span {
  color: transparent;
  -webkit-text-stroke: 1px black;
  transition: all 0.3s ease;
}
.wrapper .socials .insta_tiktok .right .insta a {
  display: block;
  height: 100%;
  width: 100%;
}
.wrapper .socials .insta_tiktok .right .insta .instaMob {
  height: auto;
  overflow: hidden;
  position: absolute;
  width: 12vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.wrapper .socials .insta_tiktok .right .insta .text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: var(--text);
  text-transform: uppercase;
  font-family: var(--font3);
  gap: 0.5vw;
  position: absolute;
  top: 45%;
  left: 12%;
  transition: all 0.3s ease;
}
.wrapper .socials .insta_tiktok .right .insta .text p {
  font-size: 1.2vw;
  font-weight: bold;
  transition: all 0.3s ease;
  z-index: 15;
}
.wrapper .socials .insta_tiktok .right .insta .text span {
  color: var(--mainColor);
  transition: color 0.3s ease;
}
.wrapper .socials .insta_tiktok .right .insta .social_logo {
  position: absolute;
  bottom: 5%;
  left: 10%;
  z-index: 0;
  width: 14vw;
  transition: left 0.6s ease;
}
.wrapper .socials .insta_tiktok .left:hover,
.wrapper .socials .insta_tiktok .right:hover {
  background-color: #77133e;
}
.wrapper .socials .insta_tiktok .left:hover h1,
.wrapper .socials .insta_tiktok .right:hover h1 {
  color: var(--bg);
}
.wrapper .socials .insta_tiktok .left:hover p,
.wrapper .socials .insta_tiktok .right:hover p {
  color: var(--bg);
}
.wrapper .socials .insta_tiktok .left:hover .text span,
.wrapper .socials .insta_tiktok .right:hover .text span {
  color: var(--text);
}
.wrapper .socials .insta_tiktok .left:hover h1 span,
.wrapper .socials .insta_tiktok .right:hover h1 span {
  color: var(--bg);
  -webkit-text-stroke: 0px black;
}
.wrapper .socials .insta_tiktok .right:hover .social_logo {
  left: 65%;
}
.wrapper .socials .insta_tiktok .left:hover .social_logo {
  right: 65%;
}
.wrapper .socials .insta_tiktok .right:hover .insta h1 {
  top: 23%;
}
.wrapper .socials .insta_tiktok .left:hover .tiktok h1 {
  top: 23%;
}
.wrapper .socials .insta_tiktok .left:hover .tiktok .text {
  top: 43%;
}
.wrapper .socials .insta_tiktok .right:hover .insta .text {
  top: 43%;
}
.wrapper .socials .insta_tiktok.in-view .left {
  transform: translatex(-40px);
  animation: fromLeft 1s ease-out forwards !important;
}
.wrapper .socials .insta_tiktok.in-view .right {
  transform: translatex(40px);
  animation: fromRight 1s ease-out forwards !important;
}
.wrapper .footer .pic_place1_3 {
  flex: 2;
  overflow: hidden;
  position: relative;
}
.wrapper .footer .pic_place1_3 img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transform: translateX(-94px);
}
.wrapper .footer .pic_place1_3.in-view img {
  animation: slideIn 0.5s ease-out forwards;
}
.wrapper .footer .pic_place1_3::before {
  content: "";
  width: 6px;
  height: 100%;
  background-color: #f782c2;
  position: absolute;
  top: 0;
  right: 0;
}
.wrapper .footer .contact_us {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.wrapper .footer .contact_us .list {
  display: flex;
  flex-direction: column;
  gap: 3vw;
}
.wrapper .footer .contact_us .list ul li {
  color: var(--text);
  font-family: var(--font3);
  font-size: 1vw;
}
.wrapper .footer .contact_us .list ul li:first-child {
  font-family: var(--font2);
  color: var(--mainColor);
  text-transform: uppercase;
  font-weight: 100;
  font-size: 1.3vw;
}
.wrapper .footer .contact_us .list .logo {
  height: 7vw;
  width: 7vw;
  align-self: center;
}
.wrapper .footer .contact_us .list .scrollToTop {
  padding: 0.5vw;
  color: var(--text);
  text-transform: uppercase;
  font-family: var(--font3);
  border: 1px solid var(--mainColor);
  width: auto;
  text-align: center;
  font-weight: 600;
  font-size: 0.85vw;
  transition: all 0.3s ease;
}
.wrapper .footer .contact_us .list .scrollToTop:hover {
  background-color: var(--mainColor);
  color: var(--bg);
  letter-spacing: 0.1vw;
  word-spacing: 0.2vw;
}
.wrapper .footer .contact_us .list .tristoposto {
  text-align: center;
  font-family: var(--font3);
  color: var(--lightColor);
  font-size: 0.6vw;
}
.wrapper .collabs {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wrapper .collabs .title {
  height: 14vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wrapper .collabs .companies {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  opacity: 0;
}
.wrapper .collabs .companies img {
  width: 10vw;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.wrapper .collabs .companies.in-view {
  opacity: 0;
  transform: translateY(40px);
  animation: fromDownForPhone 0.6s ease-out forwards !important;
}

@media only screen and (max-width: 724px) {
  h2 {
    font-size: 7vw;
  }
  @keyframes slideIn {
    to {
      transform: translateX(0px);
      opacity: 1;
    }
  }
  #landing,
  .about,
  .socials,
  .footer,
  .collabs {
    height: 100vh;
    flex-direction: column;
  }
  #landing .pic_place1_3 {
    flex: 1 !important;
    order: 2;
  }
  #landing .pic_place1_3 img {
    -o-object-fit: cover;
       object-fit: cover;
    transform: translateX(-100px);
    border-top: 6px solid var(--mainColor);
    animation: slideIn 0.8s ease-out forwards !important;
  }
  #landing .pic_place1_3::before {
    display: none;
  }
  #landing .wlcm_content > * {
    padding: 3vw !important;
  }
  #landing .wlcm_content {
    order: 1;
  }
  #landing .wlcm_content .title h1 {
    font-size: 10.3vw !important;
  }
  #landing .wlcm_content .title h4 {
    font-size: 4vw;
  }
  #landing .wlcm_content .logo {
    width: 60vw !important;
    transform: translat(80px);
    animation: slideInLogo 0.6s ease-out forwards !important;
  }
  #landing .wlcm_content h5 {
    font-weight: 500;
    align-self: flex-end;
    font-size: 4vw;
    opacity: 0;
    transform: translateY(20px);
    animation: fromDownForPhone 0.6s ease-out forwards !important;
  }
  .about {
    height: auto !important;
    gap: 0vw;
  }
  .about .text_area > * {
    padding: 3vw !important;
  }
  .about .text_area {
    flex: 1 !important;
    gap: 5vw;
    padding: 10vw 0;
  }
  .about .text_area p {
    font-size: 5vw !important;
    width: 100% !important;
    line-height: 8vw !important;
    font-weight: 100 !important;
  }
  .about .text_area .heart {
    width: 15vw !important;
  }
  .about .text_area.in-view p {
    animation: fromDownForPhone 1s ease-out forwards;
  }
  .about .text_area::before {
    display: none;
  }
  .about .pic_place2 {
    border-bottom: 6px solid var(--mainColor);
  }
  .about .pic_place2.in-view img {
    animation: slideInSecondPhoto 0.6s ease-out forwards;
  }
  .socials {
    height: auto !important;
    justify-content: space-around;
  }
  .socials .socials_title {
    flex: none !important;
    padding: 10vw 0;
  }
  .socials .insta_tiktok {
    height: auto !important;
    flex: 3;
    flex-direction: column !important;
    overflow: hidden !important;
  }
  .socials .insta_tiktok .left,
  .socials .insta_tiktok .right {
    height: auto !important;
    width: 100% !important;
  }
  .socials .insta_tiktok .left .tiktok {
    position: relative;
    height: 50vh !important;
    width: 100%;
    overflow: hidden !important;
  }
  .socials .insta_tiktok .left .tiktok h1 {
    color: var(--text);
    font-size: 9vw !important;
    position: absolute;
    top: 20% !important;
    left: 35% !important;
    z-index: 15;
  }
  .socials .insta_tiktok .left .tiktok h1 span {
    color: var(--text) !important;
    -webkit-text-stroke: unset !important;
  }
  .socials .insta_tiktok .left .tiktok a {
    display: block;
    height: 100%;
    width: 100%;
  }
  .socials .insta_tiktok .left .tiktok .tiktokMob {
    height: auto;
    overflow: hidden;
    position: absolute;
    width: 30vw !important;
    top: 13% !important;
    left: 3% !important;
    transform: none !important;
    z-index: 10;
  }
  .socials .insta_tiktok .left .tiktok .text {
    display: flex;
    flex-direction: column;
    color: var(--text);
    text-transform: uppercase;
    font-family: var(--font3);
    gap: 3vw !important;
    position: absolute;
    top: 35% !important;
    left: 36% !important;
  }
  .socials .insta_tiktok .left .tiktok .text p {
    font-size: 4vw !important;
    font-weight: bold;
    z-index: 15;
  }
  .socials .insta_tiktok .left .tiktok .text span {
    color: var(--mainColor);
  }
  .socials .insta_tiktok .left .tiktok .text .small_heart {
    width: 4vw !important;
  }
  .socials .insta_tiktok .left .tiktok .social_logo {
    position: absolute;
    bottom: 8% !important;
    right: 10% !important;
    z-index: 0;
    width: 35vw !important;
  }
  .socials .insta_tiktok .right .insta {
    position: relative;
    height: 50vh !important;
    width: 100%;
  }
  .socials .insta_tiktok .right .insta h1 {
    color: var(--text);
    font-size: 9vw !important;
    position: absolute;
    top: 20% !important;
    left: 11% !important;
    z-index: 15;
  }
  .socials .insta_tiktok .right .insta h1 span {
    color: var(--text) !important;
    -webkit-text-stroke: unset !important;
    transition: none !important;
  }
  .socials .insta_tiktok .right .insta a {
    display: block;
    height: 100%;
    width: 100%;
  }
  .socials .insta_tiktok .right .insta .instaMob {
    height: auto;
    overflow: hidden;
    position: absolute;
    width: 30vw !important;
    top: 13% !important;
    left: unset !important;
    right: 3% !important;
    transform: none !important;
    z-index: 10;
  }
  .socials .insta_tiktok .right .insta .text {
    display: flex;
    flex-direction: column;
    color: var(--text);
    text-transform: uppercase;
    font-family: var(--font3);
    gap: 3vw !important;
    position: absolute;
    top: 35% !important;
    left: 25% !important;
  }
  .socials .insta_tiktok .right .insta .text p {
    font-size: 4vw !important;
    transition: none !important;
    z-index: 15;
  }
  .socials .insta_tiktok .right .insta .text span {
    color: var(--mainColor);
  }
  .socials .insta_tiktok .right .insta .social_logo {
    position: absolute;
    bottom: 8% !important;
    right: unset !important;
    left: 10% !important;
    z-index: 0;
    width: 35vw !important;
    transition: none !important;
  }
  .socials .insta_tiktok .left:hover,
  .socials .insta_tiktok .right:hover {
    background-color: var(--bg) !important;
  }
  .socials .insta_tiktok .left:hover h1,
  .socials .insta_tiktok .right:hover h1 {
    color: var(--text) !important;
  }
  .socials .insta_tiktok .left:hover p,
  .socials .insta_tiktok .right:hover p {
    color: var(--text) !important;
  }
  .socials .insta_tiktok .left:hover .text span,
  .socials .insta_tiktok .right:hover .text span {
    color: var(--mainColor) !important;
  }
  .collabs {
    height: auto !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between !important;
    overflow: hidden !important;
  }
  .collabs .title {
    height: 14vh;
    width: 100%;
  }
  .collabs .companies {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    opacity: 0;
    padding: 10vw 0;
  }
  .collabs .companies img {
    width: 16vw !important;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .footer {
    height: auto !important;
  }
  .footer .pic_place1_3 {
    flex: 1 !important;
    border-top: 6px solid var(--mainColor);
  }
  .footer .pic_place1_3.in-view img {
    animation: slideIn 0.5s ease-out forwards;
  }
  .footer .pic_place1_3::before {
    display: none;
  }
  .footer .contact_us {
    flex: 2 !important;
    height: auto !important;
    padding: 10vw !important;
  }
  .footer .contact_us .list {
    justify-content: space-around;
    gap: 4vw !important;
    height: 100% !important;
    width: 100% !important;
  }
  .footer .contact_us .list ul li {
    font-size: 4vw !important;
  }
  .footer .contact_us .list ul li:first-child {
    font-family: var(--font2);
    color: var(--mainColor);
    text-transform: uppercase;
    font-weight: 100;
    font-size: 4.5vw !important;
  }
  .footer .contact_us .list .logo {
    height: 20vw !important;
    width: 20vw !important;
  }
  .footer .contact_us .list .scrollToTop {
    padding: 2vw !important;
    color: var(--bg) !important;
    background-color: var(--mainColor);
    border: none;
    font-weight: 600;
    font-size: 4.3vw !important;
  }
  .footer .contact_us .list .scrollToTop:hover {
    background-color: var(--mainColor);
    color: var(--bg);
    letter-spacing: 0.1vw;
    word-spacing: 0.2vw;
  }
  .footer .contact_us .list .tristoposto {
    text-align: center;
    font-family: var(--font3);
    color: var(--lightColor);
    font-size: 2.7vw !important;
  }
}/*# sourceMappingURL=styles.css.map */