@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem); }
  80% {
    transform: translateX(1rem); }
  100% {
    opacity: 1;
    transform: translateX(0); } }

@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem); }
  80% {
    transform: translateX(-1rem); }
  100% {
    opacity: 1;
    transform: translateX(0); } }

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(10rem); }
  80% {
    transform: translateY(-1rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

@keyframes item-1 {
  0% {
    opacity: 0;
    transform: translateY(35rem); }
  10% {
    transform: translateY(24.5rem); }
  20% {
    opacity: 1;
    transform: translateY(25.5rem); }
  50% {
    opacity: 0;
    transform: translateY(25.5rem); } }

@keyframes item-2 {
  0% {
    opacity: 0;
    transform: translateY(25rem); }
  10% {
    transform: translateY(15.5rem); }
  20% {
    opacity: 1;
    transform: translateY(16.5rem); }
  50% {
    opacity: 0;
    transform: translateY(16.5rem); } }

@keyframes item-3 {
  0% {
    opacity: 0;
    transform: translateY(15rem); }
  10% {
    transform: translateY(7rem); }
  20% {
    opacity: 1;
    transform: translateY(8rem); }
  50% {
    opacity: 0;
    transform: translateY(8rem); } }

@keyframes item-4 {
  0% {
    opacity: 0;
    transform: translateY(10rem); }
  10% {
    transform: translateY(-1rem); }
  20% {
    opacity: 1;
    transform: translate(0); }
  50% {
    opacity: 0;
    transform: translate(0); } }

@-webkit-keyframes slide-left {
  0% {
    -webkit-transform: translateX(200%); }
  70% {
    -webkit-transform: translateX(2%); }
  100% {
    -webkit-transform: translateX(0); } }

@keyframes slide-left {
  0% {
    -webkit-transform: translateX(200%); }
  70% {
    -webkit-transform: translateX(2%); }
  100% {
    -webkit-transform: translateX(0); } }

/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

html {
  background-color: black;
  position: relative;
  scroll-behavior: smooth;
  font-size: 62.5%; }
  @media only screen and (max-width: 75em) {
    html {
      font-size: 56.25%; } }
  @media only screen and (max-width: 56.25em) {
    html {
      font-size: 50%; } }
  @media only screen and (min-width: 112.5em) {
    html {
      font-size: 75%; } }

body {
  box-sizing: border-box;
  z-index: 1;
  position: relative; }
  @media only screen and (max-width: 56.25em) {
    body {
      padding: 0; } }

::selection {
  background-color: #fa0404d2;
  color: #fff; }

body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  /*font-size: 16px;*/
  line-height: 1.7;
  color: #777; }

.heading-primary {
  color: #fff;
  text-transform: uppercase;
  backface-visibility: hidden;
  margin-bottom: 6rem; }
  .heading-primary--main {
    text-align: center;
    display: block;
    font-size: 10rem;
    font-weight: 400;
    letter-spacing: 2.5rem;
    animation-name: moveInLeft;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    /*
        animation-delay: 3s;
        animation-iteration-count: 3;
        */ }
    @media only screen and (max-width: 1235px) {
      .heading-primary--main {
        font-size: 9rem; } }
    @media only screen and (max-width: 1065px) {
      .heading-primary--main {
        font-size: 8rem; } }
    @media only screen and (max-width: 425px) {
      .heading-primary--main {
        font-size: 6rem; } }
    @media only screen and (max-width: 37.5em) {
      .heading-primary--main {
        letter-spacing: 1rem;
        font-family: 5rem; } }
  .heading-primary--sub {
    text-align: center;
    display: block;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1.75rem;
    animation: moveInRight 1s ease-out; }
    @media only screen and (max-width: 1065px) {
      .heading-primary--sub {
        font-size: 1.8rem; } }
    @media only screen and (max-width: 37.5em) {
      .heading-primary--sub {
        letter-spacing: .5rem; } }

.heading-secondary {
  align-items: center;
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  background-image: linear-gradient(to right, rgba(250, 4, 4, 0.8), rgba(153, 9, 9, 0.8));
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: .2rem;
  transition: all .2s; }
  @media only screen and (max-width: 56.25em) {
    .heading-secondary {
      font-size: 3rem; } }
  @media only screen and (max-width: 37.5em) {
    .heading-secondary {
      font-size: 2.5rem; } }

.heading-tertiary {
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase; }

.paragraph {
  font-size: 1.6rem; }
  .paragraph:not(:last-child) {
    margin-bottom: 3rem; }

.heading-primary-tyb {
  color: #fff;
  text-transform: uppercase;
  backface-visibility: hidden;
  margin-bottom: 6rem; }
  .heading-primary-tyb--main {
    display: block;
    font-size: 10rem;
    letter-spacing: 1rem;
    animation-name: moveInLeft;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    /*
        animation-delay: 3s;
        animation-iteration-count: 3;
        */ }
    @media only screen and (max-width: 425px) {
      .heading-primary-tyb--main {
        font-size: 6rem; } }
    @media only screen and (max-width: 37.5em) {
      .heading-primary-tyb--main {
        letter-spacing: 1rem;
        font-family: 5rem; } }
  .heading-primary-tyb--sub {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1.75rem;
    animation: moveInRight 1s ease-out; }
    @media only screen and (max-width: 37.5em) {
      .heading-primary-tyb--sub {
        letter-spacing: .5rem; } }

.heading-primary-webd {
  color: #fff;
  text-transform: uppercase;
  backface-visibility: hidden;
  margin-bottom: 6rem; }
  @media only screen and (max-width: 320px) {
    .heading-primary-webd {
      margin-bottom: 2rem; } }
  .heading-primary-webd--main {
    display: block;
    font-size: 10rem;
    letter-spacing: 1rem;
    animation-name: moveInLeft;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    /*
        animation-delay: 3s;
        animation-iteration-count: 3;
        */ }
    @media only screen and (max-width: 425px) {
      .heading-primary-webd--main {
        font-size: 6rem; } }
    @media only screen and (max-width: 37.5em) {
      .heading-primary-webd--main {
        letter-spacing: 1rem;
        font-family: 5rem; } }

.heading-primary-music {
  color: #fff;
  text-transform: uppercase;
  backface-visibility: hidden;
  width: 8rem;
  word-wrap: break-word; }
  @media only screen and (max-width: 1280px) {
    .heading-primary-music {
      width: 7rem; } }
  @media only screen and (max-width: 425px) {
    .heading-primary-music {
      width: 6rem; } }
  .heading-primary-music--main {
    display: block;
    font-size: 8rem;
    letter-spacing: 1rem;
    animation-name: moveInLeft;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    /*
        animation-delay: 3s;
        animation-iteration-count: 3;
        */ }
    @media only screen and (max-width: 1280px) {
      .heading-primary-music--main {
        font-size: 7rem; } }
    @media only screen and (max-width: 425px) {
      .heading-primary-music--main {
        font-size: 6rem; } }
    @media only screen and (max-width: 37.5em) {
      .heading-primary-music--main {
        letter-spacing: 1rem;
        font-family: 5rem; } }

.heading-primary-robotics {
  color: #fff;
  text-transform: uppercase; }
  .heading-primary-robotics--main {
    display: block;
    font-size: 16rem;
    letter-spacing: 1rem;
    animation-name: moveInLeft;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    /*
        animation-delay: 3s;
        animation-iteration-count: 3;
        */ }
    @media only screen and (max-width: 768px) {
      .heading-primary-robotics--main {
        font-size: 10rem; } }
    @media only screen and (max-width: 425px) {
      .heading-primary-robotics--main {
        font-size: 6rem; } }
    @media only screen and (max-width: 37.5em) {
      .heading-primary-robotics--main {
        letter-spacing: 1rem;
        font-family: 5rem; } }

.heading-primary-blog {
  color: #fff;
  text-transform: uppercase; }
  .heading-primary-blog--main {
    display: block;
    font-size: 13rem;
    letter-spacing: 1rem;
    animation-name: moveInLeft;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    /*
        animation-delay: 3s;
        animation-iteration-count: 3;
        */ }
    @media only screen and (max-width: 1280px) {
      .heading-primary-blog--main {
        font-size: 10rem; } }
    @media only screen and (max-width: 425px) {
      .heading-primary-blog--main {
        font-size: 6rem; } }
    @media only screen and (max-width: 37.5em) {
      .heading-primary-blog--main {
        letter-spacing: 1rem;
        font-family: 5rem; } }

span.bold {
  font-weight: 700; }

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  opacity: .15;
  overflow: hidden; }
  .bg-video__content {
    height: 100%;
    width: 100%;
    object-fit: cover; }

.btn, .btn:link, .btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.5rem 4rem;
  display: inline-block;
  border-radius: 10rem;
  transition: all .2s;
  position: relative;
  font-size: 1.6rem;
  border: none;
  cursor: pointer; }

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2); }
  .btn:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0; }

.btn:active, .btn:focus {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2); }

.btn--white {
  background-color: #fff;
  color: #777; }
  .btn--white::after {
    background-color: #fff; }

.btn--green {
  background-color: #ffffff2c;
  color: #fff; }
  .btn--green::after {
    background-color: #ffffff2c; }

.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all .4s; }

.btn--animated {
  animation: moveInBottom .5s ease-out .75s;
  animation-fill-mode: backwards; }

.btn-text:link, .btn-text:visited {
  font-size: 1.6rem;
  color: #ffffff2c;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #ffffff2c;
  padding: 3px;
  transition: all .2s; }

.btn-text:hover {
  background-color: #ffffff2c;
  color: #fff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  transform: translateY(-2px); }

.btn-text:active {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transform: translateY(0); }

.btn-cover {
  text-decoration-style: none;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.5rem 4rem;
  color: white;
  background-color: transparent;
  border: 2px solid white;
  font-size: 1.2rem; }
  @media only screen and (max-width: 320px) {
    .btn-cover {
      padding: 1rem 2rem; } }
  .btn-cover:hover {
    background-color: white;
    color: #fa0404d2;
    transition: all .3s; }

.audio.green-audio-player {
  width: 40rem;
  min-width: 30rem;
  height: 5.6rem;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 2.4rem;
  padding-right: 2.4rem;
  border-radius: 4px;
  user-select: none;
  -webkit-user-select: none;
  background-color: #fff;
  margin-bottom: 6rem; }
  @media only screen and (max-width: 900px) {
    .audio.green-audio-player {
      width: 0; } }
  @media only screen and (max-width: 425px) {
    .audio.green-audio-player {
      min-width: 25rem; } }
  .audio.green-audio-player .play-pause-btn {
    display: none;
    cursor: pointer;
    width: 1.8rem;
    height: 2.4rem; }
    @media only screen and (max-width: 425px) {
      .audio.green-audio-player .play-pause-btn {
        width: 1.4rem;
        height: 2rem; } }
  .audio.green-audio-player .spinner {
    width: 1.8rem;
    height: 1.8rem;
    background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/355309/loading.png);
    background-size: cover;
    background-repeat: no-repeat;
    animation: spin 0.4s linear infinite; }
  .audio.green-audio-player .slider {
    flex-grow: 1;
    background-color: #D8D8D8;
    cursor: pointer;
    position: relative; }
    .audio.green-audio-player .slider .progress {
      background-color: #44a6bf;
      border-radius: inherit;
      position: absolute;
      pointer-events: none; }
      .audio.green-audio-player .slider .progress .pin {
        height: 1.6rem;
        width: 1.6rem;
        border-radius: 8px;
        background-color: #44a6bf;
        position: absolute;
        pointer-events: all;
        box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.32); }
  .audio.green-audio-player .controls {
    font-family: 'Roboto', sans-serif;
    font-size: 1.6rem;
    line-height: 1.8rem;
    color: #55606E;
    display: flex;
    flex-grow: 1;
    justify-content: space-between;
    align-items: center;
    margin-left: 2.4rem;
    margin-right: 2.4rem; }
    .audio.green-audio-player .controls .slider {
      margin-left: 1.6rem;
      margin-right: 1.6rem;
      border-radius: 2px;
      height: 4px; }
      .audio.green-audio-player .controls .slider .progress {
        width: 0;
        height: 100%; }
        .audio.green-audio-player .controls .slider .progress .pin {
          right: -.8rem;
          top: -.6rem; }
    .audio.green-audio-player .controls span {
      cursor: default; }
  .audio.green-audio-player .volume {
    position: relative; }
    .audio.green-audio-player .volume .volume-btn {
      height: 2.4rem;
      width: 2.4rem;
      cursor: pointer; }
      @media only screen and (max-width: 425px) {
        .audio.green-audio-player .volume .volume-btn {
          width: 1.8rem;
          height: 1.8rem; } }
      .audio.green-audio-player .volume .volume-btn.open path {
        fill: #44a6bf; }
    .audio.green-audio-player .volume .volume-controls {
      width: 3rem;
      height: 13.5rem;
      background-color: rgba(0, 0, 0, 0.62);
      border-radius: .7rem;
      position: absolute;
      left: -3px;
      bottom: 5.2rem;
      flex-direction: column;
      align-items: center;
      display: flex; }
      .audio.green-audio-player .volume .volume-controls.hidden {
        display: none; }
      .audio.green-audio-player .volume .volume-controls .slider {
        margin-top: 1.2rem;
        margin-bottom: 1.2rem;
        width: .6rem;
        border-radius: 3px; }
        .audio.green-audio-player .volume .volume-controls .slider .progress {
          bottom: 0;
          height: 100%;
          width: .6rem; }
          .audio.green-audio-player .volume .volume-controls .slider .progress .pin {
            left: -.5rem;
            top: -.8rem; }

.contact__nav-bar {
  position: absolute;
  z-index: 1000000;
  background-color: rgba(5, 5, 5, 0.555);
  position: fixed;
  color: white;
  left: 97%;
  top: 30%;
  border-radius: 2px; }
  @media only screen and (max-width: 600px) {
    .contact__nav-bar {
      display: none; } }
  @media only screen and (max-width: 1024px) {
    .contact__nav-bar {
      left: 96%;
      top: 21%; } }
  .contact__nav-bar__icon {
    height: 2rem;
    width: 2rem;
    fill: white; }
  .contact__nav-bar__item {
    padding: 2rem 1rem; }
  .contact__nav-bar-container {
    display: flex;
    flex-direction: column;
    list-style: none;
    justify-content: center;
    animation: all .3s; }
    .contact__nav-bar-container :hover {
      background-color: white;
      transition: all .3s; }
      .contact__nav-bar-container :hover .contact__nav-bar__icon {
        fill: #fa0404d2; }

.feature-box {
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  border-radius: 3px;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  transition: transform .3s; }
  .feature-box__icon {
    font-size: 6rem;
    margin-bottom: .5rem;
    display: inline-block;
    background-image: linear-gradient(to right, #fa04041c, #0e010100);
    -webkit-background-clip: text;
    color: transparent; }
  .feature-box:hover {
    transform: translateY(-1.5rem) scale(1.03); }

.form__group:not(:last-child) {
  margin-bottom: 2rem; }

.form__input {
  font-size: 1.5rem;
  font-family: inherit;
  color: inherit;
  padding: 1.5rem 2rem;
  border-radius: 2px;
  background-color: rbga(#fff, 0.5);
  border: none;
  border-bottom: 3px solid transparent;
  width: 90%;
  display: block;
  transition: all .3s; }
  .form__input:focus {
    outline: none;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #ffffff2c; }
  .form__input:focus:invalid {
    border-bottom: 3px solid #474040; }
  .form__input::-webkit-input-placeholder {
    color: #999; }

.form__label {
  font-size: 1.2rem;
  font-weight: 700;
  margin-left: 2rem;
  margin-top: .7rem;
  display: block;
  transition: all .3s; }

.form__input:placeholder-shown + .form__label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4rem); }

.form__radio-group {
  width: 49%;
  display: inline-block; }

.form__radio-input {
  display: none; }

.form__radio-label {
  font-size: 1.6rem;
  cursor: pointer;
  position: relative;
  padding-left: 4.5rem; }

.form__radio-button {
  height: 3rem;
  width: 3rem;
  border: 5px solid #ffffff2c;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  left: 0;
  top: -.4rem; }
  .form__radio-button::after {
    content: "";
    display: block;
    height: 1.3rem;
    width: 1.3rem;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff2c;
    opacity: 0;
    transition: opacity .2s; }

.form__radio-input:checked ~ .form__radio-label .form__radio-button::after {
  opacity: 1; }

.popup {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all .3s; }
  .popup__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    background-color: #fff;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    display: table;
    overflow: hidden;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.25);
    transition: all .5s .2s; }
  .popup__left {
    width: 33.333333%;
    display: table-cell; }
  .popup__right {
    width: 66.6666667%;
    display: table-cell;
    vertical-align: middle;
    padding: 3rem 5rem; }
  .popup__img {
    display: block;
    width: 100%; }
  .popup__text {
    font-size: 1.4rem;
    margin-bottom: 4rem;
    -moz-column-count: 2;
    -moz-column-gap: 4rem;
    -moz-column-rule: 1px solid #eee;
    column-count: 2;
    column-gap: 4rem;
    column-rule: 1px solid #eee;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto; }
  .popup:target {
    opacity: 1;
    visibility: visible; }
  .popup:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1); }
  .popup__close:link, .popup__close:visited {
    color: #777;
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    font-size: 3rem;
    text-decoration: none;
    display: inline-block;
    transition: all .2s;
    line-height: 1; }
  .popup__close:hover {
    color: #ffffff2c; }

.robot3:before {
  -webkit-animation: before 0.4s steps(1) infinite;
  -moz-animation: before 0.4s steps(1) infinite;
  -o-animation: before 0.4s steps(1) infinite;
  animation: before 0.4s steps(1) infinite; }

.robo {
  width: 120px;
  height: 200px; }

.robo:before, .robo:after {
  position: absolute;
  content: '';
  display: block;
  width: 5px;
  height: 5px; }

.robot3:after {
  opacity: 0;
  -webkit-animation: after 0.4s steps(1) infinite;
  -moz-animation: after 0.4s steps(1) infinite;
  -o-animation: after 0.4s steps(1) infinite;
  animation: after 0.4s steps(1) infinite; }

@-webkit-keyframes after {
  0% {
    opacity: 0; }
  50% {
    opacity: 1; } }

@-moz-keyframes after {
  0% {
    opacity: 0; }
  50% {
    opacity: 1; } }

@-o-keyframess after {
  0% {
    opacity: 0; }
  50% {
    opacity: 1; } }

@keyframes after {
  0% {
    opacity: 0; }
  50% {
    opacity: 1; } }

.robot3:before {
  box-shadow: 55px 15px 0 white, 60px 15px 0 white, 35px 20px 0 white, 40px 20px 0 white, 45px 20px 0 white, 50px 20px 0 white, 55px 20px 0 white, 60px 20px 0 white, 65px 20px 0 white, 70px 20px 0 white, 75px 20px 0 white, 80px 20px 0 white, 55px 25px 0 white, 60px 25px 0 white, 55px 30px 0 white, 60px 30px 0 white, 55px 35px 0 white, 60px 35px 0 white, 45px 40px 0 white, 50px 40px 0 white, 55px 40px 0 white, 60px 40px 0 white, 65px 40px 0 white, 70px 40px 0 white, 40px 45px 0 white, 40px 50px 0 white, 40px 55px 0 white, 40px 60px 0 white, 40px 65px 0 white, 75px 45px 0 white, 75px 50px 0 white, 75px 55px 0 white, 75px 60px 0 white, 75px 65px 0 white, 50px 50px 0 white, 50px 55px 0 white, 65px 50px 0 white, 65px 55px 0 white, 30px 70px 0 white, 35px 70px 0 white, 40px 70px 0 white, 45px 70px 0 white, 50px 70px 0 white, 55px 70px 0 white, 60px 70px 0 white, 65px 70px 0 white, 70px 70px 0 white, 75px 70px 0 white, 80px 70px 0 white, 85px 70px 0 white, 25px 75px 0 white, 25px 80px 0 white, 25px 85px 0 white, 25px 90px 0 white, 25px 95px 0 white, 25px 100px 0 white, 25px 105px 0 white, 25px 110px 0 white, 25px 115px 0 white, 25px 120px 0 white, 25px 125px 0 white, 90px 75px 0 white, 90px 80px 0 white, 90px 85px 0 white, 90px 90px 0 white, 90px 95px 0 white, 90px 100px 0 white, 90px 105px 0 white, 90px 110px 0 white, 90px 115px 0 white, 90px 120px 0 white, 90px 125px 0 white, 30px 130px 0 white, 35px 130px 0 white, 40px 130px 0 white, 45px 130px 0 white, 50px 130px 0 white, 55px 130px 0 white, 60px 130px 0 white, 65px 130px 0 white, 70px 130px 0 white, 75px 130px 0 white, 80px 130px 0 white, 85px 130px 0 white, 35px 135px 0 white, 80px 135px 0 white, 35px 140px 0 white, 40px 140px 0 white, 45px 140px 0 white, 50px 140px 0 white, 55px 140px 0 white, 60px 140px 0 white, 65px 140px 0 white, 70px 140px 0 white, 75px 140px 0 white, 80px 140px 0 white, 40px 145px 0 white, 45px 145px 0 white, 70px 145px 0 white, 75px 145px 0 white, 50px 150px 0 white, 55px 150px 0 white, 60px 150px 0 white, 65px 150px 0 white, 55px 155px 0 white, 60px 155px 0 white, 55px 160px 0 white, 60px 160px 0 white, 55px 165px 0 white, 60px 165px 0 white, 55px 170px 0 white, 60px 170px 0 white, 25px 155px 0 white, 30px 155px 0 white, 35px 155px 0 white, 40px 155px 0 white, 20px 160px 0 white, 25px 160px 0 white, 30px 160px 0 white, 35px 160px 0 white, 40px 160px 0 white, 45px 160px 0 white, 20px 165px 0 white, 45px 165px 0 white, 50px 165px 0 white, 20px 170px 0 white, 25px 170px 0 white, 30px 170px 0 white, 35px 170px 0 white, 40px 170px 0 white, 45px 170px 0 white, 25px 175px 0 white, 30px 175px 0 white, 35px 175px 0 white, 40px 175px 0 white, 75px 155px 0 white, 80px 155px 0 white, 85px 155px 0 white, 90px 155px 0 white, 70px 160px 0 white, 75px 160px 0 white, 80px 160px 0 white, 85px 160px 0 white, 90px 160px 0 white, 95px 160px 0 white, 70px 165px 0 white, 95px 165px 0 white, 65px 165px 0 white, 70px 170px 0 white, 75px 170px 0 white, 80px 170px 0 white, 85px 170px 0 white, 90px 170px 0 white, 95px 170px 0 white, 75px 175px 0 white, 80px 175px 0 white, 85px 175px 0 white, 90px 175px 0 white, 20px 80px 0 white, 20px 85px 0 white, 20px 90px 0 white, 5px 75px 0 white, 10px 75px 0 white, 15px 75px 0 white, 0px 80px 0 white, 0px 85px 0 white, 5px 85px 0 white, 0px 90px 0 white, 0px 95px 0 white, 0px 100px 0 white, 0px 105px 0 white, 0px 110px 0 white, 0px 115px 0 white, 15px 80px 0 white, 15px 85px 0 white, 15px 90px 0 white, 15px 95px 0 white, 15px 100px 0 white, 15px 105px 0 white, 15px 110px 0 white, 15px 115px 0 white, 5px 120px 0 white, 10px 120px 0 white, 0px 125px 0 white, 5px 125px 0 white, 10px 125px 0 white, 15px 125px 0 white, 0px 130px 0 white, 15px 130px 0 white, 95px 80px 0 white, 95px 85px 0 white, 95px 90px 0 white, 100px 75px 0 white, 105px 75px 0 white, 110px 75px 0 white, 115px 80px 0 white, 115px 85px 0 white, 110px 85px 0 white, 115px 90px 0 white, 115px 95px 0 white, 115px 100px 0 white, 115px 105px 0 white, 115px 110px 0 white, 115px 115px 0 white, 100px 80px 0 white, 100px 85px 0 white, 100px 90px 0 white, 100px 95px 0 white, 100px 100px 0 white, 100px 105px 0 white, 100px 110px 0 white, 100px 115px 0 white, 105px 120px 0 white, 110px 120px 0 white, 100px 125px 0 white, 105px 125px 0 white, 110px 125px 0 white, 115px 125px 0 white, 100px 130px 0 white, 115px 130px 0 white, 70px 80px 0 white, 75px 80px 0 white, 65px 85px 0 white, 70px 85px 0 white, 75px 85px 0 white, 80px 85px 0 white, 65px 90px 0 white, 70px 90px 0 white, 75px 90px 0 white, 80px 90px 0 white, 70px 95px 0 white, 75px 95px 0 white; }

.robot3:after {
  box-shadow: 55px 20px 0 white, 60px 20px 0 white, 40px 20px 0 white, 45px 20px 0 white, 70px 20px 0 white, 75px 20px 0 white, 35px 25px 0 white, 50px 25px 0 white, 55px 25px 0 white, 60px 25px 0 white, 65px 25px 0 white, 80px 25px 0 white, 40px 30px 0 white, 45px 30px 0 white, 55px 30px 0 white, 60px 30px 0 white, 70px 30px 0 white, 75px 30px 0 white, 55px 35px 0 white, 60px 35px 0 white, 55px 40px 0 white, 60px 40px 0 white, 45px 45px 0 white, 50px 45px 0 white, 55px 45px 0 white, 60px 45px 0 white, 65px 45px 0 white, 70px 45px 0 white, 40px 50px 0 white, 40px 55px 0 white, 40px 60px 0 white, 40px 65px 0 white, 40px 70px 0 white, 75px 50px 0 white, 75px 55px 0 white, 75px 60px 0 white, 75px 65px 0 white, 75px 70px 0 white, 50px 55px 0 white, 50px 60px 0 white, 65px 55px 0 white, 65px 60px 0 white, 30px 75px 0 white, 35px 75px 0 white, 40px 75px 0 white, 45px 75px 0 white, 50px 75px 0 white, 55px 75px 0 white, 60px 75px 0 white, 65px 75px 0 white, 70px 75px 0 white, 75px 75px 0 white, 80px 75px 0 white, 85px 75px 0 white, 25px 80px 0 white, 25px 85px 0 white, 25px 90px 0 white, 25px 95px 0 white, 25px 100px 0 white, 25px 105px 0 white, 25px 110px 0 white, 25px 115px 0 white, 25px 120px 0 white, 25px 125px 0 white, 25px 130px 0 white, 90px 80px 0 white, 90px 85px 0 white, 90px 90px 0 white, 90px 95px 0 white, 90px 100px 0 white, 90px 105px 0 white, 90px 110px 0 white, 90px 115px 0 white, 90px 120px 0 white, 90px 125px 0 white, 90px 130px 0 white, 30px 135px 0 white, 35px 135px 0 white, 40px 135px 0 white, 45px 135px 0 white, 50px 135px 0 white, 55px 135px 0 white, 60px 135px 0 white, 65px 135px 0 white, 70px 135px 0 white, 75px 135px 0 white, 80px 135px 0 white, 85px 135px 0 white, 35px 135px 0 white, 80px 135px 0 white, 35px 140px 0 white, 40px 140px 0 white, 45px 140px 0 white, 50px 140px 0 white, 55px 140px 0 white, 60px 140px 0 white, 65px 140px 0 white, 70px 140px 0 white, 75px 140px 0 white, 80px 140px 0 white, 40px 145px 0 white, 45px 145px 0 white, 70px 145px 0 white, 75px 145px 0 white, 50px 150px 0 white, 55px 150px 0 white, 60px 150px 0 white, 65px 150px 0 white, 55px 155px 0 white, 60px 155px 0 white, 55px 160px 0 white, 60px 160px 0 white, 55px 165px 0 white, 60px 165px 0 white, 55px 170px 0 white, 60px 170px 0 white, 25px 155px 0 white, 30px 155px 0 white, 35px 155px 0 white, 40px 155px 0 white, 20px 160px 0 white, 45px 160px 0 white, 20px 165px 0 white, 25px 165px 0 white, 30px 165px 0 white, 35px 165px 0 white, 40px 165px 0 white, 45px 165px 0 white, 50px 165px 0 white, 20px 170px 0 white, 45px 170px 0 white, 25px 175px 0 white, 30px 175px 0 white, 35px 175px 0 white, 40px 175px 0 white, 75px 155px 0 white, 80px 155px 0 white, 85px 155px 0 white, 90px 155px 0 white, 70px 160px 0 white, 95px 160px 0 white, 65px 165px 0 white, 70px 165px 0 white, 75px 165px 0 white, 80px 165px 0 white, 85px 165px 0 white, 90px 165px 0 white, 95px 165px 0 white, 70px 170px 0 white, 95px 170px 0 white, 75px 175px 0 white, 80px 175px 0 white, 85px 175px 0 white, 90px 175px 0 white, 20px 85px 0 white, 20px 90px 0 white, 20px 95px 0 white, 5px 80px 0 white, 10px 80px 0 white, 15px 80px 0 white, 0px 85px 0 white, 0px 90px 0 white, 5px 90px 0 white, 0px 95px 0 white, 0px 100px 0 white, 0px 105px 0 white, 0px 110px 0 white, 0px 115px 0 white, 0px 120px 0 white, 15px 85px 0 white, 15px 90px 0 white, 15px 95px 0 white, 15px 100px 0 white, 15px 105px 0 white, 15px 110px 0 white, 15px 115px 0 white, 15px 120px 0 white, 5px 125px 0 white, 10px 125px 0 white, 0px 130px 0 white, 5px 130px 0 white, 10px 130px 0 white, 15px 130px 0 white, 5px 135px 0 white, 10px 135px 0 white, 95px 85px 0 white, 95px 90px 0 white, 95px 95px 0 white, 100px 80px 0 white, 105px 80px 0 white, 110px 80px 0 white, 115px 85px 0 white, 115px 90px 0 white, 110px 90px 0 white, 115px 95px 0 white, 115px 100px 0 white, 115px 105px 0 white, 115px 110px 0 white, 115px 115px 0 white, 115px 120px 0 white, 100px 85px 0 white, 100px 90px 0 white, 100px 95px 0 white, 100px 100px 0 white, 100px 105px 0 white, 100px 110px 0 white, 100px 115px 0 white, 100px 120px 0 white, 105px 125px 0 white, 110px 125px 0 white, 100px 130px 0 white, 105px 130px 0 white, 110px 130px 0 white, 115px 130px 0 white, 105px 135px 0 white, 110px 135px 0 white, 70px 85px 0 white, 75px 85px 0 white, 65px 90px 0 white, 80px 90px 0 white, 65px 95px 0 white, 80px 95px 0 white, 70px 100px 0 white, 75px 100px 0 white; }

.tyb {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh; }
  .tyb__text-box {
    background-image: linear-gradient(to right bottom, rgba(0, 0, 0, 0.37), rgba(0, 0, 0, 0.295)), url(../img/converse.jpg);
    background-size: cover;
    background-position: top;
    position: relative;
    height: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center; }

.about-me-general {
  height: 100vh;
  display: flex;
  align-items: center;
  margin: 0 5%;
  justify-content: center; }

.about-me {
  background-color: white;
  box-shadow: rgba(255, 255, 255, 0.199);
  transition: transform 0.6s ease-in-out;
  border-radius: 5px;
  display: flex;
  overflow: hidden;
  height: 80%; }
  .about-me__header {
    background-color: white;
    background-color: rgba(255, 217, 0, 0.623);
    width: 30%; }
    @media only screen and (max-width: 480px) {
      .about-me__header {
        display: none; } }
    .about-me__header__heading-secondary {
      padding: 1.5rem;
      text-align: center;
      font-size: 4rem;
      text-transform: uppercase; }
      @media only screen and (max-width: 1280px) {
        .about-me__header__heading-secondary {
          padding: 1rem; } }
      @media only screen and (max-width: 1118px) {
        .about-me__header__heading-secondary {
          font-size: 3rem; } }
    .about-me__header__heading-tertiary {
      font-size: 2.5rem;
      padding: 1rem;
      text-transform: uppercase;
      font-weight: 500; }
      @media only screen and (max-width: 1280px) {
        .about-me__header__heading-tertiary {
          padding: 0;
          margin-left: .5rem; } }
      @media only screen and (max-width: 1118px) {
        .about-me__header__heading-tertiary {
          font-size: 2rem; } }
    .about-me__header__heading-fourth {
      text-align: center;
      font-size: 2rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid grey; }
      @media only screen and (max-width: 1280px) {
        .about-me__header__heading-fourth {
          padding-bottom: .5rem; } }
      @media only screen and (max-width: 1118px) {
        .about-me__header__heading-fourth {
          font-size: 1.5rem; } }
    .about-me__header ul {
      padding: 1rem; }
      @media only screen and (max-width: 1280px) {
        .about-me__header ul {
          padding-bottom: .5rem; } }
    .about-me__header li {
      font-size: 1.5rem; }
    .about-me__header__button-container {
      display: flex;
      justify-content: center;
      align-items: flex-end; }
      .about-me__header__button-container .btn-download-cv {
        border: none;
        padding: 1rem;
        border-radius: 3px;
        color: grey;
        background-color: white;
        transition: all .2s;
        text-transform: uppercase;
        font-size: 1.4rem;
        text-decoration: none; }
        .about-me__header__button-container .btn-download-cv:hover {
          color: white;
          background-color: grey; }
  .about-me .contact__icon {
    transform: translateY(0.5rem);
    display: inline-flex;
    margin-right: 1rem;
    height: 1.6em;
    width: 1.6rem;
    fill: grey; }
    @media only screen and (max-width: 900px) {
      .about-me .contact__icon {
        margin-right: 3px;
        height: 1.2rem; } }
  .about-me__content {
    width: 70%;
    display: flex;
    flex-direction: column; }
    @media only screen and (max-width: 480px) {
      .about-me__content {
        width: 100%; } }
    .about-me__content__container {
      height: 92%; }
      @media only screen and (max-width: 1400px) {
        .about-me__content__container {
          height: 92%; } }
      @media only screen and (max-width: 1200px) {
        .about-me__content__container {
          height: 93%; } }
      @media only screen and (max-width: 900px) {
        .about-me__content__container {
          height: 94%; } }
      @media only screen and (max-width: 600px) {
        .about-me__content__container {
          height: 83%; } }
    .about-me__content__nav-bar {
      display: flex;
      height: 8%;
      justify-content: space-between;
      z-index: 9; }
      @media only screen and (max-width: 1400px) {
        .about-me__content__nav-bar {
          height: 8%; } }
      @media only screen and (max-width: 1200px) {
        .about-me__content__nav-bar {
          height: 7%; } }
      @media only screen and (max-width: 900px) {
        .about-me__content__nav-bar {
          height: 6%; } }
      @media only screen and (max-width: 600px) {
        .about-me__content__nav-bar {
          flex-direction: column;
          height: 25%; } }
      @media only screen and (max-width: 600px) {
        .about-me__content__nav-bar {
          flex-direction: column;
          height: 17%; } }
      .about-me__content__nav-bar__heading-tertiary {
        text-align: center;
        flex: 1;
        font-size: 2rem;
        padding: 1rem;
        text-transform: uppercase;
        font-weight: 500;
        border-bottom: 1px solid grey;
        transition: all .2s; }
        @media only screen and (max-width: 1200px) {
          .about-me__content__nav-bar__heading-tertiary {
            font-size: 1.7rem; } }
        @media only screen and (max-width: 1200px) {
          .about-me__content__nav-bar__heading-tertiary {
            font-size: 1.4rem; } }
        @media only screen and (max-width: 600px) {
          .about-me__content__nav-bar__heading-tertiary {
            padding: 0.2rem; } }
        @media only screen and (max-width: 375px) {
          .about-me__content__nav-bar__heading-tertiary {
            padding: 0; } }
        .about-me__content__nav-bar__heading-tertiary:hover {
          background-color: grey;
          color: white;
          cursor: pointer; }
          .about-me__content__nav-bar__heading-tertiary:hover .profile__icon {
            fill: white; }
        .about-me__content__nav-bar__heading-tertiary-selected {
          background-color: grey;
          color: white;
          cursor: pointer; }
          .about-me__content__nav-bar__heading-tertiary-selected .profile__icon {
            fill: white !important; }
    .about-me__content__heading-secondary {
      padding-top: 1.5rem;
      text-align: center;
      font-size: 4rem;
      text-transform: uppercase; }
    .about-me__content__heading-fourth {
      text-align: center;
      font-size: 2rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid grey; }
  .about-me .profile {
    transition: all .5s;
    height: 100%; }
    .about-me .profile__section1 {
      display: flex; }
    .about-me .profile__icon {
      transform: translateY(0.2rem);
      margin-right: 1rem;
      height: 1em;
      width: 2.5rem;
      fill: grey; }
      @media only screen and (max-width: 900px) {
        .about-me .profile__icon {
          margin-right: 3px; } }
    .about-me .profile__paragraphs__container {
      width: 70%;
      padding: 2rem; }
      @media only screen and (max-width: 900px) {
        .about-me .profile__paragraphs__container {
          padding: 1rem; } }
      @media only screen and (max-width: 480px) {
        .about-me .profile__paragraphs__container {
          padding: .5rem; } }
      .about-me .profile__paragraphs__container-paragraph {
        font-size: 1.4rem;
        margin-bottom: 1rem; }
        @media only screen and (max-width: 900px) {
          .about-me .profile__paragraphs__container-paragraph {
            font-size: 1rem; } }
    .about-me .profile__values-container {
      padding: 2rem;
      width: 30%; }
      @media only screen and (max-width: 900px) {
        .about-me .profile__values-container {
          padding: 1rem; } }
      @media only screen and (max-width: 480px) {
        .about-me .profile__values-container {
          padding: .5rem; } }
      .about-me .profile__values-container-list {
        list-style: none;
        text-align: right; }
      .about-me .profile__values-container-item {
        text-transform: uppercase;
        font-size: 1.6rem;
        letter-spacing: 3px; }
        @media only screen and (max-width: 900px) {
          .about-me .profile__values-container-item {
            font-size: 1.2rem; } }
        .about-me .profile__values-container-item .highligther {
          background-color: rgba(255, 217, 0, 0.623); }
        .about-me .profile__values-container-item:not(:first-child) {
          margin-top: .5rem; }
    .about-me .profile__picture__img {
      height: 100%;
      width: 100%; }
  .about-me .skills {
    display: flex;
    height: 100%; }
    .about-me .skills .skills-bar__icon {
      height: 2.2rem;
      width: 2.2rem;
      fill: white;
      margin-right: 1rem;
      transform: translateY(3px); }
      @media only screen and (max-width: 900px) {
        .about-me .skills .skills-bar__icon {
          margin-right: 3px;
          height: 1.6rem; } }
    .about-me .skills__nav-bar {
      display: flex;
      flex-direction: column;
      width: 10%;
      background-color: grey; }
      .about-me .skills__nav-bar__item {
        display: flex;
        align-items: center;
        flex: 1;
        border-bottom: 1px solid #333;
        justify-content: center;
        transition: all .3s; }
        .about-me .skills__nav-bar__item-selected {
          background-color: white; }
          .about-me .skills__nav-bar__item-selected .skills__nav-bar__item__icon {
            fill: grey !important; }
        .about-me .skills__nav-bar__item__icon {
          height: 5rem;
          width: 5rem;
          fill: white;
          height: 3rem; }
        .about-me .skills__nav-bar__item:hover {
          background-color: white; }
          .about-me .skills__nav-bar__item:hover .skills__nav-bar__item__icon {
            fill: grey !important; }
    .about-me .skills__content {
      width: 90%; }
    .about-me .skills-robotics {
      height: 100%;
      width: 100%;
      display: flex;
      flex-direction: column; }
      .about-me .skills-robotics .btn__skills__see-more {
        border: none;
        padding: 1rem;
        border-radius: 3px;
        color: grey;
        background-color: white;
        transition: all .2s;
        text-transform: uppercase;
        font-size: 1.4rem;
        text-decoration: none;
        height: 4rem;
        width: 10rem;
        text-align: center; }
        .about-me .skills-robotics .btn__skills__see-more:hover {
          color: white;
          background-color: grey; }
      .about-me .skills-robotics__header__heading {
        text-align: center;
        font-size: 7rem;
        animation: slide-left 1s ease-in-out;
        -webkit-animation: slide-left 1s ease-in-out; }
        @media only screen and (max-width: 1280px) {
          .about-me .skills-robotics__header__heading {
            font-size: 6rem; } }
        @media only screen and (max-width: 480px) {
          .about-me .skills-robotics__header__heading {
            font-size: 5rem; } }
      .about-me .skills-robotics__description {
        display: flex; }
        .about-me .skills-robotics__description__paragraph {
          display: flex;
          flex-wrap: wrap;
          justify-content: flex-end;
          padding: 1rem;
          background-color: rgba(255, 217, 0, 0.623);
          margin: 2rem;
          font-size: 1.4rem; }
          @media only screen and (max-width: 1024px) {
            .about-me .skills-robotics__description__paragraph {
              margin: 0 2rem; } }
          @media only screen and (max-width: 480px) {
            .about-me .skills-robotics__description__paragraph {
              font-size: 1rem;
              padding: .5rem; } }
        .about-me .skills-robotics__description__video {
          margin-right: 2rem; }
      .about-me .skills-robotics__bar-graph-container {
        border-left: 1px solid #333;
        border-bottom: 1px solid #333;
        overflow: hidden;
        margin: 2rem; }
        @media only screen and (max-width: 320px) {
          .about-me .skills-robotics__bar-graph-container {
            margin: 1rem; } }
      .about-me .skills-robotics__bar-graph-container p {
        padding: 0.5rem;
        color: #fff;
        font-size: 1.8rem; }
        @media only screen and (max-width: 900px) {
          .about-me .skills-robotics__bar-graph-container p {
            font-size: 1.4rem; } }
      .about-me .skills-robotics-bar-container {
        background-color: rgba(255, 217, 0, 0.623); }
      .about-me .skills-robotics-html {
        width: 80%;
        background-color: #777;
        animation: slide-left 0.9s ease-in-out 1s both;
        -webkit-animation: slide-left 0.9s ease-in-out 1s both;
        animation-delay: 0.1s;
        -webkit-animation-delay: 0.1s;
        margin: 1rem 0; }
      .about-me .skills-robotics-css {
        width: 55%;
        background-color: #777;
        animation: slide-left 1s ease-in-out 1s both;
        -webkit-animation: slide-left 1s ease-in-out 1s both;
        animation-delay: 0.2s;
        -webkit-animation-delay: 0.2s;
        margin: 1rem 0; }
      .about-me .skills-robotics-js {
        width: 70%;
        background-color: #777;
        animation: slide-left 1s ease-in-out 1s both;
        -webkit-animation: slide-left 1s ease-in-out 1s both;
        animation-delay: 0.3s;
        -webkit-animation-delay: 0.3s;
        margin: 1rem 0; }
      .about-me .skills-robotics-php {
        width: 50%;
        background-color: #777;
        animation: slide-left 1s ease-in-out 1s both;
        -webkit-animation: slide-left 1s ease-in-out 1s both;
        animation-delay: 0.2s;
        -webkit-animation-delay: 0.2s;
        margin: 1rem 0; }
      .about-me .skills-robotics-drupal {
        width: 60%;
        background-color: #777;
        animation: slide-left 1s ease-in-out 1s both;
        -webkit-animation: slide-left 1s ease-in-out 1s both;
        animation-delay: 0.1s;
        -webkit-animation-delay: 0.1s;
        margin-top: 1rem; }
    .about-me .skills-music {
      height: 100%;
      width: 100%;
      display: flex;
      flex-direction: column; }
      .about-me .skills-music .btn__skills-music__see-more {
        border: none;
        padding: 1rem;
        border-radius: 3px;
        color: grey;
        background-color: white;
        transition: all .2s;
        text-transform: uppercase;
        font-size: 1.4rem;
        text-decoration: none;
        height: 4rem;
        width: 10rem;
        text-align: center; }
        .about-me .skills-music .btn__skills-music__see-more:hover {
          color: white;
          background-color: grey; }
      .about-me .skills-music__header__heading {
        text-align: center;
        font-size: 7rem;
        animation: slide-left 1s ease-in-out;
        -webkit-animation: slide-left 1s ease-in-out; }
        @media only screen and (max-width: 1280px) {
          .about-me .skills-music__header__heading {
            font-size: 6rem; } }
        @media only screen and (max-width: 480px) {
          .about-me .skills-music__header__heading {
            font-size: 5rem; } }
      .about-me .skills-music__description {
        display: flex; }
        .about-me .skills-music__description__paragraph {
          display: flex;
          flex-wrap: wrap;
          justify-content: flex-end;
          padding: 1rem;
          background-color: rgba(255, 217, 0, 0.623);
          margin: 2rem;
          font-size: 1.4rem; }
          @media only screen and (max-width: 480px) {
            .about-me .skills-music__description__paragraph {
              font-size: 1rem;
              padding: .5rem; } }
          @media only screen and (max-width: 1024px) {
            .about-me .skills-music__description__paragraph {
              margin: 0 2rem; } }
        .about-me .skills-music__description__video {
          margin-right: 2rem; }
      .about-me .skills-music__bar-graph-container {
        border-left: 1px solid #333;
        border-bottom: 1px solid #333;
        overflow: hidden;
        margin: 2rem; }
        @media only screen and (max-width: 320px) {
          .about-me .skills-music__bar-graph-container {
            margin: 1rem; } }
      .about-me .skills-music__bar-graph-container p {
        padding: 0.5rem;
        color: #fff;
        font-size: 1.8rem; }
        @media only screen and (max-width: 900px) {
          .about-me .skills-music__bar-graph-container p {
            font-size: 1.4rem; } }
      .about-me .skills-music-bar-container {
        background-color: rgba(255, 217, 0, 0.623); }
      .about-me .skills-music-html {
        width: 95%;
        background-color: #777;
        animation: slide-left 0.9s ease-in-out 1s both;
        -webkit-animation: slide-left 0.9s ease-in-out 1s both;
        animation-delay: 0.1s;
        -webkit-animation-delay: 0.1s;
        margin: 1rem 0; }
      .about-me .skills-music-css {
        width: 75%;
        background-color: #777;
        animation: slide-left 1s ease-in-out 1s both;
        -webkit-animation: slide-left 1s ease-in-out 1s both;
        animation-delay: 0.2s;
        -webkit-animation-delay: 0.2s;
        margin: 1rem 0; }
      .about-me .skills-music-js {
        width: 80%;
        background-color: #777;
        animation: slide-left 1s ease-in-out 1s both;
        -webkit-animation: slide-left 1s ease-in-out 1s both;
        animation-delay: 0.3s;
        -webkit-animation-delay: 0.3s;
        margin: 1rem 0; }
      .about-me .skills-music-php {
        width: 40%;
        background-color: #777;
        animation: slide-left 1s ease-in-out 1s both;
        -webkit-animation: slide-left 1s ease-in-out 1s both;
        animation-delay: 0.2s;
        -webkit-animation-delay: 0.2s;
        margin: 1rem 0; }
      .about-me .skills-music-drupal {
        width: 30%;
        background-color: #777;
        animation: slide-left 1s ease-in-out 1s both;
        -webkit-animation: slide-left 1s ease-in-out 1s both;
        animation-delay: 0.1s;
        -webkit-animation-delay: 0.1s;
        margin-top: 1rem; }
        @media only screen and (max-width: 900px) {
          .about-me .skills-music-drupal {
            width: 35%; } }
    .about-me .skills-web-design {
      height: 100%;
      width: 100%;
      display: flex;
      flex-direction: column; }
      .about-me .skills-web-design .btn__skills-web-design__see-more {
        border: none;
        padding: 1rem;
        border-radius: 3px;
        color: grey;
        background-color: white;
        transition: all .2s;
        text-transform: uppercase;
        font-size: 1.4rem;
        text-decoration: none;
        height: 4rem;
        width: 10rem;
        text-align: center; }
        .about-me .skills-web-design .btn__skills-web-design__see-more:hover {
          color: white;
          background-color: grey; }
      .about-me .skills-web-design__header__heading {
        text-align: center;
        font-size: 7rem;
        animation: slide-left 1s ease-in-out;
        -webkit-animation: slide-left 1s ease-in-out; }
        @media only screen and (max-width: 1280px) {
          .about-me .skills-web-design__header__heading {
            font-size: 6rem; } }
        @media only screen and (max-width: 480px) {
          .about-me .skills-web-design__header__heading {
            font-size: 5rem; } }
      .about-me .skills-web-design__description {
        display: flex; }
        .about-me .skills-web-design__description__paragraph {
          display: flex;
          flex-wrap: wrap;
          justify-content: flex-end;
          padding: 1rem;
          background-color: rgba(255, 217, 0, 0.623);
          margin: 2rem;
          font-size: 1.4rem; }
          @media only screen and (max-width: 480px) {
            .about-me .skills-web-design__description__paragraph {
              font-size: 1rem;
              padding: .5rem; } }
          @media only screen and (max-width: 1024px) {
            .about-me .skills-web-design__description__paragraph {
              margin: 0 2rem; } }
        .about-me .skills-web-design__description__video {
          margin-right: 2rem; }
      .about-me .skills-web-design__bar-graph-container {
        border-left: 1px solid #333;
        border-bottom: 1px solid #333;
        overflow: hidden;
        margin: 2rem; }
        @media only screen and (max-width: 320px) {
          .about-me .skills-web-design__bar-graph-container {
            margin: 1rem; } }
      .about-me .skills-web-design__bar-graph-container p {
        padding: 0.5rem;
        color: #fff;
        font-size: 1.8rem; }
        @media only screen and (max-width: 900px) {
          .about-me .skills-web-design__bar-graph-container p {
            font-size: 1.4rem; } }
      .about-me .skills-web-design-bar-container {
        background-color: rgba(255, 217, 0, 0.623); }
      .about-me .skills-web-design-html {
        width: 100%;
        background-color: #777;
        animation: slide-left 0.9s ease-in-out 1s both;
        -webkit-animation: slide-left 0.9s ease-in-out 1s both;
        animation-delay: 0.1s;
        -webkit-animation-delay: 0.1s;
        margin: 1rem 0; }
      .about-me .skills-web-design-css {
        width: 100%;
        background-color: #777;
        animation: slide-left 1s ease-in-out 1s both;
        -webkit-animation: slide-left 1s ease-in-out 1s both;
        animation-delay: 0.2s;
        -webkit-animation-delay: 0.2s;
        margin: 1rem 0; }
      .about-me .skills-web-design-js {
        width: 50%;
        background-color: #777;
        animation: slide-left 1s ease-in-out 1s both;
        -webkit-animation: slide-left 1s ease-in-out 1s both;
        animation-delay: 0.3s;
        -webkit-animation-delay: 0.3s;
        margin: 1rem 0; }
      .about-me .skills-web-design-php {
        width: 90%;
        background-color: #777;
        animation: slide-left 1s ease-in-out 1s both;
        -webkit-animation: slide-left 1s ease-in-out 1s both;
        animation-delay: 0.2s;
        -webkit-animation-delay: 0.2s;
        margin: 1rem 0; }
      .about-me .skills-web-design-drupal {
        width: 30%;
        background-color: #777;
        animation: slide-left 1s ease-in-out 1s both;
        -webkit-animation: slide-left 1s ease-in-out 1s both;
        animation-delay: 0.1s;
        -webkit-animation-delay: 0.1s;
        margin-top: 1rem; }

.experience {
  display: flex;
  height: 100%; }
  .experience .skills-bar__icon {
    height: 2.2rem;
    width: 2.2rem;
    fill: white;
    margin-right: 1rem;
    transform: translateY(3px); }
    @media only screen and (max-width: 900px) {
      .experience .skills-bar__icon {
        margin-right: 3px;
        height: 1.6rem; } }
  .experience__nav-bar {
    display: flex;
    flex-direction: column;
    width: 10%;
    background-color: grey; }
    .experience__nav-bar__item {
      display: flex;
      align-items: center;
      flex: 1;
      border-bottom: 1px solid #333;
      justify-content: center;
      transition: all .3s; }
      .experience__nav-bar__item-selected {
        background-color: white; }
        .experience__nav-bar__item-selected .experience__nav-bar__item__icon {
          fill: grey !important; }
      .experience__nav-bar__item__icon {
        height: 5rem;
        width: 5rem;
        fill: white; }
        @media only screen and (max-width: 900px) {
          .experience__nav-bar__item__icon {
            height: 3rem; } }
      .experience__nav-bar__item:hover {
        background-color: white; }
        .experience__nav-bar__item:hover .experience__nav-bar__item__icon {
          fill: grey !important; }
  .experience__content {
    width: 90%; }
  .experience-robotics {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column; }
    .experience-robotics__main {
      height: 33.3%; }
      .experience-robotics__main-img {
        height: 100%;
        background-color: red; }
    .experience-robotics__content {
      height: 66.7%;
      display: flex;
      flex-direction: column;
      justify-content: space-around;
      padding: 2rem; }
      @media only screen and (max-width: 1024px) {
        .experience-robotics__content {
          padding: 1rem; } }
    .experience-robotics__item {
      background-color: rgba(255, 217, 0, 0.623);
      padding: 1rem;
      animation: slide-left 1s ease-in-out .3s both;
      -webkit-animation: slide-left 1s ease-in-out .3s both; }
      @media only screen and (max-width: 900px) {
        .experience-robotics__item {
          padding: .5rem; } }
      @media only screen and (max-width: 320px) {
        .experience-robotics__item {
          padding: 0; } }
      .experience-robotics__item__heading {
        font-size: 1.4rem; }
      .experience-robotics__item__paragraph {
        font-size: 1.2rem; }
  .experience-music {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column; }
    .experience-music__main {
      height: 33.3%; }
      .experience-music__main-img {
        height: 100%;
        background-color: red; }
    .experience-music__content {
      height: 33.3%;
      display: flex;
      flex-direction: column;
      justify-content: space-around;
      padding: 2rem; }
      @media only screen and (max-width: 1024px) {
        .experience-music__content {
          padding: 1rem; } }
    .experience-music__item {
      background-color: rgba(255, 217, 0, 0.623);
      padding: 1rem;
      animation: slide-left 1s ease-in-out .3s both;
      -webkit-animation: slide-left 1s ease-in-out .3s both; }
      @media only screen and (max-width: 900px) {
        .experience-music__item {
          padding: .5rem; } }
      @media only screen and (max-width: 320px) {
        .experience-music__item {
          padding: 0; } }
      .experience-music__item__heading {
        font-size: 1.4rem; }
      .experience-music__item__paragraph {
        font-size: 1.2rem; }
  .experience-web-design {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column; }
    .experience-web-design__main {
      height: 33.3%; }
      .experience-web-design__main-img {
        height: 100%;
        background-color: red; }
    .experience-web-design__content {
      height: 66.7%;
      display: flex;
      flex-direction: column;
      justify-content: space-around;
      padding: 2rem; }
      @media only screen and (max-width: 1024px) {
        .experience-web-design__content {
          padding: 1rem; } }
    .experience-web-design__item {
      background-color: rgba(255, 217, 0, 0.623);
      padding: 1rem;
      animation: slide-left 1s ease-in-out .3s both;
      -webkit-animation: slide-left 1s ease-in-out .3s both; }
      @media only screen and (max-width: 900px) {
        .experience-web-design__item {
          padding: .5rem; } }
      @media only screen and (max-width: 320px) {
        .experience-web-design__item {
          padding: 0; } }
      .experience-web-design__item__heading {
        font-size: 1.4rem; }
      .experience-web-design__item__paragraph {
        font-size: 1.2rem; }

.education {
  height: 100%;
  display: flex; }
  .education__content {
    margin: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateY(-2rem); }
    @media only screen and (max-width: 1280px) {
      .education__content {
        margin: 1rem; } }
    .education__content__item {
      padding: 2rem;
      border: #333;
      border: 1px solid #777;
      z-index: 10; }
      @media only screen and (max-width: 900px) {
        .education__content__item {
          padding: 1rem; } }
      .education__content__item__heading {
        font-size: 2rem;
        transform: translate(1.5rem, 1.5rem); }
      .education__content__item__paragraph {
        font-size: 1.3rem; }
        @media only screen and (max-width: 1024px) {
          .education__content__item__paragraph {
            font-size: 1rem; } }

.education__white {
  padding: 1rem;
  background-color: white;
  flex-grow: 0; }
  @media only screen and (max-width: 900px) {
    .education__white {
      padding: 0; } }

.video-responsive {
  width: 100%;
  height: auto; }

.general__header {
  background-image: linear-gradient(to right bottom, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.719)), url(../img/hero.jpg);
  background-size: cover;
  background-position: top;
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column; }
  .general__header-top {
    height: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
    .general__header-top-box {
      display: flex;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center; }
  .general__header-footer {
    display: flex;
    height: 30%;
    align-items: center; }

.main-photo {
  width: 30rem;
  height: 30rem;
  float: left;
  overflow: hidden;
  border-radius: 50%;
  margin-top: 2rem;
  margin-left: 2rem;
  margin-right: 5rem;
  transform: translateY(-1rem); }
  @media only screen and (max-width: 1400px) {
    .main-photo {
      transform: translateY(-6rem); } }
  @media only screen and (max-width: 1280px) {
    .main-photo {
      width: 20rem;
      height: 20rem;
      transform: translateY(-1rem);
      margin-right: 3rem; } }
  @media only screen and (max-width: 1024px) {
    .main-photo {
      width: 18rem;
      height: 18rem;
      transform: translateY(-1rem); } }
  @media only screen and (max-width: 550px) {
    .main-photo {
      width: 14rem;
      height: 14rem;
      transform: translateY(-1rem); } }
  @media only screen and (max-width: 480px) {
    .main-photo {
      width: 19rem;
      height: 14rem;
      transform: translateY(-1rem); } }
  @media only screen and (max-width: 425px) {
    .main-photo {
      width: 22rem;
      height: 14rem;
      transform: translateY(-1rem); } }
  @media only screen and (max-width: 375px) {
    .main-photo {
      width: 27rem;
      height: 14rem; } }
  @media only screen and (max-width: 320px) {
    .main-photo {
      width: 27rem;
      height: 12rem; } }

.information ul {
  transform: translateY(-40%); }
  @media only screen and (max-width: 1400px) {
    .information ul {
      transform: translateY(-50%); } }
  @media only screen and (max-width: 1280px) {
    .information ul {
      transform: translateY(-50%); } }
  @media only screen and (max-width: 375px) {
    .information ul {
      transform: translateY(-30%); } }
  .information ul .info {
    color: white;
    font-size: 5rem;
    flex: 1;
    align-items: center;
    letter-spacing: 1rem; }
    @media only screen and (max-width: 1280px) {
      .information ul .info {
        font-size: 4rem; } }
    @media only screen and (max-width: 1024px) {
      .information ul .info {
        font-size: 3rem; } }

.info--4 {
  opacity: 0;
  animation: item-4 20s ease-out;
  animation-iteration-count: infinite;
  animation-direction: normal; }

.info--3 {
  opacity: 0;
  animation: item-3 20s ease-out;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-delay: 5s; }

.info--2 {
  opacity: 0;
  animation: item-2 20s ease-out;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-delay: 10s; }

.info--1 {
  opacity: 0;
  animation: item-1 20s ease-out;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-delay: 15s; }

.flex-nav-responsive {
  display: none; }
  .flex-nav-responsive .hamburger {
    position: fixed;
    width: 50px;
    height: 45px;
    top: 10px;
    right: 20px;
    z-index: 100; }
  .flex-nav-responsive .hamburger div {
    position: fixed;
    position: relative;
    width: 50px;
    height: 5px;
    border-radius: 3px;
    background-color: white;
    margin-top: 7px;
    transition: all 0.3s ease-in-out; }
  .flex-nav-responsive #toggle {
    display: none; }
  .flex-nav-responsive #toggle:checked + .hamburger .top {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: 22.5px; }
  .flex-nav-responsive #toggle:checked + .hamburger .meat {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: -5px; }
  .flex-nav-responsive #toggle:checked + .hamburger .bottom {
    -webkit-transform: scale(0);
    transform: scale(0); }
  .flex-nav-responsive #toggle:checked + .hamburger + .nav {
    top: 0; }
  .flex-nav-responsive nav a:link ~ .hamburger .meat {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: -5px; }
  .flex-nav-responsive .nav {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: black;
    top: -100%;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    overflow: hidden;
    transition: all 0.3s ease-in-out; }
  .flex-nav-responsive .nav .nav-wrapper {
    position: relative;
    overflow-y: auto;
    height: 100%; }
  .flex-nav-responsive nav {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; }
  .flex-nav-responsive nav a {
    margin-top: 1.25em;
    color: white;
    opacity: 0;
    text-decoration: none;
    font-size: 2.3em;
    letter-spacing: 3px;
    transition: all 0.1s ease;
    text-transform: uppercase; }
  .flex-nav-responsive nav a:first-child {
    margin-top: 0; }
  .flex-nav-responsive #toggle:checked + .hamburger + .nav .nav-wrapper nav a {
    opacity: 0.9;
    -webkit-transform: scale(1);
    transform: scale(1); }
  .flex-nav-responsive #toggle:checked + .hamburger + .nav .nav-wrapper nav a:hover {
    opacity: 1;
    color: white;
    -webkit-transform: scale(1.2);
    transform: scale(1.2); }
  @media only screen and (max-width: 600px) {
    .flex-nav-responsive {
      display: block; } }

.flex-nav {
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
  transition: all 0.5s;
  background-color: transparent; }
  @media only screen and (max-width: 600px) {
    .flex-nav {
      display: none; } }
  .flex-nav ul {
    border-radius: 3px;
    display: flex;
    justify-content: space-around;
    flex: 1; }
    .flex-nav ul a {
      color: #fa0404d2;
      font-weight: 400;
      align-self: center;
      display: inline-block;
      font-weight: 300;
      letter-spacing: 2px;
      text-decoration: none;
      color: white;
      font-family: sans-serif;
      font-size: 1.3rem;
      list-style: none;
      flex: 1;
      align-self: center;
      text-align: center;
      font-weight: 400;
      letter-spacing: 2px;
      text-decoration: none;
      font-family: sans-serif;
      padding: 2rem;
      text-transform: uppercase;
      align-self: center;
      align-items: stretch; }
      @media only screen and (max-width: 1280px) {
        .flex-nav ul a {
          padding: 1.6rem; } }
      @media only screen and (max-width: 1024px) {
        .flex-nav ul a {
          padding: 1.5rem; } }
      @media only screen and (max-width: 768px) {
        .flex-nav ul a {
          font-size: 1rem; } }
      .flex-nav ul a:hover {
        background-color: white;
        transition: all .3s;
        color: #fa0404d2; }

.flex-nav-alt {
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100000;
  transition: all 0.5s;
  background-color: black; }
  @media only screen and (max-width: 600px) {
    .flex-nav-alt {
      display: none; } }
  .flex-nav-alt ul {
    border-radius: 3px;
    display: flex;
    justify-content: space-around;
    flex: 1; }
    .flex-nav-alt ul a {
      color: #fa0404d2;
      font-weight: 400;
      align-self: center;
      display: inline-block;
      font-weight: 300;
      letter-spacing: 2px;
      text-decoration: none;
      color: white;
      font-family: sans-serif;
      font-size: 1.3rem;
      list-style: none;
      flex: 1;
      align-self: center;
      text-align: center;
      font-weight: 400;
      letter-spacing: 2px;
      text-decoration: none;
      font-family: sans-serif;
      padding: 2rem;
      text-transform: uppercase;
      align-self: center;
      align-items: stretch; }
      @media only screen and (max-width: 1280px) {
        .flex-nav-alt ul a {
          padding: 1.6rem; } }
      @media only screen and (max-width: 1024px) {
        .flex-nav-alt ul a {
          padding: 1.5rem; } }
      @media only screen and (max-width: 768px) {
        .flex-nav-alt ul a {
          font-size: 1rem; } }
      .flex-nav-alt ul a:hover {
        background-color: white;
        transition: all .2s;
        color: #fa0404d2; }

.webd {
  margin-bottom: 25%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: linear-gradient(to right bottom, rgba(0, 0, 0, 0.37), rgba(0, 0, 0, 0.295)), url(../img/earth-lights.jpg);
  background-size: cover;
  background-position: top;
  position: relative; }
  .webd__heading {
    text-align: center; }
  .webd__contain {
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center; }
    .webd__contain__testimonial {
      padding: 1rem;
      height: auto;
      margin: 0 7%;
      margin-bottom: 6rem;
      background-color: rgba(255, 255, 255, 0.397);
      border-radius: 2px; }
      @media only screen and (max-width: 320px) {
        .webd__contain__testimonial {
          margin-bottom: 2rem; } }
      .webd__contain__testimonial__paragraph {
        font-size: 2rem;
        color: white; }

.border-white {
  padding: 1rem;
  border: 1rem solid white; }
  @media only screen and (max-width: 600px) {
    .border-white {
      border: .5rem solid white;
      line-height: 2; } }

.music {
  height: 100vh;
  display: flex;
  margin-bottom: 25%;
  background-image: linear-gradient(to right bottom, rgba(122, 5, 255, 0.3), rgba(29, 2, 59, 0.3)), url(../img/blur.jpg);
  background-size: cover;
  background-position: top;
  position: relative; }
  .music__heading {
    width: 20%;
    text-align: center;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center; }
  .music__contain {
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%; }
    .music__contain__testimonial {
      padding: 1rem;
      height: auto;
      margin: 0 7%;
      margin-bottom: 6rem;
      background-color: rgba(255, 255, 255, 0.397);
      border-radius: 2px; }
      .music__contain__testimonial__paragraph {
        font-size: 2rem;
        color: white; }

.robotics {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: linear-gradient(to right bottom, rgba(0, 0, 0, 0.37), rgba(0, 0, 0, 0.295)), url(../img/cogs.jpg);
  background-size: cover;
  background-position: top; }
  .robotics__content {
    display: flex;
    flex-direction: column;
    align-items: center; }
  .robotics__heading {
    text-align: center; }

.blog {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }
  .blog__content {
    display: flex;
    flex-direction: column;
    align-content: space-around;
    align-items: center;
    height: 90vh;
    margin-right: 5%;
    margin-left: 5%; }
    .blog__content__heading {
      text-align: center; }
  .blog__article-container {
    padding: 5rem;
    margin-bottom: 3rem;
    background-color: #ffffff6b;
    border-radius: 1rem; }
    @media only screen and (max-width: 1280px) {
      .blog__article-container {
        padding: 2rem;
        margin-bottom: 2rem; } }
    @media only screen and (max-width: 1024px) {
      .blog__article-container {
        padding: 1rem; } }
    @media only screen and (max-width: 375px) {
      .blog__article-container {
        margin-bottom: 1rem; } }
    .blog__article-container__title {
      padding: 1rem;
      margin-bottom: 1rem;
      text-align: center;
      color: white;
      font-size: 3rem;
      font-weight: 700;
      letter-spacing: 3rem; }
      @media only screen and (max-width: 1024px) {
        .blog__article-container__title {
          margin: 0; } }
      @media only screen and (max-width: 480px) {
        .blog__article-container__title {
          letter-spacing: 1rem;
          font-size: 2rem; } }
      @media only screen and (max-width: 480px) {
        .blog__article-container__title {
          padding: 0; } }
    .blog__article-container__content {
      border: 3px solid white;
      padding: 1rem;
      margin-bottom: 1rem;
      color: white;
      font-size: 1.6rem; }
      @media only screen and (max-width: 1280px) {
        .blog__article-container__content {
          font-size: 1.4rem; } }
      @media only screen and (max-width: 375px) {
        .blog__article-container__content {
          font-size: 1rem; } }

.article-autor {
  text-transform: uppercase;
  text-align: right;
  float: right;
  color: white;
  background-color: #6B6B6B;
  padding: 0 5px;
  letter-spacing: 5px; }
