@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,700&display=swap');

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

body {
    box-sizing: border-box;
    background: linear-gradient(122.01deg, #FFFFFF 0%, rgba(255, 255, 255, 0.75) 100%), url(../img/bg01.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

html {
    font-family: 'Montserrat', sans-serif;
    font-size: 62.5%;

}

h1 {
    font-size: 3.2rem; 
    margin-bottom: 2.2rem;
    line-height: auto;
    text-shadow: 0 2px 4px rgba(0,0,0,0.25);    
    
/*
    background: -webkit-linear-gradient(110deg, #FF5100 0%, #FF7433 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
*/

}

p { 
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    line-height: 160%;
}

section.lbm__content {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

div.lbm__content--center {
    width: 75%;
    text-align: center;
    padding: 3.5rem;
}

img.lbm__logo {
    width: 100%;
    max-width: 21.5rem;
    height: auto;
    margin: 0 auto;
    margin-bottom: 3.2rem;
    -webkit-filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
}

a.btn {
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    width: 15rem;
    margin: 2rem auto;
    background: linear-gradient(110deg, #FF5100 0%, #FF7433 100%);
    color: #fff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    border-radius: 30px;
    padding: 1.4rem 2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.25);
	position: relative;
	z-index: 1;
	transition: all 0.3s linear;
}

a.btn::before {
	position: absolute;
	content: '';
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(110deg, #fc4a1a 0%, #f7b733 100%);
	z-index: -1;
	transition: opacity 0.3s linear;
	opacity:0;
	border-radius: 30px;
}

a.btn:hover::before,
a.btn:focus::before {
	opacity: 1;
}

a.btn:hover,
a.btn:focus {
	transform: translateY(1px);
}

/* 
 * Media Queries
 */


@media all and (max-width: 1690px) {}
@media all and (max-width: 1280px) {
    div.lbm__content--center {
        width: 100%;
     }
    
/*
    img.lbm__logo {
        max-width: 27.5rem;
    }
    
    h1 {
        font-size: 4.2rem;
    }
    
    p {
        font-size: 2rem;
    }
    
    a.btn {
        font-size: 1.8rem;
        width: 20rem;
        padding: 1.8rem 2rem;
    }
*/
    
}

@media all and (max-width: 980px) {}
@media all and (max-width: 736px) {}
@media all and (max-width: 480px) {
    h1 {
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }
    
    p {
        font-size: 1.4rem;
    }
    
    div.lbm__content--center {
        width: 100%;
        text-align: center;
        padding: 2.5rem;
    }
    
    img.lbm__logo {
        max-width: 15.5rem;
    }
    
    a.btn {
        font-size: 1.4rem;
        margin: 1rem auto;
        padding: 1.4rem 2rem;
        width: 15rem;
    }
}




