* {
  font-family: "Roboto", sans-serif;
}

:root {
  --color-primary: #015CE9;
  --color-primary-hover: #0d0dcf;
  --color-second: #FEDA00;
  --color-texto: #1D2937;
  --plyr-color-main: #015CE9;
}

:root {
  --lightgray: #efefef;
  --blue: steelblue;
  --white: #fff;
  --black: rgba(0, 0, 0, 0.8);
  --bounceEasing: cubic-bezier(0.51, 0.92, 0.24, 1.15);
}

@media (min-width: 1200px) {
  .container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
    max-width: 1183px;
  }
}
@media (max-width: 768px) {
  html {
    overflow-x: hidden;
  }
}

body {
  overflow-y: auto;
}
body.overflow-block {
  overflow-y: hidden !important;
}
@media (max-width: 768px) {
  body {
    padding-right: 0 !important;
    overflow-x: hidden;
    /*padding-bottom: 56px;*/
  }
}

button,
a {
  text-decoration: none;
}
button[data-disabled=true],
a[data-disabled=true] {
  cursor: default;
  pointer-events: none;
  text-decoration: none;
  opacity: 0.6;
}
button[data-loading=true],
a[data-loading=true] {
  cursor: default;
  pointer-events: none;
  text-decoration: none;
  opacity: 0.6;
  position: relative;
}
button[data-loading=true] img,
button[data-loading=true] .btn__text,
a[data-loading=true] img,
a[data-loading=true] .btn__text {
  visibility: hidden;
  opacity: 0;
}
button[data-loading=true]::after,
a[data-loading=true]::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border: 4px solid transparent;
  border-top-color: #ffffff;
  border-radius: 50%;
  -webkit-animation: button-loading-spinner 1s ease infinite;
          animation: button-loading-spinner 1s ease infinite;
}

input[data-disabled=true],
select[data-disabled=true],
textarea[data-disabled=true] {
  pointer-events: none;
  opacity: 0.6;
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
}
input.error,
select.error,
textarea.error {
  border-color: red !important;
  color: red !important;
}
input.error::-webkit-input-placeholder, select.error::-webkit-input-placeholder, textarea.error::-webkit-input-placeholder {
  color: red !important;
}
input.error::-moz-placeholder, select.error::-moz-placeholder, textarea.error::-moz-placeholder {
  color: red !important;
}
input.error:-ms-input-placeholder, select.error:-ms-input-placeholder, textarea.error:-ms-input-placeholder {
  color: red !important;
}
input.error::-ms-input-placeholder, select.error::-ms-input-placeholder, textarea.error::-ms-input-placeholder {
  color: red !important;
}
input.error::placeholder,
select.error::placeholder,
textarea.error::placeholder {
  color: red !important;
}
input.error + span,
select.error + span,
textarea.error + span {
  color: red !important;
}

@-webkit-keyframes button-loading-spinner {
  from {
    -webkit-transform: rotate(0turn);
            transform: rotate(0turn);
  }
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

@keyframes button-loading-spinner {
  from {
    -webkit-transform: rotate(0turn);
            transform: rotate(0turn);
  }
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
img {
  max-width: 100%;
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.section-slider-auto {
  gap: 20px;
}
.section-slider-auto .swiper-slide-custom {
  max-width: 390px;
  min-width: 390px;
}
.section-page__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-height: 100vh;
}
.section-page__form h4 {
  margin-bottom: 10px;
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 21px;
  color: #fff;
}
.section-page__form .picture__background {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  background-image: url(/wp-content/uploads/2021/10/login_1.png);
  background-size: cover;
  background-position: center;
}
@media (max-width: 768p) {
  .section-page__form .picture__background {
    display: none;
  }
}
.section-page__form .picture__background.complete-profile {
  background-image: url(/wp-content/uploads/2021/10/login_2.png);
}
@media (max-width: 768p) {
  .section-page__form .picture__background.complete-profile {
    display: none;
  }
}
.section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .section-title {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.section-title h3 {
  font-family: Roboto;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  color: var(--color-primary);
  margin-bottom: 32px;
}
.section-title .button a {
  height: 43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--color-primary);
  color: var(--white);
  padding: 0 24px;
  gap: 10px;
  border-radius: 3rem;
  font-family: Roboto;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
}
.section-title .button a span {
  padding: 0 11px;
}

.form-row {
  margin: 0 0 10px;
}
.form .input-text {
  border: 1px solid #BDBDBD;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 4px;
  height: 37px;
  padding: 0 16px;
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  color: #646464;
}
.form .input-text::-webkit-input-placeholder {
  color: #AAAAAA;
}
.form .input-text::-moz-placeholder {
  color: #AAAAAA;
}
.form .input-text:-ms-input-placeholder {
  color: #AAAAAA;
}
.form .input-text::-ms-input-placeholder {
  color: #AAAAAA;
}
.form .input-text::placeholder {
  color: #AAAAAA;
}
.form__login {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.form__login .video {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (min-width: 768px) {
  .form__login .video {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
}
.form__login .video video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.form__login-content {
  -webkit-transform: translateX(14rem);
          transform: translateX(14rem);
}
@media (max-width: 768px) {
  .form__login {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    background-size: cover;
  }
  .form__login-content {
    -webkit-transform: translateX(0rem);
            transform: translateX(0rem);
  }
  .form__login .video {
    display: none;
  }
  .form__login-content img[alt=logo-senati] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
  }
}
.form--profile .row, .form--document .row {
  width: 405px;
}
@media (max-width: 768px) {
  .form--profile .row, .form--document .row {
    width: 100vw;
  }
}
.form--profile input.input-text, .form--document input.input-text {
  width: 371px;
}
@media (max-width: 768px) {
  .form--profile input.input-text, .form--document input.input-text {
    width: 100%;
  }
}
.form--profile button, .form--document button {
  width: 371px;
}
@media (max-width: 768px) {
  .form--profile button, .form--document button {
    width: 100%;
  }
}
.form--profile .row {
  width: 540px;
}
@media (max-width: 768px) {
  .form--profile .row {
    width: 100vw;
  }
}
.form--profile select,
.form--profile input {
  width: 100%;
}
.form--profile select.input-text,
.form--profile input.input-text {
  width: 100%;
}
.form--profile .information {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  margin-top: 10px;
  color: #AAAAAA;
}
.form--profile .information input {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25px;
          flex: 0 0 25px;
  margin-top: 3px;
}
.form--profile button {
  width: 100%;
}

.btn {
  background: var(--color-primary);
  border-radius: 4px;
  color: var(--white);
  max-width: 100%;
  border: 1px solid var(--color-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 37px;
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 21px;
  text-align: right;
  gap: 10px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  cursor: pointer;
}
.btn:hover {
  background: var(--color-primary-hover);
}
.btn__small {
  font-size: 12px;
  line-height: 14px;
  height: 31px;
  height: 31px;
}

.header-container {
  height: 85px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 768px) {
  .header-container {
    height: 60px;
  }
}
.header-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.header-logo img.logo-senati {
  height: 45px;
}
@media (max-width: 768px) {
  .header-logo img.logo-senati {
    height: auto;
    width: 102px;
  }
}
.header-user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header-user .user-name {
  font-family: Roboto;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-primary);
  width: 140px;
  padding: 0 16px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .header-user .avatar-user {
    height: 31px;
  }
}
@media (max-width: 768px) {
  .header-user .user-name {
    width: 93px;
    padding-right: 0px;
  }
}
.header-user .down-menu-user {
  cursor: pointer;
}
@media (max-width: 768px) {
  .header-user .down-menu-user {
    width: 20px;
  }
}
.header-line {
  height: 28px;
  background: var(--color-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

section.welcome-banner {
  min-height: 386px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-position: center top;
}
@media (max-width: 768px) {
  section.welcome-banner {
    min-height: 250px;
  }
}
section.welcome-banner .welcome-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 90px;
}
@media (max-width: 768px) {
  section.welcome-banner .welcome-section {
    gap: 20px;
  }
}
section.welcome-banner .welcome-text h1 {
  margin: 0;
  font-size: 36px;
  line-height: 42px;
  color: var(--color-primary);
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  section.welcome-banner .welcome-text h1 {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 23px;
  }
}
section.welcome-banner .welcome-text h1 b {
  display: block;
}
section.welcome-banner .welcome-picture .picture {
  width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  section.welcome-banner .welcome-picture .picture {
    width: 160px;
  }
}
section.sliders {
  padding: 48px 0;
}
section.sliders .section-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
section.events, section.specialties {
  background: #F3F5F5;
}
section.webinars {
  background: var(--white);
}

.custon-arrow-button-flex {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 35px;
          flex: 0 0 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.custon-arrow-button-prev[aria-disabled=true], .custon-arrow-button-next[aria-disabled=true] {
  opacity: 0.6;
}
.custon-arrow-button-prev img, .custon-arrow-button-next img {
  width: 35px;
  cursor: pointer;
}

.link__floating {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.video-element {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  width: 100%;
}
.video-element__circle {
  border-radius: 50%;
}
.video-element:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.video-element:after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(/wp-content/uploads/2021/10/play.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 73px;
}
@media (max-width: 768px) {
  .video-element:after {
    background-size: 45px;
  }
}

.links-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 25px 1fr 25px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 32px 0;
}
@media (max-width: 768px) {
  .links-list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.links-list .links-c {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 20px;
}
@media (max-width: 768px) {
  .links-list .links-c {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
  }
}
.links-title {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
}
@media (max-width: 768px) {
  .links-title {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.links-item {
  background: var(--color-primary);
  border-radius: 3rem;
  height: 60px;
  font-family: Roboto;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  color: white;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: 0;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
@media (max-width: 768px) {
  .links-item {
    height: 115px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 33px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
  }
}
.links-item:hover {
  background: var(--color-primary-hover);
}
.links-picture {
  max-width: 35px;
}

.card {
  overflow: hidden;
  position: relative;
}
.card__rounded {
  border-radius: 10px;
}
.card-picture-floating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 183px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .card-picture-floating {
    height: 189px;
  }
}
.card-picture-floating img {
  -o-object-fit: cover;
     object-fit: cover;
}
.card-picture-floating:after {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  inset: 0;
  position: absolute;
}
.card-picture-floating__transparent:after {
  background: rgba(0, 0, 0, 0) !important;
}
.card-picture-floating__circle {
  border-radius: 50%;
}
.card-detail {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .card-detail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: left;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.card-title {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
.card-title h4 {
  color: var(--white);
  font-family: Roboto;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  margin: 0;
  min-height: 36px;
}
@media (max-width: 768px) {
  .card-title h4 {
    font-size: 12px;
    line-height: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.card-button a {
  height: 24px;
  background: var(--color-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--white);
  padding: 0 21px;
  font-family: Roboto;
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  line-height: 14px;
  border-radius: 5px;
  gap: 12px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.card-button a img {
  width: 17px;
}
.card-button a:hover {
  background: var(--color-primary-hover);
}
.card-events {
  background: white;
}
.card-events__shadow {
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.card-events .card-picture-floating {
  height: 93px;
  position: relative;
}
.card-events .card-detail {
  position: relative;
  display: block;
  background: var(--white);
}
.card-events .card-detail__full {
  width: 100% !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
}
@media (max-width: 768px) {
  .card-events .card-detail__full {
    margin-bottom: 0 !important;
  }
}
.card-events .card-detail__full .card-title {
  margin: 16px 16px 0;
  color: black;
  min-height: 60px;
}
.card-events .card-detail__full .card-title h4 {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: black;
}
.card-events .card-detail__full .card-bottom {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 16px;
  line-height: 19px;
}
.card-events .card-detail__full .card-padding {
  padding: 0 16px;
  margin-bottom: 10px;
}
.card-events .card-detail__full .card-ico {
  width: 15px;
}
.card-events .card-detail__full .card-location, .card-events .card-detail__full .card-price, .card-events .card-detail__full .card-modality, .card-events .card-detail__full .card-date {
  gap: 10px;
  font-size: 16px;
  line-height: 19px;
  color: black;
  font-family: Roboto;
  font-style: normal;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.card-events .card-detail__full .card-top {
  margin-bottom: 16px;
}
.card-events .card-detail__full .card-button {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .card-events .card-detail__full .card-button {
    width: 100%;
  }
}
.card-events .card-detail__full .card-button a {
  height: 38px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  line-height: 19px;
  border-radius: 0;
}
.card-events h4 {
  color: #7D7D7D;
}
.card-top {
  width: 100%;
  margin-bottom: 10px;
}
.card-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
@media (max-width: 768px) {
  .card-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 8px;
  }
}
.card-date {
  font-family: Roboto;
  font-style: normal;
  font-weight: bold;
  font-size: 10px;
  line-height: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #7D7D7D;
}
.card-block {
  min-height: 183px;
}
.card-cpt .card-picture-floating {
  height: 211px;
}
.card-cpt .card-detail {
  width: 80%;
}
@media (max-width: 768px) {
  .card-cpt .card-detail {
    width: 100%;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 1rem;
  }
  .card-cpt .card-detail .card-title {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 65%;
  }
  .card-cpt .card-detail .card-title h4 {
    min-height: auto;
  }
}
.card-webinars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .card-webinars {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.card-webinars-full {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  position: relative;
}
.card-webinars-full img {
  height: 100%;
}
.card-webinars-text {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  border: 1px solid var(--color-primary);
  border-radius: 0 8px 8px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 2rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-left: none;
}
@media (max-width: 768px) {
  .card-webinars-text {
    border-left: 1px solid var(--color-primary);
    border-radius: 0px 0 8px 8px;
  }
}
.card-webinars-diferent .card {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .card-webinars-diferent .card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.card-webinars-diferent .card-webinars-text {
  border-left: 1px solid var(--color-primary);
  border-radius: 8px 0 0 8px;
  border-right: none;
}
@media (max-width: 768px) {
  .card-webinars-diferent .card-webinars-text {
    border-right: 1px solid var(--color-primary);
    border-radius: 0px 0 8px 8px;
  }
}
.card-testimonials__full {
  margin: 0 auto;
  width: 240px;
  text-align: center;
}
@media (max-width: 768px) {
  .card-testimonials__full {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.card-testimonials__full .card-picture-floating {
  height: 200px;
  width: 200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .card-testimonials__full .card-picture-floating {
    border-radius: 1rem 0 0 1rem;
    height: 155px;
  }
}
.card-testimonials__full-detail {
  text-align: center;
  color: var(--color-primary);
  font-family: Roboto;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 16px;
}
@media (max-width: 768px) {
  .card-testimonials__full-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: 1px solid var(--color-primary);
    border-radius: 0 1rem 1rem 0;
    border-left: none;
  }
  .card-testimonials__full-detail .card-testimonials__full-detail-name {
    margin-bottom: 0;
  }
  .card-testimonials__full-detail .card-testimonials__full-detail-careers {
    margin-bottom: 16px;
  }
}
.card-guides-title {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  color: var(--color-primary);
  width: 80%;
  text-align: center;
  margin: 1rem auto;
}
.card-guides .card-picture-floating {
  border-radius: 8px;
}

.footer {
  height: 44px;
  background: var(--color-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .footer {
    height: 101px;
  }
}
.footer-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .footer-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}
.footer-copyrate {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFFFFF;
  text-transform: uppercase;
}
.footer-social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
}
.footer-social-list img {
  width: 24px;
}

.page-content {
  padding: 2rem 0;
  min-height: 44vh;
}
.page-content__background {
  background-position: top;
  background-repeat: no-repeat;
  background-size: inherit;
}
.page-content-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-content-title h1 {
  font-family: Roboto;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: var(--color-primary);
}
.page-content__full {
  padding: 0;
}
.filters-groups {
  margin: 2rem 0;
}
.filters-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .filters-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.filters-select select {
  background: url(/wp-content/uploads/2021/10/arrow-select.png) no-repeat right #fff !important;
  -webkit-appearance: none !important;
  background-position-x: 98% !important;
  min-width: 370px;
  height: 26px;
  padding: 0 16px;
  border: 1px solid var(--color-primary);
  border-radius: 5px;
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  color: var(--color-primary);
  text-transform: uppercase;
  width: 100%;
}
@media (max-width: 768px) {
  .filters-select select {
    min-width: auto;
  }
}
.filters-select select:focus {
  outline: none;
}
.filters-go-back {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .filters-go-back {
    display: none;
  }
}
.filters-go-back a {
  width: 138px;
  height: 35px;
  left: 55px;
  top: 244px;
  background: var(--color-primary);
  border-radius: 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  color: white;
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
}
.filters-go-back a span {
  line-height: 11px;
}

.cpt {
  margin-top: 30px;
}
.cpt-grid {
  display: -ms-grid;
  display: grid;
  gap: 30px;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  margin: 30px auto;
  width: 80%;
}
@media (max-width: 768px) {
  .cpt-grid {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
  }
}
.cpt-webinars {
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
}
.cpt-guides, .cpt-events {
  width: 100%;
}
.cpt-guides, .cpt-events, .cpt-testimoniales {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .cpt-guides, .cpt-events, .cpt-testimoniales {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.cpt-guides-title {
  font-family: Roboto;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-primary);
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 16px 0;
  margin-bottom: 0;
}

hr {
  border: 1px solid #dfdfdf;
}

.breadcrumb-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--white);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.breadcrumb-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  position: relative;
  padding-right: 15px;
}
.breadcrumb-item span {
  color: var(--white);
  font-family: Roboto;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 15px;
}
.breadcrumb-item:after {
  content: ">";
  color: white;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.breadcrumb-item.breadcrumb-last span {
  padding-right: 0 !important;
}
.breadcrumb-item.breadcrumb-last:after {
  display: none;
}

.speciality-detail-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  margin: 0 auto;
  gap: 20px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .speciality-detail-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    width: 100%;
    text-align: center;
  }
}
.speciality-detail-picture {
  width: 211px;
  height: 211px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 211px;
          flex: 0 0 211px;
}
@media (max-width: 768px) {
  .speciality-detail-picture {
    width: 100%;
  }
}
.speciality-detail-picture .video-element {
  width: 211px;
  height: 211px;
}
@media (max-width: 768px) {
  .speciality-detail-picture .video-element {
    width: 100%;
    border-radius: 25px;
  }
}
.speciality-detail-picture .video-element img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.speciality-detail-picture .btn {
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translate(-50%, -27px);
          transform: translate(-50%, -27px);
  line-height: 14px;
  padding: 0 10px;
  border-radius: 3rem;
}
.speciality-detail-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.speciality-detail-info-title {
  margin-top: 0;
  font-family: Roboto;
  font-style: normal;
  font-weight: bold;
  font-size: 32px;
  line-height: 37px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-primary);
}
.speciality-detail-info-detail {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
}
.speciality-detail-info-detail p {
  margin: 0;
}

.careers-detail-title {
  font-family: Roboto;
  font-style: normal;
  font-weight: bold;
  font-size: 32px;
  line-height: 37px;
  color: var(--color-primary);
  text-align: center;
}
.careers-detail-info {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  width: 90%;
  margin: 0 auto 2rem;
}
.careers-detail-video {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  width: 80%;
  margin: 0 auto 2rem;
}
@media (max-width: 768px) {
  .careers-detail-video {
    width: 100%;
  }
}
.careers-detail-features {
  width: 80%;
  margin: 0 auto 32px;
  display: -ms-grid;
  display: grid;
  font-family: Roboto;
  font-style: normal;
  font-weight: 900;
  font-size: 16px;
  line-height: 19px;
  color: var(--color-primary);
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .careers-detail-features {
    width: 100%;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.careers-detail-features-item {
  padding: 24px 16px;
  text-align: center;
  border: 1px solid var(--color-primary);
  border-radius: 15px;
}
.careers-detail-features-item .text {
  width: 75%;
  margin: 10px auto 0;
}
.careers-detail-features-item img {
  height: 40px;
}
.careers-detail-available {
  font-family: Roboto;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 28px;
  width: 60%;
  text-align: center;
  margin: 1rem auto;
  color: var(--color-primary);
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .careers-detail-available {
    width: 100%;
  }
}
.careers-detail-go {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 32px;
}
.careers-detail-go a {
  background: #0A39E4;
  border-radius: 33px;
  height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 45px;
  gap: 15px;
  color: var(--white);
}
.careers-detail-go a span {
  font-family: Roboto;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 28px;
}

.button--mobile {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 24px;
}
.button--mobile a {
  height: 43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--color-primary);
  color: var(--white);
  padding: 0 36px;
  gap: 10px;
  border-radius: 3rem;
  font-family: Roboto;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
}
.button--mobile a span {
  color: white;
}

.link-external {
  display: none;
  width: 100%;
  position: fixed;
  z-index: 9;
  bottom: 0;
  height: 56px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .link-external {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.link-external-col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  height: 56px;
  background: var(--color-primary);
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  display: flex;
  align-items: center;
  text-align: center;
}
.link-external-whatsapp {
  background: #25D366;
}
.link-external-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}