/* 
    Created on : 2021-03-01
    Author     : Miikka Toivola
*/

* {
    margin: 0;
    padding: 0;
    font-family: 'Roboto Slab', serif
}
.container-fluid {
    margin: 0;
}
.row{
    padding: 20px 50px;
}
h2 {
    font-size: 24px;
}


p {
    font-size: 16px;
}
.header-bg {
    background-image: url(../img/background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.header{
    padding: 0 !important;    
    min-height: 600px;
    height: 600px;
}
#hero-logo {
    transform: rotate(-15deg);
    margin-left: auto;
    margin-right: auto;
}
#header-content {    
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;    
}

.bg-grey {
    background-repeat: repeat;
    background-color: #212121;
    color: #e0e0e0;        
}

.bg-grey a{
    color: #e0e0e0;
}

.all-center {    
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.text-block {
    text-align: center;
    color: #e0e0e0;
    max-width: 800px;
}
.image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.service-image {
    max-width: 400px;
    margin: 10px;
}

#to-top{
    color: gold;
    font-size: 50px;
    position:fixed;
    bottom: 20px;
    right: 30px;
    display:none;	
    z-index: 10;
}


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

    .row {
        padding: 10px 10px;
    }

    h1{
        text-align: center;
        font-size: 24px;
    }
  
    h2 {
        font-size: 20px;
    }
}

@media screen and (max-width: 986px) {
    #hero-logo {
        max-width: 300px;

    }
    #header-content{    
        height: unset;
    }
    
    .service-image {
        max-width: 350px;
    }

}
