* {
    margin: 0;
    padding: 0;
    box-sizing: 0;
}

body {
    font-family: "Hubot Sans", sans-serif;
    font-size: 17px;
}

a {
    text-decoration: none;
}

.wrapper {
    min-height: 100vh;
    position: relative;
}
.vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 20px 50px 300px rgba(0, 0, 0, 1) inset;
    z-index: 2;
}

.effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2;
}
.wrapper .bg {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    object-position: center;
    object-fit: cover;
    filter: blur(5px);
}

.wrapper .hero {
    position: absolute;
    z-index: 4;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    background-color:#fff;
    padding: 1rem;
    border-radius: 16px;
    width: 85%;
    max-width: 500px;
    
}

.wrapper .hero .hero-top .logo .logo-img {
    max-width: 100px;
    margin-right: 1rem;
}

.wrapper .hero .hero-top {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper .hero .hero-top .right {
    display: flex;
    align-items: center;
}

.wrapper .hero .hero-top .right h1 {
    font-weight: 300;
    opacity: 0.7;
}

.wrapper .hero .hero-top .right img {
    max-width: 200px;
    width: 100%;
    height: 100%;
    margin-top: 1rem;
}

.wrapper .hero img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.hero-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 1.25rem;
    grid-gap: 1rem;
}

@media (max-width:768px){
    .hero-column {
        display: grid;
        grid-template-columns: 1fr;
    } 
}

.hero-slide img {
    max-height: 400px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}
.hero-slide {
    border-radius: 16px;
}
.links {
    display: flex;
    flex-direction: column;
}
.links a {
    background-color: #AE2525;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    color: #fff;

}

.links a i {
    font-size: 20px;
}

.links a span {
    display: inline-block;
    margin-left: 0.5rem;
}

.links a:hover {
    filter: brightness(1.2);
}

.contacts a {
    color: #AE2525;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contacts a i {
    font-size: 25px;
}

.contacts a span {
    display: inline-block;
    margin-left: 0.5rem;
}