* {
box-sizing: border-box;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
html {
  scroll-behavior: smooth;
}
body {
color: #ffffff;
padding: 0;
font-family: "Poppins", sans-serif;
background-color: rgb(20,20,20);
margin: 0 2vw;
margin-bottom: 20vw;
}

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

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style:normal;
  
}
.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 5.5vw;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow-x: hidden;
  flex-direction: column;
  background: #000000;
  padding: 2% 1%;
  transition: all 0.4s ease;
  z-index: 1000;
}
.sidebar:hover {
  width: 250px;
}
.sidebar .sidebar-header {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar-logo {
  width: 100%;
  height: 2.5vw;
}
.sidebar-links {
  list-style: none;
  margin-top: 20px;
  height: 80%;
  padding: 0;
  overflow-y: auto;
  scrollbar-width: none;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.sidebar-icons{
  display: flex;
  margin: 5% 0;
  margin-right: 15%;
  width: 2vw;
  height:3vh;
}
.sidebar-text{
  font-weight: 400;
  opacity: 0;
  transition: all 0.5s ease;
}
.sidebar:hover .sidebar-text{
  opacity: 1;
}
.sidebar-links li{
  display: flex;
  align-items: space-evenly;
}
.sidebar-links::-webkit-scrollbar {
  display: none;
}
.sidebar-links li:hover {
  background-color: rgba(187, 134, 252, 4%);
}
.sidebar-links li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 20px;
  color: #fff;
  font-weight: 500;
  white-space: nowrap;
  padding: 10% 20px;
  padding-right: 40px;
  text-decoration: none;
  transition: 0.2s ease;
}

.sidebar-links li a:hover {
  color: #BB86FC;
  border: 1px solid #BB86FC;
  border-radius: 5%;
}
.sidebar-links li a:hover .icon-fill{
  fill: #BB86FC;
}
.sidebar:hover .user-account {
  background: #fff;
  border-radius: 4px;
}
.user-account {
  margin-top: auto;
  padding: 1vw .2vw;
  padding-left:55px;
  margin-left: -25%;
  margin-right: -25%;
}                        
.user-profile {
  display: flex;
  align-items: center;
  color: #000000;
}

.user-profile img {
  width: 3.5vw;
  height:3.5vw;
  border-radius: 50%;
  border: 2px solid #fff;
}

.user-profile h3 {
  font-size: 1rem;
  font-weight: 600;
}

.user-profile span {
  font-size: 0.775rem;
  font-weight: 600;
}

.user-detail {
  margin-left: 8%;
  white-space: nowrap;
}

.hero-section{
  display: grid;
  position: relative;
  grid-template-columns: 1fr 1.15fr;
  grid-template-rows: 50% 30% 20%;
  align-items: center;
  /* outline: 1px solid #0051ff; */
}
.hero-title{
  display: flex;
  position: relative;
  color: #3b3b3b;
  font-size:8vw;
  width: 40vw;
  height: auto;
  line-height: 90%;
  text-align: center;
  margin: 10% 0;
  margin-bottom: 0%;
  left: 25%;
  transition: all 0.5s ease;
}

.hero-description{
  position: relative;
  left: 25%;
  font-size: 3vw;
  margin:0;
  grid-row:2/3;
  grid-column: 1/2;
}
.hero-images{
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  grid-row: 1/4;
  grid-column: 2/3;
}
.tequila{
  display: flex;
  position: absolute;
  width: 55%;
  height: auto;
  top: 0%;
  left: 15%;
  z-index: 4;
  transition: all 0.5s ease;
}
.tequila:hover{
  transform: scale(1.05);
  transition: all 0.5s ease;
}
.perfume{
  display: flex;
  position: absolute;
  width: 70%;
  height: auto;
  top:10%;
  left: 30%;
  z-index: 3;
  transition: all 0.5s ease;
}
.perfume:hover{
  transform: scale(1.05);
  transition: all 0.5s ease;
}
.contour-1{
  display: flex;
  position: absolute;
  width: 55%;
  height: auto;
  top: 10%;
  left: 13%;
  z-index: 2;
}
.contour-2{
  display: flex;
  position: absolute;
  width: 70%;
  height: auto;
  top:-5%;
  left: 30%;
  z-index: 1;
}
.grad-text{  
  position: relative;          
  background: linear-gradient(
    125deg,#FF512F  , #DD2476); 
    -webkit-text-fill-color: transparent; 
    -webkit-background-clip: text;
  }
  .underline{
    position: absolute;
    width:100%;
    height: auto;
    top:87%;
    left: 0% ;
  }
  .readmore-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 30%;
    height: auto;
    border-radius: 3rem;
    border: none;
    color: #000000;
    cursor: pointer;
    background-color: #ffffff;
    transition: all 0.2s ease;
  }
  .readmore-icon{
  box-sizing: border-box;
  height: auto;
  width: 2.5vw;
  margin: 8% 0;
  margin-left: 8%;
  
  }
  .readmore-text{
  display: flex;
  font-size: 1.35vw;
  margin: 8% 0;
  margin-right: 12%;
  }
  .readmore-button-container{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15% 0;
    grid-row:3/4;
    grid-column: 1/2;
  }
  .readmore-button:active {
    transform: scale(0.96);
  }
  .readmore-button:before,
  .readmore-button:after {
    position: absolute;
    content: "";
    width: 150%;
    left: 50%;
    height: 100%;
    transform: translateX(-50%);
    z-index: -1000;
    background-repeat: no-repeat;
  }
  .readmore-button.animate::before {
    top: -70%;
    background-image: radial-gradient(circle, #ffffff 20%, transparent 20%),
      radial-gradient(circle, transparent 20%, #ffffff 20%, transparent 30%),
      radial-gradient(circle, #ffffff 20%, transparent 20%),
      radial-gradient(circle, #ffffff 20%, transparent 20%),
      radial-gradient(circle, transparent 10%, #ffffff 15%, transparent 20%),
      radial-gradient(circle, #ffffff 20%, transparent 20%),
      radial-gradient(circle, #ffffff 20%, transparent 20%),
      radial-gradient(circle, #ffffff 20%, transparent 20%),
      radial-gradient(circle, #ffffff 20%, transparent 20%);
    background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%,
      10% 10%, 18% 18%;
    animation: greentopBubbles ease-in-out 0.6s forwards infinite;
}
.hero-title:hover{
  text-shadow: 0 0 5px #ffa500, 0 0 15px #ffa500, 0 0 20px #ffa500, 0 0 40px #ffa500, 0 0 60px #ff0000, 0 0 10px #ff8d00, 0 0 98px #ff0000;
  color: #fff6a9;
  text-align: center;
  transition: all 0.5s ease;
}

@keyframes greentopBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%,
      40% 90%, 55% 90%, 70% 90%;
  }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%,
      50% 50%, 65% 20%, 90% 30%;
  }
  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%,
      50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@keyframes glowing {
  0%{
  background-position: 0 0;
}
50%{
  background-position: 600% 0;
}
100%{
  background-position: 0 0;
}
}
.readmore-button.animate::after {
  bottom: -70%;
  background-image: radial-gradient(circle, #ffffff 20%, transparent 20%),
    radial-gradient(circle, #ffffff 20%, transparent 20%),
    radial-gradient(circle, transparent 10%, #ffffff 15%, transparent 20%),
    radial-gradient(circle, #ffffff 20%, transparent 20%),
    radial-gradient(circle, #ffffff 20%, transparent 20%),
    radial-gradient(circle, #ffffff 20%, transparent 20%),
    radial-gradient(circle, #ffffff 20%, transparent 20%);
  background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 20% 20%, 18% 18%;
  animation: greenbottomBubbles ease-in-out 0.6s forwards infinite;
}
@keyframes greenbottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%,
      70% -10%, 70% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%,
      105% 0%;
  }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%,
      110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

.title{
  font-weight: 600;
  margin-left: 7%;
  font-size: 3vw;
  padding: .5vw 5.5vw;
  color: #ffffff;
}
.sub-title{
  width: 50vw;
  font-weight: 600;
  margin-left: 7%;
  font-size: 2.5vw;
  padding: .5vw 5.5vw;
  color: #b0b0ba;
}
.services-wrapper{
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin: 2.5% 0;
  margin-left: 2.5%;
  /* outline: 1px solid #ff0000;  */

}
.services-container{
  display: flex;
  flex-direction: column;
  width: 80%;
  /* outline: 2px solid #DD2476; */
}
.list-container{
  font-weight: 500;
  font-size: 1.6vw;
  text-align: center;
  color: #ffffff;
  /* outline: 1px solid #8222ff7c; */
  margin: 1vw 0;
  padding: 2vw 1.5vw;
  background: rgba(255, 255,255,0.05);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8.9px);
  -webkit-backdrop-filter: blur(8.9px);
}
.list-container:hover{
  color: black;
}
.list-title{
  font-weight: 600;
  font-size: 4vw;
  padding: 1vw 5.5vw;
  color: #ffffff;
}
.list-container:hover > #list-title-1{
  background: linear-gradient(125deg,#FBB03B ,#D4145A );
  -webkit-text-fill-color: transparent; 
  -webkit-background-clip: text;
  transition: all 1s ease;
}
#list-container-1:hover{
  background: linear-gradient(125deg, #FFECD2  , #FCB69F);
  transition: all .5s ease;
}
.list-container:hover > #list-title-2{
  background: linear-gradient(125deg, #16ba55,#22a2b6);
  -webkit-text-fill-color: transparent; 
  -webkit-background-clip: text;
  transition: all 1s ease;
}
#list-container-2:hover{
  background: linear-gradient(125deg, #A9F1DF   , #FFBBBB);
  transition: all .5s ease;
}
.list-container:hover > #list-title-3{
  background: linear-gradient(125deg, #662D8C   , #ED1E79);
  -webkit-text-fill-color: transparent; 
  -webkit-background-clip: text;
  transition: all 1s ease;
}
#list-container-3:hover{
  background: linear-gradient(125deg, #EE9CA7  , #FFDDE1);
  transition: all .5s ease;
}
.wrapper {
  width: 100vw;
  height: 37vw;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2.5% 2.5%;
  /* outline: 1px solid #ff0000;  */
}

.container {
  width:83vw;
  height: 37vw;
  margin-left: 2vw;
  display: flex;
  flex-wrap: nowrap;
  justify-content: start;
  /* outline: 1px solid #0051ff; */
}

.card {
  width: 10vw;
  height: 37vw;
  border-radius: .75rem;
  background-size: cover;
  cursor: pointer;
  overflow: hidden;
  border-radius: 2rem;
  margin: 0 10px;
  display: flex;
  align-items: flex-end;
  transition: .6s cubic-bezier(.28,-0.03,0,.99);
  box-shadow: 0px 10px 30px -5px rgba(0,0,0,0.8);
  background-position: 0 55%;
  background-repeat: no-repeat;
  background-size: 35vw;  
  background-position: center;
}

.card > .row {
  color: white;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  z-index: 2;
}

.card > .row > .icon-container {
  background: rgb(255, 255, 255);
  color: white;
  border-radius: 50%;
  width: 7vw;
  height: 7vw;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.5vw;
  z-index: 2;
}
.card > .row > .icon-container > .icon {
  width: 4vw;
  height: 4vw;
}

.card > .row > .description {
  display: flex;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  height: 80px;
  width: 520px;
  opacity: 0;
  transform: translateY(30px);
  transition-delay: .3s;
  transition: all .3s ease;
  z-index: 2;
}
.description p {
  color: #b0b0ba;
  padding-top: 5px;
}

.description h4 {
  text-transform: uppercase;
}

input {
  display: none;
}

input:checked + label {
  width: 47vw;
  height: 37vw;
}

input:checked + label .description {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.card[for="c1"] {
  background-image: url('images/tequila-card.png');
  background-size: 47vw;
}
.card[for="c2"] {
  position: relative;
  justify-content: center;
  align-items: center;
}
.card[for="c3"] {
  background-image: url('images/perfume-card.png');
  background-size: 50vw;
}
.card[for="c4"] {
  background-image: url('images/soda-can.png');
  background-size: 85vw;
}
#c2-row{
  position: absolute;
}
.card video{
  width: 30vw;
}
/* Hide checkboxes */
.card-check {
  display: none;
}
#card2-check:checked + #c2 {
  width: 30vw;
}
#note{
  display: flex;
  font-style: italic;
  font-size: 1vw;
  text-align: center;
  justify-content: center;
  margin-left: 7%;
}
.about-wrapper{
  position: relative;
  display: flex;
  width: 100%;
  height: 30vw;
  justify-content: center;
  align-items: center;
  margin: 5% 0;
  margin-left: 2.5%;
  /* outline: 1px solid #ff0000;  */
}
.about-container{
  z-index: 1;
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  position: relative;
  width: 40vw;
  height: 25vw;
  border-radius: 3vw;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2.75vw;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.6px);
  -webkit-backdrop-filter: blur(7.6px);
  border: 1px solid rgba(255, 255, 255, 0.46);
  opacity: 1;
  transition: all 0.5s ease;  
}
.about-container > #circuit > g > path{
  fill: rgba(255, 255, 255, 0.163);
}
.about-container > #circuit{
  width: 100%;
  height: 100%;
}
.about-container > #about-photo{
  position: absolute;
  top: 35%;
  left: 6%;
  width: 30%;
  border-radius:20%;
}
.about-container > #about-lion{
  position: absolute;
  top: 8%;
  left: 12%;
  width: 15%;
  border-radius:20%;
}
#about-title{
  font-size: 2.5vw;
  font-weight: 900;
  position: absolute;
  top: 12%;
  left: 44%;
  width: 15%;
  border-radius:20%;
}
#about-name-container{
  font-weight: 600;
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 35%;
  left: 42%;
  width: 15%;
  border-radius:20%;
}
#name-title{
  font-size: 1.3vw;
  color: #FBB03B;
}
#name{
  font-size: 1.6vw;
  width: 15vw;
  /* outline: 1px solid #16ba55; */
}

#about-education-container{
  font-weight: 600;
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 55%;
  left: 42%;
  width: 20;
  /* outline: 1px solid #16ba55; */
}
#education-title{
  width:10vw;
  font-size: 1.3vw;
  color: #FBB03B;
  /* outline: 1px solid #16ba55; */
}
#education{
  font-size: 1.6vw;
  width: 22vw;
  /* outline: 1px solid #16ba55; */
}
.about-content{
  transition: all 0.5s ease;
}
.about-content:hover{
  transform: scale(1.05);
  transition: all 0.5s ease;
}
#about-image-1{
  z-index: 0;
  position: absolute;
  width: 30%;
  left: 10%;
  border-radius:20%;
}
#about-image-2{
  z-index: 2;
  position: absolute;
  top: -30%;
  width: 30%;
  left: 55%;
  border-radius:20%;
}
#about-image-3{
  z-index: 1;
  position: absolute;
  width: 20%;
  top: 9vw;
  left: 62vw;
  border-radius:20%;
}
.about-wrapper > img:hover{
  transform: scale(1.05);
  transition: all 0.5s ease;
}
.about-wrapper > img{
  transition: all 0.5s ease;
}
@media (max-width: 1028px) {
  .sidebar {
    position: fixed;
    top: 90%;
    width: 100%;
    height: 10%;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 3rem;
    border-top-right-radius: 3rem;
  }
  .sidebar-links{
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
    position: absolute;
    flex-direction: row;
    justify-content: center;
    justify-items: center;
    align-items: center;
    /* outline: 1px solid #0051ff; */
  }
  .sidebar-links li a{
    margin: 0%;
    padding: 0%;
  }
  .sidebar-links li a:hover {
    color: #BB86FC;
    border:none;
    border-radius: 0%;
    background: none;
  }
  .sidebar-links li:hover {
    background:none;
  }
  .sidebar-links .sidebar-icons{
    padding: 0;
    margin: 0%;
    width: 80%;
  }
  .sidebar:hover {
    width: 100%;
  }
  .sidebar-text{
    display: none;
  }
  .user-account{
    display: none;
  }
  .sidebar-header svg{
    display: none;
  }
}
.social-media-container{
  display: grid;
  grid-template-columns: 33% 33% 33%;
  gap: 0%;
  justify-content: center;
  justify-items: center;
  align-items: center;
  padding: 0 25vw;
  margin: 7.5vw 0;
  margin-left: 2.5%;
  /* outline: 1px solid #ff0000;  */
}
#github-icon > a > svg{
  width: 3vw;
  height: 3vw;
}
#instagram-icon > a > svg{
  width: 3vw;
  height: 3vw;
}
#linkedin-icon > a > svg{
  width: 5vw;
  height: 5vw;
}