/**
    Global css
**/
@import url('https://fonts.cdnfonts.com/css/aileron');

.col{
    padding:0;
}

html, body{
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100%;
    font-family: 'Aileron', sans-serif;
}

html {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

@-moz-document url-prefix() {
    body {
      font-weight: lighter !important;
    }
}

.wallColorHr{
    color:#42939b;
}

.wallBtn{
    background-color: #42939b;
    border-color: #42939b;
    color: white;
    border-radius: 4px;
    padding: 10px 20px 10px 20px;
    margin-top: 5%;
}

.wallBtn:hover{
    background-color:#147983;
    border-color: #147983;
}

.wallBtn:active:focus{
    background-color:#147983;
    border-color: #147983;
}

.custom-btn{
    background-color: transparent;
    border-color: white;
    color: white;
    border-radius: 4px;
    padding: 10px 5px 10px 5px;
    position: absolute;
    top: 88%;
    max-Width: 10%;
}

.custom-btn:hover{
    background-color: black;
    color: white;
    border-color: black;
    border-radius: 4px;
}

.custom-btn:active{
    background-color: black;
    color: white;
    border-color: black;
    border-radius: 4px;
}

.colSpace{
    padding: 10px;
}

.customContainer{
    margin: 2.5% 3% 0 3%;
}

.goDown{
    font-size: 3vw!important;
}

.woozooLink{
    color: #147983;
    text-decoration: none;
}

.woozooLink:hover{
    text-decoration: underline;
    color: #147983;
}

/**
    Head
**/
.headTitle{
    font-size: 4vw;
    text-align: center;
    width: 100%;
    color: white;
    padding: 1% 0 0 0;
}

.headerHr{
    width: 100%;
    border-top: 3px solid white;
    margin: 1% 0 0 0;
}

.headerImage{
    margin-top: 10%;
}

.header{
    background-color: #42939b;
    padding-bottom: 3%;
    position: relative;
}

.marcelHeader{
    max-width: 100%;
    max-height: 100%
}

.letMeHelp{
    margin-top: 4%;
}

/**
    About me
**/
.aboutMe{
    padding: 3% 0 3% 0;
    text-align: inherit;
    color: #4C4E52;
}

.aboutMe h2{
    color:#42939b;
    font-size: 32px;
}

.aboutMe img{
    max-width: 100%;
}

.aboutMarcelImgOne{
    margin-top: 55px;
}

.aboutMarcelImgTwo{
    margin-top: 9px;
}

/**
    Listen to
**/

.listenTo{
    padding: 3% 0 3% 0;
    background-color:#42939b;
}

.listenTo h2{
    color:white;
    font-size: 32px;
}

.listenTo hr{
    color: white;
}

/**
    Studio
**/
.studio{
    padding: 3% 0 3% 0;
    background-color: white;
    color: #42939b;
}

.slide{
    max-width: 100%;
    border-radius: 10%;
}

.studio h2{
    font-size: 32px;
}

.studioText{
    color: #4C4E52;
}

/**
    Footer
**/
footer{
    padding: 3% 0 3% 0;
    background-color: #42939b;
    color: white;
}

footer hr{
    max-width: 80%;
}

.reviewImage{
    max-width: 60%;
}

.contactLink{
    color: white;
    text-decoration: none;
}

/** 
    Copyright
**/

.copyright{
    background-color: #147983;
    text-align: center;
    color: lightgray;
    padding: 1% 0 1% 0;
}

/**
    Down arrow
**/
.arrow {
    text-align: center;
    position: absolute;
    top: 85%;
    left: 50%;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.arrow a{
    color: white;
    text-decoration: none;
}

.bounce {
    animation: bounce 2s infinite;
}
  
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-30px);
    }
    60% {
      transform: translateY(-15px);
    }
}

/**
    Media only screen
**/
@media only screen and (max-width: 576px) {
    .socialFooter{
        margin-top: 30px;
    }
    .reviewFooter{
        margin-top: 30px;
    }
    .aboutMarcelImgOne{
        margin-top: 0px;
    }
}