@charset "UTF-8";
/* Variables */
/* Colors */
/* Fonts */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/poppins/v15/xyz.woff2") format("woff2");
}

@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bebasneue/v12/abc.woff2") format("woff2");
}

/* Custom Styles */
h2 {
  color: #fff;
  font-size: 60px;
  font-family: "Bebas Neue";
  z-index: 1;
  position: relative;
}

.under-h2 {
  color: #9189AF;
  font-size: 20px;
  margin-top: 10px;
  z-index: 1;
  text-align: center;
  padding: 0 30px;
  box-sizing: border-box;
  line-height: 30px;
  font-weight: 300;
}

.sweet-container {
  width: 1100px;
  padding: 0 50px;
  box-sizing: border-box;
}

/*** HOME ***/
/* Header */
html {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  background: #0b061a;
  font-family: "Poppins";
  color: #fff;
  scroll-behavior: smooth;
  transition: 500ms all;
}

* {
  scroll-margin-top: 100px;
}

body {
  scroll-behavior: smooth;
}

.sweet-header {
  height: 200px;
  position: relative;
}

.bg-header {
  position: absolute;
  top: 0;
  width: 100%;
  opacity: 1;
  z-index: 0;
}

.header-left, .header-right {
  width: 500px;
  text-transform: uppercase;
  display: flex;
  grid-gap: 50px;
  align-items: center;
  justify-content: center;
  height: 200px;
}

.header-left .header-item, .header-right .header-item {
  font-size: 22px;
  font-family: "Bebas Neue";
  color: #fff;
}

.header-left .header-item.book, .header-right .header-item.book {
  border: 1px solid #fff;
  padding: 10px 20px;
  border-radius: 5px;
}

.mobile-menu, .mobile-contact {
  display: none;
}

.mobile-overlay {
  display: none;
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  background: rgba(3, 3, 41, 0.9);
  z-index: 5;
}

.mobile-items {
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
}

.mobile-items a {
  color: #fff;
  text-align: center;
  font-size: 42px;
  font-family: "Bebas Neue";
}

.mobile-items a:last-child {
  color: #FFBA39;
}

.mobile-items a:hover {
  opacity: 0.8;
}

.close-menu {
  position: absolute;
  right: 30px;
  top: 30px;
  cursor: pointer;
}

.close-menu:hover {
  opacity: 0.8;
}

.close-menu img {
  width: 40px;
}

.header-logo {
  width: 200px;
}

.header-logo img {
  width: 100%;
}

.header-logo-thanks {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.header-logo-thanks img {
  margin-top: -150px;
  width: 250px;
}

.message-sent {
  text-align: center;
  color: #9189AF;
  font-size: 18px;
  line-height: 28px;
  margin-top: 00px;
}

.max-width-1920 {
  background: #0e0825;
}

/* Hero */
.sweet-hero {
  z-index: 1;
  margin-top: 150px;
  width: 920px;
}

.sweet-hero h1 {
  font-family: "Bebas Neue";
  color: #fff;
  font-size: 100px;
  align-self: self-start;
}

.sweet-hero h1 strong {
  color: #FFBA39;
  font-weight: 500;
}

.sweet-hero .hero-text {
  width: 600px;
  align-self: self-end;
  color: #9189AF;
  font-size: 20px;
  font-weight: 300;
  line-height: 34px;
  margin-top: -50px;
}

.sweet-hero .hero-button {
  margin-top: 80px;
  background: #FFBA39;
  height: 75px;
  width: 300px;
  border-radius: 10px;
  margin-left: -100px;
  display: flex;
  font-family: "Bebas Neue";
  color: #5F4009;
  font-size: 26px;
  padding-left: 50px;
  box-sizing: border-box;
  position: relative;
}

.sweet-hero .hero-button:hover {
  opacity: 0.8;
}

.sweet-hero .hero-button img {
  position: absolute;
  right: 40px;
}

/* Scenarios */
.sweet-scenarios {
  margin-top: 250px;
  width: 100%;
}

.title-center {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.title-scenarios::before {
  content: "";
  position: absolute;
  top: -70px;
  width: 40px;
  background-image: url(../assets/images/murder.svg);
  height: 40px;
  background-size: 40px;
}

.title-investigations::before {
  content: "";
  position: absolute;
  top: -70px;
  width: 40px;
  background-image: url(../assets/images/scenarios.svg);
  height: 40px;
  background-size: 40px;
}

.scenarios-container {
  margin-top: 80px;
  display: flex;
  width: 100%;
  padding: 0 80px;
  box-sizing: border-box;
  grid-gap: 40px;
  align-items: center;
  justify-content: center;
}

.scenarios-item {
  max-width: 450px;
  height: 600px;
  padding-bottom: 40px;
  background: #1c1637;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.scenarios-item.upcoming .s-item-description {
  margin-top: 20px;
}

.s-item-image {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.s-item-image img {
  height: 230px;
  width: 100%;
  object-fit: cover;
  transition: 150ms all;
}

.s-item-image:hover .play-button {
  opacity: 1;
}

.s-item-image:hover .s-item-img {
  opacity: 0.5;
}

.play-button {
  position: absolute;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  z-index: 5;
  opacity: 0;
}

.play-button img {
  width: 80px;
  height: 80px !important;
}

.voir-trailer {
  display: none;
}

.s-item-title {
  margin-top: 25px;
  font-size: 30px;
  color: #fff;
  font-family: "Bebas Neue";
}

.s-item-details {
  display: flex;
  grid-gap: 50px;
  margin-top: 15px;
}

.s-item-details div {
  font-size: 18px;
  position: relative;
  padding-left: 20px;
  box-sizing: border-box;
}

.s-item-details div::before {
  content: "";
  position: absolute;
  left: -15px;
}

.s-item-details div.s-item-duration::before {
  background-image: url(../assets/images/duration.svg);
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
}

.s-item-details div.s-item-players::before {
  background-image: url(../assets/images/players.svg);
  background-size: 28px 28px;
  width: 28px;
  height: 28px;
  margin-top: -5px;
  margin-left: -5px;
}

.s-item-description {
  font-size: 18px;
  font-weight: 300;
  padding: 0 35px;
  max-width: 450px;
  margin-top: 30px;
  color: #9189AF;
  text-align: center;
  line-height: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  /* limit to 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.s-item-button {
  background: #FFBA39;
  min-height: 60px;
  width: 200px;
  display: flex;
  align-items: center;
  font-family: "Bebas Neue";
  text-transform: uppercase;
  color: #5F4009;
  border-radius: 5px;
  padding: 0 30px;
  font-size: 24px;
  margin-top: auto;
  position: relative;
}

.s-item-button img {
  width: 14px;
  margin-top: -2px;
  position: absolute;
  right: 30px;
}

.coming-soon {
  color: #ffba39;
  font-size: 20px;
}

.upcoming img {
  width: 20px;
  margin-bottom: 20px;
}

/* Pour qui */
.sweet-target {
  margin-top: 250px;
  grid-gap: 30px;
}

.title-left {
  align-self: self-start;
}

.target-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

.target-row:first-of-type {
  margin-top: 80px;
}

.target-item {
  width: 100%;
  padding: 40px;
  box-sizing: border-box;
  border: 1px solid #50486A;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 80px;
}

.target-item.target-image {
  border: none;
  padding: 0;
}

.target-item.target-image img {
  height: 100%;
  position: absolute;
  border-radius: 10px;
}

.target-item.target-image img.img-left {
  right: 0;
}

.target-title {
  font-family: "Bebas Neue";
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.target-icon {
  position: absolute;
  right: 25px;
}

.target-icon img {
  width: 30px;
}

.target-text {
  font-size: 18px;
  font-weight: 300;
  color: #9189AF;
  line-height: 30px;
}

/* Où et quand */
.sweet-where {
  margin-top: 250px;
}

.bg-where {
  position: absolute;
  right: 0;
}

.bg-where img {
  width: 700px;
}

.where-container {
  display: flex;
  flex-direction: column;
  margin-top: 80px;
  grid-gap: 70px;
  z-index: 1;
  position: relative;
}

.where-item-wrapper {
  border-radius: 10px;
  margin-right: auto;
}

.where-item-wrapper:last-of-type {
  margin-right: inherit;
  margin-left: auto;
}

.where-item {
  width: 700px;
  border: 1px solid #50486A;
  padding: 40px;
  border-radius: 10px;
}

.where-title-container {
  display: flex;
  grid-gap: 30px;
  align-items: center;
}

.where-title {
  font-family: "Bebas Neue";
  color: #fff;
  text-transform: uppercase;
  font-size: 26px;
}

.where-location {
  display: flex;
  grid-gap: 25px;
  justify-content: center;
  align-items: center;
  line-height: 22px;
}

.where-location p {
  font-family: "Poppins";
  color: #ffffff;
  font-size: 18px;
}

.where-location img {
  width: 30px;
}

.where-text {
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
  color: #9189AF;
  margin-top: 40px;
}

.where-button {
  background: #FFBA39;
  height: 60px;
  width: 200px;
  display: flex;
  align-items: center;
  font-family: "Bebas Neue";
  text-transform: uppercase;
  color: #5F4009;
  border-radius: 5px;
  padding: 0 30px;
  font-size: 24px;
  margin-top: 50px;
  position: relative;
}

.where-button img {
  width: 14px;
  margin-top: -2px;
  position: absolute;
  right: 30px;
}

/* FAQ */
.sweet-faq {
  margin-top: 250px;
  position: relative;
  width: 100%;
}

.faq-bg {
  width: 100%;
  position: absolute;
  top: 0;
}

.faq-bg img {
  width: 100%;
}

.faq-container {
  margin-top: 80px;
  grid-gap: 25px;
}

.faq-item {
  width: 100%;
  border: 1px solid #50486A;
  z-index: 1;
  padding: 30px;
  border-radius: 10px;
  position: relative;
  box-sizing: border-box;
}

.faq-item-question {
  color: #fff;
  text-transform: uppercase;
  font-size: 28px;
  font-family: "Bebas Neue";
}

.faq-item-answer {
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
  color: #9189AF;
  margin-top: 40px;
  max-width: 750px;
  display: none;
}

.faq-item-answer p {
  margin-bottom: 30px;
}

.faq-item-answer p:last-child {
  margin-bottom: 0;
}

.faq-arrow {
  width: 50px;
  position: absolute;
  right: 30px;
  top: 20px;
}

.faq-arrow img {
  width: 100%;
}

.faq-item.open .faq-item-answer {
  display: block;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

/* Footer */
.sweet-footer {
  width: 100%;
  background: #2B2443;
  min-height: 800px;
  margin-top: 300px;
  padding: 150px 0;
  z-index: 1;
}

.footer-text {
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
  color: #9189AF;
  margin-top: 40px;
}

.footer-title {
  font-family: "Bebas Neue";
  font-size: 72px;
}

.footer-contact {
  margin-top: 80px;
  display: grid;
  grid-template-columns: auto 250px;
  grid-gap: 60px;
}

.name {
  grid-area: nom;
}

.email {
  grid-area: email;
}

.sujet {
  grid-area: sujet;
}

.date {
  grid-area: date;
}

.message {
  grid-area: message;
}

.footer-form {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px;
  grid-template-areas: "nom email"
 "sujet date"
 "message message";
}

.footer-form input {
  height: 60px;
  background: #3E355B;
  border-radius: 5px;
  border: none;
  padding: 0 20px;
  color: #fff;
  font-family: "Poppins";
  font-size: 16px;
  font-weight: 300;
  color-scheme: dark;
}

.footer-form input::placeholder {
  color: #9189AF;
}

.footer-form textarea {
  height: 350px;
  background: #3E355B;
  border-radius: 5px;
  border: none;
  color: #fff;
  font-family: "Poppins";
  font-size: 16px;
  font-weight: 300;
  padding: 20px;
}

.footer-form textarea::placeholder {
  color: #9189AF;
}

.footer-form input[type="submit"] {
  background: #FFBA39;
  height: 60px;
  width: 250px;
  display: flex;
  align-items: center;
  font-family: "Bebas Neue";
  text-transform: uppercase;
  color: #5F4009;
  border-radius: 5px;
  padding: 0 30px;
  font-size: 24px;
  margin-top: 20px;
  position: relative;
  border: none;
  cursor: pointer;
}

.footer-form input[type="submit"]:hover {
  opacity: 0.8;
}

.footer-form input[type="submit"]::before {
  content: "";
  background-image: url(../assets/images/send.svg);
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  position: absolute;
  right: 30px;
}

@keyframes blink {
  0% {
    background-color: #FFBA39;
  }
  50% {
    background-color: transparent;
  }
  100% {
    background-color: #FFBA39;
  }
}

.blink-effect {
  animation: blink 0.45s ease-in-out 4;
}

.footer-info {
  grid-gap: 20px;
}

.footer-info div {
  position: relative;
  font-size: 18px;
  display: flex;
  grid-gap: 30px;
  align-items: center;
}

/* Bottom */
.sweet-bottom {
  height: 70px;
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0E0825;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
}

.social {
  display: flex;
  grid-gap: 20px;
}

.social img {
  width: 42px;
}

/* Article Page */

.article-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 4;
  margin-top: 60px;
}

.article-title {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.article-type {
  margin-bottom: 20px;
}

.article-type a {
  background: #FFBA39;
  font-family: "Bebas Neue";
  font-size: 20px;
  text-transform: uppercase;
  color: #5F4009;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 15px;
  line-height: normal;
}
 
.article-title {
  font-family: "Bebas Neue";
  font-size: 72px;
  text-transform: uppercase;
  max-width: 720px;
  margin: 10px 0;
}

.article-date {
  margin-top: 10px;
  color: #9189AF;
  font-size: 18px;
}

.article-poster {
  border-radius: 15px;
  overflow: hidden;
  margin-top: 50px;
  margin-bottom: 30px;
}

.article-poster img {
  max-width: 980px;
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  display: block;
}

.article-content {
  max-width: 720px;
  color: #fff;
  position: relative;
  z-index: 4;
}

.article-content p {
  color: #fff;
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 300;
  color: #9189AF;
  margin: 35px 0;
  line-height: 32px;
}

.article-content p em {
  font-style: italic;
}

.article-content p a {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: #FFBA39;
}

.article-content p strong {
  font-weight: 500;
}

.article-content ul li {
  margin: 10px 0;
  padding-left: 20px;
  position: relative;
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 300;
  color: #9189AF;
  line-height: 32px;
}

.article-content ul li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #514a6b;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 12px;
}


.article-content h2 {
  font-size: 48px;
  margin-bottom: 40px;
  margin-top: 60px;
}

.article-content h3 {
  font-family: "Poppins";
  font-size: 24px;
  margin-bottom: 30px;
  margin-top: 40px;
  font-weight: 600;
}

.article-image {
  border-radius: 15px;
  overflow: hidden;
  margin-top: 25px;
}

.article-image img {
  max-width: 100%;
  width: 100%;
  position: relative;
}

.article-intro {
    background: rgba(255, 255, 255, 0.07);
    padding: 20px 25px;
    box-sizing: border-box;
    margin-top: 0;
    border-radius: 10px;
    color: #fff;
    margin: 40px 0;
}

.article-intro p {
    margin: 0;
}

.article-separator {
  height: 1px;
  width: 100%;
  background: rgba(255,255,255,0.1);
  margin-top: 75px;
}

.blog-return {
  background: #FFBA39;
  align-self: flex-start;
  justify-self: flex-start;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-family: "Bebas Neue";
  font-size: 20px;
  color: #5F4009;
  padding: 10px 25px;
  border-radius: 5px;
  margin-top: 25px;
}

.blog-return img {
  width: 16px;
  margin-right: 20px;
  transform: rotate(90deg);
  margin-left: -10px;
}

.article-container {
  box-sizing: border-box;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Blog */

.rubrique-title {
  margin-top: 80px;
  font-size: 70px;
  color: #fff;
  font-family: "Bebas Neue";
}

.inner-intro {
  color: #9189AF;
  font-size: 20px;
  font-weight: 300;
  line-height: 34px;
  max-width: 720px;
  margin-top: 30px;
}

.blog-container {
  max-width: 980px;
  width: 100%;
  z-index: 4;
  box-sizing: border-box;
}

.articles-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 70px;
  margin-top: 70px;
}

.article-item {
  width: 100%;
  position: relative;
  z-index: 4;
}

.item-poster {
  border-radius: 15px;
  overflow: hidden;
}

.item-poster img {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  display: block;
}

.item-title {
  margin-top: 25px;
  font-size: 32px;
  color: #fff;
  font-family: "Bebas Neue";
}

.item-date {
  color: #9189AF;
  font-size: 16px;
  margin-top: 15px;
}


/* Media Queries */
@media (max-width: 1365px) {
  .scenarios-container {
    flex-direction: column;
  }
  .scenarios-item {
    max-width: 650px;
    height: auto;
    min-height: 500px;
  }
  .s-item-button {
    margin-top: 50px;
  }
  .s-item-image img {
    height: 300px;
  }
  .target-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .target-image {
    display: none;
  }
  .sweet-container {
    width: 980px;
  }
  .where-container {
    grid-gap: 50px;
  }
  .where-item {
    width: 550px;
  }
  .bg-where, .faq-bg {
    opacity: 0.4;
  }
  .footer-contact {
    display: flex;
    flex-direction: column-reverse;
  }
  .header-logo {
    width: 160px;
  }
  .header-left, .header-right {
    width: 450px;
  }
}

@media (max-width: 1023px) {
  .s-item-image {
    height: 250px;
  }
  .s-item-image:hover .s-item-img {
    opacity: inherit;
  }
  .play-button {
    display: none;
  }
  .voir-trailer {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    padding: 10px 15px;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 6;
  }
  .voir-trailer img {
    width: 20px;
    height: 20px !important;
    margin-right: 8px;
  }
  .voir-trailer:hover {
    opacity: 0.7;
  }
  .sweet-container {
    width: 100%;
  }
  .sweet-hero {
    width: 600px;
    margin-top: 100px;
  }
  .sweet-hero h1 {
    font-size: 76px;
    text-align: center;
    align-self: inherit;
    line-height: 82px;
  }
  .sweet-hero .hero-text {
    margin-top: 40px;
    text-align: center;
  }
  .sweet-hero .hero-button {
    margin-left: 0;
  }
  .scenarios-container {
    margin-top: 60px;
  }
  .target-row:first-of-type {
    margin-top: 25px;
  }
  .where-container {
    margin-top: 50px;
  }
  .header-left, .header-right {
    display: none;
  }
  .mobile-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50px;
    top: 60px;
    cursor: pointer;
  }
  .mobile-menu img {
    width: 40px;
  }
  .mobile-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 50px;
    top: 60px;
    cursor: pointer;
  }
  .mobile-contact img {
    width: 40px;
  }
  .sweet-header {
    height: 180px;
  }
  .blog-container, .article-container {
    padding: 0 50px;
  }
  .rubrique-title {
    font-size: 62px;
  }
  .article-title {
    font-size: 60px;
  }
  .article-header {
    margin-top: 40px;
  }
  .article-intro {
    margin-top: 0;
    border-radius: 0 0 10px 10px;
  }
  .article-poster {
    margin-bottom: 0;
    border-radius: 10px 10px 0 0;
    margin-top: 40px;
  }
  .article-content h2 {
    font-size: 36px;
  }
  .article-content h3 {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .sweet-container, .scenarios-container, .blog-container, .article-container {
    padding: 0 40px;
  }
  .articles-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .bg-where img {
    margin-right: -280px;
  }
  .target-row {
    grid-template-columns: repeat(1, 1fr);
  }
  h2 {
    font-size: 48px;
  }
  .title-investigations::before, .title-scenarios::before {
    width: 30px;
    background-size: 30px;
    height: 30px;
    top: -55px;
  }
  .where-item {
    width: 100%;
    box-sizing: border-box;
  }
  .faq-item-question {
    padding-right: 80px;
    box-sizing: border-box;
    line-height: 34px;
  }
  .faq-item {
    padding: 25px;
  }
  .faq-item-answer {
    margin-top: 30px;
  }
  .faq-arrow {
    width: 35px;
    top: 25px;
    right: 20px;
  }
  .faq-bg img {
    width: 250%;
  }
  .footer-form {
    grid-template-columns: 1fr;
    grid-gap: 15px;
    grid-template-areas: "nom" "email"
 "sujet" "date"
 "message";
  }
  .where-text {
    margin-top: 30px;
  }
  .where-title-container {
    grid-gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .where-location {
    grid-gap: 15px;
  }
  .where-location p {
    font-size: 20px;
  }
  .where-location img {
    width: 24px;
  }
  .s-item-description, .target-text, .where-text, .faq-item-answer, .footer-text, .footer-info div {
    font-size: 16px;
    line-height: 28px;
  }
  .footer-title {
    font-size: 48px;
    line-height: 54px;
  }
  .sweet-bottom {
    flex-direction: column;
    grid-gap: 20px;
    height: 150px;
    justify-content: center;
    text-align: center;
    line-height: 24px;
    padding: 0 20px;
  }
  .title-left {
    align-self: center;
  }
  .scenarios-item {
    padding-bottom: 25px;
  }
  .s-item-button, .where-button {
    width: 180px;
    min-height: 55px;
    font-size: 22px;
    margin-top: 35px;
  }
  .where-button {
    height: 55px;
  }
  .under-h2 {
    font-size: 18px;
  }
  .sweet-hero h1 {
    font-size: 66px;
    line-height: 72px;
  }
  .sweet-hero .hero-text {
    font-size: 18px;
    line-height: 30px;
    max-width: 500px;
    width: 100%;
    padding: 0 30px;
    box-sizing: border-box;
    align-self: center;
  }
  .sweet-hero {
    width: 100%;
  }
  .sweet-footer {
    padding: 100px 0;
  }
}

@media (max-width: 479px) {
  .sweet-container, .scenarios-container, .blog-container, .article-container {
    padding: 0 20px;
  }
  .sweet-hero h1 {
    font-size: 50px;
    line-height: 56px;
  }
  .mobile-contact {
    right: 20px;
  }
  .mobile-menu {
    left: 20px;
  }
  .sweet-hero, #detective, .sweet-target, .sweet-where {
    padding-bottom: 120px;
    border-bottom: 1px solid #261f41;
  }
  .sweet-scenarios, .sweet-target, .sweet-where, .sweet-faq {
    margin-top: 100px;
  }
}
