/*
    Theme Name: LianSeguros Builder
    Theme URI: https://lianseguros.com
    Author: GTI-SAS
    Author URI: https://gti-sas.com
    Description: Tema base moderno y adaptable para empresas tecnológicas, compatible con Themify Builder.
    Version: 1.0
    License: GPL-2.0+
    License URI: https://www.gnu.org/licenses/gpl-2.0.html
    Text Domain: lianseguros
    Tags: responsive, bootstrap, professional, themify-builder, business
    */

/* =======================
    RESET GENERAL
    ========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  font-size: 14px;
  font-weight: 300;
  color: #363434;
  background: #fffefe;
  text-align: center;
/* Elimina espacio inferior no deseado */
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h3,
h4,
h5,
h6,
.entry-title,
body.single-post .entry-title,
body.page .entry-title,
body.category .entry-title,
.widget-title,
.site-description,
body,
p,
blockquote,
li,
a,
strong,
b,
em {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

h1 {
  font-family: "Spring LP Light", sans-serif !important;
}

/* ================================
  Fuente personalizada
================================= */
@font-face {
  font-family: "Spring LP Ligh";
  src:  url("/assets/fonts/spring-lp-light.otf") format("opentype"),
        url("/assets/fonts/Spring-LP-Light-Regular.otf") format("opentype"),
        url("/assets/fonts/Spring-LP-Std-Light.otf") format("opentype"),
        url("/assets/fonts/Spring-LP-Light-Regular.ttf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat LP";
  src:  url("/assets/fonts/spring-lp-light.otf") format("opentype"),
        url("/assets/fonts/Spring-LP-Light-Regular.otf") format("opentype"),
        url("/assets/fonts/Spring-LP-Std-Light.otf") format("opentype"),
        url("/assets/fonts/Spring-LP-Light-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 300;
}

/* =======================
    FONDO INICIAL INDEX
    ========================== */
.fondo {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    50deg,
    #71aa3c 0%,
    #71aa3c 30%,
    #0b8e37 30%,
    #0b8e37 40%,
    #1c6434 40%,
    #1c6434 50%,
    white 50%,
    white 60%,
    #ecedef 60%,
    #ecedef 70%,
    #d8d9dd 70%,
    #d8d9dd 80%,
    #ffffff 80%,
    #ffffff 100%
  );
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1000;
}

/* =======================
    LOGO
    ========================== */
.logo-servicios {
  position: relative;
  left: 85px;
}

.module-image.auto_fullwidth :is(.image-wrap, img) {
  display: block;
  width: 100%;
  left: -24%;
}
.logo {
  position: relative;
  width: 8em;
}
.logo-servicios {
	position: initial;
	align-content: center;
	display: flex;
	gap: 20%;
	padding-top: 0%;
}

.img-redonda {
border-radius: 50%;
border: 2px solid #1c6434;
}

.img-redonda:hover {
  border-radius: 50%;         /* Redondea completamente la imagen */
  border: 3px solid #2a2a2b;  /* Línea del borde (color corporativo LianSeguros) */
  width: 110px;               /* Tamaño ajustable */
  height: 110px;
}


/* =======================
    MENÚ PRINCIPAL
    ========================== */
/*MENU DE LA PRINCIPAL*/

.menu{
    display: flex;
    justify-content: flex-end;
    padding: 18px 10px;
    position: relative;
    top: 0;
    right: 0;
    z-index: 2000;
}

.menu ul {
display: flex;
gap: initial;
list-style: none;
margin: 0;
padding: 0;
gap: 0;
}

.menu li {
  position: relative;
}

.menu ul li a {
    color: #1c6434;
    padding: 8px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    transition: background 0.3s, transform 0.2s, color 0.3s;
}

.menu ul li a:hover {
  background: hsla(140, 56%, 25%, 0.63); /* verde más claro al pasar el mouse */
  transform: translateY(-2px);
  text-decoration: none;
  color: #ffffff;
}

/* Botón hamburguesa fijo y visible sobre el header */
.menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1;
  font-size: 28px;
  color: #1c6434;
  background: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  cursor: pointer;
  display: none; /* Oculto en pantallas grandes */
  text-align:left
}

/*Menu adicional para manejo de submenus*/

/* Estilos base del menú principal */
.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  text-align:left
}

/* Estilos para cada ítem */
.menu ul li {
  position: relative;
}

.menu ul li a {
  color: #1c6434;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  padding: 10px 15px;
  display: block;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.menu ul li a:hover {
  background-color: #70a83b;
  color: #fff;
}

/* Submenús ocultos por defecto */
.menu ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  padding: 10px 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 10px;
  min-width: 180px;
  z-index: 1000;
}

/* Mostrar submenú al pasar el mouse */
.menu ul li:hover > ul {
  display: block;
}

.menu ul li ul li a {
  padding: 10px 15px;
  color: #1c6434;
  white-space: nowrap;
  font-size: 14px;
}

.menu ul li ul li a:hover {
  background-color: #70a83b;
  color: #fff;
}


/* =======================
    HEADER
    ========================== */
.header {
  background: #ffffff;
  border-bottom: 2px solid #eee;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.container-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px;
}

/* =======================
    TÍTULOS Y CONTENIDO
    ========================== */

    /* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 130px 50px 60px;
  /*background: linear-gradient(135deg, rgba(28, 100, 52, 0.6), hsla(91, 48%, 45%, 0.6),hsla(0, 0%, 100%, 0.6), hsla(220, 9%, 93%, 0.6));*/
  color: white;
}
.hero h1,
.image-title {
  font-family: "Spring LP Light", sans-serif;
  font-size: 45px;
  padding-top: 100px;
  color: #020202;
  width: 420px;
}

.contenido .hero-content{
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  margin-bottom: 30px;
  color: #020202;
  padding: 20px;
  max-width: 50%;
}

.titulos {
  font-family: "Montserrat", italic;
  font-size: 32px;
}

/* =======================
    SERVICIOS / IMÁGENES
    ========================== */
.servicios {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 80px;
  padding: initial;
  margin-inline: 5%;
  max-width: initial;
  width: 250%;
}

.servicio {
  text-align: center;
  width: inherit;
}

.servicio img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  object-fit: fill;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  left: 10%;
  position: absolute;
}

.servicio p {
  font-size: 18px;
  font-weight: 600;
  margin-top: 14px;
}

/*SECCIONN PARA CONTENIDOS DE LIANSEGUROS*/ /* HEADER */

.borde-logo {
  position: relative;
  width: 45%;
  height: 115%;
}

.imagen-servicio {
  width: 25%;
  height: 45%;
  border-radius: 50%;
  object-fit: contain;
  position: inherit;
  z-index: 5;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  left: 8%;
}

.borde-decorativo {
  position: absolute;
  top: auto;
  left: 5%;
  width: 250px;
  height: 200px;
  z-index: 1;
  pointer-events: none;
}

.popup-servicio {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(77, 77, 77, 0.219);
}

.popup-contenido {
  background-color: #aca7a757;
  margin: 10% auto;
  padding: 30px;
  border-radius: 10px;
	border: 6px solid #1c6434;
  width: 90%;
  max-width: 600px;
  position: relative;
  color: #000;
  text-align: left;
}

.popup-contenido::before {
  content: "";
  display: block;
  height: 6px;
  background-color: #1c6434;
  border-radius: 10px 10px 0 0;
  margin: -30px -30px 20px -30px;
}

.cerrar-popup {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  font-weight: bold;
  color: #1c6434;
  cursor: pointer;
}

.ver-mas-servicio {
  color: #1c6434;
  text-decoration: underline;
  cursor: pointer;
}

/* =======================
    REDES SOCIALES
    ========================== */
.social-icons {
  text-align: center;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  text-align: center;
  margin-bottom: 20px;
}

.social-icons a {
  background-color: #1e7032;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  transition: background-color 0.3s;
  gap: 1rem;
}

.social-icons a:hover {
  background-color: #ffffff;
  color: #1e7032;
  font-size: 20px;
  width: 43px;
  height: 43px;
  box-shadow: 0 0 0 3px rgb(51, 2, 2); /* línea amarilla */
}

.social-section {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-title {
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 0.75rem;
    color: rgb(31, 30, 30);
    z-index: 1200;
}

.social-icon i {
    font-size: 2rem;
}

    /* =======================
    FOOTER
    ========================== */

.footer {
  width: 100%;
  padding: 0 20px;
  background-color: hsla(140, 56%, 25%, 0.6); /* Verde con transparencia */
  color: white;
  text-align: center;
  position: relative;
  z-index: 1500;
  box-sizing: border-box;
}

.footer-widgets,
.footer .container,
.footer .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: initial;
}
.container {
  width: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.footer a {
  color: white;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.footer a:hover {
  color: #000000;
  text-decoration: none;
}

/* Ocultar footer solo en móviles y solo en la plantilla page-inicio.php */
.page-template-page-inicio section.footer,
.page-template-page-inicio footer {
  display: none !important;
}

/*=====================================
FORMULARIO DE CONTACTENOS
========================================*/

        /* Estilos del formulario */
        .lianseg-form {
            max-width: 600px;
            margin: 0 auto;
            padding: 20px;
            background: #f9f9f9;
            border-radius: 8px;
            text-align: left;
            font-family:Montserrat LP,Verdana, Geneva, Tahoma, sans-serif;
        }
        
        .lianseg-form label {
            display: block;
            margin: 15px 0 5px;
            font-weight: bold;
            color: #333;
        }
        
        .lianseg-form input[type="text"],
        .lianseg-form input[type="email"],
        .lianseg-form input[type="tel"],
        .lianseg-form select,
        .lianseg-form textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            box-sizing: border-box;
        }
        
        .lianseg-form textarea {
            height: 120px;
        }
        
        .lianseg-form input[type="submit"] {
            background: #2a6496;
            color: white;
            border: none;
            padding: 12px 20px;
            margin-top: 20px;
            cursor: pointer;
            border-radius: 4px;
            font-size: 16px;
            width: 100%;
            transition: background 0.3s;
        }
        
        .lianseg-form input[type="submit"]:hover {
            background: #1d4b75;
        }
        
        .checkbox-label {
            display: flex;
            align-items: center;
            margin: 15px 0;
            font-weight: normal;
        }
        
        .checkbox-label input {
            width: auto;
            margin-right: 10px;
        }
        
        /* Estilos de notificación */
        .lianseguros-notice {
            padding: 15px;
            margin-bottom: 20px;
            border-radius: 4px;
        }
        
        .lianseguros-notice.error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        .lianseguros-notice.success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        /* Estilos de confirmación */
        .lianseguros-confirmation {
            max-width: 600px;
            margin: 0 auto;
            padding: 20px;
            background: #f9f9f9;
            border-radius: 8px;
        }
        
        .confirmation-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .confirmation-header h3 {
            margin: 0;
            color: #2a6496;
        }
        
        .confirmation-header p {
            margin: 5px 0 0;
            color: #666;
        }
        
        .confirmation-details table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .confirmation-details th {
            text-align: left;
            padding: 10px 5px;
            width: 30%;
            color: #555;
        }
        
        .confirmation-details td {
            padding: 10px 5px;
            border-bottom: 1px solid #eee;
        }
        
        .user-name {
            font-size: 18px;
            font-weight: bold;
            color: #333;
        }
        
        .confirmation-footer {
            margin-top: 30px;
            padding-top: 15px;
            border-top: 1px solid #eee;
            text-align: center;
            color: #777;
            font-size: 14px;
        }
        
        .return-home {
            display: inline-block;
            margin-top: 15px;
            padding: 8px 20px;
            background: #2a6496;
            color: white;
            text-decoration: none;
            border-radius: 4px;
        }


/* =======================
    RESPONSIVE
    ========================== */

@media (max-width: 991px) {

  .menu-toggle {
    display: block;
  }

  /* Menú principal en columna */
  .menu ul {
    flex-direction: column;
    gap: 0;
  }

  /* Estilo del ítem principal */
  .menu ul li {
    width: 100%;
    border-bottom: 1px solid #eee;
    position: relative;
  }

  .menu ul li a {
    padding: 12px 20px;
  }

  /* Submenús en móviles: ocultos por defecto */
  .menu ul li ul {
    display: none;
    position: relative;
    top: 0;
    left: 0;
    padding-left: 20px;
    box-shadow: none;
    background: none;
    border-radius: 0;
  }

  /* Submenús desplegados */
  .menu ul li.open > ul {
    display: block;
  }

  /* Íconos o flechas (opcional) */
  .menu ul li.has-submenu > a::after {
    content: "▼";
    float: right;
    font-size: 12px;
    margin-top: 4px;
  }
}

/* OCULTAR menú toggle en pantallas grandes */
@media (max-width: 992px) {
          .container-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px;
}
@media (min-width: 992px) {
  .menu {
    display: none !important;
  }

  /* Asegura que el menú principal se vea normalmente en escritorio */
  .menu {
    display: flex !important;
    position: static;
    flex-direction: row;
    justify-content: flex-end;
    width: auto;
    background: transparent;
    box-shadow: none;
  }
  
      .container-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px;
}

  .menu ul {
    display: flex;
    flex-direction: row;
    gap: 20px;
    text-align:left
  }

  .menu ul li ul {
    position: absolute;
    top: 100%;
    display: none;
  }

  .menu ul li:hover > ul {
    display: block;
  }
}

@media (max-width: 1280px) {
.logo {
  position: relative;
    width: 8em;
    right: 60%;
  }
  .logo-servicios img {
    position: relative;
    right: 33%;
    width: 120px;
  }

  .header {
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
  }
  .joinchat__button {
	position: absolute;
	z-index: 2;
	bottom: 17px;
	right: 92px;
	height: var(--s);
	width: var(--s);
	background: #25d366 var(--joinchat-ico) 50%/60% no-repeat;
	color: inherit;
	border-radius: 50%;
	box-shadow: 1px 6px 24px 0 rgba(7,94,84,.24);
	cursor: pointer;
	transition: background-color .2s linear;
}
}

/* Estilos responsive para móviles y tablets 768px */
@media (max-width: 768px) {

  .menu {
    padding: 15px 16px;
    display: flex;
    justify-content: flex-end;
    position: absolute;
    top: 15px;
    right: -20px;
    z-index: 2000;
  }

  .menu li {
    position: relative;
  }

  .menu ul {
    display: none; /* por defecto oculto para móviles */
    flex-direction: column;
    background-color: #ffffff;
    padding: 10px;
    border-radius: 10px;
    position: fixed;
    top: 50px;
    right: 56px;
    width: 205px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    align-items: flex-start;
    text-align: left;
  }

  .menu ul.show {
    display: flex; /* visible cuando se activa desde JS */
  }

  .menu ul li {
    width: 100%;
  }

  .menu ul li a {
    color: #323333;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 500;
    display: block;
    width: 100%;
    transition: background 0.3s, transform 0.2s, color 0.3s;
    z-index: 2000;
  }

    .menu-toggle {
      display: block;
    }

  .logo {
      position: relative;
      width: 8em;
      right: 60%;
  }

  .logo-servicios {
      position: relative;
      right: 33%;
  }

  .header {
      flex-direction: column;
      align-items: flex-start;
      text-align: center;
  }

  html :where(img[class*="wp-image-"]) {
      height: auto;
      max-width: 100%;
      width: 65%;
  }

  .themify_builder_content-98 .tb_sr8q131.module-service-menu,
  .themify_builder_content-98 .tb_qd5v131.module-service-menu {
      margin-bottom: 5px;
  }

  .module .tb-image-wrap {
      margin: 0 -1.5em 1em 0;
  }

  .footer-widgets,
  .footer .container,
  .footer .row {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .footer .col-md-4 {
      width: 100%;
      max-width: 100%;
      padding: 10px 0;
      z-index: 2000;
  }

  .footer ul {
      padding-left: 0;
  }

  .footer .row {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .footer .col-md-4 {
      width: 100%;
      margin-bottom: 20px;
  }

  .social-icons {
      justify-content: center;
  }

  .social-icons a:focus,
  .social-icons a:active,
  .social-icons a:hover {
    background-color: #ffffff;
    color: #1e7032;
    font-size: 20px;
    width: 43px;
    height: 43px;
    box-shadow: 0 0 0 3px rgb(51, 2, 2); /* línea amarilla */
  }
  }

  @media (max-width: 920px) {

  .menu {
    padding: 15px 16px;
    display: flex;
    justify-content: flex-end;
    position: absolute;
    top: 15px;
    right: -20px;
    z-index: 2000;
  }

  .menu li {
    position: relative;
  }

  .menu ul {
    display: none; /* por defecto oculto para móviles */
    flex-direction: column;
    background-color: #ffffff;
    padding: 10px;
    border-radius: 10px;
    position: fixed;
    top: 50px;
    right: 56px;
    width: 205px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    align-items: flex-start;
    text-align: left;
  }

  .menu ul.show {
    display: flex; /* visible cuando se activa desde JS */
  }

  .menu ul li {
    width: 100%;
  }

  .menu ul li a {
    color: #323333;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 500;
    display: block;
    width: 100%;
    transition: background 0.3s, transform 0.2s, color 0.3s;
    z-index: 2000;
  }

    .menu-toggle {
      display: block;
    }

  .logo {
      position: relative;
      width: 8em;
      right: 60%;
  }

  .logo-servicios {
      position: relative;
      right: 33%;
  }

  .header {
      flex-direction: column;
      align-items: flex-start;
      text-align: center;
  }

  html :where(img[class*="wp-image-"]) {
      height: auto;
      max-width: 100%;
      width: 65%;
  }

  .themify_builder_content-98 .tb_sr8q131.module-service-menu,
  .themify_builder_content-98 .tb_qd5v131.module-service-menu {
      margin-bottom: 5px;
  }

  .module .tb-image-wrap {
      margin: 0 -1.5em 1em 0;
  }

  .footer-widgets,
  .footer .container,
  .footer .row {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .footer .col-md-4 {
      width: 100%;
      max-width: 100%;
      padding: 10px 0;
      z-index: 2000;
  }

  .footer ul {
      padding-left: 0;
  }

  .footer .row {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .footer .col-md-4 {
      width: 100%;
      margin-bottom: 20px;
  }

  .social-icons {
      justify-content: center;
  }

  .social-icons a:focus,
  .social-icons a:active,
  .social-icons a:hover {
    background-color: #ffffff;
    color: #1e7032;
    font-size: 20px;
    width: 43px;
    height: 43px;
    box-shadow: 0 0 0 3px rgb(51, 2, 2); /* línea amarilla */
  }
  .joinchat__button {
    position: absolute;
    z-index: 2;
    bottom: 17px;
    right: 92px;
    height: var(--s);
    width: var(--s);
    background: #25d366 var(--joinchat-ico) 50%/60% no-repeat;
    color: inherit;
    border-radius: 50%;
    box-shadow: 1px 6px 24px 0 rgba(7,94,84,.24);
    cursor: pointer;
    transition: background-color .2s linear;
  }
}

/* 360x640px - móviles pequeños (por ejemplo, Galaxy S5) */
@media (max-width: 360px) {
  .menu ul li a {
    font-size: 14px;
    padding: 8px 12px;
  }

  .menu ul {
    width: 160px;
    right: 10px;
  }
  
    .menu-toggle {
    display: block;
  }

  .menu ul {
    display: none;
    flex-direction: column;
  }

  .menu ul.show {
    display: flex;
  }
  .joinchat__button {
	position: absolute;
	z-index: 2;
	bottom: 17px;
	right: 92px;
	height: var(--s);
	width: var(--s);
	background: #25d366 var(--joinchat-ico) 50%/60% no-repeat;
	color: inherit;
	border-radius: 50%;
	box-shadow: 1px 6px 24px 0 rgba(7,94,84,.24);
	cursor: pointer;
	transition: background-color .2s linear;
  }
    .themify_builder_content-2 .tb_x1ux742 {
    margin-top: 30px;
    margin-bottom: 100%;
  }
}


/* 375x667px - iPhone 6/7/8 */
@media (max-width: 375px) {
  .menu ul li a {
    font-size: 14px;
    padding: 8px 14px;
  }

  .menu ul {
    width: 170px;
    right: 10px;
  }
  .joinchat__button {
	position: absolute;
	z-index: 2;
	bottom: 17px;
	right: 92px;
	height: var(--s);
	width: var(--s);
	background: #25d366 var(--joinchat-ico) 50%/60% no-repeat;
	color: inherit;
	border-radius: 50%;
	box-shadow: 1px 6px 24px 0 rgba(7,94,84,.24);
	cursor: pointer;
	transition: background-color .2s linear;
}
  .themify_builder_content-2 .tb_x1ux742 {
    margin-top: 30px;
    margin-bottom: 100%;
  }
}

/* 768x1024px - tablets verticales (iPad vertical) */

@media (max-width: 1024px) {
  .themify_builder_content-2 .tb_x1ux742 {
    margin-top: 30px;
    margin-bottom: 100%;
  }
}


@media (max-width: 820px) {
    .menu ul {
      flex-direction: column;
      width: 200px;
      right: 15px;
      top: 50px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .container-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
.themify_builder_content-2 .tb_84jm743 {
  margin-bottom: -7px;
  margin-top: -4px;
  padding: 0;
}

.themify_builder_content-2 .tb_tbhm248 {
  padding-left: 0;
  margin-bottom: -8px;
  padding-top: 93px;
  padding-right: 0;
}
  .themify_builder_content-2 .tb_x1ux742 {
    margin-top: 30px;
    margin-bottom: 100% !import;
  }

    .menu ul li a {
      font-size: 15px;
      padding: 10px;
    }

    .menu ul li a:hover,
    .menu ul li a:focus,
    .menu ul li a:active {
      background: #70a83b;
      transform: translateY(-2px);
      color: #ffffff;

  .menu-toggle {
      display: block;
    }

    .menu ul {
      display: none;
      flex-direction: column;
    }

    .menu ul.show {
      display: flex;
    }

    }

    .joinchat__button {
    position: absolute;
    z-index: 2;
    bottom: 17px;
    right: 92px;
    height: var(--s);
    width: var(--s);
    background: #25d366 var(--joinchat-ico) 50%/60% no-repeat;
    color: inherit;
    border-radius: 50%;
    box-shadow: 1px 6px 24px 0 rgba(7,94,84,.24);
    cursor: pointer;
    transition: background-color .2s linear;
  }
}
@media (min-width: 768px) {
  .themify_builder_content-2 .tb_tbhm248 {
    justify-self: center;
    align-self: auto;
    gap: 0;
    align-items: inherit;
    align-content: center;
    justify-content: center;
    justify-items: center;
    grid-auto-flow: row;
  }
    .themify_builder_content-2 .tb_x1ux742 {
    margin-top: 30px;
    margin-bottom: 100%;
  }
}

@media (min-width: 600px) {
  .themify_builder_content-2 .tb_oydl753.module-image {
    padding-right: 0;
    padding-left: 0;
    padding-top: 62px;
    margin-left: 6px;
    margin-right: 5px;
  }
    .themify_builder_content-2 .tb_x1ux742 {
    margin-top: 30px;
    margin-bottom: 100%;
  }
}