/* fonts link */

@font-face {
    font-family: "Al-Jazeera-Arabic-400";
    src: url("../fonts/Al-Jazeera-Arabic-400.ttf");
    font-weight: 400;
}

@font-face {
    font-family: "Al-Jazeera-Arabic-700";
    src: url("../fonts/Al-Jazeera-Arabic-700.ttf");
    font-weight: bold;
}

/*
========================
Header area start
========================
*/

body {
    font-family: "Al-Jazeera-Arabic-400";
    font-family: "Al-Jazeera-Arabic-700";
    font-size: 16px;
    background: #fff;
    color: #000000;
    color: #E6E6E6;
    margin: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
a {
    margin-bottom: 0;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

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

::selection {
    color: white;
    background: #ff7675;
}

::-webkit-selection {
    color: white;
    background: #ff7675;
}

::-moz-selection {
    color: white;
    background: #ff7675;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    border-radius: 20px 20px 0 0;
    background: rgba(0, 0, 0, .5);
    text-align: center;
    padding-top: 8px;
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 5px;
    bottom: 5px;
    display: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
    z-index: 10;
}

.scrolltotop:hover {
    background: #000;
    color: #fff;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
    -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
}

.logo {
    margin-top: 7px;
    margin-bottom: 3.5px;
}

.nav-area ul {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
    margin-bottom: 18px;
}

.nav-area ul li a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    color: #A38A8A;
    padding: 10px 12px;
    transition: 0.3s;
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.nav-area ul li a::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    top: 80%;
    background-color: #33bda4;
    transform: translateX(-150%);
}

.nav-area ul li a:hover:before {
    transform: translateX(110%);
    transition: 0.9s;
}

.nav-area ul li a:hover {
    color: #33bda4;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: end;
}

.logo .hamburger {
    display: none;
}

/*==SIDE=MENU==START*/

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 2px;
    cursor: pointer;
    padding: 5px 10px;
}

.hamburger span {
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    display: block;
    border-radius: 50%;
    transition: 0.3s;
}

.hamburger:hover span {
    background-color: #0c6f61;
}

.navbar {
    background-color: #333;
    color: white;
    padding: 15px;
    text-align: left;
}

.sidebar-menu {
    position: fixed;
    top: 0;
    right: -340px;
    width: 340px;
    height: 100%;
    background-color: #6F6F6F;
    color: white;
    transition: right 0.6s;
    padding-top: 45px;
    padding-left: 38px;
    padding-right: 38px;
    z-index: 999;
    border-radius: 56px 0 0 56px;
    background-image: url(../images/sidemenu-bg.svg);
    background-repeat: no-repeat;
    background-position: bottom right;
    overflow-y: auto;
    padding-bottom: 50px;
}

.sidebar-logo a {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

.sidebar-menu.active {
    right: 0;
}

.close-btn {
    background-color: #6F6F6F;
    border-radius: 5px;
    color: rgb(255, 255, 255);
    font-size: 40px;
    cursor: pointer;
}

.sidebar-menu ul {
    list-style-type: none;
    padding: 0;
}

.sidebar-menu ul li {
    margin-bottom: 35px;
}

.sidebar-menu ul li a {
    color: white;
    text-decoration: none;
    display: block;
    text-align: center;
    font-size: 20px;
}

.sidebar-menu ul li a:hover {
    color: #33bda4;
}

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 1;
}

#overlay.overlay {
    display: block;
}

.side-bar-footer {
    margin-top: 25px;
}

.sidebar-logo {
    margin-top: 18px;
    margin-bottom: 95px;
}

.side-bar-footer ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
}

/*==SIDEBAR=MENU=END==*/

/*
========================
hero area start
========================
*/

.hero-wrapper {
    width: 100%;
    min-height: 370px;
    background-image: url(../images/hero-banner.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-content {
    max-width: 362px;
    margin-left: 116px;
}

.hero-content h1 {
    font-size: 88px;
    font-weight: 400;
    text-align: center;
    margin-top: 48px;
    color: #0C6F61;
}

.hero-content>a {
    max-width: 362px;
    min-height: 72px;
    display: block;
    text-decoration: none;
    background-color: #00565D;
    border-radius: 30px;
    text-align: center;
    padding: 20px 0;
    font-size: 24px;
    color: #FFFFFF;
    margin-left: auto;
    margin-right: auto;
    margin-top: 29px;
    position: relative;
    overflow: hidden;
    z-index: 5;
}

.hero-content>a::after {
    content: "";
    display: block;
    width: 20%;
    height: 100%;
    transform: skew(50deg);
    position: absolute;
    top: 0;
    left: -100px;
    background-color: rgba(255, 255, 255, .2);
}

.hero-content>a:hover:after {
    left: 120%;
    transition: 0.6s;
}

.hero-video-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 19px;
    color: #FFFFFF;
    margin-top: 32px;
    text-decoration: none;
    font-size: 19px;
    color: #ffffff;
    transition: 0.3s;
}

.hero-video-btn a:hover {
    color: #33bda4;
}

.hero-video-btn img {
    max-width: 47px;
    min-height: 47px;
}

/*
========================
team-wrapper start
========================
*/

.team-wrapper {
    padding-top: 43px;
    padding-bottom: 74px;
}

.team-wrapper .logos-slide {
    display: flex;
}

/* .logoslide  */

.logo-slider {
    overflow: hidden;
    padding: 30px 0 0 0;
    white-space: nowrap;
    /*position: relative;*/
}
.logo-slider .owl-dots {
    display: none!important;
}
.logo-slider:hover .logos-slide {
    /*animation-play-state: paused;*/
}

.logos-slide {
    width: 100%;
    display: inline-block;
    /*animation: 55s slide infinite linear;*/
}

@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.logo-slider-content .logos-slide img {
    width: 80px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.logo-slider-content .logos-slide h6 {
    color: #33BDA4;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
}

.logos-slide div {
    padding: 0!important;
}

/*
========================
all-opportunities start
========================
*/

.all-opportunities-header ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 19px;
}

.all-opportunities-header ul li {
    display: flex;
    align-items: center;
    gap: 7px;
}

.all-opportunities-header ul li a {
    font-family: "Al-Jazeera-Arabic-400";
    font-size: 16px;
    color: #6F6F6F;
    text-decoration: none;
    transition: 0.3s;
}

.all-opportunities-header ul li a:hover {
    color: #0382E0;
    text-decoration: underline;
}

.all-opportunities-header ul li img {
    margin-bottom: 5px;
}

.opportunities-cart-wrapper .oc-body ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 7px;
    padding-bottom: 4px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #e0fffe;
    width: 100%;
}
.pv .oc-body ul {
    justify-content: start!important;
}

.opportunities-cart-wrapper .oc-body ul li a {
    font-family: "Al-Jazeera-Arabic-400";
    text-decoration: none;
    color: #00565D;
    font-size: 14px;
}

.opportunities-cart-wrapper .oc-body ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.opportunities-cart-wrapper {
    width: 100%;
}

.opportunities-cart-wrapper .oc-header img {
    width: 100%;
    transition: 0.5s;
}

.opportunities-cart-wrapper .oc-header {
    width: 100%;
    /*min-height: 140px;*/
    overflow: hidden;
    position: relative;
}

.opportunities-cart-wrapper .oc-header::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.opportunities-cart-wrapper:hover .oc-header:after {
    background-color: rgba(0, 0, 0, .4);
}

.opportunities-cart-wrapper:hover .oc-header img {
    transform: scale(1.1);
}

.oc-cart-footer p {
    margin-bottom: 0;
    font-size: 14px;
    color: #87D97F;
    text-align: right;
}

.oc-cart-footer {
    padding: 8px 20px;
    background-color: #00565D;
    height: 58px;
}

/*
========================
news area start
========================
*/

.news-wrapper {
    margin-top: 50px;
    background-color: #6F6F6F;
    padding: 30px 0;
    padding-bottom: 23px;
}

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

.news-header ul li a {
    text-decoration: none;
    color: #E0FFFE;
    font-size: 16px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-header ul li a:hover {
    color: #d3c955;
}

.news-slider-wrapper .nc-body a {
    text-align: right;
    font-size: 16px;
    color: #33BDA4;
    margin-top: 20px;
    text-decoration: none;
    display: block;
}

.news-slider-wrapper .nc-body p {
    margin-top: 13px;
    color: #E6E6E6;
    margin-bottom: 0;
    text-align: right;
}

.news-slider-wrapper .nc-header {
    width: 100%;
    /*min-height: 190px;*/
    position: relative;
    overflow: hidden;
}

.news-slider-wrapper .nc-header::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(100% - 10px);
    width: 100%;
    height: 100%;
    background-color: rgba(51, 189, 164, 1);
    transition: 0.4s;
    z-index: 2;
}

.news-cart-wrapper:hover .nc-header:after {
    top: 0;
    background-color: rgba(51, 189, 164, 0.3);
}

.news-slider-wrapper .nc-header img {
    width: 100%;
}

.news-slider-wrapper .owl-dots {
    display: none;
}

/*
========================
testimonial area start
========================
*/

.testimonial-wrapper {
    padding-top: 30px;
    padding-bottom: 65px;
    background-color: #efecec;
}

.testimonial-cart-wrapper>img {
    max-width: 160px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-cart-wrapper>p {
    font-size: 16px;
    color: #6F6F6F;
    margin-top: 20px;
    margin-bottom: 0px;
    text-align: center;
    margin-bottom: 22px;
}

.testimonial-cart-wrapper>h6 {
    margin: 0;
    font-size: 16px;
    color: #6F6F6F;
    text-align: center;
}

.testimonial-wrapper .owl-theme .owl-dots .owl-dot.active span,
.testimonial-wrapper .owl-theme .owl-dots .owl-dot:hover span {
    background-color: #33BDA4;
}

.testimonial-wrapper .owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    border: 1px solid #acabab;
    background-color: #fff;
}

.testimonial-wrapper .owl-theme .owl-dots {
    margin-top: 17px;
}

.testimonial-wrapper .owl-carousel .owl-nav button.owl-prev {
    color: #6f6f6f;
    font-size: 25px;
    position: absolute;
    top: 20%;
    left: 30px;
}

.testimonial-wrapper .owl-carousel .owl-nav button.owl-next {
    color: #6f6f6f;
    font-size: 25px;
    position: absolute;
    top: 20%;
    right: 30px;
}

.testimonial-wrapper .owl-carousel .owl-nav button:hover {
    background-color: transparent;
    color: #33BDA4;
}

.testimonial-cart-wrapper {
    position: relative;
}

.special-project-wrapper {
    background-color: #efecec;
    padding-bottom: 79px;
}

.special-project-wrapper .sp-cart-wrapper {
    position: relative;
    border: 8px solid #fff;
    transition: 0.3s;
}

.special-project-wrapper .sp-cart-wrapper:hover {
    border-color: #33bda4;
}

.special-project-wrapper .sp-cart-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
}

.special-project-wrapper .sp-cart-content span {
    display: block;
    text-align: right;
    font-size: 20px;
    color: #D0D0D0;
}

.special-project-wrapper .sp-cart-content h6 {
    margin-top: 100px;
    font-size: 39px;
    text-align: center;
    color: #FFFFFF;
}

.special-project-wrapper .sp-cart-content p {
    text-align: center;
    color: #ffffff;
    font-size: 18px;
    margin-top: 22px;
    margin-bottom: 38px;
}

.special-project-wrapper .sp-cart-content a {
    display: block;
    max-width: 187px;
    margin-left: auto;
    margin-right: auto;
    font-size: 24px;
    color: #fff;
    padding: 10px 0;
    background-color: #33bda4;
    text-align: center;
    border-radius: 30px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 5;
}

.special-project-wrapper .sp-cart-content a::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%), scale(0);
    transition: 0.5s;
}

.special-project-wrapper .sp-cart-content a:hover:after {
    transform: scale(20);
    background-color: rgba(211, 201, 85, 1);
}

.special-project-wrapper .owl-dots {
    display: none;
}

/*============ SEARCH PAGE CSS START HARE  ===========*/

/*========================
hero area start
========================
*/

.search-hero-wapper {
    width: 100%;
    background-image: url(../images/search-hero-banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 0;
}

.search-hero-content {
    height: 100%;
}

.search-hero-content h1 {
    font-size: 88px;
    font-weight: 400;
    text-align: center;
    margin-top: 48px;
    color: #0C6F61;
}

.search-hero-content>a::after {
    content: "";
    display: block;
    width: 20%;
    height: 100%;
    transform: skew(50deg);
    position: absolute;
    top: 0;
    left: -100px;
    background-color: rgba(255, 255, 255, .2);
}

.search-hero-content>a:hover:after {
    left: 120%;
    transition: 0.6s;
}

.search-hero-video-btn a {
    display: flex;
    gap: 10px;
    justify-content: end;
    margin-top: 32px;
    text-decoration: none;
    font-size: 19px;
    color: #808080;
    transition: 0.3s;
    align-items: center;
}

.search-hero-video-btn a:hover {
    color: #33bda4;
}

.search-hero-video-btn img {
    max-width: 55px;
    min-height: 47px;
}

.search-hero-video-btn p {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    padding-left: 10px;
    text-align: left;
}

.search-hero-right {
    padding: 80px 0;
}

.search-hero-right .hero-inner-box {
    width: 229px;
    height: 229px;
    background: #33BDA4;
    border-radius: 50%;
    border: 4px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-hero-right .hero-inner-box h2 {
    text-align: center;
    font-weight: 700;
    font-size: 46px;
    color: #ffffff;
}

/* search opportunites area css start  */

.all-opportunities-wrapper-sa .main-area {
    padding: 50px 0;
}

.opportunities-title {
    padding-bottom: 50px;
}

.opportunities-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0C6F61;
    padding-bottom: 10px;
}
.team-opportunities .oc-body ul {
    background: #00565D;
}
.team-opportunities .oc-body ul li  {
    margin-left: 30px;
    align-items: center;
}
.team-opportunities .oc-body ul li a {
    color: #fff;
}
.team-opportunities .oc-body ul li a img {
    margin-left: 10px;
}
.opportunities-title h2.num-sa {
    padding-left: 20px;
}

.opportunities-title p {
    font-size: 18px;
    font-weight: 700;
    color: #6F6F6F;
}

.opportunities-title p.pad-l {
    padding-left: 20px;
}
.search-opportunities .oc-cart-content {
    border-top: none;
    margin-top: -1px;
    height: 92px;
    overflow: hidden;
}
.oc-cart-content {
    background: #00565D;
    padding: 10px 20px;
    border-top: 1px solid rgba(255, 255, 255, .2);
    border-radius: 0 0 20px 20px;
}

.oc-cart-content p {
    text-align: right;
}

.line-break {
    margin-top: 40px;
}

.opportunites-right {
    height: 100%;
    overflow: hidden;
}

.opporunites-sider-bar {
    padding: 30px;
    background: #EEEEEE;
    margin-top: 137px;
    border-radius: 0 0 20px 20px;
    /*padding-right: 0;*/
}
.search-opportunities .oc-body ul {
    padding-top: 10px;
    padding-bottom: 10px;
}
.label-item input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    left: 0;
    height: 100%;
    z-index: 2;
}

.label-item {
    display: block;
    position: relative;
    padding-right: 50px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: right;
    color: #808080;
    margin-top: 10px;
}

.search-opportunities .oc-cart-footer p {
    padding-bottom: 10px;
    font-size: 18px;
    border-bottom: 1px dotted rgba(255, 255, 255, .4);
}
/* Create a custom radio button */

.checkmark {
    position: absolute;
    top: 0;
    right: 10px;
    height: 23px;
    width: 23px;
    background-color: #fff;
    border-radius: 50%;
}

.label-item:hover input~.checkmark {
    background-color: #33BDA4;
}

.label-item input:checked~.checkmark {
    background-color: #fff;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */

.checked .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */

.checked .checkmark::after {
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #32BBA2;
    transform: translate(-50%, -50%);
}

.side-sr-content {
    width: 90%;
}

.side-sr-icon {
    width: 20%;
    text-align: center;
}


.label-line-break {
    margin-top: 10px;
}

.sidebar-list a {
    text-align: right;
    display: block;
    padding-right: 35px;
    margin: 10px 0;
    text-decoration: none;
    color: #33BDA4;
}

.sidebar-list a i {
    padding-left: 10px;
}

.sidebar-f {
    width: 100%;
    padding-bottom: 20px;
}

.sidebar-f .side-sr-content {
    width: 100%;
    justify-content: center;
}
.radio-input {
    display: none; /* Hide the actual radio input */
}

.radio-label span {
    padding: 5px 10px;
    background: #fff;
    color: #808080;
    text-decoration: none;
    border-radius: 17px;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 15px;
    transition: 0.4s;
}

.radio-label span:hover {
    background: #33BDA4;
    color: #fff;
}

/* When the input inside the label is checked, style the span */
.radio-input:checked + span {
    background: #33BDA4;
    border-color: #33BDA4;
    color: #fff;
}


.items-three .side-sr-content .row .col-4,
.items-three .side-sr-content .row .col-6 {
    padding-left: 0 !important;
}
.cus-button-effect a {
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.cus-button-effect a::after {
    content: "";
    display: block;
    width: 16px;
    height: 10px;
    border-radius: 50%;
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%), scale(0);
    transition: 0.5s;
}

.cus-button-effect a:hover:after {
    transform: scale(20);
    background-color: rgba(211, 201, 85, 1);
}

.register-area .cus-button-effect a::after {
    width: 25px;
}

.conditions-button.cus-button-effect a::after {
    width: 25px;
}


.more-items {
    padding: 30px 0;
}

.pagination {
    margin: 0;
    padding: 0;
}

.pagination li {
    display: inline
}

.pagination li a {
    display: inline-block;
    text-decoration: none;
    padding: 5px 10px;
    color: #6F6F6F;
    font-size: 14px;
}

.pagination li a {
    border-radius: 5px;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.pagination li a.active {
    background-color: #fff;
    color: #33BDA4;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.pagination li a:hover:not(.active) {
    background-color: #ddd;
}

.opportunites-sidebar-mobile {

    display: none;
}

.opportunites-sidebar-mobile a {
    text-align: right;
    padding: 10px 15px;
    background: #D0D0D0;
}

.opportunites-sidebar-mobile a span {
    padding-right: 20px;
    color: #33BDA4;
}

.sidebar-button {
    margin-top: 70px;
    width: 90%;
}

.sidebar-button a {
    text-align: center;
    display: block;
    background: #33BDA4;
    padding: 15px 20px;
    border-radius: 20px;
    color: #fff;
}

/*=========== deatils page css start hare ======== */

.details-hero-wapper {
    background: #CFCFCF;
}

.wapper-box {
    position: relative;
    padding: 140px 0;
}

.details-content-des {
    text-align: right;
    padding: 20px 10px;
    background: #00555C;
    padding-left: 20px;
    width: 455px;
    max-width: 100%;
    position: absolute;
    bottom: -133px;
    left: 100px;
}

.details-content-des h3 {
    color: #87D97F;
    padding-bottom: 10px;
    font-size: 24px;
}

.details-content-item {
    position: absolute;
    right: 97px;
    bottom: -39px;
    width: 360px;
}

.details-content-des p {
    font-size: 18px;
}

.details-content-item .details-img img {
    max-width: 100%;
}

.details-title {
    padding: 10px;
    background: #96AA20;
    text-align: right;
}

.details-title h3 {
    font-size: 16px;
}

/* conditions area css start hare  */

.conditions-area {
    padding-top: 50px;
    padding-bottom: 100px;
    background: #fff;
}

.conditions-wapper {
    padding-top: 135px;
}

.conditions-inner {
    text-align: right;
    padding-top: 50px;
}

.conditions-inner h3 {
    color: #33BDA4;
    padding-bottom: 10px;
    font-size: 26px;
}

.conditions-inner p {
    color: #6F6F6F;
}

.conditions-wapper-2 .conditions-inner-2 {
    width: 360px;
    margin: 0 auto;
    text-align: right;
}

.conditions-inner-2 .cnd-sr-item p {
    color: #6F6F6F;
    font-size: 14px;
    padding-bottom: 10px;
    border-bottom: 1px dotted #6F6F6F;
}

.cnd-sr-item2 ul li {
    padding: 10px 0;
    border-bottom: 1px dotted #6F6F6F;
}

.sr-content-l p {
    font-size: 14px;
    color: #6f6f6f;
}

.sr-content-l p img {
    padding-left: 5px;
}

.cnd-sr-item2 .conditions-button {
    margin-top: 40px;
}

.cnd-sr-item2 .conditions-button a {
    display: block;
    padding: 10px 20px;
    background: #32BBA2;
    text-align: center;
    color: #ffffff;
    font-size: 23px;
    border-radius: 25px;
}

/* who are you area css start hare  */

.whoAreWe-wapper {
    display: flex;
}

.who-wapper-left {
    width: 50%;
    display: flex;
    min-height: 300px;
}

.who-inner-item {
    width: 50%;
}

.who-inner-item img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.who-wapper-right {
    width: 50%;
    padding: 40px 0;
    background: #87D97F;
    padding-right: calc((100% - 1140px) /2);
    display: flex;
    align-items: center;
}

.whoRight-inner {
    text-align: right;
    padding-left: 50px;
    padding-right: 20px;
}

.who-inner-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: #00565D;
    padding-bottom: 20px;
}

.who-inner-content p {
    color: #00555C;
}

/* pay fast area css start hare  */

.pay-fast-area {
    padding: 50px 0;
    background: #287280;
}

.payfast-inner {
    text-align: right;
}

.payfast-inner h3 {
    font-size: 16px;
    color: #32FCC5;
    margin: 15px 0;
}

.payfast-inner2 {
    text-align: right;
}

.payfast-inner2 h2 {
    font-size: 60px;
    padding-right: 80px;
    color: #32FCC5;
}

/* payfast area css end hare  */

/* social media area css start hare  */

.social-media-area {
    padding: 50px 0;
    background: #fff;
}

.social-inner {
    width: 533px;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.social-inner-item {
    text-align: center;
}

.social-inner-item p {
    color: #33BDA4;
}

.social-inner-item .social-items {
    margin-top: 30px;
}

.social-inner-item .social-items ul li {
    display: inline-block;
    margin: 0 10px;
}

.social-inner2 {
    margin-left: 40px;
}

.social-inner2 .social-circle-box {
    width: 150px;
    height: 150px;
    background: #33BDA4;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.social-circle-content h2 {
    font-size: 31px;
    color: #fff;
}

.social-circle-content p {
    color: #fff;
}

/*========= TEAM PAGE CSS START HARE ============ */

.team-hero-wapper {
    background-color: #D8D8E7;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 20px 0;
}

.team-hero-right {
    padding: 100px 0;
    text-align: center;
}

.team-inner-box h2 {
    color: #6F6F6F;
    font-size: 55px;
}

.team-inner-box p {
    font-size: 34px;
    color: #6F6F6F;
    font-weight: 300 !important;
}

.team-opportunites p {
    font-size: 26px;
    color: #6F6F6F;
}

.feature-carousel-content {
    position: relative;
}

/* feature area css start hare  */

.feature-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.feature-carousel .owl-nav button.owl-prev i,
.feature-carousel .owl-nav button.owl-next i {
    font-size: 40px;
}

.feature-carousel .owl-nav button.owl-next {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.owl-theme .owl-nav [class*="owl-"]:hover {
    background: none;
}

.feature-carousel .owl-dot.active span {
    background: #33BDA4 !important;
}

.feature-area-content {
    padding-top: 40px;
}

.feature-inner-wapper {
    text-align: right;
}

.feature-sr-item1 p {
    font-size: 18px;
    color: #407F13;
}

.feature-sr-item2 h2 {
    font-size: 28px;
    color: #33BDA4;
    margin: 10px 0;
}

.feature-sr-item2 p {
    margin: 10px 0;
    font-size: 18px;
    color: #6F6F6F;
    line-height: 37px;
}

.feature-social {
    background: #EAEAEA;
    padding: 10px 20px;
    margin-top: 30px;
}

.feature-social ul li {
    display: inline-block;
    margin-right: 5px;
}

.feature-social ul li a {
    padding: 5px 10px;
    display: block;
}

/*============ register page css start hare ============== */

.register-hero-wapper {
    background-color: #33BDA4;
}

.register-hero-content {
    padding: 50px 0;
    background-image: url(../images/register-hero.svg);
    background-repeat: no-repeat;
    background-position: right;
}

.register-hero-content {
    text-align: center;
}

.register-hero-content h2 {
    font-size: 67px;
    color: #fff;
}

.register-hero-content h3 {
    font-size: 52px;
    padding-top: 10px;
    color: #fff;
}

/* register area css start hare  */

.register-area {
    padding: 50px 0;
    background: #fff;
}

.register-box-wapper {
    background: #D0D0D0;
    padding: 50px;
    text-align: right;
    border-radius: 35px;
}

.register-form label {
    color: #6F6F6F;
    font-size: 14px;
    padding: 7px 0;
}

.register-form label i {
    color: #32BBA2;
    font-size: 10px;
}

.register-form input {
    width: 100%;
    border: none;
    outline: none;
    padding: 7px 5px;
    text-align: right;
}

.form-item-3 .form-sr-item {
    width: 50%;
    padding-right: 30px;
}

.form-item-3 .form-sr-item2 {
    width: 50%;
}

.form-item-3 .form-sr-item select {
    width: 100%;
    border: none;
    padding: 7px 15px;
    background: #fff;
    text-align: center;
    color: #808080;
}

.register-tile h3 {
    font-size: 23px;
    color: #6F6F6F;
    padding-bottom: 30px;
}

.info-box {
    padding-left: 30px;
}

.info-box h2 {
    font-size: 16px;
    padding: 10px 20px;
    background: #173832;
}

.info-box ul li {
    color: #6f6f6f;
    padding: 20px 0;
    font-size: 14px;
    border-bottom: 1px dotted #6f6f6f;
}

.info-box ul li:last-child {
    border-bottom: none;
}

.info-box ul li i {
    padding-left: 10px;
}

.info-box ul li span {
    margin-left: 10px;
    margin-right: 10px;
}

.info-item {
    width: 50%;
    justify-content: center;
}

.info-item2 {
    width: 50%;
}

.register-form {
    padding-top: 16px;
}

.submit-button {
    margin-top: 30px;
}

.submit-button a ,.submit-button button {
    padding: 15px 25px;
    background: #32BBA2;
    display: block;
    width: 424px;
    max-width: 100%;
    margin: 0 auto;
    font-size: 21px;
    color: #fff;
    border-radius: 10px;
    border:none;
}

.modal-dialog {
    /*max-width: 500px;*/
    margin: 10% auto;
}

.modal-header {
    border-bottom: none;
}

.popup-content .correct-box {
    width: 152px;
    height: 152px;
    border-radius: 50%;
    background: #D0D0D0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #fff;
}

.popup-content .correct-box i {
    font-size: 50px;
    color: #33BDA4;
}

.modal-content {
    background-color: #33BDA4;
    border-radius: 20px;
}

.modal-header .btn-close {
    padding: 0.5rem 0.5rem;
    margin: 0;
}

.btn-close {
    color: #fff;
}

.popup-sr-item {
    padding: 20px 0;
}

.popup-sr-item h2 {
    font-size: 35px;
}

.popup-sr-item p {
    font-size: 20px;
    margin-top: 10px;
}

.popup-sr-item span {
    font-size: 20px;
    margin-top: 30px;
    display: block;
}
.side-bar-items.d-flex.align-items-center {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    padding-right: 15px;
}
.sidebar-list {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}
.side-bar-items.bt-none {
    border-top: none !important;
    padding-top: 10px !important;
}
.info-item2 .m-l {
    margin-right: 10px;
}
.info-item p,
.info-item2 p {
    padding-right: 10px;
}
.info-item.items2 p {
    padding-right: 0 !important;
}
/*
========================
footer area start
========================
*/

footer {
    background-color: #00565d;
}

.footer-item {
    padding-top: 80px;
    padding-bottom: 24px;
}

.footer-item h4 {
    font-size: 16px;
    color: #D3C955;
    margin-bottom: 16px;
    text-align: right;
}

.footer-item ul li {
    display: block;
    margin-bottom: 16px;
}

.footer-item ul li a {
    font-family: "Al-Jazeera-Arabic-400";
    text-decoration: none;
    font-size: 16px;
    color: #D0D0D0;
    margin-bottom: 16px;
    transition: 0.3s;
    text-align: right;
    display: block;
}

.footer-item ul li a:hover {
    color: #D3C955;
}

.copyright-area {
    background-color: #6F6F6F;
}

.copyright-area p {
    font-family: "Al-Jazeera-Arabic-400";
    margin: 0;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    color: #D0D0D0;
}

.footerlogo-item>a {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-top: 13px;
}

.footerlogo-item p {
    font-family: "Al-Jazeera-Arabic-400";
    text-align: right;
    margin-top: 22px;
    margin-bottom: 49px;
}

.footerlogo-item ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
}

.footerlogo-item ul li a {
    color: #fff;
    transition: 0.3s;
}

.footerlogo-item ul li a:hover {
    color: #D3C955;
}

.mfooter-social ul {
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-bottom: 19px;
    margin-top: 40px;
}


/*=========== ADD NEW PAGE CSS START HARE ============= */

/* From here you can start to copy */

.calendar {
    padding:8px;
    background: #ffffff;
    border-radius: 4px;
    font-size:18px;
    border: 1px solid #333333;
    box-shadow: 0px 20px 40px rgba(59,60,56,0.05);
}
.ui-datepicker {
    background: #ffffff;
    border-radius: 15px;
}
.ui-datepicker-header {
    height: 50px;
    line-height: 50px;
    color: #ffffff;
    background: #31639c;
    margin-bottom: 10px;
}
.ui-datepicker-prev,
.ui-datepicker-next {
    width: 20px;
    height: 20px;
    text-indent: 9999px;
    border-radius: 100%;
    cursor: pointer;
    overflow: hidden;
    margin-top: 12px;
}
.ui-datepicker-prev {
    float: left;
    margin-left: 12px;
}
.ui-datepicker-prev:after {
    transform: rotate(45deg);
    margin: -43px 0px 0px 8px;
}
.ui-datepicker-next {
    float: right;
    margin-right: 12px;
}
.ui-datepicker-next:after {
    transform: rotate(-135deg);
    margin: -43px 0px 0px 6px;
}
.ui-datepicker-prev:after,
.ui-datepicker-next:after {
    content: '';
    position: absolute;
    display: block;
    width: 8px;
    height: 8px;
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
}
.ui-datepicker-prev:hover,
.ui-datepicker-next:hover,
.ui-datepicker-prev:hover:after,
.ui-datepicker-next:hover:after {
    border-color: #333333;
}
.ui-datepicker-title {
    text-align: center;
    font-size:14px;
}
.ui-datepicker-calendar {
    width: 100%;
    text-align: center;
}
.ui-datepicker-calendar thead tr th span {
    display: block;
    width: 35px;
    color: #31639c;
    margin-bottom: 5px;
    font-size: 16px;
}
.ui-state-default {
    display: block;
    text-decoration: none;
    color: #333333;
    line-height: 34px;
    font-size: 16px;
    border: none;
    outline: none;
}

.ui-state-highlight {
    color: #ffffff;
    background-color:#31639c;
    border-radius:50px;
}
.ui-state-active {
    color: #ffffff;
    background-color:#31639c;
    border-radius:50px;
}
.ui-datepicker-unselectable .ui-state-default {
    color: #eee;
    border: 2px solid transparent;
}
.ui-datepicker-buttonpane.ui-widget-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.icon {
    margin-left: -30px;
    margin-top: -26px;
    position: relative;
    color: #31639c;
    font-size:20px;
}

.date-end input,
.date-start input{
    width: 90%;
    text-align: right;
    border: none;
    outline: none;
}
.ui-datepicker-month {
    margin-right: 15px;
}
.date-end input::placeholder,
.date-start input::placeholder {
    font-size: 14px;
    color: #504F4F;
}

.add-job-header {
    background-color: #173832;
    padding: 15px 0;
}
.add-job-header .nav-area ul {
    margin-bottom: 0;
}
.add-job-header .nav-area ul li a {
    color: #fff;
    opacity: 0.5;
}

.add-job-header .nav-area ul li a::before {
    background: #fff;
}
.add-job-header .nav-area ul li a:hover {
    opacity: 1;
}
.n-menu-active {
    opacity: 1 !important;
}
.n-menu-active::before {
    transform: translateX(0%) !important;
    width: 80% !important;
}
.add-job-header .nav-area ul li {
    position: relative;
}
.add-job-header .nav-area ul li::after {
    content: '';
    clear: both;
    display: block;
    width: 1px;
    height: 60%;
    position: absolute;
    top: 50%;
    right: -6px;
    background: #fff;
    transform: translateY(-50%);
    opacity: 0.5;
}
.add-job-header .nav-area ul li:last-child::after {
    display: none;
}
.jWapRight-content-box2 input,
.vl-sr-item input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    text-align: right;
    color: #504F4F;
}
.vl-sr-item input {
    background: #fff;
    padding: 8px 10px;
    border: 1px solid #D0D0D0;
}





/*========= JOB HERO AREA CSS START ======== */
.job-hero-area {
    padding-top: 30px;
    padding-bottom: 50px;
    background: #E8EBD6;
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
}
.job-wapper-box .j-title {
    color: #497EE3;
    font-size: 14px;
}
.job-wapper-box.wapper-2 {
    margin-top: 30px;
}
.job-inner-content.j-cnt-2 p {
    padding-bottom: 10px;
}
.select-item .label-item {
    color: #6D6D64;
    font-size: 14px;
    margin-top: 10px;
}

.top-title p {
    color: #085674;
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 30px;
}

.job-wapper-right {
    padding-left: 85px;
}
.jWapRight-content-box {
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #D0D0D0;
    width: 400px;
    max-width: 100%;
    margin-left: auto;
    border: 3px solid #fff;
}
.add-box p {
    font-size: 18px;
    color: #fff;
}
.jWapRight-content-box2 {
    padding: 10px;
    /*background: #fff;*/
    width: 400px;
    max-width: 100%;
    margin-left: auto;
    margin-top: 20px;
    /*border: 1px solid #D0D0D0;*/
}
.jWapRight-content-box2 {
    color: rgba(80, 79, 79, 0.5);
}
.volunteer-item1 {
    flex-wrap: wrap;
}
.volunteer-item1 .label-item {
    color: #6D6D64;
    font-size: 14px;
    width: 33%;
    margin-top: 10px;
}
.volunteer-item2 {
    margin-top: 10px;
    padding: 30px 0;
    border-top: 4px solid #707070;
    border-bottom: 4px solid #707070;
}
.volunteer-item2 .vcontent-box {
    width: 33%;
}
.volunteer-item2 .vcontent-box a span {
    color: #0382E0;
}
.volunteer-item2 .date-end, .volunteer-item2 .date-start {
    padding: 10px 15px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #C4C4C4;
}
.date-end span, .date-start span {
    color: rgba(80, 79, 79, 0.3) !important;
}
.volunteer-inner-item {
    border-bottom: 2px dotted #707070;
    padding-bottom: 20px;
}
.volunteer-bottom {
    padding-top: 30px;
}
.volunteer-bottom .item-1{
    width: 100%;
}
.volunteer-bottom .item-2 {
    width: 30%;
}
.volunteer-item2 span {
    font-size: 14px;
    color: #606058;
}
.volunteer-item3 span {
    font-size: 14px;
    color: #606058;
}

/**/
.datatables-volenteers tr th {
    background-color: #87d97f!important;
    color: white;
    text-align: right!important;
}
.page-item.active .page-link{
    background-color: #87d97f;
    border-color: #87d97f;
}
.page-link{
    color: #87d97f;
}
.page-link:focus{
    z-index: 3;
    color: #87d97f;
    background-color: #eaefea;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(135,217,127,0.34);
}
/**/
.job-submit-area {
    padding: 40px 0;
    background: #F0F0F0;
}
.button-box {
    padding-right: 45px;
}
.button-box button {
    border: none;
    outline: none;
    padding: 15px 20px;
    display: block;
    width: 60%;
    background: #1BB191;
    border-radius: 31px;
    font-size: 24px;
    color: #fff;
    margin: 0 auto;
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.button-box button::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%), scale(0);
    transition: 0.5s;
}
.button-box button:hover::after {
    transform: scale(20);
    background-color: rgba(211, 201, 85, 1);
}
.bottom-content h1 {
    text-align: center;
    color: #818181;
    font-size: 39px;
}


/*========= ABOUT PAGE CSS START HARE ======= */
.about-hero-wapper {
    padding: 40px 0;
    background: #E7EFEA;
}
.about-hero-wapper2 {
    width: 536px;
    max-width: 100%;
    height: 600px;
    display: block;
    background: url(../images/about-hero-img.png) no-repeat;
    background-position: center;
    background-size: cover;
    padding: 60px 0;
}
.about-hero-wapper2 h2 {
    padding-top: 20px;
    color: #ffffff;
}
.about-hero-content-wapper {
    width: 428px;
    max-width: 100%;
}
.about-inner-content h2,
.whydo-inner-content h2{
    font-size: 40px;
    color: #0C6F61;
}
.about-inner-content p,
.whydo-inner-content p{
    color: #707070;
    font-size: 18px;
    padding-top: 40px;
    font-family: "Al-Jazeera-Arabic-400";
}
.about-icon img {
    margin-right: 20px;
}

/*=== why area css start hare ===== */
.whyWeDo-area {
    padding: 60px 0;
}
.why-img-wapper {
    height: 553px;
    position: relative;
}
.why-img-box img {
    max-width: 100%;
    position: relative;
}
.why-img-box {
    width: 60%;
    max-width: 100%;
    margin-left: auto;
    position: relative;
}

.why-img-box2 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60%;

}
.why-img-box2 img {
    width: 100%;
}
.whydo-inner-content {
    padding: 0 40px;
}
.hand-img img {
    width: 100%;
}

/* HOW TO WE DO CSS STARR   */
.howDoWeDo-area {
    background: #E7EFEA;
}
.how-do-content {
    padding: 60px 0;
    position: relative;
}
.howDo-img {
    position: absolute;
    bottom: 0;
    right: 0;
}

/* about team css start  */
.about-team-area {
    padding: 60px 0;
}
.ab-team-title h3 {
    font-size: 24px;
    color: #504F4F;
}
.about-team-wapper {
    padding-top: 60px;
}
.ab-carousel-content {
    padding-top: 30px;
    width: 168px;
    margin: 0 auto;
}

.ab-carousel-img {
    width: 168px;
    margin: 0 auto;
}
.ab-carousel-content h3,
.ab-carousel-content p {
    font-size: 16px;
    color: #504F4F;
}
.ab-team-bottom {
    padding-top: 75px;
}
.ab-team-bottom p {
    font-size: 14px;
    color: #707070;
    font-family: "Al-Jazeera-Arabic-400";
}
.ab-team-carousel .owl-dots {
    display: none !important;
}
.ab-team-carousel {
    position: relative;
}
.ab-team-carousel .owl-prev {
    position: absolute;
    left: 0;
    top: 25%;
}
.ab-team-carousel .owl-prev i,
.ab-team-carousel .owl-next i {
    font-size: 25px;
    color: #504F4F;
}
.ab-team-carousel .owl-next {
    position: absolute;
    right: 0;
    top: 25%;
}
.ab-carousel-content p {
    font-family: "Al-Jazeera-Arabic-400";
}
/*=============== CONTACT PAGE CSS START HARE ====================== */
.contact-hero img {
    width: 100%;
}
.contact-content-area {
    padding: 70px 0;
    background: #E7EFEA;
}
.contact-deatils h2 {
    font-size: 40px;
    color: #33BDA4;
    text-align: right;
    padding-right: 90px;
}
.contact-inner-box {
    padding-top: 50px;
}
.contact-inner-box h4 {
    font-size: 17px;
    color: #504F4F;
    padding-bottom: 5px;
    font-weight: bold;
}
.contact-inner-box p {
    color: #504F4F;
    font-weight: 400;
    font-size: 16px;
    font-family: "Al-Jazeera-Arabic-400";
}
.contact-info {
    padding-top: 40px;
}
.contact-info a {
    display: block;
    text-decoration: underline;
    font-family: "Al-Jazeera-Arabic-400";
    color: #286AD0;
    width: 188px;
    margin-left: auto;
    margin-right: auto;
}
.contact-info a.email {
    margin-top: 15px;
}
.contact-form {
    width: 424px;
    max-width: 100%;
    margin-left: auto;
}
.contact-form form input,
.contact-form form textarea {
    width: 100%;
    text-align: right;
    padding: 10px 10px;
    outline: none;
    border: 1px solid #D2D2D2;
    margin-bottom: 20px;
}
.contact-form form input::placeholder,
.contact-form form textarea::placeholder {
    font-family: "Al-Jazeera-Arabic-400";
    color: #504F4F !important;
    font-size: 14px;
}
.contact-form form textarea {
    height: 194px;
}
.contact-form form button {
    width: 100%;
    border: none;
    outline: none;
    padding: 10px;
    margin-top: 15px;
    background: #44A685;
    font-size: 21px;
    color: #ffff;
    border-radius: 25px;
    z-index: 0;
    overflow: hidden;
    position: relative;
}
.contact-form form button::after {
    content: "";
    display: block;
    width: 30px;
    height: 20px;
    border-radius: 50%;
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%), scale(0);
    transition: 0.5s;
}
.contact-form form button:hover::after {
    transform: scale(20);
    background-color: rgba(211, 201, 85, 1);
}

/*========= PROFILE EDIT PAGE START HARE ========= */
.profile-hero-area {
    padding-top: 30px;
    padding-bottom: 50px;
    background: #33BDA4;
}

.profile-wapper1 {
    width: 312px;
    max-width: 100%;
    margin-left: auto;
    margin-right: 50px;
}
.profile-picture {
    background: #D0D0D0;
    padding: 30px 50px;
    border: 6px solid #fff;
}
.profile-picture a {
    display: block;
    padding-bottom: 20px;
}
.profile-picture p {
    font-size: 21px;
    padding-top: 20px;
    color: #504F4F;
    font-family: "Al-Jazeera-Arabic-400";
}
.picture-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: #D0D0D0;
    border: 2px solid #fff;
}
.upload-img {
    width: 100px;
    height: 100px;
    margin-left: auto;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
}
.upload-img h3 {
    font-size: 18px;
    font-family: "Al-Jazeera-Arabic-400";
    padding-top: 10px;
    padding-bottom: 15px;
    color: #818181;
}
.edit-details {
    padding-right: 115px;
}
.details-edit-box {
    padding-top: 30px;
}
.details-edit-box .form-div input,
.details-edit-box .form-div textarea {
    width: 100%;
    text-align: right;
    padding: 10px 20px;
    outline: none;
    border: 1px solid #D0D0D0;
    color: #504F4F;
}
.details-edit-box .form-div input::placeholder,
.details-edit-box .form-div textarea::placeholder {
    font-size: 18px;
}
.details-edit-box .form-div textarea.bio {
    height: 175px;
    margin-top: 20px;
}

/* =====UPDATE INFORMATION  AREA CSS START ===== */
.update-information {
    padding-top: 40px;
    padding-bottom: 60px;
    background: #D0D0D0;
}
.social-link-update .form-div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.social-link-update .social-links {
    background: #fff;
    padding: 7px 20px;
    justify-content: end;
    width: 48%;

}
.social-link-update .social-links img{
    height: 23.66px;
}
.social-link-update .social-links input,
.full-address input ,
.address-item input{
    width: 80%;
    border: none;
    outline: none;
    background: transparent;
    text-align: right;
    margin-right: 10px;
    color: #818181;
    font-family: "Al-Jazeera-Arabic-400";
    font-size: 18px;
}
.social-links input::placeholder {
    color: #BAB3B3;
    font-size: 18px;
    font-family: "Al-Jazeera-Arabic-400";
}
.addres-information .form-div {
    background: #fff;
    width: 100%;
    padding-bottom: 15px;
}
.full-address {
    justify-content: flex-end;
    padding: 10px 20px;
}
.full-address input::placeholder {
    color: #504F4F;
    font-size: 18px;
    font-family: "Al-Jazeera-Arabic-400";
}
.address-details {
    padding-top: 20px;
    justify-content: right;
}
.address-item input {
    width: 20%;
    margin-right: 0 !important;
}
.address-item {
    text-align: right;
    padding-right: 40px;
}
.address-item input::placeholder {
    color: #504F4F;
    font-size: 18px;
    font-family: "Al-Jazeera-Arabic-400";
}
.Coordinator {
    width: 100%;
    border: 1px solid #D0D0D0;
    outline: none;
    margin-top: 20px;
    padding: 8px 38px;
    text-align: right;
    padding-left: 0;
    color: #818181;
    font-family: "Al-Jazeera-Arabic-400";
}
.Coordinator::placeholder {
    color: #504F4F;
    font-size: 18px;
    font-family: "Al-Jazeera-Arabic-400";
}
.edit-submit-button {
    margin-top: 40px;
    text-align: center;
}

.edit-submit-button button {
    border: none;
    outline: none;
    width: 186px;
    padding: 12px;
    background: #1AA789;
    border-radius: 30px;
    font-size: 24px;
    color: #fff;
    overflow: hidden;
    z-index: 0;
    position: relative;
}
.edit-submit-button button::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%), scale(0);
    transition: 0.5s;
}
.edit-submit-button button:hover::after {
    transform: scale(20);
    background-color: rgba(211, 201, 85, 1);
}

/*======== PROFILE VIEW PAGE CSS START HARE ======= */

.profile-view-hero-wapper {
    padding: 55px 0;
}
.pro-view-content {
    text-align: center;
}
.pro-view-content h3 {
    color: #504F4F;
    font-size: 24px;
}
.pro-view-content h2 {
    font-size: 23px;
    color: #33BDA4;
    padding-top: 15px;
}
.pro-view-content a {
    background: #33BDA4;
    padding: 10px 20px;
    display: flex;
    width: 360px;
    height: 63px;
    align-items: center;
    justify-content: space-around;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    border-radius: 30px;
    font-size: 21px;
    color: #fff;
    overflow: hidden;
    position: relative;
    z-index: 0;
}
.pro-view-content a::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%), scale(0);
    transition: 0.5s;
}
.pro-view-content a:hover::after {
    transform: scale(40);
    background-color: rgba(211, 201, 85, 1);
}
.profile-view-opprt {
    background: #D0D0D0;
}
.profile h2 {
    color: #504F4F;
    font-size: 24px;
}
.edit-post {
    padding-bottom: 20px;
}
.profile-view-hero-wapper {
    padding: 40px 0;
}

/* NEW REGISTER PAGE CSS START  */
.main-body {
    min-height: 100vh;
    background: linear-gradient(to right, #33BDA4 50%, #fff 50%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.n_Register-content {
    width: 100%;
}
.resgister-img {
    width: 280px;
    margin: 0 auto;
}
.resgister-img img {
    width: 100%;
}
.n_Register-wapper {
    width: 500px;
    max-width: 100%;
    margin: 0 auto;
}
.n_Register-wapper h3 {
    font-size: 24px;
    color: #33BDA4;
}
.reg-form {
    margin-top: 35px;
}
.re-form-item {
    text-align: right;
}
.re-form-item input {
    width: 100%;
    margin-top: 5px;
    padding: 10px 20px;
    outline: none;
    border: 1px solid #D0D0D0;
    border-radius: 5px;
    text-align: right;
    color: #818181;
}
.re-form-item label i {
    color: #1AA789;
    padding-right: 10px;
}
.re-form-item label {
    color: #818181;
    font-size: 14px;
    padding-right: 15px;
}
.n-sr-item {
    width: 48%;
}
.reg-submit-btn button {
    width: 100%;
    padding: 10px 0;
    border: none;
    outline: none;
    background: #32BBA2;
    height: 56px;
    border-radius: 8px;
    font-size: 21px;
    color: #fff;
    overflow: hidden;
    position: relative;
    z-index: 0;
}
.reg-submit-btn {
    margin-top: 35px;
}
.reg-submit-btn button::after {
    content: "";
    display: block;
    width: 15px;
    height: 10px;
    border-radius: 50%;
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%), scale(0);
    transition: 0.5s;
}
.reg-submit-btn button:hover::after {
    transform: scale(40);
    background-color: rgba(211, 201, 85, 1);
}

.login-page-link {
    margin-top: 30px;
}
.login-page-link p {
    font-size: 14px;
    color: #604073;
}
.login-page-link p a {
    padding-right: 10px;
    color: #44A786;
    text-decoration: underline;
}

/*======= LOGIN PAGE CSS START ======= */
.main-body-login {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #E8EBD6;
}
.login-wapper {
    width: 648px;
    max-width: 100%;
    padding: 40px 65px;
    background: #173731;
    border-radius: 30px;
}
.login-p-logo  {
    width: 56px;
    margin: 0 auto;
}
.login-p-logo img {
    width: 100%;
}
.login-wapper h3 {
    text-align: center;
    margin-top: 10px;
    font-size: 25px;
    color: #87D97F;
}
.login-wapper form {
    margin-top: 40px;
}
.login-item {
    background: #fff;
    padding: 10px 40px;
    border-radius: 20px;
    align-items: center;
}
.login-item input {
    width: 55%;
    text-align: right;
    border: none;
    outline: none;
    color: #818181;
    font-size: 18px;
}
.login-item input::placeholder {
    font-weight: 700;
}
.login-item p {
    color: #818181;
    font-size: 14px;
}
.login-item2 {
    margin-top: 20px;
}
.log-check-box {
    margin-top: 18px;
}
.log-check-box input[type="checkbox"] {
    width: 13px;
    height: 13px;
    accent-color: #87D97F;

}
.log-check-box label {
    margin-right: 10px;
    font-size: 14px;
    color: #818181;
}
.login-submit-btn button {
    background: #87D97F;
    border-radius: 30px;
    font-size: 16px;
    color: #173832;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.forget-pass {
    margin-top: 20px;
}
.forget-pass p {
    color: #D0D0D0;
    font-size: 13px;
}
.forget-pass a {
    margin-right: 10px;
    text-decoration: underline;
    color: #87D97F;
}
.login-item2 input::placeholder {
    font-size: 8px;
}
.profile-co-cart p {
    font-family: "Al-Jazeera-Arabic-400";
}
.details-edit-box input::placeholder,
.details-edit-box textarea::placeholder{
    font-family: "Al-Jazeera-Arabic-400", FontAwesome;
}
.upload-img,
.profile-picture,
.picture-item,
.jWapRight-content-box {
    position: relative;
    overflow: hidden;
}
.upload-img  input,
.profile-picture  input,
.picture-item  input,
.jWapRight-content-box  input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.job-inner-wapper textarea {
    width: 100%;
    background: #fff;
    border: 1px solid #D0D0D0;
    padding: 10px;
    margin-top: 5px;
    outline: none;
    text-align: right;
    /*height: 230px;*/
    color: rgba(80, 79, 79, 0.5);
    font-size: 14px;
}
.job-in-wapper2 textarea {
    line-height: 30px;
}


/*CUSTOM STYLING*/
.product-card {
    width: 1080px;
    height: 420px;
    border: 1px solid #ccc;
    position: relative;
    overflow: hidden;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#canvas {
    display: none;
}

#cropper-container {
    display: none;
}

#cropper-image {
    max-width: 100%;
}
.select2-selection__rendered,.select2-selection__arrow,.select2-container--default .select2-selection--single{
    height: 38px!important;
}
.select2-results__option{
    color: #606058;
}
/*CUSTOM STYLING*/