.content{
  padding: 6vh 0;
  width: 95%;
  margin: 0 auto;
}

.content h2{
  margin-bottom: 20px;
  font-size: 1.3em;
  font-weight: 800;
  text-transform: capitalize;
  border-bottom: 2px solid var(--main-color);
}
.content h2 i{
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  background: var(--main-color);
  color: #fff;
}

/*desktop*/
@media screen and (min-width:1000px) {
  .content{
    display: flex;
    align-items: start;
    justify-content: space-between;
  }

  .container-left{
    width: 35%;
    position: sticky;
    top: 20px;
}

.container-right{
  width: 62%;
}
  }
/*desktop end*/

/*mobile*/
@media screen and (max-width:1000px) {
  .container-right section{
    margin-top: 60vh;
  }
}

/*mobile end*/