* {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
    box-sizing: border-box;
    background-repeat: no-repeat;
}

.sections {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f1f1;
}

.about-section {
    background-size: 55%;
    background-color: #f1f1f1;
    overflow: hidden;
    padding: 100px 0;
    transition: background-image 1s ease-in-out;
}

.inner-container {
    width: 55%;
    float: right;
    background-color: #fdfdfd;
    padding: 50px 150px;
}

.inner-container h1 {
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 900;
}

.text {
    font-size: 13px;
    color: #545454;
    line-height: 30px;
    text-align: justify;
    margin-bottom: 40px;
}

.options {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 13px;
    margin-top: 50px;
}

@media screen and (max-width:1200px) {
    .inner-container {
        padding: 80px;
    }
}

@media screen and (max-width:1000px) {
    .about-section {
        background-size: 100%;
        padding: 100px 40px;
    }

    .inner-container {
        width: 100%;
    }
}

@media screen and (max-width:600px) {
    .about-section {
        padding: 0;
    }

    .inner-container {
        padding: 60px;
    }
}

.options-cat {
    display: flex;
    flex-direction: column;
    text-align: center;
}

@media (max-width: 1001px) {
    .about-section {
        overflow: visible;
    }
    *{
        background-attachment: fixed;
    }
}

.plan-site {
    background-color: #8bcdc8;
    border: 1px solid #8bcdc8;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, .1) 0 2px 4px 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    outline: 0;
    padding: 10px 25px;
    text-align: center;
    transform: translateY(0);
    transition: transform 150ms, box-shadow 150ms;
  }
  
  .plan-site:hover {
    box-shadow: rgba(0, 0, 0, .15) 0 3px 9px 0;
    transform: translateY(-2px);
  }
  
  @media (min-width: 768px) {
    .plan-site {
      padding: 10px 30px;
    }
   
  }