* {
  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 {
  /* position: absolute;
  left: 50%;
  transform: translateX(0); */
  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 {
  /* flex: 0.33; */

  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;
  background: url("assets/Work with us/secure limitless potentials.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.banner > video {
  position: absolute;
  top: 0;
  height: calc(100vh);
  width: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 1;
}

.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;
  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);
  }
}
.introduction {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.introduction__innerSection {
  min-height: 80vh;
  display: flex;
  padding: 4rem;
}

.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: #F5F5F5;
}

.intro_section2 {
  text-align: left;
}

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

.values {
  width: 100%;
  min-height: 100vh;
  padding: 4rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  background-color: #0E1F2F;
}

.values > h4 {
}

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

.values__grid {
  margin: auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
}

.values__grid_flip-card {
  height: 250px;
  width: 250px;
  padding: 10px;
  margin-right: 30px;
  margin-bottom: 30px;
  background-color: transparent;
  /* perspective: 1000px; */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.values__grid_flip-card h4 {
  font-size: 24px;
}

.values__grid_flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.values__grid_flip-card:hover .values__grid_flip-card-inner {
  transform: rotateY(180deg);
}

.values__grid_flip-card-front,
.values__grid_flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}

.values__grid_flip-card-back > p {
  color: white;
  font-size: 14px;
}

.values__grid_flip-card-back {
  transform: rotateY(180deg);
  justify-content: space-evenly;
}

.card-1 {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://miro.medium.com/max/11520/1*73SfeqLGzbvmhqnzwt9XCw.jpeg");
  background-size: cover;
}
.card-2 {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://miro.medium.com/max/11136/1*RVo64zgB4wExeXm0pH_U9w.jpeg");
  background-size: cover;
}
.card-3 {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://cdn.corporatefinanceinstitute.com/assets/economic-profit-1024x681.jpeg");
  background-size: cover;
}
.card-4 {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://business.time.com/wp-content/uploads/sites/2/2012/09/82864011.jpg?w=600");
  background-size: cover;
}
.card-5 {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR-5VF_5Juj_uS4p1ncxo38KgLbZ3uJ7CGWkfE0MVhxPRzM6nNOMua3LNDV4H72V5JGz4E&usqp=CAU");
  background-size: cover;
}
.card-6 {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRDAb2mJB_RpPgXdukvsPFGtCxE9DQIUC2-LA&usqp=CAU");
  background-size: cover;
}

.getInTouch {
  padding: 2rem;
  height: 50px;
  background-color: #0E1F2F;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fitTheProfile {
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fitTheProfile > h4 {
  max-width: 1200px;
  text-align: center;
}

.submitResume {
  padding: 2rem;
  background-color: #0E1F2F;
  display: flex;
  justify-content: center;
  align-items: center;
}

.submitResume button {
  color: #fff;
  border-color: #fff;
}

.milestones {
  width: 100%;
  min-height: 100vh;
  padding: 4rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

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

.benefits__grid {
  margin: auto 0;
  display: grid;
  grid-template-columns: repeat(3, 300px); /* 3 columns */
  grid-template-rows: repeat(2, 250px); /* 3 rows  */
  grid-gap: 30px 30px; /* 50 pixels of space added between rows and 30 pixels added between columns  */
}

.flip-card {
  padding: 10px;
  background-color: transparent;
  /* perspective: 1000px; */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.flip-card h4 {
  font-size: 24px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}

.flip-card-back > p {
  color: white;
}

.flip-card-back {
  transform: rotateY(180deg);
  justify-content: space-evenly;
}


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

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

.strategicPartner__imgContainer{
  display: flex;
  justify-content: center;
  margin: 0 4rem;
  max-width: 1200px;
  gap: 50px;
}

.strategicPartner__imgContainer img {
  max-width: 150px;
  max-height: 150px;
  object-fit: contain;
}


.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: 1200px) {

}

@media (max-width: 1050px) {
  .benefits__grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 300px);
    grid-template-rows: repeat(3, 250px);
    grid-gap: 50px 30px;
  }
}

@media (max-width: 990px) {
  .introduction__innerSection{
    padding: 2rem;
  }
  .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: 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;
  }
  .missionContent1__text > p{
    padding: 0.6rem;
  }
  .missionContent__text > p{
    padding: 0.6rem;
  }

  .values__grid{
    flex-direction: column;
  }

  .values__grid_flip-card{
    margin-right: 0;
  }
  
  .footer h4{
    font-size: 20px;
  }


}

@media(max-width: 600px){

  h4{
    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;
  }

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

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

  .benefits__grid {
    grid-template-columns: repeat(1, 250px);
    grid-template-rows: repeat(6, 220px);
  }

  .benefits__headingUnderline{
    margin-bottom: 20px;
  }

  .quote__container{
    padding: 3rem 2rem;
  }

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

  .mission{
    min-height: 80vh;
    height: auto;
    padding: 4rem 2rem;
  }
  .missionContent{
    flex-direction: column-reverse;
    padding: 2rem 0;
  }

  .missionContent__img, .missionContent__text {
    padding: 0;
  }

  .missionContent__text > p{
    transform: none;
    border-radius: 0 0 5px 5px ;
  }
  .missionContent__img > img{
    transform: none;
    border-radius: 5px 5px 0 0 ;
  }

  .mission1{
    min-height: 80vh;
    height: auto;
    padding: 4rem 2rem;
  }
  .missionContent1{
    flex-direction: column;
    padding: 2rem 0;
  }

  .missionContent1__img, .missionContent1__text {
    padding: 0;
  }

  .missionContent1__text > p{
    transform: none;
    border-radius: 0 0 5px 5px ;
  }
  .missionContent1__img > img{
    transform: none;
    border-radius: 5px 5px 0 0 ;
  }

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