.not-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    padding: 40px;
}
.not-mob {
    display: none;
}
.not-des {
    display: block;
}

.not-img{
    width: 70%;
    display: flex;
    justify-content: center;
}
.not-text{
    display: block;
    /* font-size: 15px; */
    color: #7d57a6;
    font-weight: 700;
    margin-top: 30px;

}
.not-btn {
position: relative;
background: var(--primary);
color: var(--white);
    padding: 0.7rem 1.5rem;
    font-size: 20px;
    border: none;
    -webkit-border-radius: 0 6px;
    -moz-border-radius: 0 6px;
    border-radius: 0 6px;
    cursor: pointer;
    -webkit-transition: background 0.3s 
ease;
    -moz-transition: background 0.3s ease;
    -o-transition: background 0.3s ease;
    transition: background 0.3s 
ease;
  border: solid 1px transparent;
  font-family: 'dana';
  margin-top: 40px;
  opacity: .7;
}
.not-btn:hover {
    background: var(--primary);
    color: var(--white);
  opacity: 1;
  }
  .not-box{
    display: flex;
    align-items: center;
    flex-direction: column;
  }
@media (max-width: 768px) {
    .not-btn {
        font-size: 15px;
        margin-top: 30px;
    }
.not-mob {
    display: block;
}
.not-des {
    display: none;
}
.not-text{
    display: block;
    font-size: 15px;
    color: var(--primary);
    font-weight: 700;
    margin-top: 30px;

}
}