/*************** font-family ******************/
.fo{
  font-family: "Oswald", sans-serif;
}
.fi{
  font-family: "Inter", sans-serif;
}

/****** header  section **********/
.nav-social-link {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-social-link a img {
  width: 20px;
}

.tm-container {
  position: relative;
  display: inline-block;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .tm-container {
    display: none;
  }
}
.tm-container .tm-plus {
  cursor: pointer;
  font-size: 14px;
  transition: transform 0.25s ease;
}
.tm-container .tm-menu {
  position: absolute;
  top: 26px;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: 0.25s ease;
}
.tm-container .tm-menu.tm-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 999999;
}
.tm-container .tm-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  text-align: left;
}
.tm-container .tm-link:hover {
  text-decoration: none;
}

/*************************  header section ************************/
.lang-selector {
  width: 180px;
  margin-top: 30px;
  position: relative;
  font-family: Arial, sans-serif;
}
@media (max-width: 767px) {
  .lang-selector {
    display: block;
    margin-top: 0;
    width: 100%;
  }
}
.lang-selector .selected {
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  border: 1px solid #ddd;
  border-radius: 1px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 18px;
}
.lang-selector .selected .icon img {
  width: 22px;
  height: 22px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.lang-selector .selected .arrow {
  margin-left: auto;
  width: 10px;
  height: 10px;
  color: #fff;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: 0.3s;
}
.lang-selector.open .selected {
  border-bottom: none;
}
.lang-selector.open .selected .arrow {
  transform: rotate(-135deg);
}
.lang-selector .options {
  position: absolute;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  border-top: none;
  border: 1px solid #ddd;
  border-top: none;
  padding: 0;
  display: none;
  z-index: 99;
}
.lang-selector .options li{
  list-style: none;

}
.lang-selector .options li a{
  color: #fff;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  cursor: pointer;
  text-decoration: none;
}
.lang-selector .options li .icon img {
  width: 20px;
  height: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.lang-selector .options li:hover {
  background: rgba(110, 110, 110, 0.5);
}

.main-header {
  width: 100%;
  z-index: 10;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
  /*************lang- dropdown *************/
  /************end lang- dropdown *********************/
}
@media (max-width: 767px) {
  .main-header {
    flex-direction: column-reverse;
    position: relative;
  }
}
.main-header .navbar {
  width: 100%;
  padding: 0 230px 0 200px;
}
@media (max-width: 767px) {
  .main-header .navbar {
    padding: 14px 10px;
    background-color: #001245;
  }
}
.main-header .navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 21px;
  margin: 0;
  padding: 0;
}
.main-header .navbar .navbar-brand .nav-logo-text {
  color: #fff;
}
.main-header .navbar .navbar-brand .nav-logo-text h3 {
  font-size: 22px;
  margin: 0;
  line-height: normal;
  font-weight: 900;
}
.main-header .navbar .navbar-brand .nav-logo-text span {
  font-size: 15px;
}
.main-header .navbar .navbar-toggler {
  display: none;
  background-color: #fff;
  padding: 0;
}
.main-header .navbar .navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}
.main-header .navbar .navbar-toggler[aria-expanded=false] .navbar-humburger-icon .fa-bars {
  display: block;
}
.main-header .navbar .navbar-toggler[aria-expanded=false] .navbar-humburger-icon .fa-xmark {
  display: none;
}
.main-header .navbar .navbar-toggler[aria-expanded=true] .navbar-humburger-icon .fa-bars {
  display: none;
}
.main-header .navbar .navbar-toggler[aria-expanded=true] .navbar-humburger-icon .fa-xmark {
  display: block;
}
@media (max-width: 767px) {
  .main-header .navbar .navbar-toggler {
    background-color: transparent;
    color: #fff;
    display: block;
  }
  .main-header .navbar .navbar-toggler .navbar-humburger-icon {
    font-size: 20px;
    width: 30px;
    height: 30px;
    display: inline-block;
  }
}
.main-header .navbar .navbar-collapse {
  color: #fff;
  display: block;
  flex-basis: auto;
}
.main-header .navbar .navbar-collapse .split-col {
  display: flex;
  justify-content: end;
  align-items: center;
}
@media (max-width: 767px) {
  .main-header .navbar .navbar-collapse .split-col {
    justify-content: center;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .main-header .navbar .navbar-collapse {
    display: none;
  }
  .main-header .navbar .navbar-collapse.show {
    display: block;
    background-color: rgba(255, 255, 255, 0.8);
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    padding: 20px 0;
    transition: ease 0.3s;
    margin-top: 40px;
  }
  .main-header .navbar .navbar-collapse.show .navbar-nav {
    flex-direction: column;
    width: 100%;
  }
  .main-header .navbar .navbar-collapse.show .navbar-nav .nav-item {
    border-bottom: 1px solid #c1d4ff;
    text-align: center;
    width: 100%;
  }
  .main-header .navbar .navbar-collapse.show .navbar-nav .nav-item .nav-link {
    color: #000;
    font-size: 18px;
    margin-right: 0px;
  }
  .main-header .navbar .navbar-collapse.show .navbar-nav .nav-item .nav-link:hover,
  .main-header .navbar .navbar-collapse.show .navbar-nav .nav-item .nav-link .active {
    color: #056229;
  }
}
.main-header .navbar .navbar-collapse .navbar-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
}
.main-header .navbar .navbar-collapse .navbar-nav .d-none-lg {
  display: none;
}
@media (max-width: 767px) {
  .main-header .navbar .navbar-collapse .navbar-nav .d-none-lg {
    display: block;
  }
}
.main-header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  color: #fff;
  font-size: 18px;
  margin-right: 20px;
}
.main-header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover {
  color: #fff;
}

.custom-footer {
  background:#030f38;
  color: #ffffff;
  padding: 60px 20px;
  padding-bottom: 5px;
  position: relative;
  text-align: center;
  font-family: "Inter", sans-serif;
  /* Top Quote */
  /* Legal Notice Box */
  /* Bottom Copyright */
  /* Left floating icon circle */
}
.custom-footer .container {
  max-width: 900px;
  margin: auto;
  position: relative;
}
.custom-footer .social-links {
  margin-bottom: 20px;
}
.custom-footer .social-links a {
  text-decoration: none;
}
.custom-footer .social-links a img {
  width: 20px;
  height: 20px;
}
.custom-footer .footer-quote {
  font-size: 18px;
  color: #fff;
  margin-bottom: 20px;
}
.custom-footer .legal-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #ffffff;
}
.custom-footer .legal-box p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 20px;
  text-align: justify;
}
.custom-footer .legal-box .footer-links a {
  color: #ffffff;
  text-align: center;
  text-decoration: underline;
  font-weight: 600;
}
.custom-footer .legal-box .footer-links a:hover {
  text-decoration: underline;
}
.custom-footer .legal-box .footer-links span {
  margin: 0 10px;
  color: #c1d4ff;
}
.custom-footer .footer-copy {
  margin-top: 25px;
  font-size: 14px;
  opacity: 0.75;
}
.custom-footer .footer-icon {
  cursor: pointer;
  position: fixed;
  left: 40px;
  bottom: 40px;
  width: 55px;
  height: 55px;
  background: #1433d6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-footer .footer-icon img {
  width: 28px;
  height: 28px;
}
@media (max-width: 768px) {
  .custom-footer .footer-icon {
    left: 20px;
    bottom: 20px;
  }
}

body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

p {
  font-size: 14px;
}

.font-mobile {
   overflow: visible;
    white-space: normal;
    word-break: break-word;
  font-size: 18px;
}

.li-style-none {
  list-style: none;
}

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

/******home banner ********/
.video-banner {
  position: relative;
  height: 666px;
  overflow: hidden;
}
.video-banner .video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.video-banner .banner-content {
  padding-top: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: start;
  text-align: center;
}
.modal-b-w{
  margin-top: 40px;
  width: 75%!important;
}
@media (max-width: 767px) {
  .modal-b-w{
    width: 100%;
  }
  .video-banner {
    height: 60vh;
  }
  .video-banner .banner-content {
    width: 100%;
    display: block;
    padding: 0px 24px 10px 24px;
  }
}
.video-banner .banner-content .banner-title {
  font-size: 68px;
  text-align: start;
  margin-bottom: 16px;
  color: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  .video-banner .banner-content .banner-title {
    font-size: 28px;
  }
}
.video-banner .banner-content .banner-description {
  font-size: 22px;
  text-align: start;
  color: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  .video-banner .banner-content .banner-description {
    font-size: 18px;
  }
}
.video-banner .banner-content .banner-description a {
  color: white;
}

.action-btn {
  margin-top: 30px;
  width: 250px;
  border: 1px solid #fff;
  border-radius: 50px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  color: #fff;
  font-size: 20px;
  padding: 8px 16px;
  padding-left: 25px;
  letter-spacing: 3px;
  font-weight: 500;
}
.action-btn svg {
  color: #fff;
  fill: #fff;
}

/************************* Info section ************************/
.info-section {
  padding: 56px 0;
  background-color: #fff;
  font-family: "Inter", Arial, sans-serif;
}
@media (max-width: 767px) {
  .info-section {
    padding: 30px 0;
  }
  .video-banner {
    height: 70vh;
  }
}
.info-section .info-logo-wraper {
  padding-right: 120px;
}
@media (max-width: 767px) {
  .info-section .info-logo-wraper {
    padding: 0px;
  }
}
.info-section .big-logo {
  max-width: 420px;
  width: 100%;
  height: auto;
  display: block;
  margin: 91px auto 0px auto;
}
@media (max-width: 767px) {
  .info-section .big-logo {
    margin-top: 10px;
    width: 70%;
  }
}
.info-section .info-logo-title {
  display: block;
  text-align: center;
  font-size: 18px;
  color: #000;
  margin-top: 8px;
  font-family: "Inter", Arial, sans-serif;
}
@media (max-width: 767px) {
  .info-section .info-logo-title {
    padding: 0px 10px;
  }
}
.info-section .content-wrapper {
  padding-left: 135px;
}
@media (max-width: 767px) {
  .info-section .content-wrapper {
    padding: 10px;
    margin-top: 20px;
  }
}
.info-section .content-wrapper .title {
  font-size: 40px;
  color: #056229;
  font-weight: 800;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .info-section .content-wrapper .title {
    font-size: 26px;
    text-align: center;
  }
}
.info-section .content-wrapper .muted {
  font-size: 18px;
  color: #000;
  font-weight: 300;
  margin-bottom: 30px;
}
.info-section .content-box {
  margin-bottom: 44px;
}
.info-section .content-box h3 {
  color: #056229;
  font-size: 25px;
  margin-top: 0px;
  margin-bottom: 10px;
  font-weight: 800;
}
@media (max-width: 767px) {
  .info-section .content-box h3 {
    font-size: 22px;
  }
}
.info-section .content-box p ,.info-section .content-box li {
  font-size: 18px;
  color: #000;
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  margin-bottom: 0;
  font-weight: 100!important;
}

@media (max-width: 767px) {
  .info-section .content-box p,.info-section .content-box li {
    font-size: 16px;
  }
}
.info-section .content-box ul {
  padding-left: 19px;
}
.info-section .content-box ul li {
  font-size: 18px;
  color: #000;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 400;
  margin-bottom: 8px;
}

.img-section {
  max-width: 100%;
  height: auto;
}
.img-section img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

/*************************  section 4 ************************/
.tokenomics-section {
  padding: 60px 438px 60px 440px;
  background-color: #DBDBDB;
}
@media (max-width: 767px) {
  .tokenomics-section {
    padding: 20px;
  }
}
.tokenomics-section .title {
  text-align: center;
  font-size: 42px;
  color: #005f2f;
  font-weight: 700;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .tokenomics-section .title {
    font-size: 26px;
  }
}
.tokenomics-section .box {
  margin-bottom: 40px;
  
   overflow: visible;
    white-space: normal;
    word-break: break-word;
}
.tokenomics-section .box .heading {
  font-size: 26px;
  color: #0e6a35;
  font-weight: 600;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .tokenomics-section .box .heading {
    font-size: 20px;
  }
}
.tokenomics-section .box .sub-title {
  font-size: 18px;
  color: #000;
  font-weight: 300;
  font-family: "Inter", Arial, sans-serif;
  margin-bottom: 0px;
}
@media (max-width: 767px) {
  .tokenomics-section .box .sub-title {
    font-size: 16px;
    text-align: justify;
  }
}
.tokenomics-section .box ul {
  padding-left: 20px;
}
@media (max-width: 767px) {
  .tokenomics-section .box ul {
    padding-left: 0px;
  }
}
.tokenomics-section .box ul li,
.tokenomics-section .box p {
  margin-bottom: 8px;
  line-height: 1.6;
  font-size: 18px;
  white-space: normal;   /* allow wrapping */
  overflow: visible;     /* show full text */
  word-break: break-word;
}
@media (max-width: 767px) {
  .tokenomics-section .box ul li {
    list-style: circle;
  }
}
.tokenomics-section .box ul a {
  color: #0066cc;
  text-decoration: none;
}
.tokenomics-section .box ul a:hover {
  text-decoration: underline;
}

/*************************  section 6 ************************/
.buy-use-bridge-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}
.buy-use-bridge-section .bub-container {
  max-width: 1000px;
  margin: 0 auto;
}
.buy-use-bridge-section .bub-container .bub-title {
  text-align: center;
  color: #0b6b2a;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .buy-use-bridge-section .bub-container .bub-title {
    font-size: 26px;
  }
}
.buy-use-bridge-section .bub-container .bub-subsection {
  margin-bottom: 45px;
}
.buy-use-bridge-section .bub-container .bub-subsection h3 {
  color: #0b6b2a;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 0;
}
.buy-use-bridge-section .bub-container .bub-subsection h4 {
  color: #222;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
}
.buy-use-bridge-section .bub-container .bub-subsection p {
  color: #222;
  line-height: 1.7;
  margin-bottom: 12px;
  font-size: 18px;
}
.buy-use-bridge-section .bub-container .bub-subsection strong {
  color: #222;
  font-weight: 600;
}
.buy-use-bridge-section .bub-container .bub-subsection ul {
  margin-left: 1.5rem;
  color: #222;
  line-height: 1.8;
  list-style-type: disc;
}
@media (max-width: 767px) {
  .buy-use-bridge-section .bub-container .bub-subsection ul {
    margin-left: 0;
    padding-left: 10px;
  }
}
.buy-use-bridge-section .bub-container .bub-subsection ul li {
  margin-bottom: 8px;
  font-size: 18px;
}
@media (max-width: 767px) {
  .buy-use-bridge-section .bub-container .bub-subsection ul li {
    overflow: visible;
    white-space: normal;
    word-break: break-word;
  }
}
.buy-use-bridge-section .bub-container .bub-subsection ul li .emoji-list-item {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  align-items: flex-start;
}
.buy-use-bridge-section .bub-container .bub-subsection ul li .emoji-list-item span:first-child {
  font-size: 1.2rem;
  flex-shrink: 0;
}
.buy-use-bridge-section .bub-container .bub-subsection ul li .emoji-list-item span:last-child {
  color: #222;
  line-height: 1.6;
  font-size: 18px;
}

/*************************  section 7 ************************/
.img-section3 {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.img-section3 img {
  height: 936px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

/*************************  section 8 ************************/
.community-section {
  padding: 60px 20px;
  background-color: #f0f0f0;
}
.community-section .community-container {
  max-width: 1000px;
  margin: 0 auto;
}
.community-section .community-container .community-title {
  text-align: center;
  color: #0b6b2a;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  letter-spacing: -0.5px;
}
.community-section .community-container .community-subsection {
  margin-bottom: 45px;
  /* Legal Notes & FAQ styling */
}
.community-section .community-container .community-subsection strong {
  color: #222;
  font-weight: 600;
}
.community-section .community-container .community-subsection em {
  font-style: italic;
  color: #606060;
}
.community-section .community-container .community-subsection h3 {
  color: #0b6b2a;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 0;
}
.community-section .community-container .community-subsection h4 {
  color: #222;
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
}
.community-section .community-container .community-subsection p {
  color: #222;
  line-height: 1.7;
  margin-bottom: 12px;
  font-size: 18px;
}
.community-section .community-container .community-subsection ul {
  margin-left: 1.5rem;
  color: #222;
  line-height: 1.8;
  list-style-type: disc;
}
.community-section .community-container .community-subsection ul li {
  margin-bottom: 8px;
  font-size: 18px;
}
.community-section .community-container .community-subsection.legal-notes-section {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #ddd;
}
.community-section .community-container .community-subsection.legal-notes-section .legal-notes-title,
.community-section .community-container .community-subsection.legal-notes-section .faq-title {
  color: #0b6b2a;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.community-section .community-container .community-subsection.legal-notes-section .legal-notes-title .legal-icon,
.community-section .community-container .community-subsection.legal-notes-section .legal-notes-title .faq-icon,
.community-section .community-container .community-subsection.legal-notes-section .faq-title .legal-icon,
.community-section .community-container .community-subsection.legal-notes-section .faq-title .faq-icon {
  font-size: 1.3rem;
}

.faq-item {
  margin-bottom: 25px;
}
.faq-item .faq-question {
  color: #222;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 18px;
}
.faq-item .faq-answer {
  color: #222;
  line-height: 1.7;
  font-size: 18px;
  margin-bottom: 8px;
}
.faq-item .faq-answer a {
  color: #0b6b2a;
  text-decoration: underline;
}

/* Shareable content box */
.shareble-box {
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
  /* Emoji-based list items */
}
.shareble-box p {
  margin-bottom: 10px;
}
.shareble-box ul {
  margin-left: 1.2rem;
}
.shareble-box ul li {
  margin-bottom: 6px;
}
.shareble-box .emoji-item {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  align-items: flex-start;
}
.shareble-box .emoji-item .emoji-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  min-width: 20px;
}
.shareble-box .emoji-item .emoji-content  a{
  color: black;
}
.shareble-box .emoji-item .emoji-content {
  color: #222;
  line-height: 1.6;
  font-size: 18px;
}

.community-quote {
  font-style: italic;
  color: #606060;
  margin: 20px 0;
  padding-left: 15px;
}

/******************** privacy policy *************************/
/* Main Header */
.legal-header {
  position: relative;
  background-color: #001a3d;
  padding: 20px 40px;
  padding-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 0px;
}
@media (max-width: 767px) {
  .legal-header {
    padding: 10px;
    margin-bottom: 10px;
  }
}

/* Main Content */
.legal-content {
  padding: 60px 40px;
  max-width: 1000px;
  margin: 0 auto;
  /* Section Styling */
}
@media (max-width: 767px) {
  .legal-content {
    padding: 20px;
  }
}
.legal-content .legal-title {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 60px;
}
.legal-content .legal-title h1 {
  color: #0b6b2a;
  font-size: 30px;
  font-weight: 700;
  margin: 0;
  text-align: center;
  font-family: "Oswald", sans-serif;

}
@media (max-width: 767px) {
  .legal-content .legal-title h1 {
    font-size: 20px;

  }
}
.legal-content .legal-title-icon {
  font-size: 2rem;
}
.legal-content .legal-section {
  margin-bottom: 40px;
}
.legal-content .legal-section strong {
  color: #222;
  font-weight: 600;
}
.legal-content .legal-section ul {
  margin-left: 1.5rem;
  color: #222;
  line-height: 1.8;
  list-style-type: disc;
}
.legal-content .legal-section ul li {
  margin-bottom: 8px;
  font-size: 18px;
}
.legal-content .legal-section h2 {
  color: #222;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 0;
  font-family: "Oswald", sans-serif;

}
@media (max-width: 767px) {
  .legal-content .legal-section h2 {
    font-size: 20px;
  }
}
.legal-content .legal-section p {
  color: #222;
  line-height: 1.8;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 300;
}
@media (max-width: 767px) {
  .legal-content .legal-section p {
    font-size: 16px;
    text-align: justify;
  }
}
.legal-content .warning-box {
  background-color: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 15px 20px;
  margin: 15px 0;
  border-radius: 4px;
}
.legal-content .warning-box p {
  margin: 0;
  color: #856404;
}/*# sourceMappingURL=style.css.map */

.cookies {
	position: fixed;
	z-index: 10000;
	bottom: 0;
	display: flex;
	justify-content: space-between;
}

.cookies .text {
	display: flex;
	align-items: center;
}

.cookies .options a {
	text-decoration: underline;
}

.cookies .options .reject {
	border: 2px solid grey;
	text-wrap: nowrap;
}

.cookies .options button {
	margin-left: 10px;
	margin-right: 10px;
}

.cookie-footer {
	position: fixed;
	bottom: 5px;
	padding: 20px;
	z-index: 9999;
}

.whatsapp {
	padding: 15px;
	position: fixed;
	left: 50px;
	bottom: 70px;
	background-color: #0c27a0;
	border-radius: 50%;
}

.whatsapp img {
	filter: invert(1);
}
.three-cookie-link{
  padding-right: 13px;
}
.mobile{
  display: none!important;
}
.desktop{
  display: block!important;
}
@media only screen and (max-width: 767px) {
  .desktop{
    display: none!important;
  }
  .mobile{
    display: block!important;
  }
  .whatsapp{
    display: none!important;
  }
  .cookies {
		background: #e7e7e7 !important;
		overflow-x: scroll;
		padding-left: 10px !important;
		padding-right: 10px !important;
		display: inline;
	}

	.cookies .text {
		padding-top: 20px;
		display: block;
	}

	.cookies .options {
		display: flex;
		flex-direction: column-reverse;
	}

	.cookies .options a {
		text-wrap: nowrap;
	}

	.cookies .options button {
		width: 80% !important;
		margin-left: 2px;
		margin-right: 2px;
		margin-top: 5px;
	}

	.cookies .options .btn.close {
		position: absolute;
		top: 0;
		right: 0 !important;
		text-align: right;
		padding: 10px;
	}

	.whatsapp img {
		width: 20px;
		height: 20px;
	}
  .cookie-footer .btn-primary.reject {
    float: left;
  }
  .cookie-footer .btn-primary.accept {
    float: right;
  }
  
  .cookie-footer {
    bottom: 0px;
    padding: 0px;
    border-radius: 0!important;
    border-top:2px solid white;
	z-index: 9999;
  }
  .cookie-footer .privacy-text-detailed,
  .cookie-footer .text-primary
  {
    font-size: 14px!important;
  }
  .action-btn{
    width: 220px;
  }
  .mobile-image{
    height: 50vh!important;
    object-fit: contain;
  }
}
.language-dropdown {
  display: none;
}

.lang-selector.open .language-dropdown {
  display: block;
}