/* Start Global Rules */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
:root {
    --main-padding: 40px;
    --main-color: #3a7d1a;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Changa", sans-serif;
}
a {
    text-decoration: none;
}
body::-webkit-scrollbar,
div::-webkit-scrollbar {
    width: 8px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body::-webkit-scrollbar-track,
div::-webkit-scrollbar-track {
    background-color: none;
}
body::-webkit-scrollbar-thumb,
div::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
    border-radius: 20px;
    border: none;
}
.special-head {
    text-align: center !important;
}
.special-head h2 {
    color: #000;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 24px;
}
.special-head p {
    color: #aaaaaa;
    font-size: 14px;
    margin-bottom: 40px;
}
@media (max-width: 767px) {
    .special-head h2 {
        margin-bottom: 10px;
        font-size: 18px;
    }
    .special-head p {
        font-size: 12px;
    }
}
.btn-dark {
    border-radius: 25px;
}
.btn-hov:hover {
    background-color: var(--main-color);
    border: none;
    transition: ease-in-out 0.5s;
    -webkit-transition: ease-in-out 0.5s;
    -moz-transition: ease-in-out 0.5s;
}
/* Photoviewer Edit */
.photoviewer-title,
.photoviewer-footer {
    background-color: #ccc;
    color: #000;
}
/* End Global Rules */

/* Start Navbar */
.navbar .logo {
    width: 90px;
    height: 80px;
}
.navbar .logo img {
    max-width: 100%;
}
.navbar .navbar-nav .nav-item {
    margin-right: 20px;
    font-size: 18px;
}

.navbar .input-group {
    width: 250px !important;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .navbar .input-group {
        width: 205px !important;
    }
}
@media (max-width: 478px) {
    .navbar .input-group {
        width: 205px !important;
    }
}
.navbar .input-group .input-group-text {
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    border: 1px solid var(--main-color);
}
.navbar .input-group .form-control {
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}
.navbar .btn-success {
    border-radius: 20px;
    width: 70px;
    background-color: var(--main-color);
    border-color: var(--main-color);
    transition: ease-in-out 0.5s;
    -webkit-transition: ease-in-out 0.5s;
    -moz-transition: ease-in-out 0.5s;
}
.navbar .btn-success:hover {
    background-color: #000;
    border-color: unset;
}
.navbar input:focus {
    box-shadow: unset;
    border-color: var(--main-color) !important ;
}
.carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
}
/* End Navbar */

/* Start Slider */
.carousel {
    max-height: calc(100vh - 90px);
    position: relative;
}
.carousel .carousel-item img {
    max-height: calc(100vh - 90px);
}
.overlay {
    z-index: 1;
    background-color: rgb(0 0 0 / 60%);
}
.overlay .landing {
    margin-top: 80px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.overlay .landing h1 {
    font-size: 44px;
    font-weight: bold;
}
.overlay .landing p {
    width: 50%;
    margin-bottom: 30px;
}
/* .search-box {
  z-index: 999;
  width: 650px;
  height: 80px;
  background-color: rgb(255 255 255 / 15%);
}

.search-box .input-group {
  width: 300px !important;
}
.search-box .input-group .input-group-text {
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}
.search-box .input-group .form-control {
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}
.search-box .btn-success {
  border-radius: 20px;
  width: 70px;
  background-color: var(--main-color);
  border-color: var(--main-color);
}
.search-box input:focus {
  box-shadow: unset;
} */
@media (max-width: 767px) {
    .carousel,
    .carousel .carousel-item img {
        height: 100vh;
    }
    .overlay .landing {
        margin-top: 140px;
    }
    .overlay .landing h1 {
        font-size: 18px;
        margin-bottom: 30px;
    }
    .overlay .landing p {
        width: 90%;
        font-size: 14px;
        margin-bottom: 30px;
    }
    /* .search-box {
    width: auto;
    height: auto;
  }
  .search-box .input-group {
    width: 220px !important;
  } */
}
@media (min-width: 1200px) {
    .carousel .landing {
        position: absolute;
        top: 35%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}
/* @media (max-width: 300px) {
  .search-box .submit-btn {
    margin-top: 20px;
  }
} */
.carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
}
.filter-btn .btn {
    background-color: var(--main-color);
    transition: ease-in-out 0.5s;
    -webkit-transition: ease-in-out 0.5s;
    -moz-transition: ease-in-out 0.5s;
}
.filter-btn a {
    color: #fff;
    font-weight: bold;
    padding: 3px 8px;
    transition: all 0.3s ease;
}
.filter-btn a.active {
    border-bottom: 5px solid #fff;
}

/* End Slider */

/* Start Recently Dead */
.recently-dead {
    padding-top: var(--main-padding);
    background-color: #fff;
}
.recently-dead .recently-box .card {
    border: none;
    transition: 0.5s ease-in-out;
    border: 1px solid transparent;
    border-radius: 20px;
    margin-bottom: 20px;
}
.recently-dead .recently-box .card:hover {
    border-color: rgb(0 0 0 / 10%);
    overflow: hidden;
    transform: translateY(-10px);
}
.recently-dead .recently-box .card img {
    max-width: 100%;
    border-radius: 20px;
}
.card-img-top {
    width: 261px;
    height: 235px;
    margin: 0 auto 0;
}
.recently-dead .recently-box .card .card-title {
    font-size: 16px;
    font-weight: 600;
}
.recently-dead .recently-box .card .card-body {
    text-align: center;
    margin-top: 20px;
}
.recently-dead .recently-box .card .card-text:first-of-type {
    margin-bottom: 8px;
    font-size: 14px;
}
.recently-dead .recently-box .card .card-text:last-of-type {
    font-size: 14px;
    margin-bottom: 40px;
}
.recently-box a {
    text-decoration: none;
    color: #000;
}

/* End Recently Dead */

/* Start Who Are */
.who-are {
    background-color: #fff;
    padding-bottom: var(--main-padding);
    padding-top: var(--main-padding);
}
.text-p {
    text-align: justify;
    margin-bottom: 20px;
    line-height: 2;
}
.who-are .img {
    max-width: 550px;
    height: 320px;
}
.who-are img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}
@media (max-width: 478px) {
    .who-are h4 {
        width: 290px;
        margin: 30px auto !important;
    }
    .text-p {
        width: 290px;
        margin: auto;
    }
}
@media (max-width: 768px) {
    .who-are .row {
        flex-direction: column-reverse;
        max-width: 95%;
        margin: 0 10px;
    }
    .who-are .row .imgs {
        width: 75%;
        margin: 0 auto 30px;
    }
    .who-are .row .imgs img {
        width: 100%;
    }
}
@media (max-width: 992px) {
    .who-are .row .imgs img {
        width: 100%;
        margin-top: 40px;
    }
}
/* End Who Are */

/* Start Images Section */
.gallery {
    background-color: #fff;
    padding-top: var(--main-padding);
    padding-bottom: var(--main-padding);
}
.gallery .images {
    margin-bottom: 20px;
    width: 250px;
    height: 166px;
    margin: 20px auto 0;
}
.gallery .images img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
}
.gallery .images img:hover {
    transform: scale(1.1);
}
/* End Images Section */

/* Start Partners */
.partners .golden-img {
    width: 800px;
    margin: 0 auto 50px;
}
.partners .golden-img img {
    max-width: 100%;
}
@media (max-width: 768px) {
    .partners .golden-img {
        width: 280px;
        margin: 0 auto 50px;
    }
}
.partners .owl-carousel .item img {
    width: 80px !important;
    height: 80px;
}
.partners .owl-carousel .owl-item {
    margin: 0 auto !important;
}
.partners .owl-carousel {
    position: relative;
    margin-top: 70px;
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
    position: absolute;
    top: 20px;
    color: #fff !important;
    background-color: var(--main-color) !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
}
.owl-nav span {
    font-size: 30px;
    position: absolute;
    top: 44%;
    left: 52%;
    transform: translate(-50%, -50%);
}
.owl-nav .owl-next {
    left: -60px;
}
.owl-nav .owl-prev {
    right: -60px;
}
@media (min-width: 992px) {
    .owl-dots .owl-dot {
        display: none !important;
    }
}
@media (max-width: 991px) {
    .owl-dots .owl-dot {
        margin-top: 20px;
    }
}
/* End Partners */

/* Start Register Form */
.register {
    background-color: #f7f7f7;
    padding-top: 40px;
    padding-bottom: 40px;
}
.register form .form-label {
    font-weight: bold;
}
.register form .form-control {
    width: 500px;
    height: 60px;
    border: none;
    border-radius: 30px;
    margin: 10px 0 20px;
}
.register form input:focus {
    box-shadow: 0 0 0 0.25rem rgb(58 125 26 /50%) !important ;
}
.register form .cmnt {
    height: 100px;
}
.register form .cmnt:focus {
    box-shadow: 0 0 0 0.25rem rgb(58 125 26 /50%) !important ;
}
.register form .btn {
    width: 200px;
    height: 30px;
    font-size: 12px;
    border-radius: 9px;
}
@media (max-width: 767px) {
    .register form .form-control {
        width: 260px;
        height: 40px;
        border: none;
        border-radius: 22px;
        margin: 10px 0 20px;
    }
    .register form .cmnt {
        height: 60px;
    }
    .register form .btn {
        width: 100px;
        height: 30px;
        font-size: 12px;
        border-radius: 9px;
    }
}
/* End Register Form */

/* Start Footer */

footer {
    background-color: #373944;
    color: #fff;
    padding-top: 50px;
    padding-bottom: 50px;
}
footer .text-logo .logo {
    width: 180px;
    background-color: #fff;
    border-radius: 50%;
    padding: 10px;
}
footer .text-logo .logo img {
    max-width: 100%;
}
footer .text-logo .text p {
    width: 340px;
    text-align: justify;
}

footer .list {
    width: 200px;
}
footer .list h4 {
    font-size: 18px;
    margin-bottom: 20px;
}
footer .list li {
    font-size: 14px;
    margin-bottom: 10px;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    opacity: 0.7;
}
footer .list li:hover {
    opacity: 1;
    font-weight: bold;
}
footer .list li a {
    color: #fff;
}

footer .social-list h4 {
    font-size: 18px;
    margin-bottom: 20px;
}
footer .social-list a {
    width: 40px;
    height: 40px;
    background-color: black;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: ease 0.3s;
    -webkit-transition: ease 0.3s;
    -moz-transition: ease 0.3s;
}
footer .social-list a:hover {
    opacity: 0.8;
}
footer .social-list a:first-child,
footer .social-list a:nth-child(3) {
    background-color: #4267b2;
}
/* footer .social-list a:nth-child(2) {
    background-color: #1da1f2;
}
footer .social-list a:last-child {
    background-color: #5bcf5b;
} */
@media (max-width: 768px) {
    footer .logo {
        margin: 0 auto 20px;
    }
    footer .text {
        width: 280px;
        margin: 0 auto 30px;
    }
    footer .text p {
        max-width: 100%;
    }
    footer .list {
        margin-bottom: 30px;
        margin-right: 30px;
    }
    footer .social-list {
        width: 280px;
        margin: 0 auto;
    }
    footer .social-list h4 {
        margin-bottom: 30px;
    }
    footer .social-list a {
        margin: auto;
    }
}
@media (max-width: 300px) {
    footer .text {
        width: 240px;
    }
}
/* Start Resting Place Page */

/* Start Res-search Section */
.res-search {
    width: 100%;
    height: 300px;
}
.res-search .land-img {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url(../images/cemetery.jpg);
    background-size: cover;
    background-position: center;
}
/* @media (max-width: 300px) {
  .search-box {
    background: transparent;
  }
} */
/* End Search  */
/* Start Info  */
.informations {
    background-color: #fff;
    padding-top: 80px;
    padding-bottom: 40px;
}
.informations .dead-info {
    width: 880px;
    transform: translateX(32px);
}
.informations .dead-info .image {
    width: 280px;
    height: 300px;
    transform: translate(-80px, -30px);
    z-index: 1;
    object-fit: cover;
}
.informations .dead-info .image img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    float: left;
}

.informations .name {
    width: 600px;
    padding: 40px;
    margin-right: 60px;
    box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: ease-in-out 0.7s;
    -webkit-transition: ease-in-out 0.7s;
    -moz-transition: ease-in-out 0.7s;
}
.informations .full-name {
    margin-right: 26px;
}
.informations h6 {
    font-size: 14px;
    color: #848484;
}
.informations p {
    font-size: 18px;
    color: #000;
}
.informations .name .quote {
    position: absolute;
    top: 44px;
    left: -37px;
    color: #fff;
    background-color: #000;
    transform: rotate(-42deg);
    padding: 4px 22px;
    height: 30px;
    width: 200px;
    text-align: center;
    z-index: -1;
}

@media (max-width: 300px) {
    .informations .name,
    .informations .place,
    .informations .info-gallery,
    .informations .map-info,
    .informations .dead-about {
        width: 240px !important;
    }
    .informations .dead-info .image {
        width: 70px !important;
        height: 70px !important;
        transform: translate(-70px, 20px) !important;
    }
    .informations .place .location-img {
        width: 200px !important;
        margin: 30px auto 0 !important;
    }
}
@media (max-width: 480px) {
    .informations .dead-info {
        width: 300px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translate(0);
    }
    .informations .dead-info .image {
        width: 80px !important;
        height: 80px !important;
        transform: translate(-100px, 38px) !important;
    }
    .informations .dead-info .image img {
        width: 100%;
        height: 100%;
        border-radius: 8px;
    }
    .informations .name {
        width: 280px;
        padding: 20px;
        border: 1px solid rgb(0 0 0 / 20%);
        border-radius: 20px;
        position: relative;
    }
    .informations .full-name {
        margin-right: 20px;
    }

    .informations h6 {
        font-size: 10px;
        color: #848484;
        font-weight: bold;
    }
    .informations p {
        font-size: 14px;
        color: #000;
        font-weight: 400;
    }
    .informations .name .quote {
        display: none;
    }
    .informations .name-details {
        flex-direction: column;
    }
}
@media (max-width: 300px) {
    .informations .name,
    .informations .place,
    .informations .info-gallery,
    .informations .map-info,
    .informations .dead-about {
        width: 240px !important;
    }
    .informations .dead-info .image {
        width: 70px !important;
        height: 70px !important;
        transform: translate(-70px, 20px) !important;
    }
    .informations .place .location-img {
        width: 200px !important;
        margin: 30px auto 0 !important;
    }
}
.informations .place,
.informations .info-gallery,
.informations .map-info,
.informations .dead-about {
    width: 800px;
    box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
    border-radius: 20px;
    margin-top: 40px;
    padding: 20px 20px 60px;
    transition: ease-in-out 0.7s;
    -webkit-transition: ease-in-out 0.7s;
    -moz-transition: ease-in-out 0.7s;
}

.informations .place .row div {
    background-color: #f8f8f8;
    border-radius: 14px;
    font-weight: 300;
    font-size: 15px;
    margin-bottom: 30px;
}
.informations .place .location-img {
    width: 700px;
    margin: 0 auto;
}
.informations .place .location-img img {
    width: 100%;
}
@media (max-width: 768px) {
    .informations .dead-info .image {
        width: 270px;
        height: 280px;
        transform: translate(-70px, -30px);
        z-index: 1;
        object-fit: cover;
    }
    .informations .place,
    .informations .info-gallery,
    .informations .map-info,
    .informations .dead-about {
        width: 580px;
    }
    .informations .info-gallery .img {
        margin-bottom: 20px;
    }
    .informations .place .location-img {
        width: 350px;
    }
}
@media (max-width: 480px) {
    .informations .place,
    .informations .info-gallery,
    .informations .map-info,
    .informations .dead-about {
        width: 280px;
        border: 1px solid rgb(0 0 0 / 20%);
    }
    .informations .place .row div {
        margin-bottom: 10px;
        font-size: 12px;
        width: 200px;
    }

    .informations .info-gallery .img {
        margin-bottom: 20px;
    }
    .informations .place .location-img {
        width: 240px;
    }
}
.informations .info-gallery .img {
    /*width: 240px;*/
    height: 240px;
}

.informations .info-gallery .img img {
    object-fit: cover;
    padding:13px
}
.informations .info-gallery img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.informations .zoom button {
    opacity: 0.8;
    background-color: var(--main-color);
    box-shadow: unset;
    transition: ease-in-out 0.5s;
    -webkit-transition: ease-in-out 0.5s;
    -moz-transition: ease-in-out 0.5s;
}
.informations .zoom button:hover {
    opacity: 1;
}
.informations .report a {
    color: #000;
    padding: 5px;
    transition: ease-in-out 0.5s;
    -webkit-transition: ease-in-out 0.5s;
    -moz-transition: ease-in-out 0.5s;
}
.informations .report:hover a {
    background-color: #ccc;
}

/* Start Informations Hover */
.informations .name:hover,
.informations .place:hover,
.informations .info-gallery:hover,
.informations .map-info:hover,
.informations .dead-about:hover {
    box-shadow: 0px 2px 15px rgb(0 0 0 / 35%);
}

.myContent {
    transition-duration: 0.5s;
    transform: scale(2.5);
}

.show-info {
    /* transform: scale(3); */
    width: 50px;
    /* height: 30px; */
    z-index: 500;
    position: absolute;
    background-color: rgb(255 255 255 / 50%);
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 2px;
    /* transform: translate(-25px, -13px); */
    font-size: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;
}

.show-info::before {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    border-width: 2px;
    border-style: solid;
    border-color: #000 transparent transparent transparent;
}

.show-info a {
    color: #000;
}
/* End Informations Hover  */

/* End Information Section */

/* Start Gallery  */
.gallery-page .image-set img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    cursor: zoom-in;
    border-radius: 20px;
}
@media (max-width: 768px) {
    .gallery-page .image-set {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}
/* End Gallery */

.loader-overlay {
    width: 100%;
    height: 100vh;
    z-index: 9;
    background-color: rgb(255 255 255 / 90%);
    display: flex;
    justify-content: center;
    align-items: center;
}
.sk-circle {
    margin: 100px auto;
    width: 40px;
    height: 40px;
    position: relative;
}
.sk-circle .sk-child {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.sk-circle .sk-child:before {
    content: "";
    display: block;
    margin: 0 auto;
    width: 15%;
    height: 15%;
    background-color: var(--main-color);
    border-radius: 100%;
    -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
    animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
}
.sk-circle .sk-circle2 {
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
}
.sk-circle .sk-circle3 {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
}
.sk-circle .sk-circle4 {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.sk-circle .sk-circle5 {
    -webkit-transform: rotate(120deg);
    -ms-transform: rotate(120deg);
    transform: rotate(120deg);
}
.sk-circle .sk-circle6 {
    -webkit-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    transform: rotate(150deg);
}
.sk-circle .sk-circle7 {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.sk-circle .sk-circle8 {
    -webkit-transform: rotate(210deg);
    -ms-transform: rotate(210deg);
    transform: rotate(210deg);
}
.sk-circle .sk-circle9 {
    -webkit-transform: rotate(240deg);
    -ms-transform: rotate(240deg);
    transform: rotate(240deg);
}
.sk-circle .sk-circle10 {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}
.sk-circle .sk-circle11 {
    -webkit-transform: rotate(300deg);
    -ms-transform: rotate(300deg);
    transform: rotate(300deg);
}
.sk-circle .sk-circle12 {
    -webkit-transform: rotate(330deg);
    -ms-transform: rotate(330deg);
    transform: rotate(330deg);
}
.sk-circle .sk-circle2:before {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}
.sk-circle .sk-circle3:before {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}
.sk-circle .sk-circle4:before {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}
.sk-circle .sk-circle5:before {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}
.sk-circle .sk-circle6:before {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}
.sk-circle .sk-circle7:before {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}
.sk-circle .sk-circle8:before {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}
.sk-circle .sk-circle9:before {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}
.sk-circle .sk-circle10:before {
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
}
.sk-circle .sk-circle11:before {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}
.sk-circle .sk-circle12:before {
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleBounceDelay {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes sk-circleBounceDelay {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* End loader */

/* Start  New Project */
.project-carousel img {
    height: 209px;
    width: 314px;
}
.project-carousel .card-body {
    height: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
}
/*Start All Dead  Page*/
.resting .qalmap-img {
    height: 600px;
    margin: 20px auto;
    width: 500px;
}
.resting .mashmap-img {
    height: 600px;
    margin: 20px auto;
    width: 600px;
}
@media (max-width: 768px) {
    .resting .qalmap-img,
    .resting .mashmap-img {
        width: 300px;
        margin: 20px auto;
    }
}
.marker {
    opacity: 0.3;
    cursor: pointer;
}
.fa-whatsapp {
    color: green;
}
.pagination {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.pagination li {
    margin-bottom: 7px;
}
.pagination li a {
    color: #000;
}
.pagination li a:focus {
    box-shadow: none;
}
.pagination li a:hover {
    color: var(--main-color);
}
.pagination .next a,
.pagination .prev a {
    color: #000;
}
.pagination a {
    margin: 0 5px;
}
.pagination .page-item.active .page-link {
    background-color: var(--main-color);
    border-color: transparent;
}
