* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.loader-wrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--color-e6e6e6);
    display:flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.loader {
    width: 48px;
    height: 48px;
    border: 5px dotted var(--color-01175e);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotation 2s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
:root {
    --color-white: #fff;
    --color-dark: #222222;
    --color-fa6d4b: #fa6d4b;
    --color-EBE8E9: #ebe8e9;
    --color-f9fbfe: #f9fbfe;
    --color-F0F0F0: #f0f0f0;
    --color-ED1C24: #ed1c24;
    --color-25282A: #25282a;
    --color-e6e6e6: #e6e6e6;
    --color-989898: #989898;
    --color-2b2b2b: #2b2b2b;
    --color-01175e: #01175e;
    --color-0a2472: #0a2472;
    --color-cf2e2e: #cf2e2e;
    --color-012549: #012549;
    --color-878787: #878787;
}
body {
    font-family: "Poppins";
}
a {
    text-decoration: none;
}
ul {
    list-style: none;
    padding-left: 0;
}
.button {
    padding: 9px 25px;
    background-color: var(--color-0a2472);
    color: var(--color-white);
    cursor: pointer;
    transition: 0.5s;
    white-space: nowrap;
}
.button:hover {
    background-color: var(--color-ED1C24) !important;
}
.section {
    padding: 80px 0;
}
.section--head {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 8px 15px;
    background-color: var(--color-F0F0F0);
    border-left: 3px solid var(--color-ED1C24);
    margin-bottom: 20px;
}
.section-head--header {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-01175e);
}
.container {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
}
.row {
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}
.d-flex {
    display: flex;
}
.flex-column {
    flex-direction: column;
}
.justify-space-beetwen {
    justify-content: space-between;
}
.justify-center {
    justify-content: center;
}
.align-center {
    align-items: center;
}

.w-100 {
    width: 100%;
}
.w-50{
    width: 50%;
}
.h-100 {
    height: 100%;
}
/* PADDINGS START */
/* MARGINS START */
.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-5 {
    padding-bottom: 50px;
}

.pb-6 {
    padding-bottom: 60px;
}

.pb-7 {
    padding-bottom: 70px;
}

.pb-8 {
    padding-bottom: 80px;
}

.pb-9 {
    padding-bottom: 90px;
}

.pb-10 {
    padding-bottom: 100px;
}

.pt-1 {
    padding-top: 10px;
}

.pt-2 {
    padding-top: 20px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-5 {
    padding-top: 50px;
}

.pt-6 {
    padding-top: 60px;
}

.pt-7 {
    padding-top: 70px;
}

.pt-8 {
    padding-top: 80px;
}

.pt-9 {
    padding-top: 90px;
}

.pt-10 {
    padding-top: 100px;
}

.pl-1 {
    padding-left: 10px;
}

.pl-2 {
    padding-left: 20px;
}

.pl-3 {
    padding-left: 30px;
}

.pl-4 {
    padding-left: 40px;
}

.pl-5 {
    padding-left: 50px;
}

.pl-6 {
    padding-left: 60px;
}

.pl-7 {
    padding-left: 70px;
}

.pl-8 {
    padding-left: 80px;
}

.pl-9 {
    padding-left: 90px;
}

.pl-10 {
    padding-left: 100px;
}

.pr-1 {
    padding-right: 10px;
}

.pr-2 {
    padding-right: 20px;
}

.pr-3 {
    padding-right: 30px;
}

.pr-4 {
    padding-right: 40px;
}

.pr-5 {
    padding-right: 50px;
}

.pr-6 {
    padding-right: 60px;
}

.pr-7 {
    padding-right: 70px;
}

.pr-8 {
    padding-right: 80px;
}

.pr-9 {
    padding-right: 90px;
}

.pr-10 {
    padding-right: 100px;
}
/* PADDINGS END */
.mb-0 {
    margin-bottom: 0;
}
.mb-1 {
    margin-bottom: 10px;
}

.mb-2 {
    margin-bottom: 20px;
}

.mb-3 {
    margin-bottom: 30px;
}

.mb-4 {
    margin-bottom: 40px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-1 {
    margin-top: 10px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-5 {
    margin-top: 50px;
}

.ml-1 {
    margin-left: 10px;
}

.ml-2 {
    margin-left: 20px;
}

.ml-3 {
    margin-left: 30px;
}

.ml-4 {
    margin-left: 40px;
}

.ml-5 {
    margin-left: 50px;
}

.mr-1 {
    margin-right: 10px;
}

.mr-2 {
    margin-right: 20px;
}

.mr-3 {
    margin-right: 30px;
}

.mr-4 {
    margin-right: 40px;
}

.mr-5 {
    margin-right: 50px;
}

/* MARGINS END */
/* NAVBAR START */

.header--top {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 30px;
    background-color: var(--color-dark);
    color: var(--color-white);
}
.header-top-description--text a {
    color: var(--color-ED1C24);
}
.header-top-description--text {
    animation: blinker 1.5s linear infinite;
    font-size: 14px;
}
@keyframes blinker {
    50% {
        opacity: 0;
    }
}
.header-top-description--text a:hover,
.e-mail:hover {
    color: var(--color-fa6d4b);
}
.res-email {
    display: none;
}
.e-mail,
.res-email {
    font-size: 14px;
    color: var(--color-ED1C24);
}
.social--icons {
    gap: 10px;
}
.social--icons a svg {
    width: 18px;
    height: 18px;
    object-fit: cover;
    fill: var(--color-F0F0F0);
}
.social--icons a svg:hover {
    fill: var(--color-989898);
}

.menu-bottom {
    display: none;
}
.header-center {
    background-color: var(--color-white);
}
.header-center-right {
    justify-content: flex-end;
    gap: 10px;
}
.user-profile {
    position: relative;
}
.login-link-btn {
    /*display: none !important;*/
}
.profile-img-and-name {
    padding: 10px 0;
    gap: 10px;
    cursor: pointer;
}
.profile-img-and-name img {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 3px solid var(--color-0a2472);
    object-fit: cover;
    object-position: center;
}
.profile-img-and-name span {
    color: var(--color-0a2472);
    font-size: 14px;
    white-space: nowrap;
}
.user-profile-dropdown {
    display: none;
    width: 100%;
    position: absolute;
    z-index: 101;
    background-color: var(--color-white);
    box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
    border-radius: 5px;
}
.user-profile-li {
    padding: 10px;
}
.user-profile-li:not(:last-child) {
    border-bottom: 1px solid var(--color-F0F0F0);
}
.user-profile-li a {
    gap: 10px;
    font-size: 14px;
    color: var(--color-989898);
    white-space: normal;
}
.user-profile-li svg {
    width: 18px;
    height: 18px;
    fill: var(--color-989898);
}
.user-profile-li a:hover {
    color: var(--color-0a2472);
}
.user-profile-li a:hover svg {
    fill: var(--color-0a2472);
}
.user-profile:hover .user-profile-dropdown {
    display: block;
}
.site-search {
    position: relative;
    width: 50%;
}
.site-search-input {
    border: none;
    background-color: var(--color-F0F0F0);
    width: 100%;
    height: 35px;
    outline: none;
    color: var(--color-0a2472);
    padding: 0 10px;
}
.site-search-btn {
    width: 30px;
    height: 35px;
    border-radius: 100%;
    border: none;
    background: none;
    position: absolute;
    right: 10px;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.site-search-btn svg {
    width: 15px;
    height: 15px;
    fill: var(--color-989898);
}
.login-link svg {
    width: 20px;
    height: 20px;
    fill: var(--color-0a2472);
    cursor: pointer;
}

.main--navbar {
    border-top: 1px solid var(--color-F0F0F0);
    background-color: var(--color-white);
    box-shadow: 0px 6px 8px 0px rgb(0 0 0 / 8%);
    position: sticky;
    top: 30px;
    z-index: 100;
    display: flex;
    align-items: center;
}
.navbar--logo img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}
.navbar--links {
    gap: 20px;
    height: 100%;
}

.navbar--link {
    position: relative;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    height: 50px;
    display: flex;
    align-items: center;
}
.navbar--link a {
    color: var(--color-dark);
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s;
}
.navbar--link a:hover {
    color: var(--color-ED1C24);
}
.navbar-drop--ul {
    position: absolute;
    top: 50px;
    background-color: var(--color-white);
    min-width: 190px;
    display: none;
    box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
}
.navbar--link:hover .navbar-drop--ul {
    border-top: 2px solid var(--color-ED1C24);
    display: block;
}
.navbar-drop--ul .navbar--link {
    padding: 10px 15px;
    border-bottom: 1px solid var(--color-F0F0F0);
}
.max-height {
    gap: 20px;
}
.close--menu {
    display: none;
}
.rotate-btn {
    transform: rotate(180deg);
}
.navbar-drop--ul .navbar--link a {
    transition: 0.5s;
    display: block;
}
.navbar-drop--ul .navbar--link:hover a {
    margin-left: 10px;
}
.open-menu {
    display: none;
}
.open-menu span {
    display: block;
    width: 30px;
    height: 4px;
    margin-bottom: 3px;
    background-color: var(--color-ED1C24);
}
.nav-link-drop--btn {
    display: none;
}

/* NAVBAR END */
/* HOME PAGE START */
/* SLIDER SECTION START */
.home-slider--section {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.home-slider--container {
    position: relative;
    padding-left: 0;
    padding-right: 0;
}
.home-slider--item {
    position: relative;
    width: 100%;
}
.home-slider-item--img {
    width: 100%;
    height: 500px;
}
.home-slider-item--img img {
    width: 100%;
    height: 100%;
}
.home-slider-item--description {
    position: absolute;
    bottom: 40px;
    width: 550px;
    left: 50px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.5);
}
.home-slider-item-description--header {
    color: var(--color-white);
    font-size: 30px;
    font-weight: 500;
}
.home-slider--buttons  {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 35px;
    height: 50px;
    background-color: var(--color-dark);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
}
.home-slider--next {
    right: 0;
}
.home-slider--prev{
    left: 0;
    z-index: 1;
}
.news--date {
    color: var(--color-white);
    font-size: 14px;
    margin-bottom: 15px;
}
.news--date p {
    display: flex;
    align-items: center;
    gap: 10px;
}
/* SLIDER SECTION END */
/* NEWS SECTION START */
.card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
    gap: 20px;
    transform: translateY(0);
    transition: 0.5s;
    border: 1px solid var(--color-e6e6e6);
}
.card:hover {
    box-shadow: 2px 3.5px 24px 0 rgb(18 16 11 / 31%);
}
.card--img {
    width: 100%;
    height: 200px;
}
.card--img img {
    width: 100%;
    height: 100%;
}
.card--info {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 30px;
}
.card-info--description {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.card-info--description * {
    color: var(--color-dark);
}
.card-info-description--head-text {
    font-size: 18px;
    font-weight: 500;
    height: 55px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: var(--color-01175e);
}
.card-info-description--time {
    font-size: 14px;
}
.card-info--button {
    font-size: 16px;
    color: var(--color-ED1C24);
    transition: 0.5s;
}
.newsFeed-section--container {
    display: flex;
    flex-direction: column;
    background-color: var(--color-F0F0F0);
}
.newsFeed--description {
    background-color: var(--color-F0F0F0);
    max-height: 800px;
    overflow-y: auto;
    border-radius: 6px;
}
.newsFeed--description::-webkit-scrollbar {
    width: 4px;
}
.card--link {
    width: 100%;
    display: block;
}
.border-dotted {
    border-left: none;
    border-bottom: 3px dotted var(--color-0a2472);
}
.annFeed--description {
    max-height: 890px;
}
.newsFeed-description--info {
    display: flex;
    flex-direction: column;
}
.newsFeed-decription-info--item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
}
.newsFeed-decription-info--item:not(:last-child) {
    border-bottom: 1px solid var(--color-white);
}
.newsFeed-decription-info-item-img {
    display: flex;
    justify-content: center;
    align-items: center;
}
.newsFeed-decription-info-item-img img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
}
.newsFeed-decription-info-item--description {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.newsFeed-decription-info-item-description--text {
    color: var(--color-dark);
    font-size: 16px;
    font-weight: 600;
    height: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: 0.5s;
}
.newsFeed-decription-info-item-description--text:hover {
    color: var(--color-ED1C24);
}
.newsFeed-decription-info-item-description--date {
    font-size: 13px;
    color: var(--color-dark);
}
*::-webkit-scrollbar {
    /* display: none; */
    width: 6px;
}
*::-webkit-scrollbar-thumb {
    /* display: none; */
    border-radius: 8px;
    background-color: var(--color-01175e);
    height: 40px !important;
}
.section--head a {
    font-size: 14px;
    color: var(--color-ED1C24);
}
.section--head a:hover {
    color: var(--color-fa6d4b);
}
/* NEWS SECTION END */
/* ANNOUNCEMENT SECTION START */
.section--bgF0F0F0 {
    background-color: var(--color-F0F0F0);
}
.card-info-description--user-and-pay {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.card-info-description--user-and-pay * {
    font-size: 14px;
}
.card-info-description--pay {
    display: flex;
    gap: 5px;
}
.card-info-description--pay * {
    color: var(--color-ED1C24);
}
.card-info-description--user {
    display: flex;
    align-items: center;
    gap: 10px;
}
.card-info-description--user img {
    width: 35px;
    height: 35px;
    border-radius: 8px;
}
/* ANNOUNCEMENT SECTION END */
/* COUNTER SECTION START  */
.home-counter--section {
    background-color: var(--color-f9fbfe);
}
.home-counter-section-info--item {
    padding: 30px;
    background-color: var(--color-white);
    box-shadow: 0 0 20px 3px rgb(0 0 0 / 5%);
}
.home-counter-section-info--item * {
    color: var(--color-dark);
    text-align: center;
}
.home-counter-section-info-item--count {
    font-size: 36px;
    font-weight: 500;
}
.home-counter-section-info-item--text {
    font-size: 18px;
    color: var(--color-fa6d4b);
}
/* COUNTER SECTION END */

.mayor--item {
    background-color: var(--color-dark);
}
.mayor-item--img {
    width: 100%;
    height: 100%;
}
.mayor-item--img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.mayor-item--description {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}
.mayor-item-description--text {
    color: var(--color-white);
    font-size: 26px;
}
.mayor-item--img {
    padding-top: 5px;
    padding-left: 5px;
}
.donation-section-description--item .card {
    display: flex;
    align-items: center;
    justify-content: center;
}
.videos-description--item * {
    width: 100%;
    height: 370px;
    object-fit: cover;
}
.main--footer {
    background-color: var(--color-dark);
}
.fonunding-team--head {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-white);
}
.founding--team {
    gap: 20px;
    padding: 20px 0;
}
.founding-team--item {
    font-size: 18px;
    color: var(--color-F0F0F0);
    padding: 0 20px;
}
.founding-team--item:not(:last-child) {
    border-right: 2px solid var(--color-F0F0F0);
}
.founding-team--item:hover {
    color: var(--color-ED1C24);
}
.main-footer-center--row {
    padding: 20px 0;
    border-bottom: 1px solid var(--color-989898);
}
.footer--ul {
    gap: 25px;
    /* justify-content: flex-end; */
}
.footer--link * {
    font-size: 18px;
    color: var(--color-F0F0F0);
}
.footer--link *:hover {
    color: var(--color-ED1C24);
}
.main-footer-bottop--row {
    padding: 20px 0;
}
.main-footer-bottop--description {
    text-align: center;
    color: var(--color-F0F0F0);
    font-size: 16px;
}
/* add announcement page */
.add-announcement-section--header, .services-section--header {
    height: 200px;
    display: flex;
    justify-content: center;
    padding-top: 50px;
    background-color: var(--color-012549);
}
.add-announcement-section-header--description,.services-section-header--description {
    font-size: 36px;
    font-weight: 500;
    color: var(--color-white);
}
.add-announcement-section-description--container {
    padding: 70px 0;
    margin-top: -50px;
    background-color: var(--color-white);
    box-shadow: 0 30px 50px 0 rgb(1 1 1 / 18%);
    margin-bottom: 70px;
}
.add-announcement-form {
    width: 80%;
    margin: auto;
}
.announcement-form-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
    position: relative;
}
.announcement-form-item-select {
    position: relative;
}
.announcement-form-item-label {
    font-size: 14px;
    color: #01175e;
}
.announcement-form-item-input,
.announcement-form-item-select,
.announcement-form-item-textarea {
    height: 40px;
    padding: 0 10px;
    border: none;
    outline: none;
    background-color: var(--color-F0F0F0);
    font-size: 14px;
    color: var(--color-0a2472);
}
.announcement-form-item-select,
.announcement-form-item-select option {
    cursor: pointer;
}
.announcement-form-item-textarea {
    height: 200px;
    max-width: 100%;
    padding: 10px;
    max-height: 200px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#map-canvas {
    width: 100%;
    height: 400px;
}
.google-maps {
    position: relative;
}
.add-announcementImgs {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
}
#uploadedImage {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    border-radius: 6px;
}
.announcementImg {
    width: 150px;
    height: 150px;
    border-radius: 6px;
    border: 1px solid var(--color-F0F0F0);
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: var(--color-F0F0F0);
}
.img-title {
    text-align: center;
    margin-top: 5px;
}

.plus {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    color: gray;
    background-color: black;
    opacity: 0;
    cursor: pointer;
    border-radius: 6px;
    z-index: 2;
}

.add-announcementImg {
    min-width: 150px !important;
    max-height: 150px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    color: white;
    background-color: gray;
    cursor: pointer;
    border-radius: 6px;
}
.add-announcement-img-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 20px;
}
.add-announcement-img-container::-webkit-scrollbar {
    height: 5px !important;
}
.button-video {
    padding: 10px;
    background-color: var(--color-0a2472);
    border: none;
    color: var(--color-white);
    cursor: pointer;
}
.add-video-link-input {
    margin-top: 20px;
    display: block;
    width: 100%;
    display: none;
}
.add-video-buttons {
    display: flex;
    gap: 10px;
}
.add-announcement-video-file {
    position: relative;
    margin-top: 20px;
    width: 100%;
    height: 200px;
    background-color: var(--color-F0F0F0);
    display: none;
}
#video-announcement {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.readUrl {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 3;
    cursor: pointer;
}
.type-block {
    display: block;
}
.plus-video {
    position: absolute;
    padding: 10px;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    background-color: var(--color-dark);
    color: var(--color-white);
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}
.readUrl.announcementImg:hover .plus,
.add-announcement-video-file:hover .plus-video {
    opacity: 0.7;
}
.readUrl.announcementImg:hover .plus,
.add-announcement-video-file:hover .plus-video {
    opacity: 0.7;
}
.readUrlVideo {
    position: absolute;
    width: 150px;
    height: 50px;
    opacity: 0;
    z-index: 11;
    cursor: pointer;
}
.announcementImg:hover .plus,
.add-announcement-video-file:hover .plus-video {
    opacity: 0.7;
}
.floors,
.repair,
.count-rooms,
.adress,
.building-type {
    display: none;
}
.floors input,
.adress input,
.count-rooms input,
.repair select,
.building-type-select {
    display: block;
    width: 100%;
    margin-top: 5px;
}
.floors-block {
    display: block;
}
.add-announcement-btn {
    padding: 10px 25px;
    border: none;
    background-color: var(--color-0a2472);
    color: var(--color-white);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}
.add-announcement-btn:hover {
    background-color: var(--color-ED1C24);
}
.street-search {
    width: 100%;
    position: relative;
}
.street-input {
    display: block;
    width: 100%;
}
.street-search-ul {
    position: absolute;
    background-color: var(--color-F0F0F0);
    width: 100%;
    top: 47px;
    left: 0;
    z-index: 2;
    box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
    border-radius: 6px;
    max-height: 250px;
    overflow-y: auto;
}
.street-search-li {
    padding: 8px 10px;
    cursor: pointer;
    display: none;
}
.street-search-li:not(:last-child) {
    border-bottom: 1px solid var(--color-white);
}
.street-search-li:first-child {
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
}
.street-search-li:last-child {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}
.street-search-li:hover {
    background-color: var(--color-0a2472);
    color: var(--color-white);
}
.ts-wrapper:not(.form-control):not(.form-select).single .ts-control {
    background-color: var(--color-F0F0F0) !important;
    border-radius: 0;
    border: none;
    outline: none;
    height: 40px;
}
.focus .ts-control {
    box-shadow: none !important;
}

/* LOGIN AND REGISTER START */
.login-and-register {
    padding: 70px 0;
    background-color: var(--color-F0F0F0);
}
.login-and-register-container {
    width: 30%;
    margin: auto;
    background-color: var(--color-white);
    box-shadow: 0px 10px 34px -15px rgb(0 0 0 / 24%);
}
.login-and-register-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--color-F0F0F0);
}
.login-and-register-btn {
    padding: 15px;
    width: 150px;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--color-0a2472);
}
#login-btn {
    border-right: 1px solid var(--color-F0F0F0);
}
.login-and-register-btn:hover {
    color: var(--color-ED1C24);
}
.login-and-register-form {
    padding: 30px 0;
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    display: none;
}
.login-and-register-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
    width: 100%;
    position: relative;
}
.login-and-register-item-label {
    font-size: 14px;
    color: var(--color-0a2472);
}
.login-and-register-item-input {
    height: 45px;
    padding: 0 10px;
    border: none;
    outline: none;
    background-color: var(--color-F0F0F0);
    color: var(--color-0a2472);
    border-radius: 6px;
}
.login-and-register-sub-btn {
    border: none;
    background-color: var(--color-0a2472);
    height: 45px;
    width: 100%;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
}
.login-and-register-sub-btn * {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
}
.login-and-register-sub-btn:hover {
    background-color: var(--color-ED1C24);
}
.active_btn {
    color: var(--color-ED1C24);
}
.active-form {
    display: block;
}
.user-profile-img {
    width: 100%;
    display: flex;
    justify-content: center;
}
.userProfileImg {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    margin-bottom: 30px;
}
.userProfileImg img {
    border-radius: 100% !important;
    object-position: center;
}
.userProfileImg .plus {
    width: 30px;
    height: 30px;
    font-size: 16px;
    opacity: 1 !important;
    background-color: var(--color-989898);
    border-radius: 100%;
    cursor: pointer;
    right: 0;
}
.userProfileImg .plus svg {
    width: 15px;
    height: 15px;
    fill: var(--color-white);
}
.pass-eye {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 10px;
    top: 39px;
    cursor: pointer;
}
.pass-eye {
    width: 20px;
    height: 20px;
    fill: var(--color-989898);
}
/* LOGIN AND REGISTER END */
/* .contact-us--section{
  padding: 70px 0;
} */
.contact-us--header {
    height: 200px;
    display: flex;
    justify-content: center;
    padding-top: 50px;
    background-color: var(--color-012549);
}
.contact-us-header--description {
    font-size: 36px;
    font-weight: 500;
    color: var(--color-white);
}
.contact-us--container {
    margin-top: -50px;
    margin-bottom: 70px;
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: var(--color-white);
    box-shadow: 0 30px 50px 0 rgb(1 1 1 / 18%);
}
.contact-information--header h1,
.send-mesagge-header h1 {
    font-size: 22px;
    font-weight: 500;
    color: var(--color-white);
    white-space: nowrap;
    margin-bottom: 30px;
}
.contact-information-bottom {
    display: flex;
    gap: 20px;
}
.contact-information-bottom svg {
    width: 25px;
    height: 25px;
    fill: var(--color-white);
}
.send-mesagge-header h1 {
    color: var(--color-0a2472);
}
.info-item {
    display: flex;
    gap: 20px;
    padding: 50px 0;
    align-items: center;
    flex-direction: column;
    font-size: 14px;
    color: var(--color-white);
    margin-bottom: 20px;
    background-color: var(--color-012549);
}
.info-item svg {
    width: 40px;
    height: 40px;
    fill: var(--color-white);
}
.contact-us--form input {
    width: 100%;
    height: 40px;
    padding: 0 10px;
    border: none;
    outline: none;
    border-radius: 6px;
    background-color: var(--color-F0F0F0);
    color: var(--color-0a2472);
}
.contact-us--form input:focus,
.contact-us--form textarea:focus {
    box-shadow: 0 0 4px 1px rgb(0 0 0 / 18%);
}
.contact-us--form textarea {
    width: 100%;
    height: 200px;
    padding: 10px;
    outline: none;
    border: none;
    border-radius: 6px;
    background-color: var(--color-F0F0F0);
    color: var(--color-0a2472);
}
.contact-us-page--text {
    font-size: 22px;
}
.contact-us--form label {
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--color-0a2472);
}
.contact-us--form *::placeholder {
    font-size: 14px;
    color: var(--color-0a2472);
}
.form--btn {
    width: 150px;
    height: 40px;
    border: none;
    background-color: var(--color-0a2472);
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
}
.upload__inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.upload__btn {
    display: inline-block;
    color: #fff;
    text-align: center;
    min-width: 116px;
    padding: 5px 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid;
    background-color: var(--color-0a2472);
    border: none;
    line-height: 26px;
    font-size: 14px;
}

.upload__img-wrap {
    margin-top: 10px;
}

.upload__img-box {
    width: 100%;
    margin-bottom: 12px;
}

.upload__img-close {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 5px;
    right: 5px;
    text-align: center;
    line-height: 24px;
    z-index: 1;
    cursor: pointer;
}
.upload__img-close:after {
    content: "\2716";
    font-size: 14px;
    color: white;
}
.img-bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding-bottom: 100%;
}
.slider-control{
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 30px;
    width: 20px;
    border: none;
    background-color: var(--color-dark);
    color: var(--color-white);
    font-size: 18px;
    z-index: 10;
    cursor: pointer;
}
.slider-next{
    right: 0;
}
.slider-prev{
    left: 0;
}
.slider .slider-item img, .video-section video, .video-section iframe, .slider-news .slider-item img{
    height: 450px;
    width: 100%;
}
video{
    object-fit: cover;
}
.slider-nav .slider-item img{
    height: 150px;
}
.social a svg, .date svg{
    width: 25px;
    height: 25px;
    margin-right: 10px;
}
.info-head-section{
    border-bottom: 1px solid var(--color-F0F0F0);
}
.date *{
    color: var(--color-989898);
    fill: var(--color-989898);
}
.facebook svg{
    fill: #3b5998;
}
.telegram svg{
    fill: #0088CC;
}
.instagram svg{
    fill: #F56040;
}
.twitter svg{
    fill: #1DA1F2;
}
.info-head{
    font-size: 36px;
    font-weight: 500;
    color: var(--color-01175e);
}
.info-premium *{
    font-size: 16px;
    font-weight: 500;
    gap: 10px;
}
.info-premium a{
    cursor: pointer;
}
.pay{
    padding: 7px;
    border-radius: 6px;
    background-color: var(--color-0a2472);
    color: white;
}
.info-section{
    border-bottom: 1px solid var(--color-F0F0F0);
}
.info-section .info-premium{
    background-color: var(--color-F0F0F0);
    padding: 10px;

}
.info-section .col-lg-3:not(:first-child){
    padding-left: 0;
}
.info-payment{
    background-color: var(--color-0a2472) !important;
    color: var(--color-white);
    gap: 7px;
    height: 100%;
}
.info-section .col-lg-3:not(:last-child){
    padding-right: 0;
    border-right: 2px solid var(--color-f9fbfe);
}
.info-desc-p{
    gap: 50px;
    color: var(--color-989898);
    border-bottom: 1px solid var(--color-F0F0F0);
}
.info-desc-p span:first-child{
    width: 200px;
}
.map *{
    width: 100%;
    height: 400px;
}
.related-person{
    gap: 10px;
}
.related-person img{
    width: 40px;
    height: 40px;
    border-radius: 100%;
}
.related-person h3{
    font-size: 18px;
    font-weight: 500;
    color: var(--color-0a2472);
}
.related-person a{
    color: var(--color-ED1C24);
    font-size: 16px;
}
.related-person a:hover{
    color: var(--color-fa6d4b);
}
.similar-head, .video-section-head{
    font-size: 28px;
    color: var(--color-01175e);
    font-weight: 500;
}
.comment--section .section--head span{
    color: var(--color-ED1C24);
}
.comment-section-description--item{
    border: 1px solid var(--color-F0F0F0);
    /* box-shadow: 0 4px 20px rgba(0,0,0,0.1); */
    padding: 15px;
}
.comment-item-head{
    font-weight: 500;
    color: var(--color-0a2472);
    font-size: 20px;
}
.comment-item-desc{
    font-size: 16px;
    color: #777777;
}
.reply-btn{
    color: var(--color-ED1C24);
    cursor: pointer;
    font-size: 14px;
}
.premium-announcement-head{
    background-color: var(--color-cf2e2e);
    border-left: none;
}
.feature-announcement-head{
    background-color: #ef4520;
    border: none;
}
.premium-announcement-head *, .feature-announcement-head *{
    color: white !important;
}
.section--head svg{
    width: 25px;
    height: 25px;
    margin-right: 10px;
    fill: var(--color-white);
}
.payment-modal{
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.7);
}
.payment-modal .row{
    height: 100%;
}
.payment-modal-desc{
    /* height: 300px; */
    position: relative;
    padding: 40px;
    background-color: var(--color-white);
}
.close-payment-modal{
    position: absolute;
    right: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-0a2472);
    border-radius: 50%;
    cursor: pointer;
}
.close-payment-modal svg{
    width: 20px;
    height: 20px;
    fill: var(--color-white);
}
.payment-modal-desc-head{
    font-size: 24px;
    font-weight: 500;
    color: #777777;
}
.payment-modal-desc-content{
    color: #777777;
}
.card-category-label{
    margin-bottom: 5px;
    color: var(--color-989898);
}
.card-category-select{
    outline: none;
    border: none;
    padding: 10px;
    background-color: var(--color-F0F0F0);
    color: #0a2472;
    width: 50%;
    cursor: pointer;
}
.payment-time{
    gap: 20px;
    flex-wrap: wrap;
}
.payment-time-item{
    gap: 5px;
}
.payment-time-item label{
    font-size: 14px;
    color: #777777;
    white-space: nowrap;
}
.payment-modal{
    display: none;
}
.payment-modal .payment-modal-desc{
    overflow-y: auto;
    max-height: 90vh;
}
.mayor-page-img img{
    height: 230px;
    border-radius: 10px;
}
.mayor-name{
    font-size: 26px;
    font-weight: 500;
}
.mayor-about{
    font-size: 18px;
    color: var(--color-989898);
    margin-bottom: 10px;
}
.about-mayor-div h1{
    font-size: 24px;
    font-weight: 500;
}
.about-mayor-div p{
    font-size: 18px;
    color: #777777;
}
.about-mayor-div span{
    color: #989898;
    font-size: 14px;
}
.services--section{
    background-color: #f2f2f2;
}
.services-section--description{
    margin-top: -50px;
}
.services-section-description--item{
    padding: 40px 20px;
    background-color: var(--color-white) ;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
    justify-content: space-between;
}
.services-section--description .col-lg-4{
    display: flex;
}
.services-section-description-item--head{
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}
.services-section-description-item--desc{
    color: #c0c0c0;
    margin-bottom: 10px;
}
.services-section-description--item .card-info--button{
    font-size: 18px;
}
.g-recaptcha{
    margin-bottom: 15px;
}
.places--section .col-lg-2{
    display: flex;
}
.place--item{
    width: 100%;
    padding: 20px;
    border: 1px solid var(--color-e6e6e6);
    text-align: center;

}
.place-item-icon svg{
    width: 50px;
    height: 50px;
    fill: var(--color-0a2472);
    margin-bottom: 10px;
}

.place-name{
    font-size: 18px;
    font-weight: 500;
    color: var(--color-989898);
}
.video-card-item *{
    height: 250px;
}

