/*
- Font sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

- Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
*/

/******************/
/* HEADER STYLES  */
/******************/

.header {
  position: relative;
  color: var(--yellow-3);
  font-size: 1.8rem;
  font-weight: 500;
  background-color: var(--green-1);
  height: 8rem;
  padding: 0 4.8rem;
}
.logo {
  height: 80%;
  width: auto;
}
.nav-list {
  gap: 3.6rem;
}

/* MOBILE */
.btn-mobile-nav {
  background: none;
  border: none;
  display: none;
  cursor: pointer;
}
.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: var(--yellow-3);
}
.icon-mobile-nav[name='close-outline'] {
  display: none;
}

/* STICKY */
.sticky .header {
  position: fixed;
  background-color: var(--green-1-transparent-sticky);
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
  padding-top: 0;
  padding-bottom: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 6.4rem;
  z-index: 9999;
}
.sticky .section-hero {
  margin-top: 8rem;
}

/*****************/
/* SECTION HERO  */
/*****************/

.section-hero {
  font-size: 2.4rem;
  background-image: linear-gradient(to bottom, #f2eec0, #f2eec099), url(../img/IMG\ -\ Business\ strategy\ by\ fauxels.webp);
  background-size: cover;
  background-position: center;
  height: 80rem;
}
.hero-content {
  max-width: 70%;
  margin-bottom: 2.4rem;
}

/*********************/
/* SECTION SERVICES  */
/*********************/

.section-marketing {
  background-color: var(--green-2);
}
.section-services .flex {
  gap: 8rem;
}
.section-marketing .services-title-box h2,
.section-marketing .services-title-description {
  color: var(--yellow-3);
}
.section-marketing .services-title-box .subtitle {
  color: var(--yellow-1);
}

.section-marketing .services-odd,
.section-marketing .services-even {
  background-color: var(--yellow-3);
  box-shadow: 0 2.4rem 4.8rem var(--green-1-transparent);
}
.grid--services {
  border-radius: var(--border-radius);
  grid-template-columns: 1fr 2fr;
  max-height: 32rem;
  overflow: hidden;
}
.services-even.grid--services {
  grid-template-columns: 2fr 1fr;
}
.services-img {
  height: auto;
  /* max-height: 48rem; */
  width: 100%;
  /* width: auto; */
}
.services-content {
  padding: 3.2rem 3.2rem;
}

.section-ba {
  background-color: var(--yellow-3);
}
.section-ba .services-odd,
.section-ba .services-even {
  background-color: var(--green-2);
  box-shadow: 0 2.4rem 4.8rem var(--green-1-transparent);
}
.section-ba .services-content h3,
.section-ba .services-content p {
  color: var(--yellow-3);
}
.section-ba .services-content .subtitle {
  color: var(--yellow-1);
}

/******************/
/* SECTION ABOUT  */
/******************/

/********************/
/* SECTION CONTACT  */
/********************/

.section-contact {
  /* background-image: linear-gradient(to bottom, #b7b16799, #b7b16760), url(../img/BG\ -\ paperboard-texture.jpg); */
  background-color: var(--yellow-2);
  background-size: cover;
  background-position: center;
}

.cf-box {
  color: var(--yellow-3);
  /* background-image: linear-gradient(to right bottom, var(--green-2), var(--yellow-1)); */
  background-color: var(--green-2);
  border-radius: var(--border-radius);
  box-shadow: 0 2.4rem 4.8rem var(--green-1-transparent);
  display: grid;
  grid-template-columns: 2fr 1fr;
  overflow: hidden;
}
.cf-box *:focus {
  outline: none;
  box-shadow: 0 0 0 0.5rem var(--green-1-transparent);
}
.cf-text-col {
  color: var(--yellow-3);
  padding: 4.8rem 6.4rem 6.4rem 6.4rem;
}
.contact-content {
  margin-bottom: 4.8rem;
}

.contact-form {
  /* background-color: var(--green-2); */
  border-radius: var(--border-radius);
  display: grid;
  row-gap: 3.2rem;
}
.cf-label {
  font-weight: 500;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.2rem;
}
.contact-form input,
.contact-form textarea {
  color: var(--green-2);
  font-size: 1.8rem;
  font-family: inherit;
  background-color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  box-shadow: 0 1px 3px var(--green-1);
  width: 100%;
  padding: 1.2rem;
}
.contact-form input::placeholder {
  color: var(--light-grey);
}
.cf-fieldset {
  border-style: none;
}
.cf-fieldset input {
  width: auto;
}
.cf-fieldset .flex {
  justify-content: flex-start;
  /* gap: 1.6rem; */
}

.cf-img-col {
  background-image: linear-gradient(to right bottom, #20221760, #20221799), url('../img/IMG\ -\ Bamboo\ forest.webp');
  background-size: cover;
  background-position: center;
}

/**********/
/* FOOTER */
/**********/

.footer {
  color: var(--white);
  background-color: var(--black);
  padding: 3.2rem 2.4rem;
}
.flex--footer {
  display: flex;
  align-items: flex-start;
}
.flex--footer,
.footer .flex {
  justify-content: flex-start;
  gap: 6.4rem;
}
.logo-col .flex,
.contacts .flex {
  gap: 1.2rem;
}
.footer-logo .logo {
  height: 100%;
  max-height: 8rem;
  /* margin-bottom: 3.2rem; */
}

.socials-list {
  margin-top: 1.6rem;
}
.socials-icon {
  color: inherit;
  width: 24px;
  height: 24px;
}
.socials-list a.facebook {
  color: #1877f2;
}
.socials-list a.facebook:hover {
  color: #3b5998;
}
.socials-list a.instagram {
  color: #c32aa3;
}
.socials-list a.instagram:hover {
  color: #7232bd;
}
.socials-list a.google {
  color: #ea4335;
}
.socials-list a.google:hover {
  /* color: #34a853; */
  filter: brightness(0.6);
}

.heading-footer {
  /* color: var(--yellow-1); */
  color: var(--yellow-3);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1.6rem;
}
.contacts {
  font-style: normal;
}

.footer-link:link,
.footer-link:visited {
  color: inherit;
  text-decoration: none;
  font-size: 1.6rem;
  transition: all 0.3s;
}
.footer-link:hover,
.footer-active {
  color: var(--yellow-3);
}
