@font-face {
  font-family: "SeanorLigature";
  src: url("../fonts/first/Newsreader-Italic-VariableFont_opsz.ttf")
      format("truetype"),
    url("../fonts/first/Newsreader-VariableFont_opsz.ttf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Gothic";
  src: url("../fonts/second/Roboto-Italic-VariableFont_wdth.ttf");
}

body {
  margin: 0;
  font-family: "SeanorRegular";
  overflow-x: hidden;
}
video {
  object-fit: cover;
  margin: 0;
  width: 100%;
}
a:hover {
  color: #d1cccc;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "SeanorRegular";
}
img {
  max-width: 100%;
  vertical-align: middle;
}
a {
  color: #fff;
  text-decoration: none;
  font-family: "SeanorRegular";
}
/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 50px;
}
.mli {
  margin-left: 50px;
}

header.lg,
header.sm {
  width: 100%;
  backdrop-filter: blur(7px);
  background: rgba(0, 0, 0, 0.5); /* Adjust background color */
  transition: all 0.3s ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000; /* Ensures it's above other elements */
}
.header-fixed {
  transition: top 0.3s ease-in-out;
}
header .logo {
  font-size: 24px;
  font-weight: bold;
}

nav ul li {
  cursor: pointer;
}
nav ul li a {
  font-size: 16px;
}
.logo {
  width: 133px;
  text-align: center;
}

.nav-wrapper {
  text-align: center;
}

.sl-nav {
  display: inline;
}

.sl-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  display: inline-block;
}

.sl-nav li {
  cursor: pointer;
  padding-bottom: 10px;
}

.sl-nav li ul {
  display: none;
}

.sl-nav li:hover ul {
  position: absolute;
  top: 29px;
  right: -15px;
  display: block;
  background: #fff;
  width: 120px;
  padding-top: 0px;
  z-index: 1;
  border-radius: 5px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

.sl-nav li:hover .triangle {
  position: absolute;
  top: 15px;
  right: -10px;
  z-index: 10;
  height: 14px;
  overflow: hidden;
  width: 30px;
  background: transparent;
}

.sl-nav li:hover .triangle:after {
  content: "";
  display: block;
  z-index: 20;
  width: 15px;
  transform: rotate(45deg) translateY(0px) translatex(10px);
  height: 15px;
  background: #fff;
  border-radius: 2px 0px 0px 0px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

.sl-nav li ul li {
  position: relative;
  text-align: left;
  background: transparent;
  padding: 15px 15px;
  padding-bottom: 0;
  z-index: 2;
  font-size: 15px;
  color: #fff;
}

.sl-nav li ul li:last-of-type {
  padding-bottom: 15px;
}

.sl-nav li ul li span {
  padding-left: 5px;
}

.sl-nav li ul li span:hover,
.sl-nav li ul li span.active {
  color: #146c78;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;

  align-items: center;
}

nav ul li {
  margin: 0 10px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  background-color: #fff;
  height: 3px;
  width: 25px;
  margin: 4px 0;
}

.sidebar {
  position: relative;
  height: 100%;
  width: 300px;
  background: #000;
  box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease;
  transform: translateX(100%);
  z-index: 9999;
}

.sidebar-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}

.sidebar-wrapper.active {
  visibility: visible;
  opacity: 1;
}

.sidebar-wrapper.active .sidebar {
  transform: translateX(0);
}

/* Close Button */
.close-btn {
  background: none;
  border: none;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
}
.text-cap {
  text-transform: uppercase;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.sidebar ul {
  flex-direction: column;
  background: #000;
}

.sidebar ul li {
  margin-bottom: 30px;
}

.sidebar ul li a {
  text-decoration: none;
  color: #fff;
}
.sidebar ul li a img {
  width: 120px;
}
.sidebar.open {
  right: 0;
}
.sm {
  display: none;
}

@media screen and (max-width: 1228px) {
  header {
    padding: 20px 20px;
  }
}

/* .bghero {
  padding: 0 60px 60px 60px;
} */

.hero {
  position: relative;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 100%;
}

h1 {
  font-size: 4rem;
  margin: 0;
  text-transform: uppercase;
  font-family: "SeanorRegular";
}

.slide-text h2 {
  font-size: 3rem;
  font-weight: 300;
  margin: 10px 0;
}

.btn {
  padding: 10px 50px;
  font-size: 1rem;
  color: #fff;
  background-color: transparent;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.3s;
  text-decoration: none;
  border: 1px solid #fff;
  border-radius: 0;
  font-family: "SeanorRegular";
}
.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 0%);
}
.btn:hover {
  color: #fafafa;
  background-color: transparent;
  border: 1px solid #fafafa;
}
.btn1 {
  margin-top: 20px;
  padding: 10px 50px;
  font-size: 1rem;
  color: #000;
  background-color: transparent;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.3s;
  text-decoration: none;
  border: 1.5px solid #000;
  text-transform: uppercase;
  font-weight: bold;
}

.btn1:hover {
  color: #fff;
  background-color: #000;
  border: 1px solid #000;
}
.swiper-container {
  padding: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}
.swiper-container1 {
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  flex-direction: column;
}
/* About Us Section */
.about-us {
  display: flex;
  gap: 20px;
  padding: 40px 70px;
  position: relative;
}
.about-us2 {
  display: flex;
  gap: 20px;
  padding: 60px 60px;
  position: relative;
  background-color: #000;
  color: #fff;
}

.about-us3 {
  padding: 60px 60px;
  position: relative;
  background-color: #000;
  color: #fff;
}
.about-us3 .about-content2 ul li {
  margin-bottom: 10px;
}
.about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  flex-shrink: 0;
  justify-content: center;
  height: 100%;
}

.about-content h1 {
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  width: 53%;
  text-align: left;
  margin-bottom: 10px;
}

.about-content p {
  text-align: justify;
  color: #000;

  font-size: 20px;
  font-style: normal;
  font-weight: 400;
}

.about-content2 h1 {
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;

  text-align: left;
  margin-bottom: 10px;
}

.about-content2 p {
  color: #fff;

  text-align: justify;
  /* BODYTEXT/B1 regular */
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
}

.about-images {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.about-images img {
  border-radius: 0px;
}

.about-label {
  position: absolute;
  top: 10%;
  right: 0px;
  transform: rotate(269deg);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 1px;
  font-family: "SeanorRegular";
}

/* Schedule Section */
.schedule {
  display: flex;
  background-color: #f5e5d5;
  padding: 60px 60px;
}

.schedule-image {
  flex: 1;
  position: relative;
  padding: 0 50px;
}

.schedule-image img {
  width: 100%;
  border-radius: 0px;
}

.label-vertical {
  position: absolute;
  top: 21%;
  left: -68px;
  transform: rotate(-90deg);
  letter-spacing: 1px;
  color: #000;
  text-align: center;
  font-family: "SeanorRegular";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
}

.schedule-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 60px;
}

.schedule-content h2 {
  color: #000;
  font-family: "SeanorRegular";
  font-size: 46px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 20px;
}

.schedule-content p {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.schedule-content a {
  background-color: transparent;
  color: #000;
  padding: 10px 20px;
  border: 1px solid #000;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  text-align: center;
  border-radius: 0;
}

.schedule-content a:hover {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  border: 1px solid #000;
}
.terms1 {
  color: #000;
  font-size: 35px;
  font-style: normal;
  font-weight: bold;
  line-height: normal;
  text-transform: capitalize;
}
.terms {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: bold;
  line-height: normal;
  text-transform: uppercase;
}
.termsp {
  color: #000 !important;
  font-size: 20px !important;
}
@media screen and (max-width: 768px) {
  .swiper-container {
    height: 500px;
  }

  .ter {
    margin-top: 10px;
  }
  .about-us3 {
    padding: 30px 10px;
    position: relative;
    background-color: #000;
    color: #fff;
  }
  .terms1 {
    color: #000;
    font-size: 27px;
    font-style: normal;
    font-weight: bold;
    line-height: normal;
    text-transform: capitalize;
  }
  .terms {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: bold;
    line-height: normal;
    text-transform: uppercase;
  }
  .termsp {
    color: #000;
    font-size: 14px !important;
  }
}
.swiper-slide {
  width: 100%;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background-repeat: no-repeat;
  background-position: center;
}

.swiper-slide:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  z-index: 1;
  opacity: 0.3;
}

.swiper-slide:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  z-index: 1;
}

/* swiper arrows */
.swiper-button-prev,
.swiper-button-next {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../images/v1.png");
}

.swiper-button-prev {
  left: 30px;
}

.swiper-button-next {
  right: 30px;
  transform: rotate(180deg);
}

.swiper-button-prev span,
.swiper-button-next span {
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  position: absolute;
  border: solid 2px white;
  border-left: 0;
  border-bottom: 0;
  transition: all 0.3s ease;
}

.swiper-button-prev span {
  transform: rotate(-135deg);
  left: 50%;
}

.swiper-button-next span {
  transform: rotate(45deg);
  right: 50%;
}

.swiper-button-prev span:after,
.swiper-button-next span:after {
  content: "";
  position: absolute;
  background-color: white;
  width: 0px;
  height: 2px;
  transition: all 0.3s ease;
  transform: rotate(-45deg);
}

.swiper-button-prev:hover span {
  left: 30%;
}

.swiper-button-next:hover span {
  right: 30%;
}

.swiper-button-prev:hover span:after,
.swiper-button-next:hover span:after {
  width: calc(20px - 4px);
}

/* swiper arrows mobile */
@media screen and (max-width: 768px) {
  .swiper-button-prev {
    left: 0px;
  }

  .swiper-button-next {
    right: 0px;
  }

  .swiper-button-prev:hover span {
    left: 50%;
  }

  .swiper-button-next:hover span {
    right: 50%;
  }

  .swiper-button-prev:hover span:after,
  .swiper-button-next:hover span:after {
    display: none;
  }
}
/* swiper pagination */
.swiper-pagination {
  height: 40px;
}

.swiper-pagination-bullet {
  background-color: transparent;
  border: solid 1px white;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.swiper-pagination-bullet:hover {
  background-color: white;
}

.swiper-pagination-bullet-active {
  width: 20px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  left: 0;
  background-color: transparent;
  border: solid 1px white;
}

/* text content */
.slide-text {
  text-align: left;
  color: white;
  opacity: 1;
  z-index: 2;
  width: 90%;
  max-width: 100%;
  position: absolute;
  top: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  bottom: 50%;
  align-items: flex-start;
}

.slide-text span {
  color: #e0e0e0;
  font-size: 30px;
  font-style: normal;
  font-weight: 100;
  line-height: normal;
  text-transform: capitalize;
}
.btn-banner {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 12.1px; /* 67.222% */
  text-transform: uppercase;
  border: 1px solid #fff;
  background-color: transparent;
  padding: 20px 50px;
  font-weight: bold;
}
.btn-banner:hover {
  border: 1px solid #000;
  background-color: #000;
  color: #fff;
}
.btn-banner2 {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 12.1px; /* 67.222% */
  text-transform: uppercase;
  border: 1px solid #000;
  background-color: transparent;
  padding: 20px 50px;
  font-weight: bold;
  color: #000;
}
.btn-banner2:hover {
  border: 1px solid #000;
  background-color: #000;
  color: #fff;
}
.slide-text p {
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

/* button */
.slide-text .btn {
  font-family: "Gothic";
  background-color: white;
  border: solid 1px white;
  padding: 15px 55px;
  min-width: 149px;
  width: fit-content;
  font-size: 14px;
  letter-spacing: 2px;
  color: #000;
  position: relative;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  margin-top: 20px;
  margin: 20px auto;
  text-decoration: none;
}

.slide-text .btn:hover {
  font-weight: 800;
  background-color: #000;
  color: #fff;
  border: solid 1px #000;
}
.contact-section {
  background-color: #0d1b2a;
  padding: 60px;
}

.contact-section h2 {
  color: white !important;

  font-family: "SeanorRegular";
  font-size: 25px;
}
.form-control {
  display: block;
  width: 100%;
  padding: 0.175rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 0px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.contact-section p {
  color: #a3a3a3 !important;
  text-align: justify;
  font-size: 16px;
}
.contact-section span {
  color: white !important;
  color: #a3a3a3;
  font-size: 16px;
}
.form-section {
  background-color: #ffffff;
  padding: 55px 40px;
  box-shadow: 0px 0px 60px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.y {
  border-bottom: 1px solid #000;
  border-top: 0;
  border-right: 0;
  border-left: 0;
}

.d {
  display: flex;
  flex-direction: column;
}
.t {
  margin-bottom: 60px;
}
.tt {
  margin-bottom: 20px;
}
.drt {
  display: flex;
  justify-content: end;
}
.btn-send {
  padding: 10px 76px;
}
.btn-send:hover {
  background-color: #000;
  color: #fff !important;
}
.form-control {
  border-bottom: 1px solid #000;
}
.form-label {
  color: #000;
}
.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #1b263b;
  box-shadow: unset;
}
@media screen and (max-width: 768px) {
  .contact-section {
    background-color: #0d1b2a;
    padding: 30px;
  }
  .form-section {
    padding: 30px 15px;
  }
  .t {
    margin-bottom: 30px;
  }
}
button:focus {
  outline: 0;
}

.featured-designers {
  text-align: center;
  padding: 40px 20px;
  position: relative;
  background: #fafafa;
}

.featured-designers .designers-header {
  margin-bottom: 30px;
  position: relative;
  text-align: left;
  padding: 0 65px;
}

.featured-designers .designers-header h2 {
  font-size: 40px;
  margin: 0 0 17px;
  color: #000;
  font-family: "SeanorRegular";
}

.featured-designers .designers-header p {
  font-size: 16px;
  color: #000;
  margin: 0;
  line-height: 1.5;
}

.featured-designers .designers-header .badge {
  position: absolute;
  top: 0;
  right: 50%;
  transform: translateX(50%);
  background: #ff0080;
  color: #fff;
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 15px;
  font-weight: bold;
}

/* Designer Cards Grid */
.designers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

.designer-card {
  background: #ffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 0px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.designer-card:hover {
  transform: translateY(-5px);
}

.designer-card img {
  width: 100%;
  object-fit: cover;
}

.designer-info {
  padding: 20px;
  text-align: left;
}

.designer-info span {
  font-size: 16px;
  color: #000;
  display: block;
  margin-bottom: 8px;
  font-family: "SeanorRegular";
}

.designer-info h3 {
  font-size: 16px;
  color: #000;
  margin-top: 10px;
  border-left: 1px solid #000;
  padding: 11px;
}

/* Navigation */
.navigation {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.re {
  font-size: 23px !important;
  font-style: normal;
  font-weight: 100;
  line-height: normal;
  text-transform: uppercase;
}
.rcs {
  font-size: 45px;
  font-style: normal;
  font-weight: bold !important;
  line-height: 45px; /* 100% */
  text-transform: uppercase;
}
.imgh {
  display: flex;
  gap: 15px;
}
.hh {
  display: flex;
  align-items: center;
  gap: 90px;
}
.hh h2 {
  font-size: 20px;
  font-style: normal;
  font-weight: bold;
  line-height: normal;
  letter-spacing: -0.238px;
}

.navigation .prev,
.navigation .next {
  font-size: 24px;
  color: #555;
  cursor: pointer;
  user-select: none;
}

.navigation .prev:hover,
.navigation .next:hover {
  color: #000;
}

/* General */

/* Live Stream Section */
.live-stream-section {
  background: #051042;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0px 40px 10px;
}

.live-stream-content {
  width: 100%;
  text-align: left;

  overflow: hidden;
}
.live-stream-content h3 {
  font-size: 18px;
  text-transform: uppercase;
  font-family: "SeanorRegular";
  color: #fff;
  position: absolute;
  transform: rotate(270deg);
  top: 75px;
}
.live-stream-content1 {
  display: flex;
  align-items: flex-start;
  height: 100%;
}
.live-stream-content h2 {
  font-size: 40px;
  text-transform: uppercase;

  font-family: "SeanorRegular";
  color: #fff;
  position: absolute;
  bottom: 20px;
  width: 310px;
  left: 55px;
}
.stream {
  display: flex;
  justify-content: end;
}

.stream-left,
.stream-right {
  position: relative;
  background: #0a1d66;
  border-radius: 0px;
  overflow: hidden;
  text-align: center;
  color: #fff;
  width: 100%;
}

.stream-left img,
.stream-right img {
  width: 100%;
  height: auto;
  display: block;
}

.stream-left p,
.stream-right p {
  margin: 10px 0;
  font-size: 18px;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff0080;
  color: #fff;
  padding: 5px 10px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: bold;
}

.stream-video {
  position: relative;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  background: rgba(11, 11, 11, 0.57);
  color: #000;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 17px;
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    url(../images/newsletter.png) lightgray 50% / cover no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100vh;
}

.newsletter-content {
  max-width: 100%;
  text-align: center;
  padding: 60px;
  border-radius: 0px;
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: flex-start;
}

.newsletter-content h3 {
  color: #fff;
  font-family: "SeanorRegular";
  font-size: 45px;
  font-style: normal;
  font-weight: 400;
}

.top-h3 {
  display: flex;
}
.down-h3 {
  display: flex;
}

.newsletter-form {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 30px;
  position: relative;
}

.newsletter-form input {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  outline: none;
  background: transparent;
  color: #fff;
  border-bottom: 1px solid #fff;
}
.newsletter-form input::placeholder {
  color: #fff;
}
.newsletter-form button {
  font-size: 35px;
  background: transparent;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
  position: absolute;
  right: 0;
  margin-bottom: 10px;
}

/* Footer */
footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 20px 55px;
}

.footer-content {
  font-size: 0.8rem;
}

.social-icons {
  margin-top: 10px;
  display: flex;
  justify-content: end;
}

.social-icons a {
  color: #fff;
  margin: 0 10px;
  font-size: 1.2rem;
  text-decoration: none;
}
.social-icons .tt {
  color: #fff;
  margin: 0px 10px;
  font-size: 1rem;
  text-decoration: none;
  font-weight: bold;
}

.social-icons a:hover {
  color: #cbcbcb;
}
.white {
  background-color: #000;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #fff;
  padding: 30px 52px;
}

.white .img {
  width: 100px;
}

/* First Section */
.section-1 {
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: end;
  height: 100vh;
  position: relative;
  background: url("../images/about.png") lightgray 50% / cover no-repeat;

  background-blend-mode: normal, luminosity;
}
.calander {
  background: linear-gradient(
      0deg,
      rgba(0, 15, 48, 0.3) 0%,
      rgba(0, 15, 48, 0.3) 100%
    ),
    url("../images/calndar.png") lightgray 50% / cover no-repeat;
}

.gallery {
  background: linear-gradient(
      0deg,
      rgba(0, 15, 48, 0.3) 0%,
      rgba(0, 15, 48, 0.3) 100%
    ),
    url("../images/gallery.png") lightgray 50% / cover no-repeat;
}

.desginers {
  background: linear-gradient(
      0deg,
      rgba(0, 15, 48, 0.3) 0%,
      rgba(0, 15, 48, 0.3) 100%
    ),
    url("../images/desginers.png") lightgray 50% / cover no-repeat;
}
.section-1 h2 {
  font-size: 6rem;
  font-family: "SeanorRegular";
  font-style: normal;
  font-weight: 400;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: normal;
}
.contentt {
  width: 70%;
  padding: 60px;
}

.nextsection p {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
}
.section-1 p {
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 162.5% */
}

/* Second Section */
.section-2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 20px;
  gap: 20px;
}

.section-2 img {
  width: 50%;
  height: auto;
}

.section-2 .content {
  width: 50%;
}

.section-2 h1 {
  font-size: 40px;
  font-family: "SeanorRegular";
  font-style: normal;
  font-weight: 400;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: normal;
  letter-spacing: 0;
}
.r {
  font-size: 25px !important;
  font-style: normal;
  font-weight: bold !important;
  line-height: normal;
  text-transform: uppercase !important;
}
.rt {
  padding: 55px 20px;
}
.section-2 p {
  margin-bottom: 20px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: #000;
  text-align: justify;
}

.section-2 .button {
  display: inline-block;
  padding: 10px 45px;
  background-color: #ffffff;
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.9rem;
  border: 1px solid #000;
  transition: all 0.3s ease-in-out;
}

.section-2 .button:hover {
  background-color: #000;
  color: #fff;
}

.contenttt {
  width: 100%;
  padding: 60px;
}

.contenttt h2 {
  font-size: 45px;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
}
.section-11 p {
  color: #b9b6b6;
  text-align: justify;
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
}

.tabs {
  display: flex;
  background-color: #fff;
  padding: 10px;
  border-bottom: 2px solid #ccc;
}

.tab {
  padding: 5px 20px;
  cursor: pointer;
  font-size: 1rem;
  color: #333;
  text-transform: uppercase;
  border-right: 1px solid #000;
  gap: 5px;
  display: flex;
  width: 100%;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  font-family: "SeanorRegular";
}
.gallery-tab {
  padding: 20px 20px;
}
.tab.active {
  color: white;
  background-color: #000;
}

.content {
  display: none;
  padding: 20px;
}

.content h2 {
  font-family: "SeanorRegular";
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 55px;
}

.content .h2 {
  color: #000;
  text-align: center;
  font-family: "SeanorRegular";
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 65px;
}

.content.active {
  width: 100%;
  display: flex;
  padding: 50px 30px;
  flex-direction: column;
}

.event {
  display: flex;
  padding: 25px 20px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0px 9px 50px 0px rgba(0, 0, 0, 0.07);
  background: #fff;
  gap: 100px;
  justify-content: space-between;
}

.event-time span {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.event-time b {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.event-title h2 {
  font-size: 20px;
  font-style: normal;
  font-weight: bold;
  line-height: 15px;
  font-family: "SeanorRegular";
  text-transform: uppercase;
}

.event-category {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}

.top-images {
  display: flex;
  justify-content: space-between;
}
.top-images img {
  border-radius: 5px;
  width: 100%;
  height: 100%;
}
.bottom-image img {
  border-radius: 5px;
  width: 100%;
}
.container {
  padding-bottom: 60px;
}

/* .partners-section {
  padding: 2rem;
} */

.partners-section h1 {
  color: #000;

  font-family: "SeanorRegular";
  margin-bottom: 40px;
  font-size: 70px;
  font-style: normal;
  font-weight: 400;
}
.partners-section h2 {
  color: #000;
  font-family: "SeanorRegular";
  margin-bottom: 20px;
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
}

.partners-section ul {
  padding-left: 0 !important;
}
.partners-section ul li {
  color: #000;
  font-size: 20px;

  list-style: none;
}
.partners-section p {
  color: #000;
  margin-bottom: 20px;
  font-size: 15px;
}
.t-c {
  text-align: center;
}
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.partner-card {
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  background-blend-mode: luminosity;
  filter: grayscale(1);
}
.partner-card1 {
  filter: none;
  height: calc(100% - 5vh);
}
.partner-cardimg {
  width: 100%;
}

.partner-card .partner-name {
  padding: 1rem;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
}

.carddd {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.pp {
  text-align: left !important;
  padding: 5px 30px 40px 30px !important;
}
.partner-card .partner-name h1 {
  color: #000;
  margin-bottom: 10px;
  font-family: "SeanorRegular";
  font-size: 20px;
  font-weight: bold;
  line-height: 35px;
}
.partner-card .partner-name span {
  color: #000;
  font-size: 16px;
  font-weight: bold;
  text-transform: capitalize;
}
.partner-card .partner-name p {
  color: #a3a3a3;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.partner-card .partner-name a {
  border: 1px solid #000;
  padding: 10px 42px;
}
.partner-card .partner-role {
  color: #555;
  font-size: 0.9rem;
  text-align: center;
}
@media (min-width: 1085px) and (max-width: 1450px) {
  .about-label {
    right: -85px;
  }
  .label-vertical {
    top: 14%;
  }
  .partners-section h1 {
    font-size: 67px;
  }
  .partner-card1 {
    filter: none;
    height: calc(100% - 5vh);
  }
  .logo {
    width: 90px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .partners-grid {
    flex-direction: column;
    align-items: center;
  }
  .mfmf {
    padding: 0;
    margin: 0;
  }
  .event {
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
  }
  .about-content2 h1 {
    font-size: 30px;
  }
  .re {
    font-size: 14px !important;
  }
  .rcs {
    font-size: 32px;
  }
  .hh {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-direction: column;
  }
  .hh h2 {
    font-size: 28px;
    font-style: normal;
    font-weight: bold;
    line-height: normal;
    letter-spacing: -0.238px;
  }
  .imgh {
    display: flex;
    gap: 30px;
    flex-direction: column;
  }
  .container {
    margin-top: 10px;
    padding-bottom: 60px;
  }
  .partners-section h2 {
    font-size: 20px;
  }
  .partner-card {
    width: 100%;
  }
  .contentt {
    width: 100%;
    padding: 18px;
  }
  .section-1 p {
    font-size: 25px;
    line-height: 51px;
  }

  .section-11 p {
    font-size: 13px;
    line-height: unset;
    color: #ffffff;
  }
  .content.active {
    padding: 50px 0px;
  }
  .top-images img {
    padding-bottom: 10px;
  }
  .section-1 {
    height: 70vh;
  }
  .newsletter-content h3 {
    font-size: 23px;
  }
  .schedule-content h2 {
    font-size: 20px;
  }
  .about-us {
    padding: 20px 0;
  }
  .about-content h1 {
    font-size: 2em;
  }
  .featured-designers .designers-header {
    padding: 0 10px;
  }
  .newsletter-content {
    padding: 18px;
  }
}
@media (max-width: 1025px) {
  .label-vertical {
    left: -50px;
  }
  .schedule {
    padding: 60px 0px;
  }
  .schedule-image {
    padding: 0 40px;
  }
  .schedule-content {
    padding: 60px 10px;
  }
  .live-stream-content h2 {
    left: 18px;
  }
  .live-stream-content h3 {
    left: -50px;
  }
  .about-us2 {
    display: flex;
    gap: 20px;
    padding: 40px 10px;
    position: relative;
    background-color: #000;
    color: #fff;
  }
}
.p-200 {
  padding-top: 151px;
  padding-right: 30px;
  padding-left: 30px;
}

.calendar2 {
  margin-left: 10px;
  margin-bottom: 50px;
}
.calendar2 h2 {
  font-size: 45px;
  font-style: normal;
  font-weight: bold;
  line-height: 30px; /* 100% */
  text-transform: uppercase;
}
.calendar2 span {
  height: 16px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .slide-text {
    width: 100%;
    padding-left: 15px;
  }
  video {
    object-fit: cover;
    margin: 0;
    width: 100%;
    height: 74vh;
  }
  .tabs {
    overflow: scroll;
  }
  .section-2 {
    flex-direction: column;
  }
  .section-2 img {
    width: 100%;
    height: auto;
  }
  h1 {
    font-size: 3rem;
  }
  .about-content h1 {
    font-size: 1.5em;
  }
  .nextsection {
    padding: 15px;
  }
  .row {
    margin-right: 0;
    margin-left: 0;
  }
  .section-1 h2 {
    font-size: 3rem;
  }

  .schedule {
    padding: 60px 0px;
  }
  .schedule-content {
    padding: 20px 16px;
  }
  .white {
    padding: 22px 10px;
    width: 100%;
    flex-direction: column;
  }
  .white .img {
    width: 120px;
  }
  .slide-text h2 {
    font-size: 1.5rem;
    font-weight: 300;
    margin: 10px 0;
  }

  .slide-text p {
    font-size: 40px;
  }
  .partners-section {
    margin-top: 20px;
    padding: 0;
  }
  .partners-section h1 {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 20px;
  }
  .partners-section p {
    font-size: 16px;
    line-height: 1.7;
  }

  .partner-card1 {
    height: auto;
  }
  /* .bghero {
    padding: 0px 15px 0px 15px;
  } */
  footer {
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin: 0;
    /* position: absolute; */
    bottom: 0px;
    width: 100%;
  }
  .slide-text .btn {
    padding: 15px 40px;
    min-width: 86px;
  }
  .swiper-slide {
    width: 100% !important;
  }

  .cent {
    align-items: center !important;
  }
  .about-label {
    right: -79px;
  }
  .label-vertical {
    left: -65px;
  }
  .social-icons .tt {
    font-size: 0.6rem;
  }
  .schedule-image {
    padding: 0 25px;
  }
  .section-11 h2 {
    font-size: 1.8rem;
  }
  .contenttt {
    width: 100%;
    padding: 20px 20px;
  }
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
}

@media (max-width: 1450px) {
  .about-content h1 {
    font-size: 2em;
  }
  .about-content p {
    font-size: 16px;
  }
  .about-label {
    right: 177px;
    top: -30%;
    font-size: 15px;
  }
}
@media screen and (max-width: 1209px) {
  header {
    padding: 20px 20px;
  }
  .about-content h1 {
    width: 77%;
  }
}
@media screen and (max-width: 1122px) {
  .sm {
    padding: 20px;
    display: flex;
  }
  .lg {
    display: none;
  }
}
@media (max-width: 768px) {
  .about-content h1 {
    font-size: 1.4em;
    width: 100%;
  }
  .play-button {
    width: 60px;
    height: 60px;
  }
  header .logo {
    width: 80px;
  }
  .p-00 {
    padding: 0;
    margin-top: 15px;
  }
  .live-stream-section {
    padding: 40px 0px 70px 0px;
  }
  .live-stream-content1 {
    display: flex;
    align-items: flex-end;
    height: 100%;
    min-height: 120px;
    margin-bottom: 0px;
  }
  .live-stream-content h3 {
    font-size: 12px;
    top: 30px;
    left: -50px;
    position: absolute;
  }
  .live-stream-content h2 {
    position: relative;
    bottom: unset;
    left: unset;
    text-align: left;
    width: 100%;
    font-size: 22px;
    padding: 0 60px;
  }

  .p-000 {
    padding: 0 10px !important;
  }
  .ppp {
    padding: 0 !important;
  }
}
