@font-face {
    font-family: "regularH";
    src: url("../fonts/Luma-Regular.ttf");
    font-weight: 400;
}

@font-face {
    font-family: "lightH";
    src: url("../fonts/Luma-Light.ttf");
    font-weight: 300;
}

@font-face {
    font-family: "semiBoldH";
    src: url("../fonts/Luma-SemiBold.ttf");
    font-weight: 600;
}

@font-face {
    font-family: "thinH";
    src: url("../fonts/Luma-Thin.ttf");
    font-weight: 200;
}

@font-face {
    font-family: "bookH";
    src: url("../fonts/ArbFONTS-FFShamelFamily-SansOneBook.ttf");
    font-weight: 400;
}

@font-face {
    font-family: "boldH";
    src: url("../fonts/ArbFONTS-FFShamelFamily-SansOneBold.ttf");
    font-weight: bold;
}

:root {
    --black-color: #392C23;
    --red-color: #CF2A45;
    --blue-color: #3EC4B5;
}

html,
body {
    direction: rtl;
    text-align: start;
    font-family: bookH;
    background-color: #FAFAFA;
    overflow: hidden;
}

.blue-color {
    color: var(--blue-color) !important;
}

ul {
    list-style-type: none;
}

a {
    text-decoration: unset !important;
}

.main-title {
    display: flex;
    align-items: center;
    column-gap: 27px;
    flex-wrap: wrap;

}

.main-title .title {
    flex: 0 0 auto;

}

.main-title > * {
    margin-bottom: 24px;
}

.cs-select {
    width: max-content;
    font-size: 14px;
    border: 0;
    background-color: transparent;
    box-shadow: none;
}

.cs-select:focus {
    box-shadow: none;
}

.overlay-footer-tab {
    position: relative;
}

.overlay-footer-tab::before {
    content: "";
    position: absolute;
    display: block;
    top: -1px;
    left: -1px;
    right: -1px;
    min-height: 60px;
    bottom: 0;
    z-index: 1;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .3s;
    background: var(--blue-color);
    z-index: 1;
}

.overlay-footer-tab:hover a {
    color: white;
}

.overlay-footer-tab:hover:before {
    transform: scaleX(1);
}

.overlay-footer-tab-right::before {
    transform-origin: right center;
}

.overlay-footer-tab-left::before {
    transform-origin: left center;
}

/* general-style */

.cs-tabs .nav {
    border-bottom: 1px solid #D6D6D6;
    margin-bottom: 40px;
}

.cs-tabs .nav-pills .nav-link.active,
.cs-tabs .nav-pills .show > .nav-link {
    background-color: transparent;
    color: var(--black-color);
    font-family: boldH;
    border-bottom: 2px solid var(--red-color);
}

.cs-tabs .nav-link,
.cs-tabs .nav-link:focus,
.cs-tabs .nav-link:hover {
    color: var(--black-color);
    font-size: 14px;
    border: 0;
    border-radius: 0;
    padding: 7px;
}

.title {
    font-size: 20px;
    font-family: boldH;
    color: var(--red-color);
    margin-bottom: 24px;
}

.cs-btn {
    background-color: #F2F2F2;
    border-radius: 7px;
    color: var(--black-color);
    font-family: bookH;
    font-size: 16px;
    min-width: 200px;
    height: 50px;
    text-align: center;
    line-height: 40px;
    transition: all 0.2s ease-in;
}

.cs-btn.success {
    background-color: #3EC4B5;
    color: white;
}

.cs-btn:hover {
    opacity: 0.8;
    transition: all 0.2s ease-in;
}

.cs-input-icon {
    position: relative;
    max-width: 524px;
}

.cs-search-input {
    border: 0;
    background-color: transparent;
    border-bottom: 2px solid #D6D6D6;
    border-radius: 0;
    height: 36px;
    max-width: 524px;
}

.cs-search-input:focus {
    background-color: transparent;
    outline: unset;
    box-shadow: none;
    border-color: var(--red-color);
}

.cs-input-icon label {
    font-size: 14px;
    font-family: bookH;
    color: #989898;
}

.cs-input-icon .input-icon {
    position: absolute;
    left: 0;
    top: 20px;
}

.date {
    font-size: 14px;
    color: var(--red-color);
    font-family: bookH;
}

.cs-scroll {
    scrollbar-color: #3EC4B5 #EEEEEE;
    scrollbar-width: thin;
    scroll-behavior: smooth;
}

/* width */
.cs-scroll::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

/* Track */
.cs-scroll::-webkit-scrollbar-track {
    background: #EEEEEE;
}

/* Handle */
.cs-scroll::-webkit-scrollbar-thumb {
    background: #3EC4B5;
}

/* Handle on hover */
.cs-scroll::-webkit-scrollbar-thumb:hover {
    background: #3EC4B5;
}

.map-content {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -20%);
    background-color: white;
    width: 600px;
    max-height: 600px;
    min-height: 350px;
    overflow-y: scroll;
}

.map-content-head .close-map-content {
    width: 53px;
    height: 53px;
    text-align: center;
    line-height: 43px;
    border: 1px solid #D6D6D6;
    border-radius: 0;
    box-shadow: none;

}

.map-content-body {
    padding: 16px 53px;
}

.location-content h2 {
    font-size: 16px;
    font-family: boldH;
    color: var(--black-color);
    margin-bottom: 10px;
}

.location-content-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.location-content-phone p {
    margin-bottom: 0;
    font-size: 14px;
    color: var(--black-color);
}

.location-data {
    display: none;
}

.gole-card {
    background-color: white;
    border: 1px dashed #D6D6D6;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    padding: 24px;
    gap: 16px;
    margin-bottom: 24px;
}

.gole-card h2 {
    font-size: 16px;
    color: var(--black-color);
    font-family: boldH;
}

.gole-card p {
    font-size: 16px;
    font-family: bookH;
    color: var(--black-color);
}

.gole-card figure {
    background-color: #FAFAFA;
    border-radius: 50%;
    border: 1px solid #D6D6D6;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.gole-card .details {
    margin-top: 10px;
}

.plan-card {
    border: 1px solid #D6D6D6;
    border-radius: 12px;
    padding: 30px 32px 15px;
    background-color: #FFFFFF;
    margin-bottom: 24px;
}

.plan-card .plan-card-body {
    display: flex;
    align-items: center;
    gap: 26px;
}

.plan-card .plan-card-body h4 {
    font-size: 16px;
    font-family: bookH;
}

.plan-card .plan-card-footer {
    margin-top: 14px;
    padding-top: 20px;
    border-top: 1px solid #D6D6D6;
    display: flex;
    justify-content: flex-end;
    align-items: center;

}

.plan-card .plan-card-footer h6 {
    font-size: 14px;
    font-family: bookH;
    color: var(--black-color);
    margin-bottom: 0;
}

.plan-card .plan-card-footer a {
    color: var(--blue-color);
    font-size: 14px;
    font-family: bookH;
    border-right: 1px solid #848484;
    padding-right: 9px;
    margin-right: 9px;
}

.service-card {
    border: 1px solid #D6D6D6;
    background-color: white;
    padding: 35px;
    border-radius: 12px;
    height: calc(100% - 32px);
    margin-bottom: 32px;
    transition: 0.4s ease-in;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-card figure {
    border-radius: 10px;
    border: 0.8px solid #D6D6D6;
    background-color: #FAFAFA;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-card figure img {
    width: 44px;
    height: 44px;
}

.service-card h2 {
    font-size: 16px;
    color: var(--black-color);
    font-family: boldH;
    transition: 0.4s ease-in;
}

.service-card p {
    font-size: 14px;
    color: var(--black-color);
    font-family: bookH;
    transition: 0.4s ease-in;
}

.show-more {
    font-size: 14px;
    color: var(--black-color);
    font-family: bookH;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.4s ease-in;
}

.show-more .show-more-arrow {
    border-radius: 50%;
    background-color: #F3F2F2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    transition: 0.4s ease-in;

}

.service-card::before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    background-image: linear-gradient(315deg, #3EC4B5, #99E2DA, #DDFCFA);
    transition: 0.4s ease-in;
    opacity: 0;
    z-index: -1;
    /* border-radius: 50%; */

}

.service-card:hover::before {
    opacity: 1;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.service-card:hover h2,
.service-card:hover p,
.service-card:hover .show-more {
    color: white;
    transition: 0.4s ease-in;
}

.service-card:hover .show-more-arrow {
    transform: translateX(-5px);
    transition: 0.4s ease-in;
}

/* ./general-style */

.whatsapp {
    position: fixed;
    left: 4vw;
    bottom: 100px;
    z-index: 1;
}

.whatsapp svg {
    width: 28px !important;
    height: 28px !important;
}

.header-events {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-events a {
    font-size: 12px;
    color: var(--black-color);
    font-family: 'boldH';
}

.time {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.time h4 {
    font-size: 12px;
    color: var(--black-color);
    margin-bottom: 0;
    padding-top: 5px;
}

.time .with-icon {
    display: flex;
    align-items: center;
    gap: 4px;
}

.time .with-icon svg,
.header-events svg {
    width: 20.4px;
    height: 20.4px;
}

.all-page {
    display: flex;
    justify-content: space-between;
    min-height: 100vh;
}

.header {
    background-image: -webkit-linear-gradient(to bottom, rgba(239, 239, 239, 1), rgba(239, 239, 239, 0));
    background-image: -moz-linear-gradient(to bottom, rgba(239, 239, 239, 1), rgba(239, 239, 239, 0));
    background-image: -ms-linear-gradient(to bottom, rgba(239, 239, 239, 1), rgba(239, 239, 239, 0));
    background-image: -o-linear-gradient(to bottom, rgba(239, 239, 239, 1), rgba(239, 239, 239, 0));
    background-image: linear-gradient(to bottom, rgba(239, 239, 239, 1), rgba(239, 239, 239, 0));
    padding: 21px 0px 0px;
    height: auto;
    margin-bottom: 0px;
    position: relative;
    z-index: 2;
}

/*.header::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    height: 0.5px;*/
/*    background-color: #D6D6D6;*/
/*    z-index: 0;*/
/*    transform: translateY(10px);*/
/*    bottom: -27.2px;*/
/*}*/


.header::after {
    content: "";
    position: absolute;
    z-index: 0;
    width: 100%;
    transform: translateY(10px);
    display: block;
    background-image: url(../images/head1.png);
    background-size: cover;
    background-position: center;
    height: 15px;
    opacity: 0.7;
    bottom: -30px;
}

.logo {
    width: 89.6px;
    height: 112px;

}

.header .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 11;
}

.logo img {
    width: 100%;
    height: 100%;
    user-select: none;
}

.logo {
    margin: 0 auto;
}

.header-content {
    /* padding-inline: 52px; */
}

.sidebar {
    width: 98px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    height: 100vh;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.sidebar::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}

.sidebar .inner-menu {
    margin-bottom: 160px;
    width: 100%;
}

.icon {
    width: 100%;
    display: flex;
     border-bottom: 1.3px dashed #D6D6D6;
    height: 75px;
    cursor: pointer;
    position: relative;
    color: var(--black-color);
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: column;
    align-content: stretch;
    justify-content: space-evenly;
}

.icon.active {
    background-color: rgba(194, 190, 188, 14%);
}

.icon.active p {
    color: var(--red-color);
    fill: var(--red-color) !important;
}

.icon.active {
    color: var(--red-color);
    fill: var(--red-color) !important;
}

.mobile-side-bar {
    position: fixed;
    display: block;
    right: -100%;
    transition: all .5s ease-in-out;

}


/*tooltip Box*/
.con-tooltip {
    position: relative;
    display: inline-block;
    cursor: default;
    width: 100%;
    z-index: 3;
}

.con-tooltip .icon svg {
    width: 20px;
    height: 20px;
}

/*tooltip */
.tooltip {
    visibility: hidden;
    z-index: 1;
    opacity: .40;
    width: max-content;
    padding: 0px 10px;
    background: #333;
    position: absolute;
    top: -140%;
    /* left: -25%; */
    border-radius: 3px;
    font: 16px;
    transform: translateY(9px);
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 3px rgba(56, 54, 54, 0.86);
}

.con-tooltip {
    position: relative;
}

.con-tooltip::before {
    content: "";
    position: absolute;
    top: 0;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform .3s;
    background: rgba(194, 190, 188, 14%);
    width: calc(100% - 2px);
    height: 100%;
    z-index: -1;
}

.con-tooltip:hover::before {
    transform: scaleX(1);
}

/* tooltip  after*/
.tooltip::after {
    content: " ";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 4.5px 0 4.5px;
    border-color: rgb(57 44 35 / 70%) transparent transparent transparent;
    position: absolute;
    left: 41%;
}

.con-tooltip:hover .tooltip {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
    transition: .3s linear;
    animation: odsoky 1s ease-in-out infinite alternate;
}


.con-tooltip .tooltip {
    display: none !important;
}

.con-tooltip .side-label {
    display: block;
    text-align: center;
    font-family: bookH;
    font-size: 11px;
    color: var(--black-color);
    margin: 6px 0 0;
    white-space: nowrap;
    pointer-events: none;
    transition: color .18s ease;
    position: static !important;
    text-wrap: initial;
    line-height: 1.5;
    width: 90%;
}




/* change label color on hover and when icon is active */
.con-tooltip:hover .side-label,
.con-tooltip .icon.active ~ .side-label,
.con-tooltip .icon:focus ~ .side-label {
    color: var(--red-color);
}

/*!* keep layout spacing tidy *!*/
/*.con-tooltip {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    justify-content: flex-start;*/
/*}*/

/*!* if you want the label hidden in collapsed/mobile sidebar, add a utility *!*/
/*.sidebar.collapsed .con-tooltip .side-label*/
/*@media (max-width: 768px) {*/
/*    .con-tooltip .side-label { display: none; }*/
/*}*/



/*left*/

.left .tooltip {
    top: 33%;
    height: 30px;
    background: rgb(57 44 35 / 70%);
    right: 65px;
    z-index: 9999;
}

.left .tooltip::after {
    top: 50%;
    left: 99%;
    transform: rotate(-90deg) translate(51%, 0);

}


/*bottom*/

.bottom .tooltip {
    top: 115%;
    left: -20%;
}

.bottom .tooltip::after {
    top: -17%;
    left: 40%;
    transform: rotate(180deg);
    padding: 20px;
}

.tooltip p {
    margin-bottom: 0;
    padding-top: 9px;
    font-family: 'bookH';
    font-size: 11px;
    color: white;
}

/*right*/

.right .tooltip {
    top: -20%;
    left: 115%;
}

.right .tooltip::after {
    top: 40%;
    left: -12%;
    transform: rotate(90deg);
}

.social-media h2 {
    transform: rotate(270deg);
    font-size: 12px;
    color: var(--black-color);
    font-family: bookH;
    width: max-content;
}

.social-media h2 span {
    color: var(--red-color);
}

.links {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    row-gap: 13px;
    flex-direction: column;
    margin-top: 150px;
}

.links a span {
    display: flex;
    background-color: var(--blue-color);
    width: 25px;
    height: 25px;
    align-items: center;
    justify-content: center;
}

.sidebar::after {
    content: '';
    position: fixed;
    width: 12px;
    height: 100%;
    background-color: #FFF;
    background-image: url(../images/line-dash.png);
    right: 95px;
    z-index: 2;
    background-repeat: no-repeat;
    background-size: contain;
    border: 1px solid #D6D6D6;
}

.social-media {
    margin-bottom: 30px;
}

.main-body {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    flex: 1 1 auto;
    width: 0%;
    background: transparent;
    position: relative;
    z-index: 1;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 65px;
    border: 1px solid #D6D6D6;
    position: fixed;
    width: calc(100% - 98px);
    bottom: 0;
    z-index: 3;
}

.footer a {
    color: var(--black-color);
    font-family: bookH;
    font-size: 16px;
    text-align: center;
    border-inline-end: 1px solid #D6D6D6;
    height: 100%;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    padding-top: 8px;
    position: relative;
    z-index: 2;
}

.footer .active {
    background-color: var(--blue-color);
}

.footer .active a {
    font-family: boldH;
    color: #FFF;
}

.footer > div {
    height: 100%;
    width: 100%;
    background-color: white;
}

/* content */
.main-body .content {
    position: relative;
    height: calc(100vh - 100px);
    margin-top: 0;
    overflow: auto;
    padding-top: 75px;
    padding-bottom: 100px;
    z-index: 1;
    scrollbar-color: #3EC4B5 #EEEEEE;
    scrollbar-width: thin;
    scroll-behavior: smooth;

}

.main-body::before {
    position: absolute;
    inset: 0;
    content: '';
    background-image: url(../images/right-Anqaa.svg);
    background-size: 480px;
    background-repeat: no-repeat;
    background-position: bottom right;
    z-index: -1;
    bottom: 65px;
}

.main-body::after {
    position: absolute;
    inset: 0;
    content: '';
    background-image: url(../images/left-Anqaa.svg);
    background-size: auto;
    background-repeat: no-repeat;
    background-position: bottom left;
    z-index: -1;
    bottom: 65px;
}

/* width */
.main-body .content::-webkit-scrollbar {
    width: 6px;
}

/* Track */
.main-body .content::-webkit-scrollbar-track {
    background: #EEEEEE;
}

/* Handle */
.main-body .content::-webkit-scrollbar-thumb {
    background: #3EC4B5;
}

/* Handle on hover */
.main-body .content::-webkit-scrollbar-thumb:hover {
    background: #3EC4B5;
}

.main-body .content .main-slider,
.main-body .content .history-swiper {
    /*height: 430px;*/
    max-height: 430;
}

.card-news {
    position: relative;
    height: 270px;
}

.card-news .card-body {
    position: absolute;
    bottom: 0;
}

.card-news .card-body .date p {
    color: #FFF;
    font-family: boldH;
    font-size: 12px;
    margin-bottom: 0;
}

.card-news .card-body .date h6 {
    font-family: bookH;
    font-size: 12px;
    color: #FFF;
}

.card-news .card-body .date svg {
    margin-top: 5px;
    margin-bottom: 5px;
}

.card-news .card-body h5 {
    font-size: 16px;
    font-family: bookH;
    color: #FFF;
}

.card-news figure img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 8px;
}

.overlay-img,
.overlay-img-2 {
    position: relative;
    width: 100%;
    height: 100%;
}

.overlay-img::before,
.overlay-img-2::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.overlay-img::before {
    background-color: rgb(57 44 35 / 33%);
}

.overlay-img-2::before {
    background-color: rgb(0 0 0 / 25%);
}

.ads-card {
    background-color: #FFF;
    box-shadow: 0 0 15px rgb(94 92 78 / 10%);
    padding: 24px;
    border-radius: 10px;
    height: 127px;
    margin-bottom: 16px;
    width: 100%;
}

.overlay-img-3 {
    position: relative;
    width: 100%;
    height: 50%;
}

.overlay-img-3::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50%;
    border-radius: 8px;
    background-image: linear-gradient(to bottom, rgb(0 0 0 / 0%), rgb(0 0 0 / 68%));
    z-index: 1;
    transition: all 0.2s ease-in-out;
}

.ads-card h6 {
    font-size: 14px;
    font-family: bookH;
    color: var(--black-color);
}

.ads-card svg {
    width: 14px;
    height: 14px;
}

.ads-card p {
    color: var(--red-color);
    font-size: 12px;
    font-family: bookH;
    margin-bottom: 0;
}

.ads-card a {
    font-size: 10px;
    font-family: bookH;
    color: var(--black-color);
}

.ads-card a svg {
    width: 7px;
    height: 7px;
}

.map-card {
    position: relative;
    height: 270px;
}

.map-card .card-body {
    position: absolute;
    bottom: 0;
}

.map-card .card-body h4 {
    font-size: 18px;
    font-family: boldH;
    color: var(--red-color);
    margin-bottom: 5px;
}

.map-card .card-body h6 {
    font-size: 16px;
    font-family: bookH;
    color: var(--black-color);
    margin-bottom: 12px;
}

.map-card figure {
    width: 100%;
    height: 100%;
}

.map-card figure img {
    width: 100%;
    height: 100%;
}

.custom-btn {
    background-color: var(--red-color);
    color: #FFF;
    font-family: regularH;
    border-radius: 5px;
    transition: 0.2s ease-in;
}

.custom-btn svg {
    font-size: 13px;
    height: 15px;
}

.custom-btn:hover {
    color: white;
    opacity: 0.9;
    transition: 0.2s ease-in;
}

.text {
    color: var(--red-color);
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 270px;
    width: 250px;
}

.text h3 {
    font-size: 67px;
    font-family: boldH;
}

.text h6 {
    font-size: 33px;
    font-family: bookH;
}

.outer-slider {
    position: relative;
}

.inner-slider {
    position: relative;
    /* width: 400px; */
    width: 100%;
    min-width: 400px;
    height: 100%;
}

.inner-slider .item {
    position: absolute;
    display: none;
}

.inner-slider .item:first-child {
    display: block;
}

/* .outer-slider .nav-dots button{
    width: 8px;
    height: 8px;
    background-color: var(--black-color);
    border-radius: 50%;
    border: none;
    padding: 0;
    margin-inline: 3px;
    outline: none;
    border: 1px solid var(--black-color);
}
.outer-slider .nav-dots button.active{

    background-color: white;
} */
.swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: var(--black-color);
    border-radius: 50%;
    border: none;
    padding: 0;
    margin-inline: 3px;
    outline: none;
    border: 1px solid var(--black-color);
    opacity: 1;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: white;
}

/* .outer-slider .nav-dots button span {
    width: 5px;
    height: 5px;
    background-color: var(--black-color);
    border-radius: 50%;
} */

.outer-slider .nav-dots {
    position: absolute;
    bottom: 0;
    text-align: center;
    width: 100%;
}

.title-slider {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.title-slider h4 {
    font-size: 16px;
    color: var(--red-color);
    font-family: boldH;
}

.title-slider a {
    font-size: 12px;
    color: #848484;
    font-family: bookH;
}

.mt-slider {
    margin-top: 27px;
}

.fastway {
    margin-top: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.fastway h4 {
    font-size: 18px;
    color: var(--red-color);
    font-family: boldH;
}

.fastway-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 36px;
    column-gap: 70px;
    flex-wrap: wrap;
}

@media (max-width: 1366px) {
    .fastway-info {
        flex-wrap: wrap;
        column-gap: 0px;
    }
}

.icon-fast {
    background-color: var(--blue-color);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease-in;

}

.icon-fast svg {
    width: 23px;
    height: 23px;
}

.fastway-info > div {
    display: flex;
    align-items: center;
    justify-content: center;
    /* flex-wrap: wrap; */
}

/*.fastway-info>div p {*/
.fastway-info > div a {
    font-size: 14px;
    font-family: bookH;
    color: var(--black-color);
    width: 91px;
    text-align: start;
    margin-inline-start: 14px;
    margin-bottom: 0;
}

.icon-fast:hover {
    background-color: #33B1A3;
    transition: 0.2s ease-in;
}

/* ./content */

.header-events .dropdown-toggle span {
    margin-inline-start: 10px;
}

.header .btn-nav {
    display: none;
    border: none;
    background: transparent;
    color: #2A1935;
    font-size: 20px;
    width: 40px;
    height: 30px;
    border-radius: 5px;
    cursor: pointer;
    outline: none;
    transition: 0.2s ease-in;
}

.header .btn-nav:hover {
    opacity: 0.8;
    transition: 0.2s ease-in;
}

.header-events .dropdown-menu {
    min-width: 90px;
}

/* ////////////////////////// mobile page ///////////////////////// */
.content .y-feature-app {
    width: 564px;
}

@media (max-width: 525px)
{
    .content .y-feature-app {
        width: 380px;
    }

    .content .y-mobile
    {
        left: 48% !important;

    }
}

.content .y-feature-app h3 {
    font-size: 20px;
    font-family: 'boldH';
    color: var(--red-color);
    margin-top: 20px;
    margin-bottom: 10px;
}

.content .y-feature-app p {
    font-family: 'bookH';
    margin-bottom: 24px;
}

.content .y-feature-app .y-icon {
    display: inline-block;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    color: black;
    border: solid 1px #D6D6D6;
    text-align: center;
    line-height: 65px;
}

.content .y-feature-app .active-icon {
    background-color: var(--red-color);
}

.content .y-feature-app .y-icon-info {
    margin-top: 10px;
    transform: translateX(10px);
}

.content .y-feature-app .active:hover h4 {
    color: var(--red-color);
}

.content .y-feature-app .active:hover span {
    background: var(--red-color);
}

.content .y-feature-app .active:hover svg path {
    fill: white;
}


.content .y-feature-app .y-icon-info h4 {
    font-size: 16px;
    font-family: "boldH";
}

.content .y-feature-app .y-icon-info p {
    font-size: 14px;
    white-space: nowrap;
    font-family: 'bookH';
}

.content .y-feature-app .y-download {
    margin-top: 30px;
}

.content .y-mobile {
    position: relative;
    left: 25%;
    transform: translateX(-50%);
}


.content .y-mobile .new_img {
    width: 280px;
    position: absolute;
    right: 32px;
    top: 106px;
    height: 140px;
    border-radius: 15px;
}
.content .y-mobile .new_title {
    position: absolute;
    top: 189px;
    color: #fff;
    max-width: 240px;
    padding: 5px;
    font-size: 10px;
    right: 33px;
    background: #222;
    opacity: 0.7;
    border-radius: 10px;
}


/* town_council */
.manager-card > figure,
.manager-card > figure img {
    border-radius: 7px;
    height: 250px;
}

.manager-card h2 {
    font-size: 20px;
    font-family: boldH;
    color: var(--black-color);
}

.manager-card h4 {
    font-size: 20px;
    font-family: bookH;
    color: var(--black-color);
}

.manager-word {
    font-size: 20px;
    color: var(--black-color);
    font-family: bookH;
    position: relative;
    margin-top: 20px;
    margin-bottom: 20px;
}

.manager-word::before {
    content: '';
    position: absolute;
    background-image: url(../images/quots-right.svg);
    background-color: white;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    right: -70px;
    top: -20px;
}

.manager-word::after {
    content: '';
    position: absolute;
    background-image: url(../images/quots-left.svg);
    background-color: white;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    left: -70px;
    bottom: -20px;
}

.details-card {
    border-radius: 12px;
    border: 1px solid #D6D6D6;
    background-color: white;
    padding: 32px 24px 0px;
    height: calc(100% - 16px);
    margin-bottom: 16px
}

.details-card-title {
    font-size: 16px;
    color: var(--red-color);
    font-family: boldH;
    margin-bottom: 16px;
}

.details-card-subtitle {
    font-size: 16px;
    color: var(--black-color);
    font-family: boldH;
    margin-bottom: 16px;
}

.details-card-description p {
    font-size: 14px;
    font-family: bookH;
    color: var(--black-color);
}

.details-card .table-responsive {
    margin-left: -24px;
    margin-right: -24px;
}

.details-card .table {
    margin-bottom: 0;
}

.details-card .table > :not(caption) > * > * {
    padding-top: 16px;
    padding-bottom: 16px;
}

.members h4 {
    font-size: 16px;
    font-family: boldH;
    color: var(--black-color);
    margin-bottom: 16px;
}

.members p {
    font-size: 16px;
    font-family: bookH;
    color: var(--black-color);
}

.member-card {
    text-align: center;
    margin-bottom: 24px;
}

.member-card figure {
    max-height: 115px;
    max-width: 115px;
    border-radius: 50%;
    border: 3px solid #D6D6D6;
    margin-inline: auto;
}

.member-card.active figure {
    border: 7px solid #3EC4B5;
}

.member-card figure img {
    height: 100%;
    width: 100%;
    border-radius: 50%;
}

.member-card h2 {
    font-size: 15px;
    font-family: boldH;
    color: var(--red-color);
}

.member-card h6 {
    font-size: 14px;
    font-family: bookH;
    color: var(--black-color);
}

.member-card-details {
    background-color: #F2F2F2;
    border: 1px solid #D6D6D6;
    height: 100%;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 32px 40px;
    text-align: center;
    max-height: 520px;
}

.member-card-details .member-card figure {
    border-color: #392C23;
    border-width: 5px;
}

.member-card-details .member-card h6 {
    font-size: 14px;
    font-family: boldH;
    color: var(--black-color);
    position: relative;
    padding-inline: 20px;
}

.member-card-details .member-card h6::before {
    content: '';
    position: absolute;
    right: -50px;
    top: 50%;
    width: 60px;
    height: 1px;
    background-color: #C8C8C8;
}

.member-card-details .member-card h6::after {
    content: '';
    position: absolute;
    left: -50px;
    top: 50%;
    width: 60px;
    height: 1px;
    background-color: #C8C8C8;

}

.member-card-details p {
    color: var(--black-color);
    font-size: 14px;
    font-family: bookH;
}

.datepicker-contaniner {
    background-color: white;
    padding: 38px 50px 20px;
    border-radius: 7px;
    box-shadow: 0px 3px 7px #EBEBEB;
}

.cs-datepicker .datepicker,
.cs-datepicker table {
    width: 100%;
}

.cs-datepicker table tr td {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding-top: 15px;
    padding-bottom: 15px;
    text-shadow: none !important;
    font-family: bookH !important;
    position: relative;
    z-index: 1;
}

.cs-datepicker table tr td span.active.active {
    background-image: linear-gradient(to bottom, #989898, #989898) !important;
    background-color: #989898 !important;
}

.cs-datepicker table tr td.day.focused,
.cs-datepicker table tr td.day:hover {
    background-color: unset !important;
}

.cs-datepicker table tr td.active,
.cs-datepicker table tr td.day.focused,
.cs-datepicker table tr td.day:hover {
    background-color: unset !important;
    background-image: unset;
}


.cs-datepicker table tr td.prev-session,
.cs-datepicker table tr td.next-session,
.cs-datepicker table tr td.current-session {
    color: white !important;
}

.cs-datepicker table tr td.prev-session::before,
.cs-datepicker table tr td.current-session::before,
.cs-datepicker table tr td.next-session::before,
.cs-datepicker table tr td.active::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white !important;
    z-index: -1;
    left: 50%;
    right: 50%;
    transform: translate(50%, 5px);
}

.cs-datepicker table tr td.active::before {
    background-image: linear-gradient(to bottom, #989898, #989898) !important;
    background-color: #989898 !important;
}

.cs-datepicker table tr td.prev-session::before {
    background-image: linear-gradient(to bottom, #CF2A45, #CF2A45) !important;
    background-color: #CF2A45 !important;
}

.cs-datepicker table tr td.current-session::before {
    background-image: linear-gradient(to bottom, #3EC4B5, #3EC4B5) !important;
    background-color: #3EC4B5 !important;
}

.cs-datepicker table tr td.next-session::before {
    background-image: linear-gradient(to bottom, #32C33A, #32C33A) !important;
    background-color: #32C33A !important;
}

.cs-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cs-status-icon {
    width: 16px;
    height: 16px;
    background-color: black;
    border-radius: 50%;
    display: inline-block;
}

.cs-status h6 {
    font-size: 16px;
    font-family: bookH;
    color: var(--black-color);
    margin-bottom: -5px;
}

.session-content h6 {
    font-size: 16px;
    font-family: boldH;
    color: var(--black-color);
}

.session-content h5 {
    font-size: 16px;
    font-family: boldH;
    color: var(--red-color);
    margin-bottom: 1rem;
    min-height: calc(1.3em * 2);
}

.point {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
}

.point span {
    display: inline;
    width: 24px;
    height: 24px;
    background-color: white;
    border: 1px solid #D6D6D6;
    border-radius: 50%;
    font-size: 14px;
    font-family: 'boldH';
    padding-top: 3px;
    text-align: center;
}

.point p {
    margin-bottom: 0;
    font-family: bookH;
    color: var(--black-color);
    font-size: 16px;
}

.sidebar-map {
    width: 100%;
    height: calc(100vh - 200px);
    background-color: #E6E6E6;
    padding: 16px 24px;
    overflow-y: auto;
}

.sidebar-map h2 {
    font-size: 18px;
    font-family: boldH;
    color: var(--red-color);
    margin-bottom: 1rem;
}

.map-list {
    margin-left: -24px;
    margin-right: -24px;
}

.map-list .list {
    display: flex;
    gap: 10px;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: 0.2s ease-in;
}

.map-list .list:hover {
    background-color: #DFDFDF;
    transition: 0.2s ease-in;
}

.map-list .list .count {
    background-color: var(--red-color);
    width: 31px;
    height: 31px;
    display: inline;
    border-radius: 50%;
    text-align: center;
    color: white;
    line-height: 31px;
    padding-top: 2px;
    font-family: boldH;

}

.map-list-info {
    margin-top: 6px;
}

.map-list-info h6 {
    font-size: 14px;
    color: var(--black-color);
    font-family: boldH;
}

.map-list-info .phone-icon {
    color: #707070;
}

.map-list-info p {
    margin-bottom: 0;
    color: #707070;
    font-size: 14px;
    font-family: bookH;
}

.map-list .list.active {
    background-color: #DFDFDF;
}

.map-list .list.active h6,
.map-list .list.active .map-list-info p,
.map-list .list.active .map-list-info .phone-icon {
    color: #3EC4B5;
}

.map-list .list.active .count {
    color: white;
    background-color: #3EC4B5;
}

#map {
    min-height: 300px;
    height: 100%;
    width: 100%;
}

/* ./town_council */
/* ////////////////////////////// contact-us */
.y-contact-page h2 {
    font-family: "boldH";
    font-size: 20px;
    color: var(--red-color);
}

.y-contact-page p {
    font-family: "bookH";
    font-size: 16px;
}

.y-contact-page h3 {
    font-family: "boldH";
    font-size: 16px;
}

.y-contact-page .y-contact h3 {
    margin-bottom: 15px;
}

.y-contact-page .y-contact .y-contact-item {
    font-family: "bookH";
    font-size: 14px;
    margin-bottom: 10px;
}

.y-media-icon .social_circle {
    width: 40px;
    height: 40px;
    display: inline-block;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    border: solid 1px #D6D6D6;
    margin-left: 16px;
    margin-top: 10px;
    margin-bottom: 40px;
}

.y-media-icon > span:hover {
    background-color: var(--red-color);
}

.y-media-icon > span:hover svg path:first-child {
    fill: white
}

.y-media-icon > span:hover svg path {
    fill: var(--red-color);
}

.y-media-icon > span:hover svg g path {
    fill: white;
}

.y-contact-page .map-card {
    width: 517px;
    height: 312px;
}

.y-contact-page .map-card .card-body h4 {
    font-size: 20px;
    font-family: "boldH";
    margin-bottom: 10px;
    margin-right: 20px;
}

.y-contact-page .map-card .card-body h6 {
    margin-bottom: 20px;
    margin-right: 20px;
    font-family: "bookH";
    font-size: 18px;
}

.y-contact-page .map-card .card-body a {
    width: 129px;
    height: 46px;
    line-height: 30px;
    font-size: 18px;
    margin-right: 20px;
}

.y-contact-page .form h3 {
    font-family: "boldH";
    font-size: 20px;
    color: var(--red-color);
}

.y-contact-page .form form {
    width: 600px;
    font-family: "bookH";
}

.y-contact-page .form form label {
    display: block;
    font-size: 14px;
    margin-top: 20px;
}

.y-contact-page .form form input,
.y-contact-page .form form select {
    width: 284px;
    height: 50px;
    border: solid 1px #E2E2E2;
    border-radius: 15px;
    font-size: 14px;
    font-family: "bookH";
    padding-right: 15px;

}

.y-contact-page .form form input::placeholder {
    color: #C8C8C8;
}

.y-contact-page .form form select {
    color: #C8C8C8;
}

.y-contact-page .form form textarea {
    height: 100px;
    border: solid 1px #E2E2E2;
    border-radius: 10px;
    margin-right: 12px;
    resize: none;
    font-family: "bookH";
    padding-top: 15px;
    padding-right: 10px;
    color: #C8C8C8;
}

.y-contact-page .form form button {
    /*width: 46px;*/
    /*height: 32px;*/
    /*background-color: var(--blue-color);*/
    /*border: solid 1 ps var(--blue-color);*/
    /*position: relative;*/
    /*right: 90.7%;*/
    /*border-bottom-left-radius: 15px;*/
    /*bottom: 32px;*/
}

.y-contact-page .form form .cs-upload-file {
    height: 100px;
    position: relative;
    border: solid 1px #E2E2E2;
    border-radius: 15px;
    cursor: pointer;
    text-align: center;
    color: #C8C8C8;
    background: white;
    margin-right: 10px;
    -webkit-transition: var(--trans);
    transition: var(--trans);
}

/* .y-contact-page .form form .cs-upload-file:hover {
    border-color: currentColor;
    color: var(--blueColor);
} */

.y-contact-page .form form .cs-upload-file h4 {
    font-size: 14px;
    font-family: "bookH";
}

.y-contact-page .form form .cs-upload-file h4 strong {
    font-weight: bold;
    color: var(--red-color);
    font-family: inherit;
}

/* .y-contact-page .form form .cs-upload-file:hover h4 strong {
    color: var(--red-color);
} */

.y-contact-page .form form .cs-upload-file p {

    font-size: 12px;
    font-family: "bookH";
    margin-bottom: 0;
}

/* //////////////////////////////////////// Questions page */
.question-page .y-page-title span {
    display: inline-block;
    width: 56px;
    height: 56px;
    border: solid 1px #D6D6D6;
    border-radius: 50%;
    line-height: 56px;
    text-align: center;
}

.question-page .y-page-title h2 {
    display: inline-block;
    font-size: 20px;
    font-family: "boldH";
    color: var(--red-color);
    display: inline;
    margin-right: 10px;

}

.question-page .y-page-title p {
    font-family: "bookH";
    padding-top: 10px;
}

.question-page .y-common-questions .y-questions {
    margin-top: 30px;
}

.question-page .y-common-questions .y-questions .question {
    height: 68px;
    background-color: white;
    margin: 10px 0px;
    border: solid 1px #D6D6D6;
    font-family: "boldH";
    border-radius: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    padding: 20px;
    color: var(--black-color);
}

.question-page .y-common-questions .y-questions .question p {
    margin-bottom: 0;
}

.question-page .y-common-questions .y-questions .active {
    background-color: var(--blue-color);
    color: white;
}

.y-icons span {
    display: inline-block;
    width: 56px;
    height: 56px;
    border: solid 1px #D6D6D6;
    border-radius: 50%;
    line-height: 56px;
    text-align: center;
}

.question-page .y-answer .y-answers {

    border: solid 2px var(--blue-color);
    border-radius: 10px;
    margin-top: 30px;
    padding-bottom: 20px;
}

.question-page .y-answer .y-answers h3 {
    font-family: "boldH";
    font-size: 16px;
    margin-top: 20px;
    margin-right: 20px;
}

.question-page .y-answer .y-answers span {
    width: 24px;
    height: 24px;
    display: inline-block;
    border: solid 1px #D6D6D6;
    border-radius: 50%;
    line-height: 25px;
    text-align: center;
    margin-right: 20px;
    flex: 0 0 24px;

}

.question-page .y-answer .y-answers p {
    font-size: 16px;
    font-family: "bookH";
    margin-right: 10px;
    color: #707070;
    flex: 0 0 calc(100% - 27px);
    padding-inline-end: 20px;
}

.paginate {
    width: max-content;
    margin: 0 auto;
    margin-top: 30px;
}

.paginate ul {
    padding-right: 0;
    padding-left: 0;
}

.paginate .item {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin-left: 10px;
    display: inline-block;
    border: solid 1px #D6D6D6;
    border-radius: 5px;

}

.paginate .item .link {
    font-size: 16px;
    font-family: "boldH";
    color: #989898;
}

.paginate .active {
    background: var(--blue-color);
}

.paginate .active .link {
    color: white;
}

/* plans-page */
.plans-page h2 {
    font-family: boldH;
    color: var(--black-color);
    font-size: 16px;
}

/* ./plans-page */
.y-home-page h2 {
    font-size: 20px;
    color: var(--red-color);
    font-family: "boldH";
    margin-bottom: 30px;
}

.y-nav {
    font-family: "bookH";
    font-size: 16px;
}

.y-nav a {
    color: #392C23;
}

.y-nav a:hover {
    color: #392C23 !important;
}

.y-nav .active {
    background: unset !important;
    color: #392C23 !important;
    font-family: "boldH";
    border-radius: unset;
    border-bottom: solid 2px var(--red-color);

}


.y-icon-boreder {
    display: inline-block;
    width: 56px;
    height: 56px;
    text-align: center;
    line-height: 56px;
    border-radius: 50%;
    border: solid 1px #D6D6D6;
}

.y-home-page h3 {
    color: var(--red-color);
    font-family: "boldH";
    display: inline;
    padding-right: 10px;
    padding-top: 5px;
}


.y-counter {
    width: 24px;
    height: 24px;
    line-height: 24px;
    padding-top: 2px;
    margin-left: 10px;
    display: inline-block;
    border: solid 1px #D6D6D6;
    text-align: center;
    border-radius: 50%;
}

/* /////////////////////////////////////// historical_backgroung page  */
.y-years {
    margin-top: 150px;
}


.slidecontainer {
    width: 100%;
    margin-top: 30px;
}


/* The slider itself */
.slider {
    -webkit-appearance: none;
    /* Override default CSS styles */
    appearance: none;
    width: 100%;
    /* Full-width */
    height: 2px;
    /* Specified height */
    background: #d3d3d3;
    /* Grey background */
    outline: none;
    /* Remove outline */
    -webkit-transition: .2s;
    /* 0.2 seconds transition on hover */
    transition: opacity .2s;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    /* Override default look */
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--red-color);
    cursor: pointer;
}

/*
.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background:var(--red-color);
    cursor: pointer;

} */

.y-center {
    border: solid 1px #D6D6D6;
    border-radius: 15px;
    background-color: white;
    margin-bottom: 30px;
    margin-left: 0px;
    height: 500px;
    /* width: min-content; */
}

.y-center .hero {
    padding: 15px;
    overflow: hidden;
    width: 100%;
}

.y-center .hero img {
    width: 100%;
    height: 220px;
    border-radius: 20px;
}

.y-center .hero-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    z-index: 1;
    position: relative;
    right: 50%;
    transform: translate(50%);
    top: -70px;
    background-color: white;
    display: flex;
    align-items: center;
}

.y-center .hero-icon img {
    margin: 0 auto;

}

.y-center h3 {
    font-size: 16px;
    font-family: "boldH";
    margin-top: -60px;
    padding-right: 15px;
}

.y-center p {
    padding-inline: 16px;
}

.y-center a {
    color: #392C23;
    display: block;
    margin-bottom: 30px;
    padding-right: 15px;
}

.y-center a span {
    background: #F3F2F2;
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    line-height: 30px;
    align-items: center;
}

.y-center a span svg {
    margin-right: 8px;
}

/*###################*/

.y-facilitie {
    border: solid 1px #D6D6D6;
    border-radius: 15px;
    background-color: white;
    margin-bottom: 30px;
    margin-left: 0px;
    height: 520px;
    /* width: min-content; */
}

.y-facilitie .hero {
    padding: 15px;
    overflow: hidden;
    width: 100%;
}

.y-facilitie .hero img {
    width: 100%;
    height: 250px;
    border-radius: 15px;
}

.y-facilitie .hero-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    z-index: 1;
    position: relative;
    right: 50%;
    transform: translate(50%);
    top: -70px;
    background-color: white;
    display: flex;
    align-items: center;
}

.y-facilitie .hero-icon img {
    margin: 0 auto;

}

.y-facilitie h3 {
    font-size: 16px;
    font-family: "boldH";
    margin-top: -60px;
    padding-right: 15px;
}

.y-facilitie p {
    padding-inline: 16px;
    font-size: 14px;
}

.y-facilitie a {
    color: #392C23;
    display: block;
    margin-bottom: 30px;
    padding-right: 15px;
}

.y-facilitie a span {
    background: #F3F2F2;
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    line-height: 30px;
    align-items: center;
}

.y-facilitie a span svg {
    margin-right: 8px;
}

/* baladia_structure */
.cs-scroll-x {
    min-width: 100%;
    width: 100%;
    overflow-x: auto;
    scroll-snap-align: center;

}

.cs-tree {
    text-align: center;
    min-width: 1640px;
}

.cs-tree li,
.cs-tree ul,
.cs-tree {
    width: 100%;

}

.cs-tree li li:first-child:before {
    right: calc(50% - 0.03125em);
    /* left: unset; */
}

.cs-tree li li:last-child:before {
    left: calc(50% - 0.03125em);
    right: auto;
}

.cs-tree .tf-nc {
    width: auto;
    padding-inline: 40px;
    min-height: 56px;
    line-height: normal;
    padding-top: 14px;
    border-radius: 7px;
    color: var(--black-color);
    font-size: 16px;
    font-family: boldH;
    background-color: white;
    min-width: 200px;


}

.cs-tree {
    overflow: unset;
}

.cs-tree li li:before,
.cs-tree .tf-nc,
.cs-tree .tf-nc:before,
.cs-tree .tf-nc:after {
    border-color: #D6D6D6;

}

.cs-tree .tf-nc,
.tf-tree li {
    margin-top: 32px;
}

.tf-tree .tf-nc:before,
.tf-tree .tf-node-content:before {
    top: -3.03125em;
}

.tf-tree .tf-nc:after,
.tf-tree .tf-nc:before,
.tf-tree .tf-node-content:after,
.tf-tree .tf-node-content:before {
    height: 3em;
}

.tf-tree li li:only-child > .tf-nc:before,
.tf-tree li li:only-child > .tf-node-content:before {
    height: 3.0625em;
    top: -3.0625em;
}

.cs-tree .tf-nc.first {
    color: white;
    background-color: var(--red-color);
    font-size: 24px;
    font-family: boldH;
    width: 445px;
    line-height: 38px;
}


.cs-tree .without-children li .tf-nc {
    margin-top: 0;
}

.cs-tree .without-children li:before {
    top: 50%;
}

.cs-tree .without-children li .tf-nc::before {
    content: unset;
}

.cs-tree .without-children .tf-nc,
.tf-tree .without-children li {
    margin-top: -5px;
}

.cs-tree .without-children {
    /* margin-bottom: -75px; */
    margin-bottom: 0;
    position: relative;
}

.cs-tree .without-children + ul:not(.without-children),
.cs-tree .without-children + ul:only(.without-children) > li {
    margin-top: 0;
}

.cs-tree .without-children + ul {
    margin-top: -32px;
}

.cs-tree .without-children::after {
    content: '';
    position: absolute;
    left: calc(50% - 0.03125em);
    width: 1px;
    height: 140px;
    background-color: #D6D6D6;
}

.cs-btn-more-details {
    border-radius: 50%;
    width: 32px;
    height: 32px;
    background-color: var(--blue-color);
    color: white;
    position: relative;
    z-index: 2;
    text-align: center;
    line-height: 24px;
    font-size: 24px;
    margin-top: 1em;
    padding-top: 8px;
    align-items: center;
    justify-content: center;
}

.tree-modal {
    background-color: rgba(255, 255, 255, 0.86);
}

.tree-modal h2 {
    font-size: 16px;
    color: var(--black-color);
    font-family: boldH;
}

.tree-modal .modal-body {
    padding: 1rem 2rem;
}

.tree-modal .modal-content {
    border: 0;
}

/* ./baladia_structure  */

/* budget-page */
.history-slider {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* border-right: 1px solid #D6D6D6; */
    padding-inline-start: 26px;
    /* height: calc(100vh - 500px); */
}

.history-slider a {
    color: var(--black-color);
    display: flex;
}

.history-slider .active {
    position: relative;
    transition: 0.2s ease-in;
}

.history-slider .active::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -70px;
    transform: translate(0%, -50%);
    width: 100px;
    height: 3px;
    background-color: var(--blue-color);
}

.history-slider .active::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    border: 8px solid var(--red-color);
    border-radius: 50%;
    background-color: white;
    z-index: 1;
    outline: white;
    outline-style: solid;
    outline-color: white;
    outline-width: 2px;
    right: -38px;
    transition: 0.2s ease-in;

}

.history-slider > div:not(:last-child) {
    margin-bottom: 80px;
}

.history-slider .active a {
    transform: translate(-40px, 3px);
    color: var(--blue-color);
    font-family: boldH;
    transition: 0.2s ease-in;

}

.history-slider.horizontal {
    flex-direction: row;
    justify-content: space-between;
    border: 0;
    border-bottom: 1px solid #D6D6D6;
}

.history-slider.horizontal .active::before {
    right: 50%;
    top: 23px;
    transform: translate(50%, 0%);
}

.history-slider.horizontal .active::after {
    top: 100%;
    right: 50%;
    transform: translate(50%, 0%) rotate(90deg);
}

.history-slider.horizontal .active a {
    transform: translate(3px, -40px);

}

.history-slider.horizontal > div {
    margin-bottom: 10px;
}

.history-swiper {
    overflow: unset;
    overflow-y: clip;
    border-right: 1px solid #D6D6D6;

}

.plan-card .actions {
    margin-inline-start: 60px;

}

.plan-card .actions .cs-btn {
    min-width: 86px;
    border-radius: 7px;
    height: 32px;
    font-size: 14px;
    line-height: 20px;
}

.budget-img {
    border-radius: 7px;
}

/* Prosthetics_center page */

.sub-header {
    margin-top: 35px;
    background-color: white;
    height: 100px;
}

.sub-header .sub-logo {
    display: flex;
}

.sub-header .sub-logo img {
    width: 106px;
    height: 64px;
}

.sub-header .sub-logo h3 {
    margin-right: 10px;
    font-family: "boldH";
    font-size: 14px;
    color: #000000;
    /*width: 100px;*/
}

.sub-header .sub-menu {
    padding-left: 20px;
}

.sub-header .sub-menu ul {
    display: flex;
    justify-content: start;
    margin-top: 55px;
    padding-right: 100px;

}

.sub-header .sub-menu ul li {
    margin-left: 60px;
    padding-bottom: 20px;
}

.sub-header .sub-menu ul > .active {
    border-bottom: solid 1px var(--red-color);
}

.sub-header .sub-menu ul li .active {
    font-family: "boldH";
    color: var(--red-color);
}

.sub-header .sub-menu ul li a {
    color: #392C23;
}

.y-prosthetics-swiper {
    margin-top: -70px;
}

.y-prosthetics-swiper .swiper-button-prev::after,
.y-prosthetics-swiper .swiper-button-next::after {
    font-size: 20px;
    color: white;
    background-color: #000000;
    width: 75px;
    height: 120px;
    text-align: center;
    display: flex;
    align-items: center;
    text-align: center;
    padding-right: 8px;
}

.y-prosthetics-swiper img {
    width: 100%;
    max-height: 600px !important;
}


.y-item-swiper {
    width: 100%;
    background-color: #F2F2F2;
    max-height: 317px;
}

.y-item-swiper h3 {
    font-family: "boldH";
    font-size: 16px;
    /*display: flex;*/
    margin: 0 auto;
    text-align: center;
    margin-right: 70px;
    width: 70%;
    margin-top: 50px;
}

.y-item-swiper p {
    width: 70%;
    margin: 0 auto;
    margin-top: 50px;
    text-align: start;
}

.y-item-swiper .swiper-button-prev::after,
.y-item-swiper .swiper-button-next::after {
    font-size: 20px;
    color: var(--red-color);
    background-color: #D6D6D6;
    width: 40px;
    height: 100px;
    text-align: center;
    display: flex;
    align-items: center;
    text-align: center;
    padding-right: 8px;
    position: relative;
}


.y-prosthetics-page .y-item {
    margin-top: 20px;
    background-color: white;
    border: solid 1px #D6D6D6;
    border-radius: 10px;
    /*margin-bottom: 100px;*/
    /*margin-left: 40px;*/
    height: max-content;

}

.y-prosthetics-page .y-item .y-item-head {
    display: flex;
    justify-content: right;
    padding-top: 20px;
    padding-right: 20px;
    width: 100%;

}

.y-prosthetics-page .y-item .y-item-head h3 {
    margin-right: 20px;
    font-size: 16px;
    font-family: "boldH";
    margin-top: 20px;
}

.y-prosthetics-page .y-item p {
    padding: 20px;
}

.y-prosthetics-page .y-item .point {
    padding-top: 10px;
    padding-right: 20px;
    padding-left: 20px;
}

.y-prosthetics-page .y-item .point p{
    padding: 0;

}

.y-prosthetics-page .y-item .y-center-services {
    display: flex;
    justify-content: right;
    align-items: center;
}

.y-prosthetics-page .y-item .y-center-services span {
    margin-right: 30px;
    margin-bottom: 15px;
}

/*.y-prosthetics-page .y-item .y-center-services p {*/
/*    padding: 5px;*/
/*}*/


.mobile-sub-side-bar {
    display: none;
}

.mobile-sub-header {
    display: none;
}

.mobile-sub-header .sub-logo {
    padding-top: 15px;
    margin-right: 40px;
}

.mobile-sub-header .sub-btn-nav {
    height: 40px;
    width: 40px;
    margin-top: 30px;
    margin-left: 30px;
    border: none;
    background-color: white;
}

.mobile-sub-side-bar .body-mobile .sub-menu ul li {
    margin-bottom: 15px;
}

.mobile-sub-side-bar .body-mobile .sub-menu ul li .active {
    color: var(--red-color);
    font-family: "boldH";
}

.mobile-sub-side-bar .body-mobile .sub-menu ul li a {
    color: #2A1935;
}

/* facilities_page */
.facilities_page {
    margin-top: -75px;
    margin-bottom: -100px;

}

.facilities_page .sidebar-map {
    height: calc(100vh - 160px);
}

.facilities_page .sidebar-map {
    padding-top: 67px;
    padding-inline: 54px;
}

.facilities_page .sidebar-map h3 {
    font-size: 16px;
    color: var(--black-color);
    font-family: bookH;
}

.facilities_page .map-list {
    margin-right: -54px;
    margin-left: -54px;
}

.facilities_page .map-list .list {
    padding-right: 54px;
    margin-bottom: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.facilities_page .map-list {
    margin-top: 50px;
}

.facilities_page .map-content {
    width: calc(100% - 130px);
    min-width: 500px;
}

.select-map {
    position: absolute;
    bottom: 50px;
    right: 60px;
}

.select-map .dropdown .dropdown-menu {
    width: 100%;
}

.select-map .dropdown .btn {
    background-color: var(--blue-color);
    color: white;
    padding: 16px 32px 8px;
    font-size: 16px;
    font-family: boldH;
}

/* ./facilities_page */
/* location page */
.y-location-page .y-location p {
    width: 75%;
    font-family: "bookH";
}

.y-location-page .location-image {
    margin-top: 30px;
    margin-bottom: 50px;
    border: solid 1px #D6D6D6;
    padding: 15px;
}

.y-location-page .location-image img {
    width: 100%;
}

.rp-0 {
    margin-top: -75px;
    margin-bottom: -100px;
}

/* distance-page */
.distance-page .distance-slider {
    position: sticky;
    top: -75px;
}

.distance-slider {
    height: calc(100vh - 158px) !important;
}

.distance-slider .swiper-button-next::after,
.distance-slider .swiper-button-prev::after {
    font-size: 16px;
    color: white;
}

.distance-slider .swiper-button-prev,
.distance-slider .swiper-button-next {
    background-color: rgb(0 0 0 / 69%);
    height: 150px;
    width: 50px;
    transform: translateY(-50%);
    left: 0;
}

.distance-slider figure img {
    height: 100%;
    width: 100%;
}

.play {
    position: absolute;
    background: #3EC4B5;
    width: 90px;
    height: 90px;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    /* border: 7px solid rgb(59 186 172 / 49%); */
}

.play::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    width: 107px;
    height: 107px;
    background-color: rgb(59 186 172 / 49%);
    border-radius: 50%;
    z-index: -1;
}

.distance-page .details {
    padding: 69px 70px;
}

.distance-page .details h2 {
    font-size: 16px;
    font-family: boldH;
    margin-bottom: 0;
    color: var(--black-color);
}

.distance-card {
    margin-bottom: 32px;
}

/* ./distance-page */

/* service-details */

.service-details h2 {
    font-size: 16px;
    color: var(--black-color);
    font-family: boldH;
}

.service-details p {
    color: var(--black-color);
    line-height: 1.8;
}

.service-details .cs-btn {
    height: 72px;
    line-height: 62px;
    font-family: boldH;
    width: 279px;
}

.statistic-card {
    padding: 24px;
    border: 1px dashed #D6D6D6;
    border-radius: 12px;
    background-color: #fff;
    margin-bottom: 24px;
}

.statistic-card .count {
    border: 0.5px solid #D6D6D6;
    color: var(--blue-color);
    font-family: boldH;
    font-size: 24px;
    width: 72px;
    height: 56px;
    border-radius: 100px;
    text-align: center;
    line-height: 56px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 13px;
    background-color: #FAFAFA;
}

.statistic-card h2 {
    font-size: 16px;
    color: var(--red-color);
    font-family: bookH;
}

.statistic-card p {
    font-size: 14px;
    color: var(--black-color);
    font-family: bookH;
}

/* ./service-details */

/* project-page */
.cs-slider-btn {
    left: 60px;
}

.cs-slider-btn:not(.rtl) .swiper-button-next {
    left: 10px;
    right: auto;
}

.cs-slider-btn:not(.rtl) .swiper-button-prev {
    right: 10px;
    left: auto;
}

.cs-slider-btn .swiper-button-next,
.cs-slider-btn .swiper-button-prev {
    border-radius: 50%;
    border: 2px solid #A5A5A5;
    width: 54px;
    height: 54px;
    transition: all 0.2s ease-in-out;
    color: #A5A5A5;
}

.cs-slider-btn .swiper-button-next:hover,
.cs-slider-btn .swiper-button-prev:hover {
    border-color: var(--blue-color);
    transition: all 0.2s ease-in-out;
}

.cs-slider-btn .swiper-button-next:hover::after,
.cs-slider-btn .swiper-button-prev:hover::after {
    color: var(--blue-color);
    transition: all 0.2s ease-in-out;
}

.cs-slider-btn.rtl .swiper-button-next::after {
    content: 'prev';
    font-weight: bold;
    font-size: 16px;
    transition: all 0.2s ease-in-out;
}

.cs-slider-btn.rtl .swiper-button-prev::after {
    content: 'next';
    font-size: 16px;
    transition: all 0.2s ease-in-out;
}

.project-card figure {
    border-radius: 12px;
    width: 100%;
    height: 364px;
    transition: all 0.2s ease-in-out;
}

.project-card figure img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.project-card .details {
    position: absolute;
    bottom: 20px;
    right: 24px;
    z-index: 2;
}

.project-card .details .category,
.project-card .details .price {
    color: white;
    margin-bottom: 10px;
    border-radius: 6px;
}

.project-card .details .category {

    border: 1px solid white;
    color: white;
    font-size: 14px;
    font-family: bookH;
    padding: 4px 12px 1px;
}

.project-card .details .price {
    background-color: var(--red-color);
    padding: 4px 8px 1px;
    font-size: 14px;
    font-family: bookH;
}

.project-card .details h3 {
    color: white;
    font-size: 16px;
    font-family: boldH;
    margin-bottom: 10px;
}

.project-card .details h4 {
    color: white;
    font-size: 12px;
    font-family: bookH;
    margin-bottom: 5px;

}

.project-card .details h6 {
    color: white;
    font-size: 12px;
    font-family: bookH;
}

.project-card:hover figure::before {
    opacity: 0;
    transition: all 0.2s ease-in-out;
}

/* ./project-page */


/* development-project-page */
.development-project-card {
    border-radius: 12px;
    background-color: white;
    border: 1px solid #D6D6D6;
    text-align: center;
    padding: 32px 30px;
    transition: 0.2s ease-in;
}

.development-project-card figure {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.8px solid #D6D6D6;
    background-color: #FAFAFA;
    border-radius: 10px;
    margin: 0 auto;
    margin-bottom: 24px;
}

.development-project-card figure img {
    width: 120px;
    height: 120px;
}

.development-project-card h2 {
    font-size: 14px;
    font-family: boldH;
    color: var(--black-color);
    transition: 0.4s ease-in;
    min-height: 50px;
}

.development-project-card h6 {
    font-size: 12px;
    color: var(--black-color);
    font-family: bookH;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.development-project-card h5 {
    font-size: 14px;
    font-family: bookH;
    color: var(--red-color);
}

.development-project-card h4 {
    font-size: 14px;
    font-family: bookH;
    color: var(--black-color);
    margin-top: 8px;
    position: relative;
}

.development-project-card h4::before {
    content: '';
    position: absolute;
    right: 0px;
    top: 46%;
    width: 30px;
    height: 1px;
    background-color: #D6D6D6;
}

.development-project-card h4::after {
    content: '';
    position: absolute;
    left: 0px;
    top: 46%;
    width: 30px;
    height: 1px;
    background-color: #D6D6D6;
}

.development-project-card h3 {
    font-size: 12px;
    color: var(--red-color);
    font-family: boldH;
    margin-top: 16px;
}

.development-project-card .show-more {
    margin-top: 32px;
    justify-content: center;
}

.development-project-card .cs-progress {
    margin-top: 16px;
}

.cs-progress,
.cs-progress .progress-bar {
    border-radius: 50px;
}

.cs-progress {
    background-color: #F2F2F2;
    border: 0.5px solid #E3E3E3;
    height: 17px;
}

.cs-progress .progress-bar {
    background-color: var(--blue-color);
}

.development-project-card:hover {
    border-color: transparent;
    box-shadow: 0px 3px 15px rgba(94, 98, 78, 10%);
}

.development-project-card:hover h2 {
    color: var(--blue-color);
}

.development-project-card:hover .show-more {
    color: var(--blue-color);
}

.development-project-card:hover .show-more-arrow {
    transform: translateX(-5px);
    transition: 0.2s ease-in;
}

/* ./development-project-page */


/* albums-page */
.albums-page .cs-tabs .nav {
    width: 90%;
}

.album-pic-card {
    border-radius: 12px;
    overflow: hidden;
    transition: 0.2s ease-in;
}

.album-pic-card figure {
    width: 100%;
    height: 100%;
    margin-bottom: 0;
}

.album-pic-card figure img {
    width: 100%;
    height: 100%;
}

.album-pic-card .album-pic-body {
    padding: 25px 30px;
    background-color: #F1F1F1;
}

.album-pic-card .album-pic-body h4 {
    font-size: 18px;
    color: var(--black-color);
    font-family: bookH;
    flex: 0 0 60%;
    min-height: calc(1.4em * 2);
}

.swiper-button-next.shape-1::after,
.swiper-button-prev.shape-1::after {
    font-size: 16px;
    color: white;
}

.swiper-button-prev.shape-1,
.swiper-button-next.shape-1 {
    background-color: rgb(0 0 0 / 69%);
    height: 110px;
    width: 50px;
    transform: translateY(-50%);
    left: 0;

}

.swiper-button-prev.shape-1 {
    right: 0;
}

.swiper-button-prev.shape-1:hover,
.swiper-button-next.shape-1:hover {
    background-color: #3EC4B5;
}

.swiper-button-prev.shape-1:hover::after,
.swiper-button-next.shape-1:hover::after {
    color: white;
}

.album-pic-card .time {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 3;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-family: 'bookH';
}

.album-fancybox {
    border-radius: 50%;
    background-color: white;
    width: 117px;
    height: 117px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: 0.2s ease-in;
    opacity: 0;
    cursor: pointer;


}

.album-pic-card:hover .album-fancybox {
    opacity: 1;
    transition: 0.2s ease-in;
}

.album-pic-card .overlay-img-2::before {
    z-index: 2;
}

.album-pic-card .play {
    z-index: 3;
}

.album-pic-card .play {
    width: 64px;
    height: 64px;
}

.album-pic-card .play::after {
    width: 77px;
    height: 77px;
}

/* ./albums-page */

/* reports-page */
.report-page p {
    font-size: 16px;
    font-family: bookH;
    color: #707070;
}

.report-card {
    padding: 60px;
    display: flex;
    border-radius: 12px;
    gap: 10px;
    position: relative;
    height: 300px;
    max-width: 450px;
    margin-bottom: 90px;
    justify-content: space-around;
    margin: 0px auto 40px auto;
}

.report-card figure {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 7px;
    height: 286px;
    width: auto;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 10%);
}

.report-card figure .report_image {
    height: 230px;
    max-width: 330px;
    max-height: 230px;
}


.report-card h4 {
    color: white;
    font-family: boldH;
    font-size: 14px;
    text-align: center;
    white-space: pre-line;
    margin: 0 auto;
    line-height: 30px;
    margin-bottom: 27px;
}

.report-card a {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 3px;
    border: 1px solid white;
    width: 79px;
    height: 35px;
    padding-top: 5px;
    margin: 0 auto;
    border-color: transparent;
    transition: all 0.2s ease-in;

}

.report-card a:hover {
    border-color: white;
    transition: all 0.2s ease-in;
}

.reports-slider {
    min-height: 400px;
}

.reports-slider .swiper-slide {
    width: max-content;
}

/* ./reports-page */

.overlay-content {
    background-color: var(--blue-color);
    position: fixed;
    inset: 0;
    right: -100%;
    z-index: 2;
    width: 100%;
    height: 100vh;
    transition: all .5s ease-in-out;

}

.right {
    right: 0%;
}



/***

====================================================================
	History Section
====================================================================

***/

.history-section {
    position: relative;
    padding: 100px 0px 120px;
    /*background: #f1f1f1;*/
}

.history-section .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    background-repeat: no-repeat;
    background-position: right bottom;
}

.history-section .image-layer:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #f1f1f1;
    opacity: 0.80;
}

.history-section .pattern-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.history-section .sec-title {
    margin-bottom: 50px;
}

.history-section .history-container {
    position: relative;
    display: block;
    padding: 42px 0px;
    z-index: 1;
}

.history-section .center-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.10);
}

.history-section .center-line .dot {
    position: absolute;
    left: -8px;
    top: 0;
    width: 15px;
    height: 15px;
    background: #00aa55;
    border-radius: 50%;
}

.history-section .center-line .dot:before {
    content: '';
    position: absolute;
    left: -2px;
    top: -2px;
    right: -2px;
    bottom: -2px;
    background: #00aa55;
    opacity: 0.30;
    border-radius: 50%;
}


.history-section .center-line .upper-dot {
    top: 0;
}

.history-section .center-line .lower-dot {
    top: auto;
    bottom: 0;
}

.history-block {
    position: relative;
    margin-bottom: 40px;
}

.history-block .inner {
    position: relative;
    display: block;
}

.history-block .image-col {
    position: relative;
    margin-bottom: 30px;
}

.history-block .text-col {
    position: relative;
    margin-bottom: 30px;
}

.history-block.alternate .image-col {
    order: 12;
}

.history-block.alternate .text-col {
    order: 0;
}

.history-block .image-box {
    position: relative;
    display: block;
    padding-right: 200px;
}

.history-block.alternate .image-box {
    padding-right: 0px;
    padding-left: 200px;
}

.history-block .image,
.history-block .image img {
    display: block;
    width: 100%;
}

.history-block .year-box {
    position: absolute;
    right: -75px;
    top: 50%;
    margin-top: -60px;
    width: 120px;
    height: 120px;
}

.history-block.alternate .year-box {
    left: -75px;
    right: auto;
}

.history-block .year-box .year-inner {
    position: relative;
    display: block;
    width: 120px;
    height: 120px;
    text-align: center;
    background: #ffffff;
    color: #aaaaaa;
    border-radius: 50% 0% 50% 50%;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.history-block:hover .year-box .year-inner {
    background: #00aa55;
    color: #ffffff;
}

.history-block.alternate .year-box .year-inner {
    border-radius: 50% 50% 50% 0%;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.history-block .year-box span {
    position: relative;
    display: block;
    padding: 45px 10px 30px;
    font-size: 20px;
    font-family: 'Manjari', sans-serif;
    font-weight: 700;
    line-height: 40px;
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.history-block .year-box:before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    width: 105px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.history-block.alternate .year-box:before {
    right: auto;
    left: 100%;
}

.history-block .year-box:after {
    content: '';
    position: absolute;
    right: 224px;
    top: 50%;
    margin-top: -8px;
    width: 15px;
    height: 15px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 50%;
}

.history-block.alternate .year-box:after {
    right: auto;
    left: 224px;
}

.history-block:hover .year-box:before,
.history-block:hover .year-box:after {
    border-color: #00aa55;
}

.history-block .text-col .inner {
    padding-left: 100px;
    padding-top: 70px;
}

.history-block.alternate .text-col .inner {
    padding-left: 0px;
    padding-right: 100px;
}

.history-block .text-col h6 {
    color: #00aa55;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 7px;
    text-align: right;
    font-size: 14px;
}

.history-block .text-col h3 {
    color: #222222;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.history-block .text-col h3 a {
    color: #222222;
    font-size: 25px;
}

.wrapper-image{
    margin-bottom: 50px;
    border: solid 1px #D6D6D6;
    padding: 15px;
}

.wrapper-image img {
    width: 100%;
}
