/* Footer Styles */

footer>.footerLinks {
  background-color: #ffbc00;
  padding: 0.938rem 1.875rem;
}

footer>.copyRight {
  padding: 0.938rem 1.875rem;
}

/* Utility Styles */

@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

.roboto-thin {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.roboto-light {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-medium {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.roboto-black {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.roboto-thin-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.roboto-light-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.roboto-regular-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.roboto-medium-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.roboto-bold-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.roboto-black-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: italic;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}

h1 {
  font-weight: 700;
  color: #ff8000;
  text-decoration: underline;
  margin-bottom: 2rem;
}

h3 {font-weight:bold; margin-bottom: 1rem;}

.topBar {
  background-color: #ff8000;
}

.mainBanner {
  background-image: url(../images/banner.jpg);
  height: 270px;
  margin-bottom: 1.563rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.toJoinTeam {
  margin-top: 2rem;
}

.footerLinks {
  margin-top: 1.563rem;
}

.quickLinks ul li a {
  margin: 0;
  padding: 0;
  color: #000;
  line-height: 2rem;
}

.quickLinks ul li a:hover {
  color: #000;
  text-decoration: underline;
}

.donate ul {
  margin: 0;
  padding: 0;
}

.donate ul li {
  line-height: 2rem;
  list-style: none;
}

.socialMedia ul {
  margin: 0;
  padding: 0;
}

.socialMedia ul li {
  display: inline-block;
  line-height: 2rem;
  list-style: none;
}

.socialMedia ul li:first-child {
  margin-right: 1.2rem;
}

.address {
  line-height: 2rem;
}

.quickLinks strong,
.donate strong,
.socialMedia strong,
.address strong {
  font-size: 1.375rem;
  display: inline-block;
  margin-bottom: 0.625rem;
}

.left_Padding {
  padding-left: 2rem;
}

.right_Padding {
  padding-right: 2rem;
}

.left-top_Padding {
  padding: 2rem 0;
}

.left-right-top-bottm_padding {
  padding: 2rem;
}

.conterRow {
  margin-bottom: 2rem;
}

.count {
  text-align: center;
  font-size: 20px;
  padding: 0.1rem 0.4rem;
  background: #ff7f00;
  color: #fff;
  border-radius: 0.2rem;
}

ul.nav li {
  width: 50%;
}

ul.nav li button {
  width: 100%;
  color: #ff8000;
  font-weight: bold;
}

.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
  background-color: #ff8000;
  color: #fff;
  border-color: #dee2e6 #dee2e6 #fff; 
}


section {
  column-width: 250px;
  column-gap: 10px;
  padding: 5px;
}

section img {
  width: 100%;
  cursor: pointer;
  border-radius: 10px;
  border: 6px solid #ff8000;
  margin: 10px 0;
}

.lightbox {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  background: #7f8c8d;
  perspective: 1000;
}

.filter {
  position: absolute;
  width: 100%;
  height: 100%;
  filter: blur(20px);
  opacity: 0.5;
  background-position: center;
  background-size: cover;
}

.lightbox img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateY(0deg);
  max-height: 95vh;
  max-width: calc(95vw - 100px);
  transition: 0.8s cubic-bezier(0.7, 0, 0.4, 1);
  transform-style: preserve-3d;
}


/*.lightbox:hover img{
  transform: translate(-50%, -50%) rotateY(180deg);
}*/

[class^="arrow"] {
  height: 200px;
  width: 50px;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

[class^="arrow"]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 15px;
  height: 15px;
}

.arrowr {
  right: 0;
}

.arrowr:after {
  border-right: 1px solid white;
  border-bottom: 1px solid white;
}

.arrowl {
  left: 0;
}

.arrowl:after {
  border-left: 1px solid white;
  border-top: 1px solid white;
}

.close {
  position: absolute;
  right: 0;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.4);
  margin: 20px;
  cursor: pointer;
}

.close:after,
.close:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 100%;
  background: #e74c3c;
}

.close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.title {
  font-size: 20px;
  color: #000;
  z-index: 1000;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: 20px 0;
}