@import url('https://fonts.googleapis.com/css2?family=Montserrat: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');




:root {
  --color-pink: #ff66c4;
  --color-turquoise: #5ce1e6;
  --color-green: #7ed957;
  --color-darkpurple: #4a1f75;
  --color-lightpurple: #9e10bd;
  --color-navygray: #393f64;
  --color-lightgray: #d9d9d9;
}

* {
  box-sizing: border-box;
  margin: 0;
  /* overflow: hidden; */
}

html {
  scroll-behavior: smooth;
}

body {

  font-family: 'Montserrat', sans-serif;

  background-image: linear-gradient(45deg,
      rgba(245, 246, 252, 0.85),
      rgba(117, 19, 93, 0.8)),
    url("../images/deposit1.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;

}

img {
  max-width: 100%;
}

/* general section styling */
.section_header {
  padding-top: 0.5em;
  margin-bottom: 0.5em;
  font-size: 5em;
  color: black;
  text-align: center;


  font-weight: normal;
  display: block;
}

section {
  /* margin-bottom: 7em; */
  scroll-margin-top: 12.5vh;
  /* margin: 0 auto; */
  /* width: 100% */
}

.contain {
  width: 80%;
  margin: 0 auto;
}

/* TITLES */
.section__subtitle {
  text-transform: uppercase;
  font-size: .9rem;

  letter-spacing: .3rem;
  color: #9e10bd;
  font-weight: 600;

}

.section__maintitle {
  text-transform: uppercase;
  font-size: 2rem;
  margin-bottom: 1.25rem;
  font-weight: 800;
}

button {
  text-transform: lowercase;
  min-width: 130px;
  height: 40px;
  color: rgb(218, 211, 211);
  padding: 1em 2em;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  outline: none;
  border-radius: 5px;
  border: none;
  box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5), 7px 7px 20px 0px rgba(0, 0, 0, .1), 4px 4px 5px 0px rgba(0, 0, 0, .1);
  background: #6e4fb7;
  z-index: 1;
  text-transform: uppercase;

}

button:hover {
  color: #6e4fb7;

}

button:hover:after {
  width: 100%;
  left: 0;
}

button:after {
  border-radius: 5px;
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  z-index: -1;
  box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5), 7px 7px 20px 0px rgba(0, 0, 0, .1), 4px 4px 5px 0px rgba(0, 0, 0, .1);
  transition: all 0.3s ease;
  background-color: #ced4da;
  right: 0;
}

button:active {
  top: 2px;
}

.tracking-in-expand {
  -webkit-animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) both;
  animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}

@-webkit-keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }

  40% {
    opacity: 0.6;
  }

  100% {
    opacity: 1;
  }
}

@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }

  40% {
    opacity: 0.6;
  }

  100% {
    opacity: 1;
  }
}



/* a {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bolder;
  color: none;
} */

li {
  list-style: none;
  padding: 0.5em 1em;
}

.allcontent {
  position: relative
}

/*header + nav bar */

/* NAVIGATION */

.header__content {
  max-height: 100px;
  /* display: none; */
  position: sticky;
  top: 0;
  background: white;
  z-index: 1000;
}



nav {
  display: flex;
  /* flex-direction: column; */
  font-size: large;
  justify-content: space-between;
  align-items: center;
  background-color: white;
}

.sideheader__logo {
  width: 100px;
  /* justify-self: auto; */
}

.toplink {
  height: 100px;
}

.nav__ul {
  display: flex;
  flex-direction: row;
}


.sidenav__li {
  list-style: none;
  padding: 0.5em 1em;
}


.sidenav__li:hover {
  background: white;
}

.navanchor {
  text-decoration: none;
  color: var(--color-navygray);
  font-size: 1em;
}


.navanchor:focus {
  color: #4444dd;
}

.header__nav-toggle {
  display: none;
}

/* #cr {
  font-size: 0.75rem;
} */
.nav:before,
.nav:after{
  display: none;
}








/* HERO */

.hero__container {
  width: 80%;
  min-height: 89vh;
  margin: auto;

}

.hero__content {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background-attachment: fixed; */
  /* background-repeat: no-repeat; */
  /* background-size: cover; */
  /* background-position: bottom; */
  padding: 10rem 0;

}

.hero__subtitle {
  color: var(--color-lightpurple);
  font-size: 1.5rem;
}

.hero__maintitle {
  font-size: 6rem;
  font-weight: 900;

  color: var(white);
  /* text-shadow: #eeeeef 1px 1px;  */
  margin-bottom: 0;
}


.hero__chrisimg {
  background-image: url('../images/Chris_hero.jpg');
  width: 500px;
  height: 500px;
  aspect-ratio: 1/1;
  background-size: cover;
  clip-path: circle(50% at 50% 50%);
  /* filter: invert(2); */

}

.hero__chrisimg::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(5deg,
      rgba(245, 246, 252, 0.5),
      rgba(117, 19, 93, 0.1));


}

.hero__text {
  /* text-align: center; */
  color: white;
}


/*Banner Slider*/
.bannerSection .owl-carousel .owl-nav button.owl-next, 
.bannerSection .owl-carousel .owl-nav button.owl-prev{
    position: absolute;
    top: 50%;
    min-width: 0;
    width: 19px;
    height: 35px;
    margin-top: -17px;
    font-size: 0;
    display: block !important;
    box-shadow: none;
    background-position: center center;
    background-size: cover;
}

.bannerSection .owl-carousel .owl-nav button.owl-prev {
    left: 40px;
    background: url(../images/left-arrow.png) no-repeat;
}
.bannerSection .owl-carousel .owl-nav button.owl-next {
    right: 40px;
    background: url(../images/right-arrow.png) no-repeat;
}

.bannerSection .owl-carousel .owl-nav button.owl-next:hover:after, 
.bannerSection .owl-carousel .owl-nav button.owl-prev:hover:after{
  background-color: transparent;
  box-shadow: none;
  transform: none;
  transition: none;
}
.bannerSection .owl-theme .owl-nav{
  margin: 0;
}
.bOvrlyText{
  display: inline-block;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.24);
  border-radius: 0;
  box-shadow: 0 0 8px rgb(255 255 255 / 50%);
  padding: 12px 24px;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 1.25rem;
  min-width: 720px;
}





/* Scroll to Top Button */



/* About */

.about {
  /* width: 90%; */
  min-height: 80vh;
  margin: auto;
  /* min-height: 100vh; */
  /* padding-top: 2em; */
  /* padding: 4rem; */
  /* background-color: #2d2261; */
  color: black;
  background-color: white;
  background-image: linear-gradient(
      /* -1deg,
    rgba(35, 19, 117, 0.73),
    rgba(245, 246, 252, 0.52) */

    );
  display: flex;
  flex-direction: column;
  justify-content: center;

}


.about::before {
  content: '';

}

.about__container {
  display: grid;
  /* padding: 2rem; */
  gap: 1em;
  /* align-items: center; */
  /* grid-template-columns: minmax(300px,600px), 200px; */
  /* grid-template-columns: 1fr 1fr; */
  grid-template-columns: repeat(auto-fit, minmax(250px, 600px));
  /* grid-template-columns: repeat(auto-fit, minmax(400px,1fr)); */

  /* grid-auto-rows: min-content; */
  justify-content: center;
  /* border: 4px solid green; */
  align-items: center;
  height: 100%;
}

.about__img {
  max-width: 100%;
  height: auto;
  /* aspect-ratio: 1/1; */
}



.about__textbox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;


}

.about__text {
  padding: 2em 2em;
  font-size: larger;

}





.imgBorder {
  padding: 20px;
  background-color: #fbf2f0;
  border: 3px solid #030202;
  box-shadow: 10px 10px 2px 0 rgba(27, 20, 20, 0.05);
}










/* events */
#events {

  width: 100%;

  padding: 5em 0;
  /* background: var(--color-navygray);
     */
  /* background: #171342; */
  background: #201743;

  color: white;
}



.img__box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  z-index: 1;
}



.event__heading {
  text-align: center;
}

.event_container {
  display: grid;
  grid-template-columns: 1fr 3fr;

  width: 70%;
  margin: 0 auto;
  /* background: red; */
  position: relative;

}


.event_details::after,
.event__imgholder::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(245, 246, 252, 0.1),
      rgba(117, 19, 93, 0.3));

}

.event_details::after:hover,
.event__imgholder::after:hover {
  content: ;
  background: unset;
}

.event__wrapper {
  width: 90%;
  margin: 0 auto;
  gap: .5rem;

}

.event__imgholder img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  /* background-image: linear-gradient(
    45deg,
    rgba(245, 246, 252, 0.52),
    rgba(117, 19, 93, 0.73)
  ); */

}

.event_details {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  /* justify-content: center; */
  text-align: center;
}

.date {
  font-size: 4rem;
  color: var(--color-navygray);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 70%;
  background: white;
}

.event {
  height: 30%;
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5em;
  background-color: gray;
  color: white;
  font-size: 1rem;
}

.location {
  justify-self: flex-start;
}




/* GALLERY */



img {
  width: 100%;
  height: auto;
}




#gallery1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2em;
  background: darkgray;
  text-align: center;
  /* margin-top: 5rem; */
  padding-top: 5rem;
  padding-bottom: 5rem;

}

/* follow ig */

#instagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* height: 100vh; */
  background: white;
  padding: 5em 0;

}



.ig__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8em;
}

.igtitle {
  color: var(--color-lightpurple);
}








/*contact section*/

.contact {
  width: 100%;
  padding: 5em 0;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2em;

}

.contact__container {
  display: flex;
  text-align: center;
  justify-content: space-between;
  align-items: center padding: 3em;
  width: 70%;
  /* margin: auto; */
  /* background: white; */
}

.contact__cta {
  flex: calc(33% - 2em);
  color: black;

}

.contact__cta:hover {
  color: white;
}

.contact__label {
  font-weight: bold;
  font-family: var(--bold-font);
  font-size: 1em;
}

.cicon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact__a {
  color: black;
}

.contact__a:hover {
  color: white;
}

/* copyright banner */
.copyright {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  font-size: 0.7rem;

}

/* New Content Section */
.bgWhite{
  background: #fff;
}
.infoContent{
  margin: 5em 0;
}
.infoContentContainer {
    margin: 0 auto;
    max-width: 1170px;
    padding-left: 15px;
    padding-right: 15px;
}
.infoContentSec{
  margin-bottom: 2em;
  border: 1px solid #000;
}
.infoContentSec:last-child{
  margin-bottom: 0;
}
.infoContentTitle{
  font-size: 2rem;
  font-weight: 800;
  padding: 0.5em 1em;
  border-bottom: 1px solid #000;
}
.infoContentImages{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
  padding: 1em;
  border-bottom: 1px solid #000;
}
.infoContentImages .icImg{
  max-width: 48%;
  overflow: hidden;
}
.infoContentImages .icImg img{
  max-width: 100%;
}
.infoContentImages.awImg .icImg{
  max-width: 48%;
  overflow: hidden;
}
.infoContentImages.fullImg .icImg{
  max-width: 100%;
}
.infoContentImages.awImg .icImg img {
    max-width: none;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.infoContentImages.awImg .icImg img {
    max-width: 100%;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.infoContentImages .icImg:last-child{
  margin-right: 0;
}
.infoContentText{
  padding: 1em;
}
.infoContentText p{
  padding: 0;
}
.text-bold{
  font-weight: 700;
}
.text-italic{
  font-style: italic;
}
.text-center{
  text-align: center;
}
.p_0{
  padding: 0;
}
.m_0{
  margin: 0;
}
.mb_16{
  margin-bottom: 16px;
}
.mt_24{
  margin-top: 24px;
}
.topBdr{
  border-top: 1px solid #000;
}
.icBottomLinks{
  display: flex;
  align-items: center;
  justify-content: center;
}
.icBottomLinks b{
  margin: 0 10px;
  font-weight: 400;
}
.icBottomLinks a{
  color: #000;
  text-decoration: none;
}
.icBottomLinks a:hover{
  color: blue;
}
.bgNone .infoContentSec{
  background-color: rgba(255, 255, 255, 0.6);
}
.bgNone .infoContentSec,
.bgNone .infoContentTitle,
.bgNone .infoContentImages,
.bgNone .topBdr{
  border-color: rgba(255, 255, 255, 0.6);
}
.sbsInner{
  display: flex;
  align-items: stretch;
}
.sbsInner.sbsContent{
  flex-direction: row-reverse;
}
.sbsInner .infoContentImages.awImg .icImg {
    max-width: 100%;
}
.sbsInner .infoContentImages.awImg .icImg img{
  height: auto;
  width: 100%;
  max-width: 100%;
}
.sbsInner .infoContentImages{
  width: 50%;
  border-bottom: 0;
}
.sbsInner .infoContentText{
  width: 50%;
  display: flex;
  align-items: center;
}
.infoContentImages.ffImgSet {
    flex-wrap: nowrap;
}
.infoContentImages.ffImgSet .icImg {
    max-width: none;
    width: 40%;
}
.infoContentImages.ffImgSet .icImg:nth-child(2) {
    width: 60%;
}
/**/
#scroll {
    position:fixed;
    right:10px;
    bottom:10px;
    cursor:pointer;
    width:50px;
    height:50px;
    background-color:#3498db;
    text-indent:-9999px;
    display:none;
    -webkit-border-radius:60px;
    -moz-border-radius:60px;
    border-radius:60px
}
#scroll span {
    position:absolute;
    top:50%;
    left:50%;
    margin-left:-8px;
    margin-top:-12px;
    height:0;
    width:0;
    border:8px solid transparent;
    border-bottom-color:#ffffff;
}
#scroll:hover {
    background-color:#e74c3c;
    opacity:1;filter:"alpha(opacity=100)";
    -ms-filter:"alpha(opacity=100)";
}


/* media queries  */
@media only screen and (min-width:951px) and (max-width:1200px) {
  body {
    /* background: green; */
  }

  .hero__maintitle {
    font-size: 5rem;
  }

  .hero__chrisimg {
    width: 400px;
    height: 400px;

  }

  .about {
    padding-top: 4rem;
  }
}



@media (max-width: 950px) {
  /* navbar  */

  body {
    background-image: unset;

  }


  .bg {
    background-image: linear-gradient(45deg,
        rgba(245, 246, 252, 0.85),
        rgba(117, 19, 93, 0.8)),
      url("../images/deposit1.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    height: 100vh;
    width: 100vw;
    z-index: -1000;
    overflow: scroll;

  }




  .everything {
    position: absolute;
    /* left: 50%;  */
    /* margin-top: 5rem; */
    /* transform: translateX(-50%); */
    width: 100%;
  }



  /* NAV SECTION */

  .header__content {
    display: block;
    margin: 0;
  }

  .header__nav-toggle {
    display: block;
    cursor: pointer;
    font-size: 1.75rem;

    color: var(--color-lightgray);
    transition: opacity 250ms ease;
    position: fixed;
    /*right: 1em;
    top: 2em;*/
    right: 16px;
    top: 16px;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.25);
    padding: 2px 7px;
  }

  .nav {
    display: none;
    position: fixed;
    height: 100%;
    /* text-align: center; */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: rgba(238, 236, 236, );
    z-index: 1000;
  }

  .sideheader__logo {
    margin: 0 auto;
  }

  .nav__ul {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
  }

  .active {
    display: flex;
  }


  /* HERO  */

  .hero__content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3em;
    padding: 5em;
  }

  .hero__maintitle {
    font-size: 4rem;
    font-weight: 900;

    color: var(white);
    /* text-shadow: #eeeeef 1px 1px;  */
    margin-bottom: 0;
  }

  .hero__chrisimg {
    max-width: 300px;
    max-height: 300px;

  }


  /* ABOUT section  */

  .about {
    padding-top: 3rem;
  }

  .about__text {
    font-size: 1em;
  }



  /* EVENTS SECTION */
  .event_container {
    grid-template-columns: 1fr;
    width: 80%;
  }


  .event {
    font-size: .75rem;
    gap: 0;
  }

  /* instagram  SECTION*/
  .ig__wrapper {
    flex-direction: column;
  }


  /* CONTACT SECTION */
  .contact {
    background: none;
  }

  .contact__container {
    flex-direction: column;
    gap: 1em;
  }

  .contact__label {
    font-size: 1rem;
  }


  .cicon {
    font-size: 2rem;
  }

  /* footer */


  .footer__container {
    flex-direction: column;
    gap: 3em;
  }

  .bOvrlyText{
    min-width: 480px;
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .sbsInner{
    display: block;
  }
  .sbsInner .infoContentImages, .sbsInner .infoContentText{
    width: 100%;
  }
  .sbsInner .infoContentText{
    padding-top: 0;
  }
  .bOvrlyText{
    min-width: 240px;
    font-size: 1.2rem;
    font-weight: 500;
    top: auto;
    bottom: 0;
  }
}
@media (max-width: 600px) {

}
.home-gallery1 {
  column-width: 285px;
  column-gap: 5px;
  padding: 50px 15px;
  width: 80%;
  margin: 0 auto;
}

.home-gallery1 img {
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

.home-gallery1 img:hover {
  transform: scale(1.1);
}

.filter {
  position: absolute;
  width: 100%;
  height: 100%;
  filter: blur(20px);
  opacity: 0.5;
  background-position: center;
  background-size: cover;
}



[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;
}

.home-gallery2 a.img-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  overflow: hidden;
  margin: 10px;
}

.home-gallery2 a.img-container::after {
  content: "";
  background: #ffffff75;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transform: translateY(100%);
  transition-duration: .75s;
}

.home-gallery2 a.img-container:hover::after {
  transform: translateY(0%);
}

.home-gallery2 a.img-container>* {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition-duration: 1s;
}

.home-gallery2 a.img-container:hover>img {
  transform: scale(1.05);
}

.home-gallery2 {
  display: grid;
  grid-gap: var(--gap);
  grid-template-columns: repeat(auto-fit, minmax(var(--width), 1fr));
  grid-auto-rows: var(--height);
  grid-auto-flow: dense;
}

.zoom_icon {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.5s;
  z-index: 9;
}

.home-gallery2>a:hover .zoom_icon {
  opacity: 1 !important;
}
}

@media (max-width: 567px) {
  .infoContentImages .icImg{
    max-width: 100%;
    margin: 0 0 5px;
  }
  .infoContentImages .icImg:last-child{
    margin: 0;
  }
}