﻿@import"https://fonts.googleapis.com/css?family=Playfair+Display:400,700&display=swap";
@import"https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap";

.noto-kufi-arabic-custom {
    font-family: "Noto Kufi Arabic", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

* {
    font-family: inherit;
}

h1 {
    font-family: "Noto Kufi Arabic", serif;
    font-weight: 700;
    font-size: 80px;
}

/* Add this CSS to your stylesheet */
.consultation-content,
.consultation-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.consultation-content img {
    max-width: 100%;
    height: auto;
}

.consultation-form {
    padding: 20px;
}


/* 
========================================== WhatsApp Button and Call Button Styles ==========================================*/

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 45px;
    left: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 100%;
    padding: 0px 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    /* Higher z-index to keep the button on top */
    overflow: visible;
    /* Allow the wave effect to be visible outside the button */
}

.whatsapp-button a {
    color: white;
    text-decoration: none;
    font-size: 35px;
    position: relative;
    z-index: 1200;
    /* Position relative for the wave effect */
}

/* WhatsApp hover effect */
.whatsapp-button:hover {
    background-color: #1ea952;
    /* Darker green on hover */
}

/* Wave effect */
.whatsapp-button::before,
.whatsapp-button::after {
    content: '';
    position: absolute;
    top: 50%;
    /* Position below the button */
    left: 50%;
    width: 120%;
    /* Base width */
    height: 120%;
    /* Base height */
    background: rgba(37, 211, 102, 0.5);
    /* Increased opacity for better visibility */
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    /* Start scaled down */
    animation: wave-animation 2.5s ease-out infinite;
    /* Infinite animation */
    opacity: 0;
    /* Start invisible */
    z-index: 999;
    /* Lower z-index to place below the button */
}

/* Second wave */
.whatsapp-button::after {
    animation-delay: 0.25s;
    /* Delay for the second wave */
}

/* Keyframes for wave animation */
@keyframes wave-animation {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.1;
        /* Fade in */
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        /* Scale up slightly less */
        opacity: 0.5;
        /* Increased opacity */
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        /* Scale up more */
        opacity: 0;
        /* Fully transparent */
    }
}

/* Call Button */
.call-button {
    position: fixed;
    bottom: 120px;
    left: 20px;
    background-color: #0066ff;
    color: white;
    border-radius: 100%;
    padding: 0px 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.call-button a {
    color: white;
    text-decoration: none;
    font-size: 35px;
}

/* Call button hover effect */
.call-button:hover {
    background-color: #0052cc;
}

/* Responsive styles for small screens */
@media (max-width: 767px) {
    .whatsapp-button {
        bottom: 20px;
        /* Adjust bottom position */
        left: 10px;
        /* Adjust right position */
        padding: 0px 10px;
        /* Smaller padding */
    }

    .whatsapp-button a {
        font-size: 25px;
        /* Smaller font size */
    }

    .call-button {
        bottom: 70px;
        /* Adjust bottom position */
        left: 10px;
        /* Adjust right position */
        padding: 0px 10px;
        /* Smaller padding */
    }

    .call-button a {
        font-size: 25px;
        /* Smaller font size */
    }
}

/* 
==========================================
    End of WhatsApp Button and Call Button Styles
==========================================
*/

.equal-height {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blig-content {
    flex-grow: 1;
}

/* Responsive text classes */
@media (max-width: 576px) {
    .welcome-text {
        font-size: 20px !important;
    }

    .company-name {
        font-size: 28px !important;
        font-weight: bold;
    }

    .company-desc {
        font-size: 20px !important;
        font-weight: bold;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .welcome-text {
        font-size: 20px !important;
    }

    .company-name {
        font-size: 28px !important;
        font-weight: bold;
    }

    .company-desc {
        font-size: 20px !important;
        font-weight: bold;
    }
}

@media (min-width: 769px) {
    .welcome-text {
        font-size: 32px !important;
        font-weight: 400 !important;
    }

    .company-name {
        font-size: 70px !important;
        font-weight: 700 !important;
    }

    .company-desc {
        font-size: 32px !important;
        font-weight: 400 !important;
    }
}

/* Add these styles to your CSS file */
.slider-text .welcome-text,
.slider-text .company-name,
.slider-text .company-desc {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    /* Adds subtle shadow to all text */
}

.slider-text .company-name {
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    /* Stronger shadow for the main heading */
}

.slider-text .default-btn {
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    /* Subtle shadow for the button */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    /* Subtle shadow for button text */
}

/* ========================================== Work Area Styles Start ==========================================*/
.work-area {
    background-color: #f0f0f0;
    padding: 50px 20px;
}

.important-sites-title {
    text-align: center;
}

.image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.image-card {
    flex: 1 1 50%;
    /* Default to 2 cards per row on smaller screens */
    max-width: 50%;
    /* Ensure max width allows for 2 cards */
    padding: 10px;
    /* Add padding for spacing */
}

.image-card img {
    width: 100%;
    height: auto;
    /* Maintain aspect ratio */
    max-height: 230px;
    /* Set a max height for the images */
    border-radius: 50px;
}

/* Medium screen styles */
@media (min-width: 768px) {
    .image-card {
        flex: 1 1 50%;
        /* 2 cards per row */
        max-width: 50%;
    }
}

/* Large screen styles */
@media (min-width: 1200px) {
    .image-card {
        flex: 1 1 25%;
        /* 4 cards per row */
        max-width: 25%;
    }
}

/* ========================================== Work Area Styles End ==========================================*/

/* Add this CSS to your stylesheet */
.responsive-paragraph {
    padding-top: 15px;
    font-size: 20px;
    /* Default font size for larger screens (1440px and 1024px) */
    line-height: 1.4;
    text-align: center;
}

@media (max-width: 768px) {
    .responsive-paragraph {
        font-size: 13px;
        /* Font size for screens 768px, 425px, and 375px */
        padding: 10px 10px 0 10px;
    }
}

/* Default size for small screens */
h2.company-title {
    color: white;
    font-size: 18px;
}

/* Larger size for bigger screens */
@media (min-width: 768px) {
    h2.company-title {
        font-size: 30px;
    }
}

.important-sites-title {
    text-align: center;
    font-size: 30px;
}

@media (min-width: 768px) {
    .important-sites-title {
        font-size: 22px;
    }
}

.about-title {
    font-size: 22px;
}

@media (min-width: 768px) {
    .about-title {
        font-size: 30px;
    }
}

.about-subtitle {
    font-size: 20px;
}

@media (min-width: 768px) {
    .about-subtitle {
        font-size: 24px;
    }
}

.about-description {
    font-size: 13px;
}

@media (min-width: 768px) {
    .about-description {
        font-size: 20px;
    }
}


/* Contact info cards custom styling */
.contact-cards-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.contact-card-column {
    display: flex;
    margin-bottom: 30px;
}

.contact-info-card {
    height: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    text-align: center;
    width: 100%;
}

.contact-info-card i {
    margin-bottom: 15px;
}

.contact-info-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.4;
}

.contact-info-card p,
.contact-info-card a {
    margin: 0;
    line-height: 1.4;
}

/* Contact form padding for medium screens */
@media (min-width: 768px) and (max-width: 1024px) {
    .contact-form-wrapper {
        padding-bottom: 50px;
    }
}

/* Base styles for consultation section */
.consultation-content,
.consultation-form {
    height: 100%;
}

.consultation-image-wrapper {
    height: 100%;
    width: 100%;
}

.consultation-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Specific fix for tablet screens */
@media (min-width: 768px) and (max-width: 1024px) {
    .consultation-content {
        width: 100%;
        height: 100%;
        display: flex;
    }

    .consultation-image-wrapper {
        flex: 1;
        display: flex;
    }

    .consultation-image {
        min-height: 600px;
        /* Adjust this value to match your form height */
        object-fit: cover;
    }

    /* Make parent container flex */
    .consultation-area .row.align-items-center {
        display: flex;
        flex-wrap: wrap;
    }

    .consultation-area .col-lg-6 {
        display: flex;
    }
}

/* Custom box card styles */
.custom-box-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.custom-box-column {
    display: flex;
    margin-bottom: 30px;
}

.custom-box-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    text-align: center;
}

/* Specific styles for tablet screens */
@media (min-width: 768px) and (max-width: 1024px) {
    .custom-box-column {
        min-height: 350px;
        /* Adjust this value based on your content */
    }

    .custom-box-card {
        min-height: 100%;
    }

    .custom-box-card i {
        margin-bottom: 20px;
    }

    .custom-box-card h3 {
        margin-bottom: 15px;
    }

    .custom-box-card p {
        flex-grow: 1;
        margin-bottom: 20px;
    }
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Practice area container */
.practice-area .container {
    max-width: 1650px;
    padding: 0 30px;
    margin: 0 auto;
}

/* Cards wrapper */
.practice-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    width: 100%;
    padding: 20px;
}

/* Column wrapper */
.practice-grid>div {
    flex: 1 1 525px;
    max-width: 525px;
    min-width: 300px;
}

/* Flip card styles */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 280px;
    perspective: 1000px;
    margin: 0;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateX(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.flip-card-front {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* Alternating colors */
.practice-grid>div:nth-child(odd) .flip-card-front {
    background-color: #dcdee7;
}

.practice-grid>div:nth-child(even) .flip-card-front {
    background-color: #ebe6db;
}

.flip-card-front img {
    width: auto;
    height: 60%;
    max-width: 80%;
}

/* Add this CSS to your stylesheet */
.flip-card-front h3 {
    font-size: 21px;
    /* Default font size for larger screens (1440px and 1024px) */
}

@media (max-width: 1024px) {
    .flip-card-front h3 {
        font-size: 14px;
        /* Font size for screens below 1024px */
    }
}

.flip-card-back {
    background-color: #2c3e50;
    color: white;
    transform: rotateX(180deg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flip-card-back p {
    margin-bottom: 20px;
    font-size: 14px;
}

.flip-card-back button {
    background-color: #ccac8c;
    padding: 10px 20px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
    font-size: 12px;
}

.flip-card-back button:hover {
    background-color: white;
    color: black;
    transform: scale(1.05);
}


/* Responsive */
@media (min-width: 1025px) {
    .practice-grid {
        padding: 20px 40px;
    }

    .practice-grid>div {
        flex: 0 1 calc(33.333% - 20px);
        min-width: 300px;
        max-width: 525px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .practice-grid {
        padding: 20px 30px;
    }

    .practice-grid>div {
        flex: 0 1 calc(50% - 15px);
        min-width: 300px;
        max-width: 525px;
    }
}

@media (max-width: 768px) {
    .practice-area .container {
        padding: 0 20px;
    }

    .practice-grid {
        max-width: 525px;
        padding: 15px;
        margin: 0 auto;
        /* Center the grid container */
    }

    .practice-grid>div {
        flex: 0 0 100%;
        /* Changed to prevent stretching */
        width: 100%;
        max-width: 525px;
        margin: 0 auto;
        /* Center each card */
    }

    .flip-card {
        margin: 0 auto;
        /* Center the flip card */
    }
}

.service-pages-fonts {
    font-size: 16px;
}

@media (max-width: 768px) {
    .service-pages-fonts {
        font-size: 16px;
        /* Font size for screens 768px, 425px, and 375px */
    }
}

.service-pages-fonts a:hover {
    color: #b69d74;
}

.breadcrumb-links {
    display: inline-block;
}

.breadcrumb-links a {
    display: inline-block;
    margin-right: 5px;
}

.breadcrumb-links a:last-child {
    margin-right: 10px;
    /* Space before the arrow icon */
}

.blogsContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10vh;
    gap: 30px;
}

/* Scoped Card Styles */
.blogCard1 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.blogCard1 .custom-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    /* Changed from center to flex-start */
    justify-content: space-between;
    /* Changed from center to space-between */
    gap: 20px;
    padding: 30px;
    border-radius: 12px;
    background: #0376ea14;
    width: 60vw;
}

.blogCard1 .custom-card .card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Aligns content to the side */
    flex: 1;
    /* Takes available space */
    max-width: calc(100% - 170px);
    /* Prevents text from overlapping image */
}

.blogCard1 .custom-card .blogCardHeading a {
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 10px;
    text-align: right;
    width: 100%;
    color: black;
    /* Initial color */
    transition: color 0.3s ease;
    /* Smooth transition for color change */
}

.blogCard1 .custom-card .blogCardHeading a:hover {
    color: #0376ea;
    /* Blue color on hover */
    cursor: pointer;
    /* Changes cursor to pointer on hover */
}

.blogCard1 .custom-card .card-text {
    font-size: 0.9rem;
    color: #4b5563;
    margin: 0 0 15px;
    text-align: right;
    /* Aligns text to the right */
    width: 100%;
    line-height: 1.5;
    /* Improves readability */
}

.blogCard1 .custom-card .card-image {
    flex-shrink: 0;
    /* Prevents image from shrinking */
    width: 150px;
    /* Fixed width container */
}

.blogCard1 .custom-card .card-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.blogCard1 .custom-card .card-button {
    padding: 8px 16px;
    background: #69727d;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: background 0.3s ease;
    width: fit-content;
}

.blogCard1 .custom-card .card-button:hover {
    background: #4a5158;
}

/* Add responsive styles */
@media (max-width: 768px) {
    .blogCard1 .custom-card {
        width: 90vw;
        flex-direction: column-reverse;
        /* Image on top, content below */
        align-items: center;
    }

    .blogCard1 .custom-card .card-content {
        max-width: 100%;
        align-items: center;
    }

    .blogCard1 .custom-card .blogCardHeading,
    .blogCard1 .custom-card .card-text {
        text-align: center;
    }
}

#wave {
    display: block;
    /* Ensure the SVG is a block element */
    margin: 0;
    /* Remove any default margin */
    padding: 0;
    /* Remove any default padding */
}


.footer-top-area {
    position: relative;

    /* Allow absolute positioning of child elements */
    padding-bottom: 60px;
    /* Add padding to the bottom */
}

.footer-image {
    position: absolute;
    /* Position the image absolutely */
    bottom: 0;
    /* Align to the bottom of the footer */
    right: 0;
    /* Align to the right of the footer */
    max-width: 100%;
    /* Make the image responsive */
    height: auto;
    /* Maintain aspect ratio */
    /* width: auto; */
    /* Allow width to adjust */
    z-index: 0;
    /* Ensure the image is below other content */
    opacity: 0.5;
    /* Default opacity */
}

/* Responsive styles for smaller screens */
@media (max-width: 767px) {
    .footer-image {
        max-width: 50%;
        /* Make the image smaller on small screens */
        opacity: 0.7;
        /* Lower opacity on small screens */
        z-index: 0;
        /* Ensure the image is layered below other footer elements */
    }
}

/* Ensure footer text and links have a higher z-index */
.footer-wrapper {
    position: relative;
    /* Ensure footer content is positioned */
    z-index: 1;
    /* Higher z-index to appear above the image */
}

.company-title {
    text-align: center;
    /* Center the text */
}

.first-line,
.second-line {
    display: inline;
    /* Default to inline for larger screens */
}

/* Media query for small screens */
@media (max-width: 767px) {

    .first-line,
    .second-line {
        display: block;
        /* Change to block for small screens */
    }
}

.social-links {
    display: inline-flex;
    /* Ensure flex display */
    justify-content: center;
    /* Center the icons */
    gap: 100px;
    /* Default gap for larger screens */
    padding: 0;
    /* Remove default padding */
}

/* Media query for smaller screens */
@media (max-width: 767px) {
    .social-links {
        gap: 30px;
        /* Adjust gap for smaller screens */
    }
}






/* Styles for the Recent Case Area */
.recent-case-area {
    padding: 100px 20px;
    /* Padding for the section */
    background-color: #f9f9f9;
    /* Optional background color */
}

.section-title {
    text-align: center;
    /* Center the title */
    margin-bottom: 30px;
    /* Space below the title */
}

.work-case-wrap {
    display: flex;
    /* Use flexbox for layout */
    flex-wrap: wrap;
    /* Allow items to wrap to the next line */
    justify-content: space-between;
    /* Space between items */
}

/* Individual Case Card Styles */
.single-case {
    flex: 1 1 calc(33.333% - 20px);
    /* 3 cards per row with space */
    margin: 10px;
    /* Margin around each card */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* Optional shadow for cards */
    border-radius: 8px;
    /* Rounded corners for cards */
    overflow: hidden;
    /* Ensure content doesn't overflow */
    background-color: white;
    /* Background color for cards */
    display: flex;
    /* Use flexbox for card content */
    flex-direction: column;
    /* Stack content vertically */
}

/* Image Styles */
.case-image {
    width: 100%;
    /* Make the image fill the card width */
    height: 260px;
    /* Fixed height for images */
    object-fit: cover;
    /* Cover the area while maintaining aspect ratio */
}

/* Content Styles */
.case-content {
    padding: 15px;
    /* Padding for content */
    text-align: center;
    /* Center the text */
    flex-grow: 1;
    /* Allow content to grow and fill available space */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .single-case {
        flex: 1 1 calc(50% - 20px);
        /* 2 cards per row on smaller screens */
    }

    #hidden-card {
        flex: 1 1 calc(50% - 20px);
        /* Ensure the last card takes the same width as others */
        margin: 10px;
        /* Same margin as other cards */
    }
}

@media (max-width: 480px) {
    .single-case {
        flex: 1 1 100%;
        /* 1 card per row on very small screens */
    }

    #hidden-card {
        flex: 1 1 100%;
        /* Ensure the last card takes full width on very small screens */
        margin: 10px;
        /* Same margin as other cards */
    }
}

/* New media query for 375px */
@media (max-width: 375px) {
    #hidden-card {
        max-width: 285px;
        /* Set max width for the last card on small screens */
        margin: 0 auto;
        /* Center the last card */
    }
}

.single-case a {
    text-decoration: none;
    /* Remove underline from links */
    color: inherit;
    /* Inherit color from parent */
    display: flex;
    /* Make the anchor a flex container */
    flex-direction: column;
    /* Stack image and content vertically */
    height: 100%;
    /* Ensure the anchor takes the full height of the card */
}



.footer-text {
    display: flex;
    /* Use flexbox for layout */
    flex-direction: column;
    /* Arrange items in a column */
    align-items: center;
    /* Center items horizontally */
}

.copyright-text {
    margin: 0;
    /* Remove default margin */
}

.developed-by-text {
    margin: 0;
    /* Remove default margin */
    display: flex;
    /* Use flexbox for the second line */
    align-items: center;
    /* Center the logo and text vertically */
}

.developed-by-text a {
    color: #c8ac90 !important;
    /* Text color */
    text-decoration: none;
    /* Remove underline */
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
    /* Smooth transition for color and scale */
}

.developed-by-text a:hover {
    color: #ff85b3 !important;
    /* Change to a vibrant pink on hover */
    text-decoration: underline;
    /* Add underline on hover */
    transform: scale(1.05);
    /* Slightly increase the size on hover */
}

/* Ensure the main slider item has relative positioning */
.main-slider-item {
    position: relative;
    /* Set the position to relative */
    animation: zoom-bg 5s ease-in-out infinite;
    /* Adjust duration as needed */
    background-position: center;
    /* Center the background image */
    background-repeat: no-repeat;
    overflow: hidden;
    /* Prevent background image from repeating */
}

/* Slider Area */
.slider-area {
    position: relative;
    /* Set the slider area to relative positioning */
}

/* Particle Canvas */
.corner-canvas {
    position: absolute;
    width: 50vw;
    /* Adjust width as needed */
    height: 50vh;
    /* Adjust height as needed */
    pointer-events: all;
    /* Allow the canvas to detect mouse movements */
    z-index: 99;
    /* Higher z-index ensures the canvas is on top */
}

#top-left {
    top: 0;
    left: 0;
}

#top-right {
    top: 0;
    right: 0;
}

/* Additional styles for the slider text */
#hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 2;
}

#hero-text h1 {
    font-size: 3em;
    margin: 0;
}

#hero-text p {
    font-size: 1.2em;
    margin: 0.5em 0 0;
}


p.about-paragraph {
    font-size: 20px;
    /* Default font size */
}

/* For screen sizes 768px and below */
@media (max-width: 768px) {
    p.about-paragraph {
        font-size: 13px;
    }
}

/* For screen sizes 425px and below */
@media (max-width: 425px) {
    p.about-paragraph {
        font-size: 13px;
    }
}

/* Default font size */
.about-title {
    font-size: 30px;
    /* Default size for larger screens */
}

/* Font size for 1440px and 1024px */
@media (max-width: 1440px) and (min-width: 1024px) {
    .about-title {
        font-size: 30px;
    }
}

/* Font size for 768px, 425px, and 375px */
@media (max-width: 768px) {
    .about-title {
        font-size: 22px;
    }
}


/* Add this CSS to your stylesheet */
.practice-area-h2 {
    font-size: 30px;
    /* Default font size for larger screens */
}

@media (max-width: 768px) {
    .practice-area-h2 {
        font-size: 22px;
        /* Font size for 768px, 425px, and 375px */
    }
}

/* Add this CSS to your stylesheet */
.counter-title {
    font-size: 20px;
    /* Default font size for larger screens (1440px and 1024px) */
}

@media (max-width: 1024px) {
    .counter-title {
        font-size: 16px;
        /* Font size for screens below 1024px */
    }
}

/* Add this CSS to your stylesheet */
.single-testimonial p {
    font-size: 20px;
    /* Default font size for larger screens (1440px and 1024px) */
}

@media (max-width: 768px) {
    .single-testimonial p {
        font-size: 16px;
        /* Font size for screens 768px, 425px, and 375px */
    }
}


/* Add this CSS to your stylesheet */
.contact-banner-title a.default-btn {
    font-size: 18px;
    /* Default font size for larger screens (1440px and 1024px) */
}

@media (max-width: 768px) {
    .contact-banner-title a.default-btn {
        font-size: 16px;
        /* Font size for screens 768px, 425px, and 375px */
    }
}



/* Add this CSS to your stylesheet */
.work-area-header {
    font-size: 30px;
    text-align: center;
    /* Default font size for larger screens (1440px and 1024px) */
}

@media (max-width: 768px) {
    .work-area-header {
        font-size: 22px;
        /* Font size for screens 768px, 425px, and 375px */
    }
}


/* Add this CSS to your stylesheet */
.blog-details-heading {
    font-size: 24px;
    /* Default font size for larger screens */
}

/* Media queries for different screen sizes */
@media (max-width: 1440px) {
    .blog-details-heading {
        font-size: 24px;
        /* Font size for 1440px and below */
    }
}

@media (max-width: 1024px) {
    .blog-details-heading {
        font-size: 24px;
        /* Font size for 1024px and below */
    }
}

@media (max-width: 768px) {
    .blog-details-heading {
        font-size: 20px;
        /* Font size for 768px and below */
    }
}

@media (max-width: 425px) {
    .blog-details-heading {
        font-size: 20px;
        /* Font size for 425px and below */
    }
}

@media (max-width: 375px) {
    .blog-details-heading {
        font-size: 20px;
        /* Font size for 375px and below */
    }
}


/* Add this CSS to your stylesheet */
.more-blogs-heading {
    font-size: 24px;
    /* Default font size for larger screens */
}

/* Media queries for different screen sizes */
@media (max-width: 1440px) {
    .more-blogs-heading {
        font-size: 24px;
        /* Font size for 1440px and below */
    }
}

@media (max-width: 1024px) {
    .more-blogs-heading {
        font-size: 24px;
        /* Font size for 1024px and below */
    }
}

@media (max-width: 768px) {
    .more-blogs-heading {
        font-size: 20px;
        /* Font size for 768px and below */
    }
}

@media (max-width: 425px) {
    .more-blogs-heading {
        font-size: 20px;
        /* Font size for 425px and below */
    }
}

@media (max-width: 375px) {
    .more-blogs-heading {
        font-size: 20px;
        /* Font size for 375px and below */
    }
}


.service-pages-heading {
    /* Default for larger screens (1440px and 1024px) */
    font-size: 34px;
}

/* Media queries for smaller screens */
@media screen and (max-width: 768px) {
    .service-pages-heading {
        font-size: 24px;
    }
}

@media screen and (max-width: 425px) {
    .service-pages-heading {
        font-size: 24px;
    }
}

@media screen and (max-width: 375px) {
    .service-pages-heading {
        font-size: 24px;
    }
}

.service-pages-p {
    /* Default for larger screens (1440px and 1024px) */
    font-size: 20px;
}

/* Media queries for smaller screens */
@media screen and (max-width: 768px) {
    .service-pages-p {
        font-size: 16px;
    }
}

@media screen and (max-width: 425px) {
    .service-pages-p {
        font-size: 16px;
    }
}

@media screen and (max-width: 375px) {
    .service-pages-p {
        font-size: 16px;
    }
}

.service3-p {
    font-size: 16px !important;
}

.blog-details2-heading {
    /* Default for larger screens (1440px and 1024px) */
    font-size: 34px;
    font-weight: 900;
}

/* Media query for tablets and smaller screens */
@media screen and (max-width: 768px) {
    .blog-details2-heading {
        font-size: 24px;
    }
}


.boxes-wrap {
    padding: 0 50px;
    width: 100%;
}

.boxes-wrap .item {
    width: 100%;
    padding: 15px;


    .single-box.custom-box-card {
        width: 100%;
        height: 100%;
        padding: 30px;
        text-align: center;
        background-color: #fff;
        border-radius: 5px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
}

.boxes-wrap .owl-stage {
    display: flex;
    width: 100%;
}

.boxes-wrap .owl-item {
    display: flex;
    width: 100%;
}

/* Responsive settings */
@media (max-width: 991px) {
    .boxes-wrap {
        padding: 0 30px;
    }

    .single-box.custom-box-card {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .boxes-wrap {
        padding: 0 20px;
    }
}


/* -----------------------------------  BOX AREA STYLES ------------------------------- */

/* Odd cards - door panels */
.swiper-slide:nth-child(odd) .single-box.custom-box-card::before,
.swiper-slide:nth-child(odd) .single-box.custom-box-card::after {
    background-color: #dcdee7;
}

/* Even cards - door panels */
.swiper-slide:nth-child(even) .single-box.custom-box-card::before,
.swiper-slide:nth-child(even) .single-box.custom-box-card::after {
    background-color: #ebe6db;
}

/* Odd cards - background beneath doors */
.swiper-slide:nth-child(odd) .single-box.custom-box-card {
    background-color: #8d91a6;
}

/* Even cards - background beneath doors */
.swiper-slide:nth-child(even) .single-box.custom-box-card {
    background-color: #b69d74;
}

/* Text colors for odd cards */
.swiper-slide:nth-child(odd) .single-box.custom-box-card h3,
.swiper-slide:nth-child(odd) .single-box.custom-box-card p,
.swiper-slide:nth-child(odd) .single-box.custom-box-card i,
.swiper-slide:nth-child(odd) .single-box.custom-box-card .read-more {
    color: #000000;
}

/* Text colors for even cards */
.swiper-slide:nth-child(even) .single-box.custom-box-card h3,
.swiper-slide:nth-child(even) .single-box.custom-box-card p,
.swiper-slide:nth-child(even) .single-box.custom-box-card i,
.swiper-slide:nth-child(even) .single-box.custom-box-card .read-more {
    color: black;
}

/* Read more link hover state for all cards */
.single-box.custom-box-card:hover .read-more {
    color: #ffffff !important;
}


/* -----------------------------------  BOX AREA STYLES ------------------------------- */

































































body {
    padding: 0;
    margin: 0;
    font-family: "Noto Kufi Arabic", serif;
    font-size: 14px;
    line-height: 1.8;
    color: #333;
}

a {
    display: block;
    transition: all .5s;
    text-decoration: none
}

a:hover {
    text-decoration: none;
    color: #fff
}

a:focus {
    text-decoration: none
}

button {
    outline: 0 !important;
    box-shadow: none
}

button:focus {
    box-shadow: none
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #121232;
    font-family: "Noto Kufi Arabic", serif;
    font-weight: 700;
}

.d-table {
    width: 100%;
    height: 100%
}

.d-table-cell {
    vertical-align: middle
}

p {
    font-size: 15px;
    margin-bottom: 15px
}

p:last-child {
    margin-bottom: 0
}

img {
    max-width: 100%;
    height: auto
}

ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.form-control {
    height: 60px;
    color: #fff;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid #b69d74;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 0;
    padding: 0;
    font-size: 14px
}

.form-control::placeholder {
    color: #fff
}

.form-control:focus {
    color: #fff;
    background-color: rgba(0, 0, 0, 0);
    box-shadow: unset;
    outline: 0;
    border-color: #fff
}

.form-control:hover:focus,
.form-control:focus {
    box-shadow: unset
}

textarea.form-control {
    height: auto;
    height: 250px
}

.pb-100 {
    padding-bottom: 100px
}

.pt-100 {
    padding-top: 100px
}

.ptb-100 {
    padding-top: 100px;
    padding-bottom: 50px
}

.ptb-100-70 {
    padding-top: 100px;
    padding-bottom: 70px
}

.pt-mines-100 {
    padding-top: 100px !important
}

.f9f9f9-bg {
    background-color: #f9f9f9
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    line-height: .7
}

.section-title span {
    font-size: 20px;
    font-weight: 700;
    color: #b69d74;
    text-transform: uppercase
}

.section-title h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 5px;
    margin-bottom: 0
}

.default-btn {
    color: #fff;
    border: 3px solid #b69d74;
    padding: 10px 40px;
    display: inline-block;
    font-size: 15px;
    position: relative;
    z-index: 1
}

.default-btn::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #b69d74;
    z-index: -1;
    transition: all .5s;
    visibility: hidden
}

.default-btn:hover::before {
    visibility: visible;
    width: 100%;
    left: auto;
    right: 0
}

.default-btn-2 {
    color: #fff;
    background-color: #b69d74;
    border: 3px solid #b69d74;
    padding: 10px 40px;
    display: inline-block;
    font-size: 15px;
    position: relative;
    z-index: 1
}

.default-btn-2::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #fff;
    z-index: -1;
    transition: all .5s;
    visibility: hidden
}

.default-btn-2:hover {
    color: #b69d74
}

.default-btn-2:hover::before {
    visibility: visible;
    width: 100%;
    left: auto;
    right: 0
}

.read-more {
    line-height: 1;
    color: #b69d74;
    position: relative;
    display: inline-block;
    /* font-family: "Playfair Display", serif; */
    text-transform: capitalize;
    transition: all .5s
}

.read-more::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #b69d74;
    z-index: 1;
    transition: all .5s;
    visibility: hidden
}

.read-more:hover {
    color: #b69d74
}

.read-more:hover::before {
    opacity: 1;
    visibility: visible;
    width: 100%;
    left: auto;
    right: 0
}

.preloader {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 999999
}

.preloader .spinner {
    width: 70px;
    height: 70px;
    position: absolute;
    right: 0;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: -30px auto 0
}

.preloader .double-bounce1 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #2c2f3a;
    opacity: .6;
    position: absolute;
    top: 0;
    right: 0;
    animation: sk-bounce 2s infinite ease-in-out
}

.preloader .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #b69d74;
    opacity: .6;
    position: absolute;
    top: 0;
    right: 0;
    animation: sk-bounce 2s infinite ease-in-out;
    animation-delay: -1s
}

@-webkit-keyframes sk-bounce {

    0%,
    100% {
        transform: scale(0)
    }

    50% {
        transform: scale(1)
    }
}

@keyframes sk-bounce {

    0%,
    100% {
        transform: scale(0)
    }

    50% {
        transform: scale(1)
    }
}

.go-top {
    position: fixed;
    cursor: pointer;
    top: 0;
    right: 15px;
    color: #fff;
    background-color: #b69d74;
    z-index: 4;
    width: 40px;
    text-align: center;
    height: 42px;
    line-height: 42px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .9s;
    transition: .9s
}

.go-top i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    left: 0;
    margin: 0 auto;
    -webkit-transition: .5s;
    transition: .5s
}

.go-top i:last-child {
    opacity: 0;
    visibility: hidden;
    top: 60%
}

.go-top::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #121232;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .5s;
    transition: .5s
}

.go-top:hover {
    color: #fff;
    box-shadow: #b69d74 0 0 10px
}

.go-top:hover::before {
    opacity: 1;
    visibility: visible
}

.go-top:hover i:first-child {
    opacity: 0;
    top: 0;
    visibility: hidden
}

.go-top:hover i:last-child {
    opacity: 1;
    visibility: visible;
    top: 50%
}

.go-top:focus {
    color: #fff
}

.go-top:focus::before {
    opacity: 1;
    visibility: visible
}

.go-top:focus i:first-child {
    opacity: 0;
    top: 0;
    visibility: hidden
}

.go-top:focus i:last-child {
    opacity: 1;
    visibility: visible;
    top: 50%
}

.go-top.active {
    top: 90%;
    transform: translateY(-98%);
    opacity: 1;
    visibility: visible
}

.mean-container {
    -webkit-transition: all .5s;
    transition: all .5s
}

/* .mean-container .mean-bar {
    float: right;
    width: 100%;
    position: fixed;
    background: rgba(0, 0, 0, 0);
    padding: 20px 0 0;
    z-index: 999;
    border-bottom: 1px solid rgba(0, 0, 0, .03);
    height: 55px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
} */

/* .mean-container .mean-bar * {
    -webkit-box-sizing: content-box;
    box-sizing: content-box
} */

.mean-container a.meanmenu-reveal {
    width: 35px;
    height: 30px;
    padding: 12px 0 0 15px;
    position: absolute;
    left: 0;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    text-indent: -9999em;
    line-height: 22px;
    font-size: 1px;
    display: block;
    font-weight: 700
}

.mean-container a.meanmenu-reveal span {
    display: block;
    background: #fff;
    height: 4px;
    margin-top: 3px;
    border-radius: 3px
}

.mean-container .mean-nav {
    float: right;
    width: 100%;
    background: #fff;
    margin-top: 55px
}

.mean-container .mean-nav ul {
    padding: 0;
    margin: 0;
    width: 100%;
    border: none;
    list-style-type: none
}

.mean-container .mean-nav ul li {
    position: relative;
    float: right;
    width: 100%
}

.mean-container .mean-nav ul li a {
    display: block;
    float: right;
    width: 90%;
    padding: 1em 5%;
    margin: 0;
    text-align: right;
    color: #677294;
    border-top: 1px solid #dbeefd;
    text-decoration: none
}

.mean-container .mean-nav ul li a:hover {
    background: #252525;
    background: rgba(255, 255, 255, .1)
}

.mean-container .mean-nav ul li a.active {
    color: #000
}

.mean-container .mean-nav ul li li a {
    width: 80%;
    padding: 1em 10%;
    color: #677294;
    border-top: 1px solid #dbeefd;
    opacity: 1;
    filter: alpha(opacity=75);
    text-shadow: none !important;
    visibility: visible;
    text-transform: none;
    font-size: 14px
}

.mean-container .mean-nav ul li li li a {
    width: 70%;
    padding: 1em 15%
}

.mean-container .mean-nav ul li li li li a {
    width: 60%;
    padding: 1em 20%
}

.mean-container .mean-nav ul li li li li li a {
    width: 50%;
    padding: 1em 25%
}

.mean-container .mean-nav ul li a.mean-expand {
    margin-top: 3px;
    width: 100%;
    height: 24px;
    padding: 12px !important;
    text-align: left;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    font-weight: 700;
    background: rgba(0, 0, 0, 0);
    border: none !important
}

.mean-container .mean-nav ul li.mean-last a {
    border-bottom: none;
    margin-bottom: 0
}

.mean-container .mean-push {
    float: right;
    width: 100%;
    padding: 0;
    margin: 0;
    clear: both
}

.mean-nav .wrapper {
    width: 100%;
    padding: 0;
    margin: 0
}

.mean-nav .dropdown-toggle::after {
    display: none
}

.mean-remove {
    display: none !important
}

.mobile-nav {
    display: none
}

.mobile-nav.mean-container .mean-nav ul li a.active {
    color: #b69d74
}

.lovells-nav-style-one .navbar-brand img {
    max-width: 120px
}

.lovells-nav-style-one .navbar {
    padding: 0
}

.lovells-nav-style-one nav ul {
    padding: 0;
    margin: 0;
    list-style-type: none
}

.lovells-nav-style-one nav .navbar-nav .nav-item {
    position: relative;
    padding: 0
}

.lovells-nav-style-one nav .navbar-nav .nav-item a {
    font-size: 16px;
    text-transform: capitalize;
    color: #fff;
    padding-right: 0;
    padding-left: 0;
    padding-top: 25px;
    padding-bottom: 25px;
    margin-left: 15px;
    margin-right: 15px
}

.lovells-nav-style-one nav .navbar-nav .nav-item a:hover {
    color: #b69d74
}

.lovells-nav-style-one nav .navbar-nav .nav-item a:focus {
    color: #b69d74
}

.lovells-nav-style-one nav .navbar-nav .nav-item a.active {
    color: #b69d74
}

.lovells-nav-style-one nav .navbar-nav .nav-item:hover a {
    color: #b69d74
}

.lovells-nav-style-one nav .navbar-nav .nav-item:hover ul {
    opacity: 1;
    visibility: visible;
    top: 100%
}

.lovells-nav-style-one nav .navbar-nav .nav-item .dropdown-menu {
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, .05);
    background: #121232;
    position: absolute;
    top: 80px;
    right: 0;
    width: 250px;
    z-index: 99;
    display: block;
    padding-top: 20px;
    padding-right: 5px;
    padding-left: 5px;
    padding-bottom: 20px;
    opacity: 0;
    border: none;
    border-radius: 0;
    visibility: hidden;
    transition: all .3s ease-in-out;
    padding: 10px 0
}

.lovells-nav-style-one nav .navbar-nav .nav-item .dropdown-menu li {
    position: relative;
    padding: 0
}

.lovells-nav-style-one nav .navbar-nav .nav-item .dropdown-menu li a {
    font-size: 14px;
    text-transform: capitalize;
    padding: 5px 15px;
    margin: 0;
    display: block;
    color: #fff
}

.lovells-nav-style-one nav .navbar-nav .nav-item .dropdown-menu li a:hover {
    color: #b69d74
}

.lovells-nav-style-one nav .navbar-nav .nav-item .dropdown-menu li a:focus {
    color: #b69d74
}

.lovells-nav-style-one nav .navbar-nav .nav-item .dropdown-menu li a.active {
    color: #b69d74
}

.lovells-nav-style-one nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
    position: absolute;
    right: 245px;
    top: 0;
    opacity: 0 !important;
    visibility: hidden !important
}

.lovells-nav-style-one nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
    position: absolute;
    right: -245px !important;
    top: 0;
    opacity: 0 !important;
    visibility: hidden !important
}

.lovells-nav-style-one nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
    color: #fff;
    text-transform: capitalize
}

.lovells-nav-style-one nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover {
    color: #b69d74
}

.lovells-nav-style-one nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus {
    color: #b69d74
}

.lovells-nav-style-one nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
    color: #b69d74
}

.lovells-nav-style-one nav .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    top: -20px !important
}

.lovells-nav-style-one nav .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu li:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    top: -20px !important
}

.lovells-nav-style-one nav .navbar-nav .nav-item .dropdown-menu li:hover a {
    color: #b69d74
}

.lovells-nav-style-one nav .navbar-nav .nav-item:last-child .dropdown-menu {
    right: auto;
    left: 0
}

.lovells-nav-style-one nav .others-option a {
    color: #fff;
    font-size: 16px
}

.lovells-nav-style-one nav .others-option a:hover {
    color: #b69d74
}

.lovells-nav-style-one.is-sticky {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    background-color: #121232;
    box-shadow: 0 8px 6px -6px rgba(0, 0, 0, .4);
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    transition: all .5s;
    max-width: 100%;
    margin-top: 0
}

.slider-area {
    position: relative
}

.slider-area .main-slider-item {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 800px;
    position: relative;
    z-index: 1
}

.slider-area .main-slider-item::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .4;
    z-index: -1
}

.slider-area .main-slider-item .slider-text {
    position: relative;
    z-index: 1;
    max-width: 700px;
    width: 100%;
    margin: auto;
    text-align: center
}

.slider-area .main-slider-item .slider-text span {
    color: #fff;
    /* font-size: 16px; */
    display: inline-block
}

.slider-area .main-slider-item .slider-text h1 {
    /* font-size: 60px; */
    color: #fff;
    margin: 0 0 20px;
    line-height: 1.3
}

.slider-area .main-slider-item .slider-text p {
    /* font-size: 18px; */
    color: #d7d6d6;
    margin-bottom: 50px
}

.slider-area .main-slider-item .slider-text .default-btn {
    text-transform: uppercase
}

.slider-area .owl-theme .owl-nav {
    margin-top: 0;
    position: absolute;
    top: 50%;
    right: 0;
    left: 0
}

.slider-area .owl-theme .owl-nav .owl-next {
    position: absolute;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    background-color: rgba(0, 0, 0, 0) !important;
    border: 1px solid #b69d74;
    transition: all .5s
}

.slider-area .owl-theme .owl-nav .owl-next:hover {
    background-color: #b69d74 !important;
    color: #fff
}

.slider-area .owl-theme .owl-nav .owl-next i {
    color: #b69d74;
    font-size: 25px;
    transition: all .5s;
    padding-right: 3px;
    line-height: 50px
}

.slider-area .owl-theme .owl-nav .owl-next:hover i {
    color: #fff
}

.slider-area .owl-theme .owl-nav .owl-prev {
    position: absolute;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    background-color: rgba(0, 0, 0, 0) !important;
    border: 1px solid #b69d74;
    transition: all .5s
}

.slider-area .owl-theme .owl-nav .owl-prev:hover {
    background-color: #b69d74 !important
}

.slider-area .owl-theme .owl-nav .owl-prev i {
    color: #b69d74;
    font-size: 25px;
    transition: all .5s;
    padding-left: 3px;
    line-height: 50px
}

.slider-area .owl-theme .owl-nav .owl-prev:hover i {
    color: #fff
}

.slider-area.slider-area-style-two .slider-text {
    text-align: right;
    margin-right: 0
}

.slider-item-bg-1 {
    background-image: url(../images/newbanner9.jpeg)
}

.slider-item-bg-2 {
    background-image: url(../images/newbanner6.png)
}

.slider-item-bg-3 {
    background-image: url(../images/file\ \(29\).png)
}

.slider-item-bg-4 {
    background-image: url(../images/bg-1.jpg)
}

.slider-item-bg-5 {
    background-image: url(../images/bg-2.jpg)
}

.slider-item-bg-6 {
    background-image: url(../images/bg-3.jpg)
}

.slider-item-bg-7 {
    background-image: url(../images/image\ \(12\).jpeg);
}

/* Box area container */
.box-area {
    margin-top: -100px;
}

/* Base styles for all boxes */
.single-box {
    background-color: #dcdee7;
    padding: 30px;
    text-align: center;
    transition: all .5s;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.single-box::before,
.single-box::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background-color: #dcdee7;
    z-index: -1;
    transition: all .5s;
}

.single-box::after {
    right: auto;
    left: 0;
}

/* Box content styles */
.single-box i {
    font-size: 60px;
    line-height: 1;
    color: #b69d74;
    transition: all .5s;
}

.single-box h3 {
    color: #b69d74;
    font-size: 24px;
    margin-top: 25px;
    transition: all .5s;
}

.single-box p {
    color: black;
    margin-bottom: 20px;
    margin-top: 20px;
    transition: all .5s;
}

/* Read more link styles */
.single-box .read-more {
    line-height: 1;
    color: #b69d74;
    position: relative;
    display: inline-block;
    text-transform: capitalize;
    transition: all .5s;
}

.single-box .read-more::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    width: 0;
    margin: auto;
    height: 2px;
    background-color: #b69d74;
    z-index: 1;
    transition: all .5s;
    transform: scale(0);
}

.single-box .read-more:hover::before {
    opacity: 1;
    visibility: visible;
    width: 40px;
    transform: scale(1);
}

/* Hover effects for regular boxes */
.single-box:hover::before,
.single-box:hover::after {
    width: 0;
}

.single-box:hover i,
.single-box:hover h3,
.single-box:hover p,
.single-box:hover .read-more {
    color: black;
    cursor: pointer;
}

/* Middle card specific styles */
.custom-box-wrapper .col-lg-4:nth-child(2) .single-box {
    background-color: #ebe6db;
}

.custom-box-wrapper .col-lg-4:nth-child(2) .single-box::before,
.custom-box-wrapper .col-lg-4:nth-child(2) .single-box::after {
    background-color: #ebe6db;
}

.custom-box-wrapper .col-lg-4:nth-child(2) .single-box h3,
.custom-box-wrapper .col-lg-4:nth-child(2) .single-box i,
.custom-box-wrapper .col-lg-4:nth-child(2) .single-box .read-more {
    color: #b69d74;
}

.custom-box-wrapper .col-lg-4:nth-child(2) .single-box p {
    color: black;
}

.custom-box-wrapper .col-lg-4:nth-child(2) .single-box .read-more::before {
    background-color: #fff;
}

/* Hover state for middle card */
.custom-box-wrapper .col-lg-4:nth-child(2) .single-box:hover i,
.custom-box-wrapper .col-lg-4:nth-child(2) .single-box:hover h3,
.custom-box-wrapper .col-lg-4:nth-child(2) .single-box:hover p,
.custom-box-wrapper .col-lg-4:nth-child(2) .single-box:hover .read-more {
    color: black;
    cursor: pointer;
}

/* Custom box wrapper responsive styles */
.custom-box-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.custom-box-column {
    display: flex;
    margin-bottom: 30px;
}

.custom-box-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    text-align: center;
}

/* Tablet-specific styles */
@media (min-width: 768px) and (max-width: 1024px) {
    .custom-box-column {
        min-height: 350px;
    }

    .custom-box-card {
        min-height: 100%;
    }

    .custom-box-card i {
        margin-bottom: 20px;
    }

    .custom-box-card h3 {
        margin-bottom: 15px;
    }

    .custom-box-card p {
        flex-grow: 1;
        margin-bottom: 20px;
    }
}

.about-area .about-content-wrap {
    margin-left: 40px
}

.about-area .about-content-wrap span {
    /* font-size: 13px; */
    font-weight: 700;
    color: #b69d74;
    text-transform: uppercase
}

.about-area .about-content-wrap h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 5px;
    margin-bottom: 30px
}

.about-area .about-content-wrap p {
    margin-bottom: 20px
}

.about-area .about-content-wrap ul {
    margin-bottom: 40px;
    margin-top: 40px
}

.about-area .about-content-wrap ul li {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    padding-right: 40px;
    /* font-family: "Playfair Display", serif; */
    color: #121232
}

.about-area .about-content-wrap ul li span {
    font-size: 15px;
    font-weight: 700;
    /* font-family: "Open Sans", sans-serif; */
    color: #121232
}

.about-area .about-content-wrap ul li i {
    display: inline-block;
    font-size: 14px;
    width: 25px;
    height: 25px;
    background-color: #b0b0b7;
    color: #fff;
    text-align: center;
    line-height: 25px;
    border-radius: 50%;
    transition: all .5s;
    position: absolute;
    right: 0;
    top: 1px
}

.about-area .about-content-wrap ul li:hover i {
    background-color: #121232;
    transform: rotateY(-360deg)
}

.about-area .about-img {
    position: relative
}

.about-area .about-img .about-shape {
    position: absolute;
    top: -30px;
    right: -30px;
    z-index: -1
}

.coming-soon-area {
    position: relative;
    z-index: 1;
    height: 100vh;
    overflow: hidden;
    background-image: url(../images/1_4.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1
}

.coming-soon-area::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .9
}

.coming-soon-area .shape-1 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center
}

.coming-soon-area .shape-1 img {
    width: 600px
}

.coming-soon-content {
    text-align: center;
    max-width: 750px;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    z-index: 2
}

.coming-soon-content .logo {
    margin-bottom: 20px
}

.coming-soon-content .logo a {
    display: inline-block
}

.coming-soon-content h1 {
    margin-bottom: 0;
    color: #fff;
    font-size: 80px;
    font-weight: 700
}

.coming-soon-content p {
    color: #f3f3f3;
    line-height: 1.8;
    font-size: 14.5px;
    max-width: 600px;
    margin-top: 15px;
    margin-bottom: 0;
    margin-right: auto;
    margin-left: auto
}

.coming-soon-content #timer {
    margin-top: 30px
}

.coming-soon-content #timer div {
    display: inline-block;
    color: #fff;
    position: relative;
    margin-right: 35px;
    margin-left: 35px;
    font-size: 65px;
    font-weight: 700
}

.coming-soon-content #timer div span {
    display: block;
    text-transform: lowercase;
    margin-top: -15px;
    font-size: 16px;
    font-weight: normal
}

.coming-soon-content #timer div:last-child {
    margin-left: 0
}

.coming-soon-content #timer div:last-child::before {
    display: none
}

.coming-soon-content #timer div:first-child {
    margin-right: 0
}

.coming-soon-content #timer div::before {
    content: ":";
    position: absolute;
    left: -50px;
    top: -10px;
    font-size: 70px;
    color: #fff
}

.coming-soon-content .newsletter-form {
    position: relative;
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 60px
}

.coming-soon-content .newsletter-form .input-newsletter {
    display: block;
    width: 100%;
    height: 60px;
    border: none;
    background-color: rgba(255, 255, 255, .3);
    padding-right: 15px;
    color: #fff;
    outline: 0;
    -webkit-transition: .5s;
    transition: .5s
}

.coming-soon-content .newsletter-form .input-newsletter::placeholder {
    color: #fff
}

.coming-soon-content .newsletter-form button {
    position: absolute;
    left: 0;
    top: 0;
    height: 60px;
    padding: 0 30px;
    text-transform: uppercase;
    outline: 0;
    color: #b69d74;
    border: none;
    -webkit-transition: .5s;
    transition: .5s;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    background-color: #fff
}

.coming-soon-content .newsletter-form button:hover {
    background-color: #b69d74;
    color: #fff
}

.coming-soon-content .newsletter-form #validator-newsletter {
    text-align: right
}

.error-area {
    padding: 30px 15px;
    height: 100vh;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.error-area::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: .9;
    z-index: -1
}

.error-area .error-contant-wrap {
    z-index: 1;
    position: relative
}

.error-area .error-contant-wrap h1 {
    font-size: 150px;
    font-weight: bold;
    line-height: 90px;
    margin-bottom: 45px;
    color: #f12e50;
    /* font-family: "Open Sans", sans-serif */
}

.error-area .error-contant-wrap h1 span {
    color: #ff1493
}

.error-area .error-contant-wrap h3 {
    margin: 30px 0 0;
    /* font-family: "Open Sans", sans-serif; */
    position: relative
}

.error-area .error-contant-wrap p {
    margin: 20px 0 30px
}

.practice-area {
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
    z-index: 1
}

.practice-area .right-shape {
    position: absolute;
    top: 221px;
    left: 0;
    z-index: -1;
    width: 150px
}

.single-practice {
    position: relative;
    padding-right: 95px;
    padding-left: 0;
    margin-bottom: 30px
}

.single-practice i {
    font-size: 40px;
    line-height: 80px;
    display: inline-block;
    width: 80px;
    height: 80px;
    background-color: #faf1e1;
    text-align: center;
    border-radius: 50%;
    color: #b69d74;
    position: absolute;
    top: 0;
    right: 0;
    transition: all .5s
}

.single-practice h3 {
    font-size: 22px;
    margin-bottom: 12px
}

.single-practice p {
    margin-bottom: 0
}

.single-practice:hover i {
    background-color: #b69d74;
    color: #fff;
    transform: rotateY(-360deg)
}

.single-case {
    margin-bottom: 30px;
    transition: all .5s
}

.single-case .case-content {
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, .05);
    background-color: #fff;
    padding: 30px;
    text-align: center
}

.single-case .case-content h3 {
    font-size: 18px
}

.single-case .case-content a {
    color: #333;
    /* font-family: "Open Sans", sans-serif */
}

.recent-case-area .owl-theme .owl-dots .owl-dot span {
    margin: 0 5px;
    background: rgba(0, 0, 0, 0);
    border: 1px solid #b69d74;
    transition: all .5s
}

.recent-case-area .owl-theme .owl-dots .owl-dot.active span {
    background: #b69d74
}

.recent-case-area .owl-theme .owl-dots .owl-dot:hover span {
    background: #b69d74
}

.contact-banner {
    background-image: url(../images/b220510025-banner-size.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    position: relative;
    background-attachment: fixed;
    z-index: 1
}

.contact-banner::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #121232;
    opacity: .6;
    z-index: -1
}

.contact-banner-title {
    max-width: 885px;
    margin: auto
}

.contact-banner-title h1 {
    font-size: 35px;
    color: #fff;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 30px
}

.counter-section {
    padding-bottom: 70px
}

.counter-grid {
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, .05);
    background-color: #b69d74;
    text-align: center;
    padding: 52px;
    position: relative;
    margin-bottom: 30px;
    z-index: 1
}

.counter-grid::before,
.counter-grid::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background-color: #fff;
    z-index: -1;
    transition: all .5s
}

.counter-grid::after {
    right: auto;
    left: 0
}

.counter-grid i {
    position: absolute;
    top: 5px;
    left: 5px;
    font-size: 60px;
    line-height: 1;
    opacity: .2;
    transition: all .5s
}

.counter-grid h2 {
    font-size: 48px;
    /* font-family: "Open Sans", sans-serif; */
    font-weight: 700;
    margin-bottom: 0
}

.counter-grid h2 span {
    font-size: 50px;
    font-weight: 700;
    color: #121232;
    line-height: 1
}

.counter-grid .parsents {
    line-height: 1
}

.counter-grid p {
    font-size: 18px;
    color: #121232;
    margin-bottom: 0;
    font-weight: 600;
    /* font-family: "Playfair Display", serif */
}

.counter-grid:hover i {
    transform: rotate(-360deg)
}

.counter-grid:hover::before,
.counter-grid:hover::after {
    width: 0
}

.video-wrap {
    position: relative
}

.video-wrap .video-btn-wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    display: flex
}

.video-btn {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    color: #1c1b39;
    position: relative;
    top: 3px;
    z-index: 1
}

.video-btn i {
    font-size: 50px;
    font-weight: 700
}

.video-btn::after {
    z-index: -1;
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 80px;
    height: 80px;
    animation: ripple 1.6s ease-out infinite;
    opacity: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5)
}

.video-btn {
    background-color: #fff
}

.video-btn:hover {
    background-color: #121232;
    color: #fff
}

@keyframes ripple {

    0%,
    35% {
        transform: scale(0);
        opacity: 1
    }

    50% {
        transform: scale(1.5);
        opacity: .8
    }

    100% {
        opacity: 0;
        transform: scale(2)
    }
}

.testimonial-area {
    background-color: #ebf4fd;
    position: relative
}

.testimonial-area .section-title h2 {
    color: black
}

.testimonial-area .testimonial-shape {
    position: absolute;
    top: 205px;
    right: 0;
    opacity: .1;
    width: 200px
}

.testimonial-area .owl-theme .owl-dots .owl-dot span {
    margin: 0 5px;
    background: #ccc;
    transition: all .5s
}

.testimonial-area .owl-theme .owl-dots .owl-dot.active span {
    background: #b69d74
}

.testimonial-area .owl-theme .owl-dots .owl-dot:hover span {
    background: #b69d74
}

.testimonial-area .testimonial-right {
    background-image: url(../images/newimage3.jpeg);
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover
}

.testimonial-area .pr-0 {
    padding-left: 0
}

.single-testimonial {
    text-align: center
}

.single-testimonial i {
    color: #b69d74;
    font-size: 30px;
    line-height: 1
}

.single-testimonial p {
    color: black;
    margin: 20px auto 25px;
    max-width: 570px
}

.single-testimonial img {
    border-radius: 50%;
    /* width: unset !important; */
    margin: auto
}

.single-testimonial h3 {
    color: black;
    font-size: 18px;
    font-weight: 600;
    /* font-family: "Open Sans", sans-serif; */
    margin-top: 25px;
    margin-bottom: 5px
}

.single-testimonial span {
    color: black;
    font-size: 12px
}

.consultation-content span {
    color: #b69d74;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 50px
}

.consultation-form {
    background-image: url(../images/consultation\ form\ image.jpeg);
    padding: 50px 30px;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    z-index: 1
}

.consultation-form::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    background-color: #121232;
    opacity: .9;
    z-index: -1
}

.consultation-form textarea {
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 20px;
    height: 250px !important
}

.consultation-form textarea.form-control {
    border: 1px solid #b69d74;
    border-radius: 0
}

.consultation-form .default-btn-2 {
    border-radius: 0;
    box-shadow: none
}

.consultation-form .form-control {
    height: 45px
}

.consultation-form .form-group {
    margin-bottom: 30px
}

.blog-area {
    background-color: #f5f5f5
}

.single-blog {
    margin-bottom: 30px;
    overflow: hidden;
    transition: all .5s
}

.single-blog .blig-content {
    padding: 30px;
    background-color: #552e08;
    color: white;
    /* background-color: #121232; */
    transition: all .5s;
    position: relative;
    z-index: 1
}

.single-blog .blig-content::before,
.single-blog .blig-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background-color: #fff;
    z-index: -1;
    transition: all .5s
}

.single-blog .blig-content::after {
    right: auto;
    left: 0
}

.single-blog .blig-content ul {
    line-height: 1;
    margin-bottom: 15px
}

.single-blog .blig-content ul li {
    color: #8e8a8a;
    display: inline-block;
    margin-left: 20px;
    font-size: 13px
}

.single-blog .blig-content ul li:last-child {
    margin-left: 0
}

.single-blog .blig-content ul li a {
    color: #8e8a8a
}

.single-blog .blig-content ul li i {
    font-size: 13px;
    display: inline-block;
    margin-left: 5px
}

.single-blog .blig-content h3 a {
    font-size: 15px;
    color: #121232;
    line-height: 1.5
}

.single-blog .blig-content p {
    margin: 15px 0 15px;
    transition: all .5s
}

.single-blog img {
    transition: all 1s
}

.single-blog:hover::before,
.single-blog:hover::after {
    width: 0
}

.single-blog:hover .blig-content::before,
.single-blog:hover .blig-content::after {
    width: 0
}

.single-blog:hover h3 a {
    /* color: #b69d74 */
    color: #fff
}

.single-blog:hover p {
    color: #fff
}

.single-blog:hover img {
    transform: rotate(-15deg) scale(1.4)
}

.subscribe-area {
    background-color: #f5f5f5
}

.subscribe-area .subscribe-bg {
    background-color: #2c2f3a;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-bottom: -100px;
    z-index: 1;
    position: relative;
    overflow: hidden
}

.subscribe-area .subscribe-bg .shape-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    opacity: .3;
    animation: rotation 100s infinite linear
}

.subscribe-area .subscribe-bg .shape-4 {
    position: absolute;
    top: 30px;
    right: 0;
    opacity: .9;
    animation: mover 2s linear infinite alternate
}

.subscribe-area .subscribe-title {
    text-align: center;
    margin-bottom: 40px
}

.subscribe-area .subscribe-title h2 {
    font-size: 30px;
    color: #fff
}

.newsletter-form {
    position: relative
}

.newsletter-form .form-control {
    border: 1px solid #b69d74;
    padding: 15px
}

.newsletter-form .default-btn {
    background-color: #b69d74;
    position: absolute;
    top: 0;
    left: 0;
    height: 60px
}

#validator-newsletter {
    color: #f12e50;
    margin-top: 10px
}

@keyframes rotation {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(-359deg)
    }
}

@keyframes mover {
    0% {
        transform: translateY(0)
    }

    100% {
        transform: translateY(-15px)
    }
}

.footer-top-area {
    padding: 200px 0 66px;
    background-color: #121232
}

.single-widget {
    margin-bottom: 30px
}

.single-widget .brand {
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 25px;
    display: inline-block;
    line-height: 1
}

.single-widget h3 {
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 20px
}

.single-widget p {
    color: #bcb7b7;
    margin-bottom: 5px
}

.single-widget ul {
    padding: 0;
    margin: 0;
    list-style: none
}

.single-widget ul li {
    color: #b69d74;
    font-size: 15px;
    font-weight: 500
}

.single-widget ul li a {
    margin-bottom: 4px;
    color: #bcb7b7;
    font-size: 15px;
    display: inline-block;
    position: relative
}

/* Responsive styles for small screens */
@media (max-width: 767px) {
    .single-widget ul li a {
        font-size: 11px;
        /* Smaller font size for links on small screens */
    }
}

.single-widget ul li a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #b69d74;
    z-index: 1;
    transition: all .5s;
    visibility: hidden
}

.single-widget ul li a:hover {
    color: #b69d74
}

.single-widget ul li a:hover::before {
    opacity: 1;
    visibility: visible;
    width: 100%;
    left: auto;
    right: 0
}

.single-widget .social-links {
    margin-top: 34px
}

.single-widget .social-links li {
    padding: 0;
    display: inline-block;
    line-height: 1;
    margin-left: 10px
}

.single-widget .social-links li a {
    color: #b69d74;
    font-size: 15px;
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #fff;
    text-align: center;
    line-height: 2.1;
    border-radius: 50%;
    display: inline-block
}

.single-widget .social-links li a:hover {
    background-color: #b69d74;
    color: #fff
}

.single-widget .social-links li a:hover::before {
    width: 0
}

.single-widget.single-widgets {
    margin-right: 40px
}

.single-widget.single-widgetss {
    margin-right: 60px
}

.footer-bottom {
    border-top: 1px solid #202035;
    background-color: #121232;
    padding: 20px 0
}

.footer-bottom p {
    color: #bcb7b7
}

.footer-bottom p a {
    display: inline-block;
    color: #b69d74;
    font-weight: 600
}

.footer-bottom .terms-conditions {
    float: left;
    position: relative
}

.footer-bottom .terms-conditions li {
    display: inline-block;
    margin-right: 20px
}

.footer-bottom .terms-conditions li a {
    color: #bcb7b7;
    position: relative
}

.footer-bottom .terms-conditions li a:before {
    content: "";
    position: absolute;
    top: 13px;
    right: 135px;
    width: 10px;
    height: 1px;
    border: 1px solid #bcb7b7
}

.footer-bottom .terms-conditions li a:hover {
    color: #b69d74
}

.footer-bottom .terms-conditions li:last-child a::before {
    display: none
}

.about-area .about-content-wrap img {
    display: block;
    width: 100px;
    margin-bottom: 30px
}

.about-area .about-img .success-rate {
    background-color: #121232;
    text-align: center;
    padding: 10px 30px;
    position: absolute;
    bottom: 0;
    right: -160px;
    width: 350px
}

.about-area .about-img .success-rate .rate-text {
    display: inline-block;
    text-align: center
}

.about-area .about-img .success-rate h2 {
    color: #fff;
    /* font-family: "Open Sans", sans-serif; */
    font-size: 40px;
    font-weight: 700;
    margin: 0
}

.about-area .about-img .success-rate h2 span {
    font-size: 40px;
    font-weight: 700;
    color: #fff
}

.about-area .about-img .success-rate h3 {
    color: #aca9a9;
    font-size: 24px;
    margin: 0
}

.about-area .about-img .success-rate .cart-logo {
    display: inline-flex;
    margin-left: 50px;
    width: 80px
}

.single-practice-gallery {
    position: relative;
    margin-bottom: 30px
}

.single-practice-gallery::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #121232;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .6s;
    transition: .6s
}

.single-practice-gallery:hover::before {
    opacity: .8;
    visibility: visible;
    width: 100%;
    left: auto;
    right: 0
}

.single-practice-gallery .practice-gallery-text {
    text-align: center;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    opacity: 0;
    transition: all .5s
}

.single-practice-gallery .practice-gallery-text i {
    display: block;
    font-size: 50px;
    color: #fff
}

.single-practice-gallery .practice-gallery-text h3 {
    display: block;
    font-size: 24px;
    color: #fff;
    padding-right: 30px
}

.single-practice-gallery:hover .practice-gallery-text {
    opacity: 1
}

.practice-gallery {
    top: 451px !important;
    width: 100px !important
}

.single-case .home-two-case {
    transform: scale(0);
    transition: all .5s;
    margin: auto;
    max-width: 350px;
    margin-top: -30px
}

.single-case:hover .home-two-case {
    transform: scale(1)
}

.single-case:hover {
    transform: translateY(-5px)
}

.single-case:hover a {
    color: #b69d74
}

.case-wrap .owl-item.active.center .home-two-case {
    transform: scale(1)
}

.case-wraps .owl-item.active.center .home-two-case {
    transform: scale(1)
}

.single-work {
    text-align: center;
    margin: auto;
    margin-bottom: 30px;
    padding-right: 30px;
    padding-left: 30px;
    position: relative
}

.single-work h4 {
    font-size: 28px;
    color: #b69d74;
    font-weight: 700;
    position: relative;
    line-height: 53px;
    margin-bottom: 40px;
    z-index: 1;
    transition: all .5s
}

.single-work h4::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background-color: #b69d74;
    z-index: -1;
    margin: auto;
    transition: all .5s
}

.single-work h4::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background-color: #dfd5cd;
    z-index: -1;
    margin: auto;
    transform: rotate(-45deg);
    transition: all .5s
}

.single-work:hover h4 {
    color: #fff
}

.single-work:hover h4::after {
    background-color: #b69d74;
    transform: rotate(0)
}

.single-work:hover h4::before {
    background-color: #dfd5cd;
    transform: rotate(-45deg)
}

.single-work h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px
}

.single-work i {
    position: absolute;
    top: 125px;
    left: -15px;
    font-size: 25px;
    opacity: .2
}

.consultation-content .contact-img {
    max-width: 985px
}

.pt-100 {
    padding-top: 100px
}

.contact-banners {
    background-image: url(../images/contact-title-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    position: relative;
    background-attachment: fixed;
    z-index: 1;
    padding: 100px 0 400px
}

.contact-banners::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #121232;
    opacity: .9;
    z-index: -1
}

.team-area {
    position: relative;
    padding-bottom: 70px;
    margin-top: -300px;
    z-index: 1
}

.team-area .section-title h2 {
    color: #fff
}

.team-area .owl-theme .owl-nav {
    margin-top: 0;
    position: absolute;
    top: 37%;
    right: 0;
    left: 0
}

.team-area .owl-theme .owl-nav .owl-next {
    position: absolute;
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    background-color: #121232 !important;
    border: 1px solid #b69d74;
    transition: all .5s
}

.team-area .owl-theme .owl-nav .owl-next:hover {
    background-color: #b69d74 !important;
    color: #fff
}

.team-area .owl-theme .owl-nav .owl-next i {
    color: #b69d74;
    font-size: 15px;
    transition: all .5s;
    line-height: 29px;
    padding-right: 4px
}

.team-area .owl-theme .owl-nav .owl-next:hover i {
    color: #fff
}

.team-area .owl-theme .owl-nav .owl-prev {
    position: absolute;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    background-color: #121232 !important;
    border: 1px solid #b69d74;
    transition: all .5s
}

.team-area .owl-theme .owl-nav .owl-prev:hover {
    background-color: #b69d74 !important
}

.team-area .owl-theme .owl-nav .owl-prev i {
    color: #b69d74;
    font-size: 15px;
    transition: all .5s;
    padding-left: 1px;
    line-height: 29px
}

.team-area .owl-theme .owl-nav .owl-prev:hover i {
    color: #fff
}

.single-team {
    position: relative;
    transition: all .5s;
    margin-bottom: 30px;
    text-align: center;
    /* Center the content horizontally */
    display: flex;
    flex-direction: column;
    /* Stack items vertically */
    align-items: center;
    /* Center the items horizontally */
    justify-content: center;
    /* Center the items vertically */
}

.single-team .balck-img {
    transform: scale(1);
    transition: all 1s;
    max-width: 100%;
    /* Ensure the image is responsive */
    height: auto;
    /* Maintain aspect ratio */
    margin: 0;
    /* Center horizontally */
    display: block;
    /* Ensure the image takes up block-level space */
    width: 100%;
    /* Ensure it takes the full width of its container */
    max-width: 400px;
    /* Match this to .team-content's max-width if it has one */
    display: block;
    /* Ensure it behaves like a block element */
}

.single-team .mean-img {
    /* position: absolute;
    top: 0;
    right: 0;
    transform: scale(0);
    transition: all 1s */

    position: absolute;
    top: 0;
    right: 0;
    transform: scale(0);
    transition: all 1s;
    max-width: 100%;
    height: auto;
    margin: 0;
    display: block;
    width: 100%;
    max-width: 400px;
}

.single-team:hover .balck-img {
    transform: scale(0)
}

.single-team:hover .mean-img {
    transform: scale(1)
}

.single-team .team-content {
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, .05);
    background-color: #fff;
    padding: 30px;
    text-align: center;
    transition: all .5s;
    max-width: 400px;
    /* Set a maximum width */
    width: 100%;
    /* Ensure responsiveness */
    text-align: center;
    /* Center-align the content */
}

.team-content .social-links {
    display: block;
}

.single-team .team-content h3 {
    font-size: 24px
}

.single-team .team-content span {
    color: #b69d74;
    display: inline-block;
    margin-bottom: 5px
}

.single-team .team-content {
    margin-top: 0;
    position: relative;
    z-index: 1;
    max-width: auto;
    transform: scale(1);
    transition: all .5s
}

.single-team:hover .team-content {
    transform: scale(0.9);
    transition: all .5s;
    margin-top: -30px
}

.single-team:hover {
    transform: translateY(-5px)
}

.single-team:hover a {
    color: #b69d74
}

.single-team .social-links li {
    display: inline-block;
    line-height: 1;
    margin-left: 5px
}

.single-team .social-links li a {
    color: #b69d74;
    font-size: 15px;
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #fff;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    display: inline-block
}

.single-team .social-links li a:hover {
    background-color: #b69d74;
    color: #fff
}

.page-title-area {
    position: relative;
    z-index: 1;
    padding-top: 240px;
    padding-bottom: 140px;
    background-color: #000;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center
}

.page-title-area::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #121232;
    opacity: .5
}

.page-title-area.item-bg-1 {
    background-image: url(../images/newimage7.png)
}

.page-title-area.item-bg-2 {
    background-image: url(../images/file\ \(33\).png)
}

.page-title-area.item-bg-3 {
    background-image: url(../images/alaqeel\ web\ banner\ 2-03.png)
}

.page-title-area.item-bg-4 {
    background-image: url(../images/banner_1.jpg)
}

.page-title-area.item-bg-5 {
    background-image: url(../images/banner_3.jpg)
}

.page-title-area.item-bg-6 {
    background-image: url(../images/newbanner.jpeg)
}

.page-title-area.item-bg-7 {
    background-image: url(../images/image\ \(12\).jpeg);

}

.page-title-area.item-bg-12 {
    background-image: url(../images/newimage7.png);

}

.page-title-content h2 {
    margin-bottom: 0;
    color: #b69d74;
    font-size: 36px;
    font-weight: 700
}

.page-title-content ul {
    padding-right: 0;
    list-style-type: none;
    margin-top: 20px;
    margin-bottom: 0
}

.page-title-content ul li {
    display: inline-block;
    color: #fff;
    position: relative;
    font-size: 18px
}

.page-title-content ul li i {
    font-size: 15px;
    margin: 0 10px
}

.page-title-content ul li a {
    color: #b69d74
}

.page-title-content ul li a i {
    font-size: 15px;
    margin: 0 10px
}

.our-mission .mission-title h2 {
    margin-bottom: 30px
}

.our-mission .mission-video {
    position: relative
}

.our-mission .mission-video::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #121232;
    opacity: .5
}

.single-work {
    text-align: center;
    margin: auto;
    margin-bottom: 30px
}

.single-work span {
    font-size: 28px;
    color: #b69d74;
    font-weight: 700;
    position: relative;
    margin-bottom: 20px;
    transition: all .5s;
    display: inline-block;
    border: 2px solid #b69d74;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    line-height: 57px
}

.single-work:hover span {
    background-color: #b69d74;
    color: #fff
}

.team-area.m-0 {
    background-image: url(../images/team-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 100%;
    width: 100%;
    position: relative;
    padding-top: 100px
}

.team-area.m-0::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #121232;
    opacity: .9
}

.contact-info-area .single-contact-info {
    text-align: center;
    background: #fff;
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, .05);
    padding: 30px;
    margin-bottom: 30px
}

.contact-info-area .single-contact-info i {
    color: #b69d74;
    font-size: 30px;
    margin-bottom: 12px
}

.contact-info-area .single-contact-info h3 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    margin-top: 5px
}

.contact-info-area .single-contact-info p {
    margin-bottom: 0
}

.contact-info-area .single-contact-info a {
    color: #b69d74
}

.contact-area {
    padding-bottom: 100px;
    background-color: #ebf4fd;
}

.contact-area .map-area iframe {
    width: 100%;
    height: 710px;
    border: none
}

.contact-bg {
    /* background-color: #f1f1f1; */
    /* background-color: #ebf4fd; */
    padding: 32px
}

.contact-bg h3 {
    font-size: 22px;
    font-weight: 600;
    border-bottom: 1px solid #e1d7d7;
    padding-bottom: 10px;
    margin-bottom: 20px
}

.contact-bg .default-btn {
    background-color: #b69d74
}

.contact-bg .form-group {
    margin-bottom: 30px
}

.contact-bg .form-control {
    height: 60px;
    color: #999797 !important;
    border: 1px solid #e0e0e0;
    background-color: #fff;
    border-radius: 0;
    padding: 0;
    font-size: 14px;
    padding: 10px 20px
}

.contact-bg .form-control::placeholder {
    color: #999797
}

.contact-bg .form-control:focus {
    border: 1px solid #b69d74
}

.contact-bg textarea {
    margin: 0 0 30px
}

.contact-bg textarea.form-control {
    border: 1px solid #e0e0e0;
    border-radius: 0;
    height: 200px
}

.list-unstyled {
    text-align: right;
    margin-top: 10px;
    color: #dc3545
}

.case-details .case-content {
    margin: 20px 0 60px
}

.case-details .case-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600
}

.case-details .case-content h4 {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 15px
}

.case-area-slide h4 {
    font-size: 22px;
    margin-bottom: 40px;
    font-weight: 600
}

.widget-search form {
    position: relative;
    background-color: #f3f3f3
}

.widget-search form label {
    display: block;
    margin-bottom: 0
}

.widget-search form .search-field {
    background-color: rgba(0, 0, 0, 0);
    height: 70px;
    padding: 6px 15px;
    border: none;
    width: 100%;
    display: block;
    outline: 0;
    -webkit-transition: .5s;
    transition: .5s
}

.widget-search form .search-field:focus {
    border: 1px solid #b69d74
}

.widget-search form button {
    position: absolute;
    left: 14px;
    outline: 0;
    bottom: 14px;
    height: 40px;
    width: 40px;
    z-index: 1;
    border: none;
    color: #a49f9f;
    background-color: rgba(0, 0, 0, 0);
    cursor: pointer;
    font-size: 20px
}

.recent-case {
    background-color: #f3f3f3;
    padding: 30px;
    margin-top: 30px
}

.recent-case h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 1px solid #e1d7d7;
    padding-bottom: 10px
}

.recent-case ul li {
    margin-bottom: 5px
}

.recent-case ul li a {
    color: #333;
    transition: all .5s
}

.recent-case ul li a i {
    font-size: 10px;
    color: #b69d74
}

.recent-case ul li a:hover {
    color: #b69d74
}

.recent-case ul li:last-child {
    margin-bottom: 0
}

.contact-lovells {
    background-image: url(../images/bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 100px 50px;
    margin-top: 30px;
    position: relative;
    z-index: 1
}

.contact-lovells::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #121232;
    opacity: .7
}

.contact-lovells h2 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 30px
}

/* .contact-lovells h2 span {
    font-family: "Open Sans", sans-serif
} */

.practices-details .practices-img {
    margin-bottom: 30px
}

.practices-details .img-list {
    margin-bottom: 30px
}

.practices-details .single-practices p {
    margin: 0
}

.practices-details .single-practices ul {
    margin-right: 20px;
    margin-bottom: 30px;
    margin-top: 30px
}

.practices-details .single-practices ul li {
    font-weight: 700;
    position: relative;
    margin-bottom: 10px
}

.practices-details .single-practices ul li:last-child {
    margin-bottom: 0
}

.practices-details .single-practices ul li::before {
    content: "";
    position: absolute;
    top: 7px;
    right: -20px;
    border: 2px solid #b69d74;
    width: 10px;
    height: 10px;
    border-radius: 50%
}

.practices-details .single-practice-list h2 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 30px
}

.practices-details .single-practice-list .single-list {
    margin-bottom: 30px
}

.practices-details .single-practice-list .single-list h3 {
    font-weight: 600;
    font-size: 18px
}

/* .practices-details .single-practice-list .single-list h3 span {
    font-family: "Open Sans", sans-serif
} */

.our-overview h3 {
    font-size: 22px;
    font-weight: 600
}

.faq-area {
    padding: 100px 0 100px;
    position: relative
}

.faq-accordion .accordion {
    list-style-type: none;
    padding: 0;
    margin: 0;
    border: 1px solid #eee
}

.faq-accordion .accordion .accordion-item {
    display: block;
    border-top: 1px solid #eee
}

.faq-accordion .accordion .accordion-item:first-child {
    border-top: none
}

.faq-accordion .accordion .accordion-item:last-child {
    margin-bottom: 0
}

.faq-accordion .accordion .accordion-item .accordion-title {
    display: block;
    padding: 12px 30px 12px 60px;
    text-decoration: none;
    position: relative;
    color: #333;
    font-size: 18px;
    font-weight: 500
}

/* .faq-accordion .accordion .accordion-item .accordion-title span {
    font-family: "Open Sans", sans-serif
} */

.faq-accordion .accordion .accordion-item .accordion-title:hover {
    background-color: #b69d74;
    color: #2c2c2c
}

.faq-accordion .accordion .accordion-item .accordion-title:focus {
    color: #2c2c2c
}

.faq-accordion .accordion .accordion-item .accordion-title i {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    color: #b69d74;
    font-size: 14px
}

.faq-accordion .accordion .accordion-item .accordion-title.active {
    color: #fff;
    background-color: #b69d74
}

.faq-accordion .accordion .accordion-item .accordion-title.active i {
    color: #fff
}

.faq-accordion .accordion .accordion-item .accordion-title.active i::before {
    content: ""
}

.faq-accordion .accordion .accordion-item .accordion-content {
    display: none;
    position: relative;
    overflow: hidden;
    padding: 30px;
    line-height: 1.9;
    border-top: 1px solid #eee
}

.faq-accordion .accordion .accordion-item .accordion-content.show {
    display: block
}

.faq-accordion .accordion .accordion-item:hover i {
    color: #fff
}

.faq-accordion .accordion .accordion-item:hover .accordion-title {
    color: #fff
}

.practices-contact {
    margin-top: 30px
}

.practices-contact .form-group {
    margin-bottom: 30px
}

.practices-contact .contact-bg .form-control {
    height: 50px
}

.practices-contact textarea {
    margin-bottom: 20px
}

.practices-contact textarea .form-control {
    height: 100px
}

.practices-contact .default-btn-2 {
    width: 100%
}

.hidden {
    display: none
}

#msgSubmit {
    margin-top: 30px;
    margin-bottom: 0
}

.pagenavigation-area {
    text-align: center;
    margin: 20px auto 0;
    display: table
}

.pagenavigation-area .page-link {
    color: #333;
    background-color: #d2d2d2;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    border: 1px solid #efefef;
    line-height: 24px;
    -webkit-transition: all .5s;
    transition: all .5s
}

.pagenavigation-area .page-link i {
    margin-left: -4px
}

.pagenavigation-area .page-link:hover {
    color: #fff;
    background-color: #b69d74;
    border: 1px solid #b69d74
}

.pagenavigation-area .page-link:focus {
    z-index: 2;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none
}

.pagenavigation-area .page-item {
    padding: 0 8px 0
}

.pagenavigation-area .page-item:first-child .page-link {
    border-radius: 30px
}

.pagenavigation-area .page-item:last-child .page-link {
    border-radius: 30px
}

.pagenavigation-area .page-item:last-child .page-link i:before {
    margin-right: -1px
}

.page-link.page-links i::before {
    margin-right: -4px
}

.page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: #b69d74;
    border-color: #b69d74
}

.blog-tag {
    background-color: #f1f1f1;
    margin-top: 30px;
    padding: 30px
}

.blog-tag h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 1px solid #e1d7d7;
    padding-bottom: 10px
}

.blog-tag ul li {
    display: inline-block;
    border: 1px solid #e1dbd0;
    padding: 5px 15px;
    margin: 5px 5px;
    transition: all .5s
}

.blog-tag ul li a {
    font-size: 15px;
    color: #918989
}

.blog-tag ul li:hover {
    background-color: #b69d74
}

.blog-tag ul li:hover a {
    color: #fff
}

.blog-details-area .blog-details-img {
    margin-bottom: 30px
}

.blog-details-area .pleasure {
    margin-bottom: 30px;
    margin-top: 30px
}

.blog-details-area .blockquote {
    background-color: #f5f5f5;
    padding: 30px;
    margin-bottom: 30px
}

.blog-details-area .blockquote i {
    font-size: 30px;
    line-height: 1;
    opacity: .5
}

.blog-details-area .blockquote p {
    color: #696666;
    font-size: 15px;
    font-style: italic;
    /* font-family: "Playfair Display", serif */
}

.blog-details-area .better {
    margin-bottom: 20px
}

.blog-details-area .sheare-link {
    margin-bottom: 50px
}

.blog-details-area .sheare-link ul {
    background-color: rgba(238, 238, 238, .9333333333);
    padding: 20px 20px
}

.blog-details-area .sheare-link ul li {
    text-transform: uppercase;
    padding: 0 10px;
    font-size: 20px;
    display: inline-block;
    transition: all .5s
}

.blog-details-area .sheare-link ul li.share {
    margin-left: 520px;
    color: #333;
    font-size: 16px;
    padding: 0
}

.blog-details-area .sheare-link ul li:hover a {
    color: #b69d74
}

.blog-details-area .sheare-link ul li a {
    color: #121232
}

.blog-details-area .sheare-link ul li a i {
    line-height: 1;
    font-size: 16px
}

.blog-details-area .related-post h3 {
    margin-bottom: 30px
}

.blog-details-area .related-post .single-post {
    margin-bottom: 30px
}

.blog-details-area .related-post .single-post h4 {
    margin-top: 15px
}

.blog-details-area .related-post .single-post h4 a {
    color: #121232;
    font-size: 18px;
    line-height: 1.4;
    transition: all .5s
}

.blog-details-area .related-post .single-post:hover a {
    color: #b69d74
}

.blog-details-area .post-navigation {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding-top: 20px;
    padding-bottom: 20px
}

.blog-details-area .post-navigation .navigation-links {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.blog-details-area .post-navigation .navigation-links .nav-previous {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%
}

.blog-details-area .post-navigation .navigation-links .nav-previous a i {
    margin-left: 2px
}

.blog-details-area .post-navigation .navigation-links .nav-next {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
    text-align: left
}

.blog-details-area .post-navigation .navigation-links .nav-next a i {
    margin-right: 2px
}

.blog-details-area .post-navigation .navigation-links div a {
    display: inline-block;
    font-weight: 600;
    color: #878383;
    transition: all .5s
}

.blog-details-area .post-navigation .navigation-links div a:hover {
    color: #b69d74
}

.blog-details-area .contact-bg p {
    margin-bottom: 30px
}

.blog-details-area .comments-area {
    padding: 25px;
    margin-top: 30px;
    background-color: #f1f1f1
}

.blog-details-area .comments-area h3 {
    margin-bottom: 30px
}

.blog-details-area .comments-area ol {
    padding: 0;
    margin: 0;
    list-style-type: none
}

.blog-details-area .comments-area ul {
    padding: 0;
    margin: 0;
    list-style-type: none
}

.blog-details-area .comments-area .comment-list {
    padding: 0;
    margin: 0;
    list-style-type: none
}

.blog-details-area .comments-area .children {
    margin-right: 60px
}

.blog-details-area .comments-area .comment-body {
    border-bottom: 1px solid #e1d7d7;
    padding-right: 65px;
    color: #252920;
    font-size: 14px;
    margin-bottom: 20px;
    padding-bottom: 20px
}

.blog-details-area .comments-area .comment-body .reply {
    margin-top: 15px
}

.blog-details-area .comments-area .comment-body .reply a {
    border: 1px solid #e1d7d7;
    color: #252920;
    display: inline-block;
    padding: 5px 20px;
    border-radius: 30px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    font-size: 13px;
    font-weight: 600
}

.blog-details-area .comments-area .comment-body .reply a:hover {
    color: #fff;
    background-color: #b69d74;
    border-color: #b69d74
}

.blog-details-area .comments-area .comment-meta {
    margin-bottom: .8em
}

.blog-details-area .comments-area .comment-author {
    font-size: 16px;
    margin-bottom: .4em;
    position: relative;
    z-index: 2
}

.blog-details-area .comments-area .comment-author .avatar {
    height: 50px;
    right: -65px;
    position: absolute;
    width: 50px;
    border-radius: 50%
}

.blog-details-area .comments-area .comment-author .fn {
    font-weight: 600
}

.blog-details-area .comments-area .comment-author .says {
    display: none
}

.blog-details-area .comments-area .comment-metadata {
    color: #333;
    letter-spacing: .01em;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500
}

.blog-details-area .comments-area .comment-metadata a {
    color: #333
}

.blog-details-area .comments-area .comment-metadata a:hover {
    color: #b69d74
}

.blog-details-area .comments-area .comment-content p {
    font-size: 14px
}

.blog-details-area .comments-area .comment-respond {
    margin-top: 30px
}

/* Add this CSS to your stylesheet */
.blog-details-area .details-title {
    position: relative;
    line-height: initial;
    font-size: 24px;
    /* Default font size for larger screens (1440px and 1024px) */
    font-weight: 600;
}

@media (max-width: 768px) {
    .blog-details-area .details-title {
        font-size: 20px;
        /* Font size for screens 768px and below */
    }
}

.faq-contact {
    margin-top: 45px;
    background-color: #f1f1f1;
    text-align: center;
    color: #000
}

.faq-contact h4 {
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 600
}

.faq-contact .default-btn-2 {
    width: unset;
    margin-top: 10px
}

#custom-img {
    height: 100%;
    width: 100%;
    /* max-width: 632px; */
}

.mean-container a.meanmenu-reveal {
    right: auto !important;
    left: 0 !important
}

[type=email],
[type=number],
[type=tel],
[type=url] {
    direction: rtl
}

/*# sourceMappingURL=style.css.map */


.abouthome {
    margin-top: 100px !important;
}