@font-face {
  font-family: "SegoeUI";
  src: url(./fonts/segoeui.ttf);
}

@font-face {
  font-family: "SegoeUIBold";
  src: url(./fonts/segoeuib.ttf);
}

@font-face {
  font-family: "Impact";
  src: url(./fonts/impact.ttf);
}

/* START */
*,
*::after,
*::before {
  box-sizing: border-box;
}

body {
  background: #000;
  font-family: "SegoeUI";
  letter-spacing: 0.7px;
}

/* NAVBAR */
nav.navbar {
  background: rgba(0, 0, 0, 0.9);
  box-shadow: 0px 1px 15px rgba(54, 54, 54, 0.6);
}

nav .navbar-brand img {
  width: auto;
  height: 60px;
}

nav a.nav-link {
  color: #fff;
}

nav ul li {
  padding: 0 8px;
  font-size: 13px;
}

nav a.nav-link:hover {
  color: rgb(255, 0, 0);
}

nav a.btn {
  border: 1px solid rgb(255, 0, 0);
  background: rgb(255, 0, 0);
  color: #fff;
  font-size: 13px;
}

/* MAIN SCREEN */

#main {
  font-family: "SegoeUI";
  font-size: 14px;
  color: #000;
  margin: 0;
  padding: 0;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: transparent;
  overflow-x: hidden;
}

.background {
  background-size: cover 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  filter: blur(10px);
}

.swiper-container {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 100px;
  background: transparent;
}

.swiper-slide {
  width: 820px;
  height: auto;
  background: transparent;
}

.swiper-slide .image {
  width: 100%;
  height: 420px;
  text-align: center;
  border-radius: 20px;
  overflow: hidden;
}

.swiper-slide .buttons {
  width: 100%;
  height: auto;
  padding: 20px 20px 10px 20px;
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  background: transparent;
}

.swiper-slide .buttons span {
  color: rgb(230, 225, 225);
  font-size: 32px;
  font-weight: normal;
}

.swiper-slide .buttons span.btn {
  color: rgb(230, 225, 225);
  font-size: 14px;
  letter-spacing: 1px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.2);
}

.swiper-slide .buttons i.bx {
  border: none;
  padding: 6px;
  border-radius: 50%;
  background: rgb(240, 14, 14);
}

/* EVENT SECTION HOME PAGE */
#eventSection {
  background: rgb(32, 32, 32);
  padding: 60px 20px;
}

#eventSection .eventCard {
  display: flex;
  /* justify-content: center; */
  align-items: flex-start;
  margin-bottom: 30px;
}

#eventSection .eventCard .eventImg {
  height: 215px;
  /* width: 260px; */
  width: 100%;
  margin: 0 20px;
  border-radius: 8px;
}

#eventSection .eventCard .eventDet {
  color: #fff;
}

#eventSection .eventCard .eventDet h4 {
  font-size: 16px;
  font-family: "SegoeUIBold";
}

#eventSection .eventCard .eventDet p {
  font-size: 12px;
  font-family: "SegoeUI";
}

#eventSection .eventCard .eventDet button {
  font-size: 13px;
  border: none;
  outline: none;
  background: rgb(255, 0, 0);
  color: #fff;
  padding: 5px 10px;
  border-radius: 7px;
}

#eventSection .viewBtn {
  border: none;
  outline: none;
  /* border-bottom: 2px solid rgb(255, 0, 0); */
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  margin: 20px 0;
  border-radius: 7px;
  padding: 5px 18px;
  font-size: 13px;
  font-family: "SegoeUI";
  letter-spacing: 1px;
}

/* ABOUT SECTION */
#about {
  background: url(./../media/background/abtBack_000.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  background-attachment: fixed;
  position: relative;
  padding: 120px 20px;
  overflow-x: hidden;
}

#about .aboutCard {
  background: #fff;
  border-radius: 0 0 0 80px;
  padding: 35px 45px;
  min-height: 550px;
  box-shadow: -50px 40px 80px #00000057;
  position: relative;
}

#about .aboutCard h1.text {
  position: absolute;
  content: "";
  bottom: 45px;
  right: -240px;
  transform: rotate(-90deg);
  font-family: "Impact";
  color: rgb(255, 0, 0);
  font-size: 120px;
  letter-spacing: 1.4px;
  z-index: -1;
}

#about .aboutCard .heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

#about .aboutCard .heading h3 {
  font-size: 72px;
  font-family: "Impact";
}

#about .aboutCard .heading h3 span {
  color: rgb(255, 0, 0);
}

#about .aboutCard .heading img {
  height: 130px;
}

#about .aboutCard p {
  font-size: 11px;
  color: rgb(83, 83, 83);
  margin-top: 30px;
  text-align: justify;
  padding-left: 99px;
  position: relative;
}

#about .aboutCard p::before {
  position: absolute;
  content: "";
  border: 0px solid rgb(255, 0, 0);
  border-left: 3px solid rgb(255, 0, 0);
  border-bottom: 3px solid rgb(255, 0, 0);
  border-radius: 0 0 0 100%;
  height: 90px;
  width: 90px;
  left: 0;
  top: 0;
}

/* SERVICES SECTION */
#services {
  background: url(./../media/background/services.svg);
  background-color: #f2f2f2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  background-attachment: fixed;
  position: relative;
  padding: 100px 20px;
}

#services h3 {
  text-align: center;
  color: rgb(51, 51, 51);
  font-family: "SegoeUIBold";
}

#services .card {
  position: relative;
  margin: 40px 0 40px 20px;
  padding: 35px;
  background: #fff;
  box-shadow: -40px 30px 80px #00000036;
  border-radius: 0;
}

#services .card .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

#services .card .icon i.bx {
  background: #000;
  color: #fff;
  font-size: 62px;
  padding: 10px;
  border-radius: 25px;
}

#services .card .heading {
  color: rgb(116, 116, 116);
  font-size: 18px;
  font-weight: bold;
  padding: 5px 0;
  border-radius: 10px;
  letter-spacing: 1px;
  font-family: "SegoeUIBold";
}

#services .card p {
  color: rgb(116, 116, 116);
  font-size: 13px;
  padding: 5px 0;
  border-radius: 10px;
  letter-spacing: 1px;
  font-family: "SegoeUI";
}

#services .card .box {
  position: absolute;
  content: "";
  height: 40px;
  width: 40px;
  background: rgb(255, 0, 0);
  right: -10px;
  bottom: -10px;
  border-radius: 0;
}

/* XLINES */
.xLines {
  background: url(./../media/background/00121100.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 50vh;
  position: relative;
  padding: 120px 20px;
}

.xLines .logoWhite {
  max-width: 280px;
}

.xLines p {
  font-size: 16px;
  color: #fff;
  margin: 22px 0 0 0;
  font-family: "SegoeUIBold";
}

.xLines h4 {
  color: #fff;
  font-size: 28px;
  font-family: "Impact";
}

.xLines p span,
.xLines h4 span {
  color: rgb(255, 0, 0);
}

/* TEAM SECTION */
#contact {
  background: url(./../media/background/contact.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  position: relative;
  padding: 120px 20px;
}

#contact .heading {
  width: 100%;
  margin: 30px 0;
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  position: relative;
  font-family: "SegoeUIBold";
}

#contact .heading::before {
  position: absolute;
  content: "";
  width: 100px;
  border: 3px solid #e50914;
  border-radius: 4px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

#contact .contactForm {
  width: 100%;
  margin: 30px 0;
  padding: 0 20px;
}

#contact .contactForm input,
#contact .contactForm textarea {
  font-size: 14px;
  color: rgb(68, 68, 68);
  margin: 10px 0;
}

#contact .contactForm textarea {
  height: 120px;
  width: 100%;
  resize: none;
}

#contact .button {
  width: 100%;
  text-align: center;
  margin: 30px 0;
}

#contact .button .sendBtn {
  background: rgb(255, 0, 0);
  color: #fff;
  border: none;
  outline: none;
  padding: 5px 15px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.7px;
  border-radius: 20px;
}

#contact .contactDet {
  width: 100%;
  margin: 30px 0;
  padding: 0 20px;
}

#contact .contactDet p {
  margin: 12px 0;
  font-size: 13px;
  color: rgb(56, 56, 56);
}

#contact .contactDet i.bx {
  font-size: 18px;
}

footer {
  background: url(./../media/background/footer.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 10vh;
  position: relative;
  padding: 60px 20px;
}

footer img {
  max-height: 100px;
}

footer .icons {
  display: flex;
  align-items: center;
  margin: 30px 0 10px 0;
}

footer .icons a {
  text-decoration: none;
}

footer .icons a.icon i.bx {
  font-size: 22px;
  padding: 5px;
  border: 1px solid rgb(255, 0, 0);
  background: rgb(255, 0, 0);
  color: #fff;
  margin: 0 0 0 8px;
  border-radius: 50%;
}

footer p {
  font-size: 16px;
  padding: 5px;
  color: #000;
}

footer p a {
  color: rgb(255, 0, 0);
  text-decoration: none;
}

.copyright {
  color: rgb(150, 150, 150);
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
}

.copyright a {
  color: rgb(255, 0, 0);
  text-decoration: none;
}

/* ********************************* 
*********** LOGIN PANNEL ***********
********************************* */
.login {
  min-height: 100vh;
  width: 100%;
  background: url(./../media/background/login.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.login .logo {
  max-width: 350px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.login .login-pannel {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 30px;
}

.login .login-pannel .pannel {
  border: none;
  outline: none;
  width: 100%;
  max-width: 380px;
  background: radial-gradient(
    rgba(196, 196, 196, 0.7) 0%,
    rgba(139, 139, 139, 0.5) 50%,
    rgba(126, 126, 126, 0.3) 100%
  );
  padding: 50px 40px;
  border-radius: 30px;
}

.login .login-pannel .pannel .icon {
  width: 100%;
  text-align: center;
  background: transparent;
  margin-bottom: 20px;
}

.login .login-pannel .pannel .icon img {
  height: 80px;
}

.login .login-pannel .pannel .icon p {
  font-size: 18px;
  font-weight: bold;
}

.login .login-pannel .pannel .form-group {
  width: 100%;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 7px;
  height: 38px;
  margin: 10px 0;
  padding: 0 8px;
}

.login .login-pannel .pannel .form-group i.bx {
  padding: 3px 12px;
}

.login .login-pannel .pannel input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 2px 5px;
  font-size: 14px;
  letter-spacing: 0.4px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #000;
}

.login .login-pannel .pannel p {
  width: 100%;
  height: auto;
  background: transparent;
  padding: 5px 2px;
  font-size: 12px;
  letter-spacing: 0.4px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #fff;
  text-align: center;
}

.loginBtn {
  width: 100%;
  height: auto;
  text-align: center;
  margin-top: 10px;
}

#loginBtn {
  cursor: pointer;
}

/* ********************************* 
*********** GALLERY PAGE ***********
********************************* */
.gallery {
  background: url(./../media/background/000_2112_22.png);
  background-size: cover;
  background-position: 0 0;
  background-repeat: no-repeat;
  min-height: 100vh;
  position: relative;
  padding: 70px 20px;
}

.gallery .wrapper {
  border: none;
  padding: 10px 5px;
  border-radius: 10px;
  display: flex;
  box-shadow: 1px 4px 8px rgba(255, 255, 255, 0.4);
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 0 20px 0;
}

.gallery .wrapper::-moz-scrollbar {
  width: 0;
}

.gallery .wrapper .item {
  border-radius: 8px;
  background: transparent;
  border: 1px solid rgb(255, 255, 255);
  padding: 4px 8px;
  font-size: 12px;
  color: #fff;
  margin: 0 10px;
}

.gallery .wrapper .item.active {
  border-radius: 8px;
  background: rgb(255, 0, 0);
  border: 1px solid rgb(255, 0, 0);
  padding: 4px 8px;
  font-size: 12px;
}

.gallery .images {
  background: rgba(255, 255, 255, 0.2);
  height: 220px;
  width: 100%;
  border: none;
  outline: none;
  margin: 0 auto;
  border-radius: 10px;
}

/* ********************************* 
*********** EVENTS PAGE ***********
********************************* */

#events {
  background: url(./../media/background/000_2112_22.png);
  background-size: cover;
  background-position: 0 0;
  background-repeat: no-repeat;
  min-height: 100vh;
  position: relative;
  padding: 60px 20px;
}

#events .heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 50px;
}

#events .heading .form-group {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  width: 280px;
  background: #fff;
  padding: 3px 5px;
  font-size: 13px;
  border-radius: 5px;
  box-shadow: -2px 2px 4px rgba(255, 255, 255, 0.4);
}

#events .heading .form-group input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-size: 13px;
}

#events h1 {
  font-size: 32px;
  font-weight: bold;
  padding: 10px 20px;
  color: rgb(255, 0, 0);
  position: relative;
}

#events h1::before {
  position: absolute;
  content: "";
  border: 1px solid #fff;
  width: 50px;
  bottom: 0;
  left: 20px;
}

#events h1::after {
  position: absolute;
  content: "";
  border: 1px solid rgb(255, 0, 0);
  width: 30px;
  bottom: 0;
  left: 70px;
}

#events .eventCard {
  display: flex;
  /* justify-content: center; */
  /* align-items: top; */
  margin-bottom: 30px;
}

#events .eventCard .eventImg {
  height: 215px;
  width: 100%;
  margin: 0 20px;
  border-radius: 8px;
}

#events .eventCard .eventDet {
  color: #fff;
}

#events .eventCard .eventDet h4 {
  font-size: 16px;
}

#events .eventCard .eventDet p {
  font-size: 12px;
}

#events .eventCard .eventDet button {
  font-size: 13px;
  border: none;
  outline: none;
  background: rgb(255, 0, 0);
  color: #fff;
  padding: 5px 10px;
  border-radius: 7px;
}

#events .viewBtn {
  border: none;
  outline: none;
  border-bottom: 2px solid rgb(255, 0, 0);
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  margin: 20px 0;
  border-radius: 10px;
  padding: 3px 15px;
}

/* ********************************* 
*********** RESPONSIVE ***********
********************************* */
@media only screen and (max-width: 1130px) {
  .swiper-slide {
    width: 700px;
  }
}

@media only screen and (max-width: 1000px) {
  .swiper-slide {
    width: 600px;
  }
}

@media only screen and (max-width: 750px) {
  .login .logo {
    display: none;
  }
}

@media only screen and (max-width: 720px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

@media only screen and (max-width: 620px) {
  .swiper-slide .image .img-fluid {
    width: 90%;
    border-radius: 10px;
  }
}

@media only screen and (max-width: 540px) {
  .swiper-slide .image .img-fluid {
    width: 80%;
    border-radius: 10px;
  }
  .swiper-slide .image {
    height: auto;
  }
}

@media only screen and (max-width: 480px) {
  .swiper-slide .image .img-fluid {
    width: 70%;
    border-radius: 10px;
  }
}

@media only screen and (max-width: 420px) {
  .swiper-slide .image .img-fluid {
    width: 60%;
    border-radius: 10px;
  }

  #about .aboutCard p {
    padding-left: 10px;
  }

  #about .aboutCard p::before {
    position: absolute;
    content: "";
    border: none;
  }

  #events .heading {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
  }

  #events .heading .form-group {
    width: 100%;
    justify-content: center;
    margin: 20px 0;
  }

  #about .aboutCard .heading h3 {
    font-size: 52px;
    margin-top: auto;
    padding-right: 10px;
  }

  #about .aboutCard .heading img {
    height: 120px;
  }

  #about .aboutCard h1.text {
    color: rgba(58, 58, 58, 0.6);
  }
}

@media only screen and (max-width: 340px) {
  .swiper-slide .image .img-fluid {
    width: 50%;
    border-radius: 10px;
  }

  #about .aboutCard .heading h3 {
    font-size: 35px;
  }

  #eventSection .eventCard {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #eventSection .eventCard img.eventImg {
    height: 200px;
    max-width: 260px;
    width: 100%;
    margin: 30px auto;
  }

  #events .eventCard {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #events .eventCard img.eventImg {
    height: 200px;
    max-width: 260px;
    width: 100%;
    margin: 30px auto;
  }
}

@media only screen and (max-width: 280px) {
  .swiper-slide .image .img-fluid {
    width: 40%;
    border-radius: 10px;
  }
}
