* {
  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;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url("assets/Solutions/mystery\ shopping\ basics\ that.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: absolute;
  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 {
  margin-top: 5rem;
  color: white;
}

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

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

.innovationMeetsBusiness__headingUnderline {
  max-width: 400px;
  width: 90%;
  height: 7px;
  background-color: #ac9576;
  margin-top: 10px;
  margin-bottom: 50px;
}

.innovationMeetsBusiness h4 {
  margin: 50px 0 10px;
}
.innovationMeetsBusiness p {
  max-width: 1200px;
}

.accordion {
  background-color: #fff;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  transition: 0.4s;
  max-width: 1200px;
  font-size: 20px;
  font-family: "optima", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  border-top: 1px solid #2a2a2a;
}

.accordion:last-of-type {
  border-bottom: 1px solid #2a2a2a;
}

.active,
.accordion:hover {
  background-color: #0E1F2F;
  color: white;
}

.accordion:after {
  content: "\002B";
  color: #000;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.accordion:hover:after {
  color: #fff;
}

.active:after {
  content: "\2212";
  color: white;
}

.panel {
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.panel > p {
  padding: 1rem;
}

.quote__container {
  padding: 3rem;
  display: flex;
  background-color: #53728D;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
}
.quote__container > cite {
  display: block;
  font-size: 24px;
  color: #fff;
  letter-spacing: 5px;
  text-align: center;
}

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

.introduction > h4 {
  margin:  4rem 20px 0;
  text-align: center;
}
.introduction > p {
  margin:  0rem 20px 0;
  text-align: center;
}

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

}

.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 > p {
  margin-top: 20px;
  line-height: 1.8rem;
}

.inner_section2 {
  background-color: #fff;
}

.intro_section2 {
  text-align: left;
}


.industriesWeServe {
  padding: 4rem;
  background-color: #0E1F2F;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.industryCardsContainer{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-left: 30px;
  margin-top: 50px;
  max-width: 1100px;
}

.industryCard{
  height: 105px;
  width: 200px;
  padding: 16px;
  background-color: white;
  color: black;
  margin-bottom: 30px;
  margin-right: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  transition: all 0.5s;
}

.industryCard:hover{
  transform: scale(1.1);
}

.industryCard > span{
  font-size: 1.5rem;
  color: #0E1F2F;
}

.industryCard > p{

}

.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;
  }

  
  .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;
  }

  .innovationMeetsBusiness{
    padding: 2rem;
  }


  .quote__container{
    padding: 3rem 2rem;
    margin-bottom: 0;
  }

  .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;
  }
}