.container-box {
  display: inline-block;
  text-align: left;
  padding-bottom: 32px;
  max-width: 880px;
  margin-left: 5%;
  margin-right: 5%;
}

.features {
  padding-top: 40px;
  padding-bottom: 64px;
  text-align: center;


}

.selector{
  padding-top: 24px;
  padding-bottom: 40px;
  display:flex;

}

.feature-bullet {
  display: flex;
}


.tab-cont{
  position: -webkit-sticky;
  position: sticky;
  top:16px;
  flex: 1;
  max-width: 235px;
  background-color: #FFFFFF;
  height: 100%;
  border: 2px solid #F0F0F0;
  outline:0;
  z-index: 1;
}

.tab-cont button{
  display:flex;
  width: 385px;
  background-color: #FFFFFF;
  padding: 24px;
  color: #303132;
  font-family: sans-serif;
  font-weight: 200;
  font-size: 18px;
  line-height: 26px;
  text-align: left;
  border-color: transparent;
  border-bottom: 2px solid #F0F0F0;
  outline:0;
}

.tab-cont button:hover{
  background-color: #F8F9FA;
  cursor: pointer;
}

.tab-content{
  flex: 9;
  height: 100%;
  padding-left: 200px;
  animation: anime 1.5s;
  text-align:left;
  display:none;
  font-family: sans-serif;
}

.tab-content.active{
  display:block;
}

.tab-cont .but.active{
  background-color: #FFFFFF;
  color: #3A62CA;
  border-left: 3px solid #3A62CA;
  text-decoration: none;
  outline:0;
  font-weight: 500;
}

@keyframes anime {
  from{opacity: 0}
  to{opacity: 1}
}


.tabimg {
    
    height: 550px;
    
}




@media only screen and (max-width: 800px) {
  
  .tab-cont {
    display: flex;
    flex-direction: row;
    border: none;
  }

  .tab-cont .but.active{
    border-left: none;
    border-bottom: 4px solid #3A62CA;

  }

  .selector {
    flex-direction:column;
  }

  .tab-content {
    padding-left: 0;
  }
    
    
  .tab-cont button {
 
  width: 130px;
  padding: 15px;
  font-size: 14px;
 
    
    
    }
    
 .tabimg {
    
    height: 320px;
    
}   
    
}