/************************************************************************************************************************************************/
/*********************************************************         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 .first-box {
    margin-bottom: 30px;
}

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

.section-one .content .first-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 .first-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 .second-box {
    margin-bottom: 60px;
}

.section-one .content .third-box {
    color: var(--site_text_color);
    margin-bottom: 30px;
}

.section-one .content .third-box > h3 {
    color: var(--site_fourth_color);
    font-family: 'Playfair Display', serif;
    font-size: 35px;
    margin-bottom: 20px;
}

.section-one .content .third-box .content-text * {
    line-height: 2.5 !important;
}

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

.section-one .content .second-box .slick-track {
    display: flex;
    align-items: center;
}

.section-one .content .second-box .slick-slide {
    margin-inline: 10px;
    height: 400px;
    position: relative;
}

.section-one .content .second-box .slick-slide img {
    width: 100%;
    height: 350px;
    border-radius: 15px;
    border: 4px solid var(--site_fifth_color);
}

.section-one .content .second-box .slick-prev, .slick-next {
    width: 40px;
    height: 40px;
    border: 1px solid var(--site_fifth_color);
    background: var(--site_fourth_color);
    border-radius: 50%;
    z-index: 5;
    color: var(--site_text_color);
}

.section-one .content .second-box .slick-prev:hover,
.section-one .content .second-box .slick-prev:focus,
.section-one .content .second-box .slick-next:hover,
.section-one .content .second-box .slick-next:focus {
    background: var(--site_second_color);
}

.section-one .content .second-box .slick-next:before,
.section-one .content .second-box .slick-prev:before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    color: var(--site_text_color);
}

.section-one .content .second-box .slick-next:before {
    content: var(--slick_next_icon) !important;
}

.section-one .content .second-box .slick-prev:before {
    content: var(--slick_prev_icon) !important;
}

.section-one .content .second-box .slick-dots li button:before {
    font-size: 20px;
    color: var(--site_fourth_color);
}

.section-one .content .second-box .slick-dots li.slick-active button:before {
    color: var(--site_fourth_color);
}

.section-one .content .fourth-box > h3 {
    color: var(--site_fourth_color);
    font-family: 'Playfair Display', serif;
    font-size: 35px;
    margin-bottom: 30px;
    text-align: center;
}

.section-one .content .fourth-box #counter {
    border: 3px solid var(--site_second_color);
    background-color: var(--site_main_color);
    color: var(--site_fourth_color);
    display: flex;
    border-radius: 5px;
    padding-block: 10px;
    font-weight: 900;
    justify-content: center;
}

.section-one .content .fourth-box .is-countdown {
    display: flex;
    border-radius: 5px;
    padding-block: 10px;
    color: var(--site_fourth_color);
    font-weight: 900;
    justify-content: center;
}

.section-one .content .fourth-box .countdown-row {
    display: flex;
    justify-content: space-between;
}

.section-one .content .fourth-box .countdown-row .countdown-section {
    float: unset;
}

.section-one .content .fourth-box .right-box {
    font-size: 30px;
    font-weight: bold;
}


.section-one .content .fourth-box .right-box .old-price span {
    position: relative;
    color: var(--site_text_color);
}


.section-one .content .fourth-box .right-box .old-price span:before {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    height: 4px;
    width: calc(100% + 10px);
    background-color: var(--site_fourth_color);
}

.section-one .content .fourth-box .right-box .new-price span {
    color: var(--site_fourth_color);
}




.section-one .content .fourth-box .bottom-box {
    padding: 60px 40px;
    position: relative;
}

.section-one .content .fourth-box .bottom-box .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: var(--site_third_color);
    opacity: .8;
}

.section-one .content .fourth-box .bottom-box form {
    position: relative;
    z-index: 2;
}

.section-one .content .fourth-box .bottom-box form label {
    text-transform: uppercase;
    color: var(--site_fifth_color);
}

.section-one .content .fourth-box .bottom-box form .form-control {
    background: none;
    min-height: 55px;
    border: 3px solid var(--site_sixth_color);
    color: var(--site_fifth_color);
    border-radius: 0;
}

.section-one .content .fourth-box .bottom-box form .form-control.is-invalid {
    border-width: 3px !important;
}

.section-one .content .fourth-box .bottom-box form .form-control::placeholder {
    color: var(--site_fifth_color);
    text-transform: uppercase;
}

.section-one .content .fourth-box .bottom-box form .form-control:focus {
    box-shadow: none;
}

.section-one .content .fourth-box .bottom-box form .form-control:-webkit-autofill,
.section-one .content .fourth-box .bottom-box form .form-control:-webkit-autofill:hover,
.section-one .content .fourth-box .bottom-box form .form-control:-webkit-autofill:focus,
.section-one .content .fourth-box .bottom-box form .form-control:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px var(--site_third_color) inset !important;
    -webkit-text-fill-color: var(--site_fifth_color) !important;
    border: 3px solid var(--site_sixth_color);
    border-radius: 0;
}

.section-one .content .fourth-box .bottom-box form button.submit-btn {
    display: block;
    min-height: 55px;
    background-color: var(--site_sixth_color);
    border-radius: 0;
    border: 0;
    color: var(--site_fifth_color);
    text-transform: uppercase;
    font-size: 18px;
    padding-inline: 30px;
    margin-inline: auto;
}

/****************************************************************************************************************************************************/

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

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

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

.section-one .content .fifth-box .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 .fifth-box .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 .fifth-box .bottom-box .box .image-sec:hover .before .overlay {
    display: block;
}

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

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

.section-one .content .fifth-box .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 .fifth-box .bottom-box .box .image-sec .before .floating-sec a:hover {
    background-color: var(--site_fourth_color);
}

.section-one .content .fifth-box .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 .fifth-box .bottom-box .box h3 {
    margin-top: 40px;
}








@media (max-width: 991.98px ) {
    .section-one .content .second-box .image-sec .before {
        height: 400px;
    }
}

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

@media (max-width: 575.98px ) {
    .section-one .content .second-box .image-sec .before {
        height: 300px;
    }
}
