body {
    background-image: url(./img/izberry-bg-3.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    place-items: center;
    min-height: 100svh;
    font-family: "Nunito", sans-serif;
    margin: 0;
}

.raleway-regular {
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.berry{
    position: absolute;
    right:2rem;
    top: 2rem;
    width: 4rem;
    opacity: .8;
}

.berry svg{
    width: 100%;
}

.contact-wrapper {
    background-color: rgba(241, 238, 226, .8);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 8px;
    align-items: center;
    margin-inline: auto;
    padding: 3rem 1.5rem;
    gap: 4rem;
    min-width: 60%;
    position: relative;
}

.logo-section {
    width: 240px;
}

.logo-section img {
    width: 100%;
}

.box-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 3rem;
}

.box-wrapper .contact-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    border: 2px solid transparent;
    padding: .75rem;
    border-radius: 8px;
    transition: all ease-in-out .2s;
    position: relative;
}

.contact-box:first-child::after{
    content: "";
    position: absolute;
    right: -26px;
    width: 1px;
    top: .25rem;
    bottom:.25rem;
    background-color: #6e789d;
}

.box-wrapper .contact-box:hover,
.box-bottom-address:hover {
    border-color: #6e789d;
    transform: translateY(-3px);
}

.box-wrapper span {
    color: #555555;
}

.box-wrapper svg {
    width: 2.75rem;
}

.box-bottom-address {
    display: flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    border: 2px solid transparent;
    padding: .5rem;
    border-radius: 8px;
    transition: all ease-in-out .2s;
}

.box-bottom-address span {
    color: #555555;
}

.box-bottom-address svg {
    width: 1.4rem;
}

@media (max-width:768px) {
    body {
        background-image: url(./img/izberry-bg.jpg);
        padding-inline: 14px;
    }

    .box-wrapper {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-box:first-child::after{
        display: none;
    }

    .contact-box svg {
        width: 3rem;
    }

    .contact-box{
        text-decoration-color: #555555;
        text-decoration: underline;
    }

    .contact-box span {
        font-size: 1.3rem;
    }

    .box-bottom-address {
        flex-direction: column;
        text-decoration-color: #555555 !important;
        text-decoration: underline;
    }

    .box-bottom-address svg {
        width: 2rem;
    }

    .box-bottom-address span {
        text-align: center;
        margin-bottom: -1px;
    }

    .berry{
        top: 5px;
        right: 5px;
    }

    .contact-wrapper{
        gap: 1.5rem;
    }
}