.content .contact-box {
    height: 180px;
    background: var(--neutral2);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 20px;
    border-top: 2px solid var(--secondaryColor);
}

.content .contact-box .isoa-btn {
    border-radius: 0;
}

.content .contact-box .isoa-btn:hover {
    color: var(--white);
    text-decoration: none;
}

.content .contact-box .isoa-btn span {
    margin-left: 10px;
}

.content .ad, .content .branches  {
    margin: 20px 0;
}

.content .ad img {
    width: 100%;
}




.owl-carousel .item img {
    height: 250px;
    filter: brightness(20%);
    border-bottom-left-radius: 20px;
    border-top-right-radius: 20px;
    width: 100%;
}

.owl-carousel .item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transitionEase);
}

.owl-carousel .item:hover {
    transform: scale(1.02);
}

.owl-carousel .item h4 {
    position: absolute;
    bottom: 10px;
    color: var(--white);
    left: 20px;
}

.isoa-carousel {
    position: relative;
}

.owl-dots {
    display: none;
}

.social ul{
    display: flex;
}

.social ul li {
    width: 50px;
    height: 50px;
    background: var(--secondaryColor75);
    list-style: none;
    margin-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transitionEase);
}

.social ul li:hover {
    background: var(--secondaryColor);
}

.social ul li a {
    display: block;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
}

.social ul li a:hover {
    text-decoration: none;
}

.title {
    color: var(--secondaryColor);
}