@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
.drawSquare {
  width: 40px;
  height: 40px;
  background: #fff;
}

.drawCircle {
  width: 40px;
  height: 40px;
  background: #f00;
  border-radius: 50%;
}

.drawTriangle:after {
  content: "";
  width: 0;
  height: 0;
  border-bottom: 40px solid #f00;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
}
.drawTriangle:after {
  display: block;
  margin: auto;
}

* {
  box-sizing: border-box;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  border: 0;
}

.animeDefault {
  -webkit-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

html,
body {
  margin: 0;
  padding: 0;
  font-size: 62.5%;
  line-height: 1.2;
  -webkit-text-size-adjust: 100%;
  color: #fff;
  text-align: center;
  scroll-behavior: smooth;
  background: #fff;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  overflow: hidden;
}

img, video {
  max-width: 100%;
  height: auto;
  border-style: none;
  display: block;
}

p, span {
  font-size: 1.4rem;
  color: #fff;
  font-weight: normal;
  font-optical-sizing: auto;
  letter-spacing: 0.6px;
}

b {
  font-weight: bold;
}

h1 {
  font-size: 4.8rem;
  font-weight: 900;
}
@media screen and (max-width: 1024px) {
  h1 {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 720px) {
  h1 {
    font-size: 2.4rem;
  }
}

h2 {
  font-size: 3.6rem;
  font-weight: 900;
  margin-top: 0;
}
@media screen and (max-width: 1024px) {
  h2 {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 720px) {
  h2 {
    font-size: 2.4rem;
  }
}

.ctaContainer {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #59ED46;
  transform: translate(6px, 6px);
  display: inline-block;
  position: relative;
}
.ctaContainer::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #030018;
}
.ctaContainer .cta, .ctaContainer::after {
  border: solid 4px #030018;
}
.ctaContainer .cta {
  background-color: #04A1D2;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  padding: 12px;
  z-index: 1;
  -webkit-transition: 0.1s ease-in-out;
  -ms-transition: 0.1s ease-in-out;
  -o-transition: 0.1s ease-in-out;
  -moz-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
  transform: translate(-6px, -6px);
}
@media screen and (max-width: 1024px) {
  .ctaContainer .cta {
    padding: 12px;
  }
}
.ctaContainer .cta.pink {
  background-color: #FF268D;
}
.ctaContainer .cta.green {
  background-color: #59ED46;
}
.ctaContainer .cta.blue {
  background-color: #00CAC7;
}
.ctaContainer .cta.dark {
  background-color: #030018;
}
.ctaContainer .cta span {
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .ctaContainer .cta span {
    font-size: 1.4rem;
  }
}
.ctaContainer .cta.typoLight span {
  color: #fff;
}
.ctaContainer .cta.typoDark span {
  color: #030018;
}
.ctaContainer .cta img, .ctaContainer .cta span {
  display: inline-block;
  vertical-align: middle;
}
.ctaContainer .cta img {
  margin-right: 8px;
}
.ctaContainer .cta:active {
  transform: translate(0, 0);
}
.ctaContainer .cta::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0%;
  background-color: #fff;
  z-index: -1;
  -webkit-transition: 0.1s ease-in-out;
  -ms-transition: 0.1s ease-in-out;
  -o-transition: 0.1s ease-in-out;
  -moz-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
}
.ctaContainer .cta.hoverIsPink::after {
  background-color: #FF268D;
}
.ctaContainer .cta.hoverIsGreen::after {
  background-color: #59ED46;
}
.ctaContainer .cta.hoverIsBlue::after {
  background-color: #00CAC7;
}
.ctaContainer .cta.hoverIsDark::after {
  background-color: #030018;
}
.ctaContainer .cta.hoverIsYellow::after {
  background-color: #FEB81C;
}
.ctaContainer .cta:hover::after {
  width: 100%;
}
.ctaContainer .cta.ctaRS {
  padding: 0;
}
.ctaContainer .cta.ctaRS.instagram {
  background: #d6249f;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.ctaContainer .cta.ctaRS.discord {
  background-color: #5865F2;
}
.ctaContainer .cta.ctaRS.youtube {
  background-color: #FF0000;
}
.ctaContainer .cta.ctaRS.linkedin {
  background-color: #0A66C2;
}
.ctaContainer .cta.ctaRS.tiktok {
  background: #FE2B55;
}
.ctaContainer .cta.ctaRS img {
  margin: 0;
}

.customCheckContainer {
  display: block;
  position: relative;
  padding-left: 48px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 1.6rem;
  font-style: italic;
  line-height: 2rem;
  text-align: left;
  margin-top: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 500px;
  /* Hide the browser's default checkbox */
  /* On mouse-over, add a grey background color */
  /* Create a custom checkbox */
  /* When the checkbox is checked, add a blue background */
}
@media screen and (max-width: 1024px) {
  .customCheckContainer {
    max-width: 480px;
    font-size: 1.4rem;
  }
}
.customCheckContainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.customCheckContainer:hover input ~ .checkmark {
  background-color: #FEB81C;
}
.customCheckContainer .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 32px;
  width: 32px;
  background-color: #fff;
  transform-style: preserve-3d;
  border: solid 4px #030018;
  /* Create the checkmark/indicator (hidden when not checked) */
  /* shadow */
}
.customCheckContainer .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  /* Style the checkmark/indicator */
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid #030018;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.customCheckContainer .checkmark::before {
  content: "";
  display: block;
  position: absolute;
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
  transform: translate(6px, 6px) translateZ(-1px);
  background-color: #030018;
}
.customCheckContainer input:checked ~ .checkmark {
  background-color: #59ED46;
  /* Show the checkmark when checked */
}
.customCheckContainer input:checked ~ .checkmark::after {
  display: block;
}

.feedbackForm {
  display: block;
}
.feedbackForm span {
  display: block;
  color: #030018;
  font-weight: bold;
  font-size: 1.8rem;
}
.feedbackForm span.error {
  color: #FF268D;
}
.feedbackForm span.valid {
  color: #59ED46;
  font-size: 2.4rem;
  margin-top: 16px;
}

.darkBorderAndShadow {
  transform-style: preserve-3d;
}
.darkBorderAndShadow, .darkBorderAndShadow::after {
  border: solid 4px #030018;
}
.darkBorderAndShadow::after {
  content: "";
  display: block;
  position: absolute;
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
  transform: translate(6px, 6px) translateZ(-1px);
  background-color: #030018;
}

.dotsEffect {
  position: absolute;
  width: 400px;
  z-index: 5;
}
@media screen and (max-width: 1024px) {
  .dotsEffect {
    width: 300px;
  }
}
@media screen and (max-width: 720px) {
  .dotsEffect {
    width: 200px;
  }
}

menu {
  position: fixed;
  left: 0;
  right: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  background-color: #fff;
  height: 72px;
  padding: 8px 64px 0;
  box-shadow: 0 12px 0 #030018;
  z-index: 100;
}
@media screen and (max-width: 1024px) {
  menu {
    padding: 8px 16px 0;
  }
}
menu .menuLeftContainer a {
  position: relative;
  display: block;
  z-index: 10;
}
menu .menuLeftContainer a:active {
  transform: scale(0.95);
}
menu .menuLeftContainer a .logo {
  z-index: 2;
  position: relative;
}
menu .menuLeftContainer a .logoEffect {
  position: absolute;
  max-width: none;
  width: 244px;
  top: -28px;
  left: -20px;
  z-index: 1;
  transform: scale(0);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
menu .menuLeftContainer:hover .logoEffect {
  transform: scale(1);
}
menu .menuRightContainer {
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
menu .menuRightContainer .ctaContainer {
  height: 60px;
}
menu .menuRightContainer .ctaContainer.ctaNoIconContainer .cta {
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  padding: 0 24px;
  height: 100%;
}
menu .menuRightContainer .ctaContainer.ctaIconContainer {
  width: 60px;
}
menu .menuRightContainer .ctaContainer .cta.ctaRS {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
menu .menuRightContainer .ctaContainer .cta.ctaRS img {
  width: 100%;
  height: 100%;
}
menu .mainMenuMobil {
  width: 40px;
  height: 40px;
  position: relative;
  margin-top: 8px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
menu .mainMenuMobil span, menu .mainMenuMobil::after, menu .mainMenuMobil::before {
  content: "";
  display: block;
  background-color: #fff;
  height: 4px;
  width: auto;
  opacity: 1;
  box-shadow: 4px 4px 0 #030018;
  border: solid 4px #030018;
  box-sizing: content-box;
  transition: 0.3s ease-in-out;
  backdrop-filter: blur(0px);
  position: relative;
}
menu .mainMenuMobil::after {
  z-index: 1;
}

@media screen and (max-width: 740px) {
  menu .menuLeftContainer a img {
    width: 172px;
  }
  menu .menuRightContainer {
    position: fixed;
    left: 0;
    top: 0px;
    bottom: 0;
    right: 0;
    justify-content: center;
    display: grid;
    align-content: center;
    grid-template-rows: repeat(1, 60px);
    grid-template-columns: repeat(4, 60px);
    align-items: center;
    justify-items: stretch;
    transition: 0.3s ease-in-out;
    transform: translateX(100%);
    background: rgba(137, 43, 226, 0);
    padding-top: 0;
  }
  menu .menuRightContainer .ctaNoIconContainer {
    grid-column: span 4;
  }
  menu .menuRightContainer .ctaNoIconContainer .cta {
    justify-content: center;
  }
  menu .mainMenuMobil {
    display: flex;
  }

  .responsiveMenuOpen {
    overflow: hidden;
  }
  .responsiveMenuOpen .menuRightContainer {
    background: blueviolet;
    transform: translateX(0);
  }
  .responsiveMenuOpen .mainMenuMobil span {
    opacity: 0;
  }
  .responsiveMenuOpen .mainMenuMobil::before {
    transform: translate(0%, 90%) rotate(-45deg);
    box-shadow: -4px 4px 0 #030018;
  }
  .responsiveMenuOpen .mainMenuMobil::after {
    transform: translate(0%, -145%) rotate(45deg);
  }
}
.pressPage {
  background: #00CAC7;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  padding: 16px;
  padding-top: calc(16px + 72px);
}
.pressPage h1 {
  position: relative;
  color: #030018;
  margin: 32px auto;
}
.pressPage .pressItemsContainer {
  display: flex;
  justify-content: center;
  column-gap: 24px;
  row-gap: 48px;
  flex-wrap: wrap;
}
.pressPage .pressItemsContainer .pressContainer {
  width: 460px;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 720px) {
  .pressPage .pressItemsContainer .pressContainer {
    width: auto;
    max-width: 92%;
  }
}
.pressPage .pressItemsContainer .pressContainer .pressTextContainer {
  position: relative;
}
.pressPage .pressItemsContainer .pressContainer .pressTextContainer .pressTextContent {
  height: 135px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  padding-bottom: 44px;
}
.pressPage .pressItemsContainer .pressContainer .pressTextContainer .pressTextContent h2 {
  color: #030018;
  font-weight: 900;
}
.pressPage .pressItemsContainer .pressContainer .pressTextContainer .pressTextContent p {
  color: #030018;
  font-size: 2.4rem;
  font-weight: 700;
}
.pressPage .pressItemsContainer .pressContainer .pressTextContainer .gameTextBtn {
  position: absolute;
  bottom: -36px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 16px;
}
.pressPage .miniContact {
  margin: 32px auto;
  margin-top: 64px;
}

.homeGamesContainer {
  background: #00CAC7;
  min-height: 100vh;
  padding: 112px 0 72px;
  overflow: hidden;
  display: flex;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.homeGamesContainer h1 {
  position: relative;
  width: 100%;
  color: #030018;
  margin-top: 80px;
}
@media screen and (max-width: 1400px) {
  .homeGamesContainer h1 {
    margin-top: 64px;
  }
}
@media screen and (max-width: 1024px) {
  .homeGamesContainer h1 {
    margin-top: 32px;
  }
}
@media screen and (max-width: 720px) {
  .homeGamesContainer h1 {
    margin-top: 24px;
  }
}
.homeGamesContainer .dotsEffect {
  position: absolute;
  transform: scale(0.75);
  z-index: 0;
}
.homeGamesContainer .dotsEffect.dotsLeft {
  left: -158px;
  bottom: -58px;
}
@media screen and (max-width: 1400px) {
  .homeGamesContainer .dotsEffect.dotsLeft {
    left: -238px;
  }
}
@media screen and (max-width: 1024px) {
  .homeGamesContainer .dotsEffect.dotsLeft {
    left: -152px;
  }
}
@media screen and (max-width: 720px) {
  .homeGamesContainer .dotsEffect.dotsLeft {
    left: -116px;
  }
}
.homeGamesContainer .dotsEffect.dotsRight {
  right: -158px;
  top: 52px;
}
@media screen and (max-width: 1400px) {
  .homeGamesContainer .dotsEffect.dotsRight {
    right: -238px;
  }
}
@media screen and (max-width: 1024px) {
  .homeGamesContainer .dotsEffect.dotsRight {
    right: -152px;
  }
}
@media screen and (max-width: 720px) {
  .homeGamesContainer .dotsEffect.dotsRight {
    right: -116px;
    top: 64px;
  }
}
.homeGamesContainer .homeGamesContent {
  display: flex;
  gap: 56px;
  flex-direction: column;
  width: 1244px;
  max-width: 92%;
}
@media screen and (max-width: 1400px) {
  .homeGamesContainer .homeGamesContent {
    width: 948px;
  }
}
.homeGamesContainer .homeGamesContent .gameContainer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .homeGamesContainer .homeGamesContent .gameContainer {
    grid-template-columns: 1fr;
    width: 460px;
    max-width: 100%;
    margin: auto;
  }
}
.homeGamesContainer .homeGamesContent .gameContainer .gamePicture {
  overflow: hidden;
}
.homeGamesContainer .homeGamesContent .gameContainer .gamePicture img {
  object-fit: cover;
  height: 101%;
  width: 101%;
}
.homeGamesContainer .homeGamesContent .gameContainer .gameTextContainer {
  position: relative;
}
.homeGamesContainer .homeGamesContent .gameContainer .gameTextContainer .gameTextContent {
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  height: 100%;
}
.homeGamesContainer .homeGamesContent .gameContainer .gameTextContainer .gameTextContent p {
  text-align: justify;
  color: #030018;
  font-size: 2.4rem;
  padding: 32px;
}
@media screen and (max-width: 1400px) {
  .homeGamesContainer .homeGamesContent .gameContainer .gameTextContainer .gameTextContent p {
    font-size: 2rem;
    padding-bottom: 64px;
  }
}
.homeGamesContainer .homeGamesContent .gameContainer .gameTextContainer .gameTextBtn {
  position: absolute;
  bottom: -36px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.transitionAfterGamesContainer {
  background-color: #00CAC7;
}

.bannTurboSoda {
  position: relative;
}
.bannTurboSoda:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #00CAC7;
}
.bannTurboSoda .imgBannMD {
  display: none;
}
.bannTurboSoda .imgBannSD {
  display: none;
}
@media screen and (max-width: 1024px) {
  .bannTurboSoda .imgBannHD {
    display: none;
  }
  .bannTurboSoda .imgBannMD {
    display: block;
  }
  .bannTurboSoda .imgBannSD {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .bannTurboSoda .imgBannHD {
    display: none;
  }
  .bannTurboSoda .imgBannMD {
    display: none;
  }
  .bannTurboSoda .imgBannSD {
    display: block;
  }
}

.miniAbout_section {
  background-color: #fff;
  padding: 40px;
  position: relative;
}
@media screen and (max-width: 720px) {
  .miniAbout_section {
    padding: 16px;
  }
}
.miniAbout_section .content {
  width: 730px;
  max-width: 100%;
  margin: auto;
}
.miniAbout_section .content .logoHome {
  width: 600px;
  margin: 0 auto 16px;
}
.miniAbout_section .content h1 {
  color: #030018;
  margin: 16px auto;
  line-height: 4.4rem;
}
@media screen and (max-width: 1024px) {
  .miniAbout_section .content h1 {
    line-height: 4rem;
  }
}
@media screen and (max-width: 720px) {
  .miniAbout_section .content h1 {
    line-height: 2.4rem;
    margin: 16px 0 4px;
  }
}
.miniAbout_section .content p {
  font-size: 2.4rem;
  color: #030018;
  margin: auto;
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .miniAbout_section .content p {
    font-size: 2rem;
  }
}

.miniTeamContainer {
  position: relative;
  margin-top: 140px;
}
@media screen and (max-width: 720px) {
  .miniTeamContainer {
    margin-top: 40px;
  }
}
.miniTeamContainer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  bottom: 88px;
  background-color: #00CAC7;
  transform: skewY(5deg) translateX(10vw);
}
@media screen and (max-width: 1024px) {
  .miniTeamContainer::before {
    bottom: 64px;
  }
}
@media screen and (max-width: 720px) {
  .miniTeamContainer::before {
    transform: skewY(5deg);
  }
}
.miniTeamContainer .miniTeamContent {
  position: relative;
  padding: 64px;
}
@media screen and (max-width: 1024px) {
  .miniTeamContainer .miniTeamContent {
    padding: 32px;
  }
}
@media screen and (max-width: 720px) {
  .miniTeamContainer .miniTeamContent {
    margin-top: 24px;
  }
}
.miniTeamContainer .miniTeamContent h1 {
  color: #030018;
}
.miniTeamContainer .miniTeamContent .teamPresentationContainer {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 0 0 40px 0;
}
@media screen and (max-width: 1024px) {
  .miniTeamContainer .miniTeamContent .teamPresentationContainer {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-areas: "b a" "b c";
    gap: 16px;
    margin-top: 16px;
  }
  .miniTeamContainer .miniTeamContent .teamPresentationContainer .blockA {
    grid-area: a;
    align-self: end;
  }
  .miniTeamContainer .miniTeamContent .teamPresentationContainer .blockB {
    grid-area: b;
    align-self: stretch;
  }
  .miniTeamContainer .miniTeamContent .teamPresentationContainer .blockC {
    grid-area: c;
    align-self: start;
  }
}
@media screen and (max-width: 720px) {
  .miniTeamContainer .miniTeamContent .teamPresentationContainer {
    display: flex;
    flex-wrap: wrap;
    margin-top: 0;
  }
  .miniTeamContainer .miniTeamContent .teamPresentationContainer .blockA {
    order: 2;
  }
  .miniTeamContainer .miniTeamContent .teamPresentationContainer .blockB {
    order: 1;
  }
  .miniTeamContainer .miniTeamContent .teamPresentationContainer .blockC {
    order: 3;
  }
}
.miniTeamContainer .miniTeamContent .teamPresentationContainer .teamDescriptionContainer {
  background-color: #fff;
  padding: 16px;
  width: 290px;
}
@media screen and (max-width: 720px) {
  .miniTeamContainer .miniTeamContent .teamPresentationContainer .teamDescriptionContainer {
    width: 402px;
    max-width: 100%;
  }
}
.miniTeamContainer .miniTeamContent .teamPresentationContainer .teamDescriptionContainer .teamDescriptionContent h2 {
  color: #030018;
}
.miniTeamContainer .miniTeamContent .teamPresentationContainer .teamDescriptionContainer .teamDescriptionContent p {
  font-size: 1.6rem;
  color: #030018;
}

.followNews_section {
  background-color: #00CAC7;
  padding: 96px;
  color: #030018;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .followNews_section {
    padding: 60px;
  }
}
@media screen and (max-width: 720px) {
  .followNews_section {
    padding: 40px 24px;
  }
}
.followNews_section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transform: skewY(5deg) translateX(8vw);
}
@media screen and (max-width: 720px) {
  .followNews_section::before {
    transform: skewY(5deg);
  }
}
.followNews_section .formContainer {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: auto;
}
.followNews_section .formContainer h2 {
  text-align: left;
}
.followNews_section .formContainer .formMail {
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 720px) {
  .followNews_section .formContainer .formMail {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: 0;
    align-items: center;
  }
}
.followNews_section .formContainer .formMail input {
  font-size: 2rem;
  height: 100%;
  position: relative;
  padding: 28px 20px;
  width: 320px;
}
@media screen and (max-width: 1024px) {
  .followNews_section .formContainer .formMail input {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 720px) {
  .followNews_section .formContainer .formMail input {
    width: auto;
  }
}
@media screen and (max-width: 480px) {
  .followNews_section .formContainer .formMail input {
    padding: 28px 8px;
    max-width: 48vw;
  }
}
.followNews_section .formContainer .formMail input:focus, .followNews_section .formContainer .formMail input:focus-visible {
  border: 0;
  outline: 0;
  background-color: rgba(255, 38, 141, 0.15);
}
.followNews_section .formContainer .formMail .ctaContainer {
  margin: 0 16px;
  transform: translateY(0px);
}
@media screen and (max-width: 720px) {
  .followNews_section .formContainer .formMail .ctaContainer {
    margin: 0px 8px;
    transform: translateY(4px);
  }
}
.followNews_section .dotsEffect.dotsPink {
  left: 78.5vw;
  bottom: -280px;
}
@media screen and (max-width: 1024px) {
  .followNews_section .dotsEffect.dotsPink {
    left: 85vw;
    bottom: -249px;
  }
}
@media screen and (max-width: 720px) {
  .followNews_section .dotsEffect.dotsPink {
    left: 88vw;
    bottom: -158px;
  }
}

.contact_section {
  background-color: #00CAC7;
  padding: 160px 40px 100px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 720px) {
  .contact_section {
    padding: 80px 24px 56px;
  }
}
.contact_section .dotsEffect.dotsGreen {
  right: 81vw;
  bottom: -196px;
}
@media screen and (max-width: 1024px) {
  .contact_section .dotsEffect.dotsGreen {
    right: 79vw;
    bottom: -91px;
  }
}

/*# sourceMappingURL=style.css.map */
