
/* Global styles*/

* {
    font-family: brandon-grotesque-1, brandon-grotesque-2,sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    font-weight: 400;
}  

body {
    margin: 0 auto;  
    background: #ffffff;  
}

h1,
h2,
h3  {
    font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif; 
    font-weight: 400;
    font-style: normal;
}

h1 {
    font-size: 2.5em;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
}

h4 {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    margin: 0;
    color: #B7B8BC;
}



.description {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    width: 100%;
    margin: 0;
    padding: 30px 30px;
}

section.projects,
section.contacts {
    max-width: 100%;
    margin: 100px auto;
    padding: 0 20px;
}

nav,
header {
    background-color:#fff;
}

.icons {
    background: #1A1C25;
    min-width: none;
    padding: 25px 25px;
}
footer {
    background-color:#fff;
}
/* Navigation */

nav {
    height: 80px;
    position: fixed;    
    width: 100%;
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.9); 
}

img.logo {
    height: 60px;
    margin: 10px 0;
    margin-left: 30px;
}

nav .links {
    margin: 0 30px;
    display: flex;
    align-items: center;
}

nav a:hover {
    color: #7bb026; 
}

nav a {
    margin: 15px;
}

nav button {
    background-color: #7bb026;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 1px;
    font-weight: 400;
    margin-left: 20px;
}
nav button:hover {
    background-color: #313945;
}

.burgermenu {
    margin: auto;
    margin-left: 10px;
    display: none;    
}

.burgermenu img {
    height: 30px;
    width: 40px;
    padding: 10px 5px;
    transition: all ease-out .15s;
}


/* Header */

.hero {
    /* Sizing */
    width: 100vw;
    height: 150vh;
    /* Flexbox stuff */
    display: flex;
    justify-content:start;
    align-items: center;
    /* Text styles */
    
    color: white;
    /* Background styles */
    background-image: linear-gradient(rgba(0, 0, 0, 0.3),rgba(0, 0, 0, 0.3)), url("../images/hero.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}


.hero h1 {
    /* Text styles */
    font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif; 
    font-size: 3rem;
    word-break: normal;
    /* Margins */
    max-width: 60%;
    margin: 60px;
    line-height: 1.1em;
}
.paragraph-lg {
    max-width: 50%;
    word-break: normal;
    margin: 10px 10px 60px 60px;
    padding-left: 0;
    font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif; 
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.3em;    
}
.hero .btn {
    background-color: #7bb026;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 1px;
    font-weight: 400;
    margin: 5px 10px 60px 60px;
    text-decoration: none;
}

.btn:hover {
    background-color: #ec6842;
}


/* Projects */

.process {
    position:relative;
}

.process .process__item {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 1.5em;
    padding: 1.5em 0;
    border: 2px solid #ccc;
    background-image: url(../images/pattern-dots.png);
    background-color: #f0f0f0;
    text-align:center;
}

.process .process__item:after {
    content: attr(data-name);
    position: absolute;
    right: -130px;
    top: 50%;
    width: 200px;
    -webkit-transform: translateY(-50%) rotate(-90deg);
    -moz-transform: translateY(-50%) rotate(-90deg);
    -ms-transform: translateY(-50%) rotate(-90deg);
    transform: translateY(-50%) rotate(-90deg);
    font-weight: 500;
    font-size: 16px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}

@media only screen and (max-width: 30em) {
    .process .process__item:after {
        display:none
    }
}

.process .process__area {
    position: relative;
    padding:3em 0
}

.process .process__label {
    position: relative;
    display: inline-block;
    width: 180px;
    padding: .5em 1em;
    border-radius: 4px;
    color: #fff;
    font-weight: 500;
    letter-spacing: .05em;
    background-color: #313945;
    font-size: 18px;
    font-size: 1rem;
    z-index: 10;
    -moz-transition: .3s ease;
    transition:.3s ease
}

.process .process__label.is-active {
    background-color: #ec6842;
    color:#fff
}

.process .process__label.is-active.process__label--dot:after, .process .process__label.is-active.process__label--dot:before {
    background-color:#ec6842
}

.process .process__label.is-active ~ .process__desc {
    color:#333
}

.process .process__label--ghost {
    color: #ec6842;
    font-weight: 400;
    background-color:#f0f0f0
}

.process .process__label--dot:before {
    content: "";
    position: absolute;
    top: 50%;
    width: 160px;
    height: 1px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color:#313945;
}

@media only screen and (max-width: 64em) {
    .process .process__label--dot:before {
        width:130px;
    }
}

@media only screen and (max-width: 48em) {
    .process .process__label--dot:before {
        display:none;
    }
}

.process .process__label--dot:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 16px;
    height: 16px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 100%;
    background-color:#313945;
}

@media only screen and (max-width: 48em) {
    .process .process__label--dot:after {
        display:none
    }
}

.process .process__label--dot-left:before {
    left:-160px
}

@media only screen and (max-width: 64em) {
    .process .process__label--dot-left:before {
        left:-130px
    }
}

.process .process__label--dot-left:after {
    left:-160px
}

@media only screen and (max-width: 64em) {
    .process .process__label--dot-left:after {
        left:-130px
    }
}

.process .process__label--dot-right:before {
    right:-160px;
}

@media only screen and (max-width: 64em) {
    .process .process__label--dot-right:before {
        right:-130px
    }
}

.process .process__label--dot-right:after {
    right:-160px
}

@media only screen and (max-width: 64em) {
    .process .process__label--dot-right:after {
        right:-130px
    }
}

.process .process__desc {
    position: absolute;
    width: 260px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 18px;
    font-size: 1.125rem;
    color:#999
}

@media only screen and (max-width: 48em) {
    .process .process__desc {
        display: block;
        position: relative;
        width: auto;
        top: 0;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        margin: .75em;
        padding: .75em;
        background-color: #fff;
        z-index:5
    }
}

.process .process__desc--left {
    left: -135%;
    text-align:right
}

@media only screen and (max-width: 64em) {
    .process .process__desc--left {
        left:-115%
    }
}

@media only screen and (max-width: 48em) {
    .process .process__desc--left {
        left: 0;
        text-align:left
    }
}

.process .process__desc--right {
    right: -135%;
    text-align:left
}

@media only screen and (max-width: 64em) {
    .process .process__desc--right {
        right:-115%
    }
}

@media only screen and (max-width: 48em) {
    .process .process__desc--right {
        right:0
    }
}

.process .process__line {
    position: absolute;
    left: 50%;
    top: -2.25em;
    height: 105%;
    width: 3px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #ec6842;
    z-index:5
}

@media only screen and (max-width: 48em) {
    .process .process__line {
        height:104%
    }
}

.process-steps {
    position:relative
}

.process-steps .process-steps__item {
    position: relative;
    margin-bottom:1.5em
}

.process-steps .process-steps__item--1 .process-steps__content {
    padding-left:40%
}

@media only screen and (max-width: 48em) {
    .process-steps .process-steps__item--1 .process-steps__content {
        padding-left:5%
    }
}

@media only screen and (max-width: 37.5em) {
    .process-steps .process-steps__item--1 .process-steps__content {
        padding-left:0
    }
}

.process-steps .process-steps__item--2 .process-steps__content {
    padding-left:25%
}

@media only screen and (max-width: 48em) {
    .process-steps .process-steps__item--2 .process-steps__content {
        padding-left:5%
    }
}

@media only screen and (max-width: 37.5em) {
    .process-steps .process-steps__item--2 .process-steps__content {
        padding-left:0
    }
}

.process-steps .process-steps__item--3 .process-steps__content {
    padding-left:10%
}

@media only screen and (max-width: 48em) {
    .process-steps .process-steps__item--3 .process-steps__content {
        padding-left:5%
    }
}

@media only screen and (max-width: 37.5em) {
    .process-steps .process-steps__item--3 .process-steps__content {
        padding-left:0
    }
}

.process-steps .process-steps__title {
    position: relative;
    border: 2px solid #ccc;
    background-image: url(../images/pattern-dots.png);
    background-color:#f0f0f0
}

@media only screen and (max-width: 37.5em) {
    .process-steps .process-steps__title {
        padding:3em
    }
}

.process-steps .process-steps__title .process-steps__headline {
    display: block;
    font-weight: 500;
    font-size: 18px;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing:.05em
}

.process-steps .process-steps__content {
    border-bottom:1px dashed #ccc
}

@media only screen and (max-width: 37.5em) {
    .process-steps .process-steps__content {
        background-color:#f0f0f0
    }
}

.process-steps .process-steps__content .process-steps__text {
    width: 100%;
    max-width: 360px;
    margin: 0;
    padding: 3em 0;
    font-size: 14px;
    font-size:.875rem
}

@media only screen and (max-width: 37.5em) {
    .process-steps .process-steps__content .process-steps__text {
        max-width: 100%;
        padding:1.5em
    }
}




/* Team */
.container-brands {
    max-width: 1200px;
    margin: 0 auto;
}
.brands {
    
   padding: 75px 0px 75px 0px;
}
.brands h2 {
    font-weight: 400;
    padding-left: 10px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.light-gy {
    font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif; 
    font-size: .75em;
    font-weight: 600;
    color:rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 10px;
    margin-bottom: 10px;
}

.paragraph-gy {
    font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif; 
    font-size: 1.4em;
    font-weight: 400;
    color: #777;
    margin-left: 10px;
    margin-top: 0px;
    margin-bottom: 40px;

}
.oomph {
    font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif; 
    font-size: 1.025em;
    font-weight: 400;
    font-style: italic;
}

ul.clients {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 1270px;
    margin: 120px 0 80px 0;
    flex-shrink: 0;
    }
ol, ul {
    list-style: none;
    }  
ul.clients li {
    display: flex;
    width: 140px;
    height: 80px;
    background: url("/assets/images/placeholder-client-icon.svg") no-repeat center center;
    background-size: contain;
    margin: 0 40px 40px 20px;
    } 

/* Contacts */

section.contacts {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contacts img {
    width: 280px;
    height: auto;
    flex-grow: 2;
}

.contacts .content {
    width: 280px;
    padding-right: 40px;
    margin: 20px 0;
    flex-grow: 1;
}


/* Copyright */

.container {
    max-width: 1440px;
    margin: 0 auto;
  }
  
  
  .footer {
    background-color: #313740;
    color: #ccc;
    padding: 2.5rem;
    text-align: center;
  }
  @media (min-width: 64em) {
    .footer .container {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      grid-template-rows: 1fr auto;
      grid-template-areas: "logo links1 links2 cta" "social links1 links2 copyright";
      gap: 1rem;
      justify-items: start;
      }
  }
  .footer a {
    color: #ccc;
  }
  .footer__logo {
    display: inline-block;
    
  }
  @media (max-width: 63.9375em) {
    .footer__logo {
      margin-bottom: 1.875rem;
    }
  }
  @media (min-width: 64em) {
    .footer__logo {
      grid-area: logo;
    }
  }
  @media (max-width: 63.9375em) {
    .footer__social {
      margin-bottom: 1.875rem;
    }
  }
  @media (min-width: 64em) {
    .footer__social {
      grid-area: social;
      align-self: end;
    }
  }
  .footer__social a {
    display: inline-block;
    height: 1.25rem;
  }
  .footer__social a svg path {
    transition: fill 150ms ease-in-out;
  }
  .footer__social a:hover svg path {
    fill: #969494;
  }
  .footer__social a:not(:last-child) {
    margin-right: 1rem;
  }
  .footer__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.9375rem;
  }
  
  @media (min-width: 64em) {
    .footer__links {
      justify-content: space-between;
      align-items: start;
    }
  }
  @media (min-width: 64em) {
    .footer__links.col1 {
      grid-area: links1;
    }
  }
  @media (max-width: 63.9375em) {
    .footer__links.col2 {
      margin-bottom: 1.875rem;
    }
  }
  @media (min-width: 64em) {
    .footer__links.col2 {
      grid-area: links2;
    }
  }
  .footer__links.col1 {
     text-decoration: none;  
  }
  .footer__links a {
    line-height: 1.5;
    transition: color 150ms ease-in-out;
    color: #ccc;
    text-decoration: none;
  }
  .footer__links a:hover {
    color: rgba(23, 23, 23, 0.3);
  }
  @media (min-width: 64em) {
    .footer__cta {
      grid-area: cta;
      text-align: right;
      justify-self: end;
    }
    .footer__cta .button {
      background-color: #313945;
      color: white;
      padding: 8px 16px;
      border: none;
      border-radius: 5px;
      font-weight: 400;
      margin-left: 20px;
      text-decoration: none;
  }
  .footer__cta .button:hover {
      background-color: rgba(49,57,69,0.2);
      color:#313945;
      
  }  
  }
  @media (max-width: 63.9375em) {
    .footer__cta a.button {
      margin-bottom: 1.875rem;
    }
  }
  .footer__copyright {
    font-size: 0.8125rem;
    color: #9698a6;
  }
  @media (min-width: 64em) {
    .footer__copyright {
      grid-area: copyright;
      align-self: end;
      justify-self: end;
    }
  }
  .footer .attribution {
    margin-top: 4rem;
    font-size: 0.875rem;
    color: #9698a6;
  }
  .footer .attribution a {
    text-decoration: none;
    font-size: 0.875rem;
    color: #313945;
  }
  
  
  @media only screen and (max-width: 768px) {
      .links a {
          display: none;
      }
   
      nav .burgermenu {
          display: inline-block;
      }
      nav button {
          display: none;
      }
      .hero h1 {
          font-size: 5rem;
      }
  }


/* Media queries */

@media only screen and (max-width: 768px) {
    .links a {
        display: none;
    }

    nav .burgermenu {
        display: inline-block;
    }

    .hero h1 {
        font-size: 2em;
    }
    .paragraph-lg {
        font-size: 1em;
    }
    nav button {
        display: none;
    }

}

@media only screen and (max-width: 425px) {
    .links a {
        display: none;
    }

    nav .burgermenu {
        display: inline-block;
    }

    .hero h1 {
        display: block;
        width: 100%;
        font-size: 1em;
    }

    h2 {
        font-size: .75em;
        display:block;
    }

    nav button {
        display: none;
    }

}








