@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: LatoRegular;
  src: url(../fonts/Lato/Lato-Regular.ttf);
}
@font-face {
  font-family: LatoItalic;
  src: url(../fonts/Lato/Lato-Italic.ttf);
}
@font-face {
  font-family: RobotoSlabRegular;
  src: url(../fonts/Roboto_Slab/static/RobotoSlab-Regular.ttf);
}
@font-face {
  font-family: RobotoSlabBold;
  src: url(../fonts/Roboto_Slab/static/RobotoSlab-Bold.ttf);
}
/*GENERAL*/
body {
  /* font-family: LatoRegular; */
  font-family: "Lato", sans-serif;
  color: #000;
  margin: 0 auto;
  background: #f5f5f5;
}

body.menu-activate {
  overflow: hidden;
}

span.text-danger.field-validation-error {
  display: none;
}

.wrap-button {
  margin: auto;
  width: 320px;
}

button.button-default,
a.button-default {
  position: relative;
  border-radius: 20px;
  background: #9cfe00;
  color: #003540;
  width: 100%;
  height: 45px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 400;
  border: 0;
  outline: 0;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease-in-out;
  /* El fondo oscuro oculto que se expandirá */
}
button.button-default::before,
a.button-default::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #003540 0%, #075E6D 100%);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left; /* Expansión natural de izquierda a derecha */
  transition: transform 0.3s ease-in-out;
}
button.button-default,
a.button-default {
  /* Lo que ocurre al pasar el mouse (HOVER) */
}
button.button-default:hover, button.button-default:focus,
a.button-default:hover,
a.button-default:focus {
  color: #9cfe00 !important;
  /* El fondo oscuro llena el botón */
}
button.button-default:hover::before, button.button-default:focus::before,
a.button-default:hover::before,
a.button-default:focus::before {
  transform: scaleX(1);
}
button.button-default:hover, button.button-default:focus,
a.button-default:hover,
a.button-default:focus {
  /* INVERSIÓN DE COLORES EN EL CÍRCULO */
}
button.button-default:hover .border-circle, button.button-default:focus .border-circle,
a.button-default:hover .border-circle,
a.button-default:focus .border-circle {
  background: #9cfe00; /* El círculo se vuelve verde */
}
button.button-default:hover .border-circle img, button.button-default:focus .border-circle img,
a.button-default:hover .border-circle img,
a.button-default:focus .border-circle img {
  /* Filtro CSS para volver el SVG verde a color oscuro (#003540) */
  filter: brightness(0) saturate(100%) invert(15%) sepia(35%) saturate(3054%) hue-rotate(170deg) brightness(25%) contrast(100%);
}
button.button-default:active,
a.button-default:active {
  background: #656565 !important;
  color: #9cfe00 !important;
}
button.button-default .border-circle,
a.button-default .border-circle {
  position: absolute;
  top: 3.5px;
  right: 5px;
  height: 38px;
  background: linear-gradient(90deg, #003540 0%, #075E6D 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 38px;
  /* Transición suave para el cambio de color del círculo */
  transition: background 0.4s ease-in-out;
}
button.button-default .border-circle img,
a.button-default .border-circle img {
  /* Transición suave para el cambio de color de las flechas */
}

a.button-default.icon,
button.button-default.icon {
  padding-right: 10px !important;
}

.button-default.block-button {
  pointer-events: none;
  cursor: not-allowed;
}

.button-default.block-button.loading-button {
  background: black !important;
}
.button-default.block-button.loading-button .spinner-button img {
  width: 25px;
  padding-bottom: 3px;
}

a strong,
button strong {
  font-weight: 900;
}

.input-validation-error {
  outline: 2px solid #dc3545 !important;
}

form.form-insurance,
form.form-office-land {
  padding: 20px 25px;
  border-radius: 20px;
  background: #f5f5f5;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
}
form.form-insurance .form-title,
form.form-office-land .form-title {
  font-size: 18px;
  line-height: normal;
  margin-bottom: 10px;
}
form.form-insurance .input-section,
form.form-office-land .input-section {
  margin-bottom: 10px;
}
form.form-insurance .input-section input,
form.form-insurance .input-section select,
form.form-office-land .input-section input,
form.form-office-land .input-section select {
  width: 100%;
  border-radius: 20px;
  background: #fff;
  height: 45px;
  border: 0;
  padding-left: 15px;
  padding-right: 10px;
  border: none;
  outline: none;
}
form.form-insurance .input-section.select-insurance div,
form.form-office-land .input-section.select-insurance div {
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
form.form-insurance .disclaimer-check,
form.form-office-land .disclaimer-check {
  font-size: 12px;
  font-style: italic;
  margin-bottom: 10px;
}
form.form-insurance .disclaimer-check a,
form.form-office-land .disclaimer-check a {
  color: #000;
  font-weight: 700;
}

@media (max-width: 420px) {
  form.form-insurance .disclaimer-check,
  form.form-office-land .disclaimer-check {
    font-size: 11px;
  }
}
.mfp-iframe-holder .mfp-content {
  max-width: 1200px;
}

h3.default {
  color: #003540;
  text-align: center;
  font-size: 45px;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 30px;
}
h3.default span {
  position: relative;
  border-radius: 10px;
  background: linear-gradient(90deg, #003540 0%, #075E6D 99%);
  color: #9cfe00;
  font-weight: 900;
  padding: 5px 15px;
  margin-left: 15px;
  z-index: 1;
}
h3.default span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -8px;
  transform: translateY(-50%) rotate(45deg);
  width: 40px;
  height: 40px;
  z-index: -1;
  background-color: #003540;
}

@media (max-width: 920px) {
  h3.default {
    font-size: 24px;
    margin-bottom: 20px;
  }
  h3.default span {
    padding: 7px 12px;
  }
  h3.default span:before {
    width: 15px;
    height: 15px;
  }
}
/*HEADER*/
header .navbar {
  transition: background-color 0.3s ease;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
header .navbar .header-mobile {
  display: none;
}
header .navbar.transparent {
  background-color: transparent;
}
header .navbar.solid {
  background-color: white;
}
header a.navbar-brand {
  margin-right: 3rem;
}
header a.navbar-brand img {
  height: 55px;
}
header .navbar-default {
  width: 100%;
}
header .navbar-default ul.navbar-nav {
  width: 100%;
  justify-content: space-between;
}
header .navbar-default ul.navbar-nav li.nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .navbar-default ul.navbar-nav li.nav-item a.nav-link {
  display: flex;
  align-items: center;
  color: #000;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.3s ease-in-out !important;
  /*border-bottom: 2px solid white;*/
}
header .navbar-default ul.navbar-nav li.nav-item a.nav-link .text-phone {
  color: #003540;
  font-size: 18px;
  margin-right: 5px;
}
header .navbar-default ul.navbar-nav li.nav-item a.nav-link .back-round {
  width: 32px;
  margin-right: 5px;
  background: linear-gradient(90deg, #003540 0%, #075E6D 100%);
  border-radius: 50%;
  height: 32px;
  color: #9cfe00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}
header .navbar-default ul.navbar-nav li.nav-item a.nav-link .back-round.back-phone {
  width: 38px;
  height: 38px;
  margin-right: 0;
}
header .navbar-default ul.navbar-nav li.nav-item a#btn_contact {
  position: relative;
  background: #9cfe00;
  border-radius: 20px;
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 12px;
  padding-right: 3px;
  overflow: hidden;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease-in-out;
  /* Estado normal del contenedor del círculo (Ajusta el nombre de la clase si es distinto) */
}
header .navbar-default ul.navbar-nav li.nav-item a#btn_contact .back-round { /* o .back-phone según como lo tengas en el HTML */
  background: #003540; /* El color oscuro que tiene inicialmente */
  border-radius: 50%; /* Asegura que siga siendo un círculo */
  transition: background 0.3s ease-in-out;
  /* Centrar el SVG dentro del círculo si es necesario */
  display: flex;
  justify-content: center;
  align-items: center;
}
header .navbar-default ul.navbar-nav li.nav-item a#btn_contact {
  /* El SVG en su estado normal */
}
header .navbar-default ul.navbar-nav li.nav-item a#btn_contact svg {
  width: 21px;
  height: 21px;
}
header .navbar-default ul.navbar-nav li.nav-item a#btn_contact svg path, header .navbar-default ul.navbar-nav li.nav-item a#btn_contact svg .st0 {
  fill: #9cfe00; /* El teléfono es verde inicialmente */
  transition: fill 0.3s ease-in-out;
}
header .navbar-default ul.navbar-nav li.nav-item a#btn_contact {
  /* El fondo oscuro oculto que se expandirá */
}
header .navbar-default ul.navbar-nav li.nav-item a#btn_contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #003540 0%, #075E6D 100%);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}
header .navbar-default ul.navbar-nav li.nav-item a#btn_contact {
  /* Lo que ocurre al pasar el mouse (HOVER) */
}
header .navbar-default ul.navbar-nav li.nav-item a#btn_contact:hover, header .navbar-default ul.navbar-nav li.nav-item a#btn_contact:focus {
  /* Expandimos el fondo oscuro */
}
header .navbar-default ul.navbar-nav li.nav-item a#btn_contact:hover::before, header .navbar-default ul.navbar-nav li.nav-item a#btn_contact:focus::before {
  transform: scaleX(1);
}
header .navbar-default ul.navbar-nav li.nav-item a#btn_contact:hover .text-phone, header .navbar-default ul.navbar-nav li.nav-item a#btn_contact:focus .text-phone {
  color: #9cfe00 !important;
}
header .navbar-default ul.navbar-nav li.nav-item a#btn_contact:hover, header .navbar-default ul.navbar-nav li.nav-item a#btn_contact:focus {
  /* INVERSIÓN DEL CÍRCULO CONTENEDOR */
}
header .navbar-default ul.navbar-nav li.nav-item a#btn_contact:hover .back-round, header .navbar-default ul.navbar-nav li.nav-item a#btn_contact:focus .back-round {
  background: #9cfe00; /* El círculo se vuelve verde */
}
header .navbar-default ul.navbar-nav li.nav-item a#btn_contact:hover, header .navbar-default ul.navbar-nav li.nav-item a#btn_contact:focus {
  /* INVERSIÓN DEL SVG DIRECTAMENTE */
}
header .navbar-default ul.navbar-nav li.nav-item a#btn_contact:hover svg path, header .navbar-default ul.navbar-nav li.nav-item a#btn_contact:hover svg .st0, header .navbar-default ul.navbar-nav li.nav-item a#btn_contact:focus svg path, header .navbar-default ul.navbar-nav li.nav-item a#btn_contact:focus svg .st0 {
  fill: #003540; /* El teléfono (SVG) se vuelve oscuro para contrastar con el círculo verde */
}
header .navbar-default ul.navbar-nav li.nav-item a#btn_contact:active {
  background: #656565 !important;
  color: #9cfe00 !important;
}

body.service header .navbar,
body.office header .navbar {
  background: white;
}

@media (max-width: 1200px) {
  header .navbar a.navbar-brand {
    width: 36%;
    margin-right: 0rem;
  }
  header .navbar a.navbar-brand img {
    height: 37px;
  }
  header .navbar .header-mobile {
    display: flex;
    align-items: center;
    width: 64%;
    justify-content: space-between;
    max-width: 216px;
  }
  header .navbar .header-mobile .nav-link {
    padding: 0;
    text-transform: uppercase;
  }
  header .navbar .header-mobile .nav-link .text-phone {
    color: #003540;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-right: 5px;
  }
  header .navbar .header-mobile .nav-link .back-round {
    width: 36px;
    margin-right: 5px;
    background: linear-gradient(90deg, #003540 0%, #075E6D 100%);
    border-radius: 50%;
    height: 36px;
    color: #9cfe00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
  }
  header .navbar .header-mobile .nav-link .back-round.back-phone {
    width: 36px;
    height: 36px;
    margin-right: 0;
  }
  header .navbar .header-mobile .button-phone {
    background: #9cfe00;
    border-radius: 20px;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 12px;
    padding-right: 0px;
    display: flex;
    align-items: center;
  }
  header .navbar .header-mobile button {
    color: black;
    cursor: pointer;
    padding: 0;
    outline: none !important;
    align-items: flex-end;
    display: flex;
    flex-direction: column;
  }
  header .navbar .header-mobile button div {
    height: 3px;
    background: linear-gradient(90deg, #003540 0%, #075E6D 100%);
    margin: 3px;
    transition: all 0.3s ease;
  }
  header .navbar .header-mobile button div.line1 {
    width: 29px;
  }
  header .navbar .header-mobile button div.line2 {
    width: 25px;
  }
  header .navbar .header-mobile button div.line3 {
    width: 18px;
  }
  header .navbar ul.main-menu .nav-item.only-desk {
    display: none;
  }
  header .navbar .navbar-default ul.navbar-nav li.nav-item a.nav-link {
    font-size: 16px;
  }
  header nav.navbar .burger.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  header nav.navbar .burger.toggle .line2 {
    opacity: 0;
  }
  header nav.navbar .burger.toggle .line3 {
    transform: rotate(45deg) translate(-7px, -8px);
    width: 29px;
  }
  ul.main-menu {
    position: absolute;
    justify-content: space-evenly !important;
    left: -1px;
    height: calc(100vh - 63px) !important;
    min-height: 300px;
    top: 100%;
    background-color: white;
    flex-direction: column;
    align-items: center;
    width: 100% !important;
    min-width: 260px;
    border-top: 1px solid #9cfe00 !important;
    transform: translate(-100%);
    transition: transform 0.5s ease-in;
    padding-bottom: 200px;
    z-index: 2;
  }
  ul.main-menu li {
    opacity: 0;
  }
  ul.main-menu a.nav-link {
    border: 0 !important;
    padding: 0.4rem 1rem;
  }
  ul.main-menu.nav-active {
    transform: translateY(0%);
  }
  body.en-v header .navbar .header-mobile .nav-link .text-phone {
    font-size: 15px;
  }
}
/*home-cover*/
section.home-cover {
  padding-top: 81px;
  height: 100vh;
  background: rgb(235, 235, 235);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
section.home-cover .container {
  display: flex;
  padding-top: 40px;
  gap: 30px;
}
section.home-cover .container .section-left {
  width: calc(100% - 350px);
}
section.home-cover .container .section-left .title {
  text-align: right;
  font-size: 52px;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 10px;
  color: #003540;
}
section.home-cover .container .section-left .title span {
  position: relative;
  display: block;
  border-radius: 10px;
  background: linear-gradient(90deg, #003540 0%, #075E6D 100%);
  color: #9cfe00;
  width: -moz-max-content;
  width: max-content;
  padding-left: 10px;
  padding-right: 10px;
  z-index: 1;
}
section.home-cover .container .section-left .title span strong {
  font-weight: 900;
}
section.home-cover .container .section-left .title span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%) rotate(45deg);
  width: 40px;
  height: 40px;
  background-color: #075E6D;
  z-index: -1;
}
section.home-cover .container .section-left .sub-title {
  text-align: right;
  font-size: 26px;
  font-style: italic;
  font-weight: 900;
  line-height: normal;
}
section.home-cover .container .section-left h1 {
  text-align: right;
  font-size: 26px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}
section.home-cover .container .section-right {
  width: 350px;
}

section.home-cover.main {
  min-height: 720px;
  max-height: 800px;
}

@media (max-width: 920px) {
  section.home-cover {
    padding-top: 63px;
    background-position: center;
    /* max-height: initial; */
  }
  section.home-cover .container {
    flex-direction: column;
    padding-top: 10px;
    gap: 0px;
  }
  section.home-cover .container .section-left {
    width: 100%;
  }
  section.home-cover .container .section-left .title {
    font-size: 28px;
    align-items: center;
    margin-bottom: 0;
  }
  section.home-cover .container .section-left .title span:after {
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 25px;
    height: 25px;
    background-color: #034956;
  }
  section.home-cover .container .section-left h1 {
    display: none;
  }
  section.home-cover .container .section-left .sub-title {
    display: none;
  }
  section.home-cover .container .section-right {
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
    margin-top: -10px;
  }
  section.home-cover .container .section-right form {
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }
  section.home-cover .container .section-right form .form-title {
    text-align: center;
  }
  section.home-cover .container .section-right form .input-section {
    margin-bottom: 10px;
  }
  section.home-cover .container .section-right form .input-section input,
  section.home-cover .container .section-right form .input-section select {
    height: 42px;
    padding-left: 20px;
  }
}
@media (max-width: 376px) {
  section.home-cover {
    background-position: top;
  }
  section.home-cover .container {
    padding-top: 10px;
  }
  section.home-cover .container .section-left .title {
    font-size: 28px;
  }
  section.home-cover .container .section-right form .form-title {
    font-size: 16px;
  }
  section.home-cover .container .section-right form .input-section input,
  section.home-cover .container .section-right form .input-section select {
    height: 35px;
  }
}
@media (min-width: 1600px) {
  section.home-cover .container .section-left .title {
    font-size: 60px;
  }
  section.home-cover .container .section-left .sub-title {
    font-size: 30px;
  }
  section.home-cover .container .section-left h1 {
    font-size: 30px;
  }
}
/*home-insurances*/
section.home-insurances {
  margin-top: -40px;
  position: relative;
}
section.home-insurances .container.wrap-insurances {
  padding-top: 0;
}
section.home-insurances .container.wrap-insurances ul.list-insurances .owl-stage-outer,
section.home-insurances .container.wrap-insurances div.list-insurances .owl-stage-outer {
  padding-bottom: 5px;
}
section.home-insurances .container.wrap-insurances ul.list-insurances .wrap-img .over,
section.home-insurances .container.wrap-insurances div.list-insurances .wrap-img .over {
  display: none;
}
section.home-insurances .container.wrap-insurances ul.list-insurances .nav-item,
section.home-insurances .container.wrap-insurances div.list-insurances .nav-item {
  width: 100%;
}
section.home-insurances .container.wrap-insurances ul.list-insurances .nav-item .active-element,
section.home-insurances .container.wrap-insurances div.list-insurances .nav-item .active-element {
  display: none;
}
section.home-insurances .container.wrap-insurances ul.list-insurances .nav-item .nav-link,
section.home-insurances .container.wrap-insurances div.list-insurances .nav-item .nav-link {
  border: 4px solid transparent;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  text-align: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.home-insurances .container.wrap-insurances ul.list-insurances .nav-item .nav-link .wrap-img,
section.home-insurances .container.wrap-insurances div.list-insurances .nav-item .nav-link .wrap-img {
  width: 60px;
  margin-bottom: 5px;
}
section.home-insurances .container.wrap-insurances ul.list-insurances .nav-item .nav-link .wrap-img img,
section.home-insurances .container.wrap-insurances div.list-insurances .nav-item .nav-link .wrap-img img {
  width: 100%;
  aspect-ratio: 1;
}
section.home-insurances .container.wrap-insurances ul.list-insurances .nav-item .nav-link.active,
section.home-insurances .container.wrap-insurances div.list-insurances .nav-item .nav-link.active {
  border: 4px solid #9cfe00;
}
section.home-insurances .container.wrap-insurances ul.list-insurances .nav-item .nav-link.active img.default,
section.home-insurances .container.wrap-insurances div.list-insurances .nav-item .nav-link.active img.default {
  display: none;
}
section.home-insurances .container.wrap-insurances ul.list-insurances .nav-item .nav-link.active img.over,
section.home-insurances .container.wrap-insurances div.list-insurances .nav-item .nav-link.active img.over {
  display: block;
}
section.home-insurances .container.wrap-insurances ul.list-insurances .nav-item .nav-link:hover,
section.home-insurances .container.wrap-insurances div.list-insurances .nav-item .nav-link:hover {
  border: 4px solid #9cfe00;
}
section.home-insurances .container.wrap-insurances ul.list-insurances .nav-item .title-insurance,
section.home-insurances .container.wrap-insurances div.list-insurances .nav-item .title-insurance {
  color: #003540;
  font-size: 12px;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
}
section.home-insurances .container.wrap-insurances ul.list-insurances .nav-item:has(.nav-link.active) .active-element,
section.home-insurances .container.wrap-insurances div.list-insurances .nav-item:has(.nav-link.active) .active-element {
  width: 47px;
  margin: 0 auto;
  margin-top: 5px;
  display: block;
}
section.home-insurances .container.wrap-insurances .tab-content > .active {
  display: flex;
}
section.home-insurances .container.wrap-insurances div#tabInsurances {
  margin-top: 30px;
  margin-bottom: 60px;
}
section.home-insurances .container.wrap-insurances div#tabInsurances div.tab-pane .left {
  width: 50%;
  margin-top: 20px;
}
section.home-insurances .container.wrap-insurances div#tabInsurances div.tab-pane .left h3 {
  color: #003540;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
section.home-insurances .container.wrap-insurances div#tabInsurances div.tab-pane .left h3 span {
  position: relative;
  border-radius: 10px;
  background: linear-gradient(90deg, #003540 0%, #075E6D 99%);
  color: #9cfe00;
  font-weight: 900;
  padding: 5px 12px;
  margin-left: 15px;
}
section.home-insurances .container.wrap-insurances div#tabInsurances div.tab-pane .left h3 span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -8px;
  transform: translateY(-50%) rotate(45deg);
  width: 17px;
  height: 17px;
  background-color: #003540;
}
section.home-insurances .container.wrap-insurances div#tabInsurances div.tab-pane .left p {
  color: #000;
  font-size: 18px;
}
section.home-insurances .container.wrap-insurances div#tabInsurances div.tab-pane .right {
  width: 50%;
  display: flex;
  justify-content: flex-end;
}
section.home-insurances .container.wrap-insurances div#tabInsurances div.tab-pane .right img {
  width: 410px;
  border-radius: 20px;
}
section.home-insurances .container.wrap-insurances div#tabInsurances div#others .left h3 {
  margin-bottom: 15px;
}
section.home-insurances .container.wrap-insurances div#tabInsurances div#others .left h3 span {
  margin-left: 0px;
  margin-right: 15px;
}
section.home-insurances .container.wrap-insurances div#tabInsurances div#others .left h3 span::before {
  display: none;
}
section.home-insurances .container.wrap-insurances div#tabInsurances div#others .left h3 span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%) rotate(45deg);
  width: 15px;
  height: 15px;
  background-color: #075E6D;
  z-index: -1;
}
section.home-insurances .container.wrap-insurances div#tabInsurances a.button-default {
  max-width: 320px;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  margin-top: 20px;
}
section.home-insurances .container.wrap-insurances div#tabInsurances a.button-default strong {
  margin-left: 5px;
}

body.en-v section.home-insurances .container.wrap-insurances ul,
body.en-v section.home-insurances .container.wrap-insurances div.list-insurances {
  justify-content: center;
  display: flex;
}
body.en-v section.home-insurances .container.wrap-insurances .left h3 {
  margin-bottom: 15px;
}
body.en-v section.home-insurances .container.wrap-insurances .left h3 span {
  margin-left: 0px !important;
  margin-right: 15px;
}
body.en-v section.home-insurances .container.wrap-insurances .left h3 span::before {
  display: none;
}
body.en-v section.home-insurances .container.wrap-insurances .left h3 span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -7px;
  transform: translateY(-50%) rotate(45deg);
  width: 15px;
  height: 15px;
  background-color: #075E6D;
  z-index: -1;
}
@media (max-width: 920px) {
  body.en-v section.home-insurances .container.wrap-insurances div#tabInsurances div.tab-pane .left h3 {
    font-size: 22px;
  }
}
@media (max-width: 920px) {
  body.en-v .container.wrap-insurances ul.list-insurances .nav-item .nav-link,
  body.en-v section.home-insurances .container.wrap-insurances div.list-insurances .nav-item .nav-link {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 920px) {
  section.home-insurances .container.wrap-insurances div#tabInsurances {
    margin-top: 10px;
    margin-bottom: 40px;
  }
  section.home-insurances .container.wrap-insurances div#tabInsurances div.tab-pane {
    flex-direction: column;
  }
  section.home-insurances .container.wrap-insurances div#tabInsurances div.tab-pane .left {
    width: 100%;
    margin-top: 0px;
  }
  section.home-insurances .container.wrap-insurances div#tabInsurances div.tab-pane .left h3 {
    margin-bottom: 10px;
    font-size: 24px;
    justify-content: center;
  }
  section.home-insurances .container.wrap-insurances div#tabInsurances div.tab-pane .left p {
    font-size: 16px;
    text-align: center;
    margin-bottom: 5px;
  }
  section.home-insurances .container.wrap-insurances div#tabInsurances div.tab-pane .right {
    width: 90%;
    max-width: 420px;
    margin: 0 auto;
  }
  section.home-insurances .container.wrap-insurances div#tabInsurances div.tab-pane .right img {
    width: 100%;
  }
  section.home-insurances .container.wrap-insurances div#tabInsurances a.button-default {
    margin-top: 15px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  section.home-insurances .container.wrap-insurances ul.list-insurances,
  section.home-insurances .container.wrap-insurances div.list-insurances {
    width: calc(100% + 15px);
  }
  section.home-insurances .container.wrap-insurances ul.list-insurances .nav-item .nav-link .wrap-img,
  section.home-insurances .container.wrap-insurances div.list-insurances .nav-item .nav-link .wrap-img {
    width: 45px;
  }
}
/*carousel-paym*/
.carousel-paym .owl-carousel,
.carousel-paym .owl-carousel .owl-stage-outer,
.carousel-paym .owl-carousel .owl-stage {
  max-height: 100px;
}

.carousel-paym {
  background: white;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
  max-height: 100px;
}
.carousel-paym .element .wrap-a {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  padding: 10px 20px;
}
.carousel-paym .element .wrap-a .wrap-img-paym {
  height: 80px;
  display: flex;
  align-items: center;
}
.carousel-paym .element .wrap-a .wrap-img-paym img {
  max-height: 100%;
}
.carousel-paym .element .wrap-a .wrap-img-paym.tokio {
  background-image: linear-gradient(to bottom right, rgba(0, 102, 204, 0.4), rgba(0, 51, 102, 0.4)) !important;
  padding: 0 5px;
}
.carousel-paym .element .wrap-a .wrap-img-paym.ovation {
  background: #0d162c;
  padding: 0 5px;
}

@media screen and (max-width: 760px) {
  section.insurances-default .cover {
    display: flex;
    flex-direction: column-reverse;
  }
  .carousel-paym {
    margin-bottom: 0 !important;
  }
  .carousel-paym .element a,
  .carousel-paym .element .wrap-a {
    padding: 0px 7px;
  }
  .carousel-paym .element a .wrap-img-paym,
  .carousel-paym .element .wrap-a .wrap-img-paym {
    height: 80px;
  }
  .landing .carousel-paym .wrap-mobile-carousel .footer-mobile-carousel {
    display: none;
  }
}
/*why-choose-us*/
section.why-choose-us {
  margin-top: 60px;
  margin-bottom: 60px;
}
section.why-choose-us p {
  color: #000;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 40px;
}
section.why-choose-us .wrap-image {
  position: relative;
  /* aspect-ratio: 0.75; */
}
section.why-choose-us .wrap-image img.image-video {
  border-radius: 20px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.why-choose-us .wrap-image .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, #003540 0%, #075E6D 100%);
  border-radius: 50%;
  /* width: 80px;
  height: 80px; */
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.why-choose-us .wrap-image .play img {
  width: 30px;
  margin-left: 5px;
}
section.why-choose-us .wrap-button {
  margin-top: 10px;
}
section.why-choose-us .wrap-button a.button-default {
  max-width: 320px;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
section.why-choose-us .wrap-button a.button-default strong {
  margin-left: 5px;
}
section.why-choose-us .wrap-button .active-element {
  transform: rotate(180deg);
  width: 60px;
  margin: 0 auto;
  margin-bottom: 5px;
}
section.why-choose-us .border-circle img {
  width: auto;
}

.owl-clients-images img {
  border-radius: 30px;
}

.owl-why-choose-us::before,
.owl-why-choose-us::after,
.owl-clients-images::before,
.owl-clients-images::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 250px;
  z-index: 10;
}

.owl-why-choose-us::before,
.owl-clients-images::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
}

.owl-why-choose-us::after,
.owl-clients-images::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
}

@media (max-width: 920px) {
  section.why-choose-us {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  section.why-choose-us p {
    margin-bottom: 25px;
  }
  section.why-choose-us .wrap-button {
    max-width: 100%;
  }
  section.why-choose-us .wrap-button .active-element {
    width: 40px;
  }
  section.why-choose-us .wrap-button button,
  section.why-choose-us .wrap-button a {
    font-size: 14px;
    padding-right: 25px !important;
  }
  section.why-choose-us .owl-why-choose-us,
  section.why-choose-us .owl-clients-images {
    padding-left: 15px;
  }
  .owl-why-choose-us::before,
  .owl-why-choose-us::after,
  .owl-clients-images::before,
  .owl-clients-images::after {
    content: none;
  }
}
@media (max-width: 520px) {
  .mfp-iframe-scaler {
    padding-top: 100%;
  }
}
/*quote*/
section.quote {
  background: white;
  padding-top: 60px;
  padding-bottom: 60px;
}
section.quote h3 {
  margin-bottom: 60px;
}
section.quote .quote-instruction {
  margin-bottom: 60px;
  display: flex;
  gap: 5px;
}
section.quote .quote-instruction .section-one,
section.quote .quote-instruction .section-two,
section.quote .quote-instruction .section-three {
  display: flex;
  width: 33.33%;
}
section.quote .quote-instruction .number {
  color: #003540;
  text-align: center;
  /*font-size: 200px;*/
  font-size: 180px;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
  line-height: 80px;
}
section.quote .quote-instruction .text {
  color: #000;
  font-weight: 400;
  line-height: normal;
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
}
section.quote .quote-instruction .text .active-element {
  position: absolute;
  bottom: 20px;
  transform: rotate(90deg);
  left: -35px;
}
section.quote .quote-instruction .text .title {
  /*font-size: 30px;*/
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
section.quote .quote-instruction .text .desc {
  font-size: 18px;
  border-left: 5px solid #9cfe00;
  padding-left: 10px;
}

@media (max-width: 920px) {
  section.quote {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  section.quote .quote-instruction .section-one,
  section.quote .quote-instruction .section-two,
  section.quote .quote-instruction .section-three {
    width: 100%;
  }
  section.quote h3 {
    margin-bottom: 40px;
  }
  section.quote h3 span {
    display: block;
    max-width: 300px;
    margin: 0 auto;
    width: -moz-max-content;
    width: max-content;
  }
  section.quote h3 span:before {
    width: 15px;
    height: 15px;
  }
  section.quote .quote-instruction {
    flex-direction: column;
    margin-bottom: 40px;
    gap: 50px;
  }
  section.quote .quote-instruction .number {
    line-height: 95px;
  }
  section.quote .quote-instruction .text .title {
    font-size: 18px;
  }
  section.quote .quote-instruction .text .desc {
    font-size: 16px;
  }
}
/*stats*/
section.stats {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  height: 650px;
}
section.stats .container {
  height: 100%;
}
section.stats .container .wrap-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
section.stats .container .wrap-stats .circle-text {
  font-size: 30px;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  width: 260px;
  border-radius: 50%;
  color: #003540;
  background: #9cfe00;
  height: 260px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
section.stats .container .wrap-stats .circle-text strong {
  font-size: 72px;
  font-weight: 900;
}
section.stats .container .wrap-stats .right {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
section.stats .container .container-button {
  position: absolute;
  bottom: 150px;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 920px) {
  section.stats {
    height: 100vh;
    max-height: 600px;
    background-position: bottom;
  }
  section.stats .container .wrap-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    height: calc(100% - 60vw);
    padding-top: 20px;
  }
  section.stats .container .wrap-stats .left {
    align-self: flex-start;
  }
  section.stats .container .wrap-stats .right {
    justify-content: flex-end;
    width: 100%;
    margin-top: -50px;
    flex-direction: row;
  }
  section.stats .container .wrap-stats .right .circle-text {
    align-self: flex-end;
  }
  section.stats .container .wrap-stats .right .circle-text.office {
    align-self: self-start;
  }
  section.stats .container .wrap-stats .circle-text {
    font-size: 20px;
    width: 190px;
    height: 190px;
  }
  section.stats .container .wrap-stats .circle-text strong {
    font-size: 50px;
  }
  section.stats .container .container-button {
    display: flex;
    bottom: 25px;
  }
}
/*clients*/
section.clients {
  background: white;
  padding-top: 60px;
  padding-bottom: 60px;
}
section.clients #owl-clients-comment {
  margin-bottom: 40px;
  padding-left: 15px;
}
section.clients #owl-clients-comment .owl-stage {
  padding-top: 40px;
}
section.clients .general-data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
section.clients .general-data .stars {
  width: 250px;
}
section.clients .general-data .clients-stats {
  font-size: 30px;
  text-transform: uppercase;
}
section.clients .wrap-comment {
  background: #f5f5f5;
  border-radius: 20px;
  padding: 50px 15px 30px 15px;
  text-align: center;
  color: #000;
}
section.clients .wrap-comment .wrap-pic {
  display: flex;
  justify-content: center;
}
section.clients .wrap-comment .wrap-pic .border-pic {
  width: 80px !important;
  border-radius: 50%;
  border: 3px solid white;
  position: absolute;
  top: -40px;
  height: 80px;
  filter: drop-shadow(0px 1px 4px rgba(0, 0, 0, 0.25));
}
section.clients .wrap-comment .wrap-pic .border-pic .picture {
  font-weight: 900;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background: #9cfe00;
  border-radius: 50%;
}
section.clients .wrap-comment .stars {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  max-width: 150px;
  margin-left: auto;
  margin-right: auto;
}
section.clients .wrap-comment .user-comment {
  line-height: 20px;
  margin-bottom: 10px;
}
section.clients .wrap-comment p {
  font-style: italic;
  line-height: 20px;
  margin-bottom: 0;
  text-align: center;
  height: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  -webkit-box-pack: center;
}

@media (max-width: 920px) {
  section.clients {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  section.clients .general-data {
    gap: 10px;
    margin-bottom: 20px;
  }
  section.clients .general-data .clients-stats {
    font-size: 20px;
  }
}
/*bottom-insurance*/
section.bottom-insurance {
  background: linear-gradient(90deg, #003540 0%, #075E6D 100%);
  padding-top: 15px;
  padding-bottom: 15px;
}
section.bottom-insurance .item {
  padding: 10px;
  border-radius: 20px;
  background: #9cfe00;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
section.bottom-insurance .item .wrap-img {
  justify-content: center;
  display: flex;
}
section.bottom-insurance .item .wrap-img img {
  max-width: 57px;
  aspect-ratio: 1;
}
section.bottom-insurance .item .title-insurance {
  padding-top: 7px;
  color: #003540;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  section.bottom-insurance {
    padding-left: 15px;
  }
  section.bottom-insurance .item {
    padding-left: 0;
    padding-right: 0;
  }
  section.bottom-insurance .item .title-insurance {
    padding-top: 5px;
  }
  section.bottom-insurance .item .wrap-img {
    width: 45px;
    margin: 0 auto;
  }
}
/*map*/
section.map {
  padding-top: 60px;
  padding-bottom: 60px;
}
section.map .wrap-content {
  gap: 15px;
}
section.map .info-franchise {
  width: 370px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}
section.map .info-franchise .wrap-form-agent {
  border-radius: 20px;
  border: 1px solid #f5f5f5;
  background: #f7f7f7;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  margin-bottom: 5px;
}
section.map .info-franchise .wrap-form-agent .content-form {
  padding: 20px;
}
section.map .info-franchise .wrap-form-agent .content-form .text-title {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-bottom: 10px;
}
section.map .info-franchise .wrap-form-agent .content-form input {
  width: 100%;
  border-radius: 20px;
  background: #fff;
  height: 45px;
  border: 0;
  padding-left: 15px;
  padding-right: 10px;
  border: none;
  outline: none;
}
section.map .info-franchise .wrap-form-agent .content-form .content-button {
  padding-top: 10px;
}
section.map .info-franchise .franchises-data {
  padding-top: 20px;
  padding-left: 10px;
  padding-right: 10px;
  height: 345px;
  overflow-y: scroll;
}
section.map .info-franchise .franchises-data .franchise-data {
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 20px 15px;
  text-align: center;
  cursor: pointer;
  margin-bottom: 15px;
  background: #f7f7f7;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08) !important;
  color: inherit;
}
section.map .info-franchise .franchises-data .franchise-data .office-number {
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  line-height: 27.3px;
  text-transform: uppercase;
  margin-bottom: 7px;
}
section.map .info-franchise .franchises-data .franchise-data .content-office.office {
  display: flex;
  flex-direction: column;
  margin-bottom: 5px;
}
section.map .info-franchise .franchises-data .franchise-data .content-office.office .office-element {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
section.map .info-franchise .franchises-data .franchise-data .content-office.office .office-element a {
  display: flex;
  align-items: center;
  color: inherit;
}
section.map .info-franchise .franchises-data .franchise-data .content-office.office .office-element i {
  margin-right: 8px;
  width: 20px;
  font-size: 14px;
}
section.map .info-franchise .franchises-data .franchise-data .content-office.office .office-element span {
  text-align: left;
  font-size: 14px;
  font-weight: 400;
}
section.map .info-franchise .franchises-data .franchise-data .section-button {
  display: flex;
  gap: 10px;
}
section.map .info-franchise .franchises-data .franchise-data .section-button a.button-default {
  color: #000;
  width: 50%;
  height: 41px;
  align-items: center;
  justify-content: center;
  display: flex;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}
section.map .info-franchise .franchises-data .franchise-data.active {
  border: 2px solid #9cfe00;
}
section.map #map {
  width: calc(100% - 370px);
  border-radius: 20px;
  background: #e5e3df;
}

@media (max-width: 920px) {
  section.map {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  section.map .wrap-content {
    gap: 0;
    flex-direction: column;
  }
  section.map .wrap-content #map {
    width: calc(100% + 30px);
    height: 67vw;
    order: 1;
    margin-left: -15px;
    border-radius: 0;
    margin-bottom: 10px;
  }
  section.map .wrap-content .info-franchise {
    width: 100%;
    order: 2;
  }
  section.map .info-franchise .wrap-form-agent .content-form .content-button button.button-default {
    font-size: 16px;
  }
  section.map .info-franchise .franchises-data .franchise-data {
    padding: 12px;
  }
  section.map .info-franchise .franchises-data .franchise-data .content-office.office .office-element {
    margin-bottom: 7px;
  }
}
/*map-elements*/
.container-market-seb {
  align-items: center;
  background-color: #ffffff;
  color: #263238;
  display: flex;
  gap: 15px;
  justify-content: center;
  position: relative;
  position: relative;
  transition: all 0.3s ease-out;
  height: auto;
  font-size: 13px;
}
.container-market-seb .icon {
  display: none;
  align-items: center;
  /* display: flex; */
  justify-content: center;
  color: #ffffff;
}
.container-market-seb .details {
  color: black;
  flex-direction: column;
  flex: 1;
  display: flex;
  letter-spacing: 0.2px;
  min-width: 260px;
}
.container-market-seb .details .franchise {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: bold;
  text-transform: uppercase;
}
.container-market-seb .details .element {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}
.container-market-seb .details .element a {
  color: black;
  display: flex;
  align-items: center;
}
.container-market-seb .details .element a:hover {
  text-decoration: underline;
}
.container-market-seb .details .element img {
  width: 12px;
  margin-right: 2px;
}
.container-market-seb .address {
  color: #9e9e9e;
  font-size: 10px;
  margin-bottom: 10px;
  margin-top: 5px;
}
.container-market-seb .features {
  align-items: flex-end;
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 5px;
  min-width: 220px;
}
.container-market-seb .features a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  height: 41px;
  font-size: 14px;
}

.gm-style-iw-chr {
  height: 30px;
}
.gm-style-iw-chr button {
  z-index: 1;
}

.map-land {
  height: 500px;
  width: 100%;
  background: grey;
}
.map-land iframe {
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 600px) {
  .container-market-seb .details {
    min-width: 200px;
  }
  .container-market-seb .element.not-mobile {
    display: none !important;
  }
  .container-market-seb .features {
    flex-direction: column;
    min-width: 140px;
    gap: 3px;
  }
}
/*modal quote*/
div#quoteModal .modal-dialog {
  max-width: 460px;
}
div#quoteModal .modal-header {
  text-transform: uppercase;
}
div#quoteModal .modal-body {
  padding: 0;
}
div#quoteModal form.form-insurance,
div#quoteModal form.form-office-land {
  border-radius: 0;
  padding-bottom: 0px;
}
div#quoteModal form.form-insurance .form-title,
div#quoteModal form.form-office-land .form-title {
  margin-bottom: 20px;
}
div#quoteModal form.form-insurance,
div#quoteModal form.form-office-land {
  /* .disclaimer-check {
    margin-bottom: 0;
  } */
}
div#quoteModal form.form-insurance .input-section,
div#quoteModal form.form-office-land .input-section {
  margin-bottom: 12px;
}

/*footer*/
footer .section-one {
  background: #999;
  display: flex;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  color: white;
  font-size: 13px;
  font-weight: 400;
  line-height: 19.5px;
  /* 139.286% */
  justify-content: space-evenly;
}
footer .section-one .links-social,
footer .section-one .links-pages {
  display: flex;
  gap: 10px;
}
footer .section-one .social {
  overflow: hidden;
  max-width: 34.5ch;
  white-space: nowrap;
}
footer .section-one .social img {
  width: 26px;
}
footer .section-one a {
  color: white;
}
footer .section-one .separator {
  width: 3px;
  height: 36px;
  background: #9cfe00;
  border-radius: 5px;
}
footer .section-two {
  display: flex;
  background: #f5f5f5;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}
footer .section-two .title-1 {
  font-size: 30px;
  color: #003540;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
}
footer .section-two .wrap-button {
  margin: 0;
}
footer .section-two a.button-default {
  max-width: 320px;
  color: #003540;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
footer .section-two a.button-default strong {
  margin-left: 5px;
}

@media (max-width: 1420px) {
  footer .section-one .links-social .social span {
    display: none;
  }
}
@media (max-width: 1024px) {
  footer .separator {
    display: none;
  }
  footer .section-one {
    padding-top: 25px;
    padding-bottom: 25px;
    flex-direction: column;
    gap: 15px;
    font-size: 14px;
  }
  footer .section-one .links-social {
    order: 1;
    gap: 15px;
  }
  footer .section-one .links-social .social img {
    width: 40px;
  }
  footer .section-one .links-social .social span {
    display: none;
  }
  footer .section-one .links-pages {
    order: 2;
  }
  footer .section-one .copy {
    text-align: center;
    max-width: 250px;
  }
  footer .section-one .copy span {
    display: none;
  }
  footer .section-one .copy {
    order: 3;
  }
  footer .section-two {
    flex-direction: column;
    gap: 15px;
  }
  footer .section-two .title-1 {
    font-size: 20px;
  }
}
@media (min-width: 1300px) {
  .container {
    max-width: 1240px;
  }
}
@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translate(50px);
  }
  to {
    opacity: 1;
    transform: translate(0px);
  }
}
.no-webp section.home-cover.main {
  background-image: url(../img/new-design/banner-home-pc.jpg);
}
.no-webp section.stats {
  background-image: url(../img/new-design/stats.jpg);
}
.no-webp section.home-cover.office {
  background-image: url(../img/new-design/office/oficinas-seguro-default-pc.jpg);
}
.no-webp section.home-cover.auto {
  background-image: url(../img/new-design/auto/banner-auto-pc.jpg);
}
.no-webp section.home-cover.casa {
  background-image: url(../img/new-design/casa/banner-casa-pc.jpg);
}
.no-webp section.service-data {
  background-image: url(../img/new-design/auto/banner-seccion-datos-pc.jpg);
}
@media (max-width: 920px) {
  .no-webp section.home-cover.main {
    background-image: url(../img/new-design/banner-home-movil.jpg);
  }
  .no-webp section.stats {
    background-image: url(../img/new-design/stats-movil.jpg);
  }
  .no-webp section.home-cover.office {
    background-image: url(../img/new-design/office/oficinas-seguro-default-movil.jpg);
  }
  .no-webp section.home-cover.auto {
    background-image: url(../img/new-design/auto/banner-auto-movil.jpg);
  }
  .no-webp section.home-cover.casa {
    background-image: url(../img/new-design/casa/banner-casa-movil.jpg);
  }
  .no-webp section.service-data {
    background-image: url(../img/new-design/auto/banner-seccion-datos-movil.jpg);
  }
}

.webp section.home-cover.main {
  background-image: url(../img/new-design/banner-home-pc.webp);
}
.webp section.stats {
  background-image: url(../img/new-design/stats.webp);
}
.webp section.home-cover.office {
  background-image: url(../img/new-design/office/oficinas-seguro-default-pc.webp);
}
.webp section.home-cover.auto {
  background-image: url(../img/new-design/auto/banner-auto-pc.webp);
}
.webp section.home-cover.casa {
  background-image: url(../img/new-design/casa/banner-casa-pc.webp);
}
.webp section.service-data {
  background-image: url(../img/new-design/auto/banner-seccion-datos-pc.webp);
}
@media (max-width: 920px) {
  .webp section.home-cover.main {
    background-image: url(../img/new-design/banner-home-movil.webp);
  }
  .webp section.stats {
    background-image: url(../img/new-design/stats-movil.webp);
  }
  .webp section.home-cover.office {
    background-image: url(../img/new-design/office/oficinas-seguro-default-movil.webp);
  }
  .webp section.home-cover.auto {
    background-image: url(../img/new-design/auto/banner-auto-movil.webp);
  }
  .webp section.home-cover.casa {
    background-image: url(../img/new-design/casa/banner-casa-movil.webp);
  }
  .webp section.service-data {
    background-image: url(../img/new-design/auto/banner-seccion-datos-movil.webp);
  }
}/*# sourceMappingURL=style-new-design.css.map */