:focus 
{
  outline: none;
  box-shadow: none;
}

::selection 
{
  color: #04221C;
  background-color: #EFB834;
}

body
{
  font-family: 'Tiktok', sans-serif;
  font-weight: 400;
  background-color: #04221C;
  color: #9CC9BA;
  font-size: 15px;
  margin: 0;
}

nav.desktop
{
  color: #fff;
  font-size: 1.1em;
  display: flex;
  justify-content: end;
  gap: 24px;
  position: relative;
  max-width: 1640px;
  margin: auto;
  margin-top: -320px;
  padding: 40px 32px;
  box-sizing: border-box;
}

nav.mobile
{
  color: #fff;
  font-size: 1.1em;
  display: none;
  gap: 16px;
  margin: 32px 0;
}

nav a
{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  background-color: transparent;
  border: 3px solid #EFB834;
  border-radius: 46px;
  box-sizing: border-box;
}

nav a:not(.icon)
{
  padding: 0 4%;
}

nav a.icon
{
  height: 64px;
  width: 64px;
  background-color: #EFB834;
}

nav a:hover
{
  background-color: #399375;
  border-color: #399375;
}

footer
{
  text-align: center;
  font-size: 1.5em;
  padding-bottom: 7%;
}

p
{
  font-size: 2em;
}

.highlight
{
  color: #EFB834;
}

h1,h3,h4
{
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
}

h1
{
  color: #EFB834;
  font-size: 6em;
  margin-top: 4rem;
  margin-bottom: 0.5rem;
}

h2
{
  color: #9CC9BA;
  font-family: 'Tiktok', sans-serif;
  font-weight: 400;
  font-size: 1.75em;
  margin-bottom: 0;
}

h3
{
  color: #fff;
  font-size: 4em;
  margin-top: 0.5rem;
}

h4
{
  color: #EFB834;
  font-size: 2em;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

a
{
  font-family: 'Archivo', sans-serif;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s;
}

.banner
{
  background: url("../img/banner.png") no-repeat fixed top center;
  background-size: contain;
  height: 480px;
}

.container
{
  max-width: 1640px;
  margin: auto;
  background-color: #04221C;
  border-radius: 32px 32px 0px 0px;
  box-sizing: border-box;
  background-image: repeating-linear-gradient(
    to right, /* Direction of the gradient (vertical lines) */
    #062F28, /* Color of the line */
    #062F28 2px, /* Line thickness */
    transparent 0px, /* Start of transparent space */
    transparent 9.99% /* End of transparent space (defines spacing) */
  );
}

.intro
{
  display:inline-block;
  margin-top: -100px;
  padding: 0 7%;
}

.intro p
{
  color: #fff;
}

.divider
{
  display: block;
  border-top: 2px solid #ffffff;
  margin-top:72px;
}

.clients
{
  margin-top: 10%;
  padding: 0 7%;
}

.logos
{
  display: grid;
  gap: 72px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-items: center;
  align-items: center;
  margin-top: 96px;
  margin-bottom: 96px;
}

.logos .logo
{
  padding: 5% 0;
}

.logos .logo img
{
  max-width: 100%;
}

.resume
{
  margin-top: 10%;
}

.resume .row-title
{
  padding: 0 7%;
}

.resume .timelines
{
  background-color: #052922;
  padding: 7%;
}

.timelines
{
  display: grid;
  gap: 64px;
  grid-template-rows: 1fr 1fr;
  grid-auto-flow: column;
  justify-items: left;
  align-items: center;
}

.timelines .timeline
{
  padding: 0;
}

.timeline .icon
{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #EFB834;
  border-radius: 50%;
  height: 56px;
  width: 56px;
  box-sizing: border-box;
  transition: background-color 0.25s;
}

.timeline .year
{
  color: #fff;
  font-size: 1.5em;
  margin-bottom: 0.5rem;
}

.timeline .role
{
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1.5em;
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.timeline .details
{
  font-size: 1.3em;
  color: #B5D7CC;
}

.timeline:hover .icon
{
  background-color: #399375;
}

.timeline h4
{
  transition: color 0.25s;
}

.timeline:hover h4
{
  color: #399375;
}

.hand
{
  margin-top: 5%;
  margin-bottom: 3%;
}

.hand img
{
  margin: auto;
  display: block;
}

footer div
{
  margin-bottom: 1%;
}

footer a
{
  color: #EFB834;
  margin: 0 10px;
}

footer a:hover
{
  opacity: 0.8;
}

@media (max-width: 1800px)
{
  h1
  {
    margin-top: 2.5rem;
  }
  nav.desktop,
  .container
  {
    max-width: 90%;
  }

  nav.desktop
  {
    margin-top: -400px;
  }

  nav a:not(.icon)
  {
    padding: 0 6%;
  }

  .container
  {
    background-image: repeating-linear-gradient(
    to right, /* Direction of the gradient (vertical lines) */
    #062F28, /* Color of the line */
    #062F28 2px, /* Line thickness */
    transparent 0px, /* Start of transparent space */
    transparent 12.48% /* End of transparent space (defines spacing) */
    );
  }

  .banner
  {
    background-size: 130%;
  }

  .clients
  {
    margin-top: 6%;
  }

}

@media (max-width: 1400px)
{
  body
  {
    font-size: 14px;
  }
}

@media (max-width: 992px)
{
  h1
  {
    margin-top: 2.5rem;
    font-size: 5.25em;
  }

  h3
  {
    font-size: 3em;
  }

  p 
  {
    font-size: 1.75em;
  }

  nav.desktop,
  .container
  {
   max-width: 95%;
  }

  nav a:not(.icon)
  {
    padding: 0 8%;
  }

  
  .intro img
  {
    max-width: 140px;
  }

  .container
  {
    background-image: repeating-linear-gradient(
    to right, /* Direction of the gradient (vertical lines) */
    #062F28, /* Color of the line */
    #062F28 2px, /* Line thickness */
    transparent 0px, /* Start of transparent space */
    transparent 19.95% /* End of transparent space (defines spacing) */
    );
  }

  .banner
  {
    background-position: 40% 0px;
    background-size: 200%;
  }

  .logos
  {
    gap: 32px;
    grid-template-columns: 1fr 1fr 1fr; 
    margin-top: 48px;
    margin-bottom: 32px;
  }

  .logos .logo
  {
    padding: 8%;
  }

  .timelines
  {
    gap: 48px;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
  }

  .hand img 
  {
    max-width: 60%;
  }

}

@media (max-width: 700px)
{
  
  .banner
  {
    background-size: 300%;
  }
  
  .intro
  {
    margin-top: -80px;
  }

  .intro img
  {
    max-width: 120px;
  }
  
  nav.desktop
  {
    opacity: 0;
  }

  nav.mobile
  {
    display: flex;
  }

  h1
  {
    margin-top: 2rem;
    font-size: 5em;
  }

  h3
  {
    font-size: 2.5em;
  }

  p 
  {
    font-size: 1.5em;
  }

  .container
  {
    max-width: 100%;
  }

  .clients
  {
    margin-top: 15%;
  }

  .logos
  {
    gap: 48px;
    grid-template-columns: 1fr 1fr;
    margin-top: 0;
    margin-bottom: 0;
  }

  .logos .logo
  {
    padding: 4%;
  }

  .logos .logo img 
  {
    max-height: 110px;
  }

  .resume 
  {
    margin-top: 22%;
  }
  
  .resume .timelines
  {
    gap: 32px;
    grid-template-columns: 1fr;
    padding: 8% 7%;
  }
  .hand 
  {
    margin-top: 10%;
  }

  .hand img 
  {
    max-width: 60%;
  }

  footer
  {
    font-size: 1.3em;
    padding: 7%;
    padding-bottom: 15%;
  }

  footer a
  {
    display: inline-block;
    margin-top: 5%;
  }

}