 * {
     box-sizing: border-box;
     box-sizing: border-box;
     margin: 0;
     padding: 0;

 }

 body {
     background-color: #F5F5F5;
     overflow-x: hidden;
     font-family: 'Rasa', serif;
     font-family: 'Roboto', sans-serif;
 }

 p {
     font-family: 'Roboto', sans-serif;
     font-size: 1rem;
     line-height: 1.4rem;
     color: #222222;
 }

 h1 {
     font-family: 'Rasa', serif;
     font-size: 48px;
     color: #fff;
 }

 h2 {
     font-family: 'Rasa', serif;
     font-size: 208px;
     color: #000266;
     /*     text-align: right;*/
 }

 .title {
     color: #000266;
     font-family: 'Rasa', serif;
     font-size: 3rem;
     line-height: 3.75rem;
 }

 h3 {
     font-family: 'Roboto', sans-serif;
     font-size: 0.8rem;
     line-height: 2rem;
     color: #000266;
     text-transform: uppercase;
     font-weight: 400;
 }

 header {
     font-size: 1.2rem;
     line-height: 2rem;
     position: fixed;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     margin: 2vh;
     z-index: 10;


 }

 header li {
     list-style-type: none;
 }

 header li a {
     text-decoration: none;
     color: #222222;
 }

 a:hover {
     color: #000266;
 }

 .layoutSection {
     width: 100%;
     max-width: 1400px;
     padding: 0 32px;
     margin: 0 auto;
 }

 .hero {
     position: relative;
     max-height: 100vh;
     height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;

 }

 .hero_background {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: -1;
 }

 .hero_background img {
     transform: translate(-50%, -50%);
     top: 50%;
     left: 50%;
     object-fit: contain;
     position: absolute;
     width: 90%;
     height: 90%;

 }

 .subject {
     display: grid;
     grid-template-columns: repeat(8, 1fr);
     /*     grid-template-columns: 1fr,
1fr;*/
     grid-column-gap: 40px;
     grid-row: 40px;
     grid-row-gap: 40px;
     margin-bottom: 20vh;

 }

 .subject_title {
     grid-column: 2 / span 3;
 }

 .subject_body {
     grid-column: span 5;
     /*     grid-column-start: 4;*/

 }

 .subject_illustration {
     grid-column-start: 1;
     grid-column: 3 / span 7;
     object-fit: contain;
     width: 70%;
 }

 .experiment {
     display: grid;
     grid-template-columns: repeat(8, 1fr);
     grid-column-gap: 40px;
     grid-row: 40px;
     grid-row-gap: 80px;
     /*     align-items: end;*/
     margin-bottom: 20vh;

 }

 .experiment_title {
     grid-column: 2 / span 3;
     /*     grid-column-start: 2;*/
 }

 .experiment_body {
     grid-column: span 5;
     /*     grid-column-start: 4;*/

 }

 .experiment_tools {
     grid-column: 2 / span 2;
 }

 .experiment_tools li {
     list-style-type: none;
 }

 .experiment_illustration {
     grid-column: 5 / span 7;
     object-fit: contain;
     width: 60%;
 }

 .experiment_more {
     grid-column: 2 / span 4;
 }

 .experiment_ink {
     grid-column: 2 / span 6;
     display: flex;
     justify-content: space-between;
 }

 .experiment_ink img {
     width: 40%;

 }

 .results {
     display: grid;
     grid-template-columns: repeat(8, 1fr);
     grid-column-gap: 40px;
     grid-row: 40px;
     grid-row-gap: 80px;
     /*     align-items: end;*/
     margin-bottom: 20vh;
 }

 .results_title {
     grid-column: 2 / span 3;
     /*     grid-column-start: 2;*/
 }

 .results_body {
     grid-column: span 5;
     /*     grid-column-start: 4;*/
 }

 .results_illustration {
     grid-column: 4 / span 8;
     object-fit: contain;
     width: 60%;
 }

 .results_more {
     grid-column: 2 / span 5;
 }

 .results_ink {
     grid-column: 2 / span 6;
     display: flex;
     justify-content: space-between;
 }

 .results_ink img {
     width: 40%;
 }

 .transition {
     display: grid;
     grid-template-columns: repeat(8, 1fr);
     grid-column-gap: 40px;
     grid-row: 40px;
     grid-row-gap: 80px;
     margin-bottom: 10vh;
 }

 .transition_illustration {
     grid-column: 3 / span 8;
     object-fit: contain;
     width: 80%;
 }

 .transition_more {
     grid-column: 2 / span 5;
 }
