/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bold;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

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

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

@font-face {
  font-family: 'mulish';
  src: url('../../fonts/Mulish/Mulish-VariableFont_wght.ttf') format('truetype');
}

@font-face {
  font-family: 'MulishExtraLight';
  src: url('../../fonts/Mulish-ExtraLight.ttf') format('truetype');
}

@font-face {
  font-family: 'MulishLight';
  src: url('../../fonts/Mulish-Light.ttf') format('truetype');
}

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

form select{
  padding: 0.62rem;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }

/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

/* Header DND sections */

.header .dnd-section {
  padding: 0;
}

/* Header container */

/**/
.header .header__logo.header__logo--main{
  margin-right: 30px;
}

.header .header__container.content-wrapper{
  align-items: center;
  justify-content: space-between;
}

.box-content-header{
  display: flex;
  align-items: center;
}

.header .container-fluid.content-wrapper{
  max-width: 100%;
  padding: 0;
}

.header .row-fluid {
  max-width: 100% !important;
}

.header .span12.widget-span.widget-type-cell.dnd-column{
  padding: 0;
}
/**/

.header__container {
  display: flex;
  justify-content: space-between;
}

.header__row-1 {
  padding-top: 1rem;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.content-header-alert{
  background-color: #2A356A;
  max-height: 50px;
  min-height: 50px; 
}

.content-header-alert-info{
  display: flex;
  justify-content: space-between;
  max-height: 50px;
  min-height: 50px;

  /* max-width: 1240px; */
  max-width: 1136px;
  margin: 0 auto;
}

.content-header-alert-btn-txt{
  display: flex;
  align-items: center;
}

.content-header-alert-btn-txt .content-alert{
  background-color: #FDE4E3;
  border-radius: 24px;
  margin-right: 20px;
}

.content-header-alert-btn-txt .content-alert p{
  color: #C12A21;
  font-size: 14px;
  padding: 4px 12px;
}

.content-icon-number{
  display: flex;
  align-items: center;
}

.content-icon-number img{
  width: 24px;
  margin-right: 10px;
}

.content-header-alert-info p{
  font-size: 16px;
  margin: 0;
  color: #ffffff;
}

.content-header-alert-info a{
  font-size: 16px;
  margin: 0;
  color: #ffffff;
  text-decoration: underline;
}

.content-header-alert-info a:hover{
  color: #ffffff;
}

.header .menu__link{
  text-transform: capitalize;
  font-size: 18px;
  color: #2A356A;
  cursor: pointer;
  font-weight: 700;
  position: relative;
}

.header .menu__wrapper.no-list li{
  padding: 0rem 0.875rem;
}

.header .menu__wrapper.no-list li:hover .menu__link{
  color: #C12A21 !important;
}

.header .menu__wrapper.no-list li:first-child:before{
  content:url("");
}

.header .menu__wrapper.no-list li:first-child:hover:before{
  content:url("");
}

.header .menu__wrapper.no-list li:before{
  content:url("https://23992612.fs1.hubspotusercontent-na1.net/hubfs/23992612/raw_assets/public/website-theme/images/chevron-down.svg");
  display: block;
  position: absolute;
  right: 2px;
  top: 6px;
  transition: transform 0.5s ease;
}

.header .menu__wrapper.no-list li:hover:before{
  content:url("https://23992612.fs1.hubspotusercontent-na1.net/hubfs/23992612/raw_assets/public/website-theme/images/chevron-down-red.svg");
  transform: rotate(180deg);
  transition: transform 0.5s ease;
}

.header .menu__wrapper.no-list .menu__link--active-link-li:before{
  content:url("https://23992612.fs1.hubspotusercontent-na1.net/hubfs/23992612/raw_assets/public/website-theme/images/chevron-down-red.svg");
  transform: rotate(180deg);
  transition: transform 0.5s ease;
}

.header .menu__wrapper.no-list li .menu__link:hover:before{
  content:url("");
  height: 4px;
  width: 28px;
  top: 27px;
  position: absolute;
  background: #C12A21;
  animation: moveToRight 0.5s ease-in-out;
  animation-delay: 10ms;
}
@keyframes moveToRight {
  0% {
      width: 0px;
      background: #C12A21;
  }
  100% {
      width: 28px;
      background: #C12A21;
  }
}


/* estilos header */
.box-header-new {
  width: 100%;
  padding-top: 1rem;
}
.box-header-new a, .box-header-new p{
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #2A356A; 
  z-index: 99;
}
.box-header-new a:hover{
  color: #C12A21;
}
.box-header-new .content-header-new{
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* max-width: 1240px; */
  max-width: 1136px;
  margin: 0 auto;
}
.box-header-new .content-header-new .content-img-items{
  display: flex;
  align-items: center;
}
.box-header-new .content-header-new .content-img-items img{
  margin-right: 50px;
}
.box-header-new .content-header-new .content-img-items .items-menu{
  display: flex;
}
.box-header-new .content-header-new .content-img-items .items-menu .item{
  position: relative;
  margin: 0 20px;
  transition-duration: 0.5s;
}
.box-header-new .content-header-new .content-img-items .items-menu .content-li{
  height: 47px;
}
.box-header-new .content-header-new .content-img-items .items-menu .content-li .item:hover{
  cursor: pointer; 
}
.box-header-new .content-header-new .content-img-items .items-menu .content-li .item:hover::after{
  content:url("");
  height: 4px;
  width: 28px;
  position: absolute;
  background: #C12A21;
  animation: moveToRight 0.5s ease-in-out;
  animation-delay: 10ms;
  left: 0;
  top: 35px;
}
@keyframes moveToRight {
  0% {
      width: 0px;
      background: #C12A21;
  }
  100% {
      width: 28px;
      background: #C12A21;
  }
}
.box-header-new .content-header-new .content-img-items .items-menu .content-li .item::before{
  content:url("https://23992612.fs1.hubspotusercontent-na1.net/hubfs/23992612/raw_assets/public/website-theme/images/chevron-down.svg");
  display: block;
  position: absolute;
  right: -19px;
  top: 4px;
  transition: transform 0.5s ease;
}
.box-header-new .content-header-new .content-img-items .items-menu .content-li .item:hover::before{
  content:url("https://23992612.fs1.hubspotusercontent-na1.net/hubfs/23992612/raw_assets/public/website-theme/images/chevron-down-red.svg");
  transform: rotate(180deg);
  transition: transform 0.5s ease;
}
.box-header-new .content-header-new .content-img-items .items-menu .content-li:first-child .item::before{
  content:url("");
}
.box-header-new .content-header-new .content-img-items .items-menu .content-li:first-child .item:hover::before{
  content:url("");
}
.box-header-new .content-header-new .content-img-items .items-menu .item:hover a{ 
  color: #C12A21;
  font-weight: bold;
}


.box-header-new .content-header-new .content-img-items .items-menu .item:active a{
  color: #C12A21;
  font-weight: bold;
}

.header{
  z-index: 9;
  position: relative;
}


.box-header-new .content-header-new .content-img-items .items-menu .content-item{
  visibility: hidden;
  opacity: 0;
  display: none;
  transition: all 0.5s ease;
  position: absolute;
  background-color:transparent ;
  left: 0;
  top: 130px;
  width: 100%;
  box-shadow: 0px 26px 15px -3px rgba(0,0,0,0.1);
  padding-top: 70px;
}

.box-header-new .content-header-new .content-img-items .items-menu .content-item .box-info:hover{
  background: #2a356a;
  border-radius:10px;
}
.box-header-new .content-header-new .content-img-items .items-menu .content-item .box-info:hover p{
  color: white;
} 

.logo-iad{
  z-index:1;
}

/*.box-header-new .content-header-new .content-img-items .items-menu .item:hover + .content-item, 
.box-header-new .content-header-new .content-img-items .items-menu .item:focus + .content-item{
  visibility: visible;
  opacity: 1;
  display: block;
}*/

.box-header-new .content-header-new .content-img-items .items-menu .content-li:hover > .content-item,
.box-header-new .content-header-new .content-img-items .items-menu .content-li .content-item:hover{
  visibility: visible;
  opacity: 1;
  display: block;
}

.box-header-new .content-header-new .content-img-items .items-menu .content-item:hover{  
  display: block;  
}


/* .hide-div {
  display: none;
}
.mostrar{
  display: block;
} */


.box-header-new .content-header-new .content-img-items .items-menu .content-item .width-item{
  max-width: 1136px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: white;
  padding-bottom: 70px;
}
.box-header-new .content-header-new .content-img-items .items-menu .content-item .width-item .txt-img{
  display: flex;
  align-items: center;
}
.box-header-new .content-header-new .content-img-items .items-menu .content-item .width-item .txt-img p{
  font-size: 18px;
}

.box-header-new .content-header-new .content-img-items .items-menu .content-item .width-item .descrip{
  font-size: 16px;
  color: #373738;
  margin-top: 8px;
}

.box-header-new .content-header-new .content-img-items .items-menu .content-item .width-item a{
  width: 363px;
  display: block;
  padding: 24px;
}

/* end estilos header */


.box-llamada{
  display: block;
  background-color: #e1e9f8;
  color: #3c52b9;
  display: flex;
  align-items: center;
  height: 56px;
  border-radius: 8px;
  padding: 16px 24px;
}

.box-llamada p{
  margin-bottom: 0;
  font-size: 16px;
}

.box-llamada svg{
  fill: #3c52b9;
  width: 18px;
  margin-left: 5px;
}

.box-llamada:hover{
  background-color: #3c52b9;
  color: #ffffff;
}

.box-llamada:hover svg{
  fill: #ffffff;
}

.box-llamada:hover p{
  color: #ffffff;
}

.headere-only-mobile{
  display: none;
}

@media (max-width: 1150px) and (min-width: 768px) {
  .header__column {
    width: 100%;
  }
  .content-header-alert{
    padding: 0 20px;
  }
  .content-header-alert-btn-txt .content-alert{
    margin-right: 10px;
  }
  .content-header-alert-info a, .content-header-alert-info p{
    font-size: 14px;
  }
  .content-icon-number img{
    margin-right: 3px; 
  }
}

@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 1rem 0 0;
  }

  /* .header__column {
    position: relative;
  } */

  .header__column .header__navigation.header--element.open{
    top: 186px;
    background-color: #ffffff;
  }

  .menu.menu--mobile ul li{
    border-top: 0;
    width: auto;
    display: table;
  }

  .menu.menu--mobile ul li .menu__link{
    padding-left: 0;
    padding-right: 4px;
    font-size: 24px;
    font-weight: 400;
  }

  .header .menu__wrapper.no-list li:before{
    top: 13px;
    content: none !important;
  }

  .header .menu__wrapper.no-list li .menu__link:hover:before{
    top: 47px;
    height: 3px;
  }

  .header__column .header__row-2{
    padding-right: 0;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    padding: 1.05rem;
  }
  .content-header-alert-btn-txt{
    display: none;
  }
  .content-icon-number{
    margin: 0 auto;
  }

  .box-content-header{
    justify-content: space-between;
    width: 100%;
    padding: 0 0.875rem;
  }

  .header .header__logo.header__logo--main{
    margin-left: 0;
  }

  .header__logo.header__logo--main .hs-image-widget {
    width: 110px !important;
  }

  .box-llamada{
    display: none;
  }

  .box-info-important{
    background-color: #2A356A;
    border-radius: 8px;
    padding: 24px;
    margin: 70px 0.875rem 0;
  }
  .box-info-important p{
    color: #ffffff;
  }
  .box-info-important .txt-important{
    background-color: #FDE4E3;
    display: inline-block;
    border-radius: 40px;
  }
  .box-info-important .txt-important p{
    color: #C12A21;
    font-size: 14px;
    margin: 0;
    padding: 4px 16px;
  }
  .box-info-important .txt-info{
    font-size: 16px;
    font-weight: 600;
    margin: 5px 0px 0px;
    padding-right: 60px;
  }
  .box-info-important .txt-info a{
    color: #ffffff;
    text-decoration: underline;
  }
  .box-agenda{
    background-color: #3C52B9;
    border-radius: 8px;
    margin: 20px 0.875rem 0;
    padding: 20px 40px;
  }
  .box-agenda p{
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    text-align: center;
  }

  .headere-only-mobile{
    align-items: center;
    justify-content: space-between;
    width: 100%;
    display: flex;
  }
  .box-header-new{
    display: none;
  }
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .header__logo {
    margin: 0 auto;
    width: 100%;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

.header__logo--main {
  padding-top: 1rem;
}

/* Search bar */

.header__search {
  padding: 0 1rem;
  width: auto;
}



  .hs-search-field__form {
    position: relative;
  }

  .header__search .hs-search-field__label {
    flex-basis: auto;
  }



.header__search .hs-search-field__input {
  
  height: 45px;
  padding: 0 0.7rem;
}



  .header__search .hs-search-field__button {
    padding: 0;
    fill: #000;
    background-color: transparent;
    border: none;
    padding: 10px;
    position: absolute;
    top: 0;
    right: 0;
  }

  .header__search .hs-search-field__button svg {
    height: 25px;
  }


.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

.header__search .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }
}

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 767px) {
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
    margin-right: 0;
    margin-left: 0;
  }

  .header__navigation--toggle:after {
    content: "";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url('https://23992612.fs1.hubspotusercontent-na1.net/hubfs/23992612/raw_assets/public/website-theme/images/x.svg');
    /* background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=); */
    background-repeat: no-repeat;
    background-size: auto;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
    position: absolute;
    margin-left: 0;
    background-color: #3C52B9;
    border-radius: 50%;
    background-position: center;
    padding: 20px;
  }
}

@media (min-width: 767px) and (max-width: 900px){
  .box-header-new a{
    font-size: 16px;
  }
  .box-header-new .content-header-new .content-img-items .items-menu .item{
    margin: 0px 13px;
  }
  .box-llamada svg{
    display: none;
  }
}
.content-footer p, .content-footer a{
    color: #ffffff;
    font-size: 16px;
    margin: 0;
}

.content-footer a{
    display: block;
}

.content-footer a:hover{
    color: #ffffff;
    text-decoration: underline;
}

.content-footer h5{
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 50px;
}

.content-footer{
    background-color: #2A356A;
    border-radius: 9580px/440px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-top: 80px;
}

.box-footer{
    max-width: 1136px;
    margin: 0 auto;
    display: flex;
    padding-bottom: 70px;   
    padding-top: 110px;
}

.content-phone-footer{
    width: 30%;
}

.content-footer .title-contact{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.icon-footer{
    margin-top: 20px;
    margin-bottom: 50px;
}

.icon-footer .social-links{
    justify-content: start;
}

.icon-footer .dnd-section .dnd-column{
    padding: 0;
}

.icon-footer .social-links__icon{
    height: 1.3rem;
    width: 1.3rem;
}

.icon-footer #hs_cos_wrapper_footer-module-2_{
    margin-left: 0;
}

.icon-footer .social-links__icon svg{
    height: 0.75rem;
}

.phone-footer{
    display: flex;
    justify-content: space-between;
}

.phone-footer .number{
    font-weight: bold;
}

.content-info-footer{
    width: 70%;
    padding-left: 140px;
}

.links-footer{
    display: flex;
}

.title-links{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}

.links-footer a{
    font-size: 14px;
    margin: 8px 0;
}

.box-links-margin{
    margin: 0 64px;
}

.line-footer {
    display: none;
}

.box-tyc{
    background-color: #1B2345;
}

.box-tyc p {
    font-size: 14px;
}

.box-tyc a{
    text-decoration: underline;
    font-size: 14px;
}

.txt-tyc{
    max-width: 1136px;
    margin: 0 auto;
    display: flex;
    align-items: end;
    padding: 15px 0;
}

.box-tyc .txt-tyc .line-tyc {
    margin: 0px 7px;
}




@media (max-width: 1150px) and (min-width: 767px){
    .box-footer{
        padding-left: 10px;
        padding-right: 10px;
    }

    .icon-footer .footer__container{
        padding-left: 0;
    }

    .box-tyc p, .box-tyc a {
        font-size: 12px;
    }

    .box-tyc{
        padding-left: 10px;
    }
}

@media (max-width: 767px){
    .box-footer{
        display: block;
        padding: 70px 30px 20px 30px;
    }

    .content-phone-footer img{
        margin: 0 auto;
        display: block;
    }

    .icon-footer .social-links{
        justify-content: center !important;
    }

    .content-phone-footer{
        width: 100%;
    }

    .line-footer {
        width: 100%;
        display: block;
        margin: 40px 0;
    }

    .content-info-footer{
        width: 100%;
        padding-left: 0;
    }

    .content-info-footer h5{
        display: none;
    }

    .links-footer{
        /* display: block; */
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .links-footer div{
        display: inline-block;
        width: 49%;
    }

    .box-links-margin{
        /* margin: 0px 0px 0px 30px; */
        margin: 0px;
    }

    .box-tyc p, .box-tyc a {
        font-size: 12px;
    }

    .box-tyc{
        padding: 0 30px;
    }

    .txt-tyc{
        display: block;
    }

    .txt-tyc p, .txt-tyc a{
        display: inline-block;
    }

    .box-tyc .txt-tyc .line-tyc {
        margin: 0 5px;
    }
   
    .content-footer{
        width: 100%;
        position: absolute;
        margin-top: -60px;  
        /* border-radius: 3000px/700px; */
    }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}



#main-content{
  position: relative;
}



/* Caja personalizada dos imagenes*/
.box-personalized-img-txt h2{
  margin-bottom: 0px;
}
.box-personalized-img-txt{
  max-width: 1136px;
  margin: 0 auto;
}
.box-personalized-img-txt .personalized-img-txt{
  display: flex;
  justify-content: space-between;
}
.box-personalized-img-txt .contentimgtxt, .box-personalized-img-txt #hs_cos_wrapper_contentimgdos{
  width: calc(var(--column-width-multiplier)*1%*6 - var(--column-gap)*var(--column-width-multiplier)*6/100);
}
.box-personalized-img-txt .contentimgtxt img, .box-personalized-img-txt #hs_cos_wrapper_contentimgdos img{
  width: 100%;
}
.box-personalized-img-txt .contenttxtsone{
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  margin: 0px auto;
}
.contenttxtsone #hs_cos_wrapper_contenttxt ,#hs_cos_wrapper_contenttxttwo, #hs_cos_wrapper_contenttxtthree, #hs_cos_wrapper_contenttxtfour{
  width: 50%;
}
/* end Caja personalizada dos imagenes*/



/* Seccion inmigracion al dia dos columnas img y video */
.contentimgtxt img{
  border-radius: 20px;
}
#hs_cos_wrapper_contentimgdos .iframe_wrapper{
  height: 100%;
}
#hs_cos_wrapper_contentimgdos .iframe_wrapper iframe{
  border-radius: 20px;
}
/* End Seccion inmigracion al dia dos columnas img y video */



/* Caja personalizada linea y texto al lado*/
.line-txt{
  display: flex;
}
.line-txt .line{
  width: 4px;
  background: #D8342A;
  margin-right: 32px;
}
.line-txt .txt{
  margin: 0;
}
/* end Caja personalizada linea y texto al lado*/


/*Formulaio contactenos*/
.body-container--contactenos-centro-ayuda form label{
  position: relative;
}
.body-container--contactenos-centro-ayuda form span{
  position: absolute;
  background: white;
  top: -10px;
  left: 2px;
  font-size: 14px;
  font-weight: 700;
}
.body-container--contactenos-centro-ayuda form span:first-child{
  left: 8px;
}
.body-container--contactenos-centro-ayuda form textarea{
  min-height: 150px;
  max-height: 150px;
}
.body-container--contactenos-centro-ayuda form .hs-button{
  width: 100%;
}

.body-container--contactenos-centro-ayuda input[type=submit]{
  margin-top: 35px;
}

.body-container--contactenos-centro-ayuda form input::-webkit-input-placeholder,
.body-container--contactenos-centro-ayuda form textarea::-webkit-input-placeholder
{
  color: #6F6F85;
}
/*end Formulaio contactenos*/




/* Sobre Nosotros */
.body-container--sobre-nosotros .row-number-7{
  margin-top: 45px;
}
.body-container--sobre-nosotros .span12 h2{
  font-size: 48px;
  color: #2A356A;
  margin-bottom: 0px;
}
.body-container--sobre-nosotros .span12 .secondary-header{
  font-size: 18px;
  margin: 20px 0px 0px;
}
.box-consul-sobre-nostros{
  background-image: url('https://23992612.fs1.hubspotusercontent-na1.net/hubfs/23992612/raw_assets/public/website-theme/images/circle-background.svg');
  background-repeat: no-repeat;
  background-color: #3C52B9;
  border-radius: 24px;
  color: #ffffff;
  padding: 56px 0;
  text-align: center;
  margin: 0 auto;
}
.box-consul-sobre-nostros p{
  margin-bottom: 0;
  font-size: 24px;
}
.box-consul-sobre-nostros .title{
  color: #ffffff !important;
  font-size: 48px !important;
  margin-bottom: 24px !important;
}
.box-consul-sobre-nostros .content-btn{
  align-items: center;
  background-color: #D8342A;
  border-radius: 8px;
  width: 343px;
  margin: 32px auto;
  padding: 24px 0;
  display: flex;
  justify-content: center;
  color: #ffffff;
}
.box-consul-sobre-nostros .content-btn p{
  font-size: 18px;
  margin-right: 10px;
}
.box-consul-sobre-nostros .content-info{
  display: flex;
  justify-content: center;
}
.box-consul-sobre-nostros .content-info div{
  display: flex;
  justify-content: center;
  align-items: center;
}
.box-consul-sobre-nostros .content-info div p{
  font-size: 16px;
}
@media (min-width: 767px) and (max-width: 1024px){
  .box-consul-sobre-nostros{
    margin: 0 12px;
  }
}
/* end Sobre Nosotros */



/* Sobre Nosotros abogados*/
.body-container--sobre-nosotros-abogados .title{
  color: #2A356A;
  font-size: 48px;
  font-weight: 700;
}
.body-container--sobre-nosotros-abogados .subtitle{
  color: #373738;
  font-size: 24px;
  font-weight: 400;
}
.body-container--sobre-nosotros-abogados .box-abogado{
  display: flex;
  justify-content: space-between;
  max-width: 1192px;
  flex-wrap: wrap;
}
/* end Sobre Nosotros abogados*/


/* Pop-up */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10;
}
.box-video-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px 25px;
    border-radius: 5px;
    z-index: 2;

    /*max-width: 560px;
    max-height: 336px;*/
    max-width: 80%;
    max-height: 80%;
    width: 100%;
    height: 100%;
}
#video-container{
    width: 100%;
    height: 100%;
}
#video-container iframe{
    width: 100%;
    height: 100%;
}
.video-container{
    width: 100%;
    height: 100%;
}
.video-container iframe{
    width: 100%;
    height: 100%;
}
.close-button {
    position: absolute;
    right: 5px;
    top: 0;
    cursor: pointer;
}
/* End Pop-up */


@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }

  /* Caja personalizada dos imagines*/
  .box-personalized-img-txt{
    padding: 0px 1rem;
  }
  .box-personalized-img-txt .personalized-img-txt{
    flex-wrap: wrap;
  }
  .box-personalized-img-txt .contentimgtxt{
    order: 2;
  }
  .box-personalized-img-txt #hs_cos_wrapper_contentimgdos{
    order: 1;
  }
  .box-personalized-img-txt #hs_cos_wrapper_contentimgdos, .box-personalized-img-txt .contentimgtxt{
    width: 100%;
    margin-bottom: 30px;
  }
  .contenttxtsone #hs_cos_wrapper_contenttxtthree p, #hs_cos_wrapper_contenttxtfour p{
    margin-bottom: 0;
  }
  .box-personalized-img-txt h2{
    font-size: 33px !important;
  }
  .box-personalized-img-txt .contenttxtsone{
    text-align: center;
  }
  /* end Caja personalizada dos imagines*/



  /* Caja Azul */
  .box-consul-sobre-nostros .title{
    font-size: 33px !important;
    line-height: 39px;
  }
  .box-consul-sobre-nostros .content-btn img{
    display: none;
  }
  .dnd_areatwo-row-1-padding{
    padding-bottom: 0px !important;
  }
  .box-consul-sobre-nostros .content-btn{
    margin-bottom: 60px;
    width: 100%;
  }
  /* end Caja Azul */



  /* Sobre Nosotros*/
  .box-consul-sobre-nostros{
    border-radius: 0;
    padding: 56px 10px;
    background-position: right top;
  }
  .body-container--sobre-nosotros h1{
    width: 100% !important;
    font-size: 40px !important;
    line-height: 48px;
  }
  .body-container--sobre-nosotros h1 span{
    text-decoration: none !important;
  }
  .box-consul-sobre-nostros .sub-tite{
    margin: 0 18px;
  }
  .box-consul-sobre-nostros .content-info{
    display: none;
  }
  .body-container--sobre-nosotros .span12 h2{
    font-size: 33px !important;
  }
  .box-consul-sobre-nostros p{
    font-size: 18px;
  }
  .body-container--sobre-nosotros .row-fluid-wrapper.row-number-13{
    padding: 80px 0 0;
  }
  .body-container--sobre-nosotros .cell_16835849395423-padding{
    order: 2;
  }
  .body-container--sobre-nosotros .cell_16835849395424-padding{
    order: 1;
  }
  /* end Sobre Nosotros*/


  /* Sobre Nosotros abogados*/
  .body-container--sobre-nosotros-abogados .title{
    font-size: 33px;
    line-height: 39px;
  }
  /* end Sobre Nosotros abogados*/


/*Formulaio contactenos*/
.body-container--contactenos-centro-ayuda form{
  margin-top: 60px;
}
/*end Formulaio contactenos*/
}



/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Home Page */

/* Global */

.hs_home-layout{
  width: 100%;
  height: auto;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs_home-layout{
    padding-left: 24px;
    padding-right: 24px;
  }
}

.hs_home-row{
  align-items: center;
  display: flex;
  width: 100%;
  max-width: 1136px;
  flex-direction: column;
}
.hs_home-row.variant_large{
  max-width: 1300px;
}

.hs_home-call_to_action{
  display: flex;
  padding: 24px 40px;
  border-radius: 8px;
  gap: 16px;
  font-size: 16px; 
  font-weight: 700;
  justify-content: center;
  text-align: center;
}
.hs_home-call_to_action:hover{
  font-weight: 700;
}
.hs_home-call_to_action.variant_blue{
  background-color: #3C52B9;
  color:#ffffff;
}
.hs_home-call_to_action.variant_white{
  background-color: transparent;
  border: 1px solid #ffffff;
  color:#ffffff;
}

.hs_home-call_to_action.variant_soft-blue{
  background-color: #E1E9F8;
  color:#3C52B9;
}

.hs_home-tag{
  display: inline-flex;
  padding: 4px 16px;
  border-radius: 290px;
  background-color: #E1E9F8;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color:#2A356A;
}

.hs_home-card-wrapper{
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
}

.hs_home-card-background{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 16px;
  object-fit: cover;
}

.hs_home-card-container-small{
  align-content: space-between;
  min-height: 260px;
  width: 100%;
  height: auto;
  position: relative;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1fr 56px;
  gap: 16px;
  padding: 24px 32px;
  color: #ffffff;
  background: linear-gradient(74deg, rgba(0, 0, 0, 0.70) 24.93%, rgba(0, 0, 0, 0.00) 100.48%);
}

.hs_home-card-container-medium{
  align-items: center;
  justify-content: space-between;
  min-height: 260px;
  width: 100%;
  height: auto;
  position: relative;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 210px 56px 210px;
  gap: 16px;
  padding: 24px 32px;
  color: #ffffff;
  background: linear-gradient(74deg, rgba(0, 0, 0, 0.70) 24.93%, rgba(0, 0, 0, 0.00) 100.48%);
}
.hs_home-card-container-medium h4{
  grid-column: 1/2;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 150px;
}

.hs_home-card-container-medium div{
  grid-column: 1/4;
}

.hs_home-card-container p{
  grid-column: 1/2;
  margin: 0;
  font-size: 18px;
}

.hs_home-card-container p span{
  font-size: 24px;
  display: block;
}

.hs_home-card-container figure{
  margin: 0;
  width: 56px;
  height: 56px;
  background-color: #C12A21;
  border-radius: 290px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 4px;
}

@media (max-width: 1024px) {
  .hs_home-call_to_action{
    padding: 16px 30px;
  }
}

@media (max-width: 767px) {
  .hs_home-card-container-medium{
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .hs_home-card-container-medium div{
    grid-column: auto;
  }

  .hs_home-card-container-small{
    grid-template-columns: 1fr 40px;
    align-items: center;
    padding: 20px;
  }

  .hs_home-card-container p {
    font-size: 16px;
  }

  .hs_home-card-container p span {
    font-size: 20px;
  }

  .hs_home-card-container figure{
    width: 40px;
    height: 40px;
  }
}

/* Sections */

.hs_home-main-wrapper-banner{
  background: radial-gradient(#FDE4E3, transparent 60%);
  background-size: 900px 900px;
  background-position: center -100px;
  background-repeat: no-repeat;
}

.hs_home-main-banner{
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
  gap: 24px;
}

.hs_home-main-banner_title{
  font-size: 48px;
  color:#2A356A;
  max-width: 1100px;
  margin: 0;
}
.hs_home-main-banner_title strong{
  color: #ffffff;
  background-color: #C12A21;
  border-radius: 16px;
  padding: 0px 20px;
  display: inline-block;
}

.hs_home-main-banner_description{
  font-size: 24px;
  line-height: 1.3;
  color: #373738;
  max-width: 950px;
  margin: 0;
}
.hs_home-main-banner_confidential_data{
  font-size: 14px;
  line-height: 1.3;
  color: #6F6F85;
  display: flex;
  gap: 8px;
  margin-top: -11px;
  width: 310px;
}

.hs_home-main-banner_profile-grid{
  margin: 0;
  width: 100%;
  gap: 20px;
  display: grid;
  grid-template-columns: repeat( 8, 1fr ); 
  align-items: end;
  justify-content: center;

}
.hs_home-main-banner_profile-grid img{
  width: 100%;
}

@media (max-width: 1024px) {
  .hs_home-main-banner_title{
    font-size: 40px;
  }
  .hs_home-main-banner_description{
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .hs_home-main-banner_title{
    font-size: 30px;
  }
  .hs_home-main-banner_description{
    font-size: 18px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hs_home-main-banner_profile-grid{
    grid-template-columns: repeat(7,140px);
    overflow-x: auto;
    justify-content: flex-start;
    gap: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

.hs_home-second-row{
  padding-top: 70px;
  padding-bottom: 70px;
  gap: 60px;
}
.hs_home-second-wrapper_title-description{
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.hs_home-second-title{
  font-size: 24px;
  font-weight: 700;
  width: 100%;
  color: #C12A21;
  margin: 0;
}

.hs_home-second-description{
  max-width: 930px;
  font-size: 48px;
  margin: 0;
  line-height: 1.2;
}

.hs_home-second-steps-wrapper{
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 26px;
  width: 100%;
}

.hs_home-second-step-column{
  display: flex;
  flex-direction: column;
}

.hs_home-second-step-divider{
  width: 64px;
  height: 50px;
  display: flex;
  justify-content: center;
}
.hs_home-second-step-divider:before{
  content: "";
  width: 3px;
  height: 100%;
  background: linear-gradient(0deg, #2A356A, #2A356A 50%, transparent 50%, transparent 100%);
  background-size: 8px 10px;
}

.hs_home-second-step{
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  width: 100%;
  align-items: center;
}

.hs_home-second-step.is_last_item{
  align-items: flex-start;
}

.hs_home-second-step-icon{
  width: 64px;
  height: 64px;
  border-radius: 64px;
  background-color: #D8342A;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}
.hs_home-second-step-text{
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.hs_home-second-step-text_title{
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.hs_home-second-step-text_description{
  font-size: 16px;
  margin: 0;
  color: #373738;
}

.hs_home-second-step-text_description strong{
  font-weight: 700;
}

.hs_home-second-step-highlight-banner{
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  justify-content: flex-end;
}

.hs_home-second-step-highlight-banner img{
  width: 100%;
  border-radius: 32px;
}

.hs_home-second-step-highlight-wrapper{
  margin:-70px 40px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-color: #2A356A;
  color: #ffffff;
  gap: 25px;
  padding: 18px 30px;
  border-radius: 8px;
  max-width: 480px;
  position: relative;
}

.hs_home-second-step-highlight-wrapper::before{
  content: "";
  width: 100%;
  height: 100px;
  top: 50%;
  translate: -40px 20px;
  position: absolute;
  background-image: radial-gradient(#FDE4E3 6px, transparent 0);
  background-size: 40px 40px;
  background-position: -14px -14px;
  z-index: -1;
}

.hs_home-second-step-highlight{
  margin: 0;
  font-size: 16px;
}
.hs_home-second-step-highlight strong{
  font-family: Poppins,serif;
  font-weight: 700;
  font-size: 30px;
  display: block;
}

@media (max-width: 1024px) {
  .hs_home-second-row{
    gap: 30px;
    max-width: 800px;
  }
  .hs_home-second-description{
    font-size: 30px;
  }
  .hs_home-second-steps-wrapper{
    grid-template-columns: 1fr;
  }
  .hs_home-second-step-highlight-wrapper{
    max-width: 550px;
  }
}
@media (max-width: 767px) {
  .hs_home-second-step-highlight-banner{
    flex-direction: column;
    align-items: center;
  }
  .hs_home-second-step-highlight-banner img{
    border-radius: 18px;
  }
  .hs_home-second-step-highlight-wrapper{
    border-radius: 0 0 18px 18px;
    margin: 0 0;
    grid-template-columns: 1fr;
  }
  .hs_home-second-step-highlight-wrapper:before{
    translate: -40px 80px;
  }
}

.hs_home-third-row{
  display: grid;
  grid-template-columns:  450px 1fr;
  gap: 40px;
  /* padding-top: 120px; */
  padding-top: 100px;
  /* padding-bottom: 120px; */
}

.hs_home-third-highlight-column{
  background-color: #D8342A ;
  color: #ffffff;
  padding: 40px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hs_home-third-highlight-column h3{
  font-size: 48px;
  margin: 0;
  color: #ffffff;
}

.hs_home-third-highlight-column p{
  font-size: 24px;
  margin: 0 0 32px 0;
}

.hs_home-third-content-services{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 80px 40px;
}

.hs_home-third-service{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hs_home-third-service h4{
  margin: 0;
  font-size: 24px;
}

.hs_home-third-service p{
  margin: 0;
  font-size: 16px;
  color: #373738;
}

.hs_home-third-service .info-services{
  min-height:110px;
}

.hs_home-third-service .box-txt-arrow-home{
  display: flex;
  align-items: center;
  margin-top: 24px;
}
.hs_home-third-service .box-txt-arrow-home p{
  color: #D8342A;
  font-size: 18px;
  font-weight: 700;
}
.hs_home-third-service .box-txt-arrow-home img{
  width: 16px;
  margin-left: 16px;
}

@media (max-width: 1024px) {
  .hs_home-third-row{
    grid-template-columns: 1fr;
  }
  .hs_home-third-highlight-column{
    padding: 30px;
  }
  .hs_home-third-highlight-column h3{
    font-size: 30px;
  }
  .hs_home-third-highlight-column p{
    font-size: 20px;
  }
  .hs_home-third-service{
    gap: 16px;
  }
  .hs_home-third-content-services{
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  .hs_home-third-row{
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .hs_home-third-content-services{
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.hs_home-four-row{
  gap: 24px;
  padding-top: 140px;
  padding-bottom: 140px;
}

.hs_home-four-row-first{
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 100%;
}

.hs_home-four-row-client-description{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hs_home-four-row-client-description h4{
  font-size: 48px;
  font-weight: 700;
  margin: 0;
  line-height: 1.1;
}

.hs_home-four-row-client-description p{
  font-size: 24px;
  margin: 0;
  color: #373738;
}

.hs_home-four-row-third{
  display: grid;
  width: 100%;
  gap: 24px;
  grid-template-columns: 1fr 1fr 180px;
}

.hs_home-four-row-third-call-to-action{
  background-color: #E1E9F8;
  border-radius: 16px;
  padding: 24px;
  color: #3C52B9;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .hs_home-four-row{
    padding-top: 50px;
  }
  .hs_home-four-row-first{
    gap: 24px;
  }
  .hs_home-four-row-client-description h4{
    font-size: 38px;
  }
  .hs_home-four-row-client-description p{
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .hs_home-four-row-first,
  .hs_home-four-row-third{
    grid-template-columns: 1fr;
  }

  .hs_home-four-row-client-description h4{
    font-size: 30px;
  }
  .hs_home-four-row-client-description p{
    font-size: 18px;
  }

  .hs_home-four-row-third-call-to-action{
    font-size: 18px;
    flex-wrap: nowrap;
    gap: 16px;
    justify-content: space-between;
  }
}

.hs_home-row-five{
  gap: 16px;
}

.hs_home-row-five-title{
  width: 100%;
  display: grid;
  justify-content: space-between;
  grid-template-columns: minmax(auto, 570px) 100px;
  align-items: center;
}
.hs_home-row-five-title h3{
  margin: 0;
  font-size: 48px;
  line-height: 1.2;
}
.hs_home-row-five p{
  margin: 0;
  font-size: 24px;
  color: #373738;
}

@media (max-width: 1024px) {
  .hs_home-row-five-title h3{
    font-size: 38px;
  }

  .hs_home-row-five p{
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .hs_home-row-five-title h3{
    font-size: 30px;
  }
  .hs_home-row-five-title{
    display: flex;
    flex-direction: column-reverse;
    gap: 16px;
    align-items: flex-start;
  }
}

.hs_home-row-seven{
  padding-top: 90px;
  padding-bottom: 40px;
  gap: 40px;
  display: grid;
  grid-template-columns: 400px 1fr;
  align-items: flex-start;
}

.hs_home-row-seven_description{
  display: flex;
  gap: 52px;
  flex-wrap: wrap;
}

.hs_home-row-seven_description h4{
  margin: 0;
  font-weight: 700;
  font-size: 44px;
}

.hs_home-row-seven_description a{
  font-size: 24px;
  font-weight: 700;
  display: flex;
  gap: 16px;
  color:#D8342A;
}

@media (max-width: 1024px) {
  .hs_home-row-seven{
    grid-template-columns: 1fr;
  }

  .hs_home-row-seven_description{
    flex-direction: column;
    gap: 16px;
  }
  .hs_home-row-seven_description h4{
    font-size: 38px;
    max-width: 430px;
  }
  .hs_home-row-seven_description a{
    font-size: 20px;
  }

  .hs_home-row-seven_accordion{
    padding: 0 25px;
    width: 100%;
  }
}

@media (max-width: 767px) {
  
  .container-slider .head_slide .rows_slider{
    display:none;
  }
  .hs_home-row-seven_description h4{
    font-size: 30px;
  }
  .hs_home-row-seven_description a{
    font-size: 18px;
  }
  .hs_home-row-seven_accordion{
    padding: 0;
  }
}

.hs_home-row-contact{
  gap: 16px;
  padding-top: 150px;
  padding-bottom: 200px;
  position: relative;
}
.hs_home-row-contact-background-map{
  position: absolute;
  left: 50%;
  top: 0;
  max-width: 1100px;
  width: 100%;
  translate: -50% 0;
  z-index: -1;
}

.hs_home-row-contact h2{
  margin: 0;
  font-size: 48px;
  text-align: center;
  line-height: 1.1;
}
.hs_home-row-contact p{
  margin: 0;
  font-size: 24px;
  max-width: 750px;
  text-align: center;
}

.hs_home-row-contact-call-to-actions{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 30px;
  width: 100%;
  max-width: 750px;
}

.hs_home-row-contact_confidential_data{
  font-size: 14px;
  line-height: 1.3;
  color: #6F6F85;
  display: flex;
  gap: 8px;
  max-width: 320px;
  width: 100%;
}

@media (max-width: 1024px) {
  .hs_home-row-contact{
    padding-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .hs_home-row-contact{
    padding-top: 80px;
    padding-bottom: 140px;
  }

  .hs_home-row-contact h2{
    font-size: 38px;
  }
  .hs_home-row-contact p{
    font-size: 18px;
  }
  .hs_home-row-contact-call-to-actions{
    grid-template-columns: 1fr;
  }
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}