body {
  background:#1F1F1F;
  color:#fff;
  padding:0;
  margin:0;
  font-family: 'Libre Franklin', sans-serif;
}

a {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.container{
  display: grid;
  grid-template-columns: 1fr 2fr 6fr 7fr 8fr 10fr 1fr;
  width: 100vw;
  height: 100vh;
}


@media (min-width: 320px) and (max-width: 480px) {
  .container {
    grid-template-columns: 2fr 2fr 6fr 7fr 8fr 10fr 2fr;
  }
}

.logo {
  display:block;
  position: relative;;
  grid-column: 2;
  grid-row: 2;
}

.logo svg {
  width:48px;
  background:#fff;
  padding:10px 20px;
}

@media (min-width: 320px) and (max-width: 480px) {
  .logo svg {
    width:24px;
    display: block;
    height: auto;
    padding:20px 15px;
  }
}

.line {
  width:1px;
  background:rgba(255, 255, 255, 0.25);
  height:100%;
  grid-column: 2;
  grid-row: 6;
}

.content-block {
  grid-column: 3 / span 4;
  grid-row: 6 / span 1;
}


@media (min-width: 1781px) {
  .content-block {
    grid-column: 3 / span 3;
    padding-right:100px;
  }
}

@media (min-width: 1401px) and (max-width: 1780px) {
  .content-block {
    grid-column: 3 / span 4;
    padding-right:100px;
  }
}

@media (min-width: 1281px) and (max-width: 1400px){
  .content-block {
    grid-column: 3 / span 4;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .content-block {
    grid-column: 3 / span 3;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .content-block {
    grid-column: 2 / span 5;
    grid-row: 6 / span 1;
    padding-left: 75px;
  }
}

@media (min-width: 320px) and (max-width: 480px) {
  .content-block {
    grid-column: 2 / span 5;
    grid-row: 6 / span 1;
    padding-left: 25px;
  }
}

.content-block__name {
  font-size:20px;
  text-transform: uppercase;
  margin:0;
  font-weight:200;
  opacity: 0.85;
}

@media (min-width: 1281px) {
  .content-block__name {
    font-size:36px;
  }
}

.content-block__title {
  margin: 20px 0 100px 0;
  font-family: ten-oldstyle, serif;
  font-style: normal;
  font-weight: 700;
  font-size:96px;
  line-height: 96px;

}

@media (min-width: 1281px) {
  .content-block__title {
    font-size:140px;
    line-height:9rem;
  }
}

@media (min-width: 320px) and (max-width: 480px) {
  .content-block__title {
    font-size: 76px;
    line-height: 76px;
    margin: 20px 0 60px 0;
  }
}


.content-block__social {
  margin:0;
  padding:0;
}

.content-block__social li {
  display:inline-block;
  margin-right:15px;
}

@media (min-width: 320px) and (max-width: 480px) {
  .content-block__social li {
    display:block;
    margin-bottom:10px;
  }
}

.content-block__social li a {
  font-size:12px;
  color:#657584;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
}

.content-block__social li a:hover {
  background:#2260FB;
  color:#fff;
}

@media (min-width: 320px) and (max-width: 480px) {
  .content-block__social li a {
    font-size:18px;
  }
}

.content-image{
  display:block;
  position: relative;
  grid-column: 5 / span 2;
  grid-row: 1 / span 6;
  z-index: -1;
  background: url(../images/action-shot.png);
  background-size: cover;
  background-position: center;
}


@media (min-width: 481px) and (max-width: 767px) {
  .content-image{
    background-position: 425px;
  }
}

@media (min-width: 320px) and (max-width: 480px) {
  .content-image{
    grid-column: 4 / span 3;
    background-position: 400px;
  }
}

.content-image:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(-203deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.45) 100%);
  z-index: 1;
}





/*
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@media (min-width: 1281px) {


}

/*
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

@media (min-width: 1025px) and (max-width: 1280px) {


}

/*
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {


}

/*
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {


}

/*
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {


}

/*
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {


}
