* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter' sans-serif;
}

.navbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 24px 80px;
    position: fixed;
    width: 100%;
    z-index: 10px;
    background: rgb(255, 255, 255, 0.5);
    border-bottom: 1px solid #6D1600;

}

.navbar-logo {
    display: flex;
    gap: 20px;
    border: 1px solid #282A3A;
    border: none;
}

.navbar-logo img {

    transition: transform 0.4s ease;
}

.navbar-logo img:hover {
    transform: scale(1.1);
}

.navbar,
.nav-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 56px;
    text-decoration: none;
}

.nav-links a {
    color: #282A3A;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
}

.nav-links a:hover {
    color: goldenrod;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 0px 200px 0px 200px;
    margin: 0px 150px;
}

.sec1 {
    padding: 80px;
    color: #FFFFFF;
    justify-content: center;
}

.sec1head {
    font-family: Playfair Display;
    margin-top: 100px;
    font-weight: 500;
    font-size: 64px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    color: #282A3A;
}

.sec1para {
    padding: 20px 120px;
    font-family: 'Inter' sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
    color: #282A3A;
}

.sec1btn {
    justify-content: center;
    border-top-right-radius: 32px;
    border-bottom-left-radius: 32px;
    background-color: #6D1600;
    display: flex;
    margin: 20px 185px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.sec1btn:hover{
    background-color: #8a1c03; /* lighter shade */
    transform: scale(1.05);
}

.sec1btn p {
    font-family: 'Playfair Display SC', serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #FFFFFF;
    padding: 20px 30px 20px 30px;
}

.sec1 button img {
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    border: none;
    text-align: center;
    padding: 20px 30px 20px 0px;
}
.cards{
    margin-top: 60px;
    justify-content: center;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    height: auto;
    width: auto;
    gap: 20px;

}
.vertical-line {
    border: 1px solid#282A3A;
    height: 114px; 
    background: linear-gradient(to bottom, transparent 0%, #282A3A 0.0.1%, transparent 100%)
  }
.card{
    display: flex;
    flex-wrap: wrap;
    /* filter: grayscale(100%);
    transition: filter 0.4s ease */
    /* transition: opacity 0.3s ease; */
    transition: transform 0.4s ease;
}
.card:hover{
    /* filter: grayscale(0%); */
    /* opacity: 0.7; */
    transform: scale(1.1);
}
hr{
    text-align: center;
    width: 80%;
    margin: 10px 160px;
    background: linear-gradient(to right, transparent, #333 transparent);
}
.proof{
    padding: 40px ;
    justify-content: space-evenly;
    text-align: center;
    width: 100%;
    height: auto;
    display:flex;
    margin: 20px 0px;
}
.proof, .proofinfo, h1{
    font-family: 'Inter',serif;
    font-weight: 400;
    font-size: 64px;
    line-height: 120%;
    letter-spacing: -2%;
    text-align: center;
    color: #282A3A;
}
.proof, .proofinfo p{
    font-family: 'Playfair Display' ,serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    color: #282A3A;
}
.sec2{
    width: auto;
    height: auto;
    padding: 80px;
    justify-content: center;
}
.sec2head1{
    font-family: 'Inter' ,serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #282A3A;
    padding: 30px 0px;
    opacity: 56%;
    text-align: center;
}
.sec2head2{
    font-family: 'Playfair Display';
    font-weight: 400;
    font-size: 36px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    color: #000816;
    margin-bottom: 20px;
}
.flavors{
    justify-content: center;
    flex-wrap: wrap;
    display: flex;
    gap: 80px;
    border-radius: 40px;
    padding: 8px;
    margin: 30px 330px ;
    background-color: #F6F6F6;
}
.flavors a{
    border-radius: 40px;
    padding: 16px 50px;
    gap: 10px    ;
    font-family: Inter;
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 2%;
    opacity: 70%;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.flavors a:hover{
    transform: scale(1.1);
}
.flavors .Latte{
    background-color: #FFFFFF;

}
.main{
    padding: 40px 0px 0px 0px ;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.Product{
    width: 304px;
    height: auto;
}
.Product img{
    transition: transform 0.4s ease;
}
.Product img:hover{
    transform: scale(1.1);
}
.Product-info{
    padding: 16px 24px;
    gap: 10px;
}
span {
    display:flex;
    gap: 8px;
    padding-top: 10px;
}
.p1{
    font-family: 'Inter';
    font-size: 20px;
    font-weight: 700;
    opacity: 70%;
    color: #282A3A;
    letter-spacing: 2%;
}
.p2{
    font-family: 'Inter';
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0%;
    color: #000816;
    opacity: 72%;
}
.p3{
    font-family: 'Inter';
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0%;
    line-height: 140%;
    color: #282A3A;
    opacity: 72%;
    padding: 20px 0px;
}
.main, .Product h1{
    text-align:left;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 0%;
}
.span-btn{
    display: flex;
    justify-content: space-between;
   
}
.sec2btn{
    width: 80px;
    height: 32px;
    margin-top: 20px;
    padding: 0px 32px 0px 32px;
    background-color: #6D1600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.sec2btn:hover{
    background-color: #8a1c03; 
  transform: scale(1.05);
}
.sec2btn .btnp{
    display: flex;
    font-size: 24px;
    font-weight: 200;
    color: #FFFFFF;

    text-align: center;
    padding: 0;
    margin-bottom: 70px;
}
.scroll{
        justify-content: center;
        display: flex;
        margin: 80px 0px;
}
.sec3{
    background-color: #FFFFFF;
    padding: 80px 80px 80px 80px;
}

.sec3h1{
   font-family: 'Inter';
   font-size: 24px;
   font-weight: 400;
   opacity: 50%;
   Line-height:120%;
  Letter-spacing:0%;
  color: #282A3A;
}
.sec3h2{
    font-family: 'Playfair Display';
    font-weight: 400;
    font-size: 36px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    color: #000816;
}
.sec3main, p{
    font-family: 'Inter';
    font-weight: 400;
    font-size: 20px;
    line-height: 160%;
    letter-spacing: 0%;
    padding: 20px 20px;
    
}
.sec3main{
    display: flex;
    width: 100%;
    height: auto;
    justify-content: space-between;
    gap: 80px;
    margin: 80px 0px;
    padding: 40px;
}
.sec3para{
    width: 600px;
}
.sec3images{
    display: flex;
    width: 600px;
    gap: 24px;
    padding: 0px;
}
.sec3images img{
    
    transition: transform 0.4s ease;
}
.sec3images img:hover{
    transform: scale(1.1);
}
.sec3img1{
    padding-top: 80px;
    gap: 16px;
}
.sec3img2{
    padding-bottom: 64px;
    gap: 16px;
}
.sec3btn{
    display: flex;
    width: 280px;
    height: 82px;
    gap: 16px;
    padding: 24px 40px;
    border-top-right-radius: 32px;
    border-bottom-left-radius: 32px;
    background-color : #6D1600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.sec3btn:hover{
    background-color: #8a1c03; /* lighter shade */
    transform: scale(1.05);
}
.sec3btn p{
    font-family: 'Playfair Display SC';
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #FFFFFF;
    padding: 0px;
}
.sec3 button img{
   height: 34px;
   width: 34px;
}
.sec4{
    background-color: #FFFFFF;
    padding: 80px;
}
.sec4main{
    display: flex;
     margin-top: 60px;
    width: auto;
    padding: 40px 0px;
    gap: 32px;
}
.sec4h1{
    font-family: 'Inter';
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    color: #000816;
}
.stars{
    padding: 20px 20px;
    line-height: 40px;
}

.reviews{
   padding: 24px 40px;
   width: 450px;
   gap: 16px;
}
.sec4para p{
    
    font-family: 'Inter';
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #282A3A;    
    padding: 40px 0px;
}

.head{
    display: flex;
}
.head img{
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.head img:hover{
    
  transform: scale(1.1);
}
.sec5{
    justify-content: center;
    padding: 80px;
}
.sec5main{
    padding: 40px;
    display: flex;
    justify-content: space-between;
    gap: 32px;
}
.artical{
    gap: 16px;
    padding: 26px;
    border-top-right-radius: 96px;
    border-bottom-left-radius: 40px;
    border-width: 1px;
    border: 1px solid #D9D9D9
}
.sec5pic img{
    width: 100%;
    transition: transform 0.4s ease;
}
.sec5pic img:hover{
    transform: scale(1.1);
}
.sec5mid{
    margin-top: 20px;
}
.sec5para p{
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 0%;
    padding: 20px 0px 20px 0px;
}
.sec5foot{
    font-family: 'Inter';
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: right;
    color: #282A3A;    
}
.sec5last{
    display: flex;
    padding:60px ;
    justify-content: center;
}
.sec5btn{
    display: flex;
    width: 280px;
    height: 82px;
    gap: 16px;
    padding: 24px 48px;
    border-top-right-radius: 32px;
    border-bottom-left-radius: 32px;
    background-color : #6D1600;
    border: none;
    cursor: pointer;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease; 
}
.sec5btn:hover{
    background-color: #8a1c03; /* lighter shade */
    transform: scale(1.05);
}
.sec5btn p{
    font-family: 'Playfair Display SC';
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #FFFFFF;
    padding: 0px;
}
.sec5 button img{
   height: 34px;
   width: 34px;
}
.footer{
    display: flex;
    padding: 80px;
    gap: 80px;
    background-color: #282A3A;
}
.fmain{
    width: 380px;
}
.logo{
    display: flex;
    gap: 24px;
}
.logo img{
    transition: transform 0.4s ease;
}
.logo img:hover{
    transform: scale(1.1);
}
.footh1{
    font-family: 'Inter';
    font-weight: 600;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #FFFFFF;
}
.fpara p{
    font-family: 'Inter';
    font-weight: 400;
    font-size: 20px;
    line-height: 160%;
    letter-spacing: 0%;
    color: #FFFFFF;
    padding:20px 0px  ;
}
.fgmail p{
    display: flex;
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    padding: 10px 0px 0px 0px;
    color: #FFFFFF;
}
.footer-main{
    justify-content: center;

}
.footer-top{
    display: flex;
    padding: 0px 30px;
    gap: 120px;
}
.footer-h1{
    font-family: 'Playfair Display';
    font-weight: 400;
    font-size: 28px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;    
    text-align: left;
}
.foot-nav{
    padding:  0px 0px;
}
.foot-link{
    margin-top: 20px;
    list-style: none;
}
.foot-link img{
    width: 48px ;
    height: 48px;
    transition: transform 0.4s ease;
}
.foot-link img:hover{
    transform: scale(1.11);
}
.foot-nav li a{
    font-family: 'Inter';
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0%;
    color: #FFFFFF;
    line-height: 30px;
    text-decoration: none;
}
.input-wrapper {
    margin-top: 30px;
    position: relative;
    width: 100%;
  }
  
  .input-wrapper input {
    width: 818px;
    height: 78px;
    gap: 40px;
    border-radius: 16px;
    padding-top: 8px;
    padding-right: 8px;
    padding-bottom: 8px;
    padding-left: 24px;
    box-sizing: border-box;
    background-color: #FFFFFF14;
    border: none;

  }
   input::placeholder{
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FFFFFF66;    
    padding: 30px;
  }
  .input-wrapper button {
    position: absolute;
    border: none;
    background-color: #6D1600;
    color: white;
    width: 179px;
    height: 65px;
    cursor: pointer;
    right: 0;
    gap: 10px;
    border-radius: 8px;
    padding: 16px 64px;
    margin: 6px 10px;
  }
  
  .input-wrapper button p{
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    /* text-align: center;
    justify-content: center; */
    padding: 0;
  }
  .input-wrapper img{
    position: absolute;
    left: 0;
    top:0;
    padding: 23px ;
  }
  
 .footerbar{
    display: flex;
    flex-direction: column;
    margin: 20px;
}
/*}
.footsearch input{
    padding: 8px 8px 8px 24px;
} */
@media (max-width:1350px) {
    .navbar {
        justify-content: space-between;
    }

    .sec1 {
        width: auto;
        height: auto;
        justify-content: center;
        padding: 60px 0px;
        margin: 0;
    }

    .content {
        display: flex;
        flex-direction: column;
        padding: 0px 20px;
        margin: 120px;
    }

    .sec1head {
        padding: 0px 160px;

        width: 100%;
        height: 100%;
    }
    .flavors{
        justify-content: center;
        text-align: center;
        width: 100%;
        height: 80px;
        margin: 0;
        display: block;
        padding-top: 25px;
    }
    .sec3{
        padding: 0px;
    }
    .sec3main{
       justify-content: center;
       padding: 20px;
    }
    .sec3images{
        width: auto;
    }
    .sec3img1{
        width: 240px;
        height: auto;
    }
    .sec3img2{
        width: 240px;
        height: auto;
    }
    .sec4{
        padding: 40px 0px;
    }
    .sec4main{
    padding: 24px 0px;
    gap: 0;
    width: auto;
    }
    .reviews{
        width: auto;
        padding: 24px 30px;
    }
    .sec5{
        justify-content: space-evenly;
      
    }
    .sec5main{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }
    .artical{
        width: 420px;
    }
    
    .footer-main{
        flex-wrap: wrap;
    }
    .footer-top{
        padding: 0;
        flex-wrap: wrap;
        gap: 0px;
        justify-content: space-between;
    }
    .footer-h1{
        margin: 20px 0px 0px 0px ;
    }
    .footerbar{
        width: auto;
        margin: 0;
    }
    .input-wrapper input{
        /* padding: 0; */
        width: 600px;
    }
    .input-wrapper button {
        width: auto;
        /* margin-right: 65px; */
 
    }
}

@media (max-width:1024px) {
    .navbar {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 20px;
    }

    .navbar-logo {
        padding: 0;
    }

    .navbar,
    .nav-links {
        gap: 30px;
    }

    .sec1 {
        width: auto;
        height: auto;
        justify-content: center;
        padding: 60px 0px;
        margin: 0;
    }

    .content {
        display: flex;
        flex-direction: column;
        padding: 0px 20px;
        margin: 100px;
    }

    .sec1head {
        padding: 0px 20px;
        height: 100%;
        width: 100%;
    }
    .sec1para{
        padding: 0px 80px;
        height: 100%;
        width: 100%;
    }

    .sec1btn {
        /* padding: 0px 40px; */
        margin: 20px 80px;
    }
    hr{
        text-align: center;
        /* width: 80%; */
        margin: 10px 100px 10px 80px;
    }
    .proof{
        padding: 20px;
    }
    .flavors{
        justify-content: center;
        text-align: center;
        width: 100%;
        height: 80px;
        margin: 0;
        display: block;
        padding-top: 25px;
    }
    .sec3{
        padding:60px ;
        justify-content: center;
    }
    .sec3main{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .sec3images{
        gap: 60px;
    }
    .sec3img1{
        width: 300px;
        height: auto;
    }
    .sec3img2{
        width: 300px;
        height: auto;
    }
    .sec4{
        display: flex;
        flex-direction: column;
        padding: 40px;
    }
    .sec4main{
        display: flex;
        flex-direction: column; 
        align-items: center;
    }
    .footer{
        justify-content: center;
        padding: 20px 0px;
        gap: 20px;
    }
    .fmain{
        padding: 20px;
    }
    .footer-main{
        flex-wrap: wrap;
        padding: 0px 20px;
    }
    .footer-top{
        justify-content: space-evenly;
        gap: 30px;
        display: flex;
        flex-wrap: wrap;
        padding: 30px 10px;
    }
    .input-wrapper input {
        width: 570px;
    }
    .input::placeholder{
        width: 100%;
    }
    .input-wrapper button {
        width: 120px;
        padding-right:80px ;
    }
    
}
@media (max-width:905px){
    .input-wrapper input {
        width: 445px ;
        
       }
       .input-wrapper button {
        width: 80px;
        
        padding: 0px 80px 0px 40px;
       }
       .input-wrapper button p {
        padding: 20px 80px 20px 0px;
        text-align: center;
       }

}

@media (max-width:771px){
   .navbar{
    justify-content: center;
    display: flex;
   }
   .navbar,
   .nav-links{
    
    display: block;
   gap: 50px;
   margin-top: 10px;
   text-align: center;
   }
   .nav-links li {
    margin-top: 30px ;
   }
   .navbar-logo{
    justify-content: center;
    margin:30px 0px 0px 0px ;
   }
    .content{
        justify-content: center;
        margin: 0;
    }
    .sec1btn{
        padding: 0;
       margin: 10px 60px 0px 60px;
        font-size: 10px;
        /* font-weight: 300; */
    }
    .sec1btn p{
        padding: 20px 0px 0px 10px;
        font-size: 20px;
        font-weight: 300;
    }
    hr{
        text-align: center;
        /* width: 80%; */
        margin: 10px 80px 10px 60px;
    }
    .proof{
        flex-direction: column;
    }
    .proof, .proofinfo h1{
        font-weight: 400;
        font-size: 64px;
        padding: 20px 0px 0px 0px;
    }
    .proof, .proofinfo p{
        font-size: 24px;
        font-weight: 400;
        padding-bottom: 10px;
    }
    .vertical-line {
        margin: auto;
        width: 30%;
        height: 0%;
        
      }
      .main{
        margin: 0px 20px;
      }
      .main, .Product{
        margin-top: 30px;
      }
      .sec2{
        padding: 60px;
      }
      .flavors{
        justify-content: center;
        text-align: center;
        width: 100%;
        height: 80px;
        display: block;
        padding-top: 30px;

    }
    .flavors a{
        font-size: 18px;
        font-weight: 400;
        padding: 20px 20px;
        
    }
    .sec3{
        padding: 40px;
        width: auto;
    }
    .sec3main{
        padding: 30px;
        align-items: center;
    }
    .sec3para{
        height: auto;
        width: auto;
    }
    .sec3images{
        justify-content: center;
        display: flex;
        flex-wrap:wrap ;
        /* gap: 20px; */
    }
    .sec3img1{
        width: 300px;
        height: auto;
    }
    .sec3img2{

        width: 300px;
        height: auto;
    }
    .sec3btn{
        height: auto;
        width: auto;
    }
    .sec5last{
    display: flex;

    }
    .sec5btn{
        height: 60px;
        width: 200px; 
        padding: 20px 0px;
        gap: 0;
    }
    .sec5 button p{
       
        font-size: 18px;
    }
    .sec5 button img{
        height: 28px;
        width: 28px;
    }
    .footer{
        display: flex;
        flex-direction: column;
    }
    .fmain{
        justify-content: center;
        width: 100%;
        padding: 20px 120px;
    }
    .footer-h1{
        font-size: 36px;
        font-weight: 600;
    }
    .foot-nav li a{
        font-size: 24px;
        gap: 30px;
        line-height: 60px;
    }
    .footer-main{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer-top{
        display: flex;
        flex-direction: column;
    }

}
@media (max-width:550px){
   .input-wrapper input {
    width: 380px ;
   }
   .input-wrapper button {
    width: 60px;
    padding: 0px 80px 0px 40px;
   }
   .input-wrapper button p {
    padding: 20px 80px 20px 0px;
    text-align: center;
   }
}
@media (max-width:455px){

    .navbar{
        justify-content: center;
     
    }

   .sec1btn{
    margin: 0;
    padding: 0;
   }
   .sec1btn p{
    font-size: 18px;
    padding: 30px 10px;
   }
   .sec1, button img{
     
    margin: 0%;
    height: auto;
    width: auto;
   }
   .sec1 .cards{
    flex-wrap: wrap;

   }
   .sec1 .cards .card img {
    width: 100px;
   }
   .sec2{
    padding: 40px;
    justify-content: center;
   }
   .main{
    margin: 0;
    padding: 0px 0px 0px 30px;
    justify-content: center;
   }
   .main, .Product img{
    width: 250px;
   }
   .main, .Product{
   width: 250px;
   }
   .flavors{
    margin: 0;
   }
   .flavors a{
    font-size: 12px;
    font-weight: 300;
    padding: 10px 20px;
   }
   .sec3btn{
    padding: 20px 10px;
    width: 180px;
    height: 60px;
   }
   .sec3btn p{
    padding: 0px;
    font-size: 16px;
   }
   .sec3 button img{
    width: 22px;
    height: 22px;
   }
   .sec5{
    padding: 0;
   }
   .sec5main{
    padding: 0;
   }
   .artical{
    width: 340px;
    height: auto;
    padding: 20px 0px 0px 20px;
   }
   .sec5pic img{
    width: 300px;
    height: auto;
   }
   .sec5mid img{
    width: 300px;
   }
   .footer-main{
    padding: 0;
    justify-content: center;
   }
   .footh1{
    font-size: 42px;
   }
   .logo{
    justify-content: center;
    gap: 20px;
   }
   .foot-link img{
    width: 36px;
    height: 36px;
   }
    .input-wrapper input {
        width: 250px ;
       }
       .input-wrapper button {
        width: 40px;
        padding: 0px 60px 0px 20px;
       }
       .input-wrapper button p {
        padding: 20px 80px 20px 0px;
        text-align: center;
       }
       input::placeholder {
        font-size: 16px;
        font-weight: 300;
       }
       .input-wrapper img {
        width: 70px;
        height: 70px;
        padding-top: 30px;
        left: 0;
        top: 0;
       }
}