@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");

body {
    font-family: "Poppins", sans-serif;
}

.text-primary {
    color: var(--text_color) !important;
}

#splash {
    transition: opacity 0.5s ease-in-out;
    background-color: var(--light);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    margin: 0px !important;
    position: relative;
    height: 90vh;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: -80px !important;
}

#splash p {
    color: var(--second);
    font-family: "Open Sans", sans-serif;
    font-size: 20px !important;
    padding-left: 20px;
    padding-right: 20px;
}

#splash:after {
    content: " ";
    position: absolute;
    top: 90%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin-left: -12px;
    border-left: 1px solid black;
    border-bottom: 1px solid black;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: scrollBottom 1.5s infinite;
    animation: scrollBottom 1.5s infinite;
    box-sizing: border-box;
}

#splash .image-quad {
    max-width: 400px;
}

.images img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-position: center;
    margin-bottom: 20px;
}

.social svg {
    fill: var(--main_color);
    width: 30px;
    height: 30px;
    margin: 0px 10px;
}

.social.facebook svg {
    width: 18px;
}

.social.location svg {
    width: 20px;
}

a.social {
    color: var(--text_color);
}

textarea.form-control {
    margin-bottom: 0px !important;
}

#title,
h1 {
    text-align: center;
}

.ratio-1 {
    aspect-ratio: 1/1;
}

.bg-full:before {
    background-color: #f5f7fa !important;
}

.bg-full {
    margin-bottom: -3rem;
}

p {
    margin-bottom: 0px !important;
}

a {
    color: var(--main_color);
    text-decoration: none !important;
}

.slider img {
    width: 100%;
    height: 700px;
    object-position: center;
    margin: 0 auto;
}

@media screen and (max-width: 900px) {
    #splash {
        background-size: cover;
        margin-top: -60px !important;
    }

    #image.w-auto {
        width: initial !important;
    }
}

@-webkit-keyframes scrollBottom {
    0% {
        -webkit-transform: rotate(-45deg) translate(0, 0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: rotate(-45deg) translate(-20px, 20px);
        opacity: 0;
    }
}

@keyframes scrollBottom {
    0% {
        transform: rotate(-45deg) translate(0, 0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: rotate(-45deg) translate(-20px, 20px);
        opacity: 0;
    }
}