/* Start Projects Section */
.projects_section {
    padding: 100px 0;
    background-color: var(--deeb_dark);
}

.projects_section .header_section h2 {
    color: var(--white_color);
}
.products_section .section_title{
    color: var(--deeb_dark) !important;
}
.projects_section .swiper {
    padding: 0 0 50px;
}

/* مهم */
.projects_section .swiper-slide {
    height: auto;
}

/* CARD */
.projects_section .card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 0;
}
.projects_section .badge_unit{
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--white_color);
    background: #1f1f1f66;
    backdrop-filter: blur(20px);
    z-index: 9;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
}
/* IMAGE */
.projects_section .card .image {
    height: 520px;
    position: relative;
    overflow: hidden;
}

.projects_section .card .image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent 60%);
    z-index: 1;
}

/* Shine effect */
.projects_section .card .image::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 2;
}

.projects_section .card:hover .image::after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.projects_section .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.projects_section .card:hover img {
    transform: scale(1.08);
}

/* OVERLAY */
.projects_section .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    padding: 20px;
    color: #fff;
}

.projects_section .overlay span {
    font-size: 14px;
    color: var(--deeb_sec);
}

.projects_section .overlay h3 {
    margin-top: 5px;
    font-size: 20px;
}

/* Pagination */
.projects_section .swiper-pagination {
    margin-top: 30px;
}

.projects_section .swiper-pagination-bullet {
    background: var(--deeb_sec);
    opacity: 0.4;
    width: 8px;
    height: 8px;
}

.projects_section .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--deeb_sec);
}

/* Site footer */
.site_footer {
    position: relative;
    overflow: hidden;
    padding: 90px 15px 40px;
    margin: 30px 0 10px;
    background-color: var(--deeb_dark);
    /* background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px); */
    background-image: url(../img/dark-section-bg-image.png);
    /* background-size: 48px 48px; */
    background-position: center top;
}

.site_footer .container {
    position: relative;
    z-index: 1;
}

.footer_top {
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer_cta_title {
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 600;
    line-height: 1.25;
    color: var(--secondary_color);
    margin: 0;
}

.footer_cta_title em {
    font-style: italic;
    font-weight: 600;
}

.footer_social_block {
    text-align: center;
}

@media (min-width: 992px) {
    .footer_social_block {
        text-align: left;
    }
}

.footer_social_label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    text-align: right;
}

.footer_social_icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer_social_link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary_color);
    color: var(--deeb_dark);
    font-size: 16px;
}

.footer_social_link:hover {
    filter: brightness(1.08);
    color: var(--deeb_dark);
}

.footer_mid {
    padding-top: 56px;
    padding-bottom: 48px;
}

.footer_brand {
    text-decoration: none;
    max-width: 150px;
}


.footer_desc {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    max-width: 320px;
}

.footer_col_title {
    font-size: 17px;
    font-weight: 600;
    color: var(--secondary_color);
    margin-bottom: 20px;
}

.footer_links li + li {
    margin-top: 10px;
}

.footer_links a {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
}

.footer_links a:hover {
    color: var(--primary_color);
}

.footer_newsletter_text {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 16px;
}

.footer_newsletter_wrap {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 100%;
}

.footer_newsletter_input {
    width: 100%;
    padding: 14px 52px 14px 18px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.25);
    color: var(--white_color);
    font-size: 14px;
    outline: none;
}

.footer_newsletter_input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.footer_newsletter_input:focus {
    border-color: var(--primary_color);
}

[dir="rtl"] .footer_newsletter_input {
    padding: 14px 18px 14px 52px;
}

.footer_newsletter_btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary_color);
    color: var(--deeb_dark);
    cursor: pointer;
}

[dir="rtl"] .footer_newsletter_btn {
    right: auto;
    left: 6px;
}

.footer_newsletter_btn:hover {
    filter: brightness(1.08);
}

.footer_copy {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
    padding-top: 8px;
}




/* Start Testimonials Section */
.testimonials_section {
    padding: 100px 0;
    background: var(--white_color);
}
.testimonials_section .testimonial_card {
    background: #f3f3f3;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    /* max-width: 600px; */
}

/* Stars */
.testimonials_section .stars {
    color: var(--deeb_sec);
    font-size: 18px;
}

/* Quote */
.testimonials_section .quote {
    font-size: 40px;
    color: #ccc;
}

/* Text */
.testimonials_section .testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

/* Divider */
.testimonials_section .divider {
    height: 1px;
    background: #ddd;
    margin: 40px 0;
}

/* User */
.testimonials_section .user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonials_section .user img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonials_section .user h4 {
    margin: 0;
    font-size: 18px;
}

.testimonials_section .user span {
    color: #777;
    font-size: 14px;
}
/* End Testimonials Section */

/* Start Blogs Section */
.blogs_section {
    padding: 100px 0;
}
.blogs_section .blog_card .image {
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    margin-bottom: 20px;
}
.blogs_section .blog_card .image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.blogs_section .blog_card:hover .image img {
    transform: scale(1.08);
}
.blogs_section .blog_card h2 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4em;
    letter-spacing: 0px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #0406181a;
    transition: 0.5s ease;
    color: var(--deeb_dark);
}

.blogs_section .blog_card:hover h2 {
    color: var(--deeb_sec);
}
.blogs_section .btn_primary {
    background: none;
    color: var(--deeb_dark);
    padding: 0;
}
.blogs_section .btn_primary:hover{
    color: var(--deeb_sec);
}
.blogs_section .btn_primary svg path {
    fill: var(--deeb_sec);
}
.blogs_section .btn_primary:hover svg path {
    fill: var(--deeb_sec);
}

/* End Blogs Section */

/* Contact page section */
.contact_section {
    padding: 90px 0 100px;
    background: var(--white_off);
}

.contact_page_badge {
    background: var(--white_color);
    border: 1px solid var(--border_color);
    margin-bottom: 24px;
}

.contact_main_title {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    line-height: 1.3;
    color: var(--deeb_dark);
    margin-bottom: 20px;
}

.contact_main_title em {
    font-style: italic;
    font-weight: 700;
}

.contact_lead {
    font-size: 15px;
    line-height: 1.85;
    font-weight: 400;
    color: var(--dark_color);
    margin-bottom: 28px;
    max-width: 480px;
}

.contact_email {
    font-size: 17px;
    font-weight: 500;
    color: var(--deeb_dark);
}
.contact_email i ,
.contact_phone i{
    font-size: 20px;
}

.contact_email i,
.contact_email:hover,
.contact_phone i{
    color: var(--deeb_sec);
}

.contact_phone {
    font-size: 16px;
    font-weight: 400;
    color: var(--deeb_dark);
}

.contact_address_wrap {
    border-top: 1px solid var(--border_color);
    border-bottom: 1px solid var(--border_color);
    padding: 20px 0;
    margin-top: 8px;
}

.contact_address {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
}

.contact_address_label {
    font-weight: 700;
    color: var(--deeb_dark);
    display: inline-block;
    margin-inline-end: 6px;
}

.contact_address_text {
    color: var(--dark_color);
    font-weight: 400;
}

.contact_soc_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(71, 71, 71, 0.35);
    color: var(--dark_color);
    background: transparent;
    font-size: 15px;
}

.contact_soc_btn:hover {
    border-color: var(--primary_color);
    color: var(--white_off);
    background: var(--deeb_sec);
}

.contact_form_card {
    background: var(--white_color);
    border-radius: var(--raduis);
    padding: 40px 36px;
    box-shadow: 0 18px 50px rgba(21, 25, 44, 0.08);
}

.contact_field_label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--deeb_dark);
    margin-bottom: 8px;
}

.contact_form .contact_input {
    border: none;
    border-radius: 14px;
    background: #ebe9e4;
    padding: 14px 18px;
    font-size: 14px;
    color: var(--deeb_dark);
}

.contact_form .contact_input::placeholder {
    color: rgba(71, 71, 71, 0.45);
}

.contact_form .contact_input:focus {
    box-shadow: none;
    outline: 2px solid rgba(198, 183, 162, 0.45);
    background: #ebe9e4;
}

.contact_textarea {
    min-height: 140px;
    resize: vertical;
}

.contact_submit_btn {
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    color: var(--white_color);
    background: var(--deeb_dark);
    border: none;
}

.contact_submit_btn:hover {
    background: var(--dark_color);
    color: var(--white_color);
}

.contact_location_teaser .contact_page_badge {
    margin-bottom: 0;
}

/* About page — intro, founding story, values */
.about_page_intro_section {
    padding: 60px 0 40px;
    background: var(--secondary_color);
}

.about_page_intro_section .header_section {
    max-width: 800px;
}

.about_intro_text {
    max-width: 720px;
    margin-top: 12px;
}

.about_founding_section {
    padding: 50px 0 70px;
}

.about_founding_image {
    border-radius: var(--raduis);
    overflow: hidden;
    height: 100%;
    min-height: 280px;
}

.about_founding_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about_values_section {
    padding: 80px 0 40px;
    background: var(--secondary_color);
}

.about_values_lead {
    max-width: 640px;
    margin-top: 8px;
}

.about_value_card {
    background: var(--white_off);
    border-radius: var(--raduis);
    padding: 28px 24px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(4, 6, 24, 0.06);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.about_value_card:hover {
    box-shadow: 0 14px 40px rgba(21, 25, 44, 0.08);
    border-color: rgba(198, 183, 162, 0.35);
}

.about_value_icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--deeb_sec);
    color: var(--white_off);
    font-size: 22px;
}

.about_value_card .card_title {
    margin-bottom: 12px;
}

.about_value_card .desc_content {
    font-size: 14px;
    line-height: 1.75;
}

/* Product details — وحدات للبيع */
.product_gallery_wrap {
    position: relative;
    border-radius: var(--raduis);
    overflow: hidden;
    background: var(--white_color);
}

.product_gallery_slide {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.product_gallery_slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product_details_page .product_gallery_pagination {
    bottom: 16px !important;
}

.product_details_page .product_gallery_pagination .swiper-pagination-bullet {
    background: var(--white_color);
    opacity: 0.45;
}

.product_details_page .product_gallery_pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary_color);
}

.product_back_to_list {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary_color);
    margin-bottom: 12px;
}

.product_back_to_list:hover {
    color: var(--deeb_dark);
}

.product_unit_badge {
    margin-bottom: 8px;
}

.product_unit_title {
    margin-bottom: 16px;
}

.product_subheading {
    font-size: 20px;
    font-weight: 600;
    color: var(--deeb_dark);
    margin: 32px 0 16px;
}

.product_spec_item {
    background: var(--white_off);
    border-radius: 14px;
    padding: 14px 16px;
    height: 100%;
    border: 1px solid rgba(4, 6, 24, 0.06);
}

.product_spec_label {
    display: block;
    font-size: 13px;
    color: var(--dark_color);
    margin-bottom: 6px;
}

.product_spec_value {
    font-size: 16px;
    font-weight: 600;
    color: var(--deeb_dark);
}

.product_feature_list {
    padding: 0;
    margin: 0;
}

.product_feature_list li {
    position: relative;
    padding-right: 28px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--dark_color);
    list-style: none;
}

.product_feature_list li i {
    position: absolute;
    right: 0;
    top: 4px;
    color: var(--primary_color);
    font-size: 14px;
}

.product_price_card {
    /* position: sticky; */
    /* top: 100px; */
    background: var(--white_color);
    border-radius: var(--raduis);
    padding: 28px 24px;
    box-shadow: 0 18px 50px rgba(21, 25, 44, 0.08);
    border: 1px solid rgba(4, 6, 24, 0.06);
}

.product_status {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.product_status--available {
    background: rgba(198, 183, 162, 0.25);
    color: var(--deeb_dark);
}

.product_price_label {
    font-size: 14px;
    color: var(--dark_color);
    margin-bottom: 4px;
}

.product_price_amount {
    margin: 0 0 8px;
    line-height: 1.1;
}

.product_price_num {
    font-size: clamp(26px, 4vw, 34px);
    font-weight: 700;
    color: var(--deeb_dark);
    font-family: var(--number_font);
    letter-spacing: 0.02em;
}

.product_price_cur {
    font-size: 18px;
    font-weight: 600;
    color: var(--deeb_dark);
    margin-inline-start: 6px;
}

.product_price_note {
    font-size: 12px;
    color: #777;
    margin-bottom: 20px;
}

.product_cta_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.product_phone_link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--deeb_dark);
}

.product_phone_link:hover {
    color: var(--primary_color);
}


/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/

/* Start page Details */
.details_page {
    padding: 100px 0;
}
.details_page .single_image {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}
.details_page .single_image::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}
.details_page .single_image:hover::after {
    height: 250%;
    transition: all 600ms linear !important;
    background-color: transparent;
}
.details_page .single_image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: 0.5s ease-in-out;
}
.details_page .details_content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}
.details_page .details_content p {
    margin-bottom: 20px;
    color: #585960;
}
.details_page .details_content blockquote {
    background: var(--white_color) url(/img/icon-blockquote.svg) no-repeat;
    background-position: 30px 30px;
    background-size: 45px;
    border-radius: 20px;
    padding: 30px 30px 30px 90px !important;
    margin-bottom: 30px !important;
}
.details_page .details_content blockquote p {
    font-size: 20px !important;
    color: #040618;
    font-weight: 500;
    margin-top: 0;
    line-height: 1.4em;
    margin-bottom: 20px;
}

.details_page .details_content h2 {
    color: #040618;
    font-weight: 500;
    margin: 1em 0 0.7em;
}
.details_page .details_content ul {
    padding-left: 20px;
    margin: 20px 0;
}

.details_page .details_content ul li {
    line-height: 1.5em;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 400;
    color: #585960;
}

/* Post tags + share row */
.details_page .details_content > .entry + .row {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid #0406181a;
}

.details_page .post-tags .tag-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    font-size: 15px;
    line-height: 1.5;
    color: #585960;
}

.details_page .post-tags .tag-links a {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--deeb_dark);
    background: rgba(4, 6, 24, 0.05);
    border: 1px solid rgba(4, 6, 24, 0.1);
    text-decoration: none;
    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.details_page .post-tags .tag-links a:hover {
    color: var(--deeb_sec);
    border-color: var(--deeb_sec);
    background: rgba(4, 6, 24, 0.04);
}

.details_page .post-social-sharing ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

@media (min-width: 992px) {
    .details_page .post-social-sharing ul {
        margin-top: 0;
        justify-content: flex-end;
    }
}

.details_page .post-social-sharing a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary_color);
    color: var(--deeb_dark);
    font-size: 15px;
    text-decoration: none;
    transition: filter 0.25s ease;
}

.details_page .post-social-sharing a:hover {
    filter: brightness(1.08);
    color: var(--deeb_dark);
}

/* Comments / reply form */
.details_page .comment-box {
    width: 100%;
    max-width: 1100px;
    margin: 40px auto 0;
    padding-top: 32px;
    border-top: 1px solid #0406181a;
}

.details_page .comments-area {
    margin: 0;
}

.details_page .comment-reply-title {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 600;
    color: #040618;
    margin: 0 0 8px;
    line-height: 1.3;
}

.details_page .comment-reply-title small {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 400;
}

.details_page .comment-reply-title small a {
    color: var(--deeb_sec);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.details_page .comment-reply-title small a:hover {
    color: var(--deeb_dark);
}

.details_page .comment-form .comment-notes {
    font-size: 14px;
    line-height: 1.65;
    color: #777;
    margin-bottom: 24px !important;
}

.details_page .comment-form .comment-notes .required {
    color: var(--deeb_sec);
    font-weight: 600;
}

.details_page .comment-form label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #040618;
    margin-bottom: 8px;
}

.details_page .comment-form label .required {
    color: var(--deeb_sec);
    font-weight: 600;
}

.details_page .comment-form input,
.details_page .comment-form textarea {
    width: 100%;
    max-width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    line-height: 1.5;
    color: #040618;
    background: var(--white_color);
    border: 1px solid rgba(4, 6, 24, 0.12);
    border-radius: 16px;
    outline: none;
    box-sizing: border-box;
}

.details_page .comment-form textarea {
    min-height: 180px;
    resize: vertical;
}

.details_page .comment-form input:focus,
.details_page .comment-form textarea:focus {
    border-color: var(--primary_color);
}

.details_page .comment-form p {
    margin-bottom: 20px;
}

.details_page .comment-form p.form-submit {
    margin-bottom: 0;
}

.details_page .comment-form-cookies-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.details_page .comment-form-cookies-consent input[type='checkbox'] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--deeb_dark);
    cursor: pointer;
}

.details_page .comment-form-cookies-consent label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: #585960;
    cursor: pointer;
}

.details_page .form-submit input.submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border: 0;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--primary_font);
    color: var(--white_color);
    background: var(--deeb_dark);
    cursor: pointer;
}

.details_page .form-submit input.submit:hover {
    background: var(--deeb_sec);
    color: var(--deeb_dark);
}

@media (min-width: 768px) {
    .details_page #commentform.comment-form {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        column-gap: 24px;
    }

    /* أول عنصر ياخد العرض كله */
.details_page #commentform.comment-form > *:first-child {
    grid-column: 1 / -1;
}
}

@media (max-width: 991.98px) {
    .details_page {
        padding: 60px 0 72px;
    }

    .details_page .details_content > .entry + .row > [class*='col-'] {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .details_page .post-tags .tag-links {
        justify-content: center;
    }

    .details_page .post-social-sharing ul {
        margin-top: 14px;
        justify-content: center !important;
    }
}

@media (max-width: 575.98px) {
    .details_page {
        padding: 40px 0 56px;
    }

    .details_page .comment-form input,
    .details_page .comment-form textarea {
        font-size: 16px;
    }

    .details_page .form-submit input.submit {
        width: 100%;
        box-sizing: border-box;
    }
}

/* End page Details */