/************************************************************************************************************************************************/
/*********************************************************         section one         **********************************************************/
/************************************************************************************************************************************************/

.section-one {
    padding-block: 50px;
    background-image: url("../images/site_section_bg_image_six.png");
    background-size: cover;
    background-position: center;
    text-align: center;
}

.section-one .content .top-box h6 {
    color: var(--site_fourth_color);
    font-size: 20px;
    position: relative;
    margin-bottom: 30px;
}

.section-one .content .top-box h6:after {
    position: absolute;
    content: '';
    width: 50px;
    height: 3px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--site_fourth_color);
}

.section-one .content .top-box h2 {
    margin-bottom: 30px;
    width: 70%;
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    line-height: 1.5;
    margin-inline: auto;
}

.section-one .content .top-box h2 span {
    color: var(--site_fourth_color);
}

.section-one .content .bottom-box .box {
    margin-bottom: 30px;
}

.section-one .content .bottom-box .box .image-sec {
    position: relative;
}

.section-one .content .bottom-box .box .image-sec .before {
    position: relative;
    width: 100%;
    height: 250px;
    border: 2px solid var(--site_fifth_color);
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-one .content .bottom-box .box .image-sec .before .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--site_third_color);
    opacity: 0.8;
    border-radius: 15px;
    display: none;
}

.section-one .content .bottom-box .box .image-sec:hover .before .overlay {
    display: block;
}

.section-one .content .bottom-box .box .image-sec .before .floating-sec {
    display: none;
    position: relative;
    z-index: 3;
    padding: 20px;
}

.section-one .content .bottom-box .box .image-sec:hover .before .floating-sec {
    display: block;
}

.section-one .content .bottom-box .box .image-sec .before .floating-sec a {
    background-color: var(--site_second_color);
    color: var(--site_text_color);
    text-transform: capitalize;
    padding: 5px 20px;
    border-radius: 3px;
}

.section-one .content .bottom-box .box .image-sec .before .floating-sec a:hover {
    background-color: var(--site_fourth_color);
}

.section-one .content .bottom-box .box .image-sec .after {
    width: 50%;
    height: 50px;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--site_fifth_color);
    z-index: 1;
    border-radius: 10px;
}

.section-one .content .bottom-box .box h3 {
    margin-top: 40px;
}

@media (max-width: 767.98px) {
    .section-one .content .top-box h2 {
        width: 100%;
    }
}
