.hero-area {
    margin: 0;
    width: 98vw;
    height: 100vh;
    position: relative;
    margin-bottom: 190px;
    clear: both;
    float: left;
}

.hero-area .title {
    font-size: 36px;
    font-weight: 100;
    letter-spacing: 1px;
    text-align: center;
    padding: 2rem;
    color: var(--black);
}

.hero-area .title .link-to-page {
    margin: 0 auto;
    width: 170px;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-area .title .link-to-page .btn {
    position: relative;
    width: 100%;
    height: 64px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    font-size: 12px;
    font-weight: 900;
    color: var(--metallic-sunburst);
    background-color: #ffffff;
    border-left: transparent 4px solid;
    border-right: transparent 4px solid;
    line-height: 1.5;
    border-radius: 0px 25px 25px;
    -webkit-box-shadow: 0 0 6px rgba(169, 141, 64, 1);
    box-shadow: 0 0 6px rgba(169, 141, 64, 1);
    transition: all 0.5s ease-in-out;
}

.hero-area .title .link-to-page .btn img {
    padding: 0 4px;
    height: 40px;
    width: auto;
}

.hero-area .title span {
    color: var(--spanish-bistre);
}

.hero-area .slider {
    position: relative;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-area .slider .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    clip-path: circle(0% at 0 50%);
}

.hero-area .slide .container {
    display: none;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-image: url(/images/background2.png);
    background-position: 50%;
    background-repeat: no-repeat;
}

.hero-area .slider .slide.active {
    clip-path: circle(150% at 0 50%);
    transition: 2s;
}

.hero-area .slider .slide.active .container {
    display: flex;
}

.hero-area .prev-btn,
.hero-area .next-btn {
    z-index: 2;
    font-size: 2rem;
    color: #1a1a1a;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 0.6rem;
}

.hero-area .prev-btn:hover,
.hero-area .next-btn:hover {
    background-color: rgba(255, 255, 255, 1);
    color: var(--metallic-sunburst);
}

.hero-area .prev-btn {
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
}

.hero-area .next-btn {
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
}

.hero-area .navigation-visibility {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    z-index: 99;
}

.navigation-visibility .slide-icon {
    /*z-index: 2;
    background: rgba(255, 255, 255, 0.8);
    width: 1rem;
    height: 1rem;
    transform: translateY(-3rem);
    margin: 0 0.4rem;
    border-radius: 50%;
    box-shadow: 0 0.5rem 1.5rem rgba(10, 10, 10, 0.5);
    transition: ease-in-out 0.5s;*/
    display: inline-block;
    height: 15px;
    width: 15px;
    margin: 4px;
    border-radius: 15px;
    background-color: var(--spanish-bistre);
    cursor: pointer;
    -webkit-box-shadow: 0 0 0.5rem rgb(187, 181, 181);
    box-shadow: 0 0 0.5rem rgb(187, 181, 181);
    transition: 0.5s ease-in-out;
}

.navigation-visibility .slide-icon.active {
    width: 45px;
}


/*****************************
*
* slide content 
*
******************************/

.hero-area .slide .image {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-area .slide .image img {
    min-width: 50%;
    max-width: fit-content;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    /*border-radius: 24% 76% 74% 26% / 30% 61% 39% 70%;*/
    border-radius: 11% 41% 10% 41% / 10% 36% 10% 38%;
    border-radius: 40px 80px / 20px 100px;
    -webkit-box-shadow: -16px 16px 1px rgba(210, 184, 113, 1);
    box-shadow: -16px 16px 1px rgba(210, 184, 113, 1);
    border: 2px solid var(--metallic-gold);
}

.hero-area .slide .content {
    width: 40%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}

.hero-area .slide .content .view .btn {
    width: 120px;
}

.hero-area .slide .content .title img {
    width: 200px;
    height: 200px;
}


/*******************
*
*
* Responsive CSS
*
*
********************/


/********************
* 
* extra large screens, tv 
*
*********************/

@media only screen and (max-width:1023px) {
    .hero-area .slide .container {
        flex-flow: column-reverse nowrap;
        padding-top: 5rem;
    }
    .hero-area .slide .image {
        width: 80%;
        height: 50%;
    }
    .hero-area .slide .image img {
        height: 100%;
        width: auto;
    }
    .hero-area .slide .content {
        width: 80%;
    }
    .hero-area .slide .content .title img {
        height: 96px;
        width: 96px;
    }
    .hero-area .slide .content .title h2 {
        font-size: 28px;
    }
    .hero-area .slide .content .title h6 {
        font-size: 24px;
    }
    .hero-area .navigation-visibility {
        top: 50%;
        left: 20px;
    }
    .navigation-visibility .slide-icon {
        display: block;
        margin-bottom: 8px;
    }
    .navigation-visibility .slide-icon.active {
        width: 15px;
        height: 45px;
    }
}

@media only screen and (max-width:768px) {}


/********************
* 
* desktop, large screens 
*
*********************/

@media only screen and (min-width:1025px) and (max-width:1200px) {}


/********************
* 
* small screens, laptops 
*
*********************/

@media only screen and (min-width:769px) and (max-width:1024px) {}


/********************
* 
* Ipads, tablets 
*
*********************/

@media only screen and (min-width:481px) and (max-width:768px) {}


/********************
* 
* Mobile devices 
*
*********************/

@media only screen and (min-width:320px) and (max-width:480px) {}