:root {
  --black: #000000;
  --white: #ffffff;
  --green: #666100;
  --bg-main: #F2F2F2;
  --grey-border: #909090;
}

html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%; 
  word-break: normal;
  -moz-tab-size: 4;
  tab-size: 4;
}

*,
::before,
::after {
  background-repeat: no-repeat; 
  box-sizing: inherit;
}

::before,
::after {
  text-decoration: inherit; 
  vertical-align: inherit;
}

* {
  padding: 0; 
  margin: 0;
  transition: .2s;
}

hr {
  overflow: visible; 
  height: 0;
  color: inherit; 
}

details,
main {
  display: block; 
}

summary {
  display: list-item; 
}

small {
  font-size: 80%; 
}

[hidden] {
  display: none; 
}

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

a {
  background-color: transparent; 
}

a:active,
a:hover {
  outline-width: 0; 
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace; 
}

pre {
  font-size: 1em; 
}

b,
strong {
  font-weight: bolder; 
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit; 
  text-indent: 0; 
}

iframe {
  border-style: none;
}

input {
  border-radius: 0;
}

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

[type='search'] {
  -webkit-appearance: textfield; 
  outline-offset: -2px; 
}

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

textarea {
  overflow: auto; 
  resize: vertical; 
}

button,
input,
optgroup,
select,
textarea {
  font: inherit; 
}

optgroup {
  font-weight: bold; 
}

button {
  overflow: visible; 
}

button,
select {
  text-transform: none; 
}

button,
[type='button'],
[type='reset'],
[type='submit'],
[role='button'] {
  cursor: pointer;
}

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

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

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


button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}

select {
  -moz-appearance: none; 
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none; 
}

select::-ms-value {
  color: currentColor; 
}

legend {
  border: 0; 
  color: inherit; 
  display: table; 
  max-width: 100%; 
  white-space: normal; 
  max-width: 100%; 
}

::-webkit-file-upload-button {
  
  -webkit-appearance: button;
  color: inherit;
  font: inherit; 
}

[disabled] {
  cursor: default;
}

img {
  border-style: none; 
}

progress {
  vertical-align: baseline;
}

[aria-busy='true'] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled='true'] {
  cursor: default;
}

body{
  font-family: "Inter", sans-serif;
  background-color: var(--bg-main);
}

.page-template-page,
.archive.date.wp-theme-primer-umbral{
  padding-top: 20px;
}

h1{
  display: flex;
  color: white;
  font-size: 11px;
  text-align: center;
  position: absolute;
  bottom: -27px;
  background-color: #000000;
  padding: 2px;
  border-radius: 3px;
}

.hero{
  width: 100%;
  height: fit-content;
  max-width: 100%;
  padding-top: 20px;
  padding-bottom: 30px;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero > * {
  position: relative;
  z-index: 2;
}

.header{
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.logo{
  width: 92px;
  height: 92px;
  display: flex;
  position: relative;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
}

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

.home .menu-container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 92%;
  background-color: rgb(0 0 0 / 60%);
  border-radius: 50px;
  padding: 0 50px;
  position: relative;
}

.page-template-page-blog  .menu-container,
.single .menu-container,
.page-template-page-contacto .menu-container,
.archive .menu-container,
.category .menu-container,
.equipo .menu-container,
.page-template-page .menu-container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 92%;
  background-color: var(--black);
  border-radius: 50px;
  padding: 0 50px;
  position: relative;
}

.menu{
  display: flex;
  align-items: center;
  width: 100%;
}

.menu .item,
.menu .item a{
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
}

.menu .item{
  padding: 0 25px;
}

.menu .item a:hover{
  color: var(--green);
}

.menu .item .chevron-down{
  padding-left: 5px;
}

.btn-primary{
  width: fit-content;
  height: fit-content;
  border-radius: 30px;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0 5px;
}

.btn-primary-black{
  background-color: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-primary-black:hover{
  background-color: var(--white);
  color: var(--black);
  border-color: var(--black);
}

.btn-primary-white{
  background-color: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-primary-white:hover{
  background-color: var(--black);
  color: var(--white);
  border-color: var(--white);
}

.btn-primary-green{
  background-color: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn-primary-green:hover{
  background-color: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.sub-menu{
  width: 250px;
  height: fit-content;
  background-color: var(--white);
  position: absolute;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 30px;
  border-radius: 10px;
  display: none;
  z-index: 3;
}

.submenu-item{
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.submenu-item span{
  color: var(--green);
  font-size: 20px;
}

.submenu-item a{
  text-decoration: none;
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
}

.submenu-item a:hover{
  color: var(--green);
}

.sub-menu-1{
  top: 108px;
  left: 0px;
}

.sub-menu-2{
  top: 108px;
  left: 160px;
}

.sub-menu-3{
  top: 108px;
  left: 320px;
}

.submenu-icon {
  opacity: 0;
  width: 10px;
  height: 10px;
  background-color: var(--green);
  border-radius: 50px;
  margin-right: 5px;
  transition: opacity 0.5s ease;
}

.submenu-item:hover>.submenu-icon{
  opacity: 1;
}

.hero-title{
  width: 70%;
  margin: 0 auto;
  padding-top: 200px;
}

h2{
  font-size: 50px;
  color: var(--white);
  font-style: normal;
  font-weight: 900;
  line-height: 50px;
  letter-spacing: 0.5px;
  text-align: center;
}

h3{
  font-size: 20px;
  color: var(--white);
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0.5px;
  text-align: center;
}

.row-buttons-hero{
  width: 100%;
  margin: 50px auto;
  display: flex;
  justify-content: center;
}

.row-cards-hero{
  display: flex;
  justify-content: space-between;
}

.hero-card{
  display: flex;
  width: 32%;
  height: 235px;
  padding: 30px 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex-shrink: 0;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.hero-card-1{
  background-color: var(--white);
}

.hero-card-1 .row{
  width: 100%;
}

.hero-card-1 .row-cols-2{
  margin-top: 20px;
}

.hero-card-1 .row-cols-2 img{
  display: flex;
  width: 110px;
  height: 28px;
}

.hero-card-1 .card-text p{
  margin: 0;
  padding: 0;
  text-align: left;
}


.hero-card-2 .row{
  width: 100%;
  display: flex;
}

.hero-card-2 h4{
  color: var(--white);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0.5px;
}

.hero-card-2 .title-blog{
  color: var(--white);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0.5px;
  margin-top: 20px;
}

.swiper{
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  align-items: center;
  justify-content: center;
}

.swiper-slide a{
  text-decoration: none;
  color: var(--white);
}

.swiper-slide a:hover{
  color: var(--green);
}

.hero-card-2::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-card-2 > * {
  position: relative;
  z-index: 2;
}

.hero-card-2 hr{
  color: var(--white);
  width: 50%;
  margin: 10px auto;
  border-top: solid 1px var(--white);
  opacity: 1;
}

.hero-card-3{
  background-color: var(--green);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.hero-card-3 .avatar-video{
  height: 100%;
  width: fit-content;
}

.hero-card-3 .avatar-video img{
  width: 82%;
  max-width: 100%;
}

.hero-card-3 .icon-video{
  display: flex;
  width: 160px;
  height: 40px;
  padding: 3px 2px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  border-radius: 40px;
  background-color: var(--white);
}

.hero-card-3 .icon-video:hover{
  background-color: #7c7c7c;
  color: #ffffff;
}

.hero-card-3 a{
  text-decoration: none;
}

.hero-card-3 .icon-video span{
  color: var(--black);
}

.hero-card-3 .circle{
  border-radius: 50px;
  background-color: transparent;
  display: flex;
  margin-top: 70px;
}

.hero-card-3 .column{
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hero-card .innner-content{
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
}

.card-text{
  display: flex;
  width: 100%;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.5px;
}

.hero-card .row{
  margin-right: 0;
  margin-left: 0;
}

.hero-card-1 p{
  width: 100%;
  text-align: right;
}

.hero-card-1 p span{
  font-size: 20px;
  font-weight: 900;
}

.hero-card-3 h3{
  color: var(--white);
  font-size: 22px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0.5px;
  text-align: left;
  padding: 0;
  margin: 0;
}

.hero-card-3 .icon-video img{
  display: none;
}

.hero-card-3 .icon-video::after{
  content: "Descarga y lee el Libro";
  font-size: 12px;
  color: #000000;
  font-weight: 600;
}

.home-blog{
  width: 100%;
  padding: 100px 0;
}

.home-blog .title h3{
  font-size: 30px;
  color: var(--black);
  font-style: normal;
  font-weight: 800;
  line-height: 41px;
  letter-spacing: 0.5px;
  text-align: left;
}

.home-blog .title{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  padding: 0 30px
}

.home-blog .row-card-blog{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
}

.page-template-page-blog .row-card-blog,
.category .row-card-blog,
.archive .row-card-blog{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
  margin-bottom: 80px;
}

.card-blog{
  display: flex;
  width: 362px;
  padding: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background-color: var(--white);
  border-radius: 22px;
}

.img-card-blog{
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.card-blog .gradient{
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 74.33%, #000 93.73%);
  position: absolute;
  top: 0;
  left: 0;
}

.img-card-blog .row-bottom-img{
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  bottom: 10px;
  margin: 0;
  padding: 0;
  align-items: center;
  z-index: 2;
  padding: 0 10px;
}


.img-card-blog .row-bottom-img .date span{
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.5px;
  color: var(--white);
}

.img-card-blog .row-bottom-img .icon-share{
  display: flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  aspect-ratio: 1/1;
  border-radius: 9px;
  background-color: var(--white);
  margin: 0;
  padding: 0;
}

.img-card-blog .row-bottom-img .icon-share img{
  width: 16px;
  height: 16px;
}

.img-card-blog img{
  display: flex;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.card-blog h5{
  min-height: 85px;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 28px;
  letter-spacing: 0.15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-blog p{
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.5px;
}

.card-blog p:empty{
  display: none;
}

.card-blog p{
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-blog .tag-category{
  display: flex;
  padding: 6px 8px;
  align-items: flex-start;
  gap: 10px;
  position: absolute;
  left: 10px;
  top: 10px;
  border-radius: 6px;
  background-color: var(--black);
}

.card-blog .tag-category span{
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.5px;
  height: fit-content;
  width: fit-content;
}

.card-blog .tag-category span a{
  text-decoration: none;
  color: var(--white);
  cursor: pointer;
  height: fit-content;
  width: fit-content;
  display: flex;
}

.menu-mobile{
  display: none;
  width: 100%;
  height: fit-content;
  align-items: center;
  padding: 20px;
  justify-content: space-between;
  position: fixed;
  top: 0;
  z-index: 3;
  background-color: var(--white);
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
}

.menu-mobile .logo{
  width: 55px;
  height: 55px;
}

.menu-mobile .material-symbols-outlined{
  font-size: 40px;
}

.home-services{
  width: 100%;
  background-color: var(--white);
  padding: 100px 0;
}

.home-services .title{
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}

.home-services .title h4{
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: 41px;
  letter-spacing: 0.5px;
  color: var(--black);
}

.home-services .title p{
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 28px;
  letter-spacing: 0.15px;
  color: var(--black);
}

.card-services{
  display: flex;
  width: 100%;
  max-width: 416px;
  padding: 0px 16px;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin: 0 auto;
}

.card-services h5{
  text-align: center;
  font-family: Inter;
  font-size: 28px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.15px;
  color: var(--black);
}

.card-services img{
  display: flex;
  width: 100%;
  max-width: 100%;
}

.card-services-img{
  border-radius: 20px;
  overflow: hidden;
}

.home-teams{
  padding: 100px 0;
}

.home-teams .title{
  text-align: center;
}

.home-teams .title h4{
  text-align: center;
  font-family: Inter;
  font-size: 50px;
  font-style: normal;
  font-weight: 900;
  line-height: 50px;
  letter-spacing: 0.5px;
}

.home-teams .title p{
  text-align: center;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.5px;
  margin-top: 20px;
}

.row-home-teams{
  display: flex;
  justify-content: space-around;
  margin-top: 100px;
}

.card-team{
  max-width: 500px;
  height: fit-content;
  display: flex;
  padding: 40px 50px;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  border-radius: 20px;
  background: var(--green);
}

.card-team h4{
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Inter;
  font-size: 36px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  color: var(--white);
}

.card-team p{
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px;
  color: var(--white);
}

.card-team span{
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: var(--white);
}

.card-team ul{
  list-style: none;
}

.card-team ul li{
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.card-team ul li .icon{
  margin-right: 10px;
}

.home-us{
  padding: 100px 0;
}

.home-us .info-us h2{
  font-family: Inter;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 76px;
  letter-spacing: 0.5px;
  color: var(--black);
  text-align: left;
}
.home-us .info-us p{
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.5px;
  color: var(--black);
}

.home-us .who-us{
  width: 100%;
  display: flex;
  margin-bottom: 50px;
}

.home-us .info-us{
  display: flex;
  align-items: flex-start ;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

.who-us .row.row-cols-2{
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.info-us-img{
  max-width: 530px;
  max-height: 530px;
  border-radius: 20px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  position: relative;
}

.info-us-img img{
  display: block;
  width: 100%;
}

.reviews{
  display: flex;
  justify-content: space-around;
}

.card-review{
  width: 350px;
  display: flex;
  padding: 24px;
  gap: 16px;
  border-radius: 8px;
  border: 1px solid #787878;
  background: var(--white);
}

.card-review img{
  width: 45px;
  height: 45px;
}

.card-review .stars img{
  width: 20px;
  height: 20px;
}

.card-review .info .opinion{
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.5px;
  color: var(--black);
}

.card-review .info .name{
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: var(--black);
}

.footer{
  width: 100%;
  padding: 100px 0;
  background-color: var(--black);
  display: flex;
  flex-direction: column;
}

.footer .row{
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer .logo-footer{
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer .menu{
  display: flex;
  padding: 50px 0;
  justify-content: center;
}

.footer .menu .item a{
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.5px;
}

.card-team ul{
  margin: 0;
  padding: 0;
}

.footer .rrss{
  display: flex;
  justify-content: center;
}

.footer .rrss a{
  display: flex;
  margin: 0 10px;
}

.footer .legal{
  text-align: center;
  margin-top: 100px;
}

.footer .agencia{
  margin-top: 0;
}

.footer .legal span{
  font-size: 10px;
  color: var(--white);
}

.footer .legal span a{
  color: #ffffff;
  text-decoration: none;
}

.footer .legal span a:hover{
  color: #666100;
}

.page-template-page-blog ,
.article,
.contact,
.equipo,
.post-template-default,
.page-template-page-contacto{
  padding-top: 20px;
}

.breadcrumb{
  display: flex;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 20px;
}

.breadcrumb .item{
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.breadcrumb .item a{
  text-decoration: none;
  color: var(--black);
  font-weight: 600;
}

.breadcrumb .item a span{
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: var(--black);
}

.page-template-page-blog .title h3,
.page-template-page-contacto .title h3,
.equipo .title h3,
.category .title h3,
.archive .title h3,
.page-template-page .title h3{
  color: var(--green);
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  line-height: 41px;
  letter-spacing: 0.5px;
  text-align: left;
  padding-left: calc(var(--bs-gutter-x) * .5);
  padding-top:0;
  padding-bottom:0;
  margin:0;
}

.page-template-page-blog .title,
.page-template-page-contacto .title h3,
.equipo .title h3,
.category .title h3,
.archive .title h3,
.page-template-page h3{
  padding: 30px 0;
}

.blog-filter{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.dropdown-toggle{
  display: flex;
  width: 200px;
  height: 50px;
  padding: 0px 16px;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
  border: 1px solid var(--grey-border);
  background: var(--white);
  color: var(--black);
  font-size: 12px;
  margin-right: 20px;
}

.dropdown-toggle:hover{
  background-color: var(--black);
  color: var(--white);
}

.dropdown-menu{
  width: 90%;
}

.dropdown-item{
  font-size: 12px;
}

.btn-menu-offcanvas{
  color: inherit;
  background-color: inherit;
  border-color: inherit;
  border: none;
  width: fit-content;
  margin: 0;
  padding: 0;
}

.offcanvas{
  background-color: var(--black);
}

.btn-close{
  background-color: var(--white);
  opacity: 1;
}

.btn-menu-offcanvas:hover,
.btn-menu-offcanvas:active{
  color: transparent !important;
  background-color: transparent !important;
  border-color: transparent !important;
}

.offcanvas-body{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.offcanvas-body .menu{
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}

.offcanvas-body .menu .item{
  width: 100%;
}

.offcanvas-body .menu .item a{
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.row-pager-blog{
  width: 100%;
  padding: 100px 0;
}

.row-pager-blog .pager{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.row-pager-blog .pager .item{
  width: 30px;
  height: 30px;
  background-color: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 200;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
}

.row-pager-blog .pager .item a{
  display: flex;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  color: var(--white);
}

.row-pager-blog .pager .item:hover{
  background-color: var(--green);
  font-weight: 600;
}

.row-pager-blog .pager .active{
  background-color: var(--green);
  font-weight: 600;
}

.content-article{
  margin: 100px 0;
}

.row-article{
  margin: 5px 0;
}

.row-article img{
  display: flex;
  width: 100%;
  max-width: 100%;
  justify-content: center;
  align-items: center;
}

.row-article .content h2{
  font-size: 25px;
  font-style: normal;
  font-weight: 800;
  line-height: 38px;
  letter-spacing: 0.15px;
  text-align: left;
  color: var(--black);
  margin: 50px 0;
}

.row-article p{
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px;
  letter-spacing: 0.15px;
}

.row-article-top{
  margin-bottom: 50px;
}

.row-article .img-article-3-4{
  margin: 50px 0;
}

.row-article .video{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px 0;
}

.contacto-content{
  display: flex;
  align-items: center;
  margin-top: 100px;
  margin-bottom: 100px;
}

.contacto-content .form{
  padding-right: 50px;
}

.form-label{
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.contacto-content img{
  display: flex;
  width: 100%;
  max-width: 100%;
}

.form-control-lg{
  color: var(--black);
  font-size: 14px;
  display: flex;
  height: 50px;
  padding: 13px 16px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}

.form-control::placeholder{
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.mantencion{
  background-color: #000000;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.mantencion .logo{
  width: 400px;
  height: 400px;
  margin-top: 200px;
}

.mantencion h1{
  font-size: 50px;
  color: var(--white);
  font-style: normal;
  font-weight: 900;
  line-height: 50px;
  letter-spacing: 0.5px;
  text-align: center;
  display: block;
  padding: 50px 0;
}

.mantencion .logo img{
  display: flex;
  width: 100%;
  max-width: 100%;
}

.mantencion h2{
  font-size: 30px;
}

.section-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  padding-bottom: 100px;
}

.accordion-item{
  display: flex;
  flex-direction: column;
  padding: 18px 24px;
  align-items: center;
  gap: 4px;
  align-self: stretch;
  background-color: var(--bg-main);
  border-radius: 12px !important;
}

.accordion-item{
  margin: 20px 0;
  border: none;
}

.accordion-button{
  padding: 0;
  background-color: transparent;
}

.content-accordion h4{
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0.5px;
  color: var(--black);
}

.equipo .contacto{
  padding: 100px 0;
}

.download-pdf,
.download-pdf .container{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 70px 0;
}


@media only screen and (max-width: 1399px){
  .menu-container{
    width: 100%;
    margin-left: 10px;
  }
  .menu{
    width: 75%;
  }
  .card-blog .btn-primary-black{
    width: 100%;
  }
}

@media only screen and (max-width: 64em){
  .header{
    display: none;
  }
  .menu-mobile{
    display: flex;
  }
  .hero{
    padding-top: 100px;
    background-position: center;
  }
  .hero-title{
    padding-top: 50px;
    width: 100%;
  }
  .row-buttons-hero{
    flex-direction: column;
    justify-content: center;
  }
  .row-buttons-hero button{
    margin: 10px auto;
  }
  .row-cards-hero{
    flex-direction: column;
  }
  .hero-card{
    width: 60%;
    margin: 15px auto;
  }
  .home-blog .row-card-blog{
    flex-direction: column;
    gap: 40px;
  }
  .home-blog .title{
    flex-direction: column;
    align-items: center;
  }
  .home-blog .title h3{
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
  }
  .home-services .row-services{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }
  .home-services .title h4{
    text-align: center;
  }
  .home-services .title p{
    text-align: center;
  }
  .home-services .column{
    width: 100%;
  }
  .row-home-teams{
    flex-direction: column;
    gap: 40px;
  }
  .card-team{
    margin: 0 auto;
    width: 400px;
  }
  .who-us .row-cols-2{
    display: block;
  }
  .home-us .info-us{
    width: 100%;
    margin-bottom: 50px;
  }
  .who-us .row-cols-2 img{
    width: 100%;
    margin: 0 auto;
  }
  .card-review{
    margin-bottom: 20px;
  }
  .footer .menu{
    flex-direction: column;
  }
  .footer .menu .item{
    padding: 10px 0;
  }
  .page-template-page-blog  .row-card-blog{
    flex-direction: column;
    gap: 60px;
  }
  .blog-filter{
    flex-direction: column;
  }
  .blog-filter .dropdown{
    margin-bottom: 20px;
  }
  .header-category{
    flex-direction: column;
  }
  .page-template-page-blog  .title{
    width: 100%;
    padding: 0 20px;
    margin-bottom: 30px;
  }
  .page-template-page-blog  .title h3{
    text-align: center;
  }
  .blog-filter{
    width: 100%;
  }
  .breadcrumb{
    margin-top: 120px;
  }
  .row-article .row-cols-2{
    flex-direction: column;
  }
  .row-article .row-cols-2 div{
    width: 100%;
  }
  .contacto-content{
    flex-direction: column;
  }
  .contacto-content div{
    width: 100%;
  }
  .contacto-content .img-article-1-1{
    margin-top: 50px;
  }
  .contacto-content{
    margin-top: 20px;
  }
  .contacto-content .form {
    padding: 0 20px;
  }
  .content-accordion{
    width: 100%;
  }
}

@media only screen and (max-width: 40em){
  .menu-mobile{
    padding: 10px 30px;
  }
  .hero {
    padding-top: 60px;
  }
  .hero-card{
    width: 90%;
  }
  h2{
    font-size: 32px;
    line-height: 40px;
  }
  h3{
    font-size: 18px;
  }
  .row-buttons-hero{
    margin: 20px auto;
  }
  .home-blog {
    padding: 50px 0;
  }
  .home-blog .title{
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .home-blog .title h3{
    font-size: 24px;
    line-height: 30px;
  }
  .card-blog{
    background-color: var(--white);
    border-radius: 22px;
    padding: 20px 16px;
    width: 95%;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
  }
  .card-blog .btn-primary-black{
    margin: 0 auto;
    width: 100%;
  }
  .home-services .column{
    width: 100%;
  }
  .home-us .who-us{
    padding: 0 20px;
  }
  .row-home-teams{
    padding: 0 20px;
  }
  .card-team{
    width: 100%;
    padding: 30px 30px;
  }
  .home-services{
    padding: 50px 0;
  }
  .home-teams .title h4{
    font-size: 40px;
    line-height: 45px;
  }
  .row-home-teams{
    margin-top: 50px;
  }
  .home-us{
    padding: 50px 0;
  }
  .home-us .info-us h2{
    font-size: 40px;
    line-height: 50px;
  }
  .home-us .info-us p{
    font-size: 16px;
    line-height: 24px;
  }
  .img-card-blog{
    width: 100%;
  }
  .breadcrumb {
    margin-top: 80px;
  }
  .content-article {
    margin: 0;
  }
  .row-article .content h2{
    font-size: 18px;
    line-height: 28px;
  }
  .row-article p {
    font-size: 14px;
    line-height: 24px;  
  }
  .mantencion .logo{
    width: 300px;
    height: 300px;
  }
  .mantencion h1{
    font-size: 40px;
    line-height: 50px;
  }
}

