/* colors #D5966C 
    #151515 
    #444444
    #fff
  **************/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  /* 16/10 = 62.5 */
  font-size: 62.5%;
}
body {
  font-family: "Big Shoulders Display", cursive;
  font-family: "Outfit", sans-serif;
  /* width: 100%;
  height: 100vh; */
  background: #fcfaf9;
}
main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12rem;
  margin-bottom: 12rem;
}
.padding {
  padding: 0 16px;
}
.margo {
  margin-bottom: 2rem;
}

/* *********/
/* HEADER */
/* *********/
header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3.2rem;
}
.desktop{
  display: none;
}
.black-box{
  display: none;
}
header .img-box {
  width: 100%;
}
header img {
  width: 100%;
}
.tablet {
  display: none;
}
header .text-box {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
header h1 {
  font-family: "Big Shoulders Display";
  font-style: normal;
  font-weight: 900;
  font-size: 6rem;
  line-height: 92%;
  text-transform: uppercase;
  color: #151515;
  padding: 0 16px;
}
p {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 156%;
  color: #444444;
}
/* *********/
/* NAVIGATION */
/* *********/
nav {
  display: flex;
}
.text-link {
  font-family: "Big Shoulders Display";
  font-style: normal;
  font-weight: 800;
  font-size: 2rem;
  line-height: 2.4rem;
  letter-spacing: 0.363636rem;
  color: #ffffff;
  padding: 2.4rem 3.2rem;
  background: #151515;
  display: inline-block;
  text-decoration: none;
  flex-shrink: 0;
}
nav img {
  box-sizing: content-box;
  /* border: 1px solid #ffffff; */
  background: #d5966c;
  padding: 2.4rem;
  width: 0.8rem;
  height: 2.4rem;
  display: block;
}
/* *********/
/* Section */
/* *********/
section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: space-between;
}
section img {
  width: 100%;
}
section .text-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}
h2 {
  font-family: "Big Shoulders Display";
  font-style: normal;
  font-weight: 900;
  font-size: 5rem;
  line-height: 90%;
  text-transform: uppercase;
  color: #151515;
}
.temp-flex-future-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.text-box-second-variation {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: 4.8rem 2.4rem;
  background: #151515;
}
.text-box-second-variation h2,
.text-box-second-variation p {
  color: #ffffff;
}
/* *********/
/* Footer */
/* *********/
footer {
  width: 100%;
  padding: 4.8rem 3.2rem;
  background: #151515;
  display: flex;
  flex-direction: column;
  gap: 3.8rem;
  justify-content: space-between;
}
.brand-logo-light {
  width: 11.005rem;
  height: 4rem;
}
footer p {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 162%;
  color: #ffffff;
}
.logos {
  display: flex;
  gap: 2rem;
  justify-content: flex-start;
}
@media screen and (min-width: 768px) {
  header .text-box {
    gap: 4.8rem;
    width: 44%;
    left: 45.7%;
    top: 323px;
    position: absolute;
    width: 33.9rem;
    height: 41rem;
    box-sizing: content-box;
  }
  
  .padding {
    padding: 0 4rem;
  }
  header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 3.2rem;
  }
  header .img-box {
    width: 57%;
    max-height: 70rem;
  }
  header img {
    max-height: 70rem;
  }
  header h1 {
    font-size: 7rem;
    line-height: 93%;
    position: absolute;
    top: 145px;
    left: 48.7%;
  }
  .mobile {
    display: none;
  }
  .tablet {
    display: block;
  }
  .flexbox {
    display: flex;
    gap: 6.8rem;
  }
  .flexbox .text-box {
    order: -1;
    width: 22.3rem;
    height: 29.9rem;
    flex-shrink: 0;
    margin-top: 3.6rem;
  }
  .flexbox .tablet {
    max-width: 100%;
    max-height: 40rem;
  }
  .temp-flex-future-grid {
    display: grid;
    grid-template-columns: 1.43fr 1fr;
    grid-template-rows: 1fr 1.27fr;
    gap: 1.1rem;
  }
  .main-img {
    grid-row: 1/3;
  }
  .text-box-second-variation {
    padding: 85px 29px;
    gap: 0;
    justify-content: space-around;
  }
  footer {
    padding: 5.6rem 4rem;
    flex-direction: row;
    gap: 10rem;
  }
  .logos img {
    width: 20px;
    height: 20px;
  }
}
@media screen and (min-width: 1440px) {
  .black-box{
    display: block;
    position: absolute;
    background: #151515;
    width: 31.25%;
    height: 80rem;
  }
  .tablet{
    display: none;
  }
  .desktop{
    display: block;
  }
  header .desktop{
    transform: translate(45rem);
    object-fit: fill;
  }
  header img{
    max-height: 80rem;
  }
  header .img-box{
    max-width: 37.5%;
  }
  header h1{
    font-size: 9.6rem;
    line-height: 92%;
    position: absolute;
    top: 189px;
    left: 164px;
    background-image: linear-gradient(90deg,white 286.5px, #151515 286.5px);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    padding: 0;
  }
   p{
    font-size: 2.2rem;
    line-height: 145%;
  }
  header .text-box{
    gap: 6.4rem;
    top: 190px;
    left: 61.5%;
  }
  main{
    gap: 28rem;
    margin-bottom: 18rem;
  }
  section{
    padding-inline: 16.5rem !important;
    gap: 3rem;
  }
  h2 {
    font-size: 6rem;
    line-height: 100%;
  }
  .flexbox .text-box {
    width: 35rem;
    margin-top: 6rem;
  }
  .temp-br{
    display: none;
  }
  .flexbox{
    gap: 12.5rem;
  }
  .temp-flex-future-grid {
    gap: 3rem;
    grid-template-rows: 1fr 1.18fr;
  }
  .text-box-second-variation{
    padding: 6.4rem 4.8rem;
  }
  footer{
    padding: 8rem 16.5rem;
    gap: 20rem;
  }
  footer p{
    flex-basis: 30%;
    margin-right: 140px;
  }
  nav:hover {
    cursor: pointer;
  }
  nav:hover .icon-arrow-right {
    background: #151515;
    transition: 1s;
  }
  nav:hover .text-link {
    background: #d5966c;
    transition: 1s;
  }
  nav{
    width: 79%;
  }
  svg:hover {
    cursor: pointer;
  }
  svg:hover path {
    cursor: pointer;
    fill: #d5966c;
    transition: 0.6s;
  }
}