* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}
.clearfix{
	display:block;
}
html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 15px;
    overflow-x: hidden;
} 
h1, h2, h3, h4, h5, h6 {
	margin: 0 0 10px 0;
	color: #111111;
	font-weight: 700;
    line-height: 1.3;
	font-family: "Merriweather", serif;
}
h1 {
	font-size: 30px;
    color: #801a14;
}
h2 {
	font-size: 25px;
    color: #801a14;
}
h3 {
	font-size: 19px;
    color: #801a14;
}
h4 {
	font-size: 17px;
}
h5 {
	font-size: 16px;
}
h6 {
	font-size: 15px;
    color: #7a6352;
}
p {
	font-size: 15px;
	font-family: "Montserrat", sans-serif;
	color: #1b1b1b;
	font-weight: 400;
	line-height: 22px;
	margin: 0 0 15px 0;
}
img {
	max-width: 100%;
}
input:focus, select:focus, button:focus, textarea:focus {
	outline: none;
}
a:hover, a:focus {
	text-decoration: none;
	outline: none;
	color: #fff;
}
ul, ol {
	padding: 0;
	margin: 0;
}
a {
    text-decoration: none;
    color: #801a14;
    transition-duration: 0.3s;
}
a:hover, a:focus {
	text-decoration: none;
	outline: none;
	color: #c42e21;
}
b, strong {
    font-weight: 600;
}
.text-uppercase {
    text-transform: uppercase;
}
.text-center {
    text-align: center !important;
}
.text-right {
    text-align: right !important;
}
.position-fixed {
    position: fixed !important;
}
.rounded-img {
    border-radius: 15px;
}
.icon-img {
    margin-bottom: 20px;
}
.img-caption {
    text-align: center;
    margin-bottom: 20px;
    font-size: 14px;
}
::selection{
    color: #fff;
    background: #801a14;
}
.vr {
    background-color: #eadacd;
    opacity: 1;
}
.no-click{
    pointer-events:none;
}
.cursor-pointer { 
    cursor: pointer !important;
}
.toast {
    background: #801a14;
    color: #ffffff;
}
.toast .btn-close {
    filter: var(--bs-btn-close-white-filter);
}
.invalid-feedback {
    font-weight: 600;
}



/*---------------------
  Buttons Section
-----------------------*/
.button-primary,
.btn-primary {
    background: #801a14;
    border-radius: 5px;
    color: #ffffff;
    padding: 10px 15px;
    border: 2px solid #801a14;
    font-size: 13px;
    font-family: "Merriweather", serif;
    letter-spacing: 1.5px;
    transition-duration: 0.3s;
    cursor: pointer;
    display: inline-block;
}
.button-primary:hover,
.btn:hover,
.btn:active {
    background: #a22217 !important;
    color: #ffffff;
    border: 2px solid #a22217 !important;
}
.button-primary-outline {
    background: none;
    border-radius: 5px;
    color: #801a14;
    padding: 10px 15px;
    border: 2px solid #801a14;
    font-size: 13px;
    font-family: "Merriweather", serif;
    letter-spacing: 1.5px;
    transition-duration: 0.3s;
    cursor: pointer;
}
.button-primary-outline:hover {
    background: #801a14;
    color: #ffffff;
    border: 2px solid #801a14;
}
.btn-secondary {
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 13px;
    font-family: "Merriweather", serif;
    letter-spacing: 1.5px;
    transition-duration: 0.3s;
    cursor: pointer;
    border: 2px solid #6c757d;
}
.btn-success {
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 13px;
    font-family: "Merriweather", serif;
    letter-spacing: 1.5px;
    transition-duration: 0.3s;
    cursor: pointer;
    border: 2px solid #198754;
}
.button-secondary-outline {
    background: none;
    border-radius: 5px;
    color: #ffffff;
    padding: 10px 15px;
    border: 2px solid #ffffff;
    font-size: 13px;
    font-family: "Merriweather", serif;
    letter-spacing: 1.5px;
    transition-duration: 0.2s;
    cursor: pointer;
}
.button-secondary-outline:hover,
.button-secondary-outline.grey:hover {
    background: #ffffff;
    color: #801a14;
    border: 2px solid #ffffff;
}
.button-secondary-outline.grey {
    color: #ccc;
}
.button-brown,
.btn-brown {
    background: #7a6352;
    border-radius: 5px;
    color: #ffffff;
    padding: 10px 15px;
    border: 2px solid #7a6352;
    font-size: 13px;
    font-family: "Merriweather", serif;
    letter-spacing: 1.5px;
    transition-duration: 0.3s;
    cursor: pointer;
}
.button-brown:hover,
.button-brown:active,
.btn-brown:hover,
.btn-brown:active {
    background: #a22217 !important;
    color: #ffffff;
    border: 2px solid #a22217 !important;
}
.button-brown i,
.btn-brown i {
    color: #ffffff !important;
}




/*---------------------
  Header Section
-----------------------*/
.header-section {
    width: 100%;
    z-index: 1000;
}
.header-section.sticky {
    background: #ffffff;
    box-shadow: 0px 5px 6px #0000001C;
}
.top-nav {
    align-items: center;
}
#header-logo {
    height: 115px;
    margin: 10px 0;
}
.sticky #header-logo {
    height: 90px;
}
@media (max-width : 768px) {
    #header-logo {
        height: 90px;
    }
    .sticky #header-logo {
        height: 60px;
    }
}
input.header-search {
    border: 2px solid #b09c8b;
    border-radius: 20px;
    color: #eadacd;
    font-size: 13px;
    font-style: italic;
    min-width: 0px;
    padding: 7px 0 7px 15px;
    padding-left: 38px;
    width: 200px;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    transition: all 0.6s ease;
    background: url(/images/icon-search.svg) no-repeat 10px 5px;
    background-size: 20px;
}
input.header-search:focus {
    width: 300px;
    color: #ffffff;
}
.sticky input.header-search:focus {
    color: #1b1b1b;
}
input.header-search::placeholder {
    color: #eadacd;
    opacity: 1;/* Firefox */
}
input.header-search::-ms-input-placeholder {
    color: #eadacd; /* Edge 12 -18 */
}
.account.logged-out {
    background: url(/images/icon-account.svg) no-repeat;
    display: block;
    width: 37px;
    height: 32px;
    margin: 0 15px;
}
.account.logged-out:hover {
    background: url(/images/icon-account-over.svg) no-repeat;
}


section#home-header-slider,
section#inside-header {
    position: relative;
    margin-bottom: 100px;
    background: #7a6352;
}
section#inside-header {
    min-height: 400px;
    padding: 150px 0 0 0px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom: 50px;
}
section#inside-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #7a6352;
    opacity: 0.78;
}
.inside-header-icon {
    width: 35px;
    filter: saturate(100%);
    margin-bottom: 10px;
}
section#inside-header.account {
    min-height: 280px;
    padding: 70px 0 0 0px;
}

.paper {
    background: url("/images/paper_1.png") repeat-x scroll center top / 1920px auto rgba(0, 0, 0, 0);
    bottom: -2px;
    height: 59px;
    position: absolute;
    width: 100%;
}
#home-header-slider .splide__pagination {
    bottom: -1.5em;
}
#home-header-slider .splide__pagination__page,
#showcase-carousel .splide__pagination__page {
    background: #fff;
    border: 2px solid #801a14;
    opacity: 1;
}
#home-header-slider .splide__pagination__page.is-active,
#showcase-carousel .splide__pagination__page.is-active {
    background: #801a14;
    opacity: 1;
}
#home-header-slider .splide__slide {
    min-height: 500px;
    max-height: 700px;
}
.slide-container {
    position: relative;
    height: 100%;
}
#home-header-slider .slider-info {
    background: #eadacd21;
    position: absolute;
    bottom: 15%;
    right: 0%;
    width: 600px;
    z-index: 99999;
    color: #ffffff;
    text-align: right;
    padding: 20px 30px 10px 30px;
    border-radius: 15px;
}
#home-header-slider .slider-info:hover {
    background: #44372d78;
    cursor: pointer;
}
#home-header-slider .splide__slide {
    /* filter: sepia(100%);
   -webkit-filter: sepia(100%);
   opacity: 1;*/
}
#home-header-slider .splide__slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #7a6352;
    opacity: 0.78;
}
#home-header-slider .splide__arrow {
    color: #eadacd;
}
#home-header-slider .splide__arrow--prev {
    left: calc(100% - 76px);
    top: 88%;
}
#home-header-slider .splide__arrow--next {
    left: calc(100% - 45px);
    top: 88%;
}
#home-header-slider .slide-image-title {
    color: #ffffff;
    font-size: 25px;
    margin: 0;
}
#home-header-slider .slide-image-date {
    font-size: 18px;
    color: #eadacd;
    font-family: "Merriweather", serif;
    background: url(/images/icon-date.svg) no-repeat right 3px;
    background-size: 20px;
    padding: 0 25px 10px 0;
}
#home-header-slider .slide-image-short-description {
    color: #ffffff;
}
#home-header-slider .slide-image-meta {
    font-size: 13px;
    color: #eadacd;
}
#home-header-slider .slide-image-meta .image-location {
    background: url(/images/icon-location.svg) no-repeat;
    padding: 0 20px 0 15px;
    background-size: 12px;
}
#home-header-slider .slide-image-meta .image-owner {
    background: url(/images/icon-camera.svg) no-repeat;
    padding: 0 0 0 22px;
    background-size: 18px;
}

@media (max-width: 992px) {
    #home-header-slider .slider-info {
        padding: 10px 20px 0px 20px;
        width: 100%;
    }
    #home-header-slider .slide-image-short-description {
        display: none;
    }
    #home-header-slider .slide-image-title {
        font-size: 20px;
    }
    #home-header-slider .slide-image-date {
        font-size: 15px;
        background: url(/images/icon-date.svg) no-repeat right 3px;
        background-size: 15px;
        padding: 0 20px 0 0;
    }
    section#inside-header {
        padding: 216px 0 0 0;
    }
    section#inside-header h1 {
        font-size: 22px;
    }
    section#inside-header.account {
        padding: 200px 0 55px 0;
    }
}
@media (max-width: 768px) {
    section#inside-header {
        padding: 180px 0 0 0;
    }
    section#inside-header.account {
        padding: 125px 0 0 0;
    }
}






/*---------------------
  Main Menu
-----------------------*/
.main-nav {
    margin: 13px 0;
}
#main-nav li {
    margin: 0 0px 0 0;
    display: inline-block;
    height: auto;
    vertical-align: middle;
}
#main-nav li a {
    color: #ffffff;
}
.sticky #main-nav li a {
    color: #801a14;
}



/*
nav{
    width: 100%;
    padding: 12px 0;
    background: #ff0000;
  }
  nav .menu{
    max-width: 1270px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-content: flex-end;
  }
  .menu ul{
    list-style: none;
    display: flex;
  }
  .menu ul a{
    margin:0 8px;
    text-decoration: none;
    font-size: 14px;
    color: #801a14;
    font-weight: 500;
    display: inline-flex;
    padding: 5px 5px;
    position: relative;
    transition: all 0.3s ease;
  }
  .menu ul a:hover:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #a22217;
  }
 .menu ul a:hover{
    color: #3498db;
  }
  nav label.btn{
    color: #31344b;
    font-size: 18px;
    cursor: pointer;
    display: none;
  }
  nav label.cancel{
    position: absolute;
    top: 25px;
    right: 30px;
  }
  #check{
    display: none;
  }
  @media (max-width:940px) {
    .menu ul{
      display: block;
      position: fixed;
      top: 0;
      left: -100%;
      width: 100%;
      max-width: 400px;
      padding-top: 45px;
      height: 100%;
      background: #b4a69b;
      box-shadow: 0 5px 10px #b0b0b5;
      z-index: 12;
      transition: all 0.3s ease;
    }
    .menu ul a{
     display: block;
     font-size: 23px;
     width: 100%;
     margin-top: 30px;
     box-shadow: none;
     text-align: center;
    }
    .menu ul a:hover:before{
      box-shadow: none;
    }
    nav label.bars{
      display: block;
    }
    #check:checked ~ label.bars{
      display: none;
    }
    #check:checked ~ ul label.cancel{
      display: block;
    }
    #check:checked ~ ul{
      left: 0;
    }
  }*/
  




/*---------------------
  Contributors Section
-----------------------*/
.contributors-section {
    background: #801a14 url(/images/contributors-bg.jpg) no-repeat 75% 30%;
    padding: 40px;
    color: #ffffff;
}
.contributors-section h1 {
    color: #eadacd;
}
.contributors-section p {
    color: #ffffff;
}
@media (max-width: 992px) {
    .contributors-section {
        text-align: center !important;
        padding: 25px;
    }
}





/*---------------------
  Showcase Section
-----------------------*/
#showcase-carousel li > a:after {
    display: none;
}
.showcase-then-now-container {
    position: relative;
    margin: auto;
}
.showcase-then-now-container video {
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 70%;
    height: auto;
    z-index: 1;
    border: 0px solid white;
    border-radius: 20px;
    box-shadow: rgba(187, 174, 164, 0.94) 0px 5px 10px;
    background-image: url(/images/showcase-then-now.jpg);
    background-size: cover;
    background-position: center;

}

@media (min-width: 1400px) {
    .showcase-then-now-container video {
        min-height: 290px;
    }
}

#showcase-carousel .splide__arrow--prev {
    left: -15px;
    color: #eadacd;
}
#showcase-carousel .splide__arrow--next {
    right: -15px;
    color: #eadacd;
}
#showcase-carousel .splide__arrow:hover {
    color: #7a6352;
}



/*---------------------
  Features
-----------------------*/
#features a {
    display: inline-block;
    padding: 20px;
}
#features a img {
    margin-bottom: 10px;
    width: 76px;
}
#features a h5 {
    color: #801a14;
    text-transform: uppercase;
}
#features a h6 {
    color: #b4a69b;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 3px;
}
#features a:hover {
    scale: 1.2;
}
#features a:hover h5 {
    color: #c42e21;
}
#features h3 {
    color: #7a6352;
}

.divider {
    display: flex;
    align-items: center;
}
.divider::before,
.divider::after {
    flex: 1;
    content: '';
    padding: 1px;
    background-color: #f1efed;
    margin: 5px 20px;
    border-radius: 10px;
}





/*---------------------
  Featured Gallery Section
-----------------------*/
.featured-gallery-section {
    background-image: linear-gradient(0deg, rgba(180,166,155,1) 23%, rgba(180,166,155,0.54) 57%, rgba(180,166,155,0.19) 80%), url(/images/featured-gallery-bg.jpg);
    background-size: cover;
    padding: 70px 0;
}
.featured-gallery-section h1 {
	font-size: 48px;
}
#featured-gallery-carousel .splide__arrow--prev{
    left: calc(100% - 70px);
    top: 106%;
}
#featured-gallery-carousel .splide__arrow--next  {
    left: calc(100% - 35px);
    top: 106%;
}
#featured-gallery-carousel .splide__pagination {
    display: none;
}
#featured-gallery-carousel-track {
    border-radius: 20px;
}
#featured-gallery-carousel .splide__slide,
#photographer-photos-carousel .splide__slide {
    position: relative;
}
#featured-gallery-carousel .splide__slide img,
#photographer-photos-carousel .splide__slide img  {
    width: 100%;
    height: 700px;
    object-fit: cover;
}
#featured-gallery-carousel .title {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(180, 166, 155, 0.8);
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 5px;
    font-family: "Merriweather", serif;
    font-size: 20px;
    transition-duration: 0.3s;
    text-align: right;
    margin-left: 10px;
}
#featured-gallery-carousel .title:hover {
    background-color: rgba(180, 166, 155, 1);
}
#featured-gallery-carousel .title a {
    color: #ffffff;
}
#featured-gallery-carousel .title .image-date {
    color: #eadacd;
    display: inline-block;
    background: url(/images/icon-date.svg) no-repeat right 3px;
    background-size: 22px;
    padding: 0 25px 0 15px;
}
@media (max-width: 620px) {
    #featured-gallery-carousel .title {
        font-size: 15px;
    }
    #featured-gallery-carousel .title .image-date {
        background-size: 18px;
        padding: 0 20px 0 10px;
    } 
}

#featured-galleries-carousel .splide__slide img,
#photographer-photos-carousel .splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.5s ease;
}
#featured-galleries-carousel .splide__slide a:hover img {
    transform: scale(1.1);
}
#featured-galleries-carousel .splide__arrow--prev {
    left: -2.2em;
    top: 57%;
}
#featured-galleries-carousel .splide__arrow--next {
    right: -2.2em;
    top: 57%;
}
#featured-galleries-carousel .splide__pagination {
    display: none;
}
#featured-galleries-carousel h3{
    color: #7a6352;
    font-size: 15px;
    padding: 20px 0;
}
#featured-galleries-carousel .splide__slide .slide-title {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    color: #7a6352;
    font-family: "Merriweather", serif;
    padding: 10px 0;
    text-align: center;
}
#featured-galleries-carousel .splide__slide .slide-title a {
    color: #7a6352;
}
#featured-galleries-carousel .splide__slide .slide-title a:hover {
    color: #801a14;
}

@media (max-width: 620px) {
    #featured-galleries-carousel {
        padding: 0 50px;
    }
    #featured-galleries-carousel .splide__arrow--prev {
        left: 0em;
    }
    #featured-galleries-carousel .splide__arrow--next {
        right: 0em;
    }
}





/*---------------------
  Facts Section
-----------------------*/
.facts-section {
    padding: 100px 0;
}
.facts-section .stat {
    background: #faf7f5;
    color: #7a6352;
    border-radius: 10px;
    padding: 20px 10px;
    max-width: 200px;
    margin: 20px auto;
}
.facts-section .stat .stat-num {
    color: #801a14;
    font-weight: 700;
    font-size: 30px;
    font-family: "Merriweather", serif;
}
.facts-section .stat .stat-type {
    color: #7a6352;
    font-weight: 600;
    font-size: 15px;
}


/*---------------------
  Social Section
-----------------------*/
.social-section {
    background: #f5f0ec;
    padding: 50px 0 30px 0;
    position: relative;
}
.socials a {
    color: #7a6352;
    font-size: 20px;
    padding: 15px;
    transition-duration: 0.3s;
}
.socials a:hover {
    color: #a22217;
}
.instagram-feed {
    padding: 50px 0px 10px 0px;
}
#sb_instagram img {
    border-radius: 20px;
}



/*---------------------
  Footer Section
-----------------------*/
.footer-section {
	background-image: url(/images/footer-img.png), url(/images/footer-bg.jpg);
    background-position: bottom right, bottom center;
    background-repeat: no-repeat;
    background-size: 330px, cover;
    background-color: #b6a79a;
    color: #1b1b1b;
    padding-top: 90px;
    font-weight: 500;
    position: relative;
}
.footer-section .copyright {
	color: #7a6352;
    font-size: 14px;
	padding: 50px 0 20px 0;
}
.footer-section .copyright a {
	color: #7a6352;
}
.footer-section .copyright a:hover {
	color: #801a14;
}
.footer-section .footer-menu li {
    list-style: none;
    padding: 5px 0;
}
.footer-section .footer-menu li a {
    color: #1b1b1b;
}
.footer-section .footer-menu li a:hover {
    color: #801a14;
}
.footer-section h3.widget-title  {
	color: #7a6352;
    font-size: 20px;
    padding-bottom: 20px;
}
.footer-section i {
    color: #7a6352;
}
.footer-section b {
    font-weight: 600;
}
.colloborations {
    color: #7a6352;
    text-align: center;
}
.colloborations a img {
    display: block;
    margin: 15px auto;
}
.footer-section .paper-2 {
    background: url("/images/paper_2-white.png") repeat-x scroll center top / 1920px auto rgba(0, 0, 0, 0);
    top: -5px;
    height: 60px;
    position: absolute;
    width: 100%;
}
.social-feed .footer-section .paper-2 {
    background: url("/images/paper_2.png") repeat-x scroll center top / 1920px auto rgba(0, 0, 0, 0);
}


@media (max-width: 992px) {
    .footer-section {
        text-align: center !important;
    }
}
@media (max-width: 1165px) {
    .footer-section {
        background-image: url(/images/footer-bg.jpg);
        background-position: bottom center;
        background-repeat: no-repeat;
        background-size:  cover;
    }
}




/*---------------------
  Sroll bars 
-----------------------*/
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
 }
/* Track */
 ::-webkit-scrollbar-track {
    -webkit-border-radius: 0px;
    border-radius: 0px;
    background: #fff; 
 }
 /* Handle */
 ::-webkit-scrollbar-thumb {
    -webkit-border-radius: 15px;
    border-radius: 10px;
    background: #801a14; 
 }

 .offcanvas-body::-webkit-scrollbar-thumb {
    -webkit-border-radius: 15px;
    border-radius: 10px;
    background: #b09c8b; 
 }
 .offcanvas-body::-webkit-scrollbar {
    width: 8px;
    height: 8px;
 }




/*---------------------
  General Splidejs 
-----------------------*/
 .splide__arrow {
    background: none !important;
    border: none;
    font-size: 1.5rem;
    color: #7a6352;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.splide__arrow--prev::before {
    content: '\f177';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}
.splide__arrow--next::before {
    content: '\f178';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}
.splide__arrow svg {
    display: none;
}
.splide__arrow:focus-visible {
    outline: 3px solid #7f1b11 !important;
}





/*---------------------
  Contact Page Section
-----------------------*/
.contact-box {
    background: #faf7f5;
    color: #7a6352;
    border-radius: 10px;
    padding: 30px 10px;
    max-width: 300px;
    margin: 20px auto;
}
.contact-form-section {
    padding: 0 150px 100px 150px;
}
@media (max-width: 992px) {
    .contact-form-section {
        padding: 50px;
    }
}
.form-control {
    border-color: #d5d1cb;
    font-weight: 500;
}
.form-control:focus,
.form-select:focus,
.form-check-input:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: #7a6352;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(122, 99, 82, .25);
}
.form-check-input:checked {
    background-color: #801a14;
    border-color: #801a14;
}
.form-select option:hover{
    background-color: #801a14;
}
#divGoogleMaps {
    height: 500px;
    width: 100%;
}
.infowindow-content {
    font-weight: 600;
    font-size: 16px;
}










/*---------------------
  Timeline Section
-----------------------*/
.py-8 {
    padding-bottom: 4.5rem !important;
    padding-top: 4.5rem !important
}
@media(min-width:576px) {
    .py-sm-8 {
        padding-bottom: 4.5rem !important;
        padding-top: 4.5rem !important
    }
}
@media(min-width:768px) {
    .py-md-8 {
        padding-bottom: 4.5rem !important;
        padding-top: 4.5rem !important
    }
}
@media(min-width:992px) {
    .py-lg-8 {
        padding-bottom: 4.5rem !important;
        padding-top: 4.5rem !important
    }
}
@media(min-width:1200px) {
    .py-xl-8 {
        padding-bottom: 4.5rem !important;
        padding-top: 4.5rem !important
    }
}
@media(min-width:1400px) {
    .py-xxl-8 {
        padding-bottom: 4.5rem !important;
        padding-top: 4.5rem !important
    }
}
.bsb-timeline-1 {
    --bsb-tl-color: var(--bs-primary-bg-subtle);
    --bsb-tl-circle-color: #801a14;
    --bsb-tl-circle-size: 18px;
    --bsb-tl-circle-offset: 9px
}
.bsb-timeline-1 .timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative
}
.bsb-timeline-1 .timeline:after {
    bottom: 0;
    content: "";
    left: 0;
    margin-left: -1px;
    position: absolute;
    top: 0;
    width: 1px;
    border-right: 2px dashed #b6a89b;
}
.bsb-timeline-1 .timeline>.timeline-item {
    margin: 0;
    padding: 0;
    position: relative
}
.bsb-timeline-1 .timeline>.timeline-item:before {
    background-color: var(--bsb-tl-circle-color);
    border-radius: 50%;
    content: "";
    height: var(--bsb-tl-circle-size);
    left: calc(var(--bsb-tl-circle-offset)*-1);
    position: absolute;
    top: 0;
    width: var(--bsb-tl-circle-size);
    z-index: 1;
    outline:1px solid #b09c8b;
    border: 2px solid #ffffff;
}
.bsb-timeline-1 .timeline>.timeline-item:hover:before {
    background-color: #a22217;
}
.bsb-timeline-1 .timeline>.timeline-item .timeline-body {
    margin: 0;
    padding: 0;
    position: relative
}
.bsb-timeline-1 .timeline>.timeline-item .timeline-content {
    padding: 0 0 2.5rem 2.5rem
}
@media(min-width:768px) {
    .bsb-timeline-1 .timeline>.timeline-item .timeline-content {
        padding-bottom: 3rem
    }
}
.bsb-timeline-1 .timeline>.timeline-item:last-child .timeline-content {
    padding-bottom: 0
}

.card-subtitle {
    color: #b09c8b;
}
.timeline-img {
    border-radius: 15px;
    margin: 10px 0;
}








/*---------------------
  Album / Image dialog Section
-----------------------*/
.gallery .gallery-img {
    height: 260px;
    object-fit: fill;
    cursor: pointer;
    border-radius: 10px;
    position: relative;
}
.gallery .card {
    background: #fff;
    border: 1px solid #e6dad0;
    box-shadow: rgba(180, 166, 155, 0.23) 0px 3px 30px;
    padding: 20px 20px 7px 20px;
    border-radius: 20px;
    transition: all 0.5s ease;
    height: 100%;
}
.gallery .card:hover {
    background: #faf7f4;
    transform: scale(1.025);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 5px 10px
}
.gallery h3.card-title,
.photographer-photos h3.card-title {
    color: #801a14;
    font-size: 15px;
}
.gallery .card-body,
.photographer-photos .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}
.gallery .card-body .btn-primary {
    background: #b4a69b;
    color: #eadacd;
}
.gallery .card-body .image-locality,
.photographer-photos .image-locality {
    background: url(/images/icon-location.svg) no-repeat 0 2px;
    padding: 0 20px 0 15px;
    background-size: 12px;
    color: #7a6352;
    font-size: 13px;
}
.gallery .card-body .image-owner {
    background: url(/images/icon-camera.svg) no-repeat;
    padding: 0 0 0 22px;
    background-size: 18px;
}
.button-photo-details {
    background: #f4f1ee;
    border-radius: 5px;
    color: #7a6352;
    padding: 10px 15px;
    border: 2px solid #f4f1ee;
    font-size: 13px;
    font-family: "Merriweather", serif;
    letter-spacing: 1.5px;
    transition-duration: 0.3s;
    cursor: pointer;
    width: 100%;
}
.button-photo-details:hover,
.card:hover .button-photo-details {
    background: #801a14;
    color: #ffffff !important;
    border: 2px solid #801a14;
}
.add-repository {
    position: absolute;
    top: 28px;
    right: 28px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.24);
    border-radius: 5px;
    padding: 2px 5px;
    font-size: 11px;
    transition-duration: 0.6s;
    display: block;
    width: 21px;
    height: 20px;
    overflow: hidden;
    border: none;
    color: #801a14;
    text-wrap: nowrap;
}
.add-repository:hover {
    background: rgba(255, 255, 255, 0.90);
    width: 125px;
}
.add-repository::before {
    content: '\f004';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 12px;
    padding-right: 5px;
}

.album-header-filter-section h1 {
    padding: 0 10px;
}
.filter-keyword {
    font-size: 19px;
    color: #7a6352;
    font-weight: 700;
    line-height: 1.3;
    font-family: "Merriweather", serif;
    padding: 0 10px;
}
.filter.keyword::before {
    content: '\f002'; 
}
.filter.video::before {
    content: '\f03d'; 
}
.filter.yeartaken::before {
    content: '\f133';
}
.filters-applied,
.filters {
    color: #7a6352;
    background: #faf7f4;
    padding: 5px 15px;
    border-radius: 10px;
    margin: 10px 0;
    font-size: 13px;
}
.filter {
    color: #7a6352;
    background: #eadacd;
    padding: 5px 8px 5px 5px;
    border-radius: 5px;
    margin: 3px;
    display: inline-block;
    font-weight: 500;
    font-size: 12px;
    cursor: pointer;
    transition-duration: 0s;
}
.filter:hover,
.filter.active:hover {
    color: #eadacd;
    background: #7a6352;
}
.filter::before,
.filters-applied .filter::after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #7a6352;
    padding: 0 5px;
    font-size: 12px;
}
.filter:hover::before,
.filter:hover::after,
.filter.active::before,
.filter.active::after {
    color: #eadacd;
}
.filters-applied .filter::after {
    content: '\f00d';
}
.filters .filter::after {
    content: none;
}
.filter.locality::before {
    content: '\f3c5'; 
}
.filter.category::before {
    content: '\f03a'; 
}
.filter.tag::before {
    content: '\f02b'; 
}
.filter.camera::before {
    content:'\f030';
}
.filter.active {
    color: #eadacd;
    background: #801a17;
}
.filter-toggle {
    background: none;
    border: none;
    font-size: 13px;
    color: #b6a89b;
}
.filter-toggle:hover {
    color: #a22217;

}
.filters-sidebar{
    padding: 5px 0;
}
.form-label.search::before{
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #eadacd;
    content: "\f002";
    padding-right: 5px;
}
.filters-show-less {
    max-height: 172px;
    overflow: hidden;
}




body::backdrop, 
dialog::backdrop {
    background: rgba(121, 98, 83, 0.9);;
}
dialog {
    max-width: 90vw;
    max-height: 90vh;
    overflow: hidden;
    border: none;
    border-radius: 20px;
    padding: 0;
}
.dialog-content {
    max-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    overflow-y: auto; /* Allow vertical scrolling */
}

.custom-backdrop {
    background: rgba(121, 98, 83, 0.9);;
}

.modal-open {
    overflow: hidden;
}
.modal-header {
    justify-content: space-between;
}
h3.modal-title {
    color: #801a14;
}
.modal-body img {
    max-height: 75vh;
    max-width: 100%;
    width: unset;
    z-index: -1;
}
#modalDescription{
    padding: 20px 10px 0px 10px;
}






/*---------------------
  Then & Now Album Section
-----------------------*/
.gal-then-now-row {
    margin: 0px;
    display: flex;
    overflow: hidden;
}
.gal-then-now .then,
.gal-then-now .now {
    height: 260px;
    background-size: cover;
    position: relative;
    transition: all 0.5s ease-in-out;
    width: 50%;
    cursor: pointer;
}
.gal-then-now .then {
    background-position: left;
    border-radius: 10px 0 0 10px;
    border-right: 2px solid #fff;
}
.gal-then-now .now {
    background-position: right;
    border-radius: 0 10px 10px 0;
}

 /* Expand left when hovered */
 .gal-then-now .then:hover {
    width: 190%;
}
.gal-then-now .then:hover ~ .gal-then-now .now {
    width: 0%;
}

/* Expand right when hovered */
.gal-then-now .now:hover {
    width: 190%;
}
.gal-then-now .now:hover ~ .gal-then-now .then {
    width: 0%;
}
.gal-then-now .then:after,
.gal-then-now .now:after {
    display: block;
    position: absolute;
    bottom: 10px;
    color: #fff;
    background: rgba(255, 255, 255, 0.24);
    border-radius: 5px;
    padding: 2px 5px;
    font-size: 12px;
}
.gal-then-now .then:after {
    content: 'Then';
    left: 10px;
}
.gal-then-now .now:after {
    content: 'Now';
    right: 10px;
}





/*---------------------
  Filter Section
-----------------------*/
.offcanvas-footer {
    padding: 20px;
}
.offcanvas-body {
    margin-right: 15px;
}
.offcanvas-footer button {
    margin: 0 5px;
}
.accordion {
    --bs-accordion-border-color: #f1f1f1;
}
.accordion-body {
    padding: 0.6rem 1rem;
}
.accordion-button:focus,
.accordion-button:not(.collapsed) {
    box-shadow: none;
    background: none;
    color: #801a14;
}
h2 .accordion-button {
    color: #801a14;
    font-weight: 600;
}
.filter-section i {
    color: #b4a69b;
}








/*---------------------
  Repository Section
-----------------------*/
.repository-section i {
    color: #b4a69b;
}
.repository-section .accordion-button::after {
    display: none;
}
.repository .card {
    border: none;
}
.repository input[type="checkbox"] {
    display: none;
}
.repository label {
    position: relative;
    cursor: pointer;
    background: #fff;
    border: none;
    box-shadow: rgba(180, 166, 155, 0.23) 0px 3px 30px;
    padding: 7px;
    border-radius: 13px;
    transition: all 0.5s ease;
    height: 100%;
}
.repository label:hover {
    background: #faf7f4;
    transform: scale(1.025);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 5px 10px;
}
.repository label:before {
    background-color: white;
    color: white;
    content: " ";
    display: block;
    border-radius: 50%;
    border: 1px solid #7f1b11;
    position: absolute;
    top: -5px;
    left: -5px;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 28px;
    transition-duration: 0.4s;
    transform: scale(0);
    z-index: 3;
}
.repository label img {
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 10px;
    position: relative;
    transition-duration: 0.2s;
    transform-origin: 50% 50%;
}
@media (max-width : 767px) {
    .repository label img {
        height: 95px;
    }
}
.repository :checked+label:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    background-color:#7f1b11;
    transform: scale(1);
}
.repository :checked+label {
    transform: scale(0.9);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 5px 10px;   
    z-index: 2;
}

.share-field {
    position: relative;
}
.share-link {
    padding: 10px 120px 10px 10px;
    border-radius: 10px !important
}
.btn-copy {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    border: 0;
    background: #801a14;
    color: #fff;
    outline: none;
    margin: 0;
    padding: 0 10px;
    border-radius: 10px !important;
    z-index: 99999;
    font-family: "Merriweather", serif;
    font-size: 13px;    
}
.btn-copy:hover { 
    background: #a22217;
}
.btn-copy:focus { 
    background: #7a6352;
}

  





/*---------------------
  Photo Section
-----------------------*/
.photo-section .single-photo {
    padding: 20px;
    width: auto;
    max-height: 900px;
    object-fit: contain;
}
.photo-section .single-photo-title {
    font-size: 50px;
}
@media (max-width : 960px) {
    .photo-section .single-photo-title {
        font-size: 30px !important;
        text-align: center;
    }
}
.photo-section .single-photo-description {
    font-size: 16px;
    padding: 20px 0;
}
.photo-section #divGoogleMaps {
    height: 300px;
    width: 100%;
    background: #7a6352;
    border-radius: 20px;
    padding: 20px;
    box-shadow:  0 2px 31px rgba(123, 100, 82, 15%);
}
.gm-style iframe + div { border:none!important; }
.photo-section .single-photo-meta {
    background: url(/images/grunge-bg.jpg) no-repeat center center;
}
.photo-section .meta {
    color: #7a6352;
    border-radius: 10px;
    padding: 10px 10px;
    max-width: 200px;
    margin: 0px auto;
}
.photo-section .meta img {
    max-height: 41px;
    margin-bottom: 10px;
}
.photo-section .meta .meta-title {
    color: #801a14;
    font-weight: 700;
    font-size: 20px;
    font-family: "Merriweather", serif;
}
.photo-section .meta .meta-subtitle {
    color: #7a6352;
    font-weight: 600;
    font-size: 15px;
}
.photo-section .image-source {
    background: url(/images/icon-camera.svg) no-repeat;
    padding: 0 0 0 22px;
    background-size: 18px;
    font-size: 14px;
}
@media (max-width : 767px) {
    .photo-actions {
        margin:0 13px;
    }
}
.add-favourites,
.photo-enhance-btn,
.photo-animated-btn {
    background: #ede3da;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 13px;
    font-weight: 500;
    transition-duration: 0.3s;
    display: block;
    border: none;
    color: #801a14;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.add-favourites:hover,
.photo-enhance-btn:hover,
.photo-animated-btn:hover {
    background: #801a14;
    color: #ffffff;
}
.add-favourites::before,
.photo-enhance-btn::before {
    content: '\f004';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 17px;
}
.photo-animated-btn::before {
    content: "";
    width: 25px;
    height: 25px;
    background-image: url("/images/btn-animate.gif");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
}
.photo-animated-btn:hover::before {
    background-image: url("/images/btn-animate-white.gif");
}
.then-now, .photo-timeline {
    font-weight: 500;
    padding: 20px 0;
}
.then-now b, .photo-timeline b {
    color: #7a6352;
    font-weight: 700;
}
.timeline-link::before {
    content: '\e29c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 12px;
    padding-right: 5px;
    color: #ead9ce;
}
.timeline-link {
    background: #fbf7f4;
    padding: 2px 5px 2px 8px;
    border-radius: 5px;
    margin: 2px;
    display: inline-block;
    font-size: 14px;
}
.timeline-link:hover {
    background: #801a17;
    color: #eadacd;
}

/* Video */
.photo-section .hover-video {  
    padding: 20px; 
    position: absolute;
    top: -1px;
    right: -1px;
    width: calc(100% + 3px);
    height: calc(100% + 3px);
    object-fit: cover;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    /* GPU / anti-artifact fixes */
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: opacity, transform;
}
.media-toggle {
    display: flex;
    justify-content: center;
    overflow: hidden;
}
.media-box {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border: 1px solid #eadacd;
    border-radius: 15px;
}
.img-wrapper {
    position: relative;
    display: inline-block;
}
.hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.35);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none;
    text-align: center;
    color: #fff;
    cursor: pointer;
    pointer-events: auto;
}
.img-wrapper:hover .hover-overlay {
    opacity: 1;
}
.overlay-icon {
    width: 60px;
    margin-bottom: 10px;
}
.overlay-text {
    font-size: 1.1rem;
    font-weight: 600;
}






/*---------------------
  Locality Section
-----------------------*/
.locality-intro {
    background: #fbf7f4;
    border-radius: 15px;
}
.locality-description {
    padding: 10px 0;
}
.locality-description.mt::before,
.locality-description.en::before {
    content: '';
    display: block;
    height: 13px;
    width: 21px;
    margin: 0 auto 10px auto;
    background: url(/images/mt.png) no-repeat;
    background-size: contain;
}
.locality-description.en::before {
    background: url(/images/en.png) no-repeat;
    background-size: contain;
}
.locality-description.mt {
    font-style: italic;
}


  
/* localities emblems */
.locality-section h6::before {
    width: 50px;
    height: 70px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    margin: 0 auto 15px auto;
}
.locality-fontana .locality-section h6::before {
    content: "";
    background-image: url("/images/localities/fontana.svg");
}
.locality-ghajnsielem .locality-section h6::before {
    content: "";
    background-image: url("/images/localities/ghajnsielem.svg");
}
.locality-gharb .locality-section h6::before {
    content: "";
    background-image: url("/images/localities/gharb.svg");
}
.locality-ghasri .locality-section h6::before {
    content: "";
    background-image: url("/images/localities/ghasri.svg");
}
.locality-kercem .locality-section h6::before {
    content: "";
    background-image: url("/images/localities/kercem.svg");
}
.locality-munxar .locality-section h6::before {
    content: "";
    background-image: url("/images/localities/munxar.svg");
}
.locality-nadur .locality-section h6::before {
    content: "";
    background-image: url("/images/localities/nadur.svg");
}
.locality-qala .locality-section h6::before {
    content: "";
    background-image: url("/images/localities/qala.svg");
}
.locality-sanlawrenz .locality-section h6::before {
    content: "";
    background-image: url("/images/localities/sanlawrenz.svg");
}
.locality-sannat .locality-section h6::before {
    content: "";
    background-image: url("/images/localities/sannat.svg");
}
.locality-victoria .locality-section h6::before {
    content: "";
    background-image: url("/images/localities/victoria.svg");
}
.locality-xaghra .locality-section h6::before {
    content: "";
    background-image: url("/images/localities/xaghra.svg");
}
.locality-xewkija .locality-section h6::before {
    content: "";
    background-image: url("/images/localities/xewkija.svg");
}
.locality-zebbug .locality-section h6::before {
    content: "";
    background-image: url("/images/localities/zebbug.svg");
}
.locality-santalucija .locality-section h6::before {
    content: "";
    background-image: url("/images/localities/santa-lucija.svg");
}




/*---------------------
  Pagination
-----------------------*/
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
    border-radius: 10px;
    /*background: #fbf7f4;
    box-shadow:  0 2px 31px rgba(123, 100, 82, 15%);*/
}
.page_numbers, .page_numbers a, .page_btn a, .page_dots {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 5px;
    min-width: 2rem;
    min-height: 2rem;
    border-radius: 0.4rem;
    font-size: 13px;
    font-weight: 500;
    color: #7a6352;
}
.page_numbers a:hover, .page_btn a:hover {
    background: #f5f1ee;
    color: #a22217;
}
.page_numbers.active {
    color: #ffffff;
    background: #801a17;
    font-weight: 600;
    margin: 5px 0;
}
.page_dots {
    padding: 0px;
    min-width: 1rem;
}
.page_btn.prev a::before,
.page_btn.next a::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #7a6352; 
}
.page_btn.prev a::before {
    content: "\f053";
    padding-right: 5px;
}
.page_btn.next a::after {
    content: "\f054";
    padding-left: 5px;
}




/*---------------------
  Social Share
-----------------------*/
.share-social {
    display: flex;
    align-items: center;
    border-radius: 10px;
    background: #fff;
    color: #7a6352;
}
.share-social::before {
    content: '\f064';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    padding-right: 5px;
}
.share-icons {
    background: #faf7f4;
    padding: 10px;
    border-radius: 10px;
    margin: 0 0 0 10px;
}
.share-icons a {
    margin: 0 10px;
}





/*---------------------
  Events
-----------------------*/
.eig-grid-event {
    padding: 20px !important;
}
.eig-grid-event .eig-grid-event-area {
    box-shadow: rgba(180, 166, 155, 0.23) 0px 3px 30px !important;
}
.eig-grid-event .eig-event-readmore a {
    background: #f4f1ee;
}





/*---------------------
  Account
-----------------------*/
.login-icon {
    width: 90px;
    margin-bottom: 20px;
}







/*---------------------
  Slideshow
-----------------------*/
#thumbnail-carousel {
    padding: 30px; 
}
#thumbnail-carousel .splide__list {
    justify-content: center;
}
#thumbnail-carousel .splide__slide {
    opacity: 0.6;
    cursor: pointer; 
}
#thumbnail-carousel .splide__slide.is-active {
    opacity: 1;
}
#thumbnail-carousel .splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: 5px;
    transition: transform 0.5s ease;
}
#thumbnail-carousel .splide__slide.is-active {
    border: 3px solid #801a14;
    border-radius: 8px;
}
#thumbnail-carousel .splide__arrow--prev {
    left: -0.5rem;
}
#thumbnail-carousel .splide__arrow--next {
    right: -0.5rem;
}
#main-carousel .splide__slide img {
    height: 550px;
    width: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
}

@media (max-width : 960px) {
    #main-carousel .splide__slide img {
        max-height: 400px;
    }
}
@media (max-width : 400px) {
    #main-carousel .splide__slide img {
        max-height: 300px;
    }
}

#main-carousel .title {
    text-align: center;
    font-size: 18px;
    margin-top: 10px;
    font-family: "Merriweather", serif;
    color: #333;
}
#main-carousel li>a:after {
    display: none;
}
.fa-circle-info.fa-2xl {
    color: #7f1b11;
    font-size: 3em;
}











/*---------------------
  Blog
-----------------------*/
.blog-post {
    background: #fff;
    border: none;
    box-shadow: rgba(180, 166, 155, 0.23) 0px 3px 30px;
    padding: 20px 20px 7px 20px;
    border-radius: 20px;
    transition: all 0.5s ease;
    margin-bottom: 60px !important;
}
.post-date {
    font-size: 13px;
    color: #7a6352;
    margin-bottom: 10px;
}
.post-meta-comments {
    font-size: 12px;
}
.post-thumbnail {
    border-radius: 5px;
    overflow: hidden;
}
.post-thumbnail img {
    transition: all .3s ease-in-out;
    width: 100%;
    height: auto;
}
.post-thumbnail:hover img {
    -webkit-transform: translate3d(0, 0, 0) scale(1.1, 1.1);
    transform: translate3d(0, 0, 0) scale(1.1, 1.1);
}

@media (max-width : 960px) {
    .post-thumbnail img {
        width: 100%;
        height: auto;
    }
}


/* Blog single page */
.post-content {
    margin: 40px 0;
}
.post-featured img {  
    border: 1px solid #eadacd;
    padding: 20px;
    border-radius: 15px;
    width: 100%;
    height: auto;
    margin-top: 25px;
}
h1.post-title {
    margin-top: 25px;
}
.post-tags {
    color: #7a6352;
    background: #faf7f4;
    padding: 10px 15px;
    border-radius: 10px;
    margin: 10px 0;
    font-size: 13px;
}
.post-tags a,
.widget_tag_cloud a {
    color: #7a6352;
    background: #eadacd;
    padding: 5px 8px 5px 5px;
    border-radius: 5px;
    margin: 3px;
    display: inline-block;
    font-weight: 500;
    font-size: 12px;
    cursor: pointer;
    transition-duration: 0s;
}
.post-tags a:hover,
.post-tags a:hover::before,
.widget_tag_cloud a:hover,
.widget_tag_cloud a:hover::before {
    color: #eadacd;
    background: #7a6352;
}
.post-tags a::before,
.widget_tag_cloud a::before {
    content: '\f02b'; 
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #7a6352;
    padding: 0 5px;
    font-size: 12px;
}
.post-navigation {
    text-align: right;
}
.post-navigation div {
    display: inline-flex;
}
.post-navigation div a {
    padding: 10px;
    background-color: #fcf7f4;
    border-radius: 15px;
    margin: 0 0 10px 10px;
}
.post-navigation div a:hover {
    background: #a22217 !important;
    color: #ffffff;
}
.nav-previous a::before,
.nav-next a::after {
    content: '\f177'; 
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    padding: 0 5px;
    font-size: 12px;
}
.nav-next a::after {
    content: '\f178'; 
}


/* Comments Section */
.comments-section {
    background: #fff;
    border: none;
    box-shadow: rgba(180, 166, 155, 0.18) 0px 3px 20px;
    padding: 35px;
    border-radius: 20px;
    margin-bottom: 60px !important;
}
.comments-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 45px;
}
.comment-list {
    border-bottom: 1px solid #e3e3e3;
    padding: 0;
}
.comment-list li {
    list-style: none;
}
.comment-list ol, .comment-list ol ol {
    padding-left: 35px;
}
.comment {
    border-bottom: 1px solid #f5f0eb;
    padding: 1rem 0;
}
.comment:last-child {
    border-bottom: none;
}
.comment-body {
    padding: 0 0 30px 0;
}
.comment-author {
    font-weight: bold;
    color: #495057;
}
.comment-author a {
    pointer-events: none;
    color: inherit;
    text-decoration: none;
}
.commentmetadata,
.commentmetadata a {
    font-size: 13px;
    color: #7a6352;
}
.comment-body::before {
    content: '\f075';
    font-family: 'Font Awesome 5 Free';
    font-weight: 500;
    transform: scaleX(-1);
    font-size: 25px;
    display: block;
    float: left;
    padding: 0 0 0 20px;
    color: #eadacd;
}
.comment-body p {
    padding-top: 10px;
}
.comment-body .reply::before {
    content: '\f303';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    padding-right: 10px;
    color: #801a14;
}


/* Comment Form Styles */
#respond {
    padding: 40px;
    margin-top: 40px;
    background: #fbf7f4;
    border-radius: 20px;
}
h3#reply-title {
    font-weight: 700;
}
.comment-form label {
    padding-bottom: 5px;
}
.comment-form textarea {
    width: 100%;
    height: 150px;
    border-radius: 0.375rem;
    padding: 0.5rem;
    border: 1px solid #d5d1cb;
    font-weight: 500;
}
.comment-form input[type="text"],
.comment-form input[type="email"] {
    width: 100%;
    border-radius: 0.375rem;
    border: 1px solid #d5d1cb;
    font-weight: 500;
    padding: 0.5rem;
    margin-bottom: 1rem;
}
.comment-form input[type="text"]:focus, .comment-form input[type="email"]:focus, .comment-form textarea:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: #7a6352;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(122, 99, 82, .25);
}
.comments-section input#submit {
    background: #801a14;
    border-radius: 5px;
    color: #ffffff;
    padding: 10px 15px;
    border: 2px solid #801a14;
    font-size: 13px;
    font-family: "Merriweather", serif;
    letter-spacing: 1.5px;
    transition-duration: 0.3s;
    cursor: pointer;
}
.comments-section input#submit:hover,
.comments-section input#submit:active {
    background: #a22217 !important;
    color: #ffffff;
    border: 2px solid #a22217 !important;
}
.comment-awaiting-moderation {
    font-weight: 700;
    color: #801a14;
}

@media (max-width: 768px) {
    .comments-section {
        padding: 20px;
    }
    #respond {
        padding: 25px;
    }
}







/*---------------------
  Sidebar blog
-----------------------*/
.right-sidebar {
    background: #fbf7f4;
    border-radius: 20px;
    padding: 20px;
}
.widget {
    margin-bottom: 45px;
    background: #f8f2ee;
    padding: 15px;
    border-radius: 20px;
}
.widget_recent_entries ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}
.widget_recent_entries li {
    padding: 12px 1px;
    border-bottom: 1px solid #ede2db;
}
.widget_tag_cloud a {
    font-size: 15px !important;
}
.random_image {
    border-radius: 10px;
    transition: all 0.5s ease;
    margin-bottom: 15px;
}
.random_image:hover {
    transform: scale(1.025);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 5px 10px;
}
.widget_random_image .button-photo-details {
    background: #7a6352;
    color: #f7f2ee;
    border: 2px solid #7a6352;
    display: block;
}
.widget_random_image .button-photo-details:hover {
    background: #a22217;
    color: #ffffff;
    border: 2px solid #a22217;
}












/*---------------------
  Multisteps form - Upload
-----------------------*/

.step {
    display: none;
}
.step.active {
    display: block;
}

/* Progress bar styles */
.progress-bar-step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 50px 50px 90px 50px;
    position: relative;
}
@media (max-width: 768px) {
    .progress-bar-step {
        margin: 30px 10px 90px 10px;
    }
}
.progress-bar-step::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ddd;
    z-index: 1;
}
.progress-bar-step .step-indicator {
    z-index: 2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f1f1f1;
    border-radius: 50%;
    border: 2px solid #ddd;
    color: #000;
    font-weight: 700;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.progress-bar-step .step-indicator.completed {
    background-color: #fff;
    border-color: #801a14;
    color: #801a14;
}
.progress-bar-step .step-indicator.active {
    background-color: #801a14;
    border-color: #801a14;
    color: #fff;
}
.progress-bar-step .step-indicator-text {
    position: absolute;
    top: 50px;
    text-align: center;
    font-size: 12px;
    color: #666;
    width: max-content;
    margin-left: -22px;
}
@media (max-width: 768px) {
    .progress-bar-step .step-indicator-text {
        font-size: 10px;
        margin-left: -16px;
    }
}
.file-drop-area {
    border: 2px dashed #ccc;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    position: relative;
    cursor: pointer;
    transition: border-color 0.3s ease;
    margin-top: 20px;
}
.file-drop-area.dragging {
    border-color: #c42e21;
}
.file-drop-area img#previewImage {
    max-width: 100%;
    height: auto;
    display: none;
    margin: 0 auto;
}
.form-floating>label i {
    color: #eadacd;
    padding-right: 3px;
}
.prev-btn::before {
    content: "\f177";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    padding: 0 5px 0 0;
    font-size: 12px;
}
.next-btn::after {
    content: "\f178";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    padding: 0 0 0 5px;
    font-size: 12px;
}
.remove-photo-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #801a14;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    display: none;
}
.thumbnailPreview {
    max-height: 100px;
    width: auto;
    margin: 10px 0;
    display: none;
    border-radius: 5px;
}
.uploadSummary {
    border-radius: 10px;
    background: #fbf7f4;
    padding: 20px 0;
}
#summaryImage.thumbnailPreview {
    max-height: 300px;
    border-radius: 10px;
}
.summaryItem i {
    color: #eadacd;
    font-size: 12px;
}
.summaryData {
    font-weight: 600;
    padding: 6px 0 10px 25px;
    border-bottom: 1px solid #fbf7f4;
}
#mapCoordinates {
    height: 400px;
    width: 100%;
    background: #7a6352;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 2px 31px rgba(123, 100, 82, 15%);
}
.upload-scroll-area {
    height: 100px;
    overflow-y: auto;
    overflow-x: hidden;
}
.upload-scroll-section {
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 11px;
}








/*---------------------
  Account
-----------------------*/
.page-icon i {
    font-size: 40px;
    color: #801a14;
}
.sub-heading.page-icon i {
    font-size: 20px;
    padding-bottom: 10px;
    color: #801a14;
}
.account_info {
    text-align: center;
}
.account_profile_pic {
    background: url(/images/icon-account.svg) no-repeat;
    display: block;
    width: 75px;
    height: 64px;
    margin: 0 auto 20px auto;
}
.account_user_name {
    font-weight: 600;
    color: #801a14;
}
#account-sidebar {
    background: #fbf7f4;
    border-radius: 20px;
}

#account-sidebar.collapsed .account_user_name {
    opacity: 0;
}


@media (max-width: 991px) {
    .account_profile_pic {
        width: 45px;
        height: 34px;
    }
    .nav-link {
        font-size: 14px;
    }
    #account-sidebar .nav-link span {
      display: none;
    }
    #account-sidebar.collapsed .nav-link {
      justify-content: center;
    }
    
  
    /* Adjust content column when sidebar is collapsed */
    #account-sidebar.collapsed + #content {
      /*width: calc(100% - 60px);  Adjust content width */
    }

    nav#account-sidebar ul li {
        background-color: #fbf7f4;
    }
    
}

@media (max-width: 768px) {
    .account-page-heading h1 {
        font-size: 25px;
    }
    .page-icon i {
        font-size: 30px;
    }
}

#account-sidebar .btn-toggleSidebar {
    background: #7a6352;
    color: #f5eee8;      
}
#account-sidebar .btn-toggleSidebar:hover,
#account-sidebar .btn-toggleSidebar:focus {
    background: #f5eee8 !important;
    color: #7a6352;
    border: 2px solid #f5eee8 !important;      
}
#account-sidebar.expanded {
    width: 250px;
    z-index: 999;
    position: absolute;
}
#account-sidebar.collapsed .nav-link span {
    display: none;
}
#account-sidebar.expanded .nav-link span {
    display: inline;
}
nav#account-sidebar ul {
    float: unset;
    margin: 30px 0;
}
#account-sidebar .nav-link {
    color: #7a6352;
    margin: 5px 0;
}
#account-sidebar a.nav-link:hover,
#account-sidebar a.nav-link:focus,
#account-sidebar a.nav-link.active {
    background: #f5ede7;
    color: #7a6352;
    font-weight: 600;
    border-radius: 10px;
}
#account-sidebar a.nav-link i {
    width: 21px;
    text-align: center;
}






/*---------------------
  Account - Details
-----------------------*/
.account-profile .account_profile_pic {
    height: 160px;
    width: 160px;
    background: none;
}
.account-hidden-comment {
    display: none;
}
.account-comments-list {
    list-style: none;
    padding: 0;
}
.account-comment-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
    padding-bottom: 10px;
}
.account-photos .counter {
    font-weight: 600;
    font-size: 20px;
    color: #801a14;
}
.account-photos .stat {
    background: #faf7f5;
    color: #7a6352;
    border-radius: 10px;
    padding: 20px 5px;
    margin: 5px auto;
}


/*---------------------
  Account - Favourites
-----------------------*/
.favourites .repository label img {
    height: 183px;
}
.favourites .fa-solid {
    color: #b4a69b;
}




/*---------------------
  Account - My Photos
-----------------------*/
.table {
    --bs-table-hover-bg: #f5eee8;
    --bs-table-striped-bg: #fbf7f4;
    --bs-table-border-color: #f5eee8;
    font-size: 14px;
}

img.account-my-photo {
    max-height: 80px;
    border-radius: 5px;
    transition: transform .2s;
}
img.account-my-photo:hover {
    transform: scale(1.5); 
}
.label {
    background: #7d654f;
    color: #ffffff;
    border-radius: 5px;
    padding: 2px 5px;
    font-size: 12px;
}
.label-accepted {
    background: #198754;
}
.label-pending {
    background: #f0ad4e;
}
@media (max-width: 768px) {
    .table td {
        padding: .4rem .3rem;
    }
    .label {
        padding: 2px 4px;
        font-size: 10px;
    }
}


/*---------------------
  Photo Enhance
-----------------------*/
#divPhotoEnhance {
    background: #fbf7f4;
    border-radius: 10px;
    margin-bottom: 5px;
}
.collapse#divPhotoEnhance {
    overflow: hidden;
    padding: 15px;
    transition: padding 0.3s ease, max-height 0.3s ease; 
}
.collapse.show#divPhotoEnhance {
    padding: 15px;
}
#divPhotoEnhance .d-flex {
    flex-wrap: wrap;
}
.photo-enhance-btn::before {
    content: '\f303';
}
.photo-enhance {
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 13px;
    font-weight: 500;
    transition-duration: 0.3s;
    display: block;
    border: none;
    color: #ffffff;
}
.photo-enhance:hover {
    color: #ffffff;
}
.photo-enhance::before {
    content: '\f303';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 16px;
    padding-right: 5px;
}
.photo-enhance.black-and-white {
    background: #000000;
}
.photo-enhance.black-and-white:hover {
    background: #4c4c4c;
}
.photo-enhance.black-and-white::before {
    content: '\f042';
}
.photo-enhance.sepia {
    background: #a46628;
}
.photo-enhance.sepia:hover {
    background: #844b11;
}
.photo-enhance.sepia::before {
    content: '\f083';
}
.photo-enhance.warm {
    background: #e86c3e;
}
.photo-enhance.warm:hover {
    background: #bf4f26;
}
.photo-enhance.warm::before {
    content: '\f185';
}
.photo-enhance.cold {
    background: #5e9cff;
}
.photo-enhance.cold:hover {
    background: #366cc3;
}
.photo-enhance.cold::before {
    content: '\f2dc';
}
.photo-enhance.green-tint {
    background: #7c9215;
}
.photo-enhance.green-tint:hover {
    background: #65790c;
}
.photo-enhance.green-tint::before {
    content: '\f06c';
}
.photo-enhance.magenta-tint {
    background: #a44b8c;
}
.photo-enhance.magenta-tint:hover {
    background: #872d6f;
}
.photo-enhance.magenta-tint::before {
    content: '\f863';
}
.photo-enhance.reset {
    background: #a0a0a0;
}
.photo-enhance.reset:hover {
    background: #7b7878;
}
.photo-enhance.reset::before {
    content: '\f2ea';
}

.enhance-black-and-white {
  filter:brightness(70%) contrast(150%) saturate(0%) brightness(150%);
}
.enhance-sepia {
  filter:saturate(0%) sepia(100%) contrast(150%) saturate(150%);
}
.enhance-warm {
  filter: sepia(50%) contrast(150%) saturate(200%) brightness(100%) hue-rotate(-15deg);
}
.enhance-cold {
  filter: hue-rotate(180deg) sepia(75%) contrast(150%) saturate(300%) hue-rotate(180deg);
}
.enhance-tint-green {
  filter: hue-rotate(-30deg) sepia(75%) contrast(150%) saturate(300%) hue-rotate(30deg);
}
.enhance-tint-magenta {
  filter: hue-rotate(-270deg) sepia(55%) contrast(150%) saturate(300%) hue-rotate(270deg);
}


















/*---------------------
  Then & Now
-----------------------*/
#image-compare,
.image-container {
    width: 80%;
    margin: 0 auto;
    border-radius: 25px;
    box-shadow: rgba(180, 166, 155, 0.53) 0px 3px 30px;
}

@media (max-width: 768px) {
    #image-compare,
    .image-container {
        width: 100%;
    }
}
.icv__label {
    border-radius: 5px !important;
    background: #198754;
}
.icv__circle {
    background: #801a14;
}
.comparison-then::before,
.comparison-now::before {
    content: '\f148';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 17px;
    padding: 8px 0 8px 8px;
    float: right;
    color: #eadacd;
    display: block;
}
.comparison-then::before {
    transform: scaleX(-1);
    float: left;
}
.comparison .date {
    font-size: 30px;
	font-family: "Merriweather", serif;
    color: #801a14;
}
.comparison .title {
    font-weight: 500;
    padding-bottom: 15px;
}
.then-now-inside-header {
    background-position: left center, right center !important;
    background-repeat: no-repeat !important;
    background-size: 50% auto !important;
}
@media (max-width: 1300px) {
    .then-now-inside-header {
      background-size: cover !important;
    }
}


.image-container {
    position: relative;
    display: block;
    overflow: hidden;
}
.fade-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}
.fade-image.active {
    opacity: 1;
    position: static; 
}
.image-container img {
    display: block;
}
.form-check-label {
    cursor: pointer;
    font-weight: 500;
}
#toggle-view+span {
    margin-left: 10px;
}
#toggle-view.form-check-input {
    margin: 3px 0 0 10px;
    float: none;
}
.form-switch {
    padding-left: 0;
}
.comparison .button-photo-details {
    width: auto;
}












/*---------------------
  Timeline
-----------------------*/

.timeline-box h6 {
    font-size: 40px;
    line-height: 1;
    color: #801a14;
    font-weight: 700;
    background-color: #ffffff;
    position: relative;
    z-index: 1;
    display: inline-block;
    width: auto;
    padding: 0 10px;
    margin-top: 0;
    transform: translate(0, -50%);
}
.timeline-box h2 {
    font-size: 15px;
}
.timeline-box p {
    font-size: 15px;
    line-height: 22px;
    color: #1b1b1b;
    margin-bottom: 26px;
    display: none;
}
.timeline-box p:last-of-type {
    margin-bottom: 15px;
}
.timeline-box .button-photo-details {
    padding: 5px 5px;
    font-size: 12px;
}
.start-point h4 {
    font-size: 17px;
    line-height: 23px;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    background-color: #801a14;
    border-radius: 16px;
    display: block;
    width: auto;
    text-align: center;
    padding: 5px 25px;
    position: relative;
    margin-bottom: 45px;
}
.black-dot {
    width: 21px;
    height: 21px;
    background-color: #eadacd;
    border-radius: 50%;
    display: block;
    margin: 0 auto 62px;
    z-index: 1;
    box-shadow:
  0 0 0 4px #fff,
  0 0 0 7px #eadacd;
}
.start-point{position: relative;display: flex; justify-content: center; flex-direction: column; align-items: center} 
.start-point:before{content:'';position: absolute;left: 0;height: 100%;width: 0px;background-color: #eadacd;left: 50%;top: 0;transform: translate(-50%,0%);-webkit-transform: translate(-50%,0%);-moz-transform: translate(-50%,0%); border-left: 2px solid #eadacd;} 
.timeline-row .horizontal-line {border-top: 2px solid #eadacd; width: calc(100% - 150px); margin: 0 auto; position: absolute; top: 0; left: 50%; z-index: 0; transform: translate(-50%,0%); }
.timeline-row .verticle-line { margin: 0; padding: 0; width: 2px; border-right: 2px solid #eadacd; height: calc(100% - 150px); position: absolute; top: 0; right: 0; margin: auto 0; bottom: 0; } 
.timeline-row:nth-child(2n+2) .verticle-line { left: 0; right: inherit; } 
.corner { position: absolute; border-right: 2px solid #eadacd; width: 76px; height: 76px; right: 0; border-top: 2px solid #eadacd; top: 74.9px; border-radius: 0 70px 0 0;top: 0; } 
.timeline-row:nth-child(2n+2) .corner { right: inherit; left: 0; border-left: 2px solid #eadacd; border-right: 0; border-radius: 70px 0 0 0; } .corner.bottom { bottom: -76px; top: inherit; border-radius: 0; border-top: 0; border-bottom: 2px solid #eadacd; border-radius: 0 0 70px 0; right: 0;z-index: 1;bottom: -1px; } 
.timeline-row:nth-child(2n+2) .corner { right: inherit; left: 0; border-left: 2px solid #eadacd; border-right: 0; border-radius: 70px 0 0 0; } 
.timeline-row:nth-child(2n+2) .corner.bottom { border-radius: 0 0 0 70px; } 
.timeline-row { display: flex; justify-content:space-around; flex-wrap: wrap; padding-bottom: 0px; position: relative;/*padding: 0 66px 130px;margin-right: 111px;*/ } 
.timeline-row:nth-child(2n+2) { justify-content: space-around;text-align: right; padding:  0 2%; } 
.timeline-row:nth-child(2n+2) { flex-direction: row-reverse; } 
/*.timeline-row:nth-child(2n+2) .timeline-content-txt { text-align: center; }*/
.timeline-box { /*padding: 45px 50px 130px;*/ max-width: 185px;margin-right: 25px; position: relative; z-index: 999999;} 
.timeline-main{margin-top: 75px;} 
.timeline-row:first-child {margin: 0 0px 0 auto; max-width: 50%; justify-content: space-between; padding: 0 0 0 120px; }
.corner.bl{bottom: 0;left: 0;border-left: 2px solid #eadacd; border-bottom: 2px solid #eadacd; border-radius: 0 0 0px 100%; border-right: none; border-top: none; height: 76px; width: 76px;} .start-point .corner.bl{left: 50%; bottom: 0px; transform: translateY(100%); top: unset;} 
.timeline-box:before{content: '';position: absolute;left: 0;top: 27.5px;height: 1px;width: 100%;} 
.timeline-box-wrap { padding: 45px 0px 0; position: relative;  /*min-height: 318px;*/padding: 0;margin-bottom: 90px; } 
/*.timeline-row:after{content: ''; position: absolute; left: 50%; top: 74.5px; height: 1px; width: 91%; background-color: #aaa; transform: translateX(-50%);top: 0;} .timeline-row .verticle-line { margin: 0; padding: 0; width: 1px; border-right: 1px solid #aaa; height:calc(100% - 126px); position: absolute; top: calc( 50% + 75px );; right: 0; margin: auto 0; bottom: unset; transform: translateY(-50%);top: 50%; } */
.timeline-row:first-child::after {left: -54px;width: 97%; transform: none; } 
/*.timeline-row:first-child .timeline-box:last-child{margin-right: 5%;} */
.timeline-content { padding: 10px 10px 0;} 
.timeline-content-txt { padding: 10px 0 0 0; }
.timeline-content-txt p { display: none; } 
.timeline-box.img-right .timeline-content,.timeline-box.img-left .timeline-content{display: flex; align-items: flex-start;} 
.timeline-box.img-right .timeline-content img{margin-left: 18px;} 
.timeline-box.img-left .timeline-content img{margin-right: 18px;} 
.timeline-box.img-left .timeline-content{flex-direction: row-reverse;} 
.timeline-row:first-child .timeline-box:first-child img {
    display: block;
    margin: 0;
}
.timeline-box-wrap .timeline-content img {
    box-shadow: rgba(180, 166, 155, 0.53) 0px 3px 30px;
    z-index: 2;
    position: relative;
    border-radius: 10px;
    transition: all 0.5s ease;
}
.timeline-box-wrap .timeline-content img:hover {
    transform: scale(1.2);
    box-shadow: rgba(0, 0, 0, 0.64) 0px 5px 10px;
}
.timeline-row:last-child .corner.bottom {
    display: none;
}
.timeline-row:nth-child(2n+1) .timeline-box:last-child .timeline-box-wrap {
    text-align: center;
}
.start-point.end-point:before {
    display: none;
}
.start-point.end-point {
    position: absolute;
    bottom: 0;
    right: 0%;
    transform: translateX(50%);
}
.timeline-row:nth-child(2n+2) .start-point.end-point {
    left: 0;
    transform: translateX(-50%);
    right: unset;
}
.timeline-box.img-right .timeline-content-txt {
    text-align: right;
}
.timeline-box.img-left .timeline-content-txt {
    text-align: left;
}
.timeline-box.img-left,
.timeline-box.img-right {
    text-align: center;
}
.timeline-row:first-child .timeline-box::after {
    left: auto;
    right: 0;
    -webkit-transform: translate(100%, -50%) rotate(0deg);
    transform: translate(100%, -50%) rotate(0deg);
}
.timeline-row:first-child .timeline-box:first-child {
    width: 36%;
}
.timeline-row .timeline-box:nth-child(3)::after {
    display: none;
}
.timeline-row:last-child .verticle-line::after {
    display: none;
}

.timeline-row:first-child .timeline-box:nth-child(2)::after {
    display: none;
}
.timeline-content-img .timeline-content {
    position: relative;
}

/*==============Responsive==============*/


@media screen and (max-width: 1800px) {

.timeline-box {max-width: 185px;}
	.timeline-box.img-right .timeline-content img, .timeline-box.img-left .timeline-content img {max-width: 220px; max-height: 230px;}
  .timeline-box-wrap .timeline-content img {max-width: 100%;}
}




@media screen and (max-width: 1600px){
  .timeline-row:first-child .timeline-box:first-child {width: 38%;}
	.timeline-box {max-width: 185px;}
	.timeline-box.img-right .timeline-content img, .timeline-box.img-left .timeline-content img {max-width: 180px; max-height: 190px;}
	.timeline-box h6 {font-size: 50px;}
	.timeline-box p {font-size: 16px;}
}

@media screen and (max-width: 1440px) {
	.start-point h4 {font-size: 15px; letter-spacing: 0;}
	.timeline-box h6 {font-size: 40px;}
	.timeline-row:first-child .timeline-box:first-child {width: 45%;}
	.timeline-box p {font-size: 15px; line-height: 1.4;}
	.timeline-box {max-width: 185px;}

	.timeline-box.img-right .timeline-content img, .timeline-box.img-left .timeline-content img {max-width: 140px; max-height: 200px;}
	.timeline-box-wrap .timeline-content img {max-width: 100%;}
	.timeline-row:first-child .timeline-box:nth-child(2) {width: 150px;}
}


@media screen and (max-width: 1199px) {
	.timeline-box h6 {font-size: 34px;}
	.timeline-box {max-width: 240px;}
	.timeline-row:first-child {padding: 0 0 0 60px;}
	.timeline-row:first-child .timeline-box:first-child {width: 42%;}
	.timeline-box.img-right .timeline-content, .timeline-box.img-left .timeline-content {flex-wrap: wrap;}
	.timeline-box.img-right .timeline-content img, .timeline-box.img-left .timeline-content img {max-width: 180px; max-height: 200px;}
	.top-timeline-arrow.timeline-content-img .timeline-content::after {right: 0;}
	.img-right.timeline-content-img .timeline-content::after {top: -20px; right: -45px;}
.timeline-box.img-right .timeline-content-txt {width: 90%;}
}

@media screen and (max-width: 1024px) {
.corner {display: none;}
	.timeline-row .horizontal-line {display: none;}
	.timeline-row:first-child {max-width: 100%; padding: 0;}
	.timeline-main {margin-top: 0;}
	.timeline-row .verticle-line {right: 50%; transform: translate(50%,0); height: calc(100% - 0px);}
	.timeline-row:nth-child(2n+2) .verticle-line {left: auto; right: 50%;}
	.verticle-line::after {display: none;}
  
  .timeline-row .timeline-box {width: 100%; max-width: 100%; margin: 0;}
	.timeline-row:first-child .timeline-box:first-child {width: 100%; margin: 0;}
	.timeline-row:first-child .timeline-box:nth-child(2) {width: 100%;}
	.timeline-box p br {display: none;}
	.timeline-box h6 {transform: translate(0,-0%); padding: 0;}
	.timeline-content {padding: 0;}
	.timeline-box.img-right .timeline-content-txt {width: 100%;}
	.start-point.end-point {right: 50%;}
	.start-point h4 {margin-bottom: 0;}
	.timeline-box::after {-webkit-transform: translate(-100%,100%) rotate(180deg); transform: translate(-100%,100%) rotate(180deg); right: 50%; top: 20px; left: 50%;}
  .timeline-box-wrap {width: 50%; text-align: right; padding: 0 30px 0 0; margin: 40px 0 0 0;}
	.timeline-row .timeline-box img {margin: 0 0 0 auto;}
	.timeline-row:first-child .timeline-box:nth-child(2)::after {display: block;}
	.timeline-row:first-child .timeline-box:first-child img {margin: 0 0 0 auto;}
	.timeline-box.img-right .timeline-content img, .timeline-box.img-left .timeline-content img {margin: 0 0 0 auto;}
	.timeline-row .timeline-box:nth-child(2n) .timeline-box-wrap {margin: 40px 0 0 auto; padding: 0 0 0 30px; text-align: left;}
  .timeline-row:nth-child(2n+1) .timeline-box::after {left: auto; right: 50%; -webkit-transform: translate(0%,100%) rotate(180deg); transform: translate(0%,100%) rotate(180deg); top: 20px;}
	.timeline-row .timeline-box:nth-child(2n)::after {transform: translate(100%,100%) rotate(0deg); -webkit-transform: translate(100%,100%) rotate(0deg); right: 50%; left: auto;}
	.timeline-row .timeline-box:nth-child(3)::after {display: block;}
	.timeline-box.img-left .timeline-content-txt {text-align: right;}
	.timeline-row:last-child {padding-bottom: 70px;}
  .inner-wrapper-padding {
    padding: 0 30px;
}
}

@media screen and (max-width: 640px) {

	.timeline-box h6 {font-size: 27px;}
	.timeline-box p {font-size: 14px; line-height: 1.4;}
	.timeline-box-wrap {margin: 30px 0 0 0;}
	.timeline-row .timeline-box:nth-child(2n) .timeline-box-wrap {margin: 30px 0 0 auto;}
	.timeline-box::after, .timeline-row:nth-child(2n+1) .timeline-box::after {top: 6px;}
	.timeline-box-wrap .timeline-content img {max-width: 100%;}
	.timeline-box.img-right .timeline-content img, .timeline-box.img-left .timeline-content img {max-width: 100%; max-height: unset;}
  .inner-wrapper-padding {
    padding: 0 15px;
}
  .timeline-row{padding:0;}
}













/*---------------------
  Previous and Next Navigation links 
-----------------------*/
.nav-buttons {
    position: fixed;
    z-index: 1000;
}
.prev-button, .next-button {
    display: block;
    height: 80px;
    width:20px;
    border-radius: 0 5px 5px 0;
    transition: width 0.9s ease;
    background: #811916;
    color: #ece3dc;
    position: fixed;
    z-index: 1000;
    top: 45%;
}
.prev-button {
    left: 0px;
}
.next-button {
    border-radius: 5px 0 0 5px;
    width: 24px;
    right: 0px;
}
.prev-button:hover, .next-button:hover {
    background: #811916;
    color: #ece3dc;
    width: 100px;
}
.prev-button::before,
.next-button::before {
    content: '\f104';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 17px;
    padding: 27px 0;
    color: #eadacd;
    display: block;
    position: absolute;
    right: 6px;
}
.next-button::before {
    content: '\f105';
    left: 6px;
}
.nav-photo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0px;
    height: 80px;
    left: -80px;
    transition: width 0.9s ease, opacity 0.9s ease, left 1s ease;
    opacity: 0;
}
.next-button .nav-photo {
    left: 40px;
}
.prev-button:hover .nav-photo, .next-button:hover .nav-photo {
    left: 0; /* Slide the image fully into view */
    opacity: 1;
    object-fit: cover;
    width: 70px;
}
.next-button:hover .nav-photo {
    left: 30px;
}













/*---------------------
  Aerial Photos
-----------------------*/
.aerial-map-container {
    position: relative;
    max-width: 100%;
    display: block;
}
.aerial-map-container img {
    width: 100%;
    height: auto;
    display: block;
}
.grid-box {
    position: absolute;
    /*background: rgba(255, 0, 0, 0.3);   */
    cursor: pointer;
    border: 0px solid #000000;
    border-radius: 0px;
}
.grid-box:hover {
    background: rgba(162, 34, 23, 0.5);
    border: 5px solid #a22217;
}

@media (max-width : 576px) {
    .grid-box:hover {
        border: 2px solid #a22217;
    }
}

.box3a { top: 4.1%; left: 22.6%; width: 8.2%; height: 10.4%; }
.box4a { top: 4.1%; left: 30.8%; width: 8.2%; height: 10.4%; }

.box1 { top: 14.2%; left: 6.5%; width: 8.2%; height: 10.4%; }
.box2 { top: 14.2%; left: 14.6%; width: 8.2%; height: 10.4%; }
.box3 { top: 14.2%; left: 22.6%; width: 8.2%; height: 10.4%; }
.box4 { top: 14.2%; left: 30.8%; width: 8.2%; height: 10.4%; }
.box5 { top: 14.2%; left: 38.9%; width: 8.2%; height: 10.4%; }
.box6 { top: 14.2%; left: 46.9%; width: 8.2%; height: 10.4%; }

.box7 { top: 24.5%; left: 6.5%; width: 8.2%; height: 10.4%; }
.box8 { top: 24.5%; left: 14.6%; width: 8.2%; height: 10.4%; }
.box9 { top: 24.5%; left: 22.6%; width: 8.2%; height: 10.4%; }
.box10 { top: 24.5%; left: 30.8%; width: 8.2%; height: 10.4%; }
.box11 { top: 24.5%; left: 38.9%; width: 8.2%; height: 10.4%; }
.box12 { top: 24.5%; left: 46.9%; width: 8.2%; height: 10.4%; }
.box13 { top: 24.5%; left: 54.9%; width: 8.2%; height: 10.4%; }
.box14 { top: 24.5%; left: 63.2%; width: 8.2%; height: 10.4%; }

.box15 { top: 34.7%; left: 6.5%; width: 8.2%; height: 10.4%; }
.box16 { top: 34.7%; left: 14.6%; width: 8.2%; height: 10.4%; }
.box17 { top: 34.7%; left: 22.6%; width: 8.2%; height: 10.4%; }
.box18 { top: 34.7%; left: 30.8%; width: 8.2%; height: 10.4%; }
.box19 { top: 34.7%; left: 38.9%; width: 8.2%; height: 10.4%; }
.box20 { top: 34.7%; left: 46.9%; width: 8.2%; height: 10.4%; }
.box21 { top: 34.7%; left: 54.9%; width: 8.2%; height: 10.4%; }
.box22 { top: 34.7%; left: 63.2%; width: 8.2%; height: 10.4%; }
.box23 { top: 34.7%; left: 71.2%; width: 8.2%; height: 10.4%; }
.box24 { top: 34.7%; left: 79.4%; width: 8.2%; height: 10.4%; }

.box25 { top: 45%; left: 6.5%; width: 8.2%; height: 10.1%; }
.box26 { top: 45%; left: 14.6%; width: 8.2%; height: 10.1%; }
.box27 { top: 45%; left: 22.6%; width: 8.2%; height: 10.1%; }
.box28 { top: 45%; left: 30.8%; width: 8.2%; height: 10.1%; }
.box29 { top: 45%; left: 38.9%; width: 8.2%; height: 10.1%; }
.box30 { top: 45%; left: 46.9%; width: 8.2%; height: 10.1%; }
.box31 { top: 45%; left: 54.9%; width: 8.2%; height: 10.1%; }
.box32 { top: 45%; left: 63.2%; width: 8.2%; height: 10.1%; }
.box33 { top: 45%; left: 71.2%; width: 8.2%; height: 10.2%; }
.box34 { top: 45%; left: 79.4%; width: 8.2%; height: 10.2%; }
.box35 { top: 45%; left: 87.5%; width: 8.2%; height: 10.2%; }

.box36 { top: 55.1%; left: 6.5%; width: 8.2%; height: 10.1%; }
.box37 { top: 55.1%; left: 14.6%; width: 8.2%; height: 10.1%; }
.box38 { top: 55.1%; left: 22.6%; width: 8.2%; height: 10.1%; }
.box39 { top: 55.1%; left: 30.8%; width: 8.2%; height: 10.1%; }
.box40 { top: 55.1%; left: 38.9%; width: 8.2%; height: 10.1%; }
.box41 { top: 55.1%; left: 46.9%; width: 8.2%; height: 10.1%; }
.box42 { top: 55.1%; left: 54.9%; width: 8.2%; height: 10.1%; }
.box43 { top: 55.1%; left: 63.2%; width: 8.2%; height: 10.1%; }
.box44 { top: 55.1%; left: 71.2%; width: 8.2%; height: 10.2%; }
.box45 { top: 55.1%; left: 79.4%; width: 8.2%; height: 10.1%; }
.box46 { top: 55.1%; left: 87.5%; width: 8.2%; height: 10.1%; }

.box47 { top: 65.3%; left: 14.6%; width: 8.0%; height: 10.1%; }
.box48 { top: 65.2%; left: 22.6%; width: 8.2%; height: 10.2%; }
.box49 { top: 65.2%; left: 30.8%; width: 8.2%; height: 10.2%; }
.box50 { top: 65.2%; left: 38.9%; width: 8.2%; height: 10.2%; }
.box51 { top: 65.2%; left: 46.9%; width: 8.2%; height: 10.2%; }
.box52 { top: 65.2%; left: 54.9%; width: 8.2%; height: 10.2%; }
.box53 { top: 65.2%; left: 63.2%; width: 8.2%; height: 10.2%; }
.box54 { top: 65.3%; left: 71.2%; width: 8.2%; height: 10.2%; }
.box55 { top: 65.2%; left: 79.4%; width: 8.2%; height: 10.2%; }
.box56 { top: 65.2%; left: 87.5%; width: 8.2%; height: 10.2%; }

.box57 { top: 75.5%; left: 22.6%; width: 8.2%; height: 10.2%; }
.box58 { top: 75.5%; left: 30.8%; width: 8.2%; height: 10.2%; }
.box59 { top: 75.5%; left: 38.9%; width: 8.2%; height: 10.2%; }
.box60 { top: 75.5%; left: 46.9%; width: 8.2%; height: 10.2%; }
.box61 { top: 75.5%; left: 54.9%; width: 8.2%; height: 10.2%; }
.box62 { top: 75.5%; left: 63.2%; width: 8.2%; height: 10.2%; }

.box60a { top: 85.8%; left: 46.9%; width: 8.2%; height: 10.2%; }










/*---------------------
  Photographers Page
-----------------------*/
.photographer-img {
    margin-top: -90px;
}
.gal-photographers .card-title {
    font-size: 20px !important;
    margin-top: -20px;
}
.gal-photographers a .card-text,
.gal-photographers .card-text:hover {
    color: #212529;
}



/*---------------------
  Photographer Page
-----------------------*/
.photographer-photos {
    background: #fbf7f4;
    border-radius: 15px;
}
.photographer-bio-text {
    text-align: left;
}
.photographer-bio p {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 30px;
}
.photographer-photos .card {
    background: #fff;
    border: none;
    box-shadow: rgba(180, 166, 155, 0.23) 0px 3px 30px;
    padding: 20px 20px 7px 20px;
    margin: 20px 0;
    border-radius: 20px;
    transition: all 0.5s ease;
}
.photographer-photos .card:hover {
    background: #faf7f4;
    transform: scale(1.025);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 5px 10px
}
.photographer-photos .image-locality {
    padding-bottom: 10px;
}
#photographer-photos-carousel .splide__arrow--prev {
    left: calc(50% - 40px);
    top: 103%;
}
#photographer-photos-carousel .splide__arrow--next  {
    left: calc(50% - 6px);
    top: 103%;
}