/* @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Cookie&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

/* DELETE THIS BEGINS */
main > p{
    color: transparent;
}
/* DELETE THIS ENDS */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    line-height: 1.4;
	--bs-bg-opacity: 1;
	background-color: rgba(var(--bs-light-rgb),var(--bs-bg-opacity)) !important;
    color: #6E6E6E;
}
ul, li{
    list-style: none;
}
ul, li, a, p, h1, h2, h3, h4, h5, h6{
    margin: 0;
    padding: 0;
    line-height: 1.1;
}
h3{
    font-size: 1.4rem;
    font-weight: 600;
}
a{
    text-decoration: none;
    color: #5d5d5d;
    transition: all .4s ease-in-out;
}
a,
a:active,
a:focus {
    color: #5d5d5d;
    text-decoration: none;
    transition-timing-function: ease-in-out;
    -ms-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-duration: .4s;
    -ms-transition-duration: .4s;
    -moz-transition-duration: .4s;
    -webkit-transition-duration: .4s;
    -o-transition-duration: .4s;
}
a:hover{
    color: var(--primary-bg-color);
}
img{
    width: 100%;
    height: auto;
}
p{
    line-height: 1.4;
}
/* Selection */
::-moz-selection {
	background-color: var(--primary-bg-color);
	color: var(--secondary-text);
	text-shadow: none;
}
::selection {
	background-color: var(--primary-bg-color);
	color: var(--secondary-text);
	text-shadow: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.row {
	--bs-gutter-x: 0rem !important;
	--bs-gutter-y: 0 !important;
}

/* Variables */
:root{
    --primary-bg-color: #f26248;
    --secondary-bg-color: #004aad;
    --background-color: #2b2b2b;
    --primary-text: #243b60;
    --secondary-text: #d9d9d9;
    --dark-white-text: #fdfcfc;
    --light-border: #cccccc33;
    --dark-bg: #212529;
}

.primary-bg-color{
    background-color: var(--primary-bg-color);
}
.secondary-bg-color{
    background-color: var(--secondary-bg-color);
}
.text-white{
    color: var(--secondary-text);
}
/* Master Button (Default: Inverse) */
.donate-btn {
    border: 0;
    color: var(--dark-white-text);
    font-size: 15px;
    font-weight: 500;
    min-height: 49px;
    display:inline-flex;
    align-items: center;
    min-width: 150px;
    justify-content: center;
    column-gap: 10px;
    border-radius: 50px;
    position: relative;
    z-index: 1;
    padding: 5px 30px;
    overflow: hidden;
}
.donate-btn:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 50%;
    z-index: -1;
    background: #000;
    opacity: 0.1;
    transition: all 0.4s ease;
}
.donate-btn:hover {color: var(--dark-white-text);}
.donate-btn:hover:before {top: 50%;}
.donate-btn.white{
    background-color: var(--dark-white-text);
    color: #312e2e;
    font-weight: 600;
}
.donate-btn.dark{background-color: #312e2e;}
.donate-btn.dark2{background-color: #5a5858;}
.donate-btn.small {
    min-height: 40px;
    font-size: 13px;
    min-width: 100px;
}
.donate-btn.smallest{
    min-height: 35px;
    font-size: 11px;
    min-width: 100px;
    padding: 0 15px
}
.donate-btn.round{
    border-radius: 150px;
    min-width: 0;
    min-height: 0;
    width: 50px;
    height: 50px;
    padding:0
}

.donate-btn ion-icon {font-size: 35px}
.donate-btn ion-icon.compact{margin-left: -24px}

/* Header Area */
header{
    /* margin-bottom: 125rem; */
    padding: 1.5rem;
    background-color: #fefefe;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}
header.sticky {
	margin-top: 0;
	z-index: 3;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

.sticky {
	position: fixed;
	top: 0;
	width: 100%;
    padding: 0.3rem;
    transition: all 0.4s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
header.sticky .top-header {
    display: none;
    transition: all 0.4s ease-in-out;
}
header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .logo img{
    max-width: 320px;
}
.menu{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}
.menu .main-menu{
    display: flex;
    gap: 1.5rem;
    justify-content: space-around;
    align-items: center;
}
.menu .main-menu li a {
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    color: #333;
    position: relative;
    padding-bottom: 4px;
}
.menu .main-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-bg-color);
    transition: width 0.4s ease-in-out;
}
.menu .main-menu li a:hover {
    color: var(--primary-bg-color);
}
.menu .main-menu li a:hover::after {
    width: 100%;
}

.extra-buttons{
    display: flex;
    align-items: center;
}

/* Switch Language */
.language-switcher .language {
  display: inline-block;
  margin-left: 25px;
  position: relative;
}
.language-switcher .language .language-btn {
  position: relative;
  text-decoration: none;
  width: 85px;
  text-align: left;
  -webkit-transition: .5s;
  transition: .5s;
  color: var(--funfact);
}
.language-switcher .language a {
    display: flex;
    align-items: center;
}
.language-switcher .language a img {
    width: 24px;
}
.language-switcher .language .language-btn span {
  margin-right: 4px;
}
.language-switcher .language .language-btn i::before {
  font-size: 14px;
}
.language-switcher .language .language-btn:hover {
  color: #e3d8d8;
}
.language-switcher .language .language-btn::after {
  content: "";
  position: absolute;
  right: -3px;
  font-family: "Font Awesome 5 Pro";
  font-weight: 700;
  top: 0;
  font-size: 16px;
}
.language-switcher .language .language-dropdown {
  text-align: center;
  position: absolute;
  z-index: 10;
  top: 36px;
  right: -13px;
  width: 120px;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: .5s;
  transition: .5s;
}
.language-switcher .language .language-dropdown.open {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  background: #31314d;
}
.language-switcher .language .language-dropdown{
    border: 1px solid #efefef;
}
.language-switcher .language .language-dropdown li {
  position: relative;
  background-color: var(--dark-white-text);
  z-index: -1;
}
.language-switcher .language .language-dropdown li a {
  display: block;
  position: relative;
  padding: 5px 10px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
}
.language-switcher .language .language-dropdown li a img{
    width: 24px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}
.language-switcher .language .language-dropdown li a:hover img{
    border: 2px solid #fff;
}
.language-switcher .language .language-dropdown li a:hover {
  background: var(--primary-bg-color);
}
.language-switcher .language .language-dropdown li :last-child a {
  border-bottom: none;
}
/* End Swith Language Styles */

/* Mobile Menu Toggle Button */
.menu-button{
    display: none;
}
.menu-button .hamburger, .sidebar-button .hamburger {
    display:inline-block;
    width:28px;
    cursor:pointer;
    margin-right:18px;
    vertical-align:middle;
    overflow:hidden
}
.menu-button .hamburger>span, .sidebar-button .hamburger>span {
    -webkit-transition:all .35s ease-in-out;
    -moz-transition:all .35s ease-in-out;
    -ms-transition:all .35s ease-in-out;
    -o-transition:all .35s ease-in-out;
    transition:all .35s ease-in-out;
    display:block;
    width:100%;
    height:2px;
    /* background-color:rgba(250,250,250,.7019607843); */
    background-color:#12296d;
    margin-bottom:8px
}
.menu-button .hamburger>span:nth-child(2n), .sidebar-button .hamburger>span:nth-child(2n) {
    width:60%
}
.menu-button .hamburger>span:last-child, .sidebar-button .hamburger>span:last-child {
    margin-bottom:0
}
.menu-button .hamburger:hover>span, .sidebar-button .hamburger:hover>span {
    width:100%;
    background:#12296d;
    -webkit-animation:bar .4s;
    animation:bar .4s
}
.menu-button .hamburger:hover>span::nth-of-type(2), .sidebar-button .hamburger:hover>span::nth-of-type(2) {
    -webkit-animation-delay:.1s;
    animation-delay:.1s
}
.menu-button .hamburger:hover>span:nth-of-type(3), .sidebar-button .hamburger:hover>span:nth-of-type(3) {
    -webkit-animation-delay:.2s;
    animation-delay:.2s
}
@keyframes bar {
    0% {
      transform:translateX(0)
    }
    50% {
      transform:translateX(100%)
    }
    50.001% {
      transform:translateX(-100%)
    }
    to {
      transform:translateX(0)
    }
}
/* Mobile Menu Toggle Button Ends */

/* Mobile Menu Sidebar */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 4;
    display: none;
    cursor: url('../img/x-regular-24.png'), auto;
}
.mobile-menu, .side-details {
    height: 100%;
    width: 320px;
    display: none;
    position: fixed;
    z-index: 5;
    top: 0;
    right: 0;
    overflow-x: hidden;
    box-shadow: -5px 0 5px 0.5px #292929a8;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='768' height='1600' preserveAspectRatio='none' viewBox='0 0 768 1600'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1438%26quot%3b)' fill='none'%3e%3crect width='768' height='1600' x='0' y='0' fill='url(%26quot%3b%23SvgjsLinearGradient1439%26quot%3b)'%3e%3c/rect%3e%3cpath d='M768 0L463.19 0L768 678.68z' fill='rgba(255%2c 255%2c 255%2c .1)'%3e%3c/path%3e%3cpath d='M463.19 0L768 678.68L768 1168.6599999999999L235 0z' fill='rgba(255%2c 255%2c 255%2c .075)'%3e%3c/path%3e%3cpath d='M235 0L768 1168.6599999999999L768 1264.06L91.4 0z' fill='rgba(255%2c 255%2c 255%2c .05)'%3e%3c/path%3e%3cpath d='M91.39999999999998 0L768 1264.06L768 1287.1399999999999L39.53999999999998 0z' fill='rgba(255%2c 255%2c 255%2c .025)'%3e%3c/path%3e%3cpath d='M0 1600L93.27 1600L0 1472.22z' fill='rgba(0%2c 0%2c 0%2c .1)'%3e%3c/path%3e%3cpath d='M0 1472.22L93.27 1600L467.31 1600L0 1152.22z' fill='rgba(0%2c 0%2c 0%2c .075)'%3e%3c/path%3e%3cpath d='M0 1152.22L467.31 1600L546.78 1600L0 558.48z' fill='rgba(0%2c 0%2c 0%2c .05)'%3e%3c/path%3e%3cpath d='M0 558.48L546.78 1600L674.13 1600L0 354.83000000000004z' fill='rgba(0%2c 0%2c 0%2c .025)'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1438'%3e%3crect width='768' height='1600' fill='white'%3e%3c/rect%3e%3c/mask%3e%3clinearGradient x1='-27.08%25' y1='13%25' x2='127.08%25' y2='87%25' gradientUnits='userSpaceOnUse' id='SvgjsLinearGradient1439'%3e%3cstop stop-color='rgba(14%2c 42%2c 71%2c 1)' offset='0'%3e%3c/stop%3e%3cstop stop-color='rgba(255%2c 255%2c 255%2c 1)' offset='0'%3e%3c/stop%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e");
}
.slide-left{    
    -webkit-animation: slide-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}  
@-webkit-keyframes slide-left {
    0% {
      -webkit-transform: translateX(300px);
      transform: translateX(300px);
    }
    100% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
}
  
@keyframes slide-left {
    0% {
      -webkit-transform: translateX(300px);
      transform: translateX(300px);
    }
    100% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
}
  
.slide-right{    
    -webkit-animation: slide-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}  
@-webkit-keyframes slide-right {
    0% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(300px);
      transform: translateX(300px);
    }
}
  
  @keyframes slide-right {
    0% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(300px);
      transform: translateX(300px);
    }
  }
.sidebar-top {
	position: sticky;
	top: 0;
	z-index: 4;
	padding-bottom: 1rem;
}
.sidebar-logo {
	padding: 1.5rem .5rem;
	background: #fff;
    text-align: center;
    & p{
        margin-top: 1rem;
    }
}
.sidebar-logo img{
    max-height: 120px;
    object-fit: contain;
}
.side-search {
	display: block;
	position: relative;
	background-color: #fff;
	padding: 10px 15px;
	box-shadow: 0 5px 13px rgba(0,0,0,.1294117647);
}
.side-search input{
	font-family: "Mukta", sans-serif;
	padding: 0 35px 0 0;
	font-size: 17px;
	outline: 0;
	transition: .3s ease;
	width: 100%;
	border: none;
	background: 0 0;
}
.side-search input[type="submit"] {
	width: auto;
	position: absolute;
	top: 12px;
	cursor: pointer;
	border: none;
	right: 12px;
	background-color: rgba(241,241,241,.4784313725);
	background: url(../img/search-icon.png);
	padding: 0;
	width: 20px;
	font-size: 0;
	height: 36px;
	background-repeat: no-repeat;
	opacity: .7;
}
.sidebar-featured{
    font-size: 1.1rem;
    text-align: center;
}
.sidebar-english {
    background-color: #dadada;
	position: sticky;
	bottom: 0;
	padding: 1.25rem 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.thumb-gallery-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* max-width: 600px; */
    margin: 0 auto;
    padding: 1rem 1rem 2rem 1rem;
}
  
.thumb-gallery-wrapper img {
    width: calc(33.33% - 10px);
    height: 5rem;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 0.5rem;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
  
@media (max-width: 600px) {
    .thumb-gallery-wrapper img {
      width: calc(50% - 10px);
    }
}
.sidebar-contact{
    padding: 1rem 1.5rem;
}
.sidebar-section-title{
    margin-bottom: 2rem;
}
.sidebar-section-title h3{
    font-size: 1.4rem;
    font-weight: 700;
    color: #12296d;
}
.our-address, .our-email, .our-phone{
    margin-bottom: 1.5rem;
}
.our-address h4, .our-email h4, .our-phone h4,.follow-us h4{
    font-size: 1.2rem;
    font-weight: 600;
    color: #12296d;
    margin-bottom: 0.5rem;
}
.our-address i, .our-email i, .our-phone i{
    padding: 0.3rem;
    margin: 0.25rem 0.2rem;
    border-radius: 50%;
    color: #fc253f;
    border: 2px solid #fc253f;
}
.our-email{
    margin-bottom: 1.5rem;
}

@keyframes slideIn {
    from {
        max-height: 0;
        opacity: 0;
    }
    to {
        max-height: 500px;
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        max-height: 500px;
        opacity: 1;
    }
    to {
        max-height: 0;
        opacity: 0;
    }
}

/* Mobile Menu Sidebar Ends */


/* FOOTER AREA - BEGINS */
footer {
	padding: 7.5rem 0 5rem 0;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='2000' height='1000' preserveAspectRatio='none' viewBox='0 0 2000 1000'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1021%26quot%3b)' fill='none'%3e%3crect width='2000' height='1000' x='0' y='0' fill='rgba(4%2c 25%2c 75%2c 1)'%3e%3c/rect%3e%3cpath d='M114 1000L1114 0L1648 0L648 1000z' fill='url(%26quot%3b%23SvgjsLinearGradient1022%26quot%3b)'%3e%3c/path%3e%3cpath d='M776 1000L1776 0L2452.5 0L1452.5 1000z' fill='url(%26quot%3b%23SvgjsLinearGradient1022%26quot%3b)'%3e%3c/path%3e%3cpath d='M1925 1000L925 0L80.5 0L1080.5 1000z' fill='url(%26quot%3b%23SvgjsLinearGradient1023%26quot%3b)'%3e%3c/path%3e%3cpath d='M1320 1000L320 0L-500.5 0L499.5 1000z' fill='url(%26quot%3b%23SvgjsLinearGradient1023%26quot%3b)'%3e%3c/path%3e%3cpath d='M1470.0868481147645 1000L2000 470.0868481147644L2000 1000z' fill='url(%26quot%3b%23SvgjsLinearGradient1022%26quot%3b)'%3e%3c/path%3e%3cpath d='M0 1000L529.9131518852356 1000L 0 470.0868481147644z' fill='url(%26quot%3b%23SvgjsLinearGradient1023%26quot%3b)'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1021'%3e%3crect width='2000' height='1000' fill='white'%3e%3c/rect%3e%3c/mask%3e%3clinearGradient x1='0%25' y1='100%25' x2='100%25' y2='0%25' id='SvgjsLinearGradient1022'%3e%3cstop stop-color='rgba(15%2c 70%2c 185%2c 0.2)' offset='0'%3e%3c/stop%3e%3cstop stop-opacity='0' stop-color='rgba(15%2c 70%2c 185%2c 0.2)' offset='0.66'%3e%3c/stop%3e%3c/linearGradient%3e%3clinearGradient x1='100%25' y1='100%25' x2='0%25' y2='0%25' id='SvgjsLinearGradient1023'%3e%3cstop stop-color='rgba(15%2c 70%2c 185%2c 0.2)' offset='0'%3e%3c/stop%3e%3cstop stop-opacity='0' stop-color='rgba(15%2c 70%2c 185%2c 0.2)' offset='0.66'%3e%3c/stop%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e");
}
.footer-title {
    color: var(--primary-bg-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.footer-title span {
    background-color: var(--dark-white-text);
    padding: 0.5rem 1rem;
}
.footer-title::after {
    content: "";
    flex-grow: 1;
    height: 3px;
    background-color: var(--dark-white-text); 
}
.footer-logo{
    background-color: #fefefe;
    padding: 1rem;
    border-radius: 1rem;
}
.contact-info-title .footer-title{
    padding: 0 20%;
}
.contact-infos{
    display: flex;
    justify-content: center;    
}
.contact-infos .infos li{
    padding: 0.75rem 0;
}
.contact-infos .infos a{
    color: var(--secondary-text);
    display: flex;
    align-items: center;
}
.contact-infos .infos a span{
    font-size: 2rem;
    margin-right: 0.5rem;
}
/* Footer Navigation */
.footer-navigation .menu{
	display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}
.footer-navigation .menu .menu-item {
	padding: .5rem 0;
    transition: all .3s ease;
    min-width: 40%;
}
.footer-navigation .menu .menu-item::after{
    content: none;
    position: relative;
}
.footer-navigation .menu .menu-item:hover {
	padding-left: .5rem;
}
.footer-navigation .menu .menu-item::before {
    content: "•";
	color: var(--secondary-text);
    margin-right: .5rem;
    font-size: 1rem;
}
.footer-navigation .menu .menu-item a{
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--secondary-text);
}
.footer-navigation .menu .menu-item.active{
    border-bottom: none;
}
.footer-navigation .menu .menu-item.active a{
    color: var(--primary-bg-color);
}

footer .donate-button{
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-social{
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}
.footer-social li i{
    color: #ededed;
    font-size: 1.15rem;
    padding: 0.75rem;
    background-color: #12296d;
    border-radius: 50%;
    min-width: 2.6rem;
    text-align: center;
    transition: all 0.4s ease;
}
.footer-social li:hover i{
    border-radius: 25%;
    color: #12296d;
    background-color: #efefef;
}
.footer-our-team{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    & li{
        display: flex;
        align-items: center;
        gap: 0.75rem;
        & i{
            color: #ededed;
            padding: 0.56rem 0.6rem;
            border: 2px solid #dedede;
            border-radius: 50%;
        }
        & .member-details{
            & span{
                font-size: 0.85rem;
                color: #dedede;
            }
            & h4{
                font-size: 0.95rem;
                color: #ededed;
                margin-top: 0.4rem;
            }
        }
    }
    & li:last-child{
        padding-bottom: 2.5rem;
    }
}


/* Copyright Begins */
.copy{
    background-color: #212529;
    padding: 1rem 0;
}
.foot-btm{
    color: #ededed;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
}
.payment-methods{
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 2rem;
}


/* MEDIA QUERIES */
@media (320px <= width <= 720px) {
    .container{
        overflow: hidden;
        padding: 0.5rem 1rem;
    }
    header .container{
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        justify-content: space-between;
        align-items: center;
    }
    header .logo{
        display: block;
    }
    .logo img {
        max-height: 4rem;
    }
    .social {
        margin-right: 1.25rem;
    }
    .sidebar-button{
        display: none;
    }
    .menu-button{
        display: block;
    }
    .social li i {
        padding: 0.4rem;
        font-size: 0.8rem;
    }
    header .menu .main-menu{
        display: none;
    }
    .thumb-gallery-wrapper{
        display: none;
    }
    footer .donate-button{
        margin-bottom: 2.5rem;
    }
    footer {
        padding: 6rem 0 3rem 0;
    }
    .contact-info-title .footer-title {
        padding: 0;
    }
    ul.infos{
        margin: 2.5rem 0;
    }
    .foot-btm {
        flex-direction: column-reverse;
    }
    .copyright{
        text-align: center;
    }
}
@media(max-width:991px){
    /* Sidebar Menu */
    .sidebar-menu{
        padding: 0 1.5rem;
        background-color: #12296d;
    }
    .sidebar-menu > ul > li{
        display: block;
    }
    .sidebar-menu > ul > li:not(:last-child){
        margin-right: 0;
    }
    .sidebar-menu li{
        border-bottom: 1px solid #dedede22;
    }
    .sidebar-menu li:last-child{
        border-bottom: none;
    }
    .sidebar-menu a{
        font-size: 1.1rem;
        color: #dedede;
        font-weight: 500;
        line-height: 1.5;
        display: block;
    }
    .sidebar-menu .dropdown{
        position: relative;
    }
    .sidebar-menu > ul > li > a{
        padding: 0.75rem 0;
    }
    .sidebar-menu > ul > .dropdown > a{
        padding-right: 2rem;
    }
    .sidebar-menu i{
        font-size: 0.75rem;
        pointer-events: none;
        user-select: none;
        color: #dedede;
        position: absolute;
        top: 0.5rem;
        height: 2rem;
        width: 2rem;
        border: 1px solid #cccccc55;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        pointer-events: auto;
    }
    .sidebar-menu .dropdown.active > i{
        background-color: #ccc7;
        transform: rotate(180deg);
    }
    .sidebar-menu > ul > li> i{
        right: 0;
    }
    .sidebar-menu .sub-menu {
        position: static;
        opacity: 1;transform: none;
        visibility: visible;
        padding: 0;
        transition: none;
        box-shadow: none;
        width: 100%;
        display: none;
    }
    .sidebar-menu .dropdown.active > .sub-menu{
        display: block;
    }
    .sidebar-menu .sub-menu li:last-child{
        border: none;
    }
    .sidebar-menu .sub-menu a{
        padding: 12px 0 12px 15px;
    }
    .sidebar-menu .sub-menu .sub-menu a{
        padding-left: 2rem;
    }
    .sidebar-menu .sub-menu .sub-menu .sub-menu a{
        padding-left: 3rem;
    }
    .sidebar-menu .sub-menu-right{
        left: 100%;
        top: 0;
    }
    .sidebar-menu .sub-menu span{
        background-image: none;
    }
    .sidebar-menu .sub-menu i{
        transform: none;
        right: 0;
    }
    .sidebar-menu li:hover > .sub-menu{
        opacity: 1;
        transform: none;
        visibility: visible;
        transition: all 0.5s ease;
    }
    .sidebar-menu .sub-menu a{
        padding: 6px 24px;
    }
    .sidebar-menu .sub-menu .dropdown > a{
        padding-right: 2rem;
    }
    .sidebar-menu .sub-menu span{
        background-image: linear-gradient(hsl(0, 0%, 100%), hsl(0, 0%, 100%));
        background-size: 0 1px;
        background-repeat: no-repeat;
        background-position: 0 100%;
        transition: background-size 0.5s ease;
    }
    .sidebar-menu .sub-menu li:hover > a > span{
        background-size: 100% 1px;
    }
    .sidebar-menu .sub-menu i{
        transform: rotate(-90deg);
        right: 1.5rem;
    }
}

/* Back To Top */
#btn-back-to-top {
	position: fixed;
	bottom: 2rem;
	right: 1.5rem;
	display: none;
	border-radius: 50%;
	padding: .5rem 0.72rem;
    z-index: 3;
    background-color: var(--secondary-bg-color);
    color: #dedede;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    transition: all 0.4s ease-in-out;
    animation: back-to-top-btn-bounce 3s linear infinite;
    transform-origin: bottom;
}
#btn-back-to-top:hover {
    background-color: var(--primary-bg-color);
}
.bounce-effect {
    animation-name: back-to-top-btn-bounce;
    animation-timing-function: ease;
}
@keyframes back-to-top-btn-bounce {
    0%   { transform: translateY(0); }
    30%  { transform: translateY(-2rem); }
    50%  { transform: translateY(0); }
    100% { transform: translateY(0); }
}
@media (min-width: 721px) and (max-width: 991px){
    header {
        max-height: 9rem;
    }
    .header{
        padding: 1rem 0 0.5rem 0;
    }
    .menu-button{
        display: inline;
    }
    .header .sidebar-button{
        display: none;
    }
    footer .container .row .col-12.col-lg-4.col-md-6,
    footer .container .row .col-12.col-lg-3.col-md-6,
    footer .container .row .col-12.col-lg-2.col-md-6{
        margin-bottom: 1.5rem;
    }
}