@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600');
@import url('https://fonts.googleapis.com/css?family=Raleway:200,300,400,500,600,700');

@import url('https://fonts.googleapis.com/css?family=Cairo:200,300,400,500,600,700,800|Open+Sans:300,400,600,700');

:root {
    --winwin-primary: #02b36b;
    --winwin-secondary: #001c10;
    --winwin-one: #5e756c;
    --winwin-two: #5e756c39;
    --winwin-three: #024b2b;
    --winwin-primary: #02b36b;
    --winwin-bg-color: #0b2f3b;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-size: 16px;
    font-weight: normal;
    font-family: 'Cairo' !important;
    overflow-x: hidden !important;
    margin: 0;
    direction: rtl;
    background-color: #f5f5f5;
    color: #333;

}

table,
tr,
td,
blockquote {
    color: var(--winwin-secondary);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

ol,
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a,
a:hover,
a:focus {
    outline: none;
    text-decoration: none;
    color: inherit;
}

button:focus,
button:active,
input:focus,
input:active {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
.button,
.numbered .tp-bullet .tp-count {
    font-family: 'Cairo' !important;
}

/*Center block*/

.center-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.hidden {
    display: none;
}

.black-btn-with-border {
    font-size: 12px;
    font-family: 'Cairo' !important;
    padding: 10px 25px;
    border: solid 1px var(--winwin-secondary);
    color: #FFFFFF;
    background: var(--winwin-secondary);
    -webkit-transition: .3s ease-in-out !important;
    -o-transition: .3s ease-in-out !important;
    transition: .3s ease-in-out !important;
    font-weight: 600;
    border-radius: 0;
    float: left;
}

.black-btn-with-border:hover {
    background: #FFFFFF;
    color: var(--winwin-secondary) !important;
    border: solid 1px var(--winwin-secondary);
}

.edit-button {
    font-size: 12px;
    font-family: 'Cairo' !important;
    padding: 10px 25px;
    border: solid 1px #ff9900;
    background-color: #ff9900;
    color: #fff;
    -webkit-transition: .3s ease-in-out !important;
    -o-transition: .3s ease-in-out !important;
    transition: .3s ease-in-out !important;
    font-weight: 600;
    border-radius: 0;
    float: left;
}

.edit-button:hover {
    background: #FFFFFF;
    color: var(--winwin-secondary) !important;
    /* border: solid 1px var(--winwin-secondary); */
}

.delete-button {
    font-size: 12px;
    font-family: 'Cairo' !important;
    padding: 10px 25px;
    border: solid 2px red;
    background-color: red;
    color: #fff;
    -webkit-transition: .3s ease-in-out !important;
    -o-transition: .3s ease-in-out !important;
    transition: .3s ease-in-out !important;
    font-weight: 600;
    border-radius: 0;
    float: left;
}

.delete-button:hover {
    background: #FFFFFF;
    color: var(--winwin-secondary) !important;
    /* border: solid 1px var(--winwin-secondary); */
}

/*===================================
        Loader Start
======================================*/

.loader1 {
    bottom: 0;
    height: 100%;
    right: 0;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1111;
    overflow-x: hidden;
    background: #fff;
}

.loader-inner {
    position: absolute;
    right: 50%;
    top: 50%;
    -webkit-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
}

#preloader {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

#loader {
    display: block;
    position: relative;
    right: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px -75px 0 0;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--winwin-secondary);
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    right: 5px;
    left: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--winwin-one);
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    right: 15px;
    left: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--winwin-primary);
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        -ms-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        -ms-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

/*===================================
        Loader End
======================================*/

/*===================================
        Header Start
======================================*/
header {
    background-color: white;
    color: var(--winwin-primary) !important;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.nav-logo img {
    max-height: 80px;
    width: auto;
    margin-top: 8px !important;
}

.logo a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-nav>li {
    list-style: none;
    position: relative;
    cursor: pointer;
}

.main-nav>li>a {
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: bold;
}

.main-nav>li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    color: #333;
    min-width: 200px;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.dropdown a:hover {
    background-color: #f0f0f0;
}

/*===================================
       END Header
======================================*/

/*===================================
       Start Arrow animation
======================================*/
.arrow {
    border: solid var(--winwin-primary);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.main-nav>li:hover .arrow {
    transform: rotate(-135deg);
}

/*===================================
       END Arrow animation
======================================*/

/*======================
 Start Auth buttons
=======================*/
.auth-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.auth-buttons a {
    text-decoration: none;
    font-size: 15px;
    /* padding: 8px 14px; */
    border-radius: 4px;
    border: 1px solid #fff;
    transition: background 0.3s;
    font-weight: bold;
}

.auth-buttons a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.auth-buttons button {
    text-decoration: none;
    font-size: 15px !important;
    /* padding: 8px 14px; */
    border-radius: 4px;
    border: 1px solid #fff;
    transition: background 0.3s;
    font-weight: bold;
    color: var(--winwin-primary);
    background: none !important;
    font-family: 'Cairo' !important;
    cursor: pointer !important;
}

/*===================================
       END Auth buttons
======================================*/
/*======================
 Start Search box
=======================*/

.search-box {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
    justify-content: center;
    height: 65px;
}

.search-box select,
.search-box input {
    padding: 12px;
    font-size: 16px;
    border: none;
    outline: none;
    width: 300px;
    font-family: 'Cairo' !important;
}

.search-box input {
    border-radius: 0 5px 5px 0 !important;
}

.search-box select {
    background-color: #f0f0f0;
    cursor: pointer;
}

.search-box button {
    padding: 12px 24px;
    font-size: 22px;
    font-weight: bold;
    border: none;
    background-color: #ff9900;
    color: #fff;
    cursor: pointer;
    border-radius: 5px 0 0 5px !important;
    font-family: 'Cairo' !important;
}

@media (max-width: 450px) {

    .search-box select,
    .search-box input {
        width: 150px !important;
    }

    .sell-content .btn-primary {
        padding: 10px 20px !important;
        font-size: 12px !important;

    }
}

@media (max-width: 400px) {

    .search-box select,
    .search-box input {
        width: 120px !important;
    }

    .filters select,
    .sort select {
        font-size: 14px !important;
    }

    .rev-search-form button {
        font-size: 16px !important;

    }

    .section-title1 {
        font-size: 18px !important;
    }

    .sort .button {
        display: none !important;
    }
}

/*===================================
       END Search box
======================================*/
/*======================
    Start Stats section
=======================*/
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    gap: 100px;
    flex-wrap: wrap;
    z-index: 2;
    height: 100px;
}

.hero-stats div {
    color: #fff;
    text-align: center;
}

.hero-stats h3 {
    margin: 0;
    font-size: 18px;
}

.hero-stats p {
    margin: 4px 0 0;
    font-size: 14px;
    opacity: 0.9;
}

.top-categories-section {
    background-color: var(--winwin-two);
    padding: 20px 0;
    direction: rtl;
}

.top-categories-section .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.container-buyer {
    /* width: 90%; */
    max-width: 1200px;
    margin: 0 auto;
}

.categories-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.categories-header h2 {
    font-size: 24px;
    color: #333;
    margin: 0;
}

.categories-header .see-more {
    color: #005da6;
    text-decoration: none;
    font-size: 15px;
}

.categories-header .see-more:hover {
    text-decoration: underline;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
}

.category-card {
    text-align: center;
    padding: 5px;
    text-decoration: none;
    transition: 0.2s ease-in-out;
    cursor: none;
}

.category-card img {
    max-width: 80px;
    margin-bottom: 10px;
}

.category-card span {
    display: block;
    font-size: 15px;
}

.category-card:hover {
    /* color: var(--winwin-primary); */
}

@media (max-width: 768px) {
    .sell-content h2 {
        font-size: 20px !important;

    }

    .categories-header {
        margin-right: 30px !important;
    }
}

@media (max-width: 450px) {
    .sell-content h2 {
        font-size: 18px !important;
        margin-bottom: 8px !important;
    }
}

@media (max-width: 400px) {
    .sell-content h2 {
        font-size: 15px !important;
    }
}

/*===================================
       END Stats section
======================================*/
/*======================
       Start Hero
=======================*/
.hero {
    /* background: url('../img/hero/3.jpg') no-repeat center center / cover; */
    padding: 100px 20px 150px;
    position: relative;
    color: #fff;
    background-size: 100% 100% !important;
    height: 330px;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.hero-content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
}

.hero-content h1 {
    font-size: 38px;
    margin-bottom: 16px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 22px;
}
span{
    font-family: 'Cairo' !important;
}
/*===================================
       END Hero
======================================*/
/*======================
       Start Hero Search
=======================*/
.rev-search-form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    gap: 1px;
    direction: rtl;
}

#area_id {
    border-radius: 0 5px 5px 0;
}

.rev-search-form input,
.rev-search-form select {
    flex: 1;
    padding: 12px 16px;
    font-size: 16px;
    border: none;
    background-color: rgba(255, 255, 255, 0.9);
    /* border-radius: 4px; */
    text-align: right;
}

.rev-search-form select {
    max-width: 200px;
}

.rev-search-form button {
    padding: 1px 20px;
    background-color: #ff9900;
    border: none;
    color: white;
    font-size: 18px;
    border-radius: 4px 0 0 4px;
    cursor: pointer;
    /* max-height: 56px !important; */
}

.rev-search-form button i {
    margin-left: 6px;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 30px;

    }

    .rev-search-form {
        max-height: 50px;
        /* height: 50px !important; */
        margin: auto !important;
        max-width: 400px;
        border-radius: 5px;
    }

    .rev-search-form input,
    .rev-search-form select {
        font-size: 12px;
    }

    .search-box {
        /* border-radius: 5px !important; */

    }
}

/*===================================
       END Hero Search
======================================*/
/*======================
 Start scroll-top-arrow
=======================*/
.scroll-top-arrow {
    height: 40px;
    width: 40px;
    position: fixed;
    z-index: 111;
    background-color: var(--winwin-primary);
    bottom: 10px;
    left: 20px;
    background: linear-gradient(to left, var(--winwin-one) -50%, var(--winwin-primary) 93%);
    display: none;
}

.scroll-top-arrow i {
    font-size: 20px;
    color: white;
    position: absolute;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
}

/*======================
END scroll-top-arrow
=======================*/
/*======================
 Start sell-ur-bus
=======================*/
.sell-online {
    direction: rtl;
    text-align: center;
    color: #fff;
    padding: 60px 20px;
}

.sell-content {
    display: flex;
    gap: 50px;
    max-width: 700px;
    margin: 0;
    align-items: center !important;

}

.sell-content h2 {
    font-size: 32px;
    /* margin-bottom: 12px; */
    font-weight: bold;
    color: #fff;
}

.sell-content p {
    font-size: 18px;
    margin-bottom: 24px;
    opacity: 0.9;
}

.sell-content .btn-primary {
    background-color: var(--winwin-primary);
    color: #fff;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.25s;
    /* margin-bottom: 20px; */
    font-family: 'Cairo' !important;

}

.sell-content .btn-primary:hover {
    background-color: var(--winwin-three);
}

.sell-content .partner-network {
    display: block;
    font-size: 15px;
    opacity: 0.9;
    cursor: pointer;
}

.sell-content .partner-network:hover {
    opacity: 1;
}

.sell-section {
    direction: rtl;
    text-align: center;
    background-color: #f7f7f7;
    padding: 20px;
}

.sell-content {
    max-width: 700px;
    margin: auto;
}

.sell-content h2 {
    font-size: 32px;
    margin-bottom: 12px;
    font-weight: bold;
}

.sell-content p {
    font-size: 18px;
    margin-bottom: 24px;
    opacity: 0.9;
}

.btn-primary {
    background-color: #ff9900;
    color: #fff;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.25s;
}

.btn-primary:hover {
    background-color: #e68a00;
}

.partner-listing {
    margin-top: 30px;
}

.partner-listing p {
    font-size: 15px;
    margin-bottom: 15px;
    opacity: 0.95;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.partner-logos img {
    max-width: 180px;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.partner-logos img:hover {
    opacity: 1;
}

.learn-more {
    color: #fff;
    text-decoration: underline;
    font-size: 15px;
    cursor: pointer;
    opacity: 0.9;
}

.learn-more:hover {
    opacity: 1;
}

/*======================
END sell-ur-bus
=======================*/
/*======================
Start Featured Businesses.
=======================*/

.featured-businesses {
    direction: rtl;
    padding: 50px 20px;
    background-color: var(--winwin-two);
    text-align: start;
    /* font-family: Arial, sans-serif; */
}

.featured-businesses .container {
    max-width: 1200px;
    margin: auto;
}

.featured-businesses h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.business-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.business-card img {
    width: 100%;
    height: auto;
    display: block;
}

.business-card h3 {
    margin: 15px;
    font-size: 18px;
    color: #005daa;
}

.business-card p {
    margin: 0 15px 15px;
    font-size: 14px;
    color: #666;
}

.btn.see-more {
    background-color: #005daa;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn.see-more:hover {
    background-color: #004a8d;
}

/*======================
END Featured Businesses.
=======================*/
/*======================
Start top brokers.
=======================*/
.top-brokers {
    direction: rtl;
    padding: 50px 20px;
    background-color: #f7f7f7;
    font-family: Arial, sans-serif;
    text-align: start;
}

.top-brokers .container {
    max-width: 1200px;
    margin: 0 auto;
}

.top-brokers h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
}

.broker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.broker-card {
    display: flex;
    gap: 20px;
    background: #fff;
    border-radius: 6px;
    padding: 20px 10px;
    text-align: start;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.broker-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 12px;
}

.broker-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #005daa;
}

.broker-card p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.btn.see-more {
    background-color: #005daa;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn.see-more:hover {
    background-color: #004a8d;
}

/*======================
END top brokers.
=======================*/
/*======================
Start recent list.
=======================*/
.recent-listings {
    direction: rtl;
    padding: 50px 20px;
    background-color: var(--winwin-two);
    text-align: start;
    font-family: Arial, sans-serif;
}

.recent-listings .container {
    max-width: 1200px;
    margin: 0 auto;
}

.recent-listings h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.listing-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.listing-card img {
    width: 100%;
    height: auto;
    display: block;
}

.listing-card h3 {
    margin: 15px;
    font-size: 18px;
    color: #005daa;
}

.listing-card p {
    margin: 0 15px 15px;
    font-size: 14px;
    color: #666;
}

.btn.see-more {
    background-color: #005daa;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

/*======================
END recent list.
=======================*/
/*===================================
        Start Social Icons BG colors
======================================*/
.facebook-bg-hvr:hover {
    background: #4267B2 !important;
    color: #fff !important;
    border: 1px solid transparent !important;
}

.twitter-bg-hvr:hover {
    background: #1DA1F2 !important;
    color: #fff !important;
    border: 1px solid transparent !important;
}

.instagram-bg-hvr:hover {
    color: #FFFFFF;
    background: -webkit-gradient(linear, right top, right bottom, from(#aa2fb5), color-stop(93%, #f1762c)) !important;
    background: -o-linear-gradient(top, #aa2fb5 0%, #f1762c 93%) !important;
    background: linear-gradient(to bottom, #aa2fb5 0%, #f1762c 93%) !important;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.linkedin-bg-hvr:hover {
    background: #0077B5 !important;
    color: #fff !important;
    border: 1px solid transparent !important;
}

.pinterest-bg-hvr:hover {
    background: #BD081C !important;
    color: #fff !important;
    border: 1px solid transparent !important;
}

.google-bg-hvr:hover {
    background: #DB4437 !important;
    color: #fff !important;
    border: 1px solid transparent !important;
}

/*===================================
       END Social Icons BG colors
======================================*/

/*======================
Start recent sold.
=======================*/
.recent-sold {
    padding: 40px 20px;
    background-color: #fff;
}

.recent-sold .container {
    max-width: 1200px;
    margin: 0 auto;
}

.recent-sold h2 {
    text-align: start !important;
    font-size: 26px;
    margin-bottom: 30px;
    color: #333;
}

.sold-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.sold-card {
    position: relative;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out;
}

.sold-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    padding-bottom: 5px !important;
}

.info h3 {
    font-size: 16px;
    color: #005daa;
    padding-right: 60px !important;

}

.info-text {
    margin: 0;
    font-size: 14px;
    color: #666;
    padding: 15px;
    padding-bottom: 5px !important;
}

.badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background-color: #ff5a5f;
    color: white;
    padding: 6px 10px;
    font-size: 13px;
    border-radius: 4px;
    font-weight: bold;
}

.icon-overlay {
    position: absolute;
    right: 12px;
    padding: 6px;
    font-size: 30px;
    color: #005daa;
    z-index: 2;
}

/*======================
END recent sold.
=======================*/
.container-fluid {
    display: flex !important;
    flex-direction: row !important;
}

.container1 {
    font-family: 'Cairo' !important;
    width: 90%;

    /* max-width: 1100px; */
    margin: 10px auto;
    overflow: hidden !important;
}

/* ########################################################## */
/*======================
                             START  PAGES.
                      =======================*/
/* ########################################################## */




/*========================
   Start About Page
   =======================*/
.about-us-row {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.about-banner {
    padding-top: 6.2rem !important;
}

.about-max {
    max-width: 700px;
    margin: 0 auto;
}

.max-151 {
    max-width: 151px;
    margin: 0 auto;
}

.icon-hover-effect {
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
}

/*
.icon-hover-effect:hover .laptop-icon, .icon-hover-effect:hover .chart-icon, .icon-hover-effect:hover .pencil-icon {
    transform: translateY(-20px);
    transition: 1s;
}*/

.about-padding {
    padding-top: 35px;
    padding-bottom: 35px;
    padding-right: 35px;
    padding-left: 35px;
    background-color: #ff573b;
    border-radius: 50%;
    max-width: 115px;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    margin: 0 auto;
}

.about-padding:hover {
    background-color: #161922;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
}

.about-padding2 {
    padding-top: 35px;
    padding-bottom: 35px;
    padding-right: 35px;
    padding-left: 35px;
    background-color: #161922;
    border-radius: 50%;
    max-width: 115px;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    margin: 0 auto;
}

.about-padding2:hover {
    background-color: #ff573b;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
}

.line-padding2::before {
    height: 1px;
    top: 115px;
    background: var(--winwin-secondary);
    width: 30%;
    z-index: -1;
    margin: 0;
    left: 10px;
}


.line-padding2::after {
    height: 1px;
    top: 115px;
    background: var(--winwin-secondary);
    width: 30%;
    z-index: -1;
    margin: 0;
    right: 10px;
}


.icon {
    font-size: 40px;
    color: #fff;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
}

.about {
    text-align: justify !important;
}

@media (max-width: 768px) {
    .about-us-row {
        flex-direction: column;
        /* align-items: start; */
        justify-content: start;
    }

    .about-text {
        align-self: start !important;
    }

    .image-about {
        width: 100%;
        margin: auto auto !important;
    }

}

@media (max-width: 768px) {
    .item1 {
        order: 2;
    }

    .item2 {
        order: 1;
    }
}

@media (max-width: 400px) {
    .about {
        text-align: right !important;
    }

    .item2 p {
        text-align: justify !important;

    }

    .item3 p {
        text-align: justify !important;

    }
}

/*======================
END About Page.
=======================*/
/*======================
Start Location Page.
=======================*/

.container {
    font-family: 'Cairo' !important;
    width: 90%;
    max-width: 1100px;
    margin: 20px auto;
}

.page-title {
    font-size: 28px;
    margin-bottom: 20px;
}

.toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    margin-top: 0 !important;
    width: 100% !important;
    padding-bottom: 20px;
    padding-top: 20px;
}

.filters select,
.sort select {
    padding: 8px;
    font-family: 'Cairo' !important;
    font-size: 16px;
}

.filters .btn.save-search {
    padding: 8px 12px;
    background: #0073aa;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.sort label {
    margin-right: 5px;
    font-size: 14px;
}

.listings {
    gap: 20px;
}

.card {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
}

.listing-title {
    font-size: 18px;
    margin-bottom: 8px;
}

.location {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.price {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
}

.cashflow {
    font-size: 14px;
    color: #666;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.pagination button {
    padding: 8px 8px;
    margin: 0 10px;
    background: #0073aa;
    color: #fff;
    border: none;
    cursor: pointer;
}

.pagination span {
    font-size: 14px;
}

.city-item.active {
    color: rgb(255, 255, 255) !important;
    background: var(--winwin-primary) !important;
    border: 1px solid var(--winwin-primary) !important;
}

.cat-select {
    border-radius: 0;
}

.project-card {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    width: 100% !important;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    gap: 40px;
}

.project-card .image {
    display: flex;
    align-items: center;
}

.project-card .image img {
    width: 230px;
    object-fit: cover;
    border-radius: 8px;
}

.project-card h2 {
    margin: 3px 0;
    font-size: 1.2rem;
}

.project-card p {
    font-size: .9rem;
    margin-top: 0;
    margin-bottom: 10px !important;
}

.project-card a.button {
    align-self: flex-start;
    font-size: 0.75rem;
    padding: 3px 6px;
    border-radius: 5px;
}

.project-card p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}



.project-card1 .image {
    display: flex;
    align-items: center;
}

.project-card1 .image img {
    width: 230px;
    object-fit: cover;
    border-radius: 8px;
}

.project-card1 h2 {
    margin: 3px 0;
    font-size: 1.2rem;
}

.project-card1 p {
    font-size: .9rem;
    margin-top: 0;
    margin-bottom: 10px !important;
}

.project-card1 a.button {
    align-self: flex-start;
    font-size: 0.75rem;
    padding: 3px 6px;
    border-radius: 5px;
}

.project-card1 p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.project-card1 {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    width: 100% !important;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    gap: 40px;
}

.pro-text {
    flex-grow: 1;
}

.project-card1 .image {
    display: flex;
    align-items: center;
}

.project-card1 .image img {
    width: 230px;
    object-fit: cover;
    border-radius: 8px;
}

.project-card1 h2 {
    margin: 3px 0;
    font-size: 1.2rem;
}

.project-card1 p {
    font-size: .9rem;
    margin-top: 0;
    margin-bottom: 10px !important;
}

.project-card1 a.button {
    align-self: flex-start;
    font-size: 0.75rem;
    padding: 3px 6px;
    border-radius: 5px;
}

.project-card1 p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}



.project-card1 .image {
    display: flex;
    align-items: center;
}

.project-card1 .image img {
    width: 230px;
    object-fit: cover;
    border-radius: 8px;
}

.project-card1 h2 {
    margin: 3px 0;
    font-size: 1.2rem;
}

.project-card1 p {
    font-size: .9rem;
    margin-top: 0;
    margin-bottom: 10px !important;
}

.project-card1 a.button {
    align-self: flex-start;
    font-size: 0.75rem;
    padding: 3px 6px;
    border-radius: 5px;
}

.project-card1 p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}



#show-all-projects {
    background: linear-gradient(90deg, #02b36b, #028a53);
    cursor: pointer;
    transition: all .3s ease-in-out;

}

#show-all-projects:hover {
    background: #026f44;
    transition: all .3s ease-in-out;

}

@media (max-width: 1200px) {
    .header-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .form-container {
        width: 80% !important;
    }
}

@media (max-width: 1024px) {
    .project-card {
        width: auto !important;
    }

    .project-card1 {
        width: 90% !important;
        margin: auto;

    }

    .toolbar {
        width: 90% !important;

    }

    .form-container {
        width: 100% !important;
    }

}

@media (max-width: 768px) {
    .section-title1 {
        font-size: 20px !important;
    }

    .filters {
        margin-right: 20px;
    }

    .pink-gradient-btn-into-black {}

    .sort {
        padding: 20px !important;
    }

    .sort .button {
        height: 40px !important;
        padding-left: 10px !important;
        padding-right: 10px !important;

    }

    .project-card {
        width: auto !important;
    }
}

@media (max-width: 425px) {
    .project-card {
        flex-direction: column;
        justify-content: center !important;
        align-items: center !important;
        text-align: center;
        gap: 0 !important;

    }

    .project-card1 {
        flex-direction: column;
        justify-content: center !important;
        align-items: center !important;
        text-align: center;
        gap: 0 !important;

    }

    .pro-text {
        flex-direction: column;
        justify-content: center !important;
        align-items: center !important;
    }

    .pro-text a {
        margin-top: 0 !important;
        float: none;
    }

    .rev-search-form button i {
        display: none;
    }

    .filters {
        margin-right: 0 !important;
    }
}


/*======================
END Location Page.
=======================*/
/*======================
Start Register/login Page.
=======================*/

.breadcrumb-section {
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    position: relative;
    text-align: center;
}

.breadcrumb .breadcrumb-title a {
    color: var(--winwin-three);
    font-size: 22px;
    font-family: 'Cairo', sans-serif;
    font-weight: 800;
    text-shadow: 0 0 5px #fbf9f9, 0 0 5px #fffdfd;

}

.breadcrumb .breadcrumb-item {
    color: var(--winwin-primary);
    font-size: 22px;
    font-family: 'Cairo', sans-serif;
    font-weight: 800;
    text-shadow: 0 0 5px #fbf9f9, 0 0 5px #fffdfd;

}

.paralax-section-slide-data {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.signup-form {
    padding: 40px 0;
    display: flex;
    flex-direction: row !important;
    width: 100%;
    justify-content: space-between;
    gap: 30px;
    /* spacing between form & detail */
    background: #fff;
    border-radius: 10px;
    margin-top: 40px !important;
}

.whitebox,
.registeration-detail {
    flex: 1 1 50%;
    /* equal width */
    max-width: 50%;
}

.whitebox {
    border-left: 1px solid #eee;
}

.whitebox .widget {
    padding: 40px;
    padding-top: 0 !important;
    /* background: #fff; */
    /* box-shadow: 0 5px 25px rgba(0,0,0,0.1); */
    /* border-radius: 12px; */
    height: 100%;
    /* makes both sides same height */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logincontainer h2 {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    color: #02b36b;
    margin-bottom: 30px;
}

.getin_form input.form-control,
.getin_form select.form-select {
    border: 1px solid #ececec;
    /* height: 45px; */
    padding: 10px;
    font-size: 15px;
    border-radius: 6px;
    color: #333;
    width: 100% !important;
    /* force same width */
    box-sizing: border-box;
    /* prevent padding from breaking width */
    display: block;
    margin-bottom: 20px;
    font-family: 'Cairo', sans-serif;
}

.getin_form input:focus,
.getin_form select:focus {
    /* border-color: #02b36b; */
    box-shadow: 0 0 5px rgba(2, 179, 107, 0.2);
    border: none;
}

:focus {
    outline: 0;
}

.pink-gradient-btn-into-black {
    background-color: #ff9900;
    /* background: linear-gradient(90deg, #02b36b, #028a53); */
    border: none;
    padding: 6px 15px;
    color: #fff;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Cairo', sans-serif;
    transition: all .3s ease-in-out;
}

.pink-gradient-btn-into-black:hover {
    background: #026f44;
    color: #fff !important;
    border: none;
}

.custom-control {
    margin-bottom: 20px !important;
}

.SignInclass a {
    color: #02b36b;
    font-weight: 600;
}

.registeration-detail .heading-area {
    padding: 40px;
    /* background: #f9f9f9; */
    /* border-radius: 12px; */
}

.registeration-detail .title {
    font-size: 18px;
    font-weight: 700;
    color: var(--winwin-three);
    /* margin-bottom: 25px; */
    font-family: 'Cairo', sans-serif;
}

.registeration-detail .paragraph {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    margin-bottom: 15px;
    font-size: 16px;
    color: #444;
    display: flex;
    align-items: center;
}

.about-list li i {
    color: var(--winwin-three);
    font-size: 18px;
    margin-left: 10px;
    /* margin-bottom: 25px; */
}

.signinform {
    margin: auto;
    width: 50%;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .logincontainer h2 {
        font-size: 18px !important;
    }

    .registeration-detail .title {
        font-size: 15px !important;

    }

    .registeration-detail p {
        font-size: 12px !important;
    }

    .about-list li {
        font-size: 12px !important;
    }

    .about-list li i {
        font-size: 12px !important;
    }

    .register-btn .btn {
        font-size: 14px !important;
        width: auto !important;
    }

    .register-btn p {
        font-size: 14px !important;
    }

    .notify {
        align-items: start !important;
    }

    .contact-box input,
    .contact-box textarea {
        width: 97% !important;

    }

    .overlay-menu .social-icons a {
        margin: 5px !important;
    }
}

@media (max-width: 425px) {
    .signup-form {
        flex-direction: column !important;
        gap: 0;
    }

    .whitebox {
        border-left: none !important;
    }

    .whitebox,
    .registeration-detail {
        max-width: 100% !important;

    }

    .whitebox .widget {
        padding-bottom: 0 !important;
    }

    .signinform {
        width: auto !important;
    }

    .getin_form .btn {
        font-size: 14px !important;
        width: auto !important;
    }

    .getin_form p {
        font-size: 14px !important;
    }

    .container {
        padding: 20px !important;
    }

    .tx-cont {
        display: flex;
        gap: 10px;
        align-items: center !important;
        justify-content: center;

    }

    .tx-cont a {
        margin-right: 0 !important;
    }

    .label-yell {
        left: 50% !important;
    }

    .project-card .image img {
        margin-top: 50px;
    }

    .project-card1 .image img {
        margin-top: 50px;
    }

    .contact-box {
        /* padding-left: 0 !important;
        padding-right: 0 !important; */
    }

    .contact-box input,
    .contact-box textarea {
        width: 94% !important;

    }

    .container-buyer {
        width: 90% !important;
        margin: 0 !important;
    }

    .invest-but {
        display: flex;
        gap: 10px;
        margin-left: 10px !important;
    }
}

/*======================
END Register/login Page.
=======================*/
/*======================
Start Join-now.
=======================*/

.container {
    max-width: 1100px;
    margin: 0 auto;
    /* padding: 20px; */
}

/* Hero */
.join {
    background: #f2f7f4;
    padding: 60px 20px;
    text-align: center;
}

.join h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #028a53;
    text-shadow: 0 0 3px #0f0f0f, 0 0 3px #0c0c0c;
}

.join p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 5px #0b0b0b, 0 0 5px #0f0f0f;
}

.cta-buttons {
    padding: 14px 26px;
    margin: auto;
    font-size: 1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
    background: #028a53;
    color: #fff;
    width: fit-content;
}

.cta-buttons:hover {
    background: #026f44;
}

.btn.outline {
    border: 2px solid #028a53;
    color: #028a53;
    background: transparent;
}

.btn.outline:hover {
    background: #028a53;
    color: #fff;
}

/* Features */
.features {
    padding: 60px 20px;
    text-align: center;
}

.features h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #222;
}

.features .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Steps */
.steps {
    background: #fafafa;
    padding: 60px 20px;
}

.steps h2 {
    text-align: center;
    margin-bottom: 40px;
}

.steps .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.step {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.step .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

/* Testimonials */
.testimonials {
    padding: 60px 20px;
}

.testimonials h2 {
    margin-bottom: 20px;
}

.testimonials blockquote {
    border-right: 4px solid #028a53;
    margin: 20px 0;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
}

.testimonials cite {
    display: block;
    margin-top: 8px;
    font-weight: bold;
    color: #555;
}

/* Resources */
.resources {
    padding: 60px 20px;
}

.resources h2 {
    margin-bottom: 20px;
}

.resources ul {
    list-style: none;
}

.resources li {
    margin-bottom: 12px;
}

.resources a {
    text-decoration: none;
    color: #028a53;
    font-weight: bold;
}

.resources a:hover {
    text-decoration: underline;
}

@media (max-width: 425px) {
    .container {
        width: auto;
    }
}

/*======================
END Join-now.
=======================*/
/*======================
Start Queries.
=======================*/

/* ========== Section Titles ========== */
.section-title__title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--winwin-three);
    position: relative;
    margin-bottom: 20px !important;
}

.section-title1 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #222;
    text-align: center;
    margin-bottom: 0.5rem;
}

/* ========== Form Container ========== */
.form-container-parent {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 60px;
}

.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    width: 40%;
    direction: rtl;
    text-align: right;
    color: #333;
    line-height: 1.7;
}

.uniform-field,
textarea.form-control,
select.form-select {
    font-family: 'Cairo', sans-serif;

    display: block;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 1rem;
    text-align: right;
    direction: rtl;
    margin-bottom: 15px;
}

select.form-select {
    height: calc(3.25rem + 2px);
    line-height: 1.5;
    padding: 12px 14px;
}

.uniform-field:focus,
textarea.form-control:focus,
select.form-select:focus {
    border-color: #02b36b;
    box-shadow: 0 0 0 0.2rem rgba(2, 179, 107, 0.25);
    outline: none;
}

/* File upload */
.upload-file {
    border: 2px dashed #02b36b;
    border-radius: 6px;
    background: #fff;
    padding: 12px;
    cursor: pointer;
    text-align: right;
}

.upload-file:hover {
    background: #f0fdf7;
}

/* ========== Buttons ========== */
.btn.pink-gradient-btn-into-black {
    background: linear-gradient(135deg, #02b36b, #026f44);
    color: #fff;
    border: none;
    padding: 6px 15px;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 1.1rem;
    margin-top: 30px;
}

.btn.pink-gradient-btn-into-black:hover {
    background: linear-gradient(135deg, #026f44, #02b36b);
    transform: translateY(-2px);
}

.btn.pink-gradient-btn-into-black1 {
    background: linear-gradient(135deg, red);
    font-family: 'Cairo', sans-serif;
    color: #fff;
    border: none;
    padding: 6px 15px;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 1.1rem;
    margin-top: 30px;
    cursor: pointer;
}

.btn.pink-gradient-btn-into-black1:hover {
    background: linear-gradient(135deg, red);
    transform: translateY(-2px);
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
    .form-container {
        width: 100%;
        padding: 10px;
    }

    .btn.pink-gradient-btn-into-black {
        width: 100%;
    }
}

/*======================
END Queries.
=======================*/

/*======================
Start Service Req.
=======================*/
/* ========== Section Titles ========== */
.section-title__title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--winwin-three);
    position: relative;
    margin-bottom: 20px !important;
}

.section-title1 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #222;
    text-align: center;
    margin-bottom: 0.5rem;
}

/* ========== Form Container ========== */
.form-container-parent {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 60px;
}

.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    width: 40%;
    direction: rtl;
    text-align: right;
    color: #333;
    line-height: 1.7;
}

.uniform-field,
textarea.form-control,
select.form-select {
    font-family: 'Cairo', sans-serif;
    display: block;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 1rem;
    text-align: right;
    direction: rtl;
    margin-bottom: 15px;
}

/* Fix Bootstrap select height mismatch */
select.form-select {
    height: calc(3.25rem + 2px);
    /* same as .form-control */
    line-height: 1.5;
    padding: 12px 14px;
    /* same as inputs */
}

.uniform-field:focus,
textarea.form-control:focus,
select.form-select:focus {
    border-color: #02b36b;
    box-shadow: 0 0 0 0.2rem rgba(2, 179, 107, 0.25);
    outline: none;
}

/* File upload */
.upload-file {
    border: 2px dashed #02b36b;
    border-radius: 6px;
    background: #fff;
    padding: 12px;
    cursor: pointer;
    text-align: right;
}

.upload-file:hover {
    background: #f0fdf7;
}

/* ========== Buttons ========== */
.btn.pink-gradient-btn-into-black {
    background: linear-gradient(135deg, #02b36b, #026f44);
    color: #fff;
    border: none;
    padding: 6px 15px;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 1.1rem;
    margin-top: 30px;
}

.btn.pink-gradient-btn-into-black:hover {
    background: linear-gradient(135deg, #026f44, #02b36b);
    transform: translateY(-2px);
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
    .form-container {
        width: 95%;
        padding: 20px;
    }

    .btn.pink-gradient-btn-into-black {
        width: 100%;
    }
}

#success-message {
    background-color: #1ace3f;
    /* light green background */
    color: #050505;
    /* dark green text */
    border-radius: 8px;
    /* rounded corners */
    padding: 15px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    margin-bottom: 10px;
}

#success-message .icon-check-circle {
    font-size: 24px;
    color: #28a745;
    /* green icon */
    padding-right: 10px;
}

.custom-alert {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-close {
    background: none;
    border: none;
    color: #155724;
    font-size: 16px;
    cursor: pointer;
}

.btn-close:hover {
    color: #28a745;
}

/*======================
END Service Req.
=======================*/
/*======================
Start footer.
=======================*/
.bbs-footer {
    direction: rtl;
    background-color: var(--winwin-three);
    color: #ddd;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    gap: 20px;
}

.footer-column {
    flex: 1 1 200px;
}

.footer-column h4 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 16px;
}

.footer-column a {
    display: block;
    color: #ddd;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-column a:hover {
    color: #fff;
}

.footer-column.social .social-icons {
    display: flex;
    gap: 12px;
}

.social-icons i {
    font-size: 18px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s;
}

.social-icons i:hover {
    color: #ff9900;
}

.footer-bottom {
    background-color: var(--winwin-three);
    text-align: center;
    padding: 5px;
    font-size: 13px;
    color: var(--winwin-primary);
    font-family: 'Cairo' !important;
    text-shadow: 0 0 2px #0f0e0e, 0 0 2px #0a0a0a;
}

/*======================
END footer.
=======================*/
/*======================
Start media screen.
=======================*/

@media screen and (max-width: 768px) {
    .main-nav {
        order: 3;
    }

    .nav-logo {
        order: 2;
    }
}

/*======================
END media screen.
=======================*/
/*======================
Start WhatsApp.
=======================*/
.cbh-phone {
    display: block;
    position: fixed;
    right: -50px;
    bottom: -55px;
    visibility: hidden;
    background-color: transparent;
    width: 200px;
    height: 200px;
    cursor: pointer;
    z-index: 999;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    -webkit-transition: visibility 0.5s;
    -moz-transition: visibility 0.5s;
    -o-transition: visibility 0.5s;
    transition: visibility 0.5s;
}

.cbh-phone.cbh-show {
    visibility: visible;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        -ms-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        -ms-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}

.cbh-phone.cbh-static1 {
    opacity: 0.6;
}

.cbh-phone.cbh-hover1 {
    opacity: 1;
}

.cbh-ph-circle {
    width: 110px;
    height: 110px;
    top: 40px;
    right: 40px;
    position: absolute;
    background-color: transparent;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid rgba(30, 30, 30, 0.4);
    opacity: 0.1;
    -webkit-animation: cbh-circle-anim 1.2s infinite ease-in-out;
    -moz-animation: cbh-circle-anim 1.2s infinite ease-in-out;
    -ms-animation: cbh-circle-anim 1.2s infinite ease-in-out;
    -o-animation: cbh-circle-anim 1.2s infinite ease-in-out;
    animation: cbh-circle-anim 1.2s infinite ease-in-out;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.cbh-phone.cbh-active .cbh-ph-circle1 {
    -webkit-animation: cbh-circle-anim 1.1s infinite ease-in-out !important;
    -moz-animation: cbh-circle-anim 1.1s infinite ease-in-out !important;
    -ms-animation: cbh-circle-anim 1.1s infinite ease-in-out !important;
    -o-animation: cbh-circle-anim 1.1s infinite ease-in-out !important;
    animation: cbh-circle-anim 1.1s infinite ease-in-out !important;
}

.cbh-phone.cbh-static .cbh-ph-circle {
    -webkit-animation: cbh-circle-anim 2.2s infinite ease-in-out !important;
    -moz-animation: cbh-circle-anim 2.2s infinite ease-in-out !important;
    -ms-animation: cbh-circle-anim 2.2s infinite ease-in-out !important;
    -o-animation: cbh-circle-anim 2.2s infinite ease-in-out !important;
    animation: cbh-circle-anim 2.2s infinite ease-in-out !important;
}

.cbh-phone.cbh-hover .cbh-ph-circle {
    border-color: rgba(0, 175, 242, 1);
    opacity: 0.5;
}

.cbh-phone.cbh-green.cbh-hover .cbh-ph-circle {
    border-color: rgba(117, 235, 80, 1);
    opacity: 0.5;
}

.cbh-phone.cbh-green .cbh-ph-circle {
    border-color: rgba(0, 175, 242, 1);
    opacity: 0.5;
}

.cbh-phone.cbh-gray.cbh-hover .cbh-ph-circle {
    border-color: rgba(204, 204, 204, 1);
    opacity: 0.5;
}

.cbh-phone.cbh-gray .cbh-ph-circle {
    border-color: rgba(117, 235, 80, 1);
    opacity: 0.5;
}

.cbh-ph-circle-fill {
    width: 74px;
    height: 74px;
    top: 58px;
    right: 58px;
    position: absolute;
    background-color: #000;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    opacity: 0.1;
    -webkit-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out;
    -moz-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out;
    -ms-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out;
    -o-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out;
    animation: cbh-circle-fill-anim 2.3s infinite ease-in-out;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.cbh-phone.cbh-active .cbh-ph-circle-fill {
    -webkit-animation: cbh-circle-fill-anim 1.7s infinite ease-in-out !important;
    -moz-animation: cbh-circle-fill-anim 1.7s infinite ease-in-out !important;
    -ms-animation: cbh-circle-fill-anim 1.7s infinite ease-in-out !important;
    -o-animation: cbh-circle-fill-anim 1.7s infinite ease-in-out !important;
    animation: cbh-circle-fill-anim 1.7s infinite ease-in-out !important;
}

.cbh-phone.cbh-static .cbh-ph-circle-fill {
    -webkit-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out !important;
    -moz-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out !important;
    -ms-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out !important;
    -o-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out !important;
    animation: cbh-circle-fill-anim 2.3s infinite ease-in-out !important;
    opacity: 0 !important;
}

.cbh-phone.cbh-hover .cbh-ph-circle-fill {
    background-color: rgba(0, 175, 242, 0.5);
    opacity: 0.75 !important;
}

.cbh-phone.cbh-green.cbh-hover .cbh-ph-circle-fill {
    background-color: rgba(117, 235, 80, 0.5);
    opacity: 0.75 !important;
}

.cbh-phone.cbh-green .cbh-ph-circle-fill {
    background-color: rgba(0, 175, 242, 0.5);
    opacity: 0.75 !important;
}

.cbh-phone.cbh-gray.cbh-hover .cbh-ph-circle-fill {
    background-color: rgba(204, 204, 204, 0.5);
    opacity: 0.75 !important;
}

.cbh-phone.cbh-gray .cbh-ph-circle-fill {
    background-color: rgba(117, 235, 80, 0.5);
    opacity: 1 !important;
}

.cbh-ph-img-circle1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    top: 70px;
    right: 70px;
    position: absolute;
    /* background-image: url(https://360imagem.com/google/images/wpp-icon.png); */
    background-size: 40px 40px;
    background-color: rgba(30, 30, 30, 0.1);
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    opacity: 1;
    -webkit-animation: cbh-circle-img-anim 1s infinite ease-in-out;
    -moz-animation: cbh-circle-img-anim 1s infinite ease-in-out;
    -ms-animation: cbh-circle-img-anim 1s infinite ease-in-out;
    -o-animation: cbh-circle-img-anim 1s infinite ease-in-out;
    animation: cbh-circle-img-anim 1s infinite ease-in-out;
}

.cbh-phone.cbh-active .cbh-ph-img-circle1 {
    -webkit-animation: cbh-circle-img-anim 1s infinite ease-in-out !important;
    -moz-animation: cbh-circle-img-anim 1s infinite ease-in-out !important;
    -ms-animation: cbh-circle-img-anim 1s infinite ease-in-out !important;
    -o-animation: cbh-circle-img-anim 1s infinite ease-in-out !important;
    animation: cbh-circle-img-anim 1s infinite ease-in-out !important;
}

.cbh-phone.cbh-static .cbh-ph-img-circle1 {
    -webkit-animation: cbh-circle-img-anim 0s infinite ease-in-out !important;
    -moz-animation: cbh-circle-img-anim 0s infinite ease-in-out !important;
    -ms-animation: cbh-circle-img-anim 0s infinite ease-in-out !important;
    -o-animation: cbh-circle-img-anim 0s infinite ease-in-out !important;
    animation: cbh-circle-img-anim 0s infinite ease-in-out !important;
}

.cbh-phone.cbh-hover .cbh-ph-img-circle1 {
    background-color: rgba(0, 175, 242, 1);
}

.cbh-phone.cbh-green.cbh-hover .cbh-ph-img-circle1:hover {
    background-color: rgba(117, 235, 80, 1);
}

.cbh-phone.cbh-green .cbh-ph-img-circle1 {
    background-color: rgba(0, 175, 242, 1);
}

.cbh-phone.cbh-green .cbh-ph-img-circle1 {
    background-color: rgba(0, 175, 242, 1);
}

.cbh-phone.cbh-gray.cbh-hover .cbh-ph-img-circle1 {
    background-color: rgba(204, 204, 204, 1);
}

.cbh-phone.cbh-gray .cbh-ph-img-circle1 {
    background-color: rgba(117, 235, 80, 1);
}

@-moz-keyframes cbh-circle-anim {
    0% {
        -moz-transform: rotate(0deg) scale(0.5) skew(-1deg);
        opacity: 0.1;
        -moz-opacity: 0.1;
        -webkit-opacity: 0.1;
        -o-opacity: 0.1;
    }

    30% {
        -moz-transform: rotate(0deg) scale(0.7) skew(-1deg);
        opacity: 0.5;
        -moz-opacity: 0.5;
        -webkit-opacity: 0.5;
        -o-opacity: 0.5;
    }

    100% {
        -moz-transform: rotate(0deg) scale(1) skew(-1deg);
        opacity: 0.6;
        -moz-opacity: 0.6;
        -webkit-opacity: 0.6;
        -o-opacity: 0.1;
    }
}

@-webkit-keyframes cbh-circle-anim {
    0% {
        -webkit-transform: rotate(0deg) scale(0.5) skew(-1deg);
        -webkit-opacity: 0.1;
    }

    30% {
        -webkit-transform: rotate(0deg) scale(0.7) skew(-1deg);
        -webkit-opacity: 0.5;
    }

    100% {
        -webkit-transform: rotate(0deg) scale(1) skew(-1deg);
        -webkit-opacity: 0.1;
    }
}

@-o-keyframes cbh-circle-anim {
    0% {
        -o-transform: rotate(0deg) kscale(0.5) skew(-1deg);
        -o-opacity: 0.1;
    }

    30% {
        -o-transform: rotate(0deg) scale(0.7) skew(-1deg);
        -o-opacity: 0.5;
    }

    100% {
        -o-transform: rotate(0deg) scale(1) skew(-1deg);
        -o-opacity: 0.1;
    }
}

@keyframes cbh-circle-anim {
    0% {
        transform: rotate(0deg) scale(0.5) skew(-1deg);
        opacity: 0.1;
    }

    30% {
        transform: rotate(0deg) scale(0.7) skew(-1deg);
        opacity: 0.5;
    }

    100% {
        transform: rotate(0deg) scale(1) skew(-1deg);
        opacity: 0.1;
    }
}

@-moz-keyframes cbh-circle-fill-anim {
    0% {
        -moz-transform: rotate(0deg) scale(0.7) skew(-1deg);
        opacity: 0.2;
    }

    50% {
        -moz-transform: rotate(0deg) -moz-scale(1) skew(-1deg);
        opacity: 0.2;
    }

    100% {
        -moz-transform: rotate(0deg) scale(0.7) skew(-1deg);
        opacity: 0.2;
    }
}

@-webkit-keyframes cbh-circle-fill-anim {
    0% {
        -webkit-transform: rotate(0deg) scale(0.7) skew(-1deg);
        opacity: 0.2;
    }

    50% {
        -webkit-transform: rotate(0deg) scale(1) skew(-1deg);
        opacity: 0.2;
    }

    100% {
        -webkit-transform: rotate(0deg) scale(0.7) skew(-1deg);
        opacity: 0.2;
    }
}

@-o-keyframes cbh-circle-fill-anim {
    0% {
        -o-transform: rotate(0deg) scale(0.7) skew(-1deg);
        opacity: 0.2;
    }

    50% {
        -o-transform: rotate(0deg) scale(1) skew(-1deg);
        opacity: 0.2;
    }

    100% {
        -o-transform: rotate(0deg) scale(0.7) skew(-1deg);
        opacity: 0.2;
    }
}

@keyframes cbh-circle-fill-anim {
    0% {
        transform: rotate(0deg) scale(0.7) skew(-1deg);
        opacity: 0.2;
    }

    50% {
        transform: rotate(0deg) scale(1) skew(-1deg);
        opacity: 0.2;
    }

    100% {
        transform: rotate(0deg) scale(0.7) skew(-1deg);
        opacity: 0.2;
    }
}

@keyframes cbh-circle-img-anim {
    0% {
        transform: rotate(0deg) scale(1) skew(-1deg);
    }

    10% {
        transform: rotate(25deg) scale(1) skew(-1deg);
    }

    20% {
        transform: rotate(-25deg) scale(1) skew(-1deg);
    }

    30% {
        transform: rotate(25deg) scale(1) skew(-1deg);
    }

    40% {
        transform: rotate(-25deg) scale(1) skew(-1deg);
    }

    100%,
    50% {
        transform: rotate(0deg) scale(1) skew(-1deg);
    }
}

@-moz-keyframes cbh-circle-img-anim {
    0% {
        transform: rotate(0deg) scale(1) skew(-1deg);
    }

    10% {
        -moz-transform: rotate(25deg) scale(1) skew(-1deg);
    }

    20% {
        -moz-transform: rotate(-25deg) scale(1) skew(-1deg);
    }

    30% {
        -moz-transform: rotate(25deg) scale(1) skew(-1deg);
    }

    40% {
        -moz-transform: rotate(-25deg) scale(1) skew(-1deg);
    }

    100%,
    50% {
        -moz-transform: rotate(0deg) scale(1) skew(-1deg);
    }
}

@-webkit-keyframes cbh-circle-img-anim {
    0% {
        -webkit-transform: rotate(0deg) scale(1) skew(-1deg);
    }

    10% {
        -webkit-transform: rotate(25deg) scale(1) skew(-1deg);
    }

    20% {
        -webkit-transform: rotate(-25deg) scale(1) skew(-1deg);
    }

    30% {
        -webkit-transform: rotate(25deg) scale(1) skew(-1deg);
    }

    40% {
        -webkit-transform: rotate(-25deg) scale(1) skew(-1deg);
    }

    100%,
    50% {
        -webkit-transform: rotate(0deg) scale(1) skew(-1deg);
    }
}

@-o-keyframes cbh-circle-img-anim {
    0% {
        -o-transform: rotate(0deg) scale(1) skew(-1deg);
    }

    10% {
        -o-transform: rotate(25deg) scale(1) skew(-1deg);
    }

    20% {
        -o-transform: rotate(-25deg) scale(1) skew(-1deg);
    }

    30% {
        -o-transform: rotate(25deg) scale(1) skew(-1deg);
    }

    40% {
        -o-transform: rotate(-25deg) scale(1) skew(-1deg);
    }

    100%,
    50% {
        -o-transform: rotate(0deg) scale(1) skew(-1deg);
    }
}

.cbh-ph-img-circle1 {}

.cbh-phone.cbh-green .cbh-ph-circle {
    border-color: rgb(0, 242, 164);
}

.cbh-phone.cbh-green .cbh-ph-circle-fill {
    background-color: rgb(0, 242, 164);
}

.cbh-phone.cbh-green .cbh-ph-img-circle1 {
    background-color: rgb(46, 203, 113);
}

.kmacb__manager-border {
    position: absolute;
    width: 75px;
    height: 75px;
    top: 50%;
    right: 50%;
    margin-top: -39.5px;
    margin-right: -39.5px;
    border-radius: 100%;
    border: 2px solid #ffe787;
    -webkit-animation: kmacb__manager-border-anim 1.5s ease-in-out 0.5s infinite;
    -moz-animation: kmacb__manager-border-anim 1.5s ease-in-out 0.5s infinite;
    -ms-animation: kmacb__manager-border-anim 1.5s ease-in-out 0.5s infinite;
    -o-animation: kmacb__manager-border-anim 1.5s ease-in-out 0.5s infinite;
    animation: kmacb__manager-border-anim 1.5s ease-in-out 0.5s infinite;
    opacity: 0.8;
    transform-origin: center;
}

.kmacb__manager-fill {
    background: #52aff7 center bottom no-repeat;
    position: absolute;
    width: 75px;
    height: 75px;
    top: 50%;
    right: 50%;
    margin-top: -37.5px;
    margin-right: -37.5px;
    border-radius: 100%;
    opacity: 0.5;
    -webkit-animation: kmacb__manager-fill-anim 1.5s ease-in-out infinite;
    -moz-animation: kmacb__manager-fill-anim 1.5s ease-in-out infinite;
    -ms-animation: kmacb__manager-fill-anim 1.5s ease-in-out infinite;
    -o-animation: kmacb__manager-fill-anim 1.5s ease-in-out infinite;
    animation: kmacb__manager-fill-anim 1.5s ease-in-out infinite;
    transform-origin: center;
}

.kmacb__manager-circle {
    background: #52aff7;
    position: absolute;
    width: 120px;
    height: 120px;
    top: 50%;
    right: 50%;
    margin-top: -60px;
    margin-right: -60px;
    border-radius: 100%;
}

/*======================
END WhatsApp.
=======================*/
.custom-alert {
    background-color: #f8d7da !important;
    color: #721c24 !important;
    padding: 12px 20px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-weight: 600;
    z-index: 50 !important;
}
