/* Round Button Style */
.button {
    color: #fff;
    border: solid;
    border-radius: 100px;
    border-color: #fff;
    border-width: 2px;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
    height: auto;
    background-color: transparent;
    line-height: 1;
    font-weight: 300;
    text-decoration: inherit;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    transition: background-color .2s ease-out,color .2s ease-out,border-color .2s ease-out;
}

.button:hover {
    background-color: #fff;
    color: var(--main-color-dark);
}

/* Icon Card Style */
.icon_card {
    background-color: #fff;
}

.icon_card .icon {
    color: #fff;
    background-color: var(--main-color-dark);
}

.icon_card .link-icon {
    color: var(--main-color-dark);
}

.clip  {
    clip-path: ellipse(100% 100% at 0% 50%);
}

.left-side-image {
    object-fit: cover;
    height: 100%;
    max-width: 100%;
    overflow:hidden;
}

/* 
.to-hover:hover .show-flex {
    display: flex!important;
}
*/

.show-flex {
    /* display: none!important; */
    display: flex!important;
    background-color: #fff;
}

.show-flex a:hover span{
    color: var(--main-color-light);
}

/* Rubrik Style */
.rubrik {
    color: #fff;
}

.rubrik .bg-icon {
    color: var(--main-color-dark);
    background-color: #fff;
    clip-path: circle(50% at 50% 50%);
    align-items: center;
    height: 3rem;
    width: 3rem;
}

.rubrik .headline {
    font-weight: 200;
}

/* Picture Section Style */
.picture-section {
    background-image: linear-gradient(90deg, var(--main-color-light), var(--main-color-dark));
    box-shadow: 0 0 60px rgba(0,0,0,.16);
}

@media screen and (max-width:991px) {
    .clip  {
        clip-path: ellipse(50% 100% at 50% 0%);
    }
    
    .left-side-image {
        object-fit: cover;
        width: 100%; 
        max-height: 200px;
        overflow:hidden;
    }
}
