@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

body,
html {
    height: 100%;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(to bottom, #2e6f4c, #1c3d5a);
    color: white;
}
.hero {
    height: 100vh;
    background: url('../img/loon-lake-back.jpg') center center / cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;    
}
.logo {
    max-width: 340px;
    margin-bottom: 163px;
    width: 100%;
}
.company-name {
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 2px;
}
.contact-info {
    margin-top: 2rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 7.3%;
}
.contact-info p{
    font-size: 16px;
    margin: 0;
    line-height: 120%;
    color: #fff;
}
.contact-info p strong{
    font-weight: 600;
}
.contact-info br{
    display: none;
}
.btn-contact {    
    background-color: transparent;
    border: 2px solid #5C6A29;
    color: white;
    font-size: 15px;
    font-weight: bold;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 54px;
    border-radius: 100px;
    transition: all ease 0.4s;
    margin: 0;
    margin-left: 48px;
}
.btn-contact:hover {
    background-color: #C6CBB3;
    color: #5C6A29;
}

@media screen and (max-width:991px) {
    .contact-info{
        flex-direction: column;
    }
    .btn-contact{
        margin: 0;
        margin-top: 40px;
    }
    .logo{
        max-width: 260px;
    }
}
@media screen and (max-width:700px) {   
    .contact-info.mobile{
        display: flex;
        bottom: 7%;
    }
    .contact-info.mobile p{
        line-height: 122.9%;
    }
    .contact-info.mobile p strong{
        margin-bottom: 8px;
        display: block;
    }
    .btn-contact{
        margin: 0;
        margin-top: 40px;
    }
    .logo{
        max-width: 222px;
        margin-bottom: 266px;
    }
    .hero{
        background-image: url(../img/loon-lake_Mobile.png);
    }
    .contact-info br{
        display: block;
    }
    .contact-info .comma{
        display: none;
    }
}

@media screen and (max-width:1000px) and (max-height:500px) {  
    .logo{
        max-width: 170px;
    }
    .btn-contact{
        margin-top: 20px;
    }

 }
 @media screen and (max-width:700px) and (max-height:500px) {  
    .logo{
        max-width: 170px;
        margin-bottom: 136px;
    }
    .btn-contact{
        margin-top: 20px;
    }
    .contact-info br{
        display: none;
    }
    .contact-info .comma{
        display: inline-block;
    }

 }