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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #252424;
  background-color: #ffffff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.header__container,
.hero__container,
.main__container,
.footer__container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .header__container,
  .hero__container,
  .main__container,
  .footer__container {
    padding: 0 50px;
  }
}
@media (min-width: 1920px) {
  .header__container,
  .hero__container,
  .main__container,
  .footer__container {
    padding: 0 308px;
  }
}

@media (min-width: 1200px) and (max-width: 1919px) {
  .header__container,
  .hero__container,
  .main__container,
  .footer__container {
    padding: 0 160px;
  }
}

.header {
  background: #ffffff;
  border-bottom: 1px solid #e6ebf4;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header__container {
  height: 119px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 1200px) {
  .header__container {
    justify-content: center;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .header__container {
    height: 80px;
    padding: 0 50px;
  }
}
@media (max-width: 767px) {
  .header__container {
    height: 50px;
    padding: 15px;
  }
}
.header__logo {
  flex-shrink: 0;
}
  @media (min-width: 768px) and (max-width: 1199px) {
    .header__logo {
      width: 160px;
    }
  }
  @media (min-width: 1200px) and (max-width: 1700px) {
    .header__logo {
      width: 180px;
      margin-right: 20px;
    }
  }
  @media (max-width: 1199px) {
    .header__logo {
      margin-left: 50px;
    }
  }
@media (max-width: 767px) {
  .header__logo {
    width: 120px;
    margin: 0 auto;
  }
}
.header__nav-desktop {
  display: none;
  position: relative;
}
@media (min-width: 1200px) {
  .header__nav-desktop {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    margin-left: auto;
  }
}
.notification-icon {
  width: 20px;
  height: 26px;
  animation: wiggle 2s linear infinite;
  flex-shrink: 0;
}
@media (min-width: 1200px) {
  .notification-icon {
    margin-left: 20px;
  }
}

.header__nav-desktop-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 30px;
  align-items: center;
}
.header__nav-desktop-item {
  margin: 0;
}
.header__nav-desktop-link {
  font-size: 16px;
  font-weight: 500;
  color: #252424;
  transition: all 0.3s ease;
  padding: 8px 0;
  display: block;
  white-space: nowrap;
}
.header__nav-desktop-link:hover {
  color: #7b2ff7;
}
.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 24px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}
@media (min-width: 1200px) {
  .header__burger {
    display: none;
  }
}

.header__burger-line {
  width: 100%;
  height: 2px;
  background-color: #252424;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.header__burger.is-active .header__burger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}
.header__burger.is-active .header__burger-line:nth-child(2) {
  opacity: 0;
}
.header__burger.is-active .header__burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(2px, -3px);
}

.header__nav {
  display: block;
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px solid #e6ebf4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-height: calc(100vh - 50px);
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .header__nav {
    top: 80px;
    max-height: calc(100vh - 80px);
  }
}
@media (min-width: 1200px) {
  .header__nav {
    display: none;
  }
}
.header__nav.is-open {
  transform: translateX(0);
}
@media (min-width: 1200px) {
  .header__nav.is-open {
    transform: translateX(0);
  }
}
.header__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.header__nav-item {
  border-bottom: 1px solid #e6ebf4;
}
.header__nav-item:last-child {
  border-bottom: none;
}
.header__nav-label {
  display: block;
  padding: 20px;
  font-size: 14px;
  font-weight: 700;
  color: #7b2ff7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.header__nav-link {
  display: block;
  padding: 20px;
  font-size: 16px;
  font-weight: 500;
  color: #252424;
  transition: all 0.3s ease;
}
.header__nav-link:hover {
  background-color: #e6eafd;
  color: #7b2ff7;
  padding-left: 25px;
}

@media (max-width: 767px) {
  body.menu-open {
    overflow: hidden;
  }
}

.hero {
  background-image: url("../images/BG-Header-Desktop.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 415px;
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .hero {
    min-height: 320px;
  }
}
@media (max-width: 767px) {
  .hero {
    min-height: 233px;
  }
}
.hero__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  min-height: 415px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .hero__container {
    min-height: 320px;
  }
}
@media (max-width: 767px) {
  .hero__container {
    min-height: 233px;
    padding: 38px 28px;
  }
}
.hero__content {
  text-align: left;
  color: #ffffff;
  max-width: 800px;
  position: relative;
  z-index: 2;
}
.hero__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .hero__title {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .hero__title {
    font-size: 1.7rem;
    margin-bottom: 10px;
    white-space: nowrap;
  }
}
@media (max-width: 400px) {
  .hero__title {
    font-size: 1.5rem;
  }
}
.hero__subtitle {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  opacity: 0.95;
  padding-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .hero__subtitle {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .hero__subtitle {
    font-size: 14px;
  }
}
@media (max-width: 400px) {
  .hero__subtitle {
    font-size: 12px;
  }
}
.hero__date {
  border-radius: 4px;
  background: #A67DE9;
  display: flex;
  height: 39px;
  padding: 0 10px;
  align-items: center;
  gap: 6px;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--Color, #FFF);
}

.main {
  padding: 50px 0;
  background: var(--BG, linear-gradient(173deg, #F3ECFF 0.05%, #FFFAD6 99.95%));
}
@media (min-width: 768px) and (max-width: 1199px) {
  .main {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .main {
    padding: 25px 0;
  }
}

.cam-sites {
  margin-bottom: 50px;
}
.cam-sites__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .cam-sites__list {
    gap: 25px;
  }
}
@media (max-width: 767px) {
  .cam-sites__list {
    gap: 20px;
  }
}
.cam-sites__more {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cam-sites__more .btn{
    width: max-content;
  }
}
.cam-card {
  overflow: hidden;
  transition: transform 0.3s ease;
}
.cam-card:hover {
  transform: translateY(-4px);
}
.cam-card--hidden {
  display: none;
}
.cam-card__badge {
  background: #7b2ff7;
  color: #ffffff;
  text-align: center;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 10px 10px 0 0;
  width: 100%;
  max-width: -moz-max-content;
  max-width: max-content;
}
@media (max-width: 767px) {
  .cam-card__badge {
    font-size: 14px;
    padding: 5px 15px;
  }
}
.cam-card__body {
  padding: 20px 23px;
  border: 1px solid #7b2ff7;
  border-radius: 12px;
  border-top-left-radius: 0;
  transition: box-shadow 0.3s ease;
  background-color: #ffffff;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .cam-card__body {
    padding: 20px 20px;
  }
}
@media (max-width: 767px) {
  .cam-card__body {
    padding: 15px;
    flex-direction: row;
    display: flex;
    gap: 20px;
    justify-content: space-around;
    align-items: center;
  }
}
.cam-card__body:first-child {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.cam-card__info {
  display: flex;
  gap: 77px;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .cam-card__info {
    gap: 40px;
    justify-content: space-around;
  }
}
@media (max-width: 767px) {
  .cam-card__info {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
}
.cam-card__logo {
  width: 209px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 139px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .cam-card__logo {
    width: 160px;
    height: 110px;
  }
}
@media (max-width: 767px) {
  .cam-card__logo {
    width: 109px;
    height: 97px;
  }
}
.cam-card__logo.desktop {
  display: flex;
}
@media (max-width: 767px) {
  .cam-card__logo.desktop {
    display: none;
  }
}
.cam-card__logo.mobile {
  display: none;
}
@media (max-width: 767px) {
  .cam-card__logo.mobile {
    display: flex;
  }
}
.cam-card__logo img {
  width: 100%;
  height: auto;
}
.cam-card__details {
  flex: 1;
  min-width: 0;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .cam-card__details {
    display: none;
  }
}
.cam-card__title {
  font-size: 32px;
  font-weight: 700;
  color: #252424;
  margin-bottom: 10px;
}
.cam-card__title.desktop {
  display: block;
}
@media (max-width: 767px) {
  .cam-card__title.desktop {
    display: none;
  }
}
.cam-card__title.mobile {
  display: none;
}
@media (max-width: 767px) {
  .cam-card__title.mobile  {
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .cam-card__title {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .cam-card__title {
    font-size: 18px;
    margin-bottom: 0;
    line-height: normal;
  }
}
.cam-card__description {
  font-size: 16px;
  font-weight: 500;
  color: #252424;
  line-height: 1.5;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .cam-card__description {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .cam-card__description {
    display: none;
  }
}
.cam-card__rating {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
@media (max-width: 767px) {
  .cam-card__rating {
    width: 100%;
    align-items: center;
  }
}
.cam-card__action {
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .cam-card__action {
    width: 100%;
    margin-top: 10px;
  }
}

.rating {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rating__score {
  font-size: 48px;
  font-weight: 800;
  color: #7b2ff7;
  letter-spacing: -2.4px;
  line-height: 1;
  display: flex;
  margin-right: 10px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .rating__score {
    font-size: 38px;
    letter-spacing: -1.9px;
    margin-right: 5px;
  }
}

@media (max-width: 767px) {
  .rating__score {
    font-size: 29px;
    margin-right: 10px;
    letter-spacing: -1.46px;
  }
}
.rating__score-divider {
  font-size: 30px;
  font-weight: 700;
  margin-left: 5px;
  color: #7b2ff7;
}
@media (max-width: 767px) {
  .rating__score-divider {
    font-size: 19px;
    letter-spacing: -1.46px;
  }
}
.rating__stars {
  display: flex;
  gap: 6px;
  width: 100%;
  height: 100%;
  flex-direction: column;
}
.rating__stars .stars {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .rating__stars .stars {
    height: 19px;
    display: flex;
    margin: 5px 0;
    align-items: center;
  }
}
.rating__stars .stars .star {
  width: 25.34px;
  height: 23.73px;
  margin-right: 4px;
}
@media (max-width: 767px) {
  .rating__stars .stars .star {
    width: 18px;
    height: 18px;
  }
}

.rating__stars .stars .star-half {
  width: 15px;
  height: 23.73px;
}

@media (max-width: 767px) {
  .rating__stars .stars .star-half {
    width: 10px;
    height: 18px;
  }
}
.rating__votes {
  gap: 6.42px;
  font-size: 20px;
  line-height: 1;
}
.rating__votes.desktop {
  display: flex;
}
@media (max-width: 767px) {
  .rating__votes.desktop {
    display: none;
  }
}
.rating__votes.mobile {
  display: none;
}
@media (max-width: 767px) {
  .rating__votes.mobile {
    display: flex;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .rating__votes {
    font-size: 16px;
    gap: 4px;
  }
}
@media (max-width: 767px) {
  .rating__votes {
    font-size: 12px;
    gap: 1px;
  }
}
.rating__count {
  font-weight: 700;
  color: #252424;
}
@media (max-width: 767px) {
  .rating__count {
    margin: 0 3px;
  }
}
.rating__label {
  font-weight: 400;
  color: #252424;
}
.rating__review {
  font-size: 14px;
  font-weight: 700;
  color: #7b2ff7;
  text-decoration: underline;
  text-underline-position: from-font;
}
@media (max-width: 767px) {
  .rating__review {
    font-size: 12px;
    display: none;
  }
}
.rating__review:hover {
  opacity: 0.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14.57px 38.86px;
  font-size: 17.49px;
  font-weight: 700;
  border-radius: 97px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .btn {
    padding: 12px 30px;
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .btn {
    padding: 7.76px 20.69px;
    font-size: 16px;
    width: 100%;
  }
}
.btn--primary {
  color: #ffffff;
  border-radius: 97.161px;
  background: var(--gradiant-01, linear-gradient(356deg, #7b2ff7 3.11%, #A67DE9 96.89%));
}
.btn--primary:hover {
  background: #7B2FF7;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(123, 47, 247, 0.3);
}
.btn--secondary {
  background: transparent;
  color: #7b2ff7;
  border: 1px solid #7b2ff7;
}
.btn--secondary:hover {
  background: #7b2ff7;
  color: #ffffff;
}

.content-section {
  margin-bottom: 50px;
  border-bottom: 1px solid #7b2ff7;
  padding-bottom: 50px;
}
.content-section:last-child {
  border-bottom: none;
}
.content-section__header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .content-section__header {
    margin-bottom: 20px;
    justify-content: space-between;
  }
}
.content-section__title {
  font-size: 32px;
  font-weight: 600;
  text-transform: capitalize;
  color: #7b2ff7;
  letter-spacing: -1.6px;
  line-height: 1.3;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .content-section__title {
    font-size: 28px;
    letter-spacing: -1.4px;
  }
}
@media (max-width: 767px) {
  .content-section__title {
    font-size: 24px;
    letter-spacing: -1.2px;
  }
}
.content-section__toggle {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.content-section__toggle svg{
  width: 40px;
  height: auto;
}
.content-section__toggle:hover {
  transform: scale(1.1);
}
.content-section__toggle.is-open {
  transform: rotate(180deg);
}
.content-section.has-toggle .content-section__body {
  max-height: 0;
  opacity: 0;
}
.content-section.has-toggle.is-open .content-section__body {
  max-height: 5000px;
  opacity: 1;
}
.content-section__body {
  max-width: 1205px;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}
@media (max-width: 767px) {
  .content-section__body {
    max-width: 100%;
  }
}
.content-section__body .content-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.94;
  letter-spacing: -0.9px;
  color: #252424;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .content-section__body .content-text {
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: -0.8px;
  }
}
@media (max-width: 767px) {
  .content-section__body .content-text {
    font-size: 14px;
    line-height: 1.43;
    letter-spacing: -0.7px;
  }
}
.content-section__body .content-text p {
  margin-bottom: 1em;
  font-weight: 500;
}
.content-section__body .content-text p:last-child {
  margin-bottom: 0;
}
.content-section__body .content-text h3 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 1.5em;
  margin-bottom: 0.75em;
  color: #252424;
  text-transform: capitalize;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .content-section__body .content-text h3 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .content-section__body .content-text h3 {
    font-size: 16px;
  }
}
.content-section__body .content-text strong {
  font-weight: 700;
}
.content-section__body .content-text ul {
  list-style-position: inside;
  margin-bottom: 1rem;
}
.content-section__body .content-text li {
  font-size: 17px;
  margin-bottom: 0.5rem;
}

.survey {
  border-radius: 24px;
  background: var(--gradiant-01, linear-gradient(356deg, var(--Color-01, #7B2FF7) 3.11%, #A67DE9 96.89%));
  padding: 50px;
  margin: 50px 0;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .survey {
    padding: 25px;
    margin: 25px 0;
  }
}
@media (max-width: 767px) {
  .survey {
    padding: 20px;
    margin: 25px 0;
  }
}
.survey__container {
  max-width: 628px;
  margin: 0 auto;
  text-align: center;
}
.survey__title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  white-space: nowrap;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .survey__title {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .survey__title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.survey__form {
  display: flex;
  gap: 15px;
  align-items: center;
}
@media (max-width: 767px) {
  .survey__form {
    flex-direction: column;
  }
}
.survey__field {
  flex: 1;
}
.survey__custom-select {
  position: relative;
  width: 100%;
}
.survey__select-trigger {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  border: none;
  border-radius: 20px;
  background: #F3ECFF;
  box-shadow: 3px 4px 16.5px 0 var(--Offre-Shadow, rgba(128, 136, 181, 0.35));
  color: #252424;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .survey__select-trigger {
    font-size: 15px;
    padding: 15px 25px;
  }
}
@media (max-width: 767px) {
  .survey__select-trigger {
    font-size: 14px;
    padding: 15px 25px;
  }
}
.survey__select-trigger:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.survey__select-placeholder {
  display: flex;
  align-items: center;
  gap: 15px;
}
.survey__select-arrow {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.survey__custom-select.is-open .survey__select-arrow {
  transform: rotate(180deg);
}
.survey__select-options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  border-radius: 20px;
  background: #F3ECFF;
  box-shadow: 3px 4px 16.5px 0 var(--Offre-Shadow, rgba(128, 136, 181, 0.35));
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}
.survey__custom-select.is-open .survey__select-options {
  display: block;
}
.survey__select-option {
  padding: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: background-color 0.2s ease;
  font-size: 16px;
  font-weight: 500;
  color: #252424;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .survey__select-option {
    font-size: 15px;
    padding: 13px;
  }
}
@media (max-width: 767px) {
  .survey__select-option {
    font-size: 14px;
    padding: 12px;
  }
}
.survey__select-option:hover {
  background-color: #fff;
}
.survey__select-option:first-child {
  border-radius: 10px 10px 0 0;
}
.survey__select-option:last-child {
  border-radius: 0 0 10px 10px;
}
.survey__select-option img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.survey__select-option span {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.survey__select-trigger.has-selection .survey__select-placeholder {
  display: flex;
  align-items: center;
  gap: 15px;
}
.survey__select-trigger.has-selection .survey__select-placeholder img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.survey__submit {
  flex-shrink: 0;
  border-radius: 100px;
  background: linear-gradient(175deg, #FFF5B7 3.03%, #FFD609 95.24%);
  color: #252424;
}
@media (max-width: 767px) {
  .survey__submit {
    width: max-content;
  }
}
.survey__submit:focus, .survey__submit:hover {
  background: #FFD609;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(123, 47, 247, 0.3);
}

.footer {
  background: #ffffff;
  border-top: 1px solid #e6ebf4;
  padding: 72px 0;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .footer {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .footer {
    padding: 31px 0;
  }
}
.footer__container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.footer__logo .logo {
  width: 322px;
  height: 50px;
}
@media (max-width: 767px) {
  .footer__logo .logo {
    width: 256px;
    height: 40px;
  }
}
.footer__links {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 68px;
  justify-content: start;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .footer__links {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .footer__links {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.footer__column {
  display: flex;
  flex-direction: column;
  gap: 23px;
}
@media (max-width: 767px) {
  .footer__column {
    gap: 15px;
  }
}
.footer__link {
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}
@media (max-width: 767px) {
  .footer__link {
    font-size: 14px;
  }
}
.footer__copyright {
  font-size: 16px;
}
@media (max-width: 767px) {
  .footer__copyright {
    font-size: 14px;
    text-align: center;
  }
}
.footer .link-disclosure {
  display: inline-block;
  color: #7b2ff7;
  text-decoration: none;
}
@media (max-width: 767px) {
  .footer .link-disclosure {
    font-size: 14px;
    margin: 0 auto;
    text-align: center;
  }
}
.footer .link-disclosure:hover {
  text-decoration: underline;
}

@keyframes wiggle {
  0%, 7% {
    transform: rotateZ(0);
  }
  15% {
    transform: rotateZ(-15deg);
  }
  20% {
    transform: rotateZ(10deg);
  }
  25% {
    transform: rotateZ(-10deg);
  }
  30% {
    transform: rotateZ(6deg);
  }
  35% {
    transform: rotateZ(-4deg);
  }
  40%, 100% {
    transform: rotateZ(0);
  }
}/*# sourceMappingURL=styles.css.map */