@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;500;900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
#bg{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
#bg .row{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.logo{
    width: 100%;
    max-width: 200px;
    height: auto;
}
.logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.logoalt{
    width: 100%;
    max-width: 150px;
    height: auto;
}
.logoalt img{
    width: 75%;
    height: 75%;
    object-fit: cover;
}
#bg .row h1{
    text-align: center;
    font-size: 78px;
    font-weight: 900;
    margin: 75px 0;
}
#bg .row p{
    font-weight: 300;
    font-size: 18px;
    text-align: center;
    margin-bottom: 35px;
}
.social{
    font-size: 24px;
    display: flex;
    align-items: center;
}
.social a{
    color: #000;
    margin: 20px;
	font-weight: 500;
}
.social a:hover{
    color: #fa9585;
}
.tel{
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
	align-items: center;
}
.tel a{
    margin: 10px 0;
    color: #000;
    text-decoration: none;
}
.tel a:hover{
    color: #fa9585;
}
@media only screen and (max-width:850px){
    #bg .row p{
        font-size: 24px;
    }
    .tel a{
        margin: 10px 0;
        color: #000;
        text-decoration: none;
        font-size: 24px;
    }
    .social a i{
        font-size: 28px;
    }
}
@media only screen and (max-width:500px) {
    #bg .row h1{
        text-align: center;
        font-size: 38px;
        font-weight: 900;
        margin: 45px 0;
    }
    #bg .row p{
        font-weight: 300;
        font-size: 18px;
        text-align: center;
    }  
    .logo{
        width: 100%;
        max-width: 250px;
        height: auto;
        margin: 20px 0 0 0;
    }
    .logoalt{
        width: 100%;
        max-width: 100px;
        height: auto;
    }
    #bg .row p{
        font-size: 18px;
    }
    .tel a{
        margin: 10px 0;
        color: #000;
        text-decoration: none;
        font-size: 18px;
    }
    .social a i{
        font-size: 22px;
    }
	.tel{
		margin-bottom: 10px ;
	}
	.social{
		margin-bottom: 10px ;
	}
}