@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Lato", sans-serif;
  overflow-x: hidden;
}

.container {
  max-width: 1360px;
  margin: 0 auto;
  /* display: flex;
  flex-direction: column;
  align-items: center; */
}

@media (max-width: 1024px) {
  .container {
    max-width: 100%;
    padding: 0 16px;
  }
}

.h-100 {
  height: 100% !important;
}

.d-flex {
  display: flex !important;
}

.d-none {
  display: none !important;
}

.flex-column {
  flex-direction: column !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.flex-1 {
  flex-grow: 1;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

/* Main body */
.main .section-1 {
  border-bottom: 1px solid #d9d9d9;
}

.main .section-1 .description {
  font-size: 24px;
  line-height: 48px;
  color: #000;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  padding: 60px 0;
}

@media (max-width: 1024px) {
  .main .section-1 .description {
    font-size: 18px;
    line-height: 24px;
  }
}

/* Section 2 - Coming Soon Banner */
.section-2 {
  width: 100%;
  padding: 60px 0;
}

.coming-soon-banner {
  display: flex;
  width: 100%;
  height: 113px;
  gap: 42px;
  position: relative;
  overflow: visible;
}

.banner-left {
  flex: 1;
  background: #00276e;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}

.banner-right {
  flex: 1;
  background: #fc0303;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%);
  margin-left: -60px;
}

.coming-soon-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
}

.coming-soon-title {
  font-family: "Merriweather Sans", sans-serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 1;
  color: #ffffff;
  margin: 0;
  text-align: center;
}

.gradient-line-top,
.gradient-line-bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 113, 19, 1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}

.gradient-line-top {
  top: 0;
}

.gradient-line-bottom {
  bottom: 0;
}

.events-logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.events-logo {
  width: 238px;
  height: auto;
  display: block;
}

.events-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0;
  margin: 0;
  text-align: center;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .section-2 {
    padding: 40px 0;
  }

  .coming-soon-banner {
    height: 90px;
  }

  .coming-soon-title {
    font-size: 42px;
  }

  .events-logo {
    width: 180px;
  }

  .events-text {
    font-size: 16px;
  }

  .banner-right {
    margin-left: -40px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .section-2 {
    padding: 30px 0;
  }

  .coming-soon-banner {
    height: 68px;
    flex-direction: row;
    gap: 2px;
  }

  .banner-left {
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  }

  .banner-right {
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    margin-left: -30px;
  }

  .coming-soon-title {
    font-size: 22.18px;
  }

  .gradient-line {
    height: 1.34px;
  }

  .events-logo {
    width: 106px;
  }

  .events-text {
    font-size: 10px;
  }
}

@media (max-width: 431px) {
  .coming-soon-banner {
    gap: 12px;
  }
}

/* Section 2 end */

.website {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1024px) {
  .website {
    margin-top: 30px;
    align-items: center;
  }
}

.website .info {
  gap: 80px;
}

@media (max-width: 1024px) {
  .website .info {
    gap: 30px;
  }
}

.website.reversed .info {
  flex-direction: row-reverse;
}

@media (max-width: 1024px) {
  .website .info {
    flex-direction: column;
    align-items: center;
  }

  .website.reversed .info {
    flex-direction: column;
    align-items: center;
  }
}

.website.reversed .overlapped-image {
  align-self: flex-end;
}

@media (max-width: 1024px) {
  .website.reversed .overlapped-image {
    align-self: center;
  }
}

.website.reversed .info .content:before {
  border-width: 30px 0 30px 35px;
  border-color: transparent transparent transparent #101e40;
  right: -35px;
  left: auto;
}

.website .info .image-wrapper {
  width: 340px;
  height: 116px;
  margin-top: 45px;
  margin-left: 47px;
}

.website .info .image-wrapper img {
  width: 100%;
  height: auto;
}

.website .info .content {
  width: 551px;
  height: 255px;
  padding: 75px 48px 74px 156px;
  border-radius: 40px;
  gap: 30px;
  position: relative;
}

@media (max-width: 1024px) {
  .website .info .content {
    width: calc(100vw - 86px);
    max-width: 314px;
    height: auto;
    padding: 30px 38px 60px;
  }
}

.website.reversed .info .image-wrapper {
  margin-left: 0;
  margin-right: 47px;
}

@media (max-width: 1024px) {
  .website .info .image-wrapper {
    width: 150px;
    height: auto;
    margin-left: 0;
  }

  .website.reversed .info .image-wrapper {
    margin-right: 0;
  }
}

.website.reversed .info .content {
  padding: 75px 125px 74px 79px;
}

@media (max-width: 1024px) {
  .website.reversed .info .content {
    padding: 30px 38px 60px;
  }

  .website .info .content {
    padding: 30px 38px 60px;
  }
}

.website .info .content.blue {
  background: linear-gradient(180deg, #101e40 25.13%, #2a4fa6 100%);
}

.website .info .content.blue:before {
  border-color: transparent #101e40 transparent transparent;
}

.website .info .content.green {
  background: linear-gradient(0deg, #2aa653 0%, #104020 61.87%);
}

.website.reversed .info .content.green:before {
  border-color: transparent transparent transparent #104020;
}

.website .info .content.orange {
  background: linear-gradient(179.96deg, #874800 33.87%, #cb9100 99.97%);
}

.website .info .content.orange:before {
  border-color: transparent #874800 transparent transparent;
}

.website .info .content.purple {
  background: linear-gradient(359.97deg, #bd3478 0.03%, #4c0f2d 89.6%);
}

.website.reversed .info .content.purple:before {
  border-color: transparent transparent transparent #62163b;
}

.website .info .content:before {
  content: "";
  border-style: solid;
  border-width: 30px 35px 30px 0;
  position: absolute;
  left: -35px;
}

@media (max-width: 1024px) {
  .website .info .content:before,
  .website.reversed .info .content:before {
    content: "";
    display: block;
    position: absolute;
    top: -18px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    border-width: 0 18px 18px 18px !important;
  }

  .website .info .content.orange:before {
    border-color: transparent transparent #874800 transparent;
  }

  .website.reversed .info .content.green:before {
    border-color: transparent transparent #104020 transparent;
  }

  .website .info .content.blue:before {
    border-color: transparent transparent #101e40 transparent;
  }

  .website.reversed .info .content.purple:before {
    border-color: transparent transparent #4c0f2d transparent;
  }
}

.website .info .content .number {
  width: 71px;
  height: 71px;
  border-radius: 50%;
  font-size: 42px;
  line-height: 58px;
  color: #fff;
  font-weight: 700;
  border: 5.16px solid #f0efef;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .website .info .content .number {
    width: 38px;
    height: 38px;
    font-size: 22px;
    line-height: 28px;
    border-width: 2.81px;
  }
}

.website .info .content .description h3 {
  font-weight: 700;
  font-size: 35.07px;
  line-height: 47.06px;
  color: #fff;
  margin-bottom: 30px;
}

@media (max-width: 1024px) {
  .website .info .content .description h3 {
    font-size: 20px;
    line-height: 24px;
  }
}

.website .info .content .description a {
  text-decoration: none;
}

.website .info .content .description .button {
  width: 268px;
  height: 82px;
  background: #fff;
  border: 0.9px solid #696969;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

@media (max-width: 1024px) {
  .website .info .content .description .button {
    width: 161px;
    height: 42px;
    gap: 10px;
  }
}

.website .info .content .description .button span {
  font-weight: 800;
  font-size: 26px;
  color: #000;
}

@media (max-width: 1024px) {
  .website .info .content .description .button span {
    font-size: 16px;
    line-height: 18px;
  }

  .website .info .content .description .button .icon svg {
    width: 17px;
    height: 17px;
  }
}

.website .overlapped-image {
  width: 600px;
  margin-top: -207px;
  z-index: 1;
  position: relative;
}

@media (max-width: 1024px) {
  .website .overlapped-image {
    width: 330px;
    margin-top: -30px;
  }
}

/* Main body end */

/* Header Style */

.main-header {
  background-color: #fc0303;
  width: 100vw;
  height: 80px;
  padding: 10px 60px;
  box-sizing: border-box;
  position: relative;
}

.header-content {
  width: 100%;
}

.logo-group-header {
  left: 60px;
  width: 151px;
  height: 52.1px;
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-group-header svg {
  width: 100% !important;
  height: 100% !important;
}

.social-icons {
  gap: 10px;
}

.social-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.social-icons svg {
  width: 30px !important;
  height: 30px !important;
}

/* Mobile Responsive Styles */
@media (max-width: 431px) {
  .main-header {
    width: 100%;
    height: 65px;
    padding: 15px 27px;
    position: relative;
    box-sizing: border-box;
  }

  .logo-group-header {
    width: 112px;
    height: 38.56px;
    flex-shrink: 0;
  }

  .logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .social-icons {
    gap: 8px;
    flex-shrink: 0;
  }

  .social-icons svg {
    width: 25px !important;
    height: 25px !important;
  }
}

/* Header Style end */

/* Banner Style */

.banner img {
  width: 100vw;
  height: 629.78px;
  object-fit: cover;
  margin-top: 8px;
}

@media (max-width: 431px) {
  .banner img {
    width: 100vw;
    height: 300px;
    object-fit: cover;
  }
}

/* Banner Style end */

/* Section 3 Style */
.section-3 {
  padding: 80px 0;
  overflow: hidden;
}

.section-3 .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-3 .text-content {
  max-width: 659px;
  gap: 24px;
  z-index: 2;
}

.section-3 .main-heading {
  font-family: "Lato", sans-serif;
  font-weight: 800;
  font-size: 54px;
  line-height: 1.2;
  color: #000000;
  margin: 0;
}

.section-3 .description {
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.475;
  color: #000000;
  margin: 0;
}

.section-3 .description .highlight {
  font-weight: 700;
  color: #fc0303;
}

.section-3 .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fc0303;
  color: #ffffff;
  padding: 26px 28px;
  border-radius: 7px;
  text-decoration: none;
  font-family: "Lato", sans-serif;
  font-weight: 800;
  font-size: 31.44px;
  line-height: 0.96;
  transition: all 0.3s ease;
  width: fit-content;
}

.section-3 .cta-button:hover {
  background-color: #d90000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(252, 3, 3, 0.3);
}

.section-3 .image-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 558px;
}

.section-3 .decorative-circle-1 {
  position: absolute;
  width: 702px;
  height: 702px;
  border-radius: 50%;
  background: #fff1a9;
  filter: blur(253.5px);
  z-index: 1;
}

.section-3 .decorative-circle-2 {
  position: absolute;
  width: 510px;
  height: 510px;
  border-radius: 50%;
  background: #fecd50;
  z-index: 2;
}

.section-3 .publication-image {
  position: relative;
  z-index: 3;
  width: 558px;
  height: 558px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-3 .publication-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .section-3 {
    padding: 60px 0;
  }

  .section-3 .row {
    grid-template-columns: 1fr;
    gap: 40px;
    flex-direction: row-reverse;
  }

  .section-3 .text-content {
    order: 2;
    text-align: center;
    align-items: center;
  }

  .section-3 .image-content {
    order: 1;
    min-height: 350px;
  }

  .section-3 .main-heading {
    font-size: 32px;
  }

  .section-3 .description {
    font-size: 24px;
  }

  .section-3 .cta-button {
    font-size: 20px;
    padding: 18px 24px;
  }

  .section-3 .decorative-circle-1 {
    width: 350px;
    height: 350px;
    filter: blur(126px);
  }

  .section-3 .decorative-circle-2 {
    width: 254px;
    height: 254px;
  }

  .section-3 .publication-image {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 767px) {
  .section-3 {
    padding: 40px 0;
  }

  .section-3 .row {
    flex-direction: column;
  }

  .section-3 .text-content {
    gap: 20px;
  }

  .section-3 .main-heading {
    font-size: 24px;
  }

  .section-3 .description {
    font-size: 18px;
    line-height: 1.33;
  }

  .section-3 .cta-button {
    font-size: 18px;
    padding: 14px 20px;
    border-radius: 4px;
  }

  .section-3 .image-content {
    min-height: 280px;
  }

  .section-3 .decorative-circle-1 {
    width: 279px;
    height: 279px;
    filter: blur(85.44px);
  }

  .section-3 .decorative-circle-2 {
    width: 203px;
    height: 203px;
  }

  .section-3 .publication-image {
    width: 222px;
    height: 222px;
  }
}

/* Section 3 Style end */

/* Footer Style */
.main-footer {
  background-color: #f3f3f3;
  width: 100vw;
  padding: 40px;
  box-sizing: border-box;
  flex-direction: column;
  gap: 10px;
}

.footer-content {
  align-self: stretch;
}

.footer-column-1,
.footer-column-2,
.footer-column-3 {
  flex-grow: 1;
}

.footer-column-1 {
  height: 400px;
  padding: 40px;
  box-sizing: border-box;
  flex-direction: column;
  gap: 40.02px;
  background-color: #fefcf8;
  border: 0.5px solid #d3d3d3;
  border-radius: 18.805px 0px 0px 18.805px;
}

.logo-group {
  flex-direction: column;
  gap: 14.21px;
  width: 274.31px;
}

.footer-logo {
  width: 165px;
  height: 36.77px;
  object-fit: contain;
}

.footer-description {
  font-family: Lato, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.375em;
  color: #000000;
  text-align: center;
  width: 370px;
}

.footer-email {
  font-family: Lato, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2em;
  color: #fc0303;
  text-align: left;
}

.footer-email-group {
  flex-direction: row;
  align-self: center;
  gap: 5px;
}

.email-label-wrapper {
  display: inline-block;
  position: relative;
}

.footer-email-label {
  font-family: Lato, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2em;
  color: #000000;
  text-align: left;
  margin: 0;
}

.footer-email-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50.61px;
  height: 0.75px;
  background-color: #ff0000;
}

.footer-email-address {
  font-family: Lato, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2em;
  color: #fc0303;
  text-decoration: none;
  text-align: left;
}

.footer-column-2 {
  height: 400px;
  padding: 40px;
  box-sizing: border-box;
  flex-direction: column;
  gap: 10px;
  background-color: #fefcf8;
  border: 0.5px solid #d3d3d3;
}

.column-title {
  font-family: Lato, sans-serif;
  font-weight: 800;
  font-size: 25.04px;
  line-height: 1.2em;
  color: #000000;
  text-align: center;
}

.brand-title-wrapper {
  display: inline-block;
  position: relative;
  margin-bottom: 25.51px;
}

.brand-underline {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 134px;
  height: 2px;
  background-color: #000000;
}

.brand-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25.51px;
}

.brand-list li {
  font-family: Lato, sans-serif;
  font-weight: 700;
  font-size: 20.49px;
  line-height: 1.2em;
  color: #000000;
  text-align: center;
}

.brand-list a {
  cursor: pointer;
  text-decoration: none;
}

.footer-column-3 {
  height: 400px;
  padding: 40px;
  box-sizing: border-box;
  flex-direction: column;
  background-color: #fefcf8;
  border: 0.5px solid #d3d3d3;
  border-radius: 0px 18.805px 18.805px 0px;
}

.follow-us-title-wrapper {
  display: inline-block;
  position: relative;
  margin-bottom: 18.01px;
}

.follow-us-underline {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: #000000;
}

.social-icons-footer {
  gap: 25px;
}

.social-icon-footer-wrapper {
  width: 50.42px;
  height: 50.42px;
  background-color: #ffffff;
  border: 0.84px solid #fefcf8;
  border-radius: 100%;
  box-sizing: border-box;
}

.social-icon-footer {
  width: 28.99px;
  height: 29.63px;
  object-fit: contain;
}

.footer-bottom {
  align-self: stretch;
  height: 57px;
  padding: 0px 56.42px;
  background-color: #fefcf8;
  border: 0.5px solid #d3d3d3;
  border-radius: 9.402px;
}

.copyright {
  font-family: Lato, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2em;
  color: #000000;
}

.copyright-brand-name {
  color: #fc0303;
}

.footer-links {
  gap: 35px;
}

.footer-link {
  font-family: Lato, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2em;
  color: #000000;
  text-decoration: none;
}

.footer-link:not(:last-child)::after {
  content: "";
  width: 1.79px;
  height: 15.2px;
  background-color: #ff0000;
  margin-left: 35px;
  display: inline-block;
}

/* Mobile Responsive Styles of Footer*/
@media (max-width: 1024px) {
  .main-footer {
    width: 100%;
    padding: 20px;
    gap: 10px;
  }

  .footer-content {
    flex-wrap: wrap;
    border-radius: 18px;
  }

  .footer-column-1 {
    border-radius: 18px 0 0 0;
  }

  .footer-column-2 {
    border-radius: 0 18px 0 0;
  }

  .footer-column-1,
  .footer-column-2 {
    width: 50%;
  }

  .footer-column-3 {
    width: 100%;
    height: auto;
    border-radius: 0 0 18px 18px;
  }
}

@media (max-width: 431px) {
  .main-footer {
    width: 100%;
    padding: 20px;
    gap: 10px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-column-1 {
    width: 100%;
    height: auto;
    padding: 31.45px;
    gap: 34.77px;
    border-radius: 12px 12px 0px 0px;
  }

  .logo-group {
    width: 145.5px;
    gap: 16.54px;
  }

  .footer-logo {
    width: 145.5px;
    height: 32.43px;
  }

  .logo-group svg {
    width: 100% !important;
    height: 100% !important;
  }

  .footer-description {
    width: 318.82px;
    line-height: 1.25em;
  }

  .footer-email {
    font-size: 18px;
    line-height: 1.2em;
    color: #fc0303;
  }

  .footer-email-group {
    flex-direction: row;
    align-items: center;
    align-self: flex-start;
    gap: 5px;
    flex-wrap: wrap;
  }

  .email-label-wrapper {
    display: inline-block;
    position: relative;
  }

  .footer-email-label {
    font-size: 18px;
    line-height: 1.2em;
    color: #000000;
    margin: 0;
  }

  .footer-email-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 58.9px;
    height: 0.87px;
    background-color: #ff0000;
  }

  .footer-email-address {
    font-size: 18px;
    line-height: 1.2em;
    color: #fc0303;
  }

  .footer-column-2 {
    width: 100%;
    height: auto;
    padding: 30px;
    gap: 9.58px;
    border-radius: 0;
  }

  .column-title {
    font-size: 22px;
    line-height: 1.2em;
  }

  .brand-title-wrapper {
    display: inline-block;
    position: relative;
    margin-bottom: 25.51px;
  }

  .brand-underline {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 113px;
    height: 1px;
    background-color: #000000;
  }

  .brand-list {
    gap: 25.51px;
  }

  .brand-list li {
    font-size: 18px;
    line-height: 1.2em;
  }

  .footer-column-3 {
    width: 100%;
    height: auto;
    padding: 30px;
    border-radius: 0px 0px 12px 12px;
  }

  .follow-us-title-wrapper {
    display: inline-block;
    position: relative;
    margin-bottom: 18.01px;
  }

  .follow-us-underline {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 0.87px;
    background-color: #000000;
  }

  .social-icons-footer {
    width: 306px;
    gap: 21.73px;
  }

  .social-icon-footer-wrapper {
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    border: 0.73px solid #fefcf8;
    border-radius: 100%;
    box-sizing: border-box;
  }

  .social-icon-footer {
    width: 25.2px;
    height: 25.76px;
    object-fit: contain;
  }

  .social-icon-footer-wrapper svg {
    width: 43px !important;
    height: 43px !important;
  }

  .footer-bottom {
    flex-direction: column;
    height: auto;
    padding: 10px 0;
    gap: 10px;
    border-radius: 8px;
    background-color: transparent;
    border: none;
  }

  .copyright-card,
  .links-card {
    width: 100%;
    background-color: #fefcf8;
    border: 0.5px solid #d3d3d3;
    border-radius: 9.402px;
    box-sizing: border-box;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .copyright-card .copyright {
    font-size: 14px;
    line-height: 1.2em;
    color: #000000;
  }

  .copyright-brand-name {
    color: #fc0303;
  }

  .copyright-card {
    background-color: #fefcf8;
    margin-bottom: 10px;
  }

  .footer-links {
    flex-direction: row;
    gap: 20px;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }

  .footer-link {
    font-size: 13px;
    line-height: 1.2em;
  }

  .footer-link:not(:last-child)::after {
    display: inline-block;
    width: 1.79px;
    height: 13px;
    background-color: #ff0000;
    margin-left: 10px;
    vertical-align: middle;
  }
}

@media (max-width: 1024px) {
  .footer-bottom {
    flex-direction: column-reverse;
    height: auto;
    padding: 10px 0;
    gap: 10px;
    border-radius: 8px;
    background-color: transparent;
    border: none;
  }

  .copyright-card,
  .links-card {
    width: 100%;
    background-color: #fefcf8;
    border: 0.5px solid #d3d3d3;
    border-radius: 9.402px;
    box-sizing: border-box;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .copyright-card .copyright {
    font-size: 14px;
    line-height: 1.2em;
    color: #000000;
  }

  .copyright-brand-name {
    color: #fc0303;
  }

  .copyright-card {
    background-color: #fefcf8;
    margin-bottom: 10px;
  }

  .footer-links {
    flex-direction: row;
    gap: 20px;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }

  .footer-link {
    font-size: 13px;
    line-height: 1.2em;
  }

  .footer-link:not(:last-child)::after {
    display: inline-block;
    width: 1.79px;
    height: 13px;
    background-color: #ff0000;
    margin-left: 10px;
    vertical-align: middle;
  }

  .footer-email-label {
    font-size: 16px;
  }

  .footer-description {
    width: 100%;
  }
}

/* Policies, Terms and Cookies page style */
.container .link-list {
  margin: 10px 0 20px 40px;
}

.container .note a {
  text-decoration: none;
  color: #000000;
}
