/* Base CSS */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img,
iframe {
  vertical-align: bottom;
  max-width: 100%;
}

input,
textarea,
select {
  font: inherit;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* FontFace */
@font-face {
  font-family: PolySans-Neutral;
  src: url("../assets/fonts/PolySans-Neutral.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: PolySans-NeutralItalic;
  src: url("../assets/fonts/PolySans-NeutralItalic.otf") format("opentype");
  font-style: italic;
  font-weight: normal;
}

@font-face {
  font-family: PolySans-Median;
  src: url("../assets/fonts/PolySans-Median.otf") format("opentype");
  font-style: normal;
  font-weight: bold;
}

@font-face {
  font-family: PolySans-MedianItalic;
  src: url("../assets/fonts/PolySans-MedianItalic.otf") format("opentype");
  font-style: italic;
  font-weight: bold;
}

/* ANIMATIONS */

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeOff {
  from {
    width: 40%;
  }

  to {
    width: 0%;
  }
}

/* TIPOGRAPHY */
:root {
  --base: 17px;
  --scale-factor: 0.28;
  --rhythm: 24px;
}

body {
  font-family: PolySans-Neutral;
  margin: 0;
  font-size: calc(var(--base) + (var(--base) * var(--scale-factor) * var(--font-increase, 0)));
  line-height: calc(var(--rhythm) + (var(--rhythm) * var(--rhythm-increase, 0)));
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: calc(var(--base) + (var(--base) * var(--scale-factor) * var(--font-increase, 0)));
  line-height: calc(var(--rhythm) + (var(--rhythm) * var(--rhythm-increase, 0)));
}

p {
  margin-top: 0;
}

h1 {
  --font-increase: 3.5;
  --rhythm-increase: 0.8;
}

h2 {
  --font-increase: 3.5;
  --rhythm-increase: 0.6;
  margin-bottom: 1rem;
}

h3 {
  --font-increase: 0;
  --rhythm-increase: 0;
}

h4 {
  --font-increase: -0.4;
  --rhythm-increase: 1;
  font-weight: bold;
}

@media (max-width: 767.98px) {
  h4 {
    --font-increase: 0.4;
  }
}

h5 {
  --font-increase: 1;
  --rhythm-increase: 0.2;
  margin-bottom: 2rem;
}

a {
  font-size: 17px;
}

h1+h2,
h2+h3,
h3+h4,
h4+h5,
h5+h6 {
  margin-top: 0;
}

* {
  margin: 0;
}

*:focus {
  outline: none;
}

/* GENERAL */

textarea:focus,
input:focus {
  outline: none;
}

.dark-section {
  background-color: #000f64;
  color: #f0f0eb;
}

.light-section {
  background-color: #f0f0eb;
  color: #000f64;
}

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

.orange {
  color: #00CD73;
}

.no-padding-top {
  padding-top: 0 !important;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

/*se cambia en responsive */
.content-wrapper {
  padding: 10% 4%;
}

/* REGISTER BUTTON */

.button-register {
  display: inline-flex;
  background-color: #00CD73;
  border-radius: 50px;
  margin-top: 1.5rem;
}

.button-register a {
  padding: 4px 50px;
  text-decoration: none;
  color: #001065;
  font-weight: 600;
}

@media (max-width: 767.98px) {
  .button-register a {
    padding: 4px 40px 8px;
  }
}

/* Grow */
.hvr-grow {
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  transition-duration: 0.3s;
  transition-property: transform;
}

.hvr-grow:hover,
.hvr-grow:focus,
.hvr-grow:active {
  transform: scale(1.05);
}

/* HEADER */

.first-header-container {
  height: 67vh;
  background-image: url(../assets/img/cover-landing-8.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}



.second-header-container {
  display: flex;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.logo-big-header {
  max-width: 240px;
}

.logo-small-header {
  max-width: 120px;
}

.logo-small-header {
  margin-top: 2rem;
}

.parallax-window {
  min-height: 67vh;
  background: transparent;
}

@media(max-width:767.98px) {
  .first-header-container {
    background-image: url(../assets/img/Header_Sonae_Mobile.png) !important;
    height: 40vh;
    min-height: 40vh;
    background-position: top center;
  }
}

/* SECTIONS */

.text-column {
  max-width: 90%;
}

.shapes-section {
  position: relative;
  z-index: 3;
  overflow: hidden;
}

.shapes-header-container {
  display: flex;
}

.shapes-header-container img {
  width: 330px;
  position: absolute;
  left: 35px;
  top: 10px;
  z-index: -1;
}

.shapes-section h2 {

  margin-bottom: 40px;
}

@media (max-width: 767.98px) {
  .shapes-section .text-column {
    max-width: 75%;
  }
}

@media (max-width: 1023.98px) {
  .shapes-section h2 {
    font-size: 40px;

  }

  .shapes-section .content-wrapper {
    padding-top: 20rem;
    padding-left: 7%;
    padding-right: 7%;
  }
}

/* FIRST CAROUSEL */

.carousel {
  padding: 30px 30px 0 30px;
}

.carousel-item img {
  width: 115px;
  position: relative;
  left: -14px;
  margin-bottom: -14px;
}

.carousel-item h4 {
  font-weight: normal;
}

.carousel-item p {
  font-size: 14px;
  line-height: 1.4;
}

button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.slide-arrow {
  position: absolute;
  top: 70%;
  margin-top: -15px;
}

.prev-arrow {
  left: 0;
  width: 0;
  height: 0;
  border-left: 0 solid transparent;
  border-right: 15px solid #113463;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.next-arrow {
  right: 0;
  width: 0;
  height: 0;
  border-right: 0 solid transparent;
  border-left: 15px solid #113463;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

@media (max-width: 480px) {
  .prev-arrow {
    border-right-width: 12px;
    border-top-width: 7px;
    border-bottom-width: 7px;
  }

  .next-arrow {
    border-left-width: 12px;
    border-top-width: 7px;
    border-bottom-width: 7px;
  }
}

/* TESTIMONIALS CAROUSEL */

.img-testimonial {
  background-image: url(../assets/img/index.html);
}

.info-testimonial {
  color: #FFB40F;
  margin-top: 1rem;
}

.carousel-testimonials {

}

.carousel-testimonials .item-carousel {
  padding-top: 40px;
}

.carousel-testimonials .item-carousel h3 {
  margin-bottom: 30px;
  color: #00CD73;
  font-weight: bold;
  font-family: PolySans-Median;
}

.carousel-start-journey .item-carousel {
  padding-top: 15px;
}

@media (max-width: 767.98px) {
  .carousel-testimonials .item-carousel h5 {
    --font-increase: 0.5;
    --rhythm-increase: 0.1;
    margin-bottom: 1rem;
  }

  .carousel-start-journey .item-carousel h5 {
    font-size: 17px;
    line-height: 24px;
    margin-bottom: 1.5rem;
  }
}

.img-testimonial-movil {
  width: 100%;
  height: 315px;
  border-radius: 10px;
  margin-bottom: 2rem;
  position: relative;
  overflow: visible;
}

.img-testimonial-movil.img-testimonial-3 {
  background-image: url(../assets/img/testemunho_carolina.png);
}

.img-testimonial-movil.img-testimonial-2 {
  background-image: url(../assets/img/testemunho_matilde.png);
}

.img-testimonial-movil.img-testimonial-1 {
  background-image: url(../assets/img/testemunho_pedro.png);
}

/* .img-testimonial-movil.img-testimonial-4{
  background-image: url(../assets/img/testemunho_3_mob.png);
} */

/* .img-testimonial-movil::after {
  content: "";
  position: absolute;
  background-image: url(../assets/img/Action_F_Orange_LR_RGB.png);
  background-repeat: no-repeat;
  background-size: 63%;
  background-position: center;
  width: 100%;
  height: 240px;
  top: 50%;
  transform: translateY(-50%);
} */

.img-testimonial-1,
.img-testimonial-2,
.img-testimonial-3,
.img-testimonial-4,
.img-testimonial-5,
.img-testimonial-6 {
  background-image: url(../assets/img/Person1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.img-testimonial-1 {
  background-image: url(../assets/img/testemunho_pedro.png);
}

.img-testimonial-2 {
  background-image: url(../assets/img/testemunho_matilde.png);
}

.img-testimonial-3 {
  background-image: url(../assets/img/testemunho_carolina.png);
}

/* .img-testimonial-4 {
  background-image: url(../assets/img/Testemunho_Pedro_Pinto.png);
} */

.slick-dots {
  margin: 0;
  list-style-type: none;
  margin-top: 2rem;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: left;
}

.slick-dots li {
  margin: 0 0.25rem;
}
.slick-dots li:hover,.slick-dots button:hover{
  cursor: pointer;
}
.slick-dots button {
  display: block;
  width: 1rem;
  height: 1rem;
  padding: 0;

  border: none;
  border-radius: 100%;
  background-color: none;
  border: 2px solid white;

  text-indent: -9999px;
}

.slick-dots li.slick-active button {
  border: none;
  background-image: url(../assets/img/dot.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 20px;
  height: 20px;
}



.testimonial-section .slick-dots li.slick-active button {
  background-image: url(../assets/img/dot_yellow.png);
}

.testimonial-section h2 {
    margin-bottom: 0;
}

.faq {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.back-home {
  color: #001065;
  text-decoration: none;
  font-weight: 700;
  margin-bottom: 2rem;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #000F64;
  --bs-btn-border-color: #000F64;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0b5ed7;
  --bs-btn-hover-border-color: #0a58ca;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0a58ca;
  --bs-btn-active-border-color: #0a53be;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #000F64;
  --bs-btn-disabled-border-color: #000F64;
}

@media (max-width: 530px) {
  .slick-dots {
    margin-top: 1rem;
    margin-bottom: 3rem;
  }

  .slick-dots button {
    width: 12px;
    height: 12px;
  }

  .slick-dots li.slick-active button {
    width: 14px;
    height: 14px;
  }
}

/* COLUMNS SECTION */
.five-columns {
  margin-top: 30px;
  position: relative;
}

.five-columns h3 {
  font-weight: bold;
  width: 45%;
  margin-top: 11px;
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5rem;
}
#selection-process h3>div>div {
    line-height: 1.1;
    margin-top: 11px;
}
#selection-process div h3:hover,
#selection-process h3.active {
  color: #0072FF;
}

#selection-process div h3:hover img,
#selection-process h3.active img {
  opacity: 0;
}

#selection-process div h3 img.arrow {
  opacity: 1;
}

.five-columns img {
  position: relative;
  width: 75%;
}

.dropdown-menu {
  display: none;
}

/* Tabs */
.five-columns .tab {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.2s ease-out;
}

.five-columns .tab.active {
  max-height: initial;
  opacity: 1;
}

/* perfect-match */
@media (max-width: 1023.98px) {
  #perfect-match h3.active+p {
    max-height: inherit;
    opacity: 1;
  }

  #perfect-match h3+p {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: all 0.2s ease-out;
  }

  #perfect-match>div h3.active {
    color: #00CD73;
  }

  #perfect-match>div h3.active img {
    opacity: 0;
  }
}

#perfect-match>div:hover h3 {
  color: #00CD73;
}

#perfect-match>div:hover h3 img {
  opacity: 0;
}

/* Video Container */

.video-container {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  max-width: 1349px;
  margin: 0 auto;
}

.video-container img {
  width: 100%;
}

.play-btn {
  max-width: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: all 0.3s ease;
}

.video-container a:hover .play-btn {
  max-width: 65px;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

/* Faq Home */
.row {
  display: flex;
  margin-left: -7.5px;
  margin-right: -7.5px;
}

.align-items-center {
  align-items: center;
}

.justify-content-between {
  justify-content: space-between;
}

.mb-0 {
  margin-bottom: 0;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.col-6 {
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.col-lg-6 {
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.btn-outline {
  border: 1px solid;
  /* text-decoration: none; */
}

.ask-question .content-wrapper {
  padding-top: 15px;
}

.ask-question h2 {/* font-size: 35px; */}

.ask-question .btn {
  text-decoration: none;
  padding: 0.4rem 0.7rem;
  border-radius: 100vmax;
  font-size: 0.87rem;
  /* color: #001065; */
}

.ask-question .btn:hover {
  color: #00CD73;
}

.yellow-div {
  background-color: #001065;
}

.yellow-div * {
  color: #fff;
  /* font-size: inherit; */
}

/* FOOTER */
.footer-wrapper {
  padding: 4% 6% 2%;
}

.award-list {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  margin-bottom: 25px;
}


.award-list img {flex: 0 0 calc(25% - 5px);width: calc(25% - 5px);}



.footer-bottom-text {
  text-align: center;
  margin-top: 4%;
}

.footer-bottom-text,
.footer-bottom-text a {
  font-size: 1rem;
  line-height: 26px;
  color: currentColor;
}

@media(max-width: 767.98px) {
  .footer-bottom-text,
  .footer-bottom-text a {
    font-size: 12px;
    line-height: 22px;
  }
}



.logos-footer-container-first-row {
  display: flex;
  align-items: center;
  margin-top: 10px;
  flex-wrap: wrap;
  gap: 20px 30px;
  justify-content: center;
}

.logos-footer-container-first-row img {
  width: 16.28%;
}

@media(max-width: 767.98px) {
  .logos-footer-container-first-row img:nth-last-of-type(-n+3) {
    width: 43px;
}
}

.logos-footer-container-second-row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10%;
  margin: 0 auto;
  margin-top: 1rem;
}

.footer-bottom-title {
  max-width: 650px;
  margin-inline: auto;
  margin-top: 7%;
}

.footer-bottom-title h2 {
  width: auto;
}

.carousel-start-journey .img-testimonial-desktop::after {
  display: none;
}

.mfp-iframe-holder .mfp-content {
  max-width: 1400px;
}

.testimonial-section .button-register {
  margin-top: 3rem;
}

@media (min-width: 450px) {
  .carousel-item {
    margin-right: 32px !important;
  }
}

@media (min-width: 540px) {
  .img-testimonial-movil::after {
    background-size: 43%;
  }
}

@media (min-width: 550px) {
  .item-carousel {
    display: flex !important;
    align-items: center;
  }

  .testimonial-text {
    width: 50%;
  }

  .img-testimonial-movil {
    display: none;
  }

  .img-testimonial-desktop {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    margin-bottom: 2rem;
    position: relative;
    overflow: visible;
    margin-left: 10%;
  }

  /* .img-testimonial-desktop::after {
    content: "";
    position: absolute;
    background-image: url(../assets/img/Action_F_Orange_LR_RGB.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    width: 100%;
    height: 100%;
  } */

  .slick-dots {
    margin-top: 0;
    position: relative;
    top: 0;
  }

  .img-testimonial-desktop {
    width: 200px;
    height: 200px;
  }

  .five-columns p {
    width: 80%;
  }

  .carousel-start-journey .img-testimonial-desktop::after {
    background-size: 100%;

    width: 100%;
    height: 100%;
  }
}

@media (min-width: 768px) {
  :root {
    --base: calc(9px + 01vw);
    --rhythm: calc(19px + 1vw);
    --scale-factor: 0.48;
  }

  h1 {
    --rhythm: calc(22px + 1vw);
  }

  h2 {
    --rhythm: calc(35px + 1vw);
  }

  .content-wrapper {
    padding: 5% 6%;
  }

  .header-padding {
    padding: 3% 6%;
  }

  .second-header-container.header-padding {
    padding: 2% 6%;
  }

  .logo-big-header {
    max-width: 250px;
  }

  .logo-small-header {
    max-width: 200px !important;
  }

  .logo-small-header {
    max-width: 120px !important;
  }

  .img-testimonial-desktop {
    width: 300px;
    height: 300px;
  }

  .five-columns p {
    width: 60%;
  }

  .text-column {
    max-width: 60%;
  }

  .carousel-testimonials .item-carousel h3 {
    --font-increase: 1;
  }

  .padding-bottom-50 {
    padding-bottom: 2.5% !important;
  }
}

@media (min-width: 1024px) {
  .five-columns {
    display: flex;
    justify-content: space-between;
  }

  .five-columns p {
    width: 100%;
    /*   font-size: 20px;
  line-height: 1.5; */
  }

  .five-columns h3 {
    width: 100%;
  }

  .five-columns h3 img {
    width: 40%;
  }

  .five-columns>div {
    width: 17%;
  }

  .img-testimonial-desktop {
    width: 410px;
    height: 410px;
  }

  .img-testimonial-desktop {
    margin-bottom: 0;
  }

  .carousel-testimonials .item-carousel h3 {
    margin-bottom: 55px;
  }

  .shapes-header-container img {
    width: 400px;
    left: auto;
    right: -40px;
  }

  #selection-process>div {
    flex: 0 0 auto;
    width: auto;
  }

  #selection-process>div:first-child {}

  #selection-process>div p {

    display: flex;
    align-items: baseline;
    gap: 15px;
    line-height: 1.1;
  }

  #selection-process>div p img {
    width: 35px;
  }

  #selection-process h3 {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 10px;
  }



  #selection-process h3 .arrow {
    width: 25px;
  }

  #selection-process h3 .number {
    display: block;
    font-size: 55px;
    margin-bottom: 7px;
  }

  #selection-process h3 .time {
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    margin-top: 5px;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-none {
    display: none !important;
  }

  .info-testimonial {
    font-size: 24px;
  }

  .carousel-start-journey {
    margin-top: -4rem;
  }

  .text-lg-center {
    text-align: center;
  }

  #selection-process {
    min-height: 150px;
  }

  .five-columns .tab.active {
    width: 70vw;
  }

  .five-columns .tab {
    transition: none;
    position: absolute;
    top: 100%;
    left: 0;
  }

  .ask-question .btn {
    padding: 0.5rem 1rem;

    font-size: 1rem;

  }
}

.btn {
  --bs-btn-padding-x: 1.3rem;
}

.p-color {
  color: #000F64;
}

.faq .accordion .accordion-item .accordion-button {
  padding-left: 0;
  padding-right: 0;
  box-shadow: none !important;
  background-color: transparent !important;
  font-weight: 500;
  gap: 10px;
}

.faq .accordion .accordion-item .accordion-button:hover,
.accordion-button:not(.collapsed) {
  color: #00CD73;
}

.faq .accordion .accordion-body {
  font-size: 16px;
  line-height: 22px;
}

@media (min-width: 1200px) {

  /* #selection-process > div:first-child {
    width: 20%;
}
#selection-process > div:nth-of-type(3),#selection-process > div:nth-of-type(5) {
  width: 15%;
} */
  #selection-process h3 {
    --font-increase: -0.3;
    gap: 30px;
  }

  .btn {
    --bs-btn-padding-x: 2rem;
    --bs-btn-font-size: 1.1rem;
    --bs-btn-padding-y: 0.55rem;
  }

  .faq {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1280px) {
  header .header-padding {
    padding: 3% 6%;
  }

  .first-header-container {
    background-position: center;
  }

  .text-column {
    width: 47%;
  }

  .shapes-header-container img {
    width: 600px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -80px;
  }

  .shapes-section .button-register {
    margin-bottom: 2rem;
    margin-top: 3rem;
  }

  .video-container {
    margin-top: 10%;
  }

  iframe {
    width: 800px;
    height: 450px;
  }

  .testimonial-section .button-register {
    margin-top: 3rem;
  }

  .button-register a {
    padding: 9px 50px;

    font-size: 20px;
  }
}

@media (min-width: 1281px) {
  .first-header-container {
    height: 92vh;
  }

  .parallax-window {
    min-height: 73vh;
  }

  .logo-big-header {
    max-width: 475px !important;
  }

  .logo-small-header {
    max-width: 150px !important;
    margin-top: 4rem;
  }

  .carousel-testimonials .item-carousel {
    padding-block: 0;
  }

  .carousel-start-journey .item-carousel {
    padding-block: 40px;
  }

  .carousel-start-journey .img-testimonial-desktop::after {
    width: 125%;
    height: 125%;
    left: calc(50% - 13px);
  }

  .ask-question .btn {
    padding: 0.6rem 1.2rem;

    font-size: 27px;
  }
}

@media (min-width: 1360px) {
  h2 {
    margin-bottom: 2rem;
    width: 70%;
  }

  .shapes-header-container img {
    width: 650px;
    position: absolute;

    right: -90px;
  }

  header .button-register {
    margin-top: 3rem;
  }

  .footer-bottom-title {
    max-width: 835px;
  }

  .slick-dots li.slick-active button {
    width: 35px;
    height: 35px;
  }

  .slick-dots button {
    width: 30px;
    height: 30px;
    border-width: 3px;
  }

  .img-testimonial-desktop {
    width: 650px;
    height: 620px;
    margin-left: 6%;
  }
}

@media (min-width: 1441px) {
  #selection-process h3 .arrow {
    width: 30px;
  }

  .button-register a {
    padding: 7px 75px 11px;
    font-size: 32px;
  }

  .info-testimonial {
    font-size: 27px;
  }



  .carousel {
    padding-top: 85px;
  }

  .carousel-item img {
    width: 140px;

    left: -18px;
    margin-bottom: 14px;
  }

  .prev-arrow {
    left: -45px;

    border-left: 0 solid transparent;
    border-right: 27px solid #113463;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
  }

  .next-arrow {
    right: -45px;

    border-right: 0 solid transparent;
    border-left: 27px solid #113463;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
  }

  .shapes-header-container img {
    right: 0;
    width: 800px;
  }

  .shapes-section .button-register {
    margin-bottom: 7rem;
    margin-top: 7rem;
  }

  .five-columns {
    margin-top: 50px;
  }

  .five-columns h3 {
    margin-bottom: 1.5rem;
  }

  .info-testimonial {
    font-size: 35px;
  }

  .play-btn {
    max-width: 110px;
  }

  .testimonial-section .button-register {
    margin-top: 6rem;
  }

  .testimonial-section .button-register a {
    font-size: 33px;
    padding-block: 16px 20px;
  }



  .video-container a:hover .play-btn {
    max-width: 120px;
  }

  .five-columns .tab.active {
    width: 90vw;
  }

  #selection-process h3 {
    --font-increase: -0.1;
  }
}

@media (min-width: 1650px) {
  #selection-process h3 {
    --font-increase: 0;
  }

  #selection-process h3 .arrow {
    width: 43px;
  }

  #selection-process {
    min-height: 170px;
  }
}

/* Portrait and Landscape */
@media only screen and (min-device-width: 768px) and (max-device-width: 1023.98px) and (-webkit-min-device-pixel-ratio: 1) {
  .first-header-container {
    height: 40vh;
  }

  .parallax-window {
    min-height: 30vh;
  }

  .second-header-container {
    justify-content: space-around;
  }

  .logo-big-header {
    max-width: 180px;
  }
}

.carousel-start-journey .img-testimonial-1 {
  background-image: url(../assets/img/hackathon_desktop.png);
}

.carousel-start-journey .img-testimonial-2 {
  background-image: url(../assets/img/training_learning_desktop.png);
}

.carousel-start-journey .img-testimonial-3 {
  background-image: url(../assets/img/business_liders_desktop.png);
}

.carousel-start-journey .img-testimonial-4 {
  background-image: url(../assets/img/buddies_desktop.png);
}

.carousel-start-journey .img-testimonial-5 {
  background-image: url(../assets/img/shadowing_desktop.png);
}

.carousel-start-journey .img-testimonial-6 {
  background-image: url(../assets/img/volunteering_desktop.png);
}

.carousel-start-journey .slick-dots button {
  border-color: #070868;
}

@media (max-width: 530px) {
  .carousel-start-journey .img-testimonial-desktop {
    width: 100%;
    height: 263px;
    border-radius: 10px;
    margin-bottom: 2rem;
    position: relative;
    overflow: visible;
  }
}

@media (max-width: 1023.98px) {
  .carousel-start-journey .img-testimonial-desktop {
    background-size: contain;
  }

  .carousel-start-journey .img-testimonial-1 {
    background-image: url(../assets/img/hackathon_mobile.png);
  }

  .carousel-start-journey .img-testimonial-2 {
    background-image: url(../assets/img/training_learning_mobile.png);
  }

  .carousel-start-journey .img-testimonial-3 {
    background-image: url(../assets/img/business_liders_mobile.png);
  }

  .carousel-start-journey .img-testimonial-4 {
    background-image: url(../assets/img/buddies_mobile.png);
  }

  .carousel-start-journey .img-testimonial-5 {
    background-image: url(../assets/img/shadowig_mobile.png);
  }

  .carousel-start-journey .img-testimonial-6 {
    background-image: url(../assets/img/volunteering_mobile.png);
  }

  .testimonial-section .center {
    justify-content: flex-start;
  }

  #selection-process h3>div {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  #selection-process h3 .number {
    font-size: 40px;
    width: 25px;
  }

  #selection-process h3 {
    font-size: 18px;
    width: 70%;
    margin-top: 20px;
  }

  #selection-process h3 .time {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    display: block;
  }

  #selection-process>div p {

    display: flex;
    align-items: baseline;
    gap: 15px;
    line-height: 1;
  }

  #selection-process>div p img {
    width: 25px;
  }
}


@media screen and (max-width: 768px) {
  [data-aos] {
    pointer-events: auto !important;
  }

  html:not(.no-js) [data-aos^=fade][data-aos^=fade] {
    opacity: 1 !important;
  }

  html:not(.no-js) [data-aos^=fade] {
    transform: none !important;
  }
}



.click2scroll {
  font-size: inherit;
  color: #001065;
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;

}
.click2scroll:hover {
    color: #0473FC;
}

@media(max-width: 1023.98px) {
  .click2scroll {
  color: #fff;

  font-size: 14px;
  margin-bottom: 15px;
}
}

.first-header-container p .arrow {
  width: 42px;
}

.first-header-container .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}



.contacto-timeline-section {
  background-color: #F0F0EB;
  padding: 30px 0;
  overflow: hidden;
}

/* ---------- Hero intro row ---------- */
.contacto-timeline-section .ct-intro {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.contacto-timeline-section .ct-intro-logo {
  text-align: center;
  max-width: 300px;
  margin-bottom: 3rem;
}




/* ---------- Intro text columns ---------- */
.contacto-timeline-section .ct-intro-text {
  flex: 1 1 340px;
}

.contacto-timeline-section .ct-intro-left {
  flex: 0 0 310px;
}

.contacto-timeline-section .ct-intro-left h2 {
  /* font-size: 36px; */
  color: #1a237e;
  line-height: 1.3;
  margin: 0;
  width: auto;
  --font-increase: 1;
}

.contacto-timeline-section .ct-intro-text p {
  color: #001065;
  /* font-size: 19px; */
  line-height: 1.4;
  margin: 0;
}

.contacto-timeline-section .ct-intro-text p strong {

  font-weight: 600;
}

/* ---------- Timeline bar ---------- */
.contacto-timeline-section .ct-timeline {
  display: flex;
  align-items: center;
  margin-bottom: 56px;
  position: relative;
  gap: 0;
}

.contacto-timeline-section .ct-year-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  color: #001065;
  padding: 0;
  position: relative;
  transition: color 0.25s;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: inherit;
  font-weight: 600;
}
.contacto-timeline-section .ct-year-btn:hover {
    color: #05CF70;
}
.contacto-timeline-section .ct-year-btn.active {
  color: #001065;
  font-size: 18px;
}



/* Animated circle around the active year */


/* Outer sketchy second ring */
.contacto-timeline-section .ct-year-btn.active::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background-image: url(../assets/img/action_G_Green_HR_RGB.png);
  pointer-events: none;
  background-size: cover;
  background-repeat: no-repeat;
}

@media(min-width: 768px) {
  .contacto-timeline-section .ct-year-btn.active {
    font-size: 30px;
  }
  .contacto-timeline-section .ct-year-btn.active::after {

    width: 110px;
    height: 110px;

}

}



@keyframes ct-spin-in {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.6);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Dashed connector line between years */
.contacto-timeline-section .ct-line {
  flex: 1;
  border: none;
  border-top: 0;
  margin: 0 8px;
}

@media (min-width: 768px) {
 .contacto-timeline-section .ct-line {
    border: 1px solid #0073FF;
    margin: 0 25px;
}
}

/* ---------- Content panel ---------- */
.contacto-timeline-section .ct-content-panels {
  position: relative;
  min-height: 300px;
}

.contacto-timeline-section .ct-panel {
  display: none;
  gap: 48px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.contacto-timeline-section .ct-panel.active {
  display: flex;
  animation: ct-fade-in 0.4s ease;
}

@keyframes ct-fade-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Left: image block */
.contacto-timeline-section .ct-panel-img {

  max-width: 100%;
}

.contacto-timeline-section .ct-panel-img img {
  width: 100%;

  object-fit: cover;
  border-radius: 4px;
  display: block;
}



/* Right: text block */
.contacto-timeline-section .ct-panel-text {

}

.contacto-timeline-section .ct-panel-text h3 {
  /* font-size: 18px; */
  font-weight: 600;
  color: #001065;
  margin: 0 0 16px;
  --font-increase: 1;
}

.contacto-timeline-section .ct-panel-text p {
  color: #001065;

  margin: 0;
}

@media(min-width: 992px){
  .contacto-timeline-section .ct-panel-img {
    max-width: 45%;
    flex: 0 0 45%;
}
.contacto-timeline-section .ct-panel-text {
    flex: 0 0 47%;
    max-width: 47%;
}
}





/* ---------- Decorative blobs (optional) ---------- */
.contacto-timeline-section .ct-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.contacto-timeline-section .ct-blob-yellow {
  width: 60px;
  height: 60px;
  /* background: #fdd835; */
  /* opacity: 0.6; */
  left: 0;
  bottom: 120px;
}

.contacto-timeline-section .ct-blob-blue {
  width: 44px;
  height: 44px;
  border: 3px solid #1565c0;
  background: transparent;
  left: -8px;
  bottom: 68px;
}

.contacto-timeline-section .ct-blob-green {
  width: 100px;
  height: 100px;
  /* border: 3px solid #4caf50; */
  /* background: transparent; */
  right: 0;
  bottom: 100px;
  /* opacity: 0.55; */
}


/* ── Mobile pagination dots (hidden on desktop) ── */
  .ct-pagination {
    display: none; /* hidden by default (desktop) */
  }

  @media (max-width: 991px) {

    /* Show pagination only on mobile */
    .ct-pagination {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 10px;
      margin-top: 28px;
      margin-bottom: 80px;
    }

    .ct-pagination-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      border: 2px solid #070868;
      background: transparent;
      cursor: pointer;
      padding: 0;
      transition: background 0.2s, border-color 0.2s, transform 0.2s;
      flex-shrink: 0;
    }

    .ct-pagination-dot.active {
      border: none;
      border-color: transparent;
      /* transform: scale(1.5); */
      background-image: url(../assets/img/dot.png);
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      width: 14px;
      height: 14px;
    }

    /* On mobile: stack image above text */
    .ct-panel {
      flex-direction: column;
    }

    .ct-panel-img {
      flex: 0 0 auto;
      width: 100%;
    }

  }

  @media (min-width: 992px) {
    .ct-pagination {
      display: none !important;
    }
  }

/* ---------- Responsive ---------- */
@media (max-width: 767.98px) {
  .contacto-timeline-section .ct-intro {
    gap: 24px;
  }

  .contacto-timeline-section .ct-logo-badge .ct-number {
    font-size: 64px;
  }

  .contacto-timeline-section .ct-brand-name {
    font-size: 36px;
  }

  .contacto-timeline-section .ct-year-btn {
    font-size: 15px;
  }

  .contacto-timeline-section .ct-year-btn.active::after {
    width: 70px;
    height: 70px;
  }

  .contacto-timeline-section .ct-panel-img,.contacto-timeline-section .ct-panel-text {
    flex: 0 0 100%;
  }
}

@media(min-width: 992px){
  .contacto-timeline-section .ct-timeline {

    padding-left: 10%;
    padding-right: 10%;
}
.contacto-timeline-section .ct-blob-yellow {bottom: 26%;}
.contacto-timeline-section .ct-blob-green {bottom: 24%;}
.contacto-timeline-section .ct-intro {margin-bottom: 80px;justify-content: space-between;padding-left: 6%;padding-right: 6%;}
.contacto-timeline-section .ct-timeline {

    margin-bottom: 100px;

}
.contacto-timeline-section .ct-intro-logo {

    max-width: 500px;
    margin-bottom: 5rem;
    margin-left: auto;
    margin-right: auto;
}
.award-list {

    gap: 40px;
    padding-left: 5%;
    padding-right: 5%;
}
.award-list img {
    flex: 0 0 calc(25% - 40px);
    width: calc(25% - 40px);
}
}

@media(min-width: 1200px) {
.contacto-timeline-section .ct-intro-left {
    flex: 0 0 400px;
}
.contacto-timeline-section .ct-intro-left h2 {
    /* font-size: 59px; */
    --font-increase: 1.4;
}
.contacto-timeline-section .ct-intro-text p {/* font-size: 26px; */line-height: 1.4;margin: 0;}
.contacto-timeline-section .ct-intro-text {
    flex: 0 0 50%;
    max-width: 50%;
}
.contacto-timeline-section .ct-panel-text h3 {
    /* font-size: 37px; */
    font-weight: normal;
    --font-increase: 1;
    margin-bottom: 40px;
}
.contacto-timeline-section .ct-content-panels{
  margin-bottom: 4rem;
}
.ask-question .content-wrapper.yellow-div {
    padding-top: 3.5%;
}
}

@media(min-width: 1400px) {
  .contacto-timeline-section .ct-intro-logo {
    max-width: 100%;

}
.contacto-timeline-section .ct-year-btn.active {
    font-size: 60px;
}
.contacto-timeline-section .ct-year-btn.active::after {
    width: 200px;
    height: 200px;
}
.contacto-timeline-section .ct-year-btn {

    font-size: 31px;

}
.contacto-timeline-section .ct-line {

    margin: 0 42px;
}
.contacto-timeline-section .ct-panel {

    gap: 85px;

}
.contacto-timeline-section .ct-blob-yellow {
    width: 106px;
    height: 140px;
}
.contacto-timeline-section .ct-blob-green {
    width: 160px;
    height: 180px;

}
.award-list {

    gap: 75px;
    margin-top: 30px;
    margin-bottom: 85px;
}
.award-list img {
    flex: 0 0 calc(25% - 75px);
    width: calc(25% - 75px);
}
.logos-footer-container-first-row {

    gap: 30px 60px;

}
.logos-footer-container-first-row img {
    width: 10.28%;
}
.contacto-timeline-section .ct-intro {
    margin-bottom: 135px;

}
.contacto-timeline-section .ct-timeline {
    margin-bottom: 165px;
}
}
