/* Colors */
:root {
  --color-default: #222;
  --color-primary: #ff8029;
  --color-secondary: #6e1719;
  --color-darkgray: #4e4039;
  --color-white: #fff;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
/* body {
  font-family: "Open Sans", sans-serif;
} */

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-secondary);
  text-decoration: none;
}

.group-link-underline .link-underline {
  background-image: linear-gradient(transparent,transparent),linear-gradient(#fff,#fff);
  background-position: 100% 100%,0 100%;
  background-repeat: no-repeat;
  background-size: 100% 1px,0 1px;
  border-bottom-width: 1px;
  transition: background-size .5s ease-in-out,background-position .5s ease-in-out !important;
  padding-top: 2px;
}
.group-link-underline:hover .link-underline {
  background-position: 100% 100%,0 100%;
  background-size: 0 1px,100% 1px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
  font-family: "Raleway", sans-serif;
}

p {
  font-size: 17px;
}
h3 {
  font-weight: 700;
  font-size: 32px;
  color: var(--color-darkgray);
}
h4 {
  font-weight: 600;
  font-size: 22px;
  color: var(--color-darkgray);
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--color-secondary);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: var(--color-primary) transparent var(--color-primary) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1.5s linear infinite;
  animation: animate-preloader 1.5s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.topbar {
  background-color: var(--color-default);
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}

.topbar .contact-info i {
  font-style: normal;
  color: #fff;
  line-height: 0;
}

.topbar .contact-info i a,
.topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

@media (max-width: 575px) {

  .topbar .contact-info i a,
  .topbar .contact-info i span {
    font-size: 13px;
  }
}

.topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

.topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-right: 10px;
}

.topbar .social-links a:hover {
  color: #fff;
}

.topbar .person-circle {
  color: var(--color-primary);
  font-size: 18px;
}
.dropdown-topbar .avatar-person-circle {
  width: 30px;
  height: 30px;
  border-radius: 100%;
}

.header.sticked {
  position: fixed !important;
  top: 0;
  right: 0;
  left: 0;
  height: 70px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  background-color: var(--color-primary);
}
/*.header {
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
  background-color: var(--color-primary);
}*/

#header {
  height: 72px;
  transition: all 0.5s;
  z-index: 997;
  background: var(--color-primary);
  box-shadow: 0px 2px 15px var(--color-default);
  position: relative;
}

#header .logo h1 {
  font-size: 30px;
  margin: 0;
  line-height: 1;
  font-weight: bold;
  letter-spacing: 2px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: var(--color-secondary);
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 50px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  grid-column-gap: 20px;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 18px;
  color: var(--color-default);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-secondary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}
.navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
}
.navbar a:hover:before,
  .navbar li:hover>a:before {
    background-color: var(--color-secondary);
  }
.navbar a:hover,
.navbar li:hover>a,
.navbar .active {
  color: var(--color-secondary);
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: var(--color-primary);
  color: #fff;
  padding: 10px 25px;
  margin-left: 30px;
  border-radius: 50px;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background-color: var(--color-secondary);
}
.navbar .getstarted:before { content: unset; }

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 40px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #34495e;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #3392D0;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: calc(100% + 25px);
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #7a6960;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(78, 64, 57, 0.9);
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #7a6960;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #eb5d1e;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #eb5d1e;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #fef8f5;
}

.section-title {
  margin-bottom: 40px;
  padding-bottom: 10px;
  position: relative;
}

.section-title:after {
    content: "";
    position: absolute;
    display: block;
    width: 80px;
    height: 3px;
    background: var(--color-secondary);
    left: 0;
    right: 0;
    bottom: 0;
}
.section-title h2 {
  font-size: 32px;
  font-weight: 600;
}

.section-title.text-center {
  text-align: center;
}
.section-title.text-center:after {
  margin: auto;
}

.section-title p {
  padding-bottom: 0;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #4e4039;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background-color: #ff802957;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 300;
  color: var(--color-default);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
}
.breadcrumbs ol li a {
  color: var(--color-secondary);
}
.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-default);
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #fef8f5;
  text-align: center;
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #4e4039;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 4px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background-color: var(--color-primary);
  color: #fff;
  transition: 0.3s;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: var(--color-secondary);
}

#footer .footer-top {
  padding: 30px 0;
  background: var(--color-default);
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
}
#footer .footer-top .footer-contact a { color: #fff; }

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--color-primary);
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 5px 10px;
  display: flex;
  align-items: center;
  position: relative;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  position: relative;
}
#footer .footer-top .footer-links ul a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-secondary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}
#footer .footer-top .footer-links ul li:hover a:before {
    visibility: visible;
    width: calc(100%);
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background-color: var(--color-primary);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background-color: var(--color-secondary);
  color: #fff;
  text-decoration: none;
}
#footer .footer-bottom { background-color: #444; }
#footer .copyright {
  text-align: center;
  float: left;
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  color: #fff;
}

@media (max-width: 575px) {

  #footer .copyright,
  #footer .credits {
    float: none;
    -moz-text-align-last: center;
    text-align-last: center;
    padding: 3px 0;
  }
}


.home-slider .swiper-button-next::after, .home-slider .swiper-button-prev::after { color: var(--color-secondary); }
.home-slider .swiper-button-prev { left: 20px; }
.home-slider .swiper-button-next { right: 20px; }
.home-slider .swiper-pagination-bullet {
  background-color: var(--color-default);
  width: 12px;
  height: 12px;
  opacity: 1;
}
.home-slider .swiper-pagination-bullet-active {
  background-color: var(--color-secondary);
}

.announcement-list {
  height: 300px;
  overflow: hidden;
  border: 1px solid var(--color-secondary);
}
.announcement-scroll {
  -webkit-animation: scroll 15s linear infinite;
  animation: scroll 20s linear infinite;
  display: flex;
  flex-direction: column;
}
.announcement-scroll:hover {
  animation: none;
}
@-webkit-keyframes scroll{0%{transform:translateY(0)}to{transform:translateY(-50%)}}
@keyframes scroll{0%{transform:translateY(0)}to{transform:translateY(-50%)}}
.announcement-list .announcement-item {
  margin: 3px 0;
  background-color: var(--color-default);
  padding: 5px;
  color: var(--bs-white);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  font-size: 16px;
}
.announcement-list .announcement-item::before {
  content: "";
  background-color: var(--color-secondary);
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transform: rotateY(0deg) scale(0.3);
  -ms-transform: rotateY(0deg) scale(0.3);
  -webkit-transform: rotateY(0deg) scale(0.3);
}
.announcement-list .announcement-item:hover::before {
  opacity: 0.8;
  transform: rotateY(180deg) scale(1);
  -ms-transform: rotateY(180deg) scale(1);
  -webkit-transform: rotateY(180deg) scale(1);
}
.announcement-list .announcement-item .announcement-title {
  font-weight: bold;
  opacity: .99;
  line-height: 1.3;
}
.announcement-list .announcement-item .announcement-date {
  font-size: 75%;
  opacity: .8;
}

.home-box-section {
  background-color: var(--bs-gray-200);
}
.home-box-section .home-box-main {
  padding: 10px 30px 50px 30px;
  position: relative;
  border: 1px solid #e8e8e8;
  text-align: center;
  background: #fff;
  box-shadow: 0 19px 38px rgb(0 0 0 / 10%), 0 15px 12px rgb(0 0 0 / 2%);
  height: 100%;
}
.home-box-section .home-box-main:before, 
.home-box-section .home-box-main:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.home-box-section .home-box-main:before {
  border-left: 1px solid var(--color-secondary);
  border-right: 1px solid var(--color-secondary);
  transform: scale(1, 0);
  -webkit-transform: scale(1, 0);
  -moz-transform: scale(1, 0);
  -ms-transform: scale(1, 0);
  -o-transform: scale(1, 0);
}
.home-box-section .home-box-main:after {
  border-top: 1px solid var(--color-secondary);
  border-bottom: 1px solid var(--color-secondary);
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
  -moz-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  -o-transform: scale(0, 1);
}
.home-box-section .home-box-main:hover:before, 
.home-box-section .home-box-main:hover:after {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.home-box-section .home-box-main .box-icon {
  font-size: 48px;
  color: var(--color-secondary);
}
.home-box-section .home-box-main .box-title-link {
  color: var(--color-default);
  font-size: 24px;
  position: relative;
  z-index: 9;
}
.home-box-section .home-box-main .box-content p {
  font-size: 16px;
}
.home-box-section .home-box-main .box-content p:last-child {
  margin-bottom: 0;
}
.home-box-section .home-box-main .box-btn {
  position: absolute;
  bottom: -20px;
  left: 0px;
  right: 0px;
  margin: 0 auto;
  z-index: 9999;
}
.home-box-section .home-box-main .box-btn-link {
  display: inline-block;
  padding: 8px 20px;
  background-color: var(--color-primary);
  color: var(--color-default);
  border-radius: 50px;
  text-align: center;
  margin-top: 20px;
  font-size: 16px;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}
.home-box-section .home-box-main .box-btn-link:hover {
  background-color: var(--color-secondary);
  color: var(--bs-white);
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about ul {
  list-style-type: none;
  padding-left: 0;
  font-size: 17px;
}
.about ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  line-height: 1.3;
}
.about ul li:before {
  position: absolute;
  left: 0px;
  content: '\f134';
  font-family: 'bootstrap-icons';
  font-size: 15px;
  color: var(--color-secondary);
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}
.gallery .photo-gallery .pg-item {
  border: 1px solid var(--color-darkgray);
  border-radius: 4px;
  align-items: center;
  display: flex;
  position: relative;
}
.gallery .photo-gallery .pg-item img {
  max-width: 100%;
  width: 100%;
  height: 225px;
}
.gallery .photo-gallery .pg-item a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
.gallery .photo-gallery .pg-item a::before {
  content: "";
  background-color: var(--color-primary);
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transform: rotateY(0deg) scale(0.3);
  -ms-transform: rotateY(0deg) scale(0.3);
  -webkit-transform: rotateY(0deg) scale(0.3);
}
.gallery .photo-gallery .pg-item:hover a::before {
  opacity: 0.6;
  transform: rotateY(180deg) scale(1);
  -ms-transform: rotateY(180deg) scale(1);
  -webkit-transform: rotateY(180deg) scale(1);
}
.gallery .photo-gallery .pg-item .pg-like {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 9;
}
.gallery .photo-gallery .pg-item .pg-like {
  padding: 5px;
  background-color: var(--color-white);
  color: var(--color-secondary);
}
.gallery .photo-gallery .pg-item .pg-like img {
  width: 25px;
  height: 25px;
}
.gallery .photo-gallery .pg-item:hover .pg-like a::before  {
  opacity: 0;
}
.gallery .photo-gallery .pg-item-main .pg-file_name {
  text-align: center;
  font-size: 18px;
  padding: 10px 5px;
}

.gallery .gallery-folder {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 20px;
}
.gallery .gallery-folder .gf-item {
  border: 1px solid var(--color-primary);
  border-radius: 4px;
}
.gallery .gallery-folder .gf-item a {
  color: var(--color-darkgray);
  font-weight: 600;
  padding: 10px;
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.gallery .gallery-folder .gf-item a:hover {
  background-color: var(--color-primary);
}

.single-gallery .gallery-breadcrumbs {
  margin-bottom: 20px;
}
.single-gallery .sg-likes-commemts {
  margin-top: 20px;
}
.single-gallery .sg-like .sg-like-link {
  color: var(--color-default);
  font-size: 18px;
}
.single-gallery .sg-like .sg-like-link .liked {
  color: var(--bs-success);
}
.single-gallery .sg-like .sg-like-link img {
  width: 25px;
  height: 25px;
}

@media (max-width: 1024px) {
  .gallery .photo-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .gallery .photo-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery .gallery-folder {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 449px) {
  .gallery .photo-gallery {
    grid-template-columns: repeat(1, 1fr);
  }

  .gallery .gallery-folder {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*--------------------------------------------------------------
# pagination
--------------------------------------------------------------*/
.main-pagination {
  margin-top: 30px;
}
.main-pagination .pagination {
  justify-content: center;
  grid-column-gap: 10px;
}
.main-pagination .page-link {
  color: var(--color-secondary);
  box-shadow: unset;
}
.main-pagination .disabled > .page-link {
  color: var(--color-default);
}
.main-pagination .active > .page-link {
  background-color: var(--color-darkgray);
  border-color: var(--color-default);
  color: var(--bs-white);
}


/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid var(--color-secondary);
  border-bottom: 3px solid var(--color-secondary);
  padding: 25px;
  background-color: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}
.contact.other-contact .info {
  border-width: 0;
}
.other-contact {
  background-color: var(--bs-gray-200);
}
.contact .info i {
  font-size: 24px;
  color: var(--color-primary);
  float: left;
  width: 50px;
  height: 50px;
  background-color: #fdf1ec;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.contact.other-contact .info i {
  font-size: 20px;
  width: 44px;
  height: 44px;
}
.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #7a6960;
}
.contact:not(.other-contact) .info .info-item {
  flex-direction: column;
  text-align: center;
}
.contact .info p {
  padding: 0;
  margin-bottom: 0;
  margin-top: 10px;
  color: var(--color-darkgray);
}
.contact.other-contact .info p {
  padding-left: 60px;
  margin-top: 0;
} 
.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #eb5d1e;
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #eb5d1e;
  color: #fff;
}

@-webkit-keyframes animate-loading {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes animate-loading {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.map iframe {
  width: 100%;
  height: 400px;
}

/*--------------------------------------------------------------
# Auth
--------------------------------------------------------------*/
.auth-section .card {
  border-color: var(--bs-gray-200);
  box-shadow: 0 19px 38px rgb(0 0 0 / 10%), 0 15px 12px rgb(0 0 0 / 2%);
}
.auth-section .card-body {
  padding-top: 30px;
  padding-bottom: 30px;
}
.auth-section .card-header {
  background-color: var(--color-secondary);
  color: var(--bs-white);
  font-size: 20px;
  font-weight: 900;
}
.auth-section .card-footer {
  padding-top: 10px;
  padding-bottom: 10px;
  color: var(--color-default);
  font-size: 16px;
  background-color: var(--bs-gray-200);
  border-top-color: var(--bs-gray-300);
}
.auth-section .card-footer .card-footer-link {
  color: var(--color-secondary);
  margin-left: 5px;
  font-weight: 700;
}
.auth-section .btn-link {
  color: var(--color-default);
}
.auth-section .select-dial-code {
  width: 100px;
  margin-right: 10px;
}
.auth-section .profile_img {
  width: 100px;
  height: 100px;
  border-radius: 100%;
}
.auth-section .profile_person {
  font-size: 60px;
  color: var(--color-secondary);
}
.auth-section .list-group-item {
  border-width: 0;
  border-top: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
  border-radius: 0;
}
.auth-section .auth-card-body .form-label {
  font-weight: bold;
}
.auth-section .profile-user-img {
  height: 100px;
  width: 100px;
  border-radius: 100%;
}

.dropdown-topbar .dropdown-item {
  margin-left: 0;
}

.reference_person_main {
  position: relative;
}
.reference_person_list {
  background-color: var(--bs-gray-300);
  position: absolute;
  width: 100%;
  display: inline-block;
  max-height: 170px;
  overflow-y: auto;
}
.reference_person_list ul {
  list-style-type: none;
  padding-left: 0;
  border: 1px solid var(--bs-gray-500);
  margin-bottom: 0;
}
.reference_person_list ul li {
  padding: 5px;
  border-bottom: 1px solid var(--color-default);
  cursor: pointer;
}
.reference_person_list ul li:last-child {
  border-bottom: 0;
}
.reference_person_list ul li:hover {
  background-color: var(--bs-gray-500);
}

.announcement .accordion-item {
  border-radius: 6px;
  margin-bottom: 20px;
}
.announcement .accordion-flush .accordion-item .accordion-button.collapsed {
  border-radius: 6px;
  background-color: var(--color-default);
  color: var(--bs-white);
}
.announcement .accordion-flush .accordion-item .accordion-button {
  border-radius: 6px 6px 0 0;
}
.announcement .accordion-button {
  box-shadow: unset;
  border-radius: 6px;
}
.announcement .accordion-button .announcement-title {
  font-size: 18px;
}
.announcement .accordion-button::after {
  background-color: var(--bs-white);
  margin-left: 10px;
}
.announcement .accordion-button:not(.collapsed) {
  color: var(--bs-white);
  background-color: var(--color-darkgray);
}
.announcement .announcement-date {
  margin-left: auto;
  width: 150px;
  text-align: right;
}
.announcement .accordion-body {
  border: 1px solid var(--color-darkgray);
  border-radius: 0 0 6px 6px;
}

.header .ashram-visitor a {
  color: var(--bs-white);
  background-color: var(--color-default);
  padding: 4px 6px;
  border-radius: 6px;
  font-size: 16px;
}
.header .ashram-visitor a::before {
  content: unset;
}
.header .ashram-visitor a.active, 
.header .ashram-visitor a:hover {
  background-color: var(--color-secondary);
  color: var(--bs-white);
}

.bootstrap-timepicker-widget table td input {
  width: 35px;
  border-color: var(--color-darkgray);
  border-width: 1px;
}

.form-check-input:checked {
  background-color: #28a745;
  border-color: #28a745;
}

@media (max-width: 767px) {
  .container-sm, .container {
    max-width: 98%;
  }
  .home-box-section .home-box-main {
    margin-bottom: 50px;
    height: auto;
  }
}

@media (max-width: 620px) {
  #footer .copyright {
    margin-bottom: 5px;
  }
  #footer .copyright, 
  #footer .credits {
    float: none;
  }
}

@media (max-width: 575px) {
  .topbar {
    height: auto;
    padding: 5px 0 3px;
  }
  .topbar .justify-content-sm-between {
    flex-direction: column;
    align-items: center;
  }
  .home-slider-section .swiper-button-next:after, 
  .home-slider-section .swiper-button-prev:after {
    font-size: 24px;
  }
}

@media (max-width: 400px) {
  .topbar .contact-info {
    flex-direction: column;
  }
}

.gallery-breadcrumbs {
  margin-bottom: 20px;
}
.gallery-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
}
.gallery-breadcrumbs ol li a {
  color: var(--color-secondary);
  font-size: 18px;
}
.gallery-breadcrumbs ol li+li {
  padding-left: 10px;
}
.gallery-breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-default);
  content: "/";
}


/*--------------------------------------------------------------
# gallery Comments
--------------------------------------------------------------*/
.sg-comments-main .comments-count {
  font-weight: bold;
}

.sg-comments-main .comment {
  margin-top: 15px;
  position: relative;
}

.sg-comments-main .comment .comment-img {
  margin-right: 14px;
}

.sg-comments-main .comment .comment-img img {
  width: 60px;
}
.sg-comments-main .comment .comment-description {
  width: 100%;
}

.sg-comments-main .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
  font-weight: bold;
  color: var(--color-default);
  transition: 0.3s;
}

.sg-comments-main .comment h5 a:hover {
  color: var(--color-primary);
}

.sg-comments-main .comment h5 .reply {
  padding-left: 10px;
  color: var(--color-primary);
}

.sg-comments-main .comment h5 .reply i {
  font-size: 20px;
}

.sg-comments-main .comment time {
  display: inline-block;
  font-size: 12px;
  margin-left: 5px;
  margin-right: 5px;
  font-weight: normal;
}

.sg-comments-main .comment.comment-reply {
  padding-left: 40px;
}

.sg-comments-main .comment .comment-action {
  font-size: 12px;
  font-weight: normal;
  margin-left: 5px;
  margin-right: 5px;
  cursor: pointer;
}

.sg-comments-main .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.sg-comments-main .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.sg-comments-main .reply-form p {
  font-size: 14px;
}

.sg-comments-main .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.sg-comments-main .reply-form input:focus {
  box-shadow: none;
  border-color: rgba(0, 131, 116, 0.8);
}

.sg-comments-main .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.sg-comments-main .reply-form textarea:focus {
  box-shadow: none;
  border-color: rgba(0, 131, 116, 0.8);
}

.sg-comments-main .reply-form .form-group {
  margin-bottom: 25px;
}

.sg-comments-main .reply-form .btn-primary {
  border-radius: 50px;
  padding: 14px 40px;
  border: 0;
  background-color: var(--color-secondary);
}

.sg-comments-main .reply-form .btn-primary:hover {
  background-color: rgba(248, 90, 64, 0.8);
}