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

$breakpoint argument choices ;
    - phone 
    - tab-port
    - tab-land
    - big-desktop

    1em = 16pixel

ORDER : base + typography > general layout + grid > page layout > components
*/
@keyframes pulse-white {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0); }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); } }

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

html {
  font-size: 62.5%; }

body {
  box-sizing: border-box; }

section:focus {
  color: transparent; }

body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #777777; }

.heading-primary {
  margin-bottom: 6rem;
  color: #fff;
  text-transform: uppercase; }
  .heading-primary--main {
    display: block;
    font-size: 5rem;
    font-weight: 400;
    letter-spacing: 1rem; }
    @media only screen and (max-width: 56.25em) {
      .heading-primary--main {
        font-size: 4rem; } }
    @media only screen and (max-width: 37.5em) {
      .heading-primary--main {
        font-size: 3rem; } }
    @media only screen and (max-width: 25em) {
      .heading-primary--main {
        font-size: 2rem; } }
  .heading-primary--sub {
    display: block;
    font-weight: 400;
    letter-spacing: .5rem; }
    @media only screen and (max-width: 37.5em) {
      .heading-primary--sub {
        margin-top: 5rem; } }
    @media only screen and (max-width: 56.25em) {
      .heading-primary--sub {
        font-size: 2rem; } }
    @media only screen and (max-width: 37.5em) {
      .heading-primary--sub {
        font-size: 2rem; } }
    @media only screen and (max-width: 25em) {
      .heading-primary--sub {
        font-size: 1rem; } }

.heading-secondary {
  display: inline-block;
  font-size: 5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2rem;
  background-image: linear-gradient(to right, #ffdd59, #ffaf40);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  transition: all .2s; }
  @media only screen and (max-width: 25em) {
    .heading-secondary {
      font-size: 3rem; } }
  .heading-secondary:hover {
    transform: skewX(15deg) skewY(2deg) scale(1.1);
    text-shadow: 0.5rem 1rem 2rem rgba(0, 0, 0, 0.2); }

.u-center-text {
  text-align: center !important; }

.u-margin-bottom-small {
  margin-bottom: 1.5rem !important; }

.u-margin-bottom-medium {
  margin-bottom: 4rem !important; }

.u-margin-bottom-big {
  margin-bottom: 8rem !important; }

.u-margin-top-big {
  margin-top: 8rem !important; }

.u-margin-top-huge {
  margin-top: 10rem !important; }

.row {
  max-width: 114rem !important;
  margin: 0 auto !important; }

.articles__title {
  margin: 5rem 0;
  font-size: 3rem;
  color: #000;
  border-bottom: 1px solid #000; }

.articles__link--link:link, .articles__link--link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: #000; }

.articles__noLink {
  font-size: 1.6rem;
  color: #000; }

.articles__flex {
  display: grid;
  grid-template-columns: .3fr 3fr;
  grid-template-rows: 1fr;
  column-gap: 1rem;
  margin-bottom: 3rem; }
  @media only screen and (max-width: 37.5em) {
    .articles__flex {
      grid-template-columns: 1fr;
      grid-template-rows: repeat(2, 1fr);
      row-gap: 1rem; } }
  .articles__flex--item1 {
    display: block; }
    @media only screen and (max-width: 37.5em) {
      .articles__flex--item1 {
        margin: 0 auto; } }
  .articles__flex--item2 {
    display: block;
    padding-left: 2rem; }
    @media only screen and (max-width: 43.75em) {
      .articles__flex--item2 {
        font-size: 1.3rem; } }

/*
 @include clearfix;
    margin-bottom: 2rem;
    &__shape {
        float: left;
        width: 7rem;
        height: 7rem;
        font-size: 1.5rem;
        font-weight: 700;
    
        background-image: linear-gradient(to right, $color-linear-light, $color-linear-dark);

        overflow: hidden;
        border-radius: 50%;
        position: relative;
        margin-right: 2rem;
        

        @supports (clip-path : polygon(0 0)) or (-webkit-clip-path : polygon(0 0 )) {
            -webkit-clip-path: circle();
            clip-path: circle();
            -webkit-shape-outside : circle();
             shape-outside: circle();
             border-radius: none;
        }

        &--conf {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color : $color-white;
        }

        &--date {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, 70%);
            color: $color-white;
            opacity: 0;
            text-align: center;
            transition: all .5s;
        }
    }
*/
.btn:link, .btn:visited {
  display: inline-block;
  padding: 1.5rem 4rem;
  border-radius: 10rem;
  font-size: 1.6rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s; }
  @media only screen and (max-width: 43.75em) {
    .btn:link, .btn:visited {
      font-size: 1.3rem;
      font-weight: 700;
      color: #fbc531; } }
  @media only screen and (max-width: 25em) {
    .btn:link, .btn:visited {
      padding: 1rem 2.5rem; } }

.btn:hover, .btn:active {
  background-color: #fbc531;
  color: white; }

.btn:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2); }

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

.btn--text:link, .btn--text:visited {
  font-size: 1.6rem;
  padding: 0.5rem;
  display: inline-block;
  color: #fbc531;
  border: none;
  border-radius: 10%; }
  @supports (-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px)) {
    .btn--text:link, .btn--text:visited {
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
      background-color: rgba(255, 255, 255, 0.2); } }
  @media only screen and (max-width: 25em) {
    .btn--text:link, .btn--text:visited {
      font-size: 1.2rem;
      position: absolute;
      top: 70%;
      left: 50%;
      transform: translate(-50%, -50%); } }

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

.card {
  position: relative;
  perspective: 150rem;
  -moz-perspective: 150rem;
  height: 30rem; }
  .card__side {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 30rem;
    transition: all .8s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15); }
    .card__side--front {
      border: 10px solid;
      border-image-slice: 1;
      border-width: 5px;
      border-image-source: linear-gradient(#ffdd59, #ffaf40); }
    .card__side--back {
      transform: rotateY(180deg); }
  .card:hover .card__side--front {
    transform: rotateY(-180deg); }
  .card:hover .card__side--back {
    transform: rotateY(0deg); }
  .card__heading {
    position: absolute;
    top: 50%;
    left: 48%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    font-weight: 300;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    color: #000; }
    @media only screen and (max-width: 62.5em) {
      .card__heading {
        font-size: 2rem;
        font-weight: 400; } }
  .card__heading-span {
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    padding: 1rem 1rem; }
  .card__cta {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center; }
  .card__box {
    margin-top: 10rem;
    margin-bottom: 8rem;
    color: #000; }
  .card__poste {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase; }
  .card__site {
    font-size: 2.5rem;
    font-weight: 300; }
  .card__year {
    font-size: 4rem;
    font-weight: 100; }
  @media only screen and (max-width: 56.25em) {
    .card__poste {
      font-size: 2rem;
      font-weight: 700;
      text-transform: uppercase; }
    .card__site {
      font-size: 2rem;
      font-weight: 300; }
    .card__year {
      font-size: 2rem;
      font-weight: 100;
      padding-top: 1.5rem; } }
  @media only screen and (max-width: 43.75em), only screen and (hover: none) {
    .card {
      position: relative;
      height: auto;
      border-radius: 3px;
      box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
      color: #fff; }
      .card__heading {
        color: #fff; }
      .card__side {
        height: auto;
        position: relative;
        box-shadow: none; }
        .card__side--front {
          height: 12rem;
          background-color: #ffd32a;
          -webkit-clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
          border: none; }
        .card__side--back {
          transform: rotateY(0deg); }
      .card:hover .card__side--front {
        transform: rotateY(0deg); }
      .card__cta {
        position: relative;
        top: 0;
        left: 0;
        transform: translate(0);
        width: 100%;
        padding: 0 4rem; }
      .card__box {
        margin-top: 5rem;
        margin-bottom: 5rem; } }

.btn-move {
  width: 8rem;
  height: 8rem;
  border-style: none;
  background-color: transparent;
  color: black;
  font-size: 1.5rem;
  letter-spacing: .1rem;
  font-weight: 700;
  outline: none;
  padding: 0px;
  overflow: hidden;
  transition: all .5s;
  border-radius: 3px;
  position: relative;
  float: left;
  text-align: center; }
  .btn-move p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
  .btn-move span {
    position: absolute;
    display: block; }
    .btn-move span:nth-child(1) {
      height: 3px;
      width: 8rem;
      top: 0px;
      left: -8rem;
      background: linear-gradient(to left, rgba(0, 0, 0, 0), rgba(255, 221, 89, 0.8));
      border-top-right-radius: 5px;
      border-bottom-right-radius: 5px;
      animation: span1 4s linear infinite;
      animation-delay: 1s; }
    .btn-move span:nth-child(2) {
      height: 8rem;
      width: 3px;
      top: -8rem;
      right: 0px;
      background: linear-gradient(to left, rgba(255, 221, 89, 0.8), rgba(255, 190, 118, 0.8));
      border-bottom-left-radius: 5px;
      border-bottom-right-radius: 5px;
      animation: span2 4s linear infinite;
      animation-delay: 4.8s; }
    .btn-move span:nth-child(3) {
      height: 3px;
      width: 8rem;
      right: -8rem;
      bottom: 0px;
      background: linear-gradient(to left, rgba(255, 190, 118, 0.8), rgba(255, 107, 107, 0.8));
      border-top-left-radius: 5px;
      border-bottom-left-radius: 5px;
      animation: span3 4s linear infinite;
      animation-delay: 10.2s; }
    .btn-move span:nth-child(4) {
      height: 8rem;
      width: 3px;
      bottom: -8rem;
      left: 0px;
      background: linear-gradient(to left, rgba(255, 107, 107, 0.8), rgba(245, 59, 87, 0.8));
      border-top-right-radius: 5px;
      border-top-left-radius: 5px;
      animation: span4 4s linear infinite;
      animation-delay: 4.2s; }

@keyframes span1 {
  0% {
    left: -8rem; }
  100% {
    left: 8rem; } }

@keyframes span2 {
  0% {
    top: -8rem; }
  100% {
    top: 8rem; } }

@keyframes span3 {
  0% {
    right: -8rem; }
  100% {
    right: 8rem; } }

@keyframes span4 {
  0% {
    bottom: -8rem; }
  100% {
    bottom: 8rem; } }

.container__about-me {
  display: flex;
  flex-direction: row; }
  @media only screen and (max-width: 43.75em) {
    .container__about-me {
      flex-direction: column; } }
  .container__about-me--photo {
    height: 40rem;
    flex-basis: 30%;
    border-radius: 3px;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.3); }
    @media only screen and (max-width: 56.25em) {
      .container__about-me--photo {
        height: 30rem;
        margin-left: 2rem; } }
    @media only screen and (max-width: 43.75em) {
      .container__about-me--photo {
        margin: 0 auto;
        margin-bottom: 2.5rem;
        width: 30rem; } }
    @media only screen and (max-width: 25em) {
      .container__about-me--photo {
        width: 100%;
        height: auto; } }
  .container__about-me--description {
    padding: 4rem;
    height: 40rem;
    flex-basis: 70%;
    font-size: 2rem; }
    @media only screen and (max-width: 56.25em) {
      .container__about-me--description {
        font-size: 1.6rem;
        height: 30rem;
        padding: 2rem; } }
    .container__about-me--description span {
      display: inline-block;
      margin-bottom: 3rem;
      text-align: justify; }
      .container__about-me--description span a:link, .container__about-me--description span a:visited {
        color: #ffaf40;
        text-decoration: none; }
    .container__about-me--description---contact {
      text-transform: uppercase;
      font-weight: 700; }

.container__topic {
  margin-top: 10rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  text-align: center;
  font-size: 2rem; }
  @media only screen and (max-width: 56.25em) {
    .container__topic {
      font-size: 1.6rem; } }
  @media only screen and (max-width: 43.75em) {
    .container__topic {
      margin-top: 5rem; } }
  @media only screen and (max-width: 37.5em) {
    .container__topic {
      grid-template-columns: repeat(1, 1fr);
      grid-template-rows: repeat(6, 1fr); } }
  .container__topic > * {
    padding: 2rem;
    display: inline-block;
    transition: all .2s; }
    .container__topic > * i {
      font-size: 6rem;
      padding: 2rem; }
    .container__topic > *:hover {
      transform: translateY(-1.5rem) scale(1.03);
      box-shadow: 0 3rem 4rem rgba(0, 0, 0, 0.2); }
  .container__topic [class$="box"]:nth-child(2n+1) {
    background-color: #ffd32a;
    color: #fff; }
  .container__topic [class$="box"]:nth-child(2n) {
    background-color: #fff; }
    .container__topic [class$="box"]:nth-child(2n) i,
    .container__topic [class$="box"]:nth-child(2n) h3 {
      background-image: linear-gradient(to right, #ffdd59, #ffaf40);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent; }
  .container__topic :nth-child(1) {
    border-top-left-radius: .5rem; }
  .container__topic :nth-child(3) {
    border-top-right-radius: .5rem; }
  .container__topic :nth-child(4) {
    border-bottom-left-radius: .5rem; }
  .container__topic :nth-child(6) {
    border-bottom-right-radius: .5rem; }

.container__card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(1, 1fr);
  column-gap: 10rem; }
  @media only screen and (max-width: 56.25em) {
    .container__card {
      column-gap: 1rem; } }
  @media only screen and (max-width: 43.75em) {
    .container__card {
      grid-template-columns: .6fr;
      grid-template-rows: repeat(3, 1fr);
      column-gap: 0;
      row-gap: 3rem;
      justify-content: center; } }
  @media only screen and (max-width: 37.5em) {
    .container__card {
      grid-template-columns: 1fr;
      grid-template-rows: repeat(3, 1fr);
      column-gap: 0;
      row-gap: 3rem;
      justify-content: center; } }

footer {
  margin: 0 auto;
  height: 10vh;
  padding: 10rem 0;
  font-size: 1.4rem;
  background-color: #333;
  position: relative; }
  footer p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    color: #777777;
    text-align: center; }
    @media only screen and (max-width: 25em) {
      footer p {
        font-size: 1.2rem; } }

.header {
  height: 100vh;
  position: relative;
  background-image: url(../img/horizon-photo.JPG);
  background-size: cover;
  background-position: center;
  background-attachment: fixed; }
  .header__text-box {
    width: 100%;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center; }
    .header__text-box a:last-child {
      margin-top: 2rem; }

.navigation {
  position: relative; }
  .navigation__nav {
    display: inline; }
  .navigation__list {
    list-style: none;
    float: right; }
  .navigation__item {
    display: inline-block;
    margin: 3rem 3rem 2rem 3rem; }
    @media only screen and (max-width: 43.75em) {
      .navigation__item {
        display: block; } }
  .navigation__background {
    display: none; }
  .navigation__link {
    padding-bottom: 1rem; }
    .navigation__link:link, .navigation__link:visited {
      font-size: 2rem;
      font-weight: 400;
      color: #fff;
      text-decoration: none;
      border-bottom: 2px solid transparent;
      transition: all .4s; }
      @media only screen and (max-width: 56.25em) {
        .navigation__link:link, .navigation__link:visited {
          font-size: 1.8rem; } }
    .navigation__link:hover, .navigation__link:active {
      border-bottom: 2px solid #ffd32a; }
  .navigation__logo {
    margin: 2rem;
    height: 6rem; }
    @media only screen and (max-width: 56.25em) {
      .navigation__logo {
        height: 5rem; } }
    @media only screen and (max-width: 43.75em) {
      .navigation__logo {
        margin: 2rem 5rem;
        height: 6rem; } }
    @media only screen and (max-width: 25em) {
      .navigation__logo {
        margin: 1.3rem 0 1.5rem 2rem;
        height: 5rem; } }
  .navigation__checkbox {
    display: none; }
  @media only screen and (max-width: 43.75em) {
    .navigation__background {
      display: block; }
    .navigation__button {
      background-color: #fff;
      height: 6rem;
      width: 6rem;
      border-radius: 50%;
      position: fixed;
      top: 2rem;
      right: 5rem;
      z-index: 2000;
      box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
      text-align: center;
      cursor: pointer; } }
  @media only screen and (max-width: 43.75em) and (max-width: 25em) {
    .navigation__button {
      height: 4rem;
      width: 4rem;
      top: 2rem;
      right: 3rem; } }
  @media only screen and (max-width: 43.75em) {
    .navigation__background {
      height: 5rem;
      width: 5rem;
      border-radius: 50%;
      position: fixed;
      top: 2.5rem;
      right: 5.5rem;
      background-image: radial-gradient(#ffdd59, #ffaf40);
      z-index: 1000;
      transition: transform 0.8s cubic-bezier(0.83, 0, 0.17, 1); } }
  @media only screen and (max-width: 43.75em) and (max-width: 25em) {
    .navigation__background {
      height: 4rem;
      width: 4rem;
      top: 2rem;
      right: 3rem; } }
  @media only screen and (max-width: 43.75em) {
    .navigation__nav {
      height: 100vh;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1500;
      opacity: 0;
      width: 0;
      visibility: hidden;
      transition: all 0.8s cubic-bezier(0.87, 0, 0.13, 1); }
    .navigation__list {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      list-style: none;
      text-align: center;
      width: 100%; }
    .navigation__item {
      margin: 1rem; }
    .navigation__link:link, .navigation__link:visited {
      display: inline-block;
      padding: 1rem 2rem;
      font-size: 3rem;
      font-weight: 700;
      text-decoration: none;
      text-transform: uppercase;
      color: #fff;
      background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #fff 50%);
      background-size: 230%;
      transition: all .5s; } }
  @media only screen and (max-width: 43.75em) and (max-width: 25em) {
    .navigation__link:link, .navigation__link:visited {
      font-size: 2rem; } }
  @media only screen and (max-width: 43.75em) {
      .navigation__link:link span, .navigation__link:visited span {
        margin-right: 1.5rem;
        display: inline-block; }
    .navigation__link:hover, .navigation__link:active {
      color: #ffd32a;
      background-position: 100%;
      transform: translateX(1rem); }
    .navigation__checkbox:checked ~ .navigation__background {
      transform: scale(120); }
    .navigation__checkbox:checked ~ .navigation__nav {
      opacity: 1;
      width: 100%;
      visibility: visible; }
    .navigation__icon {
      position: relative;
      margin-top: 3rem; }
      .navigation__icon, .navigation__icon::before, .navigation__icon::after {
        height: 2px;
        width: 3rem;
        display: inline-block;
        background-color: #333; }
      .navigation__icon::before, .navigation__icon::after {
        content: "";
        position: absolute;
        left: 0;
        transition: all .2s; }
      .navigation__icon::before {
        top: -.8rem; }
      .navigation__icon::after {
        top: .8rem; } }

@media only screen and (max-width: 43.75em) and (max-width: 25em) {
  .navigation__icon {
    position: relative;
    margin-top: 2rem; }
    .navigation__icon, .navigation__icon::before, .navigation__icon::after {
      height: 1.5px;
      width: 2.5rem;
      display: inline-block;
      background-color: #333; }
    .navigation__icon::before, .navigation__icon::after {
      content: "";
      position: absolute;
      left: 0;
      transition: all .2s; }
    .navigation__icon::before {
      top: -.7rem; }
    .navigation__icon::after {
      top: .7rem; } }
  @media only screen and (max-width: 43.75em) {
    .navigation__button:hover .navigation__icon::before {
      top: -1.2rem; }
    .navigation__button:hover .navigation__icon::after {
      top: 1.2rem; }
    .navigation__checkbox:checked + .navigation__button .navigation__icon {
      background-color: transparent; }
    .navigation__checkbox:checked + .navigation__button .navigation__icon::before {
      top: 0;
      transform: rotate(135deg); }
    .navigation__checkbox:checked + .navigation__button .navigation__icon::after {
      top: 0;
      transform: rotate(-135deg); } }

.sticky {
  position: relative;
  z-index: 7000; }
  .sticky .navigation {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    height: 10rem;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff; }
    @supports (-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px)) {
      .sticky .navigation {
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        background-color: rgba(0, 0, 0, 0.2); } }
    @media only screen and (max-width: 25em) {
      .sticky .navigation {
        height: 7rem; } }

.section-about {
  background-color: #f7f7f7;
  padding: 15rem 0; }
  @media only screen and (max-width: 43.75em) {
    .section-about {
      padding: 10rem 0; } }

.section-articles {
  background-color: #eee;
  padding: 15rem 0 10rem 0; }
  @media only screen and (max-width: 43.75em) {
    .section-articles {
      padding: 10rem 0; } }

.section-teaching {
  background-color: #f7f7f7;
  padding: 15rem 0; }
  @media only screen and (max-width: 43.75em) {
    .section-teaching {
      padding: 10rem 0; } }

.section-thesis {
  color: #000;
  background-color: #f7f7f7;
  padding: 15rem 0; }
  @media only screen and (max-width: 43.75em) {
    .section-thesis {
      padding: 10rem 0; } }
  .section-thesis .thesis--text {
    /*figure {
            display: table;
            float: left;
          }

        figcaption {
            display: table-caption;
            caption-side: top;
            font-size: 1.5rem;
            text-align: center;
          }*/ }
    @media only screen and (max-width: 43.75em) {
      .section-thesis .thesis--text {
        text-align: center; } }
    .section-thesis .thesis--text img {
      float: left;
      height: 30rem;
      margin: 1rem 3rem 1.5rem 0; }
      @media only screen and (max-width: 56.25em) {
        .section-thesis .thesis--text img {
          height: 25rem; } }
      @media only screen and (max-width: 43.75em) {
        .section-thesis .thesis--text img {
          float: none; } }
      @media only screen and (max-width: 25em) {
        .section-thesis .thesis--text img {
          width: 100%;
          margin: 0; } }
    .section-thesis .thesis--text p {
      text-align: justify;
      margin-bottom: 2rem;
      font-size: 1.6rem; }
      @media only screen and (max-width: 43.75em) {
        .section-thesis .thesis--text p {
          padding: 0 1rem; } }
