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

body,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Mukta', sans-serif;
}

body,
html {
    height: 100%;
    line-height: 1.8;
}

body {
    margin: 0;
    background-color: #fcfcfc;
}

h1 {
    font-size: 48px;
    /* color:#105a5f; */
    /* color:#1f7b82; */
    color: black;
    font-weight: 600;
    line-height: 60px;
    /* text-transform: uppercase; */
    letter-spacing: 2px;
}

h2,
h3 {
    /*color:#105a5f;*/
    /* color:#1f7b82; */
    color: black;
    letter-spacing: 1px;
    text-align: center;
    font-weight: 400;
    line-height: 42px;
    /*margin:auto;*/
}

p {
    font-size: large;
    font-weight: 300;
    letter-spacing: .05em;
    /* letter-spacing:1px; */
}

span.orange-subtitle {
    color: #f27052;
}

.text-links {
    max-width: 1200px;
    text-align: center;
}

.text-links a {
    padding: 0 12px;
    font-size: 20px;
    color: lightgrey;
    font-weight: 800;
    line-height: 36px;
    letter-spacing: 0;
    text-decoration: none;
    white-space: pre;
}

.text-links a:hover {
    color: #f27052;
}

a.active-links {
    color: #f27052;
}

.grey-text {
    color: grey;
}

.project-text {
    padding-top: 18px;
    width: 50%;
}

.about-text {
    padding: 26px;
    letter-spacing: 1px;
    font-size: 17px;
    font-weight: 300;
    width: 65%;
    /*text-align: center;*/
    display: block;
    margin: auto;
}


/* Center website  */

.main {
    max-width: 1400px;
    margin: auto;
}

.nav-main {
    /*padding-top:20px;*/
    max-width: 1400px;
    margin: auto;
}

header {}

.project-main {
    max-width: 1200px;
    margin: auto;
    padding: 0 12px;
}


/* Center website END */


/* navbar */

.navbar {
    padding-top: 16px;
    margin-bottom: 12px;
    /*padding: 30px 0;*/
    width: 100%;
    height: 80px;
    line-height: 80px;
    font-size: 18px;
    position: relative;
    /*position: absolute;*/
    top: 0;
    left: 0;
    z-index: 1;
}


/* position brand */

.topnav-centered a {
    float: left;
    position: absolute;
    /*top: 50%;*/
    /*left: 50%;*/
    /*transform: translate(-50%, -50%);*/
}

.navbar a {
    text-decoration: none;
    color: black;
    letter-spacing: 0.5px;
}

.navbar a.nav-active {
    color: #f27052;
    /* color: black; */
}

.navbar a.navbar-white {
    text-decoration: none;
    color: #e3e3e3;
    /*color: white;*/
}

.navbar a.navbar-brand {
    /* color:#105a5f; */
    color: black;
    /* color:#272727; */
    height: inherit;
    line-height: inherit;
    padding: 0 24px;
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    /*margin-top: 2px;*/
}

.navbar ul {
    float: right;
    list-style: none;
    height: inherit;
    line-height: inherit;
    padding: 0 10px;
}

.navbar ul li {
    display: inline-block;
    padding: 0 0;
    /* here to control the space between each menu */
}

.navbar ul li a {
    font-weight: 600;
    font-size: 18px;
    /*letter-spacing: 0px;*/
    transition: 0.3s;
    display: block;
    text-align: center;
    min-width: 40px;
    padding: 0 20px;
}

.navbar ul li a:hover {
    color: #d7593c;
}

.navbar .navbar-toggler {
    display: none;
}

@media (max-width: 991px) {
    .about-text {
        padding: 24px;
        width: 90%;
    }
    .project-text {
        width: 100%;
    }
    .navbar ul {
        padding: 0 20px;
    }
    .navbar ul li a {
        min-width: 80px;
        padding: 0 5px;
    }
}

@media (max-width: 600px) {
    .about-text {
        width: 100%;
        text-align: left;
    }
    .text-links a {
        padding: 0 6px;
        font-size: 16px;
        line-height: 20px;
    }
    h1 {
        font-size: 36px;
        line-height: 36px;
    }
    h2 {
        font-size: 22px;
        line-height: 20px;
    }
    .project-text {
        width: 100%;
    }
    .navbar {
        padding-top: 0;
        /*background-color: rgba(255,255,255,0.2);*/
    }
    .navbar a {
        text-align: center;
    }
    .navbar a.navbar-white {
        color: grey;
    }
    /* I was trying so hard to make the brand center in mobile screens !!! now I decide to make it left..... life is not easy ...*/
    /*.topnav-centered a {*/
    /*width: 100%;*/
    /*float: none;*/
    /*position: absolute;*/
    /*top: 50%;*/
    /*left: 50%;*/
    /*transform: translate(-50%, -50%);*/
    /*}*/
    .navbar ul {
        width: 100%;
        padding: 0;
        background-color: #fcfcfc;
        /*background-color: grey;*/
        /* height: auto; */
        height: 100vh;
        max-height: 0;
        overflow: hidden;
        transition: all ease-in-out 0.3s;
    }
    #dark-nav-bg {
        background-color: #272727;
    }
    .navbar ul.open {
        max-height: 100vh;
    }
    .navbar ul li {
        position: relative;
        top: 25%;
        /*text-align: center;*/
        /*margin-top: 30px;*/
        width: 100%;
        /*border-bottom: 1px solid rgba(255,255,255,0.3);*/
    }
    .navbar ul li a {
        /*padding: 0;*/
        /*padding-left:50px;*/
        font-size: 36px;
        font-weight: 800;
    }
    .navbar .navbar-toggler {
        display: block;
        position: absolute;
        height: 24px;
        top: 28px;
        right: 20px;
        background-color: transparent;
        /*     color: grey; */
        /*     border: 3px solid #fff; */
        border: none;
        /* border-radius: 4px; */
        outline: none;
        padding: 0 5px;
        cursor: pointer;
    }
    .navbar .navbar-toggler span,
    .navbar .navbar-toggler span::before,
    .navbar .navbar-toggler span::after {
        display: block;
        content: '';
        background-color: #1f7b82;
        height: 3px;
        width: 24px;
        /*border-radius: 4px;*/
        transition: all ease-in-out 0.3s;
    }
    .navbar .navbar-toggler span::before {
        transform: translateY(-8px);
    }
    .navbar .navbar-toggler span::after {
        transform: translateY(5px);
    }
    .navbar .navbar-toggler.open-navbar-toggler span {
        /* transform: rotate(90deg); */
        background-color: transparent;
        /* transform: scale(0.85) rotate(270deg); */
    }
    .navbar .navbar-toggler.open-navbar-toggler span::before {
        transform: translateY(0px) rotate(45deg);
        /* transform: translateY(0px) scale(0.75) rotate(45deg); */
    }
    .navbar .navbar-toggler.open-navbar-toggler span::after {
        transform: translateY(-3px) rotate(-45deg);
        /* transform: translateY(-3px) scale(0.75) rotate(-45deg); */
    }
}


/* navbar END */


/* Homepage image grid */

.rows {
    margin: 4px 0;
    /*display: -ms-flexbox; !* IE10 *!*/
    /*display: flex;*/
    /*-ms-flex-wrap: wrap; !* IE10 *!*/
    /*flex-wrap: wrap;*/
    /*padding: 0 4px;*/
}


/* Add padding BETWEEN each column */

.rows,
.rows>.columns {
    /* do not understand, why use ">" */
    padding: 12px 12px;
}


/* Create two equal columns that sits next to each other */

.columns {
    float: left;
    width: 50%;
    padding-left: 0;
    /*background-color: grey;*/
    /*-ms-flex: 100%; !* IE10 *!*/
    /*flex: 100%;*/
    /*max-width: 100%;*/
}


/* Clear floats after rows */

.rows:after {
    content: "";
    display: table;
    clear: both;
}

.image-small {
    float: left;
    width: 50%;
    padding-bottom: 12px;
    /*margin:12px 0;*/
}

.image-big {
    padding-bottom: 12px;
    /*margin:12px 0;*/
}

.image-left {
    padding-right: 12px;
}

.image-right {
    padding-left: 12px;
}

.image-about {
    /*width:50%;*/
    /*border-radius: 50%;*/
    /*float:right;*/
    /*margin:auto;*/
}


/* Add padding BETWEEN each column */


/*  play page image grid, copy from home page */

.p-rows {
    margin: 8px -16px;
}


/* Add padding BETWEEN each column (if you want) */

.p-rows,
.p-rows>.p-columns {
    padding: 8px;
}


/* Create three equal columns that floats next to each other */

.p-columns {
    float: left;
    width: 33.33%;
    padding-left: 0;
    /*display: none; !* Hide columns by default *!*/
}


/* Clear floats after rows */

.p-rows:after {
    content: "";
    display: table;
    clear: both;
}


/* Content */

.p-contents {
    background-color: white;
    padding: 10px;
}


/* The "show" class is added to the filtered elements */

.show {
    display: block;
}


/* Style the buttons */

.p-btn {
    border: none;
    outline: none;
    padding: 12px 16px;
    background-color: white;
    cursor: pointer;
}


/* Add a grey background color on mouse-over */

.p-btn:hover {
    background-color: #ddd;
}


/* Add a dark background color to the active button */

.p-btn.active {
    background-color: #666;
    color: white;
}


/*.contents {*/


/*padding:0 0;*/


/*}*/


/* Responsive layout -  two column-layout */

@media screen and (max-width: 800px) {
    .columns {
        width: 50%;
        /*-ms-flex: 50%;*/
        /*flex: 50%;*/
        /*max-width: 50%;*/
    }
}


/* Responsive layout - one column */

@media screen and (max-width: 600px) {
    .image-small {
        width: 100%;
    }
    .image-left {
        padding-right: 0;
    }
    .image-right {
        padding-left: 0;
    }
    .columns {
        width: 100%;
        /*-ms-flex: 100%;*/
        /*flex: 100%;*/
        /*max-width: 100%;*/
    }
}


/* Homepage image grid END*/


/* image hover effect */

.hovereffect {
    width: 100%;
    height: 100%;
    float: left;
    overflow: hidden;
    position: relative;
    /*text-align:center;*/
    cursor: pointer;
}

.hovereffect .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    opacity: 0;
    /*background-color:rgba(16, 90, 95, 0.5);*/
    background-color: rgba(255, 255, 255, 0.85);
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.hovereffect img {
    display: block;
    position: relative;
    -webkit-transition: all 2s linear;
    transition: all 2s linear;
}

.hovereffect h2 {
    /*text-transform:uppercase;*/
    color: #f27052;
    text-align: center;
    position: relative;
    font-size: 36px;
    font-weight: 800;
    /*background:rgba(0,0,0,0.6);*/
    /*-webkit-transform:translatey(-100px);*/
    /*-ms-transform:translatey(-100px);*/
    /*transform:translatey(-100px);*/
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    padding: 10px;
    /* make the text center */
    margin: 0;
    /*position: absolute;*/
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.hovereffect:hover img {
    -ms-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.hovereffect:hover .overlay {
    opacity: 1;
    filter: alpha(opacity=100);
}


/* image hover effect END */


/* scroll to top button */

#myBtn {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Fixed/sticky position */
    bottom: 20px;
    /* Place the button at the bottom of the page */
    right: 24px;
    /* Place the button 30px from the right */
    z-index: 99;
    /* Make sure it does not overlap */
    border: none;
    /* Remove borders */
    outline: none;
    /* Remove outline */
    background-color: transparent;
    /* Set a background color */
    /*color: grey; !* Text color *!*/
    cursor: pointer;
    /* Add a mouse pointer on hover */
    /*padding: 15px; !* Some padding *!*/
    /*border-radius: 10px; !* Rounded corners *!*/
    /*font-size: 18px; !* Increase font size *!*/
}

#myBtn:hover {
    /*background-color: #555; !* Add a dark-grey background on hover *!*/
    -ms-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}


/* scroll to top button END */


/* footer and copyright */

.containerCenter {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    padding-left: 16px;
    width: 100%;
}

#bottom {
    bottom: 0;
    letter-spacing: .04em;
    /*font-size: small;*/
    font-size: 16px;
    margin-top: 45px;
    margin-bottom: 24px;
    color: rgb(150, 150, 150);
    /*width: 100%;*/
}


/* footer and copyright END */


/* parallax effect */


/*.parallax-container{*/


/*!* Define the height of the container*/


/*where the image will be *!*/


/*height:85%;*/


/*margin: 0;*/


/*}*/

header {
    width: 100%;
    background-color: grey;
    height: 100%;
    margin: 0;
    background-attachment: fixed;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    /*height: 100%;*/
}

.header-image1 {
    background-image: url('1neos06.jpg');
}

.header-image2 {
    background-image: url('2qiro-head-2.jpg');
}

.header-image3 {
    background-image: url('3sound-1.jpg');
}

.header-image4 {
    background-image: url('4shift-0.jpg');
}

.header-image5 {
    background-image: url('5material-new-2.jpg');
}

.header-image6 {
    background-image: url('6yinyun-7.jpg');
}

.header-image7 {
    background-image: url('7eattea-1.jpg');
}

.header-image8 {
    background-image: url('8mirror.jpg');
}

.header-image9 {
    background-image: url('9mini-head2.jpg');
}

.header-image10 {
    background-image: url('10salestraining0.jpg');
}

.header-image11 {
    background-image: url('11aicoaching.jpg');
}

.header-image12 {
    background-image: url('12peelsphere0.png');
}

.header-image13 {
    background-image: url('13wookong.png');
}


/*.header-image8 {*/


/*background-image: url('play-muscle.mp4');*/


/*}*/


/* somehow the above video header parallax is working in safari but not chrome */

@media (max-width: 600px) {
    header {
        height: 45%;
        background-attachment: scroll;
        /*background-size: contain;*/
    }
}


/* parallax effect END */


/* playground */

.play-content {
    /*max-width: 1000px;*/
    /*margin: auto;*/
    /*margin-left: 200px;*/
    width: 80%;
    /* Same width as the sidebar + left position in px */
    /*font-size: 28px; */
    /*padding: 0 24px 0 10px;*/
    padding-right: 12px;
    padding-top: 0;
    /*margin-right: 50px;*/
    /*display: flex;*/
    /*flex-direction: column;*/
    float: right;
}

.play-text {
    /*font-family: 'Overpass Mono', monospace;*/
    font-size: 17px;
    font-weight: 200;
    letter-spacing: 1px;
    color: lightgray;
    /*width:120%; */
    /*margin-left: -8px;*/
    /*text-align: right;*/
    float: left;
    width: 40%;
    /*padding: 0 0 12px 45px;*/
    padding: 0;
    /*margin: 0;*/
    /*position: absolute;*/
    /*top: 50%;*/
    /*-ms-transform: translateY(-50%);*/
    /*transform: translateY(-50%);*/
}

.play-left {
    float: right;
    width: 55%;
    padding: 12px 0 0 0;
    margin: 0;
}

.play-title {
    /*font-family: 'Overpass Mono', monospace;*/
    color: white;
    margin: 10px 0 -12px 0;
    border-top: 1px solid darkgray;
    /*text-decoration: overline;*/
    width: 250px;
    padding-top: 24px;
    /*padding-left: 18px;*/
    padding-bottom: 8px;
    /*margin-bottom: -8px;*/
    letter-spacing: 2px;
    font-size: 36px;
}

@media screen and (max-width: 991px) {
    /*.play-content{*/
    /*margin-right: 24px;*/
    /*margin-left: 24px;*/
    /*}*/
    .play-text {
        width: 50%;
        padding: 0 16px 12px 16px;
        /*-ms-flex: 100%;*/
        /*flex: 100%;*/
        /*max-width: 100%;*/
    }
    .play-left {
        width: 100%;
        margin-bottom: 72px;
    }
}

@media screen and (max-width: 600px) {
    .play-text {
        width: 100%;
        padding: 0 16px 12px 16px;
    }
}


/* playground sidenav  */

section {
    height: 92.5vh;
    /*height: 100vh;*/
    /*background: var(--main-black);*/
    /*color: var(--main-white);*/
    position: relative;
    /*margin-top: 24px;*/
}


/* scroll indicator */

.scroll-indicator {
    /*width: 130px;*/
    /*position: fixed;*/
    /*z-index: 1;*/
    /*top: 20px;*/
    /*left: 10px;*/
    /*background: #eee;*/
    /*padding: 70px 8px 8px 8px;*/
    overflow-x: hidden;
    /*margin: 0;*/
    /*padding: 0;*/
    /*position: fixed;*/
    /*left: 0;*/
    /*top: 50%;*/
    /*transform: translateY(-60%);*/
    /*z-index: 99;*/
    padding-top: 30px;
}

.scroll-indicator li {
    cursor: pointer;
    font-family: 'Overpass Mono', monospace;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 16px;
    color: dimgrey;
    /*   width: 15px;
      height: 15px;
      background: #333;
      border-radius: 50%; */
    margin-top: 6px;
    transition: ease-in-out 0.3s;
    /*transition: all 0.3s cubic-bezier(0.230, 1.000, 0.320, 1.000);*/
}

.scroll-indicator li:hover,
.scroll-indicator li.you-are-here {
    /*   background: #d93a32; */
    font-size: 16px;
    color: #f27052;
    /*color:white;*/
    /*text-decoration: overline;*/
}

.sidebar {
    width: 20%;
    height: 80vh;
    /*experiment with this value, try changing to 110vh*/
    min-height: 200px;
    overflow: auto;
    position: -webkit-sticky;
    position: sticky;
    top: 10%;
    padding-left: 12px;
}


/* this wrapper is important, although I don't understand... */

.wrapper {
    display: flex;
    justify-content: space-between;
}

.fun {
    font-family: 'Overpass Mono', monospace;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 84px;
    font-size: 72px;
    position: absolute;
    /*text-align: center;*/
    z-index: 9999;
    color: #1f7b82;
    /*text-shadow: 0 0 10px lightgray;*/
    /*color:lightgray;*/
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-container {
    background-color: #272727;
    z-index: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

#video-bg {
    width: 100%;
    /*height: 100%;*/
}

@media screen and (min-width: 1300px) {
    .sidebar {
        margin-left: -48px;
        top: 10%
    }
    .play-content {
        width: 85%;
        padding-top: 96px;
    }
    .fun {
        line-height: 96px;
        font-size: 84px;
        top: 50%;
    }
    .scroll-indicator {
        padding-top: 120px;
    }
}

@media screen and (max-width: 991px) {
    .scroll-indicator li {
        display: none;
    }
    .play-content {
        /*margin:auto;*/
        width: 100%;
        padding-top: 0;
        margin-top: -200px;
    }
    .sidebar {
        width: 0;
        /*height: 0;*/
    }
    .play-left {
        padding: 16px;
    }
    .fun {
        line-height: 48px;
        font-size: 48px;
        top: 35%;
    }
    /*section{*/
    /*height:110vh;*/
    /*}*/
}

@media screen and (max-width: 600px) {
    .fun {
        display: none;
    }
    .play-content {
        margin-top: 100px;
    }
}


/*.parallax-image{*/


/*!*position: absolute;*!*/


/**/


/*!* The image used *!*/


/*!*background-image: url('3qiro-1.jpg');*!*/


/*!* Full height *!*/


/*!*height: 100%;*!*/


/*!* Create the parallax scrolling effect *!*/


/*background-attachment: fixed;*/


/*background-position: center top;*/


/*background-repeat: no-repeat;*/


/*background-size: contain;*/


/*height: 100%;*/


/*!*margin-left: 16px;*!*/


/*!*margin-right: 16px;*!*/


/*!*-webkit-transform: translateZ(-1px) scale(2);*!*/


/*!*!*-moz-transform: translateZ(-1px) scale(2);*!*!*/


/*!*transform: translateZ(-1px) scale(2);*!*/


/*!*z-index: -99;*!*/


/*}*/


/*.bg1{*/


/*background-image: url('2shift-1.jpg');*/


/*}*/


/*.bg2{*/


/*background-image: url('3qiro-1.jpg');*/


/*}*/


/*.bg4{*/


/*background-image: url('4shift-1.jpg');*/


/*}*/


/*.parallax-i p{*/


/*text-align:center;*/


/*position:relative;*/


/*color: white;*/


/*font-size: 10em;*/


/*!* make the text center *!*/


/*margin: 0;*/


/*!*position: absolute;*!*/


/*top: 50%;*/


/*left: 50%;*/


/*-ms-transform: translate(-50%, -50%);*/


/*transform: translate(-50%, -50%);*/


/*}*/


/*!* Turn off parallax scrolling for tablets and phones. Increase the pixels if needed *!*/


/*@media only screen and (max-device-width: 1366px) {*/


/*.parallax {*/


/*background-attachment: scroll;*/


/*}*/


/*}*/


/* parallax effect END */


/* playground default-display grid */


/*.row, .row-list{*/


/*display: -ms-flexbox; !* IE10 *!*/


/*display: flex;*/


/*-ms-flex-wrap: wrap; !* IE10 *!*/


/*flex-wrap: wrap;*/


/*!*padding: 0 4px;*!*/


/*}*/


/*.row{*/


/*justify-content: center;*/


/*!*display: flex;*!*/


/*!*align-items: center;*!*/


/*!*align-content: center;*!*/


/*}*/


/*.row-list{*/


/*justify-content: space-between;*/


/*}*/


/*!* Create four equal columns that sits next to each other *!*/


/*.column {*/


/*-ms-flex: 23%; !* IE10 *!*/


/*flex: 23%;*/


/*max-width: 23%;*/


/*padding: 0 10px;*/


/*}*/


/*.column-text{*/


/*-ms-flex: 30%; !* IE10 *!*/


/*flex: 30%;*/


/*max-width: 30%;*/


/*padding: 0 32px;*/


/*}*/


/*.column-pic{*/


/*-ms-flex: 50%; !* IE10 *!*/


/*flex: 50%;*/


/*max-width: 50%;*/


/*padding: 0;*/


/*}*/


/*.column img {*/


/*margin-top: 24px;*/


/*vertical-align: middle;*/


/*}*/


/*!* Responsive layout - makes a two column-layout instead of four columns *!*/


/*@media screen and (max-width: 800px) {*/


/*.column {*/


/*-ms-flex: 49%;*/


/*flex: 49%;*/


/*max-width: 49%;*/


/*}*/


/*}*/


/*!* Responsive layout - makes the two columns stack on top of each other instead of next to each other *!*/


/*@media screen and (max-width: 600px) {*/


/*.column, .column-list {*/


/*-ms-flex: 100%;*/


/*flex: 100%;*/


/*max-width: 100%;*/


/*}*/


/*}*/


/* playground default-display grid END */


/* playground switch between grid and line view mode */


/* control entire grid */


/*.containerTab {*/


/*padding: 0;*/


/*!*color: white;*!*/


/*}*/


/*.gl-button{*/


/*margin:16px;*/


/*border:none;*/


/*!*background-color:transparent;*!*/


/*}*/


/*.p-title {*/


/*font-family: 'PT Sans', sans-serif;*/


/*font-weight: 700;*/


/*letter-spacing: 0.2rem;*/


/*font-size: 2rem;*/


/*line-height: 1;*/


/*}*/


/*.p-sub {*/


/*font-family: 'PT Sans', sans-serif;*/


/*font-weight: 400;*/


/*padding-top: 1.6rem;*/


/*padding-bottom: 4rem;*/


/*font-size: 1.2rem;*/


/*line-height: 1.428;*/


/*}*/


/*.p-subtitle {*/


/*font-family: 'PT Sans', sans-serif;*/


/*font-weight: 400;*/


/*!*letter-spacing: 0.2rem;*!*/


/*font-size: 1.2rem;*/


/*line-height: 1;*/


/*padding-top: 4rem;*/


/*padding-bottom: 1.6rem;*/


/*}*/


/*.p-text{*/


/*font-family: 'PT Sans', sans-serif;*/


/*font-weight: 400;*/


/*font-size: 1.2rem;*/


/*line-height: 1.5;*/


/*}*/


/*@media (max-width: 767px) {*/


/*.project-picture-container {*/


/*padding-bottom: 5rem;*/


/*align-content: center;*/


/*align-self: center;*/


/*}*/


/*}*/


/*@media (min-width: 768px) {*/


/*.project-picture-container {*/


/*padding-bottom: 6rem;*/


/*align-content: center;*/


/*align-self: center;*/


/*}*/


/*}*/