:root {
  --yellow-10: #cfbe73;
  --yellow-15: #c9a44f;
  --yellow-20: #bd9e14;
  --light-gray-color: #EEE;
  --font-primary: #938F8F;
  --white: #FFFFFF;
  --gap: 3rem;
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background: rgb(233, 226, 226);
  font-size: 2rem;
  line-height: 1.5;
  font-family: 'Sansita', sans-serif;
}

p {
  font-size: 3rem;
  color: var(--font-primary);
  text-align: justify;
}

a { 
  text-decoration: none;
  color: var(--white);
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1;
}

.menu-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

.menu ul {
  list-style: none;
  display: flex;
}

.menu ul li a {
  display: block;
  padding: 2rem;
  font-size: 2.5rem;
  color: var(--yellow-10);
  position: relative;
}

.menu ul li a:hover {
  color: var(--yellow-10);
  border-radius: 1.3rem;
}

.menu ul li a::after {
  content: '';
  position: absolute;
  bottom: 1rem;
  left: 50%;
  width: 0;
  height: 0.2rem;
  background: var(--yellow-10);
  transition: all 300ms ease-in-out;
}

.menu ul li a:hover::after {
  width: 50%;
  left: 25%;
}

.hamburger {
  display: none;
}

.main-bg {
  background-image: url('../img/main-bg.svg');
  background-size: cover;
  background-position: center center;
  color: var(--white);
}

.white-bg {
  color: var(--primary-color);
}

.main-content {
  height: 80px;
  max-width: 120rem;
  margin: 0 auto;
  padding: 1.3rem var(--gap);
}

.section {
  min-height: 100vh;
}

body .full-width {
  width: 100%;
  flex: 1 1 100%;
}

.logo-img {
  width: 100px;
  height: 50px;
}

#home {
  background: url(/assets/img/background-img/business-data-analysis-graph-1900.jpg) no-repeat fixed;
  background-position: center;
  background-size: cover;
}

.intro-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--gap);
  min-height: 100vh;
}

.intro-text-content, .intro-img  {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
}

.intro-text-content h2 {
  font-size: 3.5rem;
}

.intro-text-content p  {
  color: #f7f7f7;
}

.intro-img img,
.intro-img svg {
  max-width: 100%;
  min-height: auto;
}

.content {
  margin: 0 auto;
}

.active {
  background-color: var(--white);
  transition: 0.8s;
}

.banner-title-right, .banner-title-left {
  position: absolute;
  width: 60%;
  padding: 0.5rem 0.5rem;
  background: var(--yellow-15);
}

.banner-title-right {
  border-radius: 0 8rem 8rem 0;
  text-align: right;
  padding: 0.5rem 0.5rem;
  margin-top: 14rem;
}

.banner-title-left {
  right: 0;
  border-radius: 8rem 0 0 8rem;
  text-align: left;
  margin-top: 13rem;
}

.banner-title-left h2, .banner-title-right h2 {
  font-size: 4.5rem;
  color: #434343;
}

.banner-title-right h2 {
  margin-right: 5rem;
}

.banner-title-left h2{
  margin-left: 5rem;
}

#us > .content {
  width: 100%;
  max-width: 900px;
  text-align: center;
  padding: 34rem 0.5rem 6rem; 
}

#us {
  background: var(--white);
  height: 100%;
}

.about-us {
  margin: 0 auto;
  height: 100vh;
}

#services {
  background: var(--white);
  height: 100%;
}

#services > .content {
  padding: 25.5rem 0.5rem 7rem; 
  width: 100%;
  max-width: 900px;
  text-align: center;
}

#services .card > h3 {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 2rem;
  color: var(--yellow-20);
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
  height: 100%;
  padding: 0;
}

.card {
  width: 250px;
  height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  background: var(--white);
  border-radius: 2.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  transition: transform 0.7s;
}

.card:hover {
  transition: transform 0.7s;
  transform: translateX(0) scale(1.13);
  border: 1px solid var(--yellow-10);
}

#customers {
  width: 100%;
  height: 100%;
  
  background: #eeeaea;
  margin: 0 auto;
  padding: 20px;
  color: var(--yellow-20);
}

.banner-title-center {
  width: 50%;
  border-radius: 8rem;
  text-align: center;
  padding: 0.5rem 0.5rem;
  margin: 12rem auto 2rem;
  background: var(--yellow-15);
  color: #434343;
  box-shadow: 0 1rem 1.5rem rgba(0, 0, 0, 0.2);
}

.content-padding {
  max-width: 120rem;
  height: 100%;
  padding: 3rem 9rem 8rem;
  opacity: 0.8;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  column-gap: 8rem;
  row-gap: 4rem;
}

#pictures {
  background: #434343;
  height: 100%;
}

#pictures > .content {
  width: 100%;
  max-width: 1100px;
  text-align: center;
  padding: 1rem 0.5rem 6rem; 
}

.picture-us {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 5rem;
}

.picture-us span {
  display: block;
}

.picture-us img {
  border-radius: 1rem;
}

#pictures > .content > .banner-title-center {
  margin: 4rem auto;
  width: 50%;
  border-radius: 8rem;
  text-align: center;
  padding: 0.5rem 0.5rem;
  background: var(--yellow-15);
  color: #434343;
  box-shadow: 0 1rem 1.5rem rgb(0 0 0 / 20%);
}

#contact-us {
  background: #2E2E2E;
  width: 100%;
  height: 65%;
}

.biggest-width {
  max-width: 130rem;
  width: 100%;
  height: 70%;
  padding: 8rem 5rem;
  text-align: center;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.localization h3 {
  font-size: 4rem;
  font-weight: 600;
  color: #bd9e14b2;
  text-align: left;
}

.biggest-width p {
  font-size: 2.1rem;
  color: var(--white);
}


form {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
}

form > input, form > textarea {
  height: 4rem;
  border-radius: 1rem;
  border: none;
}

.comment-email {
  width: 40rem;
  height: 3.5rem;
  padding: .7rem;
  font-size: 1.8rem;
  resize: none;
}

.send-email {
  height: 3.5rem;
  font-weight: 600;
  padding: .5rem;
  cursor: pointer;
  background: #434343;
  color: #bda641;
}

.contact-text {
  flex-flow: column;
  gap: 5px;
}

span {
  text-align: left;
  color: var(--font-primary);
}

.social-media-link {
  align-items: center;
  gap: 20px;
}

.social-media-link a {
  height: 100%;
}

.contact {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.contact h3{
  font-size: 3.5rem;
}

.contact div {
  display: flex;
  align-items: flex-start;
}

.contact div p {
  padding-left: 4.5rem;
  position: relative;
  color: #FFFFFF;

}

.map-img {
  width: 280px;
  height: 230px;
}

.message-title div a img {
  width: 20px;
  height: 20px;
}

.localization {
  display: flex;
  gap: 4rem;
}

#message {
  height: 25vh;
  background: url(/assets/img/background-img/group-business-people-having-meeting.jpg) fixed 50% no-repeat;
  background-position: center;
  background-size: cover;
}

#message > .content{
  max-width: 1300px;
  height: 100%;
  padding: 0 8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.icon-contact {
  width: 27px;
  height: 27px;
  position: absolute;
  top: 2px;
  left: 2px;
}

#message .content .message-title h2 {
  font-size: 3.5rem;
  text-align: center;
  color: #434343; 
}

.message-title div {
  text-align: center;
  color: var(--white);
}

.logos-clients {
  display: flex;
  align-items: center;
}

.logos-clients .border {
  border-radius: 3.5rem;
}

.middle img {
  width: 210px !important;; 
  height: 140px !important;
}

iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;

  background-color: #2E2E2E;
}

footer p {
  font-size: 2rem;
}

#contact-us .content {
  max-width: 1200px;
}


@media only screen and (max-width: 2600px) {
  .banner-title-right, .banner-title-left {
    width: 55%;
  }
}

@media only screen and (max-width: 2100px) {
  .banner-title-right, .banner-title-left {
    width: 56%;
  }
}

@media only screen and (max-width: 1800px) {
  .banner-title-right, .banner-title-left {
    width: 57%;
  }
}

@media only screen and (max-width: 1550px) {
  .banner-title-right, .banner-title-left {
    width: 59%;
  }
}

@media only screen and (max-width: 1200px) {
  #us > .content {
    padding: 34rem 9.5rem 6rem;
  }

  #services > .content {
    padding: 28rem 4rem 9rem;
  }

  .banner-title-center {
    margin: 8rem auto 2rem;
  }
 
  .banner-title-right, .banner-title-left {
    width: 62%;
  }
}

@media only screen and (max-width: 900px) {
  .biggest-width {
    flex-direction: column;
    gap: 10rem;
  }

  .banner-title-center {
    margin: 5rem auto 2rem;
  }

  .banner-title-right, .banner-title-left {
    width: 65%;
  }
  
}

@media only screen and (max-width: 900px) {
  form {
    flex-direction: column;
    align-items: center;
  }

  .send-email {
    width: 8rem
  }
  
}

@media only screen and (max-width: 800px) {

  body {
    line-height: 1.2;
  }

  p {
    font-size: 2.2rem;
  }

  .menu .logo-img {
    width: 70px;
    height: 40px;
  }

  .menu{
    background-color: var(--white);
  }

  .hamburger {
    display: flex;
    cursor: pointer;
    padding: .5rem 1rem;
    border: none;
    background: none;
  }

  .menu ul {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    top: 8rem;
    right: 0;
    background: var(--white);
    z-index: 1000;
    height: 0;
    transition: .6s;
    visibility: hidden;
    overflow-y: hidden;
  }

  #nav.active .header-ul {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 8rem);
    visibility: visible;
    overflow-y: auto;
  }

  .hamb {
    color: var(--yellow-15);
    border-top: 2px solid;
    width: 20px;
  }

  .hamb::after, .hamb::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background-color: currentColor;
    margin-top: 5px;
    transition: .3s;
    position: relative;
  }

  .header-ul::-webkit-scrollbar {
    display: none;
  }

  #nav.active .hamb {
    border-top-color: transparent;
  }
  
  #nav.active .hamb::before {
    transform: rotate(135deg);
  }

  #nav.active .hamb::after {
    transform: rotate(-135deg);
    top: -7px;                      
  }

  .social-media-link a img {
    width: 50px;
    height: 50px;
  }

    .localization {
    flex-direction: column;
    margin: 0 auto;
    gap: 1.5rem;
  }

    #message > .content {
    flex-direction: column;
  }

  .banner-title-right, .banner-title-left {
    width: 66%;
    margin-top: 7rem;
  }

  .banner-title-left {
    margin-top: 3rem;
  }

  .banner-title-center {
    width: 80%;
    margin: 5rem auto;
  }
  
  .banner-title-center h2,.banner-title-left h2, .banner-title-right h2 {
    font-size: 3rem;
  }

  .content-padding {
    padding: 4rem 0;
    column-gap: 3.5rem;
    row-gap: 7rem;
  }

  .content .logos-clients {
    width: 150px;
    height: 90px;
    border-radius: 2.5rem;
  }

  #us > .content {
    padding: 18rem 4rem 4rem;
  }

  #services, #customers {
    height: 100%;
  }

  #services .content {
    padding-top: 15rem;
  }

  #customers > h2 {
    font-size: 2.8rem;
  }

  .logos-clients img{
    width: 150px;
    height: 120px;
  }

  .contact div {
    gap: 3rem;
    align-items: center;
  }

  .contact {
    gap: 3rem;
    align-items: center;
  }

  .localization {
    align-items: center;
    flex-direction: column-reverse;
  }

  .localization div {
    max-width: 400px;
  }

  .localization div p {
    display: inline;
  }

  .localization div h3 {
    text-align: center;
  }

  .biggest-width section {
    margin: 0 auto;
  }

  #message .content .message-title h2 {
    font-size: 2.7rem;
  }

  #message > .content {
    flex-direction: column;
    width: 100%;
    justify-content: space-around;
    padding: 0;
  }

  #message {
    flex-direction: column;
  }

  form input {
    width: 100%;
  }

  .picture-us img {
    /* width: 170px; */
  }

}

@media only screen and (max-width: 600px) {

  .picture-us {
    flex-direction: column;
    align-items: center;
  }

  .picture-us img {
    width: 100;
  }

  @supports (-webkit-overflow-scrolling: touch) {
    #home, #message {
      background-attachment: scroll;
    }
  }
}

@media only screen and (max-width: 500px) {
  footer {
   line-height: 1.6rem;
  }

  footer p span {
    font-size: 1.4rem;
  }

  .banner-title-right, .banner-title-left {
    width: 71%;
  }

  .banner-title-right > h2 {
    margin-right: 3rem;
  }

  .banner-title-left > h2 {
    margin-left: 3rem;
  }
  
}

@media only screen and (max-width: 420px) {

  .banner-title-right, .banner-title-left {
    width: 75%;
  }

  .comment-email {
    width: 30rem;
  }
  
}

@media only screen and (max-width: 390px) {
  .biggest-width {
    padding: 6rem 0.5rem;
  }

}

