.home_slideshow_container {
    position: relative;
    width: 90%;
    margin: 25px 0px;
}

.home_slideshow>div {
    border: 3px solid var(--primary);
    border-radius: 10px;
}

.home_slideshow>div img {
    width: 100%;
    height: 100%;
}

.character {
    position: absolute;
    top: -25px;
    left: 10px;
    height: calc(100% + 50px);
}

.character img {
    height: 100%;
}

.deer_resistant {
    position: absolute;
    width: 10%;
    top: 10px;
    right: 10px;
}

.info {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 256px;
    max-width: 768px;
    margin: 25px;
}

.info h1 {
    font-size: 2em;
    text-align: center;
}

.info hr {
    height: 2px;
    background: linear-gradient(to right, #ef2d32 10%, #0eb1f0 90%);
    border: none;
}

.info>div {
    display: flex;
    justify-content: center;
}

.info ul {
    width: 100%;
    max-width: 425px;
    list-style-type: none;
}

.info ul li {
    display: flex;
    align-items: flex-start;
    margin: 20px 0px;
    font-size: 1.25em;
}

.info ul li div:first-of-type {
    min-width: 75px;
    font-weight: 600;
}

.info {
    display: flex;
    flex-direction: column;
    width: calc(50% - 50px);
    max-width: 768px;
    margin: 25px 0px;
}

.contactBtn {
    display: flex;
    border: none;
    padding: 10px 20px;
    margin-top: 50px;
    font-size: 1.25em;
    border-radius: 5px;
    background-color: var(--primary);
    color: var(--white);
    transition: all 0.2s ease;
    text-decoration: none;
}

.contactBtn:hover {
    color: var(--white);
    background-color: var(--primary-dark);
}

.banner {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.banner >div {
    display: flex;
    flex-direction: column;
    background-color: var(--secondary-light);
    padding: 10px 20px;
    border-radius: 5px;
}

.video{
    display: flex;
    flex-direction: column;
    width: calc(50% - 50px);
    min-width: 256px;
    max-width: 768px;
    margin: 25px;
    height: 280px;
}

@media screen and (max-width: 768px) {
    .info, .video {
        width: 100%;
    }
}