* {
  box-sizing: border-box;
  margin: 0;
}

@font-face {
  font-family: laila;
  src: url(./font/Laila-Light.ttf);
}

@font-face {
  font-family: poppins;
  src: url(./font/Poppins-Regular.ttf);
}

body {
  height: 100%;
  font-family: "poppins", serif;
}

h1 {
  font-size: 36px;
  font-family: "laila", sans-serif;
}

h4 {
  font-size: 40px;
  font-family: "laila", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
}

p {
  font-size: 16px;
  color: #181f25;
  font-family: "poppins", serif;
}

button {
  padding: 1rem;
  font-size: 14px;
  border: thin solid #000;
  border-radius: 0;
  background-color: transparent;
  cursor: pointer;
  outline: none;
  transition: all 0.5s;
}

button:hover {
  background-color: #AE9D84;
  border-color: white;
  color: white;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 95px;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 20;
}

.navbarContent {
  height: 100%;
  width: 100%;
  margin: 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
}

.navbar__logo {
  flex: 0.4;
  padding: 10px 0;
}

.navbar__logo img {
  max-width: 100%;
  height: 70px;
  object-fit: contain;
}

.navbar__menuIcon {
  flex: 0.2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.floatingNav {
  box-shadow: 0px 1px 10px #999;
  background-color: rgba(255, 255, 255, 1);
}

.menu_icon {
  display: flex;
  flex-flow: column;
  cursor: pointer;
}
.line {
  width: 2.5rem;
  height: 0.2rem;
  background-color: black;
  margin-bottom: 0.5rem;
  transition: width 0.3s;
}

.line-1,
.line-3 {
  width: 1.8rem;
}

.checked-line-1 {
  transform: rotate(-405deg) translate(-8px, 6px);
  width: 2.5rem;
}

.checked-line-2 {
  opacity: 0;
}

.checked-line-3 {
  transform: rotate(405deg) translate(-8px, -6px);
  width: 2.5rem;
}

.menu_icon:hover .line {
  width: 2.5rem;
}

.navbar__contactUs{
  flex: 0.4;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}


.menu {
  width: 100%;
  position: fixed;
  top: 0;
  height: 101vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 10;
  clip-path: circle(100px at 50% -15%);
  -webkit-clip-path: circle(100px at 50% -15%);
  transition: all 0.5s ease-out;
}

.menu_content {
  /* width: 100%; */
  max-width: 900px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu_content > ul {
  width: 100%;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.menu_content li {
  width: 200px;
  height: 150px;
  margin-bottom: 30px;
  margin-right: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.menu_content li span {
  font-size: 2rem;
}

.menu ul li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #0E1F2F;
  text-decoration: none;
  transition: color 0.2s;
  text-align: left;
  font-size: 20px;
}

.menu ul li a:hover {
  color: #AE9D84;
}

.menu.showMenu {
  clip-path: circle(2000px at 50% -10%);
  -webkit-clip-path: circle(2000px at 50% -10%);
  overflow-y: visible;
}

.banner {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url("assets/About\ us/making your business more human.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.overlay {
  position: absolute;
  width: 100%;
  height: calc(100vh);
  top: 0;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.banner__content {
  position: relative;
  margin: 0 20px;
  text-align: center;
  max-width: 1000px;
  z-index: 3;
}

.banner__content > h1 {
  line-height: 5rem;
  font-size: 5rem;
  color: white;
}

.banner__content > h4 {
  margin-bottom: 5rem;
  color: white;
}

.banner__content > p {
  color: white;
}

.banner__content > button {
  background-color: #AE9D84;
  color: white;
}

.mySlides {
  display: none;
}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  z-index: 5;
}

.carousel_dots {
  z-index: 5;
  position: absolute;
  bottom: 5rem;
}

/* The dots/bullets/indicators */
.dot {
  height: 2px;
  width: 40px;
  margin: 2px 3px;
  background-color: #555;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #fff;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 10s;
  animation-name: fade;
  animation-duration: 10s;
  animation-timing-function: cubic-bezier(0.91, 0.1, 0.43, 1.01) ease-out;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  5% {
    opacity: 1;
    transform: translateY(0px);
  }
  95% {
    opacity: 1;
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    transform: translateY(-200px);
  }
}

@keyframes fade {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  5% {
    opacity: 1;
    transform: translateY(0px);
  }
  95% {
    opacity: 1;
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    transform: translateY(-200px);
  }
}

.headingUnderline {
  width: 90%;
  max-width: 400px;
  height: 7px;
  background-color: #AE9D84;
  margin-top: 10px;
}

.introduction {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.introduction > h4 {
  margin:  4rem 20px 0;
  text-align: center;
}
.introduction > p {
  padding: 0 6rem;
  text-align: center;
  text-align: left;
  line-height: 1.8rem;
}

.introduction__innerSection {
  min-height: 60vh;
  display: flex;
  padding: 4rem;
  background-color: #f5f5f5;

}

.introduction__img {
  flex: 0.5;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.introduction__img > img {
  max-width: 100%;
  object-fit: contain;
  border-radius: 5px;
}

.introduction__content {
  flex: 0.5;
  text-align: end;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.introduction__content > h1 {
}

.introduction__content > h4 {
}
.introduction__content > p {
  margin-top: 20px;
  line-height: 1.8rem;
}

.inner_section2 {
  background-color: #fff;
}

.intro_section2 {
  text-align: left;
}

.benefits__headingUnderline {
  width: 90%;
  max-width: 400px;
  height: 7px;
  background-color: #AE9D84;
  margin-top: 10px;
  margin-bottom: 70px;
}

/* //////////////////////////////////// */
.qualidadTeam{
  /* min-height: 100vh; */
  width: 100%;
  background-color: #0E1E2F;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.qualidadTeam > h4{
  color: white;
}

.qualidadTeamCardContainer{
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  gap: 0px 30px;
  align-items: center;
}

.qualidadTeamCard{
  height: 350px;
  width: 250px;
  cursor: pointer;
  border-radius: 4px;
  position: relative;
  margin-top: 30px;

}

.qualidadTeamCard >  h4{
  position: absolute;
  width: 100%;
  bottom: 35px;
  font-size: 20px;
  text-align: center;
  transition: color 0.4s ease-out;
  z-index: 2;
}

.qualidadTeamCard >  p{
  position: absolute;
  width: 100%;
  bottom: 15px;
  font-size: 18px;
  color: rgb(121, 121, 121);
  text-align: center;
  transition: color 0.4s ease-out;
  z-index: 2;
}

.teamCardOne{
  background: url(./assets/qualidad_G.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.qualidadTeamCard:hover .teammateName__overlay {
  height: 80px;
}

.qualidadTeamCard:hover h4 {
  color: white;
}
.qualidadTeamCard:hover p {
  color: white;
}

.teammateName {
  width: 100%;
  position: absolute;
  bottom: 0;
  transition: all 0.5s;
  background-color: white;
  text-align: center;
  color: black;
  padding: 1rem;
}

.teammateName__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0px;
  width: 100%;
  text-align: center;
  color: white;
  overflow: hidden;
  transition: all 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #AE9D84;
}


.teamCardTwo{
  background: url(./assets/qualidad_O.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.teamCardThree{
  background: url(./assets/qualidad_A.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.teamCardFour{
  background: url(./assets/qualidad_E.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.individualExpandedCard{
  max-width: 700px;
  padding: 2rem 0;
  
  transition: opacity 0.5s;
}

.expandedCardMobileView{
  display: none;
}
.individualExpandedCard h4{
  color: white;
}

.individualExpandedCard p{
  color: white;
}

.hideIndividualExpandedCard{
  height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0;
}

.showIndividualExpandedCard{
  height: auto;
  overflow: hidden;
  opacity: 1;
}

/* //////////////////////////////// */

.advisorTeam{
  width: 100%;
  background-color: #0E1E2F;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.advisorTeam > h4{
  color: white;
}

.advisorTeamCardContainer{
  width: 100%;
  max-width: 12000px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  align-items: center;
}

.advisorTeamCard{
  height: 350px;
  width: 250px;
  cursor: pointer;
  /* margin-top: 3rem; */
  /* border: thin solid #000; */
  border-radius: 4px;
  position: relative;

}

.advisorTeamCard >  h4{
  position: absolute;
  width: 100%;
  bottom: 35px;
  font-size: 20px;
  text-align: center;
  transition: color 0.4s ease-out;
  z-index: 2;
}

.advisorTeamCard >  p{
  position: absolute;
  width: 100%;
  bottom: 15px;
  font-size: 18px;
  color: rgb(121, 121, 121);
  text-align: center;
  transition: color 0.4s ease-out;
  z-index: 2;
}

.advisorTeamCardOne{
  background: url(./assets/qualidad_N.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.advisorTeamCardTwo{
  background: url(./assets/qualidad_M.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.advisorTeamCardFour{
  background: url(./assets/qualidad_M.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


.advisorTeamCardThree{
  background: url(./assets/qualidad_K.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


.advisorTeamCard:hover .advisorTeammateName__overlay {
  height: 80px;
}

.advisorTeamCard:hover h4 {
  color: white;
}
.advisorTeamCard:hover p {
  color: white;
}

.advisorTeammateName {
  width: 100%;
  position: absolute;
  bottom: 0;
  transition: all 0.5s;
  background-color: white;
  text-align: center;
  color: black;
  padding: 1rem;
}

.advisorTeammateName__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0px;
  width: 100%;
  text-align: center;
  color: white;
  /* padding: 1rem; */
  overflow: hidden;
  transition: all 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #AE9D84;
}



/* ************************* */
.read-more-target {
  opacity: 0;
  line-height: 1.8rem;
  max-height: 0;
  font-size: 0;
  transition: 0.25s ease;
}

.read-more-state {
  display: none;
}

.read-more-state:checked ~ .read-more-wrap .read-more-target {
  opacity: 1;
  font-size: inherit;
  max-height: 999em;
}

.read-more-state ~ .read-more-trigger:before {
  content: "show more";
  color: #AE9D84;
  font-weight: 600;
}

.read-more-state:checked ~ .read-more-trigger:before {
  content: "show less";
}

.read-more-state:checked ~ .read-more-trigger {
  transform: translateY(0px);
}

.read-more-trigger {
  cursor: pointer;
  display: inline-block;
  font-size: 15px;
  color: black;
}

/* ******************* */

.theQualidadAdvantage {
  padding-top: 4rem;
  width: 100%;
  /* background-color: #2a2a2a; */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.whoWeAre {
  background: linear-gradient(to top, rgba(14, 31, 47, 0.4), rgba(14, 31, 47, 0.4)),
    url(" https://www.filepicker.io/api/file/kplpMQHR32Aaro2Y2clD");

  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}

.whoWeAre > p {
  color: white;
  max-width: 1200px;
  margin-top: 40px;
}

.ourAchievements {
  /* padding: 4rem; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ourAchievements > h4 {
  margin-top: 4rem;
}

.ourAchievements > p {
  margin: 0 4rem;
  margin-top: 20px;
  max-width: 1200px;
}

.ourAchievements__innerSection {
  height: 60vh;
  width: 100%;
  display: flex;
  padding: 4rem;
  justify-content: center;
  align-items: center;
}

.ourAchievements__innerSectionContentContainer {
  display: flex;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
}

.ourAchievements__img {
  flex: 0.5;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.ourAchievements__img > img {
  /* max-width: 100%; */
  /* height: 100%; */
  max-height: 300px;
  object-fit: contain;
  border-radius: 5px;
}

.ourAchievements__content {
  flex: 0.5;
  text-align: end;
  padding: 2rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.ourAchievements__content > p {
  margin-top: 20px;
  line-height: 1.8rem;
}

.intro_section2 {
  text-align: left;
}

.quote__container {
  background-color: #53728D;
  padding: 3rem;
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.quote__container > h4 {
  margin-bottom: 20px;
}

.quote__container > cite {
  display: block;
  font-size: 24px;
  color: #fff;
  letter-spacing: 5px;
  text-align: center;
}

.strategicPartner{
  padding: 0 0rem 4rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;

}

.strategicPartner > h4{
  background-color: #53728D;
  width:  100%;
  padding: 2rem 0;
  text-align: center;
  color: white;
  margin-bottom: 70px;
}

.strategicPartner__imgContainer{
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 0 40px;
}

.strategicPartner__imgContainer img {
  max-width: 250px;
  object-fit: contain;
}
.strategicPartner__imgContainer > img {
  max-width: 250px;
  object-fit: contain;
  margin-top: 20px;
}
.strategicPartner__imgContainer > a {
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-top: 20px; */
}


.footer {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  background-color: rgba(14, 31, 47, 1);
}

.footer__content {
  padding: 4rem;
  display: flex;
  justify-content: space-around;
}

.footer__socialLinks {
  border-bottom: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.socialLink {
  display: flex;
  color: white;
  margin-right: 20px;
  margin-bottom: 20px;
}
.socialLink span {
  font-size: 1.5em;
  margin-right: 10px;
}

.socialLink a {
  color: white;
}
.footerIntro {
  flex: 0.34;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.footerIntro > img {
  max-width: 100%;
  object-fit: contain;
}

.footer__qualidadText {
  margin-top: 20px;
  max-width: 430px;
}

.footer__qualidadText > p {
  color: white;
  /* margin-left: 20px; */
  text-align: center;
}

.footer__qualidadLogo {
  max-width: 100%;
  height: 75px;
}

.footer__quickLinks {
  flex: 0.33;
  min-height: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  color: white;
}

.quickLinks__content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.footer__quickLinks h4 {
  font-size: 32px;
}

.footer__quickLinks ul {
  height: 100%;
  list-style: none;
  margin-top: 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.footer__quickLinks li {
  margin-bottom: 10px;
}

.footer__quickLinks ul > li > a {
  color: white;
  text-decoration: none;
}

.footer__contactUs {
  flex: 0.33;
}

.contact_logo {
  height: 30px;
  object-fit: contain;
}

.contactContainer {
  display: flex;
  color: white;
  margin-bottom: 10px;
}
.contactContainer > span {
  font-size: 1.5em;
  margin-right: 10px;
}

.footer__end {
  background-color: rgba(14, 31, 47, 1);
  padding: 1rem;
  display: flex;
  display: flex;
  justify-content: center;
}

.footer__end > p {
  color: #fff;
}

@media (max-width: 1240px) {
  .advisorTeamCardContainer{
    max-width: 800px;
  }
}

@media (max-width: 1050px) {

}

@media (max-width: 990px) {
  .introduction__innerSection{
    padding: 2rem;
  }
  .introduction > p{
    padding: 0 4rem;
  }
  .footer h4{
    font-size: 28px;
  }

  .footer__content {
    padding: 2rem;
  }

  .footerIntro {
    flex: 0.4;
  }

  .footer__quickLinks {
    flex: 0.4;
  }

  .footer__contactUs {
    flex: 0.2;
  }

}

@media (max-width: 900px){
  .advisorTeam{
    padding-right: calc(4rem - 30px);
  }
  .advisorTeamCardContainer{
    justify-content: center;
  }

}

@media(max-width: 800px){

h1 {
  font-size: 32px;
}

h4 {
  font-size: 36px;
}

p {
  font-size: 16px;
}

button {
  padding: 0.9rem;
  font-size: 12px;
}

.navbar__logo{
  padding-right: 4rem ;
}

.benefits{
  padding: 4rem 2rem;
}

  .benefits__grid {
    display: grid;
    grid-template-columns: repeat(2, 250px);
    grid-template-rows: repeat(3, 220px);
    grid-gap: 30px;
  }

  .mission1 > p {
    font-size: 18px;
  }
  .mission > p {
    font-size: 18px;
  }
  
  .missionContent__img {
    padding: 4rem 2rem 4rem 0rem;
  }
  .missionContent1__img {
    padding: 4rem 0rem 4rem 2rem;
  }

  .missionContent1__text > p{
    max-width: 500px;
    width: 100%;
  }

  .footer h4{
    font-size: 24px;
  }

  .footer__content {
    padding: 2rem 1rem;
  }


}

@media (max-width: 700px){
  
  h1 {
    font-size: 30px;
  }
  
  h4 {
    font-size: 32px;
  }
  
  p {
    font-size: 14px;
  }

  .banner__content > h1 {
    line-height: 3rem;
    font-size: 3rem;
    color: white;
  }
  
  button {
    padding: 0.9rem;
    font-size: 12px;
  }

  .qualidadTeamCardContainer{
    flex-direction: column;
  }

  .individualExpandedCard{
    padding: 2rem;
  }

  .individualExpandedCard > h4{
    text-align: center;
  }

  .individualExpandedCard > p:first-of-type{
    margin-bottom: 20px !important;
  }

  .individualExpandedCard > p{
    text-align: center;
  }

  .expandedCardDesktopView{
    display: none;
  }

  .expandedCardMobileView{
    display: block;
  }
  .strategicPartner__imgContainer{
    flex-direction: column;
    gap: 30px 0;
  }
  
  .footer h4{
    font-size: 20px;
  }


}

@media(max-width: 600px){

  h4{
    font-size: 28px;
    text-align: center !important;
  }
  .line{
    width: 2.0rem;
    height: 2px;
    background-color: black;
    margin-bottom: 0.5rem;
  }
  .line-1, .line-3{
    width: 1.5rem;
  }
  
.menu_content > ul {
  width: 100%;
  padding: 0;
}

.menu ul li a {
  font-size: 16px;
 }

.menu_content li {
  width: 150px;
  height: auto;
  margin-bottom: 60px;
  margin-right: 0px;
}

.menu_content li span {
  font-size: 2rem;
}

  .navbar{
    height: 80px;
    padding-right: 0 !important;
  }
  .navbarContent{
    margin: 0 30px;
  }
  .navbar__menuIcon{
    flex: 0.5;
    justify-content: flex-end;
  }

  .navbar__logo{
    flex: 0.5;
    padding-right: 10rem;
  }

  .navbar__contactUs{
    display: none;
  }

  .benefits__headingUnderline{
    margin-bottom: 20px;
  }

  .introduction__innerSection{
    flex-direction: column-reverse;
  }

  .introduction > p{
    padding: 0 2rem;
  }

  .inner_section2{
    flex-direction: column;
  }

  .introduction__content{
    padding: 0 0 2rem;
    text-align: left;
  }

  .quote__container{
    padding: 3rem 2rem;
  }

  .quote__container > cite{
    font-size: 16px;
  }

  .qualidadTeam{
    padding:2rem 0rem;
  }
  

  .advisorTeamCard {
    margin: 0;
  }

  .advisorTeamCardContainer{
    flex-direction: column;
  }

  .advisorTeam{
    padding: 2rem 0;
  }



  .footer__content{ flex-direction: column; }
  .footerIntro{
    flex: 1;
  }
  .footer__quickLinks{
    flex: 1;
    margin-top: 30px;
  }
  .footer__end{
    text-align: center;
  }
}