/****************************************
  * 
  * Global Styles Start Here
  *
****************************************/
html {
  --blue: #345b80;
  --steel-blue: #4482A3;
  --light-blue: #58b1cc;
  --yellow: #faec37;
  --yellow-hover: #c9be25;
  --Bright-Green: #4ce099;
  --educational-video-top-border:35px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* section {
    overflow-x: hidden;
  } */
html,
body {
  margin: 0;
  padding: 0;
  font-family: "Velo WWangle", sans-serif;
  background-attachment: fixed;
  background-image: linear-gradient(181.78deg, #345B80 7.21%, #376185 30.74%, #4482A3 63.7%, #58B1CC 183.26%);
  scroll-behavior: smooth;
  min-height: 100vh;
}

/**
 * Import Velo WWangle Font
 */
@font-face {
  font-display: swap;
  font-family: "Velo WWangle";
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/velo-wwangle-latin-ext-400-normal.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Velo WWangle";
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/velo-wwangle-latin-ext-700-normal.woff2) format("woff2");
}


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

.container {
  max-width: 1200px !important;
  margin: 0 auto;
  padding: 0 25px;

}

.bg-blue {
  background: #345b80;
}

.blue-grad-bg {
  background: linear-gradient(181.78deg, #345B80 7.21%, #376185 30.74%, #4482A3 63.7%, #58B1CC 183.26%);
}

.steel-blue-bg {
  background: var(--steel-blue, #4482A3);
}

.white-bg {
  background: var(--White, #fff);
}

.bg-yellow {
  background-color: var(--yellow, #faec37);
}

.bg-light-blue {
  background: linear-gradient(90deg, #58B1CC 100%, #345B80 0%);

}

.text-blue {
  color: var(--blue, #345B80);
}


.d-flex {
  display: flex;
}

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

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

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

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.w-100 {
  width: 100%;
}

.color-white {
  color: var(--White, #fff);
}

.overflow-hidden {
  overflow: hidden;
}


/****************************************
    * 
    * Global Styles End Here
    *
  ****************************************/




header {
  /* position: fixed; */
  width: 100%;
  z-index: 1000;
  /* background: #345b80; */
  
}

.header-section {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}


.header-section .menu-parent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0px;
  margin: 8px 0px;
  width: 100%;
  height: 60px;
  flex-shrink: 0;
}


.header-section .menu-parent .logo-section {
  flex: 1;
  width: 100px;
}

.header-section .menu-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 742px;
  flex-shrink: 0;
}

.header-section .menu-section nav {
  display: flex;
  gap: 30px;
  /* Adds space between nav links */
  align-items: center;
}

.header-section .menu-section nav a {
  color: var(--White, #fff);
  font-family: "Velo WWangle", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.header-section .menu-section nav a:hover {
  color: var(--yellow, #faec37);
}

.header-section .cta-button {
  width: 178px;
  height: 46px;
  border-radius: 6px;
  background: var(--yellow, #faec37);
  color: var(--blue, #345B80);
  font-family: "Velo WWangle", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-section .cta-button:hover {
  background: var(--yellow-hover, #c9be25);
}


.header-section .ring {
  display: none;
  justify-content: center;
  align-items: center;

  margin-left: -40px;

  width: 70px;
  height: 60px;

}




/* mobile menu */

.mobile-container {
  display: none;
  width: 100%;
  height: 100%;
}

.mobile-header {
  padding: 30px 30px 10px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}

.mobile-header .ring{
cursor: pointer;
}
.mobile-container .menu-parent {
  display: none;
}

.mobile-menu {
  display: flex;
  /* background: var(--Purple, #979cfb); */
  z-index: 1000;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding: 0px 30px 70px 30px;
}

.mobile-menu nav a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  width: 100%;

  padding: 6px 0px 6px 0px;

  color: var(--White, #fff);
  text-align: left;
  font-family: "Velo WWangle", "Montserrat", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 40px;
}


.mobile-menu-card {
  background-color: var(--yellow, #faec37);
  /* Replace with your yellow */
  padding: 30px;

}

.mobile-menu-card-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--blue, #345B80);
  margin: 0;
  margin-bottom: 5px;
  line-height: 37px;
}

.mobile-menu-card-contact {
  display: flex;
  flex-direction: column;
  /* gap: 8px; */
}

.contact-phone,
.contact-email {
  font-size: 16px;
  color: var(--blue, #345B80);
  font-weight: normal;
  line-height: 22px;
}

/* .mobile-menu-footer {

  padding: 30px;
  display: flex;
  justify-content: space-between;
} */


.mobile-menu-footer {
  display: flex;

  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding: 30px 30px 80px 30px;
}

.mobile-menu-footer nav a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding: 4px 0 4px 0;
  font-family: "Velo WWangle";
  font-size: 11px;
  font-weight: normal;
  line-height: 15px;
  color: var(--White, #fff);
}


.mobile-menu-footer .description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  /* width: 78%; */
  padding: 20px 0 20px 0;
  font-family: "Velo WWangle";
  font-size: 9px;
  font-weight: normal;
  line-height: 14px;

  color: var(--White, #fff);
}

/* for age confirmation toggle */

/* Section:  Age */
.age-section {
  height: 90vh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-top: 60px;
  /* background: linear-gradient(181.78deg, #345B80 7.21%, #376185 30.74%, #4482A3 63.7%, #58B1CC 183.26%); */
}

.age-section .left-column .title {
  color: var(--White, #fff);
  text-align: left;
  font-family: "Velo WWangle", sans-serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 62px;
  letter-spacing: -0.8px;
}

.age-section .left-column .description {
  color: var(--White, #fff);
  text-align: left;
  font-family: "Velo WWangle", "Avenir", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: normal;
  line-height: 28px;
}

.age-section .description-box {
  margin-bottom: 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.age-section .note-text {
  font-size: 9px;
  line-height: 14px;
  text-align: left;
  color: #ffffff;
  margin-top: 20px;
}

.age-section .description-box .two-columns {
  height: 100%;
}

.age-section .left-column {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  margin-top: 40px;
}

.age-section .right-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.age-section .tropical-pouch-image img {
  position: absolute;
  bottom: 84px;
  right: 70px;
  width: 340px;
}

.age-section .purple-pouch-image img {
  position: absolute;
  width: 227px;
  left: 50px;
  top: 0;
}

/* Form Inputs */

.age-confirm-form {
  display: flex;
  flex-direction: column;
  /* Stacks items vertically */
  align-items: flex-start;
  /* Aligns the form elements to the start */
  margin-top: 20px;
  width: 100%;
}

/* Wrapper for the label and input field */
.age-confirm-form .input-wrapper {
  margin-bottom: 15px;
  /* Adds space between input fields */
  width: 100%;
  /* Make input field take full width */
}

/* Label styling */
.age-confirm-form .input-wrapper label {
  display: block;
  margin-bottom: 0.7rem;
  font-size: 1rem;
  line-height: 1.375rem;
  color: white;
}

/* Input styling */
.age-confirm-form .input-wrapper .input {
  width: 100%;
  /* Input field takes the full width */
  color: #345B80;
  font-size: 1rem;
  font-family: 'Velo WWangle';
  padding: 1.3rem 2.4rem;
  border-radius: 0.75rem;
  border: none;
}

.age-confirm-form .input-wrapper .input::placeholder {
  color: #345B80;
}

/* Focus visible styling */
.age-confirm-form .input-wrapper .input:focus-visible {
  border: none;
  outline: none;
}

/* Icon inside input */
.age-confirm-form .input-field-wrapper img {
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.25rem;
}

/* Show icon on error */
.age-confirm-form .input-error .input-field-wrapper img {
  opacity: 1;
}

/* Input error state */
.age-confirm-form .input-error .input {
  background: #ffd1d1 !important;
  color: #f00 !important;
}

/* Button styling */
.age-confirm-form .age-confirm-button {
  font-family: 'Velo WWangle', 'sans-serif';
  display: flex;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375rem;
  background: #FAEC37;
  border: none;
  outline: none;
  width: 100%;
  padding: 1.36rem 0;
  border-radius: 0.75rem;
  color: #345b80;
  filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.16));
  cursor: pointer;
  margin: 10px 0;
}

.age-confirm-form .age-confirm-button:hover {
  background-color: #FAEC98;
}


/* Section: Hero */

.hero-section {
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-top: 60px;
}

.hero-section .left-column .title {
  color: var(--White, #fff);
  text-align: left;
  font-family: "Velo WWangle", sans-serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 62px;
  /* 100% */
  letter-spacing: -0.8px;

}

.hero-section .left-column .description {
  color: var(--White, #fff);
  text-align: left;
  font-family: "Avenir", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 350;
  line-height: 28px;
  /* 127.273% */
}

.hero-section .description-box {
  margin-bottom: 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-section .description-box .two-columns {
  height: 100%;

}

.hero-section .left-column {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  margin-top: 40px;
}

.hero-section .right-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-section .bright-pouch-image img {
  position: absolute;
  bottom: 84px;
  right: 70px;
  width: 340px;

}

.hero-section .purple-pouch-image img {
  position: absolute;
  width: 227px;
  left: 50px;
  top: 0;
}


/* Section: whats included */

.whats-included-section {
  padding: 20px 0;
  display: flex;
  align-items: center;
  width: 100%;
}

.whats-included-section .description-box {
  margin-bottom: 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.whats-included-section .title {
  font-size: 46px;
  width: 400px;
  color: var(--White, #fff);
  text-align: left;
  font-family: "Velo WWangle", sans-serif;
}

.whats-included-section .description-upper,
.whats-included-section .description-lower {
  font-size: 16px;
  max-width: 85%;
  color: var(--White, #fff);
  text-align: left;
  font-family: "Velo WWangle", sans-serif;
  line-height: 22px;
}

.whats-included-section .image-mobile {
  display: none;
}

.whats-included-section .image-web {
  display: flex;
  justify-content: center;
}

.whats-included-section .image-web img {
  width: 487px;
  border: 9px dashed rgba(111, 183, 205, 1);
  border-radius: 50%;
  padding: 20px;

}

.whats-included-section .button-group {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 20px;
  width: 80%;
}

.whats-included-section .button-group a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  border-radius: 12px;
  background: #faec37;
  color: var(--blue, #345B80);
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  font-style: normal;
  text-align: center;
  font-family: "Velo WWangle", sans-serif;

  filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.16));
  border: none;
  cursor: pointer;
}



/* Section: Certificate */

.certificate-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 60px;
}

.certificate-title {
  width: 80%;
  /* Width set to 50% */
  font-size: 46px;
  margin: 70px auto 20px auto;
  color: var(--White, #fff);
  font-family: "Velo WWangle", sans-serif;
  font-weight: 700;
  line-height: 52px;
  text-align: center;
}

.certificate-image img {
  width: 100%;
  max-width: 766px;
  margin: 40px 0 20px 0;
  margin-bottom: -3px;
}


/* faq section  */


.faq-section {

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-top: 20px;
}

.faq-title {
  font-size: 48px;
  font-weight: bold;
  margin: 20px 0;

  text-align: center;
  color: var(--White, #fff);
}

/* FAQ Item Styling */
.faq-item {
  background: linear-gradient(180deg, #4B97B8 0.06%, #4083A4 16.66%, #356b92 40.39%, #345B80 100%);
  padding: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-item:hover {
  background-color: #345B80;
}

.faq-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}



.faq-item-title {
  width: 80%;
  font-size: 40px;
  line-height: 57px;
  font-weight: 700;
  line-height: 22px;
  padding: 40px 0;
  color: var(--White, #fff);
}

.faq-item-arrow {

  transform: rotate(270deg);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-item-arrow {
  transform: rotate(360deg);
  /* Rotate the arrow when item is open */
}


.faq-item-description {
  color: var(--White, #fff);
  padding-top: 10px;
  font-size: 16px;
  line-height: 1.5;
}

.faq-item-description .faq-slides-icons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 40px 0;
}

.faq-item-description .faq-slides-icons img {
  width: 175px;
}



.faq-footer-box {

  padding: 30px 0;
  min-height: 550px;


}

.faq-footer-box .left-column {
  padding-right: 15px;
  /* Space between columns */
}

.faq-footer-box .right-column {
  padding-left: 15px;
  /* Space between columns */
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  /* Make this relative to contain absolute images */
}

.faq-footer-box .warning-text {
  font-size: 16px;
  color: var(--White, #fff);
  margin-bottom: 15px;
}
.faq-footer-box .warning-text p{
  margin: 0;
  padding: 0;
}

/* Web Button */
/* Web Button */
.faq-footer-box .web-button {
  display: flex;
  /* Enable flexbox for vertical and horizontal centering */
  justify-content: center;
  /* Center text horizontally */
  align-items: center;
  /* Center text vertically */
  width: 30%;
  height: 60px;
  border-radius: 12px;
  background: #faec37;
  color: var(--blue, #345B80);
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  font-style: normal;
  text-align: center;
  font-family: "Velo WWangle", sans-serif;
  filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.16));
  border: none;
  cursor: pointer;
  margin-top: 40px;
}

/* Mobile Button */
.faq-footer-box .mobile-button {
  display: none;
  /* Hide by default */
  justify-content: center;
  /* Center text horizontally */
  align-items: center;
  /* Center text vertically */
  width: 100%;
  height: 60px;
  border-radius: 12px;
  background: #faec37;
  color: var(--blue, #345B80);
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  font-style: normal;
  text-align: center;
  font-family: "Velo WWangle", sans-serif;
  filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.16));
  border: none;
  cursor: pointer;
  margin-bottom: 20px;
}



.faq-footer-box .bright-pouch-image img {
  position: absolute;
  bottom: -180px;
  right: 100px;
  width: 294px;
}

.faq-footer-box .purple-pouch-image img {
  position: absolute;
  width: 129px;
  left: 70px;
  top: 0;
}

.faq-footer-box .bright-pouch-image img,
.faq-footer-box .purple-pouch-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}




/* learn and win section  */

.learn-and-win-section {

  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 100px;
  /* Ensure the section takes full width */
}

.learn-and-win-section .section-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 57px;
  max-width: 685px;
  margin-bottom: 10px;
  color: var(--White, #fff);
  margin-left: auto;
  /* Center horizontally */
  margin-right: auto;
  /* Center horizontally */
  padding: 0 40px;
}

.learn-and-win-section .section-description {
  font-size: 16px;
  margin-bottom: 30px;
  max-width: 539px;
  font-weight: 400;
  color: var(--White, #fff);
  margin-left: auto;
  /* Center horizontally */
  margin-right: auto;
  /* Center horizontally */
}

.learn-and-win-section .prize-list-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--White, #fff);
}



/* Educational Video Page */
main.educational-video-wrapper {
  min-height:90vh;
  min-height:90lvh;
}
.educational-video-wrapper .container {
  max-width: 768px !important;
  margin-inline: auto;
  color: #EFEFEF;
  margin-bottom: 100px;
  padding: 0 25px;
  width: 100%;
  height: 100%;
}
.educational-video-wrapper .section-description{
  max-width: 768px;
}
.educational-video-wrapper .start-video {
  width: 100%; /* Full width */
  height: 60px;
  margin-top: 40px;
  margin-bottom: 50px;
  margin-inline: auto;
  color: #345B80;
  background: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  text-align: center;
  font-family: "Velo WWangle", sans-serif;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.16));
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 37px 17px;
}


.educational-video-wrapper .page-title{
  display: block;
  width:100%;
  margin-inline: auto;
}
.educational-video-wrapper .educational-video{
  font-size: 34px;
}
.educational-video .video-wrapper{
  position: relative;
}
.video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.educational-video-wrapper .start-test-btn a{
  margin-top: 34px;
  width: 100%;
}

.educational-video-wrapper .start-video p {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 19px;
}

.educational-video-wrapper .start-video img {
  width: 69px;
  height: 69px;
  object-fit: cover;
  transform: rotate(22deg);
  filter: drop-shadow(0 23px 16px rgba(0,0,0,0.16));
  -webkit-filter: drop-shadow(0 23px 16px rgba(0,0,0,0.16));
}

.educational-video-wrapper .educational-video-cover {
  background: rgba(0,0,0,0.4);
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: -1;
  top: 50%;
  transform: translateY(-50%);
}
.educational-video-wrapper iframe{
  max-width: 1200px;
  width: 100%;
  height: 90vh;
  height: 90lvh;
  aspect-ratio: 9/16;
  object-fit: contain;
  padding-inline: 10px;
  border-top: var(--educational-video-top-border) solid transparent;
  display: block;
  margin-inline: auto;
  padding-bottom: 10px;
}

.educational-video-wrapper #close-video,
.velo-video-close {
    color: #fff;
    top: 100px;
    position: absolute;
    right: 0;
    z-index: 2;
    padding: 10px;
    cursor: pointer;
    top: calc((0px - var(--educational-video-top-border) / 2));
    font-size: 34px;
}

.educational-video-wrapper .page-title{
  display: block;
}
.educational-video-wrapper.video-wrapper-quiz .video-modal{
  position:fixed;
  width: 100%;
  z-index: 99;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.educational-video-wrapper .video-modal{
  position:fixed;
  width: 100%;

  top: 50%;
  left: unset;
  z-index: 99;
  transform: translateY(-50%);
}



/* Container for the prize items */
.prize-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

/* Individual prize item */
.prize-item {
  text-align: center;
  width: 250px;
}


/* Wrapper for the image, creating a circular border */
.prize-image-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  padding: 20px;
  border: 2px dashed rgba(111, 183, 205, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

/* Prize image styling */
.prize-image-wrapper img {
  width: 100%;
  border-radius: 50%;
  height: 100%;
  object-fit: cover;
}

/* Title styling for each prize */
.prize-image-title {
  margin-top: 10px;
  font-size: 14px;
  color: #ffffff;
  /* Change to preferred color */
  font-weight: bold;
}





/* start test button  */
.start-test-btn {
  display: flex;
  justify-content: center;
}

.start-test-btn a {
  display: flex;
  /* Enable flexbox for vertical and horizontal centering */
  justify-content: center;
  align-items: center;
  width: 30%;
  height: 60px;
  border-radius: 12px;
  background: #faec37;
  color: var(--blue, #345B80);
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  text-align: center;
  font-family: "Velo WWangle", sans-serif;
  filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.16));
  border: none;
  cursor: pointer;
  margin-top: 40px;
}

/* footer  */

/* footer  */

body.loading footer {
  display: none;
}

body:not(.loading) footer {
  display: flex;
}


footer {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  bottom: 0;
  width: 100%;
  height: 60px;
  background-color: #f8f8f8;
  padding: 0 20px;
  z-index: 10;

}

footer .bottom-bar {
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
}

footer .bottom-bar p {
  margin: 0;
  color: #000;
  font-size: 14px;
  text-align: center;
}

footer .floating-warning {
  position: absolute;
  left: 20px;
  top: -100px;
  display: flex;
  align-items: center;
  max-width: 200px;
}

footer .floating-warning img {
  max-width: 90px;
  max-height: 90px;
}

footer .floating-warning p {
  font-size: 12px;
  color: #EFEFEF;
  margin-left: 10px;
  width: 119px;
}




.hidden{
  display: none !important;
}