/* FONT IMPORT */

/* Google Font */

@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100..900;1,100..900&family=Syne:wght@400..800&display=swap");

/* Local Font */
/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */

:root {
  --white: #fff;
  --black: #000;
  --primary: #ff0000;
  --secondary: #333333;
  font-family: "Oswald", sans-serif;
  font-family: "Roboto", sans-serif;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
  font-family: "Syne", sans-serif;
}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #828282;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  margin: 0;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.img {
  perspective: none;
  overflow: hidden;
  transform-style: preserve-3d;
}

.img img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform, box-shadow;
  display: block;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

figure {
  margin: 0;
}

/* Cursor Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 7px;
  height: 7px;
  z-index: 10000001;
  background-color: var(--primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  opacity: 0.3;
}

/* Cursor End */

/* PRELOADER */

body.loading {
  overflow: hidden;
  height: 100vh;
}

.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: start;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 11113;
}

.preLoader .counter {
  color: var(--white);
  font-size: 15rem;
  font-family: var(--font-heading);
  font-weight: 700;
  position: absolute;
  bottom: 0rem;
  right: 5rem;
}

.preLoader .bar {
  height: 20%;
  width: 100vw;
  background-color: var(--black);
}

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
  font-size: 1.125rem;
  text-transform: capitalize;
  font-weight: 500;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  line-height: normal;
  border-radius: 50px;
  color: var(--black);
  border: 1px solid;
}

.themeBtn.borderBtn {
  background: transparent;
  border: 1px solid #fff;
  padding: 1.04em 2em;
}

/* NAV HEADER CSS */

header {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 111;
  top: 0;
  width: 100%;
  padding: 1rem 0;
  transition: 0.3s ease-in-out;
  background-color: var(--black);
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-nav {
  align-items: center;
  gap: 2.5rem;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
  font-weight: bold;
  padding: 0 0;
  display: inline-block;
  font-family: "Roboto", sans-serif;
  position: relative;
}

/* !NAV HEADER CSS */

/* MAIN HERO SLIDER CSS */

.main-slider {
  height: 100vh;
  background-size: cover;
}

.homeSlider.swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide {
  overflow: hidden;
}

.homeSlider .swiper-pagination {
  bottom: 8rem;
  width: fit-content;
  left: 18rem;
}

.homeSlider .swiper-button-prev,
.homeSlider .swiper-button-next {
  width: 4.35rem;
  height: 4.35rem;
  font-size: 1rem;
  color: #fff;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.28);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.homeSlider .swiper-button-next {
  right: 1rem;
}

.homeSlider .swiper-button-prev {
  left: 1rem;
}

.homeSlider .swiper-button-next:hover,
.homeSlider .swiper-button-prev:hover {
  background: var(--white);
  color: var(--black);
}

.homeSlider .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  display: inline-block;
  margin: 0 0.5rem !important;
  opacity: 1;
  border: 1px solid var(--white);
  background: transparent;
}

.homeSlider .swiper-pagination-bullet-active {
  background: var(--white);
  position: relative;
}

.homeSlider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 95px;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 19.25rem;
}

.main-slider h1 {
  margin: 0;
  color: var(--white);
  font-size: 9.5625rem;
  line-height: 1.2;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: -3.84px;
  font-family: "Oswald", sans-serif;
}

.main-slider p {
  color: var(--white);
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 8px;
  font-family: "Roboto";
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-social li a i {
  color: var(--white);
  font-size: 1.125rem;
}

.nav-social li a i:hover {
  transform: scale(1.09);
  transition: 0.9s ease;
}

.homeSlider .slide-inner::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgb(0 0 0 / 50%);
  z-index: -1;
}

.slideOne h3 {
  font-size: 0.75rem;
  font-family: "Roboto";
  font-weight: 400;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 8px;
  display: flex;
  align-items: center;
  gap: 14.6875rem;
  line-height: 2.6;
}

.slideOne h3::before {
  position: absolute;
  content: "";
  height: 1px;
  background-color: var(--white);
  left: -51%;
  right: 0;
  margin: auto;
  width: 207px;
}

/* !MAIN HERO SLIDER CSS */

/* About Sec Css Start */

.mainHead {
  font-size: 3.125rem;
  font-weight: 600;
  text-transform: none;
  line-height: 1;
}

.about-content p {
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--black);
}

.about-content {
  padding-left: 1rem;
}

.about-content p + p {
  margin: 1.875rem 0;
}

.about-content .mainHead {
  margin-bottom: 0.625rem;
}

.about-images {
  display: flex;
  align-items: center;
  gap: 1.875rem;
  position: relative;
  align-items: end;
}

.about-images figure.about-imag {
  flex-shrink: 0;
}

figure.about-img {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

.about-images::before {
  position: absolute;
  content: "";
  height: 150px;
  width: 270px;
  background: linear-gradient(186deg, rgb(255 255 255 / 83%), #f9e7e6);
  border-radius: 20px;
  right: 0;
  top: 0;
  z-index: -1;
}

section.about-sec {
  padding: 6rem 0 18rem;
}

.about-images::after {
  position: absolute;
  content: "";
  height: 150px;
  width: 270px;
  background: linear-gradient(353deg, rgb(255 255 255 / 83%), #f9e7e6);
  border-radius: 20px;
  bottom: -11rem;
  left: 0;
  z-index: -1;
  top: unset;
}

/* About Sec Css End  */

/* Video Sec Css Start */
.video-sec {
  height: 964px;
  background: url(../images/videoimg.webp) center/cover fixed;
  align-content: center;
  text-align: center;
  margin: 6.25rem 0;
}

.video-sec a i {
  height: 3.75rem;
  width: 3.75rem;
  display: grid;
  place-items: center;
  margin: auto;
  background-color: var(--white);
  color: #1f1d1c;
  border-radius: 50px;
}

.video-sec a i:hover {
  transform: scale(1.09);
  transition: 0.8s ease;
}

.video-sec::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgb(0 0 0 / 65%);
}

/* Video Sec Css End */

/* YouTube Sec Css Start */

section.youtube-sec {
  padding: 3.75rem 70px 0;
  background-color: #e8e8e8;
  margin-bottom: 6.25rem;
}

.youtube-wrapp {
  position: relative;
}

.youtube-wrapp a {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  inset: 0;
}

.youtube-wrapp a i {
  height: 3rem;
  width: 68px;
  background-color: #ff0033;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 10px;
}

.youtube-wrapp a i:hover {
  transform: scale(1.09);
  transition: 0.5s ease;
}

/* YouTube Sec Css End  */

/* Concert Sec Css Start  */

.concert-ovarlay + .concert-ovarlay {
  margin: 1.875rem 0 0;
}

section.concert-sec {
  background-color: var(--black);
  z-index: 1;
  padding: 7rem 0;
}

.concertsub1 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.concertsub2 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.concert-main p {
  font-size: 1.125rem;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 2rem;
}

.concert-main .mainHead {
  margin-bottom: 1.5rem;
}

.concert-content h3 {
  font-size: 1.5rem;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--white);
}

.concert-ovarlay {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgb(255 255 255 / 30%);
  padding-bottom: 1.875rem;
}

.concert-content p {
  margin: 0;
}

.concert-wrapp h5 {
  font-size: 1.125rem;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--white);
  line-height: 1;
}

.concert-wrapp {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: end;
}

.concert-wrapp a {
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--white);
  border: 1px solid;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  display: inline-block;
}

.concert-main {
  margin-top: 2rem;
}

/* Concert Sec Css End  */

/* Exclusive Sec Css Start  */
.exclusive-wrapp {
  background-color: var(--white);
  display: flex;
  width: fit-content;
  padding-left: 3.125rem;
  align-items: center;
  position: absolute;
  right: 0;
  bottom: -3rem;
}

.exclusive-wrapp h5 {
  font-size: 1.5rem;
  font-weight: 500;
  text-transform: capitalize;
}

.exclusive-wrapp h5 span {
  display: block;
  margin-top: 0.25rem;
}

.exclusive-wrapp a {
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--black);
  height: fit-content;
  background-color: #9d9d9d;
  padding: 2.5rem 4.375rem;
  text-decoration: underline !important;
  margin-left: 5rem;
}

.exclusive-overlay {
  position: relative;
}

section.exclusive-sec {
  background-color: var(--black);
  z-index: 1;
  padding: 6rem 0 12rem;
  margin-top: 6.25rem;
}

.exclusive-imag {
  position: absolute;
  bottom: 0;
  z-index: -1;
}

.exclusive-content .mainHead {
  margin-bottom: 1rem;
}

.exclusive-content p {
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--white);
  width: 89%;
}

.exclusive-content p + p {
  margin: 1rem 0 0;
}

.exclusive-content .themeBtn {
  background-color: var(--white);
  margin-top: 2.5rem;
}

.exclusive-sec::before {
  position: absolute;
  content: "";
  height: 13.75rem;
  width: 13.75rem;
  border-radius: 50%;
  background-color: rgb(255 255 255 / 10%);
  bottom: 1.2rem;
  right: -5rem;
}

/* Exclusive Sec Css End  */

/* Counter Sec Css Start */

.counter-sec {
  background: url(../images/counterbg.webp) center/cover fixed;
  z-index: 1;
  padding: 7rem 17.125rem 6.25rem;
}

.counter-sec::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgb(0 0 0 / 80%);
  z-index: -1;
}

.counter-wrapp {
  background-color: var(--white);
  box-shadow: 0 0 12px rgb(0 0 0 / 50%);
  padding: 2rem 1.5rem 2.5rem 1.5rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  border-radius: 4px;
}

.counter-content h3 {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "Oswald";
  color: #111111;
  line-height: 1.3;
}

.counter-content h6 {
  font-size: 1rem;
  font-weight: 400;
  text-transform: capitalize;
  font-family: "Roboto";
  color: #333333;
  display: flex;
  align-items: center;
  gap: 1rem;
  line-height: 1.5;
  margin-top: 0.536rem;
}

.counter-content span {
  border-left: 1px solid var(--black);
  padding-left: 0.625rem;
}

.counter-wrapp a {
  background-color: var(--black);
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--white);
  padding: 0.75rem 1rem;
  letter-spacing: 4px;
  border-radius: 4px;
}

.counter-sec .row + .row {
  padding: 2rem 0 0;
}

.counter-sec .themeBtn {
  margin-top: 6rem;
  background-color: var(--black);
  color: var(--white);
  border: unset;
  letter-spacing: 4px;
  font-family: "Roboto";
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.85rem 1rem;
  border-radius: 4px;
  text-transform: uppercase;
}

/* Counter Sec Css End  */

.gallery-setion {
  background: url(../images/gallerybg1.webp) center/cover fixed;
}

.galleryhead p {
  font-size: 1.125rem;
  font-weight: 400;
  text-align: center;
  color: #fff;
  line-height: 1.5;
}

.galleryhead {
  margin-bottom: 2rem;
}

.galleryhead .mainHead {
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
}

.gallerywrap figure img {
  width: 100%;
}

.gallerywrap {
  margin: 0 10px 10px 0;
}

.sigimg11 {
  position: absolute;
  top: 0;
  left: 0;
}

.sigimg22 {
  position: absolute;
  right: 0;
  bottom: 0;
}

.album-section {
  background: #000;
}

.albumhead p {
  font-size: 1.125rem;
  font-weight: 400;
  text-align: center;
  color: #fff;
  line-height: 1.5;
}

.albumhead .mainHead {
  color: #fff;
  text-align: center;
  margin-bottom: 1.23rem;
}

.albumhead {
  margin-bottom: 2.5rem;
}

.albumwrap h3 {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  margin-top: 17px;
  text-align: center;
}

.latesthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 52px;
}

.latestcontent h3 {
  font-size: 22px;
  font-weight: bold;
  margin: 13px 0 15px 0;
  width: 90%;
}

.latestcontent p {
  font-size: 1.125rem;
  font-weight: 400;
  color: #000;
  line-height: 1.7;
}

.latestcontent a {
  font-size: 1.125rem;
  font-weight: 500;
  color: #000;
  text-decoration: underline !important;
  margin-top: 0.625rem;
  display: block;
}

/* Footer Sec Css Start */

footer {
  background-color: var(--black);
  padding: 4.5rem 0;
  position: relative;
  z-index: 1;
}

footer h2 {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--white);
  font-family: "Oswald";
  text-align: center;
  margin-bottom: 1rem;
}

.footer-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0.5rem 0 2.5rem;
}

.footer-list li a {
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 8px;
  font-family: "Roboto";
}

form.footer-form .form-control {
  height: 3.75rem;
  background-color: transparent;
  border: unset;
  border-radius: 0;
  border-bottom: 1px solid #fff;
  outline: unset;
  box-shadow: unset;
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  font-family: "Roboto";
}

form.footer-form buttom {
  text-transform: uppercase;
  letter-spacing: 4px;
}

form.footer-form button {
  letter-spacing: 4px;
  text-transform: uppercase;
  border-radius: 4px;
  border: unset;
  margin: auto;
  height: 3rem;
  padding: 0;
  text-align: center;
  width: 200px;
  font-family: "Roboto";
  font-weight: bold;
  margin-top: 2rem;
}

ul.footer-link {
  display: flex;
  align-items: center;
  gap: 2rem;
}

ul.footer-link li a {
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 4px;
  font-family: "Roboto";
  position: relative;
}

.footer-center {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgb(255 255 255 / 25%);
  padding-bottom: 1.125rem;
  margin: 7rem 0 1.125rem 0;
}

ul.footer-social {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

ul.footer-social li a i {
  color: var(--white);
}

ul.footer-detail {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

ul.footer-detail li a {
  font-size: 0.75rem;
  font-weight: 300;
  text-transform: capitalize;
  color: var(--white);
  font-family: "Roboto";
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer p {
  font-size: 0.75rem;
  font-weight: 300;
  color: #5c5c5c;
  font-family: "Roboto";
}

/* Footer Sec Css End  */

/* Sub Pages Css Start */
section.bio-section {
  padding-top: 8rem;
}

.biowrap figure {
  margin-bottom: 2.2rem;
}

.biocontent h3 {
  font-size: 15px;
  font-weight: bold;
  text-decoration: underline;
  margin-bottom: 35px;
  font-family: "Oswald", sans-serif;
}

.biocontent p {
  font-size: 12px;
  font-weight: 500;
  color: #000;
  line-height: 1.8;
  margin-bottom: 20px;
  width: 90%;
}

.biocontent a {
  font-size: 15px;
  font-weight: bold;
  text-decoration: underline;
  margin-bottom: 35px;
  color: #000;
  text-decoration: underline !important;
  font-family: "Oswald", sans-serif;
}

.reviewwraps p {
  font-size: 1.125rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.9;
  width: 75%;
  margin: auto;
}

.reviewwraps {
  text-align: center;
}

.reviewwraps h4 {
  font-size: 1.125rem;
  font-weight: bold;
  color: #fff;
  margin-top: 19px;
}

.reviewwraps {
  position: relative;
}

.reviewwraps::before {
  content: "";
  position: absolute;
  background: url(../images/quotebg11.webp) center/cover no-repeat;
  width: 100%;
  height: 270px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
  top: -3rem;
}

.biocontent {
  margin-bottom: 5rem;
}

.reviewwraps figure {
  margin-bottom: 1rem;
}

/* Sub Pages Css End  */

/* Home Sec Css Start */
.home-sec {
  background: url(../images/homebg.webp) center/cover no-repeat;
  /* padding: 6rem 8.625rem 2rem 8.625rem; */
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-content h3 {
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 8px;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  line-height: 2.6;
}

.seperator {
  /* position: absolute;
  content: ""; */
  height: 1px;
  width: 198px;
  background-color: var(--white);
  /* left: 0;
  right: 26%; */
  margin: 0;
  /* top: 0;
  bottom: 0; */
}

.home-content h2 {
  font-size: 5rem;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0;
  font-family: "Oswald";
  margin: 0;
}

.home-content .btn-group {
  gap: 1.25rem;
}

.home-content .btn-group .themeBtn {
  color: var(--white);
}

/* Home Sec Css End  */

.materialwrap h2 {
  font-size: 27px;
  font-weight: bold;
  font-family: "Roboto";
}

.materialwrap {
  text-align: center;
}

.materialwrap p {
  font-size: 12px;
  color: #000;
  font-weight: 300;
  margin: 20px 0;
}

.materialwrap p a {
  color: #0054db;
  margin-left: 5px;
}

.buttonspress {
  display: flex;
  flex-direction: column;
  width: fit-content;
  margin: auto;
  gap: 1.5rem;
}

.materialwrap a {
  color: #0054db;
  font-size: 13px;
  text-decoration: underline !important;
}

section.material-section {
  padding: 7rem 0 0 0;
}

a.themeBtn.btn2 {
  background: #000;
  border-radius: unset;
  color: #fff;
  font-size: 12px;
  text-decoration: unset !important;
}

.biowrap figure img {
  width: 100%;
}

/* Hover Effect Css Start */
.navbar-nav .nav-item .nav-link::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 0;
  background-color: var(--white);
  bottom: -2px;
}

.navbar-nav .nav-item .nav-link:hover::before {
  width: 100%;
  transition: 0.6s ease;
}

.themeBtn:hover {
  background-color: var(--black);
  color: var(--white);
}

.concert-wrapp a:hover {
  background-color: var(--white);
  color: var(--black);
}

.counter-sec .themeBtn:hover {
  color: var(--black);
  background-color: var(--white);
}

form.footer-form button:hover {
  background-color: rgb(255 255 255 / 49%);
  color: var(--white);
}

ul.footer-link li a::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 0;
  background-color: var(--white);
  bottom: -7px;
}

ul.footer-link li a:hover::before {
  width: 100%;
  transition: 0.7s ease;
}

ul.footer-social li a i:hover {
  transform: scale(1.4);
  transition: 0.6s ease;
}

.gallerywrap figure {
  overflow: hidden;
}

.gallerywrap figure:hover img {
  transform: scale(1.2);
}

.gallerywrap figure img {
  transition: 0.7s ease;
}

.latestwraps figure {
  overflow: hidden;
}

.latestwraps figure:hover img {
  transform: scale(1.2);
}

.latestwraps figure img {
  transition: 0.6s ease-in-out;
}

.footerimg {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

/* Hover Effect Css End  */
section.album-section::before {
  position: absolute;
  content: "";
  height: 7rem;
  width: 7rem;
  background-color: rgb(107 105 108 / 20%);
  border-radius: 50%;
  left: 11%;
  bottom: 177px;
}

section.latest-news-sec {
  padding: 6rem 0 5rem;
}

.navbar-brand img {
  width: 80px;
  filter: brightness(0) invert(1);
}

.sdsdsd {
  object-fit: cover;
  width: 100%;
  height: auto;
}

.get-form {
  border: 1px solid #000;
  padding: 45px;
}

.get-form form input,
.get-form form select {
  width: 100%;
  height: 58px;
  border: 0;
  border-radius: 0;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 500;
  padding: 0 1rem;
  margin-bottom: 1.2rem;
  color: #8d8d8d;
  border: 1px solid #000;
  box-shadow: unset;
  outline: unset;
}

.get-form form input::placeholder {
  color: #000;
}

.get-form form textarea {
  width: 100%;
  height: 182px;
  border: 0;
  border-radius: 5px;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 500;
  padding: 1rem 1rem;
  margin-bottom: 1.2rem;
  color: #8d8d8d;
  border: 1px solid #000;
  outline: unset;
}

form.contact-form label {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
}

section.contactpage {
  padding-top: 11rem;
  padding-bottom: 5rem;
}

.get-form button.themeBtn {
  border-radius: unset;
  width: 100%;
  background: #000;
  color: #fff;
  text-transform: uppercase;
}

section.contactpage h2 {
  font-size: 34px;
  font-weight: bold;
  font-family: "Roboto";
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
}

/* Upcoming Sec Css Start */

.upcoming-sec {
  background-color: var(--black);
  padding: 15rem 0 0;
}

.upcoming-content h2 {
  font-size: 21px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--white);
  line-height: 1;
}

.upcoming-content p {
  font-size: 1.125rem;
  color: var(--white);
  line-height: 1.5;
  margin-top: 0.42rem;
}

.upcoming-wrapp a {
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 1px solid var(--white);
}

.upcoming-wrapp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgb(255 255 255 / 30%);
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
}

.upcoming-sec .mainHead {
  margin-bottom: 4.625rem;
  color: var(--white);
  font-size: 2.125rem;
  font-weight: 900;
  text-transform: uppercase;
  font-family: "Roboto";
  text-align: center;
}

.upcomingimg1 {
  position: absolute;
  left: 0;
  top: 0;
}

.upcomingimg2 {
  position: absolute;
  right: 0;
  bottom: 0;
}

/* Bio Page Css Start */
figure.bioimg img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

figure.bioimg {
  margin-top: 3rem;
}

/* Bio Page Css End  */

/* Upcoming Sec Css End  */

/* Members Sec Css Start */
section.member-sec {
  padding: 12rem 256px 6rem 187px;
}

.memeber-top .mainHead {
  text-transform: uppercase;
  font-family: "Roboto";
  font-weight: 900;
  font-size: 2.125rem;
}

.memeber-top {
  text-align: center;
  margin-bottom: 2.5rem;
}

.memeber-top p {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--black);
  margin-top: 0.625rem;
}

figure.member-img {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.member-overlay {
  background-color: var(--black);
  padding: 2.5125rem 2.125rem;
  border-radius: 10px;
}

.memeber-wrapp h6 {
  font-size: 1.375rem;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--white);
  font-family: "Roboto";
}

.memeber-wrapp {
  text-align: center;
}

.memeber-wrapp h5 {
  font-size: 3.125rem;
  font-weight: 600;
  color: var(--white);
  font-family: "Roboto";
  margin: 0.75rem 0 2.1875rem;
}

.memeber-wrapp h5 span {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 0.5rem;
}

.memeber-wrapp p {
  text-align: start;
  color: var(--white);
  line-height: 1.375;
  margin-bottom: 1.875rem;
  width: 97%;
  font-family: "Roboto";
}

.member-list {
  text-align: start;
}

.member-list li a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1rem;
  font-weight: bold;
  color: var(--white);
  font-family: "Roboto";
}

.member-list li + li {
  margin: 1rem 0;
}

.memeber-wrapp .themeBtn {
  background-color: var(--white);
  width: 100%;
  border-radius: 0;
  font-size: 0.6875rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Roboto";
  padding: 1rem 0;
  margin-top: 2.5rem;
}

.memeber-main h3 {
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: -0.14px;
  font-family: "Roboto";
  color: #868686;
  margin-bottom: 1rem;
}

.memeber-flex {
  display: flex;
  align-items: start;
  gap: 0.95rem;
}

figure.member-imag {
  position: relative;
}

figure.member-imag h5 {
  font-size: 1.0625rem;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--white);
  top: 0;
  position: absolute;
  left: 0;
  font-family: "Roboto";
  text-align: center;
  background-color: #6874de;
  padding: 4px 11px;
  border-radius: 11px 0;
}

figure.member-imag h5 span {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 2.33px;
  margin-top: 2px;
}

.memeber-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: capitalize;
  color: #252525;
  font-family: "Roboto";
}

.memeber-content h5 {
  font-size: 0.75rem;
  font-weight: 400;
  color: #868686;
  font-family: "Roboto";
  margin: 0.625rem 0 0.5rem;
}

.memeber-content h2 {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: -0.14px;
  font-family: "Roboto";
  margin-top: 0.625rem;
  color: #868686;
}

.video-top h3 {
  margin: 0;
}

.video-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1.125rem 0;
}

.video-top a {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #868686;
  text-decoration: underline !important;
}

figure.video-imag {
  position: relative;
}

figure.video-imag::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgb(0 0 0 / 60%);
  border-radius: 7px;
}

.video-overlay {
  position: relative;
}

.video-img h4 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--white);
  font-family: "Roboto";
}

.video-img {
  text-align: end;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  inset: 0;
  flex-direction: column;
  gap: 0.625rem;
}

.video-content h2 {
  font-size: 1rem;
  font-weight: 600;
  color: #252525;
  line-height: 1.2;
  margin-top: 0.625rem;
  font-family: "Roboto";
}

.video-content p {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #252525;
  margin-top: 0.625rem;
}

.video-flex {
  display: flex;
  gap: 1rem;
}

.memeber-wrapp .themeBtn:hover {
  background-color: var(--white);
  color: var(--black);
}
/* Members Sec Css End  */

/* Video Sec Css Start */

section.media-sec {
  padding: 10rem 0 6rem;
}

.media-sec .mainHead {
  font-weight: 900;
  font-family: "Roboto";
  font-size: 2.125rem;
  margin-bottom: 2rem;
}

.media-top a {
  font-size: 0.6875rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1rem 3.125rem;
  background-color: var(--black);
  display: block;
  width: fit-content;
  color: var(--white);
  margin: 4rem auto 0;
}
.videoimg {
  position: relative;
}

.videoimg a i {
  height: 4.5rem;
  width: 4.5rem;
  display: grid;
  place-items: center;
  border-radius: 50px;
  background-color: var(--white);
  color: #1f1d1c;
  z-index: 1;
  transition: 0.6s ease;
}

.videoimg a {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  inset: 0;
}

.videoimg a::before {
  position: absolute;
  content: "";
  height: 5.5rem;
  width: 5.5rem;
  background: rgb(255 255 255 / 30%);
  border-radius: 50%;
  z-index: 0;
}

.videoimg a::after {
  position: absolute;
  content: "";
  height: 6.625rem;
  width: 6.625rem;
  background: rgb(255 255 255 / 20%);
  border-radius: 50%;
  z-index: 0;
}

.videoimg a i:hover {
  transform: scale(1.09);
}

.videoimg img {
  height: 444px;
  width: 100%;
  object-fit: cover;
}

.videoimg::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgb(255 255 255 / 30%);
}

.swiper-slide.swiper-slide-active .videoimg::before {
  position: unset;
}
/* Video Sec Css End  */
.media-box {
  margin: 1rem 0;
}