/*
Template Name: Welcome
Author: Paweł Kaczorowski
Author @: p.kaczorowski@bf.team
Version: 0.1
*/
.welcome {
display: flex;
height: 100vh;
position: relative;
align-items: center;
justify-content: center;
}

@media (max-width: 1200px) {
.welcome {
padding: 0 25px
}
}

.welcome section {
max-width: 400px;
width: 100%;
padding: 30px;
background: #fff;
border-radius: 10px;
box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}

.welcome-logo { display: block;}
.welcome-logo img {
width: 120px;
max-width: 100%;
height: auto;
display: block;
margin: 0 auto
}

@media (max-width: 768px ) {
.welcome-logo img {
width: 150px;
}

}

/* BUTTONS */
.welcome-buttons {
display: flex;
margin-top: 30px;
gap: 10px;
flex-direction: column;
}

.welcome-buttons a {
letter-spacing: 0.2px;
text-align: center;
transition: all .3s;
}
@media (max-width: 768px ) {
.welcome-buttons a {
font-size: 14px;
}
}
}

.welcome-buttons a:hover {
background: #00b4bd;
}

.welcome-buttons .btn-outline-info {
border: 1px solid var(--light-primary);
}