/* ============== Thank you section starts here ================== */

.thank-you .box{
    width: 80%;
    box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.1);
    border-radius: 12px;
    overflow: hidden;
  }

  .thank-you .box .image{
    height: 500px;
  }

  .thank-you .box .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
  }

  .thank-you .content-info{
    padding: 0px 10px;
  }

  .thank-you .box .right h1{
    font-size: 6vw;
    font-weight: 900;
    color: var(--accent-color);
      font-family: 'Jost', sans-serif;
  }

  .thank-you .box .right i{
    display: block;
    color: #03c0b4;
    font-size: 80px;
    transform: rotate(180deg);
}

  .thank-you .box .right p{
    color: #1E3560;
    font-weight: 700;
    font-size: 19px;
  }

  

  /* ==================== MEDIA QUERY ======================= */

  @media (max-width:1200px){
    .thank-you .box{
        width: 90%;
      }

        .thank-you .box .image{
    height: 320px;
  }

    }
  
  @media only screen and (max-width: 768px){

    .thank-you .box{
        width: 100%;
      }

      .content-info p br{
        display: none;
      }
  
  }

  @media(max-width:576px){

    .thank-you .box .right h1{
        font-size: 14vw;
      }
    
    .thank-you .box .right p{
        font-size: 16px;
      }
    
    }
  
  

  