@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');      

*{
    margin: 0;
    padding: 0
}

.wrapper{
	background-color: #fff;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: 40;
}

.logofull {
	width: 100%;
	height: 90%;
	text-align: center;
    margin-top: 60px;
}

.logofull .logo{
	width: 350px;
}

.logofull h2 {
    color: #444;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    text-align: center;
    margin: 40px 20px;
}

.logofull span{
	font-size: 18px;
    font-weight: 600;
}

/* CSS MOBILE */

@media (max-width: 768px) {

.logofull .logo{
    width: 220px;
    padding: 0 20px;
}

.logofull h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    text-align: center;
}
}

