*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* border: 1px solid red; */
}
:root {
  --primary-blue: #005892;
  --primary-cyan: #03a8c9;
  --primary-cyan-clone: #03a8c9;
  --primary-green: #bed600;
  --primary-black: #454545;
  --primary-orange: #f59d08;
  --primary-purple: #9164cc;
  --secondary-dark-blue: #004573;
  --secondary-medium-blue: #71a5c0;
  --secondary-light-blue: #c6d9e6;
  --secondary-dark-cyan: #0395b3;
  --secondary-medium-cyan: #7fd5e3;
  --secondary-light-cyan: #cceef4;
  --secondary-dark-gray: #7e7e7e;
  --secondary-medium-gray: #b1b1b1;
  --secondary-light-gray: #d7d7d7;
  --gray: #b1b1b1;
  --green: #1ff174;
  --blue: #1564ff;
  --red: #ff1313;
  --white: #ffffff;
  --black: #2a2626;
  --fullwidth: 100%;
  --fullheigh: 100%;
  --font-family-Poppins: "Poppins", sans-serif;
}
html {
  color: var(--primary-black);
  font-size: 45%;
  font-family: var(--font-family-Poppins);
  scroll-behavior: smooth;
  box-sizing: border-box;
}
body {
  width: var(--fullwidth);
  max-width: 1920px;
  margin: 0 auto !important;
  float: none !important;
  display: block;
  overflow-x: hidden !important;
}
a {
  text-decoration: none;
}
li {
  list-style: none;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--secondary-light-blue);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-blue);
  border-radius: 20px;
}

/* Header */
#component-header .header {
  position: fixed;
  z-index: 100;
  max-width: 1920px;
}
#component-header .header__top {
  padding: 10px 19px;
  min-height: 8.5vh;
}
#component-header .top__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
#component-header .top__left {
  width: 50%;
}
#component-header .top__left p {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 120%;
  color: #0096AD;
}
#component-header .top__right {
  width: 45%;
}
#component-header .top__right a {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 100%;
  text-align: center;
  color: #ffffff;
  display: inline-block;
  width: 100%;
  padding: 12px 21px;
  background: #024068;
  border: 2px solid #024068;
  border-radius: 500px;
}
#component-header .header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 10vh;
  padding: 14px 20px;
  background: #fff;
  border-bottom: 1px solid #d3d7e5;
}
#component-header .nav__logo img {
  width: 100px;
}
#component-header .nav__links {
  z-index: 99;
  position: absolute;
  right: 0;
  height: 0.5vh;
  top: 18.5vh;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  transform: translateX(100%);
  transition: transform 0.5s ease-in;
}
#component-header .nav__links li {
  list-style: none;
  opacity: 0;
}
#component-header .nav__links li:last-child {
  width: 70%;
}
#component-header .nav__links li > a {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 100%;
  text-align: center;
  color: #ffffff;
  display: inline-block;
  width: 100%;
  padding: 12px 21px;
  background: #3e41a0;
  border: 2px solid #3e41a0;
  border-radius: 500px;
}
#component-header .nav__links .nav__search {
  /*   display: flex;
  flex-direction: column; */
  margin: 0 15px;
  position: relative;
}
#component-header .nav__links .nav__search label {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 120%;
  text-align: center;
  color: #1f2e45;
  margin-bottom: 16px;
}
#component-header .nav__links .nav__search input {
  width: 100%;
  background: #ffffff;
  border: 1px solid #d3d7e5;
  border-radius: 8px;
  vertical-align: middle;
  display: inline-block;
  height: 40px;
  padding: 0 20px;
}
#component-header .nav__search .search-icon img {
  position: absolute;
  right: 14px;
  top: 10px;
  width: 20px;
}
#component-header .nav__hamburger {
  display: block;
}
#component-header .nav__hamburger div {
  background-color: #ffffff;
  width: 25px;
  height: 2px;
  margin: 5px;
  transition: all 0.3s ease;
}
#component-header .nav__active {
  transform: translateX(0%);
  touch-action: none;
  -webkit-overflow-scrolling: none;
  overflow: hidden;
  overscroll-behavior: none;
  margin-top: 30px;
}
@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 5px);
}
.toggle .line2 {
  opacity: 0;
}
.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -5px);
}

/* Main */
#component-main .main {
  background-image: url("https://blog.oncosalud.pe/hubfs/%5BOncosalud%5D%20LP%20Descargas%20Q4%202022/fondo-postdestacado-desktop.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 10px 16px 10px 16px;
}
#component-main .main__title h1 {
  font-weight: 600;
  font-size: 3rem;
  line-height: 120%;
  text-align: center;
  color: #0d1436;
  margin-bottom: 30px;
}
#component-main .main__title h1 span {
  color: var(--primary-cyan);
}
#component-main .main__newtitle h1 {
  font-weight: 600;
  font-size: 3rem;
  line-height: 120%;
  text-align: left;
  color: #0d1436;
  margin-bottom: 30px;
}
#component-main .main__newtitle h1 span {
  color: var(--primary-cyan);
}
#component-main .main__post .main__post-tag a {
  /*background: #e6f8fa;*/
  border-radius: 14.5px;
  padding: 6px 12px;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 150%;
  /*color: #0d1436;*/
  text-decoration: none;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  background-color: var(--primary-cyan);
    color: white;
  width: 148px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
}
#component-main .main__post .main__post-title h2 {
  font-weight: 600;
  font-size: 2.1rem;
  line-height: 120%;
  color: var(--primary-cyan);
  margin: 16px 0;
}
#component-main .main__post .main__post-time p {
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 120%;
  color: #003d88;
  margin: 24px 0;
}
#component-main .main__post .main__post-image {
  margin-bottom: 20px;
  position: relative;
}
#component-main .main__post .main__post-image img {
  width: 100%;
  border-radius: 16px;
}
#component-main .main__post .main__post-button {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2em;
  display: flex;
  align-items: center;
  justify-content: center;
}
#component-main .main__post .main__post-button a {
  background: #0096ad;
  border: 2px solid #0096ad;
  border-radius: 500px;
  padding: 16px 66px;
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 100%;
}
#component-main .main__post .main__post-button-mobile {
  display: none;
}
#component-main .main__post .main__post-button-mobile a {
  background: var(--primary-cyan);
  border: 2px solid var(--primary-cyan);
  border-radius: 500px;
  padding: 10px 30px;
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 100%;
}
#component-main .main__post-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
}
#component-main .main__post-list .main__post-list-tag a {
  background: #e6f8fa;
  border-radius: 14.5px;
  padding: 5px 12px;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 150%;
  color: #0d1436;
  text-decoration: none;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
}
#component-main .main__post-list .main__post-list-title h1 {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 120%;
  color: #1f2e45;
  margin: 16px 0;
}
#component-main .main__post-list .main__post-list-time p {
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 120%;
  color: #003d88;
  margin: 24px 0;
}
#component-main .main__post-list .main__post-list-image {
  margin-bottom: 20px;
  position: relative;
}
#component-main .main__post-list .main__post-list-image img {
  width: 100%;
  border-radius: 16px;
}
#component-main .splide .splide__pagination {
  bottom: -4em;
}
#component-main .splide .splide__pagination li {
  line-height: 0;
}
#component-main .splide .splide__pagination__page {
  background: var(--primary-cyan);
  opacity: 1;
}
#component-main .splide .splide__pagination__page.is-active {
  background: var(--primary-cyan);
  opacity: 1;
  border-radius: 16px;
  width: 48px;
  margin: 0 7px;
  transform: scale(1);
  transition: all 0.3s ease-in;
}

/* Body */
#component-body .body {
  background: #ffffff;
  padding: 0 16px 24px 16px;
}
#component-body .body h2 {
  font-weight: 500 !important;
  font-size: 2.4rem !important;
  line-height: 120% !important;
  color: #0c7bc4 !important;
  margin-bottom: 16px !important;
}
#component-body .body p {
  font-weight: 400 !important;
  font-size: 1.4rem !important;
  line-height: 150% !important;
  color: #1f2e45 !important;
}

/* Last */
#component-last .last {
  background: #ffffff;
  padding: 80px 10px 24px 10px;
}
#component-last .last__title h2 {
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 120%;
  text-align: center;
  color: #0d1436;
  margin-bottom: 30px;
  padding: 0 20px;
}
#component-last .last__title h2 span {
  color: var(--primary-cyan);
}
#component-last .last__tabs {
  position: relative;
}
#component-last .tabs__navigation {
  background: transparent;
}
#component-last .tabs__list {
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  /* 	justify-content: center; */
  justify-content: flex-start;
}
#component-last .tabs__list::-webkit-scrollbar {
  display: none;
}
#component-last .tabs__list li {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 8px;
}
#component-last .tabs__item {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 100%;
  background: #f6f9ff;
  border-radius: 6px;
  color: #52688b;
  text-decoration: none;
  padding: 14px 28px;
}
#component-last .tabs__item:hover {
  background-color: rgba(240, 96, 152,0.2);
  color: #ffffff;
}
.js #component-last .tabs__item--selected {
  background: var(--primary-cyan);
  color: #ffffff;
  font-weight: 600;
}
.js #component-last .tabs__item--selected:hover {
  background-color: rgba(240, 96, 152,0.2);
  color: #ffffff;
  font-weight: 600;
}
#component-last .tabs__panels {
  overflow: hidden;
  margin-top: 18px;
}
#component-last .tabs__panel {
  padding: 1.25em;
}
.js #component-last .tabs__panel {
  display: none;
}
.js #component-last .tabs__panel--selected {
  display: block;
  -webkit-animation: cd-fade-in 0.5s;
  animation: cd-fade-in 0.5s;
}
@-webkit-keyframes cd-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes cd-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#component-last .panel__post {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 16px;
  display: grid;
}

#component-last .panel__post:hover {
 	outline: 4px solid #0096AD !important;
}

#component-last .panel__post .post__header {
  position: relative;
}
#component-last .panel__post .post__header img {
  width: 100%;
  border-radius: 12px 12px 0px 0px;
  height: 360px;
}

@media (max-width: 992px){
  #component-last .panel__post .post__header img {
    height: inherit !important;
}
}

#component-last .panel__post .post__tag a {
  /*background: #e6f8fa;*/
  border-radius: 14.5px;
  padding: 6px 12px;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 150%;
  color: #0d1436;
  text-decoration: none;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  margin: 16px 21px;
   background-color: var(--primary-cyan);
    color: white;
  width: 148px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
}
#component-last .panel__post .post__tag a img {
  width: 15px;
  margin-right: 8px;
}
#component-last .post__details {
  padding: 0 21px 24px 21px;
  display: grid;
  align-content: space-between;
}
#component-last .post__details .post__title h2 {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 120%;
  color: #1f2e45;
  margin: 24px 0 16px 0;
}
#component-last .post__details .post__resume p {
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 120%;
  color: #1f2e45;
}
#component-last .post__details .post__button a {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 100%;
  text-align: center;
  color: #ffffff;
  background: var(--primary-cyan);
  border: 2px solid  var(--primary-cyan);
  border-radius: 500px;
  padding: 15px 0;
  width: 100%;
  display: inline-block;
  margin-top: 24px;
}
#component-last .panel__post-pagination ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
#component-last .panel__post-pagination ul li {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 120%;
  color: #0d1436;
}

/* Form */
#component-form .form {
  background-image: url("https://blog.oncosalud.pe/hubfs/%5BOncosalud%5D%20LP%20Descargas%20Q4%202022/fondo-form-submission-desktop.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#component-form .form__container {
  background: #ffffff;
  box-shadow: 0px 0px 24px rgba(82, 104, 139, 0.16);
  border-radius: 12px;
  margin: 16px 16px 30px 16px;
  padding: 23px 3px;
}
#component-form .form__title h2 {
  font-weight: 600;
  font-size: 2rem;
  line-height: 120%;
  text-align: center;
  color: #0d1436;
  margin: 30px 0;
  padding: 0 20px;
}
#component-form .form__title h2 span {
  color: var(--primary-cyan);
}
#component-form .form__main {
  padding: 35px 20px;
}
#component-form .form__main .hs-form fieldset {
  max-width: var(--fullwidth);
}
#component-form .form__main .hs-form fieldset:nth-child(3){
max-width: 346px;
    margin: auto;
}
#component-form .form__main .hs-form fieldset:nth-child(4){
max-width: 346px;
    margin: auto;
}
#component-form .hs-main-font-element {
  margin-bottom: 45px;
}
#component-form .hs-main-font-element h2 {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 120%;
  text-align: center;
}
#component-form .hs-form-field {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 14px;
  margin: 0 0 35px 0;
  display: block;
  position: relative;
  color: #696c80;
}
#component-form .hs-form-field .input .hs-input {
  margin-top: 10px !important;
  background: #fff !important;
  border: 1px solid #d3d7e5 !important;
  border-radius: 8px !important;
  padding: 15px 16px !important;
  color: #696c80 !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 14px !important;
  font-family: var(--font-family-Poppins) !important;
  width: 100% !important;
}
#component-form .hs-fieldtype-select .input {
  margin-right: 0;
}
#component-form .hs-fieldtype-select .input .hs-input {
  width: 100% !important;
}
#component-form .hs-form-field .input .error {
  border: 1px solid #ff1313;
}
#component-form .hs-form .hs_error_rollup ul {
  list-style: none;
  color: #ff1313;
}
#component-form .hs-form-field .hs-error-msgs {
  list-style: none;
  color: #ff1313;
  margin-top: 15px;
}
#component-form .hs-form-field .hs-error-msg {
  font-size: 1rem;
}
#component-form .inputs-list .hs-form-booleancheckbox {
  list-style: none;
}
#component-form .hs-fieldtype-booleancheckbox {
  margin: 0 0 15px 0;
  padding: 0 18px;
}
#component-form
.inputs-list
.hs-form-booleancheckbox
.hs-form-booleancheckbox-display
.hs-input {
  width: 20px !important;
  height: 20px !important;
}
#component-form
.inputs-list
.hs-form-booleancheckbox
.hs-form-booleancheckbox-display {
  display: flex;
  align-content: center;
}
#component-form .hs-form-booleancheckbox label input {
  height: 24px;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 24px;
}
#component-form .hs-form-booleancheckbox label span::before {
  content: "";
  border: 2px solid var(--primary-cyan);
  height: 20px;
  width: 20px;
  position: absolute;
  left: 10px;
  top: 0;
  border-radius: 4px;
}
#component-form .hs-form-booleancheckbox label span::after {
  content: "";
  border: 1.5px solid #fff;
  border-left: 0;
  border-top: 0;
  height: 12px;
  left: 18px;
  opacity: 0;
  position: absolute;
  top: 3px;
  transform: rotate(45deg);
  transition: opacity 0.2s ease-in-out;
  width: 4px;
}
#component-form .hs-form-booleancheckbox label input:checked + span::before {
  background: var(--primary-cyan);
  border: 2px solid var(--primary-cyan);
}
#component-form .hs-form-booleancheckbox label input:checked + span::after {
  opacity: 1;
}
#component-form .hs-form-booleancheckbox label input:focus + span::after {
  outline: 3px solid transparent; /* For Windows high contrast mode. */
}
#component-form
.inputs-list
.hs-form-booleancheckbox
.hs-form-booleancheckbox-display
span {
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 25px;
  color: #696c80;
  margin-left: 20px;
  margin-top: -3px;
}
#component-form
.inputs-list
.hs-form-booleancheckbox
.hs-form-booleancheckbox-display
a {
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 25px;
  color: var(--primary-cyan);
  text-decoration: none;
}
#component-form .hs-form-booleancheckbox .hs-form-required {
  display: none;
}
#component-form .hs-submit .actions{
  text-align: center;
}
#component-form .hs-button {
  display: inline-block;
  padding: 16px 0;
  background: var(--primary-cyan);;
  border: 2px solid var(--primary-cyan);;
  border-radius: 500px;
  color: #fff;
  font-family: var(--font-family-Poppins);
  font-weight: 500;
  font-size: 2rem;
  line-height: 100%;
  width: 100%;
  margin-top: 15px;
  cursor: pointer;
  text-align: center;
  max-width: 216px
}

/* Tactic */
#component-tactic .tactic {
  background: var(--primary-cyan);
  padding: 40px 16px 0 16px;
}
#component-tactic .tactic__title h2 {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 120%;
  text-align: center;
  color: #fff;
  margin-bottom: 24px;
  padding: 0 30px;
}
#component-tactic .tactic__subtitle p {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 120%;
  text-align: center;
  color: #ffffff;
}
#component-tactic .tactic__cta a {
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 100%;
  text-align: center;
  color: #fff;
  background: #024068;
  border: 2px solid  #024068;
  border-radius: 500px;
  width: 100%;
  display: inline-block;
  padding: 16px 0;
  margin: 24px 0;
  max-width: 158px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
#component-tactic .tactic__img img {
  margin-top: 20px;
  width: 75%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Logo */
#component-logo .logo {
  background: #ffffff;
  padding: 28px 32px;
}
#component-logo .logo__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
#component-logo .logo__list img {
  width: 140px;
}

/* Footer */
#component-footer .footer {
  background: var(--primary-cyan);
  padding: 15px 0;
}
#component-footer .footer__note p {
  font-weight: 300;
  font-size: 1rem;
  line-height: 18px;
  color: #ffffff;
  text-align: center;
}

#component-last .post-pagination__list {
  display: flex;
    flex-direction: row;
    margin: auto;
    justify-content: space-evenly;
    margin-top: 20px;
    max-width: 415px;
}
#component-last .post-pagination__list a{
  padding: 8px 16px !important;
}
#component-last .post-pagination__number{
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 120%;
  color: #0D1436;
  padding: 8px 16px;
}
#component-last .post-pagination__number-active{
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 120%;
  color: #0096AD;
  background: #FFFFFF;
  border: 2px solid #0096AD;
  border-radius: 8px;
  padding: 8px 16px;
}

/* Staff */
#component-staff .staff{
	background: #ffffff;
	padding: 15px 0px 30px 0px; 
}
#component-staff .staff__title h2 {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 120%;
  text-align: center;
  color: #03A8C9;
  padding: 0 20px;
	margin-bottom: 35px;
}
#component-staff .staff__card{
	text-align: center;
	background: #F7F9FB;
  border-radius: 8px;
	padding: 48px 50px;
}
#component-staff .staff__image img {
	width: 87px;
	height: 87px;
	margin-bottom: 21px;
}
#component-staff .staff__name {
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 120%;
	text-align: center;
	color: #00B0CA;
	margin-bottom: 13px;
}
#component-staff .staff__specialty {
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 150%;
	text-align: center;
	color: #000000;
}
#component-staff .splide__pagination{
	bottom: -3.5em;
}
#component-staff .splide .splide__pagination li {
  line-height: 0;
}
#component-staff .splide .splide__pagination__page {
  background: #99dfea;
  opacity: 1;
}
#component-staff .splide .splide__pagination__page.is-active {
  background: #00b0ca;
  opacity: 1;
  border-radius: 16px;
  width: 48px;
  margin: 0 7px;
  transform: scale(1);
  transition: all 0.3s ease-in;
}

/*Tablet*/
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #component-header .header {
    width: 100%;
  }
  #component-header .header__top {
    padding: 10px 30px;
  }
  #component-header .top__left {
    width: auto;
  }
  #component-header .top__right {
    width: auto;
  }
  #component-header .nav__hamburger {
    display: none;
    cursor: pointer;
  }
  #component-header .nav__links {
    position: relative;
    height: 100%;
    top: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 30%;
    transform: none;
    transition: none;
  }
  #component-header .nav__links li {
    opacity: 1;
  }
  #component-header .nav__links li:first-child {
    display: none;
  }
  #component-header .nav__links li:last-child {
    display: none;
  }
  #component-header .nav__links .nav__search label {
    display: none;
  }
  #component-header .nav__links .nav__search input {
    width: 250px;
  }
}

/*Laptop*/
@media only screen and (min-width: 1024px) and (max-width: 1439px) {
  #component-header .header {
    width: 100%;
  }
  #component-header .header__top {
    padding: 12px 80px;
    min-height: 100%;
  }
  #component-header .header__nav {
    min-height: 100%;
    padding: 13px 80px;
  }
  #component-header .top__left {
    width: auto;
  }
  #component-header .top__left p {
    font-size: 1.85rem;
  }
  #component-header .top__right {
    width: auto;
  }
  #component-header .top__right a {
    font-size: 1.7rem;
    padding: 13px 35px;
  }
  #component-header .nav__hamburger {
    display: none;
    cursor: pointer;
  }
  #component-header .nav__links {
    position: relative;
    height: 100%;
    top: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 30%;
    transform: none;
    transition: none;
  }
  #component-header .nav__links li {
    opacity: 1;
  }
  #component-header .nav__links li:first-child {
    display: none;
  }
  #component-header .nav__links li:last-child {
    display: none;
  }
  #component-header .nav__links .nav__search label {
    display: none;
  }
  #component-header .nav__links .nav__search input {
    width: 355px;
  }
  #component-main .main {
    padding: 140px 80px 60px 80px;
  }
  #component-main .main__title {
    margin-right: 45px;
  }
  #component-main .main__title h1 {
    font-size: 4.8rem;
    margin-bottom: 30px;
    max-width: 988px;
    margin: auto;
    margin-bottom: 35px;
  }
  #component-main .main__newtitle h1 {
    font-size: 4.8rem;
    margin-bottom: 30px;
  }
  #component-main .main__post {
    display: flex;
    flex-direction: row;
  }
  #component-main .main__post .main__left {
    width: 60%;
    margin-right: 20px;
  }
  #component-main .main__post .main__right {
    width: 50%;
  }
  #component-main .main__post .main__post-tag a {
    font-size: 1.2rem;
  }
  #component-main .main__post .main__post-title h2 {
    font-weight: 700;
    font-size: 3.2rem;
    max-width: 506px;
  }
  #component-main .main__post .main__post-button {
    display: none;
  }
  #component-main .main__post .main__post-button-mobile {
    display: block !important;
    margin: 60px 0;
  }
  #component-main .splide .splide__pagination {
    bottom: 0em;
    right: auto;
    padding: 0;
  }
  #component-last .last {
    padding: 24px 70px;
  }
  #component-last .last__title h2 {
    font-size: 3.2rem;
    text-align: left;
    margin-bottom: 30px;
    padding: 0 10px;
  }
  #component-last .panel__post-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 80px;
    grid-row-gap: 20px;
  }
  #component-form .form {
    padding: 0 80px;
  }
  #component-form .form__main {
    padding: 35px 100px;
  }
  #component-form .form__title h2 {
    font-size: 3.2rem;
    padding: 0 20px;
  }
  #component-tactic .tactic {
    background: var(--primary-cyan);
    padding: 0 80px 0 80px;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
  }
  #component-tactic .tactic__left {
    padding: 50px 0;
    width: 40%;
  }
  #component-tactic .tactic__cta a {
    margin-bottom: 0;
  }
  #component-tactic .tactic__img img {
    margin-top: 0px;
    width: 90%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  #component-logo .logo {
    padding: 30px 80px;
  }
  #component-logo .logo__list {
    justify-content: center;
  }
  #component-logo .logo__list img {
    margin: 0 30px;
  }

  #component-main .main__post-list {
    margin-top: 20px;
    max-width: 50%;
  }
  #component-main .main__post-list .main__post-list-title h1 {
    font-weight: 700;
    font-size: 3.2rem;
  }
  #component-body .body {
    padding: 0 100px 24px 100px;
    max-width: 49%;
  }
  #component-form .form__container {
    margin-top: 20px;
    margin-right: 60px;
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    max-width: 40%;
    padding: 33px;
  }
  #component-form .form__container h2{
    padding: 0;
  }
  #component-form .form__container .form__main {
    padding: 0;
  }
	#component-staff .staff__title h2 {
		font-size: 3.2rem;
	}
}

/*Desktop*/
@media only screen and (min-width: 1440px) {
  #component-header .header {
    width: 100%;
  }
  #component-header .header__top {
    padding: 12px 100px;
    min-height: 100%;
  }
  #component-header .header__nav {
    min-height: 100%;
    padding: 13px 100px;
  }
  #component-header .top__left {
    width: auto;
  }
  #component-header .top__left p {
    font-size: 1.85rem;
  }
  #component-header .top__right {
    width: auto;
  }
  #component-header .top__right a {
    font-size: 1.7rem;
    padding: 13px 35px;
  }
  #component-header .nav__hamburger {
    display: none;
    cursor: pointer;
  }
  #component-header .nav__links {
    position: relative;
    height: 100%;
    top: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 30%;
    transform: none;
    transition: none;
  }
  #component-header .nav__links li {
    opacity: 1;
  }
  #component-header .nav__links li:first-child {
    display: none;
  }
  #component-header .nav__links li:last-child {
    display: none;
  }
  #component-header .nav__links .nav__search label {
    display: none;
  }
  #component-header .nav__links .nav__search input {
    width: 400px;
  }
  #component-main .main {
    padding: 0px 100px 60px 100px;
  }
  #component-main .main__title {
    margin-right: 45px;
  }
  #component-main .main__title h1 {
    font-size: 4.8rem;
    margin-bottom: 50px;
    max-width: 988px;
    margin: auto;
    margin-bottom: 35px;
  }
  #component-main .main__newtitle h1 {
    font-size: 4.8rem;
    margin-bottom: 40px;
  }
  #component-main .main__post {
    display: flex;
    flex-direction: row;
  }
  #component-main .main__post .main__left {
    width: 60%;
    margin-right: 20px;
  }
  #component-main .main__post .main__right {
    width: 50%;
  }
  #component-main .main__post .main__post-tag a {
    font-size: 1.2rem;
  }
  #component-main .main__post .main__post-title h2 {
    font-weight: 700;
    font-size: 3.2rem;
    max-width: 506px;
  }
  #component-main .main__post .main__post-button {
    display: none;
  }
  #component-main .main__post .main__post-button-mobile {
    display: block !important;
    margin: 60px 0;
  }
  #component-main .splide .splide__pagination {
    bottom: 0em;
    right: auto;
    padding: 0;
  }
  #component-last .last {
    padding: 24px 100px;
  }
  #component-last .last__title h2 {
    font-size: 3.2rem;
    text-align: left;
    margin-bottom: 30px;
    padding: 0 10px;
  }
  #component-last .panel__post-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }
  #component-form .form {
    padding: 80px 100px;
  }
  #component-form .form__main {
    padding: 35px 400px;
  }
  #component-form .form__title h2 {
    font-size: 3.2rem;
    padding: 0 240px;
  }
  
  #component-tactic .tactic {
	background: #0096AD !important;
	padding: 0 100px 0 100px !important;
	display: flex !important;
	flex-direction: row-reverse !important;
	align-items: flex-end !important;
}
#component-tactic .tactic__left {
	padding: 50px 180px !important;
	width: 60% !important;
}
#component-tactic .tactic__right {
	width: 28% !important;
}
#component-tactic .tactic__title h2 {
	font-family: 'Poppins' !important;
	letter-spacing: 0px !important;
	font-weight: 600 !important;
	font-size: 32px !important;
	line-height: 120% !important;
	text-align: center !important;
	color: #fff !important;
	margin-bottom: 24px !important;
	padding: 0 30px !important;
}
#component-tactic .tactic__subtitle p {
	font-family: 'Poppins' !important;
	letter-spacing: 0px !important;
	font-weight: 500 !important;
	font-size: 20px !important;
	line-height: 120% !important;
	text-align: center !important;
	color: #ffffff !important;
}
#component-tactic .tactic__cta a {
	font-family: 'Poppins' !important;
	letter-spacing: 0px !important;
	font-weight: 600!important;
	font-size: 16px!important;
	line-height: 100%!important;
	text-align: center!important;
	color: #0c7bc4!important;
	background: #ffffff!important;
	border: 2px solid #ffffff!important;
	border-radius: 500px!important;
	width: 100%!important;
	display: inline-block!important;
	padding: 16px 0!important;
	margin: 24px 0!important;
}
#component-tactic .tactic__img img {
	margin-top: 0px!important;
	width: 90%!important;
	display: block!important;
	margin-left: auto!important;
	margin-right: auto!important;
}
#component-tactic .tactic_embed {
	margin-top: 24px !important;
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
}
  /* 
  #component-tactic .tactic {
   background: var(--primary-cyan);
    padding: 0 100px 0 100px;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
  }
  #component-tactic .tactic__left {
    padding: 50px 210px;
    width: 60%;
  }
  #component-tactic .tactic__cta a {
    margin-bottom: 0;
  }
  #component-tactic .tactic__img img {
    margin-top: 0px;
    width: 90%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
*/
  
  
  #component-logo .logo {
    padding: 30px 100px;
  }
  #component-logo .logo__list {
    justify-content: center;
  }
  #component-logo .logo__list img {
    margin: 0 30px;
    width: 180px;
  }
  #component-main .main__post-list {
    margin-top: 20px;
    max-width: 60%;
  }
  #component-main .main__post-list .main__post-list-title h1 {
    font-weight: 700;
    font-size: 3.2rem;
  }
  #component-body .body {
    padding: 0 100px 24px 100px;
    max-width: 59%;
  }
  #component-form .form__container {
    margin-top: 80px;
    margin-right: 60px;
    position: fixed;
    top: 0;
    right: 0;
    width: 35%;
    max-width: 35%;
    padding: 33px;
  }
  #component-form .form__container h2{
    padding: 0;
  }
  #component-form .form__container .form__main {
    padding: 0;
  }
	#component-staff .staff {
		padding: 20px 0 40px;
	}
	#component-staff .staff__title h2 {
		font-size: 3.2rem;
	}
}

@media screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
}

/*Laptop*/
@media only screen and (min-width: 1024px) and (max-width: 1439px){
  #component-form .form__container{
    position: fixed;
  }
}

#dowload-pdf{
	display: flex;
	justify-content: center;
	align-items: center;
}

h6{
	letter-spacing: 0 !important;
	font-family: 'Poppins' !important;
	font-style: normal !important;
	font-weight: 600 !important;
}
a {
	text-decoration: none !important;
}
li {
	list-style: none !important;
}
.header-cintillo{
	background-image: url(https://blog.oncosalud.pe/hubfs/%5BAuna%5D%20LP%20AGC%20Q3%202022/cintillobg.png) !important;
	background-size: cover !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	display:flex !important;
	flex-direction: row !important;
	align-items:center !important;
	justify-content:space-between !important;
/* 	flex-wrap:wrap !important; */
	padding: 12px 80px !important;
}
.header-cintillo .texto_cintillo {
	font-family: 'Poppins' !important;
	font-style: normal !important;
	font-weight: 600 !important;
	font-size: 20px !important;
	line-height: 120% !important;
	color: #FFFFFF !important;
}
.header-cintillo .cta_cintillo {
	background: #3E41A0 !important;
	border: 2px solid #3E41A0 !important;
	border-radius: 500px !important;
	padding: 12px 42px !important;
}
.header-cintillo .cta_cintillo a {
	font-family: 'Poppins' !important;
	font-style: normal !important;
	font-weight: 600 !important;
	font-size: 16px !important;
	line-height: 100% !important;
	text-align: center !important;
	color: #FFFFFF !important;
}
.header-m {
	display: flex !important;
	flex-direction: row!important;
	flex-wrap: nowrap!important;
	justify-content: space-between !important;
	padding: 14px 80px !important;
	border-bottom: 1px solid #D3D7E5!important;
}
.w-blog .btn-logo {
	width: 155px !important;
	height: auto !important;
}
.header-m.h-b .header-sbm{
	position: relative !important;
	border-top: 0 !important;	
	border-bottom: 0 !important;
/* 	width: auto !important; */
	-webkit-box-orient: vertical!important;
	-webkit-box-direction: normal!important;
	-ms-flex-flow: column!important;
	flex-flow: column!important;
}
.header-m .header-sbm .tab>button p, .header-m .header-sbm .tab>a p{
	font-family: 'Poppins' !important;
	font-style: normal !important;
	font-weight: 600 !important;
	font-size: 14px !important;
	line-height: 100% !important;
	text-align: center !important;
	color: #00B0CA;
	letter-spacing: 0px !important;
}
.tab button, .tab a{
	justify-content: center !important;
}
.cta_button {
	display: flex !important;
	justify-content: center !important;
}
.header-m .header-sbm .tab button p, .header-m .header-sbm .tab a p{
	font-family: 'Poppins' !important;
	font-style: normal !important;
	font-weight: 600 !important;
	font-size: 14px !important;
	line-height: 100% !important;
	text-align: center !important;
	color: #00B0CA;
	letter-spacing: 0px !important;
}
.header-m .header-sbm .tab.active .detail .sbm-lvl-1 .btn-see-more{
	font-family: 'Poppins' !important;
	font-style: normal !important;
	font-weight: 600 !important;
	font-size: 14px !important;
	line-height: 100% !important;
	text-align: center !important;
	color: #01A2C2 !important;
	letter-spacing: 0px !important;
	border: 2px solid #01A2C2 !important;
	border-radius: 500px !important;
	padding: 16px 42px !important;
	justify-content: center !important;
}
.header-m.h-b .header-sbm .tab.active .detail .sbm-lvl-2 .card-25{
	background: #ffffff !important;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.2) !important;
  border-radius: 12px !important;
}
.header-m.h-b .header-sbm .tab.active .detail .sbm-lvl-2 .card-25 .thumbnail{
	width: 100% !important;
  border-radius: 12px 12px 0px 0px !important;
  height: 160px !important;
}
.header-m.h-b .header-sbm .tab.active .detail .sbm-lvl-2 .card-25 .tag{
	border: 2px solid #0096ad !important;
	border-radius: 500px !important;
	padding: 9px 18px !important;
	gap: 10px !important;
	font-family: 'Poppins' !important;
	font-style: normal !important;
	font-weight: 600 !important;
	font-size: 12px !important;
	line-height: 100%!important;
	color: #0096ad !important;
	text-decoration: none !important;
	display: inline-flex !important;
	flex-direction: row !important;
	align-items: center !important;
	letter-spacing: 0px !important;
	margin-left: 10px !important;
}
.header-m.h-b .header-sbm .tab.active .detail .sbm-lvl-2 .card-25 .blog-t{
	font-family: 'Poppins' !important;
	font-style: normal !important;
	font-weight: 500 !important;
	font-size: 14px !important;
	line-height: 120% !important;
	color: #000000 !important;
	margin: 4px 10px !important;
	letter-spacing: 0px !important;
	text-align: left !important;
}
.header-m.h-b .header-sbm .tab.active .detail .sbm-lvl-2 .card-25 .time{
	font-family: 'Poppins' !important;
	font-style: normal !important;
	font-weight: 500 !important;
	font-size: 11px !important;
	line-height: 120%!important;
	color: #003d88 !important;
	margin: 2px 10px !important;
	letter-spacing: 0px !important;
}
.tab button img{
/* 	min-width: 16px !important;
	min-height: 12px !important;
	width: 16px !important;
	height: 12px !important; */
}
.header-m.h-b .header-sbm .header-sbm-c .tab{
	margin: 0!important;
}
.btn-icon{
	background: #FFFFFF !important;
	border: 1px solid #D3D7E5 !important;
	border-radius: 8px !important;
	padding: 12px !important;
	width: 47px !important;
	height: 47px !important;
}
.btn-icon img {
	width: 22px !important;
	height: 22px !important;
}
.header-m .header-sbm .header-sbm-c .tab.active::before{
	content: none !important;
}
.content2{
	padding-top: 0 !important;
}
.title-1 {
	font-family: 'Poppins' !important;
	font-style: normal !important;
	font-weight: 600 !important;
	font-size: 32px !important;
	line-height: 120% !important;
	color: #0D1436 !important;
	margin-bottom: 40px !important;
}
.title-1 span {
	color: #00B0CA !important;
}
.title-3 {
	font-family: 'Poppins' !important;
	font-style: normal !important;
	font-weight: 600 !important;
	font-size: 48px !important;
	line-height: 120% !important;
	color: #0D1436 !important;
	margin-bottom: 40px !important;
}
.title-3 span {
	color: #00B0CA !important;
}
ul li:not(.hs-form-booleancheckbox)::before{
	content: none !important;
}
.header-m .header-sbm .tab.active .detail {
	background: #FFFFFF !important;
	box-shadow: 0px 4px 25px rgb(0 0 0 / 25%) !important;
	border-radius: 12px !important;
	width: 80% !important;
	left: 10% !important;
	right: auto !important;
}
.header-m.h-b .header-sbm .tab.active .detail{
	top: 156px !important;
}
.header-m .header-sbm .tab.active:after{
	content: "" !important;
	position: fixed !important;
	top: 126px !important;
	border-top: 16px solid transparent !important;
	border-bottom: 16px solid #ffffff !important;
	border-left: 9px solid transparent !important;
	border-right: 9px solid transparent !important;
}
.s-title{
	padding-top: 60px !important;
}
.header-m>*{
	margin-left: 0!important;
}
.modal-fscreen{
	top: 145px!important;
	width: 90%!important;
	height: 25%!important;
	padding-top: 30px!important;
	margin-left: 5vw!important;
	background: #FFFFFF!important;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.25) !important;
  border-radius: 12px!important;
}
.s-search .search-t{
	font-family: 'Poppins' !important;
	font-style: normal !important;
	font-weight: 500 !important;
	font-size: 16px !important;
	line-height: 120% !important;
	text-align: center !important;
	color: #1F2E45 !important;
}
.pre-title-1{
	font-family: 'Poppins' !important;
	font-style: normal !important;
	font-weight: 600 !important;
	font-size: 32px !important;
	line-height: 120% !important;
	text-align: left !important;
	color: #0D1436!important;
}
.pre-title-1 span{
	color: #03A8C9!important;
}
#component-tactic .tactic__leftauna {
    padding: 50px 60px !important;
    width: 100% !important;
}
#component-tactic .tacticauna {
	background: #e6f8fa !important;
	padding: 0 30px 0 30px !important;
	display: flex !important;
	flex-direction: row-reverse !important;
	align-items: center;
}
#component-tactic .tactic__titleauna h2 {
	font-family: 'Poppins' !important;
	letter-spacing: 0px !important;
	font-weight: 600 !important;
	font-size: 32px !important;
	line-height: 120% !important;
	text-align: center !important;
	color: #0096ad !important;
	margin-bottom: 24px !important;
	padding: 30 30px !important;
}
#component-tactic .tactic__subtitleauna p {
	font-family: 'Poppins' !important;
	letter-spacing: 0px !important;
	font-weight: 500 !important;
	font-size: 20px !important;
	line-height: 120% !important;
	text-align: center !important;
	color: #03a8c9 !important;