/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Poppins", sans-serif;
  color: #444444;
  width: 100vw;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

a {
  color: #ED1E79;
  text-decoration: none;
}

a:hover {
  color: #ED1E79;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ED1E79;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #ff6a40;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ED1E79;
  border-top-color: #ffe9e3;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

/*
#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(21, 34, 43, 0.85);
  padding: 10px 0;
}*/

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  /* Vertically center the navbar links */
}

.navbar li {
  position: relative;
  display: block;
  /* Make navbar items flex containers */
  align-items: center;
  /* Center content vertically */
}


.navbar>ul>li {
  white-space: nowrap;
  padding: 13px 18px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 16px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.9);
  white-space: nowrap;
  transition: 0.3s;
  font-family: 'poppins';
  font-weight: 300;
  text-decoration: none;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #ED1E79;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
  border: 2px solid #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #ED1E79;
  border-color: #ED1E79;
}

.navbar>ul>li>.getstarted:before {
  visibility: hidden;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin-left: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #15222b;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #ED1E79;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media screen and (min-width: 2000px) {
  .navbar>ul>li {
    white-space: nowrap;
    padding: 13px 18px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;
    padding: 0 3px;
    font-size: 22px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.9);
    white-space: nowrap;
    transition: 0.3s;
    font-family: 'poppins';
    font-weight: 300;
    text-decoration: none;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #ED1E79;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .getstarted,
  .navbar .getstarted:focus {
    padding: 8px 25px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff;
    border: 2px solid #fff;
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    background: #ED1E79;
    border-color: #ED1E79;
  }

  .navbar>ul>li>.getstarted:before {
    visibility: hidden;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 22px;
    text-transform: none;
    color: #15222b;
    font-weight: 400;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: #ED1E79;
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }

}

.mobile-nav-toggle {
  color: #fff;
  font-size: 48px;
  cursor: pointer;
  display: none;
padding-top: 10px;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }

  .navbar {
    padding: 0;
    position: fixed;
    top: 8px;
    right: 30px;
    /* Set the right margin */
    background-color: transparent;
    /* You can change this as needed */
    z-index: 1000;
    /* Ensure it's above other content */
    font-family: "montserrat";
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(78, 78, 78, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 20px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 0; /* Adjusted to cover the entire width */
  bottom: 0; /* Adjusted to cover the entire height */
  left: 0; /* Adjusted to cover the entire width */
  padding: 20px 0; /* Increased padding for better spacing */
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 20px 40px; /* Increased padding for larger touch targets */
  font-size: 36px; /* Increased font size */
  font-weight: 600;
  color: #15222b;
  line-height: 20px;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #ED1E79;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 30px; /* Increased margin for visual balance */
  font-size: 36px; /* Increased font size */
  font-weight: 600;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 20px 0; /* Adjusted margin for dropdown */
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);

}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 20px 40px; /* Increased padding for larger touch targets */
  font-size: 22px; /* Increased font size */
}

.navbar-mobile .dropdown ul a i {
  font-size: 16px; /* Increased icon size */
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #ED1E79;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}


.navbar-mobile  .dropdown-menu{
  width: 100%;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-size: cover;
  position: relative;
  padding: 0;
}

#hero:before {
  content: "";
  background: rgba(13, 20, 26, 0.7);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
}

#hero h2 {
  color: #eee;
  margin-bottom: 50px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  padding: 10px 35px 10px 35px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #ED1E79;
  border: 2px solid #ED1E79;
}

#hero .btn-get-started:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

#hero .btn-watch-video {
  font-size: 16px;
  display: inline-block;
  transition: 0.5s;
  margin-left: 25px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#hero .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}

#hero .btn-watch-video:hover i {
  color: #ED1E79;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 30px 0;
  overflow: hidden;


}

section p {
  font-size: 12pt;
}

@media (min-width: 2000px) {
  section p {
    font-size: 14pt;

  }
}

@media (min-width: 2400px) {
  section p {
    font-size: 16pt;

  }
}

@media (min-width: 3000px) {
  section p {
    font-size: 22pt;

  }
}

.section-bg {
  background-color: #f0f4f8;
}

.section-title {
  padding-bottom: 20px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ED1E79;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #ED1E79;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #ED1E79;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.origin .container {

  padding-bottom: 15px;
  padding: 50px;
  border-radius: 4px;
}


.abouts .container {

  padding-bottom: 15px;
  padding: 50px;
  border-radius: 4px;
}

.cock .container {

  padding-bottom: 15px;
  padding: 50px;
  border-radius: 4px;
}

.about .container {

  padding-bottom: 15px;
  padding: 50px;
  border-radius: 4px;
}

.about .count-box {
  padding: 60px 0;
  width: 100%;
}

.about .count-box i {
  display: block;
  font-size: 48px;
  color: #a1bdd1;
  float: left;
  line-height: 0;
}

.about .count-box span {
  font-size: 28px;
  line-height: 25px;
  display: block;
  font-weight: 700;
  color: #ED1E79;
  margin-left: 60px;
}

.about .count-box p {
  padding: 5px 0 0 0;
  margin: 0 0 0 60px;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #ED1E79;
}

.about .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #ED1E79;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.about .count-box a:hover {
  color: #ED1E79;
}

.about .content {
  font-size: 15px;
}

.about .content h3 {
  font-weight: 700;
  font-size: 24px;
  color: #ED1E79;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
  padding-left: 28px;
  position: relative;
}

.about .content ul i {
  font-size: 24px;
  color: #ED1E79;
  position: absolute;
  left: 0;
  top: -2px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#ED1E79 50%, rgba(78, 78, 78, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
  margin-top: 30%;
  margin-left: 22%;
  z-index: 9;

}


@media (max-width: 1200px) {
  .about .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#ED1E79 50%, rgba(78, 78, 78, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
    margin-top: -3%;
    margin-left: -2%;
    z-index: 9;

  }
}

@media screen and (max-width: 768px) {
  .about .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#ED1E79 50%, rgba(78, 78, 78, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
    margin-top: -3%;
    margin-left: -2%;
    z-index: 9;

  }
}



.about .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgb(255, 255, 255);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
  border-left: 15px solid #ED1E79;
  transform: scale(20);
}

.about .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# About Boxes
--------------------------------------------------------------
.experience {
  background: url("../img/experience-bg.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 60px 0 30px 0;
  position: relative;
}

.experience::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 9;
}*/

.experience .container,
.experience .container-fluid {
  position: relative;
  z-index: 10;
}

.experience .card {

  border: 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.experience .card-icon {
  position: relative;
  /* Allows positioning of the pseudo-element within */
  text-align: center;
  margin-top: -32px;
}

.experience .card-icon i {
  font-size: 32px;
  color: #fff;
  width: 64px;
  height: 64px;
  padding-top: 5px;
  text-align: center;
  background-color: #ED1E79;
  border-radius: 4px;
  border: 4px solid #fff;
  transition: 0.3s;
  display: inline-block;
}

@keyframes moveBox {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
    transform: translate(-50%, -50%);
  }

  50% {
    width: 64px;
    /* Same as the icon size */
    height: 64px;
    /* Same as the icon size */
    opacity: 0.5;
    transform: translate(-50%, -50%);
  }

  100% {
    width: 128px;
    /* Double the icon size */
    height: 128px;
    /* Double the icon size */
    opacity: 0;
    transform: translate(-50%, -50%);
  }
}

.experience .card-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: #fff;
  border-radius: 0;
  /* No rounding for square shape */
  opacity: 0;
  transform: translate(-50%, -50%);
  animation: moveBox 2s infinite;

}

.experience .col-lg-4:nth-child(1) .card-icon::after {
  animation-delay: 0s;
  /* No delay for the first icon */
}

.experience .col-lg-4:nth-child(2) .card-icon::after {
  animation-delay: 0.5s;
  /* Delay for the second icon */
}

.experience .col-lg-4:nth-child(3) .card-icon::after {
  animation-delay: 1s;
  /* Delay for the third icon */
}





.experience .card-body {
  padding-top: 12px;
  padding: 30px;
}

.experience .card-title {
  font-weight: 700;
  text-align: center;
}

.experience .card-title a {
  color: #15222b;
}

.experience .card-title a:hover {
  color: #ED1E79;
}

.experience .card-text {
  color: #5e5e5e;
}

.experience .card:hover .card-icon i {
  background: #fff;
  color: #ED1E79;
}

@media (max-width: 1024px) {
  .experience {
    background-attachment: scroll;
  }
}


/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  background: #f0f4f8;
  padding: 15px 0;
  text-align: center;
}

.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}

.clients img:hover {
  filter: none;
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  border: 1px solid #b5ccdb;
  padding: 15px;
  transition: 0.3s;
  color: #15222b;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.features .nav-link:hover {
  color: #ED1E79;
}

.features .nav-link.active {
  background: #ED1E79;
  color: #fff;
  border-color: #ED1E79;
}

@media (max-width: 768px) {
  .features .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .features .nav-link {
    padding: 15px;
  }

  .features .nav-link i {
    font-size: 24px;
  }
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  font-weight: 600;
  font-size: 26px;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-bottom: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #ED1E79;
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 6px;
  background: #fff;
}

.services .icon-box i {
  float: left;
  color: #ED1E79;
  font-size: 40px;
  line-height: 0;
}

.services .icon-box h4 {
  margin-left: 70px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .icon-box h4 a {
  color: #ED1E79;
  transition: 0.3s;
}

.services .icon-box .icon-box:hover h4 a {
  color: #ED1E79;
}

.services .icon-box p {
  margin-left: 70px;
  line-height: 24px;
  font-size: 14px;
}

.services .icon-box:hover h4 a {
  color: #ED1E79;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(13, 20, 26, 0.7);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #a1bdd1;
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ED1E79;
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  margin: 0 3px 10px 3px;
  transition: all ease-in-out 0.3s;
  background: #e5edf3;
  border-radius: 4px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #ED1E79;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
  overflow: hidden;
}

.portfolio .portfolio-item img {
  position: relative;
  top: 0;
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: -50px;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: #ED1E79;
  padding: 15px 20px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: white;
  transition: ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #ffc1b0;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 15px;
}

.portfolio .portfolio-item:hover img {
  top: -30px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ED1E79;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ED1E79;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(21, 34, 43, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}




/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  position: relative;
}

.team .container {
  position: relative;
  z-index: 10;
}

.team .member {
  margin-bottom: 80px;
  position: relative;
}

.team .member .pic {
  overflow: hidden;
}

.team .member .member-info {
  position: absolute;
  bottom: -50px;
  left: 20px;
  right: 20px;
  background: #fff;
  padding: 20px 15px;
  color: #15222b;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: 0.5s;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  color: #15222b;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #ED1E79;
  bottom: 0;
  left: 0;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: #ED1E79;
}

.team .member .social a:hover {
  color: #ED1E79;
}

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

@media (max-width: 992px) {
  .team .member {
    margin-bottom: 110px;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
  padding-top: 125px;
  padding-bottom: 125px;
  background-color: #fff;
  opacity: 0.8;
}

.contact .info-box i {
  font-size: 32px;
  color: #ED1E79;
  border-radius: 50%;
  padding: 8px;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #ED1E79;
  font-weight: 700;
  margin: 10px 0;
}

@media (max-width: 992px) {
  .contact .info-box {
    color: #444444;
    text-align: center;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    padding-top: 125px;
    padding-bottom: 125px;
    background-color: #fff;
    margin-left: 0px;
    margin-right: 3px;
    opacity: 0.8;
  }
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ED1E79;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #ED1E79;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #ED1E79;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #8b1246;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f0f4f8;
  min-height: 40px;
  margin-top: 78px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #ED1E79;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 52px;
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #121d24;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

@media (max-width: 992px) {
  #footer {
    background: #121d24;
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 12px;
  }
}


#footer .footer-top {
  background: #15222b;
  border-bottom: 1px solid #1d303c;
  padding: 60px 0 0 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #ED1E79;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ED1E79;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #ED1E79;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #ED1E79;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #ED1E79;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #ED1E79;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 767px) {
  #footer .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  #footer .footer-top .footer-info,
  #footer .footer-top .footer-links,
  #footer .footer-top .footer-newsletter {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    /* Adjust spacing between sections */
  }

  #footer .footer-top .footer-links ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  #footer .footer-top .footer-links ul li {
    flex: 0 0 50%;
    /* Each link takes up half the width */
    padding: 0 10px;
    /* Adjust spacing between links */
  }

  #footer .footer-top .footer-newsletter form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #footer .footer-top .footer-newsletter form input[type=email],
  #footer .footer-top .footer-newsletter form input[type=submit] {
    width: 100%;
  }
}

.banners {
  background: rgba(74, 74, 74, 0.5);
  padding: 50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


#video-background {
  position: fixed;
  top: 0;
  left: 0;
  object-fit: cover; /* Ensure the video covers the entire container */
  width: 100%;
  height: 100%;
  object-position: center center; /* Default is center */

  z-index: -100;
  /* Place it behind other content */
  filter: grayscale(100%) brightness(40%);
}

/* Adjust for mobile devices */
@media only screen and (max-width: 768px) {
  #video-background {
      object-position: 50% center; /* Align to the right side */
  }
}

.horizontal-line {
  position: relative;
  /* Establish a positioning context for child elements */
  display: flex;
  align-items: center;
  /* Vertically center the content */
  justify-content: center;
  /* Horizontally center the content */
  width: 100%;
  z-index: 1;
  /* Set a high z-index value to ensure the image appears on top */
}

.horizontal-line img {
  position: absolute;
  /* Position the image absolutely within the .horizontal-line container */
  top: 50%;
  /* Move the image 50% from the top */
  transform: translateY(-50%);
  /* Adjust the position of the image vertically */
  margin-top: 0px;
}

.horizontal-line2 {
  position: relative;
  /* Establish a positioning context for child elements */
  display: flex;
  align-items: center;
  /* Vertically center the content */
  justify-content: center;
  /* Horizontally center the content */
  width: 100%;
  z-index: 1;
  /* Set a high z-index value to ensure the image appears on top */
  padding-top: 30px;
}

.horizontal-line2 img {
  position: absolute;
  /* Position the image absolutely within the .horizontal-line container */
  transform: translateY(-50%);
  /* Adjust the position of the image vertically */
  margin-top: -40px;
  padding-top: 30px;
}

@media (max-width: 767px) {
  .horizontal-line2 img {
    position: absolute;
    /* Position the image absolutely within the .horizontal-line container */
    transform: translateY(-50%);
    /* Adjust the position of the image vertically */
    margin-top: -30px;
    padding-top: 110px;
  }
}

@media (max-width: 1200px) {
  .horizontal-line2 img {
    position: absolute;
    /* Position the image absolutely within the .horizontal-line container */
    transform: translateY(-50%);
    /* Adjust the position of the image vertically */
    margin-top: -70px;
    padding-top: 110px;
  }
}


.title {
  position: absolute;
  /* Position the image absolutely within the .horizontal-line container */
  top: 50%;
  /* Move the image 50% from the top */
  transform: translateY(-50%);
  /* Adjust the position of the image vertically */
  z-index: 9999;
  padding-top: 70px;
}

.title2 {
  position: absolute;
  /* Position the image absolutely within the .horizontal-line container */
  top: 50%;
  /* Move the image 50% from the top */
  transform: translateY(-50%);
  /* Adjust the position of the image vertically */
  z-index: 9999;
  padding-top: 70px;
}



.thumbnail {
  display: block;
  cursor: pointer;
  transition: transform 1s ease-in;
}

.thumbnail:hover {
  transform: scale(1.3);
}

.hover-scale {
  transition: transform 8s cubic-bezier(0.25, 0.8, 0.25, 1);

}

.hover-scale:hover {
  transform: scale(1.1);

}


/*
.vignette {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 200px rgba(0,0,0,0.9) inset;
}*/


#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  /* Semi-transparent black */
  z-index: 1000;
  /* Make sure it's above other content */
  display: none;
  /* Initially hidden */
}

#age-verify {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  /* Adjust the width as needed */
  height: 250px;
  /* Adjust the height as needed */
  background-color: #fff;
  border: 6px solid #ED1E79;
  box-sizing: border-box;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  /* Higher z-index than the overlay */
  pointer-events: all;
  /* Ensure overlay captures all pointer events */
}

#age-verify .window {
  position: relative;
  /* Ensure z-index works */
  padding: 40px;

  top: 50%;
  left: 50%;
  width: 400px;
  height: 250px;
  overflow: hidden;
  padding: 40px;
  margin-left: -200px;
  margin-top: -125px;
  background-color: #fff;
  border: 6px solid #ED1E79;
  box-sizing: border-box;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transition: 500ms;
  z-index: 11;
}

#age-verify .window span {
  display: block;
  text-align: left;
  margin-bottom: 10px;
  font-family: 'Source Sans Pro', sans-serif;
  z-index: 11;
}

#age-verify .window span.title {
  color: #ED1E79;
  font-size: 24px;
  z-index: 11;
}

#age-verify .window button {
  border: 0;
  margin: 0;
  padding: 0;
  width: 48%;
  height: 60px;
  color: #FFF;
  font-size: 18px;
  background-color: #ED1E79;
  margin-top: 20px;
  font-family: 'Source Sans Pro', sans-serif;
  transform: scale(1);
  transition: 0.2s;
  z-index: 11;
}

#age-verify .window button.back {
  display: block;
  float: none;
  margin: auto;
  background-color: #fff;
  color: #ED1E79 !important;
  margin-top: 20px;
  z-index: 11;
}

#age-verify .window button.yes {
  float: left;
}

#age-verify .window button.no {
  float: right;
}

#age-verify .window button:hover {
  transform: scale(1.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  background-color: lighten(#ED1E79, 10%);
}

#age-verify .window .underBox {
  position: absolute;
  width: 400px;
  height: 250px;
  padding: 40px;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #ED1E79;
  transition: 500ms;
  box-sizing: border-box;
}

#age-verify .window .underBox * {
  color: #FFF !important;
}

#age-verify.hidden {
  opacity: 0;
  visibility: hidden;
}

#age-verify.hidden .window {
  transform: scale(0.5);
}

#age-verify.under .window .underBox {
  top: 0%;
}

#age-verify.active-links {
  pointer-events: none;
}

#age-verify.active-links a {
  pointer-events: none;
}

#home {
  min-height: 100vh;
  /* Ensure the landing page section takes up at least the full viewport height */
}


.logo {
  width: 470px;
  height: 350px;
  transform: scale(0);
  position: absolute;
  top: 50%;
  left: 0;
  transform-origin: center center;
  z-index: 1;
  transition: transform 1s;
  /* Add transition here */
}

@media (max-width: 991px) {
  .logo {
    width: 235px;
    height: 175px;
    transform: scale(0);
    position: absolute;
    top: 50%;
    left: 0;
    transform-origin: center center;
    z-index: -999;
    transition: transform 1s;
    /* Add transition here */
  }
}

.slogan {
  text-align: left;
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  /* Ensure content is above the video */
}

/* Ensure the image is above the circle overlay */
.content img {
  position: relative;
  z-index: 1;
  /* Set a higher z-index for the image */
}

.language-selector {
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 100%;
  background-color: #ED1E79;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  /* Set default font size */
  transition: background-color 0.3s ease;
  /* Add a smooth transition effect */
}

.language-selector:hover {
  background-color: #a8004f;
  /* Darker color when hovered over */
}

@media (max-width: 991px) {
  .language-selector {
    right: 100px;
    /* Move 80px to the left */
  }
}


.title-logo {
  position: fixed;
  top: 30px;
  /* Adjust as needed to control the distance from the top */
  left: 40px;
  /* Adjust as needed to control the distance from the left */
  width: 180px;
  /* Adjust the width as needed */
  height: auto;
  /* Maintain aspect ratio */

}

@media (max-width: 991px) {
  .title-logo {
    position: fixed;
    top: 30px;
    /* Adjust as needed to control the distance from the top */
    left: 20px;
    /* Adjust as needed to control the distance from the left */
    width: 140px;
    /* Adjust the width as needed */
    height: auto;
    /* Maintain aspect ratio */

  }
}






.banner {
  position: fixed;
  top: -90px;
  /* Initially hide the banner above the viewport */
  right: 0;
  /* Position the banner on the right side */
  width: 100%;
  /* Set the width to half of the screen */
  height: 90px;
  /* Set the height of the banner */
  background-color: rgba(255, 255, 255, 0.5);
  /* Transparent grey background */
  transition: top 0.3s ease;
  /* Add transition for smooth movement */
  border-bottom: 1px solid rgb(0, 0, 0);
  -webkit-box-shadow: 0 4px 3px -2px black;
  -moz-box-shadow: 0 4px 3px -3px black;
  box-shadow: 0 4px 3px -2px black;
}
.dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% - 0px); /* Adjust the distance from the top */
  right: 0;
  background-color: #f9f9f9;
  min-width: 90px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  max-height: 100px; /* Limit the height of the dropdown content */
  overflow-y: hidden; /* Hide the scrollbar */
  padding-bottom: 10px; /* Add some padding to the bottom */
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #a5a5a5;
}

.language-selector:hover .dropdown-content,
.dropdown-content:hover {
  display: block;
}


#prosecco {
  width: 100%;
  height: 100vh;
  /* Maintain full height of viewport */
  min-height: 100vh;
  background-image: url('../img/glasses.jpg');
  background-size: cover;
  /* Cover the entire element with the image */
  background-position: center;
  background-repeat: no-repeat;
  /* Prevent the background from repeating */
  z-index: 2;
}

@media (max-width: 991px) {
  #prosecco {
    width: 100vw;

    background-size: contain;
    /* Scale the image to fit within the container on mobile */
    background-image: url('../img/glassesnarrow.jpg');
    background-size: cover;
    /* Cover the entire element with the image */
    background-position: center;
    background-repeat: no-repeat;
    /* Prevent the background from repeating */
    z-index: 2;
  }
}

.prosecco {
  z-index: 2;
}



#began {
  min-height: 100vh;
  background-image: url('../img/began.jpg');
  background-size: 100% auto;
  /* Adjust the background size */
  background-position: center;
  background-repeat: no-repeat;
  /* Prevent background from repeating */
  margin-top: 40px;
}

@media (max-width: 991px) {
  #began {
    background-image: url('../img/began.jpg');
    background-size: cover;
    /* Use cover for mobile devices */
    background-position: center;
    background-repeat: no-repeat;
    /* Prevent background from repeating */

  }


}

.began {
  z-index: 2;
}

.section {
  min-height: 100vh;
}

.aboutright {
  position: relative;
  /* Make the container position relative */
  margin-top: 10vw;
  margin-right: -10vw;
}

.aboutright img.img-fluid {
  position: absolute;
  /* Position the image absolutely within its container */
  top: 0;
  right: -10vw;
  /* Adjust as needed to overlap the text div */
  z-index: 1;
  /* Set a higher z-index to ensure it appears above the text */
}


.aboutleft {
  margin-top: 10vw;
  margin-left: -10vw;
}



@media screen and (max-width: 1200px) {
  .aboutright {
    position: relative;
    /* Reset to default positioning */
    margin-top: 20px;
    margin-right: 0;
    /* Reset margin-right */
  }

  .aboutright img.img-fluid {
    position: static;
    /* Reset to default positioning */
    display: block;
    /* Ensure the image takes up its own space */
    margin-right: auto;
    /* Center the image horizontally */
    margin-left: auto;
    z-index: 0;
    /* Set z-index to default */

  }

  .aboutleft {
    margin-top: -80px;
    margin-left: 40px;
    display: flex;
    justify-content: center;
    /* Horizontally center the content */
    align-items: center;
    /* Vertically center the content */
    margin-left: 0;
  }


}

@media screen and (max-width: 768px) {
  .aboutright {
    position: relative;
    /* Reset to default positioning */
    margin-top: 20px;
    margin-right: 0;
    /* Reset margin-right */
  }

  .aboutright img.img-fluid {
    position: static;
    /* Reset to default positioning */
    display: block;
    /* Ensure the image takes up its own space */
    margin-right: auto;
    /* Center the image horizontally */
    margin-left: auto;
    z-index: 0;
    /* Set z-index to default */
  }

  .aboutleft {
    margin-top: -80px;
    margin-left: auto;
    display: flex;
    justify-content: center;
    /* Horizontally center the content */
    align-items: center;
    /* Vertically center the content */
  }
}


.custom-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-left: 200px;
  padding-right: 12vw;
  padding-bottom: 8vw;
  padding-top: 8vw;
}

.custom-text {
  position: absolute;
  right: 12vw;
  transform: rotate(90deg);
  transform-origin: bottom right;
  white-space: nowrap;
  font-size: 132px;
  color: #ED1E79;
  font-family: "Poppins";
}

.custom-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.custom-container2 {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-left: 200px;
  padding-right: 12vw;
  padding-bottom: 8vw;
  padding-top: 8vw;
}

.custom-text2 {
  position: absolute;
  right: 11vw;
  transform: rotate(90deg);
  transform-origin: bottom right;
  white-space: nowrap;
  font-size: 132px;
  color: #ED1E79;
  font-family: "Poppins";
}

.custom-image2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.custom-container3 {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-left: 13vw;
  padding-bottom: 15vw;
  padding-top: 10vw;
  padding-right: 180px;
}

.custom-text3 {
  position: absolute;
  left: 0px;
  transform: rotate(90deg);
  transform-origin: bottom left;
  white-space: nowrap;
  font-size: 132px;
  color: #ED1E79;
  font-family: "Poppins";
}

.custom-image3 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-container4 {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-left: 13vw;
  padding-bottom: 15vw;
  padding-top: 10vw;
  padding-right: 180px;
}

.custom-text4 {
  position: absolute;
  left: 0px;
  transform: rotate(90deg);
  transform-origin: bottom left;
  white-space: nowrap;
  font-size: 132px;
  color: #ED1E79;
  font-family: "Poppins";
  padding-left: 12vw;
}

.custom-image4 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .custom-container4 {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 30px;
  }

  .custom-container4 p {
    font-size: 12pt;
  }


  .custom-text4 {
    position: absolute;
    left: 0px;
    transform: rotate(90deg);
    transform-origin: bottom left;
    white-space: nowrap;
    font-size: 132px;
    color: #ED1E79;
    font-family: "Poppins";
    padding-left: 40px;
  }

  .custom-image4 {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media screen and (min-width: 1600px) {

  .custom-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding-left: 4vw;
  }


  .custom-image2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding-left: 4vw;
  }
}

@media screen and (min-width: 2400px) {
  .custom-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding-left: 8vw;
  }

  .custom-image2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding-left: 8vw;
  }
}

@media screen and (min-width: 1600px) {
  .custom-image3 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding-right: 4vw;
  }
}

@media screen and (min-width: 2400px) {
  .custom-image3 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding-right: 6vw;
    padding-left: 2vw;
  }
}

@media screen and (min-width: 1600px) {
  .custom-image4 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding-right: 4vw;
    padding-left: 2vw;
  }
}

@media screen and (min-width: 2400px) {
  .custom-image4 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding-right: 6vw;
  }
}

.big {
  font-size: 150pt;
  margin-top: -160px;
  color: #ED1E79;
  padding: 30px;
  padding-top: 120px;
  text-align: center;
  font-family: 'poppins';
  font-weight: 600;
  text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 768px) {
  .big {
    font-size: 80pt;
    margin-top: -160px;
    color: #ED1E79;
    padding: 30px;
    padding-top: 140px;
    text-align: center;
    font-family: 'poppins';
    font-weight: 600;
    text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
  }
}

.lessbig {
  font-size: 60pt;
  padding-top: 180px;
  margin-top: 30px;
  color: #ffffff;

  text-align: left;
  font-family: 'poppins';
  font-weight: 500;

}

@media screen and (max-width: 768px) {
  .lessbig {
    font-size: 36pt;
    margin-top: 60px;
    color: #ffffff;
    text-align: left;
    font-family: 'poppins';
    font-weight: 300;
  }
}

.shadow {
  box-shadow: 0px 0px 30px rgba(237, 30, 121, 0.5);
}

@media screen and (max-width: 768px) {
.kut {
margin-top: -18px;
}
}

.un {
  display: inline-block;

}

.un:after {
  content: '';
  width: 0px;
  height: 3px;
  display: block;
  background: #ED1E79;
  transition: 500ms;
}

.un:hover:after {
  width: 100%;
}

.recy {
  width: 600px;
}
@media screen and (max-width: 768px) {
.recy {
  width: 300px;
}}

h4 {
  color: #ED1E79;
  font-size: 24px;
  display: block;
  padding-bottom: 4px;
  margin-left: -13px;
}

.custom-text,
.custom-text2,
.custom-text3,
.custom-text4 {
  position: absolute;
  transition: transform 0.1s linear;
}

@media (max-width: 991px) {
  .custom-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-left: 4vw;
  }


  .custom-container p {
    font-size: 18px;
  }

  .custom-text {
    position: absolute;
    right: 1vw;
    transform: rotate(90deg);
    transform-origin: bottom right;
    white-space: nowrap;
    font-size: 0px;
    color: #ED1E79;
    font-family: "Poppins";
  }


  .custom-container2 {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-left: 4vw;
  }

  .custom-container2 p {
    font-size: 18px;
  }

  .custom-text3 {
    position: absolute;
    right: 1vw;
    transform: rotate(90deg);
    transform-origin: bottom right;
    white-space: nowrap;
    font-size: 0px;
    color: #ED1E79;
    font-family: "Poppins";
  }

  .custom-container3 {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-left: 4vw;
    padding-right: 30px;
    padding-bottom: 80px;
  }

  .custom-container3 p {
    font-size: 18px;
  }

  .custom-text4 {
    position: absolute;
    right: 1vw;
    transform: rotate(90deg);
    transform-origin: bottom right;
    white-space: nowrap;
    font-size: 0px;
    color: #ED1E79;
    font-family: "Poppins";
  }

  .custom-container4 {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-left: 4vw;
    padding-right: 30px;
    padding-bottom: 80px;
  }

  .custom-container4 p {
    font-size: 18px;
  }

  .custom-text4 {
    position: absolute;
    right: 1vw;
    transform: rotate(90deg);
    transform-origin: bottom right;
    white-space: nowrap;
    font-size: 0px;
    color: #ED1E79;
    font-family: "Poppins";
    padding-right: 20px;
  }


}

@media (min-width: 2400px) {

  .custom-container p {
    font-size: 24px;
  }


  .custom-container2 p {
    font-size: 24px;
  }


  .custom-container3 p {
    font-size: 24px;
  }


  .custom-container4 p {
    font-size: 24px;
  }



}


@media screen and (min-width: 2800px) {

  /*
  .custom-text {
    position: absolute;
    right: 0vw;
    transform: rotate(90deg);
    transform-origin: top right;
    white-space: nowrap;
    font-size: 200px;
    color: #ED1E79;
    font-family: "Poppins";
  }

  .custom-text2 {
    position: absolute;
    right: 0vw;
    transform: rotate(90deg);
    transform-origin: top right;
    white-space: nowrap;
    font-size: 200px;
    color: #ED1E79;
    font-family: "Poppins";
  }


  .custom-text3 {
    position: absolute;
    left: -10vw;
    transform: rotate(90deg);
    transform-origin: top right;
    white-space: nowrap;
    font-size: 200px;
    color: #ED1E79;
    font-family: "Poppins";
  }


  .custom-text4 {
    position: absolute;
    left: -36vw;
    transform: rotate(90deg);
    transform-origin: top right;
    white-space: nowrap;
    font-size: 200px;
    color: #ED1E79;
    font-family: "Poppins";
  }
*/
  .custom-container3 {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-left: 400px;
    padding-right: 200px;
  }

  .custom-container4 {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-left: 400px;
    padding-right: 200px;
  }
}


.imag {
  width: 40vw;
}

@media (max-width: 1280px) {
  .imag {
    width: 66vw;
  }
  }

@media (max-width: 991px) {
.imag {
  width: 84vw;
}
}

.prosecco {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  /* Full viewport height */
  position: relative;
}

.text {
  position: absolute;
  left: 72%;
  /* Position the left edge at 66% of the screen width */
  transform: translateX(-50%);
  /* Adjust to center text around the 66% mark */
  text-align: center;
}


@media (max-width: 991px) {
  .text {
    position: absolute;
    left: 63%;
    /* Position the left edge at 66% of the screen width */
    transform: translateX(-50%);
    /* Adjust to center text around the 66% mark */
    text-align: center;
  }

}

.card {
  cursor: pointer;
}

.popup {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  animation: fadeIn 0.5s;
}

.popup-content {
  background-color: #ED1E79;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #ffffff;
  width: 80%;
  max-width: 300px;
  text-align: center;
  border-radius: 10px;
  transform: scale(0.7);
  animation: scaleIn 0.5s forwards;
}

.close {
  color: #ffffff;
  float: right;
  font-size: 28px;
  font-weight: bold;
  padding-left: 0px;
  margin-top: -20px;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.link-container {
  display: flex;
  flex-direction: column;
}

.link {
  padding: 10px;
  margin: 5px 0;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.spotify-link {
  background-color: #ffffff;
}

.rogerthat-link {
  background-color: #121f2c;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.7);
  }

  to {
    transform: scale(1);
  }
}