@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;1,300;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  background: #0b0b0b;
  font-family: "Poppins", sans-serif;
  position: relative;
  -ms-overflow-style: none;
}
body::-webkit-scrollbar {
  display: none;
}

.popup-image {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  inset: 0;
  max-width: 1296px;
  max-height: 800px;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: 100;
  box-shadow: rgba(0, 0, 0, 0.7) 0px 0px 0px 1000px;
  transition: opacity 0.2s, visibility 0.15s;
}
.popup-image img {
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.popup-image .close-popup {
  position: absolute;
  right: 15px;
  top: 15px;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  background-color: #00000091;
  border-radius: 50px;
  padding: 5px 17px;
  cursor: pointer;
}

.hide-section {
  display: none;
}
.hero-img {
  transform: translateX(8%) scale(1.7);
  transform-origin: center 15%;
  transition: all 1s;
}
.hero-left-hide {
  transform: translateX(-100%);
}
.hero-right-hide {
  transform: translateX(100%);
}
img {
  display: block;
  max-width: 100%;
}
h2 {
  font-family: "Playfair Display", serif;
  font-size: 64px;
  font-weight: 700;
}
h3 {
  font-size: 18px;
  line-height: 1.5;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: #afafaf;
}
p {
  color: #afafaf;
}
.hidden {
  overflow: hidden;
  position: relative;
}
.sticky {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
}
.btns {
  display: inline-block;
  text-transform: capitalize;
  border: 1px solid #b5392a;
  color: #fff;
  background-color: transparent;
  font-size: 16px;
  font-weight: 700;
  padding: 1rem 3.5rem;
  transition: all 0.25s;
}
header .nav .mobile-menu {
  display: none;
}

/* Enternance Logo */
.enternance-logo {
  position: absolute;
  width: 100%;
  height: 100vh;
  inset: 0;
  background-color: #0b0b0b;
  z-index: 999;
  transition: opacity 3s;
}
.enternance-logo .line-left {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 30%;
  height: 3px;
  background-color: #b5392a;
  transition: width 1.5s ease-in-out;
}
.enternance-logo .line-right {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 30%;
  height: 3px;
  background-color: #b5392a;
  transition: width 1.5s ease-in-out;
}
.zero {
  width: 0 !important;
}
.disapear {
  background-color: transparent !important;
  z-index: 9;
  transition: all 2.5s;
}

.show-icons {
  opacity: 1 !important;
}

/* Header start*/
.nav {
  overflow: hidden !important;
}
.nav ul {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex: 1;
  margin: 35px 0;
  padding: 0;
  position: relative;
  z-index: 1;
  width: 100%;
  background: linear-gradient(
    180deg,
    #0b0b0b 30.98%,
    rgba(11, 11, 11, 0) 97.7%
  );
}
.nav .sticky-bg {
  background: transparent;
}
.nav ul li a {
  color: #fff;
  font-size: 16px;
  transition: color 0.2s, font-weight 0.2s;
}
.nav ul li a:hover,
.nav ul li a:active {
  font-weight: 900;
  color: #b5392a;
}
.flags {
  position: absolute;
  right: 50px;
  top: 39px;
  z-index: 99;
}
.flags a img {
  width: 22px;
  height: 17px;
}
.flags .flag {
  display: none;
}
.flags .active-lang {
  display: block;
}
.hamburger-menu {
  position: fixed;
  right: 30px;
  top: 30px;
  background-color: transparent;
  cursor: pointer;
  border: none;
  outline: none;
  z-index: 99;
  width: 35px;
  height: 35px;
  pointer-events: none;
}
.menu {
  position: relative;
  display: none;
}
.menu,
.menu::before,
.menu::after {
  width: 34px;
  height: 3px;
  background-color: #fff;

  transition: transform 350ms ease-in-out, opacity 100ms linear;
}
.menu::before,
.menu::after {
  content: "";
  position: absolute;
  left: 0;
}
.menu::before {
  bottom: 7px;
}
.menu::after {
  top: 7px;
}
.show.menu {
  transform: rotate(45deg);
}
.show.menu::before {
  opacity: 0;
}
.show.menu::after {
  transform: rotate(90deg) translate(-7px);
}
/* Header end */

/* --------------------------------------------------------------- */

/* Hero section start */
.hero-section {
  position: relative;
  padding-top: 50px;
  overflow: hidden;
  height: 100%;
}
.hero-section-content {
  position: absolute;
  inset: 0;
  z-index: 9;
  align-items: center;
  justify-content: center;
}
.hero-section-content .news-heading {
  color: #b5392a;
}
.hero-section-content .hero-sec-desc-left,
.hero-section-content .hero-sec-desc-right {
  display: flex;
  flex-direction: column;
  gap: 300px;
  justify-content: center;
  align-items: center;
  transition: transform 1s;
  transition-delay: 500ms;
}
.hero-section-content .hero-sec-desc-left .left-desc-content,
.hero-section-content .hero-sec-desc-right .left-desc-content {
  max-width: 300px;
}
.hero-section-content .hero-sec-desc-left .right-desc-content,
.hero-section-content .hero-sec-desc-right .right-desc-content {
  max-width: 300px;
}
.hero-section .enternance-heroimg {
  transform: translateX(8%);
}
.hero-section .arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  color: #fff;
  bottom: 15%;
  left: 50%;
  transform: translate(-50%, 80%);
  z-index: 999;
}
.hero-section .logo {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 999;
  max-width: 100vw;
  width: 100%;
  min-width: 500px;
  transform: translate(-50%, -20%);
}
.hero-section .logo img {
  transition: transform 1s;
  /* transition-delay: 0.5s; */
}
.hero-section .preload {
  transform: scale(1.6);
}
.hero-section .arrow-icon {
  font-size: 20px;
  line-height: 0.6;
  cursor: pointer;
  animation: scrolldown 1.5s forwards infinite;
}
.hero-section .arrows:hover > * {
  color: #b5392a;
}
.hero-section .arrow-icon:first-child {
  opacity: 0.2;
  animation-delay: -0.6s;
}
.hero-section .arrow-icon:nth-child(2) {
  opacity: 0.6;
  animation-delay: -0.3s;
}
.hero-section .arrow-icon:last-child {
  animation-delay: 0s;
}
@keyframes scrolldown {
  0% {
    top: -5px;
    opacity: 0;
  }
  25% {
    top: 0;
    opacity: 1;
    transform: scale(1.2);
  }
  50%,
  100% {
    top: 5px;
    opacity: 0;
    transform: scale(1);
  }
}
.hero-section img {
  margin-inline: auto;
}
.hero-section .hero-img {
  max-width: 578px;
  width: 100%;
}
.hero-section .hero-img-mobile {
  display: none;
}
.hero-section .social-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 15px;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-80%);
  z-index: 11111;
  opacity: 0;
}
.hero-section .social-media a {
  cursor: pointer;
  transition: opacity 3s;
}
.hero-section .social-media a:hover {
  color: #b5392a;
}
.hero-section .mask-bg-left {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 60%;
  background: linear-gradient(90deg, #0b0b0b 45%, rgba(11, 11, 11, 0) 85.94%);
}
.hero-section .mask-bg-right {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50%;
  background: linear-gradient(
    270deg,
    #0b0b0b 54.11%,
    rgba(11, 11, 11, 0) 90.94%
  );
}
.hero-section .mask-bg-bottom {
  position: absolute;
  bottom: 0;
  width: 80%;
  margin: 0 auto;
  height: 40%;
  background: linear-gradient(360deg, #0b0b0b 25.11%, rgba(11, 11, 11, 0) 65%);
}
.hero-section .blob-left {
  display: block;
  position: absolute;
  z-index: 2;
  left: -10%;
  top: 30%;
  width: 30%;
  height: 40%;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(181, 57, 42, 0.5) 0%,
    rgba(181, 57, 42, 0) 100%
  );
}
.hero-section .blob-right {
  display: block;
  position: absolute;
  z-index: 2;
  right: -10%;
  top: 5%;
  width: 20%;
  height: 20%;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(181, 57, 42, 0.5) 0%,
    rgba(181, 57, 42, 0) 100%
  );
}
.hero-section .decoration-left {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
}
.hero-section .decoration-right {
  position: absolute;
  z-index: 2;
  right: 0;
  top: 0;
}
/* Hero section end */

/* --------------------------------------------------------------- */

/* Biography secion start */
.bio-section {
  position: relative;
  overflow: hidden;
  z-index: 10;
  padding-bottom: 110px;
}
.bio-section h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 35px;
}
.bio-section .bio-text {
  margin-top: 30px;
  margin-inline: auto;
  max-width: 885px;
  text-align: center;
  line-height: 1.43;
}
.bio-section .blob-left {
  display: block;
  position: absolute;
  z-index: 2;
  left: -10%;
  top: 5%;
  width: 20%;
  height: 20%;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(181, 57, 42, 0.5) 0%,
    rgba(181, 57, 42, 0) 100%
  );
}
.bio-section .blob-right {
  display: block;
  position: absolute;
  z-index: 2;
  right: -10%;
  bottom: 5%;
  width: 20%;
  height: 20%;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(181, 57, 42, 0.5) 0%,
    rgba(181, 57, 42, 0) 100%
  );
}

.bio-section span {
  display: block;
  width: 100px;
  height: 1px;
  background-color: #b5392a;
  margin-inline: auto;
}
.bio-section .about-content {
  overflow: hidden;
}
.bio-section .about-content .about-content-violinist,
.bio-section .about-content .about-content-singer {
  flex-shrink: 0;
  flex-basis: 100%;
  transition: transform 0.25s;
  align-items: center;
}
.bio-section .about-me {
  margin-bottom: 50px;
}
.bio-section .about-me-mobile {
  display: none;
}
.bio-section .about-me .about-headings {
  justify-content: center;
  margin: 100px 0;
  font-family: "Playfair Display", serif;
}
.bio-section .about-me .bio-section-info {
  padding-left: 30px;
}
.bio-section .about-me .about-headings-container {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
}
.bio-section .about-me .about-headings a {
  text-decoration: none;
  color: #fff;
  font-size: 22px;
  transition: all 0.25s;
  cursor: pointer;
  transition: transform 250ms;
}
.bio-section .about-me .about-headings .underline-bio {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 84px;
  height: 2px;
  background-color: #b5392a;
  transform: scale(1.2);
  transition: 0.5s;
}
.bio-section .about-me .about-headings a.active {
  transform: scale(1.2);
}

.bio-section .bio-section-info h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 35px;
  font-family: "Playfair Display", serif;
}
.bio-section .bio-section-info p {
  line-height: 1.3;
  font-size: 14px;
}
.bio-section .bio-section-button {
  text-align: center;
}
.bio-section .get-in-touch:hover,
.bio-section .get-in-touch:active {
  background-color: #b5392a;
  color: #fff;
}
.bio-section .bio-section-images .singer-img {
  transition: all 0.2s;
}
/* .bio-section-images img {
  height: 100%;
} */
.resize-img {
  scale: 0.7;
  filter: grayscale(1);
}
/* Biography secion end */

/* --------------------------------------------------------------- */

/* Media Section start */
.media-section {
  position: relative;
  background-color: #121212;
  z-index: 5;
  padding-bottom: 150px;
}
.media-section .decoration-arrow {
  position: absolute;

  width: 100px;
  height: 100px;
  background-color: #0b0b0b;
  top: -70px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  z-index: 20;
}
.media-section h2 {
  color: #fff;
  text-align: center;
  padding-top: 110px;
  margin-bottom: 35px;
}
.media-section .media-nav {
  justify-content: center;
}
.media-section .media-nav .media-headings-container {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  margin: 20px 0 60px 0;
}
.media-section .media-nav .media-headings-container .underline-media {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 63px;
  height: 2px;
  background-color: #b5392a;
  transform: scale(1.2);
  transition: 0.5s;
}
.media-section .media-nav .media-headings-container h3 {
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  transition: transform 0.2s;
  font-family: "Playfair Display", serif;
}
.media-section .media-nav .media-headings-container h3.active {
  transform: scale(1.2);
}
.media-section .gallery-video {
  overflow: hidden;
}
.media-section .gallery-video .gallery-video-container {
  display: flex;
}
.media-section .gallery-video .gallery-video-container .grid-media,
.media-section .gallery-video .gallery-video-container .grid-video-media {
  transition: transform 0.25s;
}
.media-section .grid-media {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 360px);
  gap: 50px;
  flex-shrink: 0;
}
.media-section .grid-media img {
  cursor: pointer;
}
.media-section .grid-media .grid-item-1 {
  grid-column: 1 / 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-section .grid-media .grid-item-2 {
  grid-column: 2 / 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-section .grid-media .grid-item-3 {
  grid-row: 2 / 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-section .grid-media .grid-item-4 {
  grid-column: 2 / -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-section .grid-media .grid-item-5 {
  grid-row: 3 / 4;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-section .grid-media .grid-item-6 {
  grid-column: 2 / 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-section .grid-media .grid-item-7 {
  grid-row: 4 / 5;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-section .grid-media .grid-item-8 {
  grid-column: 2 / 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-section .gallery-video .grid-video-media {
  flex-shrink: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 360px);
  gap: 50px;
}
.media-section .gallery-video .gallery-video-container .video-item {
  position: relative;
}
.media-section .gallery-video .gallery-video-container .video-item .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: #00000060;
  transition: all 0.25s;
}
.media-section
  .gallery-video
  .gallery-video-container
  .video-item:hover
  .overlay {
  opacity: 1;
}
.media-section .gallery-video .gallery-video-container .video-item .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 9;
  cursor: pointer;
  color: #fff;
  opacity: 0.8;
  transform: translate(-50%, -50%);
  transition: all 0.25s;
}
.media-section
  .gallery-video
  .gallery-video-container
  .video-item:hover
  .play-icon {
  opacity: 1;
}
.media-section .gallery-video .gallery-video-container .video-item i {
  font-size: 38px;
}
.media-section .gallery-video .gallery-video-container .video-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-section .gallery-video .gallery-video-container .video-item-1 {
  grid-column: 1 / 2;
  width: 100%;
}
.media-section .gallery-video .gallery-video-container .video-item-2 {
  grid-column: 2 / 3;
  width: 100%;
}
.media-section .gallery-video .gallery-video-container .video-item-3 {
  grid-column: -3 / -2;
  width: 100%;
}
.media-section .gallery-video .gallery-video-container .video-item-4 {
  grid-column: -2 / -1;
  width: 100%;
}
.media-section .gallery-video .gallery-video-container .video-item-5 {
  grid-column: 1 / 2;
  width: 100%;
}
/* Desktop grid */
.media-section .bg-lines {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 1296px;
  top: 0;
  z-index: -1;
}
.media-section .bg-lines span {
  position: absolute;
  width: 1px;
  max-width: 100%;
  height: 100%;
  background-color: #2d2c2c;
}
.media-section .bg-lines .bg-line-1 {
  left: -1px;
}
.media-section .bg-lines .bg-line-2 {
  left: calc(14.285% * 1);
}
.media-section .bg-lines .bg-line-3 {
  left: calc(14.285% * 2);
}
.media-section .bg-lines .bg-line-4 {
  left: calc(14.285% * 3);
}
.media-section .bg-lines .bg-line-5 {
  left: calc(14.285% * 4);
}
.media-section .bg-lines .bg-line-6 {
  left: calc(14.285% * 5);
}
.media-section .bg-lines .bg-line-7 {
  left: calc(14.285% * 6);
}
.media-section .bg-lines .bg-line-8 {
  left: calc(14.285% * 7);
}
/* Tablet Grid */
.media-section .bg-lines-tablet {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 936px;
  top: 0;
  z-index: -1;
}
.media-section .bg-lines-tablet span {
  position: absolute;
  width: 1px;
  max-width: 100%;
  height: 100%;
  background-color: #2d2c2c;
}
.media-section .bg-lines-tablet .bg-line-1 {
  left: -0.0625rem;
}
.media-section .bg-lines-tablet .bg-line-2 {
  left: calc(20% * 1);
}
.media-section .bg-lines-tablet .bg-line-3 {
  left: calc(20% * 2);
}
.media-section .bg-lines-tablet .bg-line-4 {
  left: calc(20% * 3);
}
.media-section .bg-lines-tablet .bg-line-5 {
  left: calc(20% * 4);
}
.media-section .bg-lines-tablet .bg-line-6 {
  left: calc(20% * 5);
}
/* Mobile Grid */
.media-section .bg-lines-mobile {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 516px;
  top: 0;
  z-index: -1;
}
.media-section .bg-lines-mobile .bg-line-1 {
  left: -0.0625rem;
}
.media-section .bg-lines-mobile .bg-line-2 {
  left: calc(25% * 1);
}
.media-section .bg-lines-mobile .bg-line-3 {
  left: calc(25% * 2);
}
.media-section .bg-lines-mobile .bg-line-4 {
  left: calc(25% * 3);
}
.media-section .bg-lines-mobile .bg-line-5 {
  left: calc(25% * 4);
}
.media-section .bg-lines-mobile span {
  position: absolute;
  width: 1px;
  max-width: 100%;
  height: 100%;
  background-color: #2d2c2c;
}

/* Media Section end */

/* --------------------------------------------------------------- */

/* Press Section start */
.press-section {
  margin-top: 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.press-section h2 {
  color: #fff;
  margin-bottom: 20px;
}
.press-section .blob-left {
  display: block;
  position: absolute;
  z-index: 2;
  left: -10%;
  top: 0;
  width: 20%;
  height: 30%;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(181, 57, 42, 0.5) 0%,
    rgba(181, 57, 42, 0) 100%
  );
}
.press-section .blob-right {
  display: block;
  position: absolute;
  z-index: 2;
  right: -10%;
  bottom: 5%;
  width: 20%;
  height: 30%;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(181, 57, 42, 0.5) 0%,
    rgba(181, 57, 42, 0) 100%
  );
}
.press-section .press-cards-container {
  overflow: hidden;
}
.press-section .press-cards {
  display: flex;
  gap: 85px;
  margin: 50px 50px 100px 50px;
  width: auto !important;
}
.press-section .press-card {
  width: calc(100% / 3 - 52px) !important;
  flex-shrink: 0;
  text-align: left;
  transition: transform 0.2s;
}
.press-section .press-card:hover {
  transform: scale(1.2);
}
.press-section .press-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}
.press-section .press-card h3 {
  color: #fff;
  margin-top: 15px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.press-section .press-card p {
  margin-bottom: 15px;
}
.press-section .press-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #b5392a;
  text-decoration: underline;
  font-weight: 500;
}
.press-section .press-arrows {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
  padding-bottom: 150px;
}
.press-section .press-arrows .button-prev,
.press-section .press-arrows .button-next {
  transition: transform 0.2s;
}
.press-section .press-arrows .button-prev:hover,
.press-section .press-arrows .button-next:hover {
  transform: scale(1.2);
}
/* Press Section end */

/* ------------------------------------------------------------- */

/* Contact section start */
.contact-section {
  position: relative;
  padding-bottom: 150px;
  overflow: hidden;
}
.contact-section h2 {
  color: #fff;
  font-size: 48px;
  margin-bottom: 60px;
}
.contact-section p {
  margin-bottom: 70px;
  line-height: 1.3;
}
.contact-section p a {
  color: #afafaf;
  text-decoration: underline;
}
.contact-section p a:hover {
  color: #b5392a;
}
.contact-section .contact-container {
  gap: 50px;
  align-items: center;
}
.conta .contact-section form {
  margin-left: -20px;
}
.contact-section form label {
  display: block;
  color: #fff;
  font-weight: 600;
  margin-bottom: 25px;
}
.contact-section form input {
  width: 100%;
  background-color: transparent;
  outline: none;
  border: none;
  border-bottom: 2px solid #b5392a;
  margin-bottom: 20px;
  color: #fff;
}
.contact-section form textarea {
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #b5392a;
  width: 100%;
  resize: none;
  outline: none;
  color: #fff;
  overflow-y: hidden;
}
.contact-section .contact-btn {
  background-color: transparent;
  outline: none;
  margin-right: 20px;
  padding: 0.775rem 4.95rem;
}
.contact-section .contact-btn:hover,
.contact-section .contact-btn:active {
  background-color: #b5392a;
  color: #fff;
}
.contact-section .contact-right {
  position: relative;
}
.contact-section .contact-image img {
  margin-inline: auto;
}
.contact-section .contact-logo {
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
}
.contact-section .contact-decoration {
  position: absolute;
  bottom: -50%;
  width: 100%;
  z-index: -1;
}
.contact-section .contact-decoration img {
  width: 100%;
}
.form-msgs {
  color: #fff;
}
/* Contact section end */

/* ---------------------------------------------------------------------- */

/* Footer start */
footer {
  background-color: #121212;
  padding-top: 60px;
}
.footer-logo {
  width: 15%;
}
.footer-nav {
  width: 65%;
}
footer .footer-content {
  justify-content: space-between;
}
footer .footer-content .footer-nav ul {
  justify-content: space-between;
}
footer .footer-content .footer-nav ul li a {
  font-size: 16px;
}
footer .footer-content .footer-nav ul li a:hover {
  font-weight: 900;
  color: #b5392a;
}
.footer-social-media {
  width: 20%;
  text-align: end;
}
.footer-social-media a {
  margin-inline: 15px;
}
.footer-social-media a:hover {
  color: #b5392a;
}
.footer-social-media a i {
  font-size: 16px;
}
footer .footer-line {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 25px;
  background-color: #b5392a;
}
/* Footer end */
/* ------------------------------------------------------------ */

/* Media Queries  */

/* @media (min-width: 400px) {
  .hero-section .logo {
    transform: translate(-50%, -30%);
  }
} */

@media (min-width: 1580px) {
  .hero-section .mask-bg-right {
    background: linear-gradient(
      270deg,
      #0b0b0b 61.11%,
      rgba(11, 11, 11, 0) 99.94%
    );
  }
}
@media (max-width: 1680px) {
  .hero-section .mask-bg-right {
    width: 50%;
  }
  .hero-section .mask-bg-left {
    background: linear-gradient(90deg, #0b0b0b 45%, rgba(11, 11, 11, 0) 85.94%);
  }
}
@media (max-width: 1550px) {
  .container-custom {
    max-width: 1130px;
    margin-inline: auto;
  }
  .hero-section .mask-bg-right {
    background: linear-gradient(
      270deg,
      #0b0b0b 54.11%,
      rgba(11, 11, 11, 0) 90.94%
    );
  }
  .bio-section .bio-text {
    font-size: 14px;
  }
  .bio-section .bio-section-info p {
    font-size: 14px;
  }
  .popup-image {
    max-width: 1297px;
  }
}
@media (max-width: 1440px) {
  .hero-section .mask-bg-left {
    width: 50%;
  }
}
@media (max-width: 1399px) {
  .hero-section .preload {
    transform: scale(1.2);
  }
  .hero-section .logo {
    transform: translate(-50%, -35%);
  }
  .bg-lines {
    max-width: 1116px !important;
  }
  .enternance-logo .line-left,
  .enternance-logo .line-right {
    width: 30%;
  }
  .hero-section .decoration-left {
    left: -200px;
  }
  .hero-section .decoration-right {
    right: -200px;
  }
  .hero-section .mask-bg-right {
    width: 45%;
  }
  .hero-section .mask-bg-left {
    width: 40%;
    background: linear-gradient(90deg, #0b0b0b 52%, rgba(11, 11, 11, 0) 98.94%);
  }
  .bio-section .bio-text {
    font-size: 14px;
  }
  .bio-section .bio-section-info p {
    font-size: 12px;
  }
  .left-desc-content,
  .right-desc-content {
    max-width: 250px !important;
  }
  .left-desc-content p,
  .right-desc-content p {
    font-size: 14px;
  }
  .popup-image {
    max-width: 1116px;
  }
}
@media (max-width: 1249px) {
  .media-section .bg-lines {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 1116px;
    top: 0;
    z-index: -1;
  }
  .hero-section .mask-bg-right {
    width: 30%;
    background: linear-gradient(
      270deg,
      #0b0b0b 74.11%,
      rgba(11, 11, 11, 0) 99.94%
    );
  }
  .contact-section .contact-logo {
    bottom: 0;
  }
}
@media (max-width: 1199px) {
  .popup-image {
    max-width: 936px;
  }
}
@media (max-width: 1024px) {
  .media-section .grid-media {
    grid-template-rows: repeat(4, 280px);
  }
  .media-section .gallery-video .grid-video-media {
    grid-template-rows: repeat(2, 280px);
  }
}
@media (max-width: 991px) {
  .hero-section .decoration-left {
    left: -300px;
  }
  .hero-section .decoration-right {
    right: -300px;
  }
  .hero-section .mask-bg-right {
    width: 30%;
    background: linear-gradient(
      270deg,
      #0b0b0b 47.11%,
      rgba(11, 11, 11, 0) 96.94%
    );
  }
  .hero-section .mask-bg-left {
    width: 15%;
    background: linear-gradient(90deg, #0b0b0b 26%, rgba(11, 11, 11, 0) 81.94%);
  }
  .hero-section .mask-bg-bottom {
    width: 100%;
  }
  .bio-section .blob-right {
    height: 8%;
  }
  .bio-section .blob-left {
    height: 8%;
  }
  .press-section .blob-left {
    height: 15%;
  }
  .press-section .blob-right {
    height: 15%;
  }
  .popup-image {
    max-width: 698px;
  }
  .popup-image img {
    object-fit: cover;
  }
  .enternance-logo .line-left {
    width: 20%;
  }
  .enternance-logo .line-right {
    width: 20%;
  }
  .left-desc-content,
  .right-desc-content {
    max-width: 150px !important;
  }
  .left-desc-content p,
  .right-desc-content p {
    font-size: 12px;
  }
  .media-section .bg-lines {
    max-width: 670px;
  }
  .media-section .bg-lines-tablet {
    max-width: 696px;
  }
  h2 {
    font-size: 38px !important;
  }
  h3 {
    font-size: 16px !important;
  }
  h3.media-navigation {
    font-size: 22px !important;
  }
  .bio-section .bio-section-info h3 {
    font-size: 22px !important;
  }
  p {
    font-size: 14px !important;
  }
  form label {
    font-size: 14px !important;
  }
  form input::placeholder {
    font-size: 14px !important;
  }
  form textarea::placeholder {
    font-size: 14px !important;
  }
  .press-card a {
    font-size: 14px;
  }
  .about-me {
    display: none;
    padding: 80px 0;
  }
  .bio-section .about-me-mobile {
    display: block;
    padding: 80px 0;
  }
  .bio-section .about-content {
    flex-direction: column;
  }
  .bio-section .about-content .about-content-violinist,
  .bio-section .about-content .about-content-singer {
    flex-direction: column;
  }
  .bio-section .about-content .bio-section-images,
  .bio-section .about-content .bio-section-info {
    width: 100%;
    margin-top: 50px;
    align-items: center;
  }
  .bio-section .bio-text {
    line-height: 1.3;
  }
  .press-section {
    padding-bottom: 100px;
  }
  .press-section h2 {
    margin-bottom: 60px;
  }
  .press-section .press-card {
    width: calc(100% / 2 - 52px) !important;
  }
  .contact-section .contact-container {
    flex-direction: column;
    margin: 0 20px;
  }
  .contact-section .contact-right,
  .contact-section .contact-left {
    width: 100%;
  }
  .contact-section h2 {
    text-align: center;
  }
  .con-button-container {
    text-align: center !important;
  }
  .footer-logo {
    display: none;
  }

  .footer-social-media {
    width: 35%;
  }
  .contact-section .contact-decoration {
    display: none;
  }
  .press-section .press-cards {
    flex-wrap: wrap;
    gap: 20px;
    transform: translate3d(0px, 0px, 0px) !important;
    margin: 15px;
  }
  .press-section .press-card {
    width: calc(100% / 2 - 10px) !important;
  }
  .press-section .press-card:hover {
    transform: scale(1.1);
  }
  .press-section .press-arrows {
    display: none;
  }
  .media-section .grid-media {
    grid-template-rows: repeat(4, 240px);
  }
  .media-section .gallery-video .grid-video-media {
    grid-template-rows: repeat(2, 240px);
  }
}
@media (max-width: 768px) {
  .flags {
    right: 80px;
  }
  .nav .nav-list {
    display: none;
  }
  h2 {
    font-size: 32px !important;
  }
  h3 {
    font-size: 12px !important;
  }
  h3.media-navigation {
    font-size: 18px !important;
  }
  p {
    font-size: 12px !important;
  }
  form label {
    font-size: 12px !important;
  }
  form input::placeholder {
    font-size: 12px !important;
  }
  form textarea::placeholder {
    font-size: 12px !important;
  }
  .press-card a {
    font-size: 12px;
  }
  header .nav .mobile-menu {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    background-color: #0b0b0b !important;
    margin: 0 !important;
    gap: 30px;
    transform: translateX(150%) !important;
    box-shadow: 0 0 0 100px rgb(11 11 11) !important;
    transition: all 0.2s;
  }
  .mobile-menu li a {
    font-size: 20px !important;
    color: #afafaf !important;
  }
  .mobile-menu li a:hover {
    color: #b5392a !important;
    border: none !important;
    font-weight: 700;
  }
  header .nav .show-mobile-links {
    transform: translate(0, 100px) !important;
  }
  .enternance-logo .logo .logo-img {
    max-width: 250px;
  }
  .hamburger-menu {
    pointer-events: all;
  }
  .menu {
    display: block;
  }
  .hero-section .blob-left {
    height: 30%;
  }
  .hero-section .decoration-left {
    left: -400px;
  }
  .hero-section .decoration-right {
    right: -400px;
  }
  .hero-section .mask-bg-right {
    width: 15%;
  }
  .hero-section .mask-bg-left {
    width: 30%;
    background: linear-gradient(90deg, #0b0b0b 26%, rgba(11, 11, 11, 0) 81.94%);
  }
  .hero-section-content {
    display: none !important;
  }
  .hero-section .social-media {
    display: none;
  }

  .media-section .bg-lines-tablet {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 592px;
    top: 0;
    z-index: -1;
  }
  .bio-section h2 {
    font-size: 32px;
    line-height: 1.33;
  }
  .bio-section .bio-text {
    font-size: 12px;
    margin-inline: 20px;
    line-height: 1.3;
  }
  .bio-section .blob-right,
  .bio-section .blob-left {
    height: 5%;
  }
  .media-section .grid-media {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 250px);
    gap: 20px;
  }
  .media-section .grid-media .grid-item-1 {
    grid-column: 1 / 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .media-section .grid-media .grid-item-2 {
    grid-column: 2 / 3;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .media-section .grid-media .grid-item-3 {
    grid-column: 1 / 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .media-section .grid-media .grid-item-4 {
    grid-column: 2 / 3;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .media-section .gallery-video .grid-video-media {
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
  }
  .contact-section {
    padding-bottom: 50px;
  }
  footer .footer-content {
    flex-direction: column;
    align-items: center;
  }
  .footer-nav {
    width: 100%;
  }
  .footer-social-media {
    width: 100%;
    text-align: center;
  }
  .footer-nav ul {
    padding: 0 0 0 5px;
  }
  .popup-image {
    max-width: 697px;
    max-height: 540px;
  }
}
@media (max-width: 767px) {
  #contact .field-name {
    flex-direction: column;
  }
  .media-section .gallery-video .grid-video-media {
    grid-template-rows: repeat(2, 140px);
  }
  .media-section .grid-media {
    grid-template-rows: repeat(4, 140px);
  }
  .col-12 {
    padding: 0 !important;
  }
  .con-button-container {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .contact-section form label {
    margin-bottom: 10px;
  }
  .popup-image {
    max-width: 517px;
    max-height: 350px;
  }
}
@media (max-width: 575px) {
  .media-section .bg-lines-mobile {
    max-width: 405px;
  }
  .custom {
    max-width: 425px;
    padding-inline: 10px;
    margin-inline: auto;
  }
  .popup-image {
    max-width: 405px;
    max-height: 350px;
  }
  .hero-section .hero-img {
    display: none;
  }
  .hero-section .hero-img-mobile {
    display: block;
  }
  .hero-section .arrows {
    bottom: 30%;
    transform: translate(-50%, -15%);
  }
  .hero-section .logo {
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 440px) {
  .custom {
    max-width: 320px;
  }
  .media-section .bg-lines-mobile {
    max-width: 300px;
  }
  .popup-image {
    max-width: 300px;
    max-height: 350px;
  }
  .hero-section .logo {
    transform: translate(-50%, -60%);
  }
  .media-section .grid-media {
    grid-template-rows: repeat(4, 105px);
  }
  .media-section .gallery-video .grid-video-media {
    grid-template-rows: repeat(2, 105px);
  }
}
@media (max-width: 425px) {
  footer .footer-content .footer-nav ul li a {
    font-size: 12px;
  }
  .footer-copyright p {
    font-size: 12px;
  }
  .hero-section .mask-bg-right {
    width: 0;
  }
  .hero-section .mask-bg-left {
    width: 0;
  }
  .hero-section .decoration-left {
    left: -450px;
  }
  .hero-section .decoration-right {
    right: -450px;
  }
  .hero-section .logo {
    transform: translate(-50%, -55%);
  }
}
@media (max-width: 400px) {
  .hero-section .logo {
    transform: translate(-50%, -65%);
  }
}

@media (min-width: 1750px) {
  .bg-lines .bg-line-9 {
    display: block !important;
    left: -200px;
  }
  .bg-lines .bg-line-10 {
    display: block !important;
    right: -200px;
  }
}

@media (min-width: 2150px) {
  .bg-lines .bg-line-11 {
    display: block !important;
    left: -400px;
  }
  .bg-lines .bg-line-12 {
    display: block !important;
    right: -400px;
  }
}
