@font-face {
    font-family: 'Bebas';
    src: url(../fonts/BebasNeue-Regular.ttf);
}




:root {
    --borderColor: #96c35d;
}

.card {
    padding: 25px 175px 25px 175px;
    position: relative;
    border: 2px solid #96c35d;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);

    &::before,
    &::after {
        content: "";
        position: absolute;
        width: 20px;
        height: 20px;
        transition: .7s ease-in-out;
    }

    &::before {
        top: -8px;
        left: -8px;
        border-top: 2px solid var(--borderColor);
        border-left: 2px solid var(--borderColor);
    }

    &::after {
        right: -8px;
        bottom: -8px;
        border-bottom: 2px solid var(--borderColor);
        border-right: 2px solid var(--borderColor);
    }

    &:hover::before,
    &:hover::after {
        width: calc(100% + 9px);
        height: calc(100% + 9px);
        z-index: -9999;
    }
}

.contact-icons {
    width: 18px;
    vertical-align: middle;
}

.title {
    font-family: 'Bebas';
    font-size: 1.7rem;
    margin-top: 0px;
}

@media (min-width: 992px) {
    .title {
        font-size: 2.3rem;
    }
}

p {
    font-size: 18px;
}

.address {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 300;
}


body {
    margin: 0;
    background: #f0f0f0;
    color: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

body {
    background: rgb(240,240,240);
    background: linear-gradient(233deg, rgba(240,240,240,1) 0%, rgba(215,215,215,0.6923363095238095) 35%);
}

/* .card {
    background: #f0f0f0;
    border-radius: 50px 10px 50px 10px;
    padding: 30px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    width: 75%;
} */


.logo {
    max-width: 250px;
    margin: 0 auto 20px;
}

h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1d1d1b;
}

p {
    margin: 5px 0;
    font-size: 18px;
    color: #1d1d1b;
}

.address {
    margin-top: 20px;
}

@media (min-width:601px) {
    h1.screensm {
        display: none;
    }

    small.screensm{
        display: none;
    }

}

@media (max-width: 600px) {
    h1 {
        font-size: 2.5rem !important;
        margin-bottom: 0px;
        ;
        font-weight: bold;
        color: #1d1d1b;
        border-bottom: 2px solid #96c35d;
        border-width: 75%;
    }

    small {
        font-size: 2.5rem !important;
        margin-top: 0px;
        font-weight: bold;
        color: #1d1d1b;
    }

    h1.screenbg {
        display: none;
    }

    p {
        font-size: 1.3rem;
    }

    .card {
        padding: 50px 20px 50px 20px;
    }

    .logo {
        max-width: 250px;
    }
}