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

body{
    background-color: aqua;
    padding-top: 70px;
}

.interview{
    display:flex;
    flex-wrap: wrap;
    width: 100vw;
    padding: 40px;
    background-color: aliceblue;
}

.video-container{
    flex:2;
    min-width: 600px;
    padding-right: 30px;
    padding-bottom: 40px;
    padding-top: 35px;
}

.video-container video{

    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.text-container{

    flex:1;
    min-width: 300px;
    padding-left: 20px;
    padding-top: 31px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-bottom: 30px;
}

.text-container h1{
   margin-bottom: 10px;
   font-size: 55px;
   font-family: "jeanne-moderno", serif;
   color: #ce6ea7;
}

p{
  padding-top: 20px;
    font-size: 25px;
    padding-bottom: 30px;
    color: (29, 29, 37);
    margin-left: 10px;
}

.desc {
    font-size: 25px;
    margin-left: 90px;
    color: #fff;
    margin-bottom: -50px;
}

.back{

    display: inline-block;
    padding: 10px 20px;
    background-color: black;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
    overflow: hidden;
}


  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background-color: #ce6ea7;
    padding-top: 70px;
  }
  
  .img-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .slider {
    display: flex;
    gap: 20px;
    width: 100vw;
    height: 420px;
    background: rgb(29, 29, 37);
    border-radius: 20px;
    overflow: hidden;
    padding: 20px;
  }
  
  .slides {
    flex: 0 0 auto;
    width: 250px;
    height: 100%;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    background-image: var(--img);
    transition: transform 0.3s ease;
  }
  
  .buttons {
    margin-top: 20px;
    display: flex;
    gap: 20px;
  }
  
  .buttons span {
    width: 50px;
    height: 50px;
    background: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  
  .buttons span::before {
    content: '';
    width: 15px;
    height: 15px;
    border-top: 4px solid #fff;
    border-left: 4px solid #fff ;
    transform: rotate(315deg) translate(2px, 2px);
  }
  
  .buttons span.next::before {
    transform: rotate(135deg) translate(2px, 2px);
  }

  
  .section-uncover {
    position: relative;
    height: 45vh;
    background: rgb(29, 29, 37);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
   
  }
  
  .box{
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(29, 29, 37);
  }

  .box:nth-child(1){
    filter: blur(10px);

  }

  .box:nth-child(2){
    clip-path: circle(100px at var(--x) var(--y));
  }

  .box h2{
    position: absolute;
    color: #fff;
    font-size: 6em;
    transform: translate(calc(var(--x) / 25), calc(var(--y) / 25));
    font-family: "jeanne-moderno", serif;
  }

  .circle{

    position: absolute;
    top: -100px;
    left:-100px;
    width: 200px;
    height: 200px;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 5px 25px black;
    transform: translate(var(--x),var(--y));

  }

  .look-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 40px;
    padding-bottom: 10px;
    
  }
  
  .look-text {
    flex: 1;
  }
  
  .try-onbttn {
    flex: 0 0 auto;
  }


  .look-section h3{
    margin-bottom: 20px;
    margin-left: 90px;
    font-size: 55px;
    padding-top: 20px;
    font-family: "jeanne-moderno", serif;
    color: white;
 }

.try-onbttn a {

    display: inline-block;
    margin-top: 200px;
    padding: 16px 32px;
    margin-left: 50px;
    margin-right: 100px;
    background-color: #d9d9e3;
    color:  #ce6ea7;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    font-size: 25px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 150px;
    
   
}

.try-onbttn a:hover{
    background-color: rgb(29, 29, 37);
    
}

.try-onbttn a span {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-family: "jeanne-moderno", serif;

  }
  
  .try-onbttn a span::before {
    content: '';
    position: absolute;
    bottom: 10px; 
    left: 0;
    height: 2px;
    width: 100%;
    background: #ce6ea7;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  
  .try-onbttn a:hover span::before {
    transform: scaleX(1);
  }

  
  