p {font-size: 16px;}
/*-----containers in tabs=------*/
.text-container {
  width: 100%;
}

.main-page {
    padding-top: 50px;
}

/*------TABS--------*/
.tabs-container {
  width: 98%;
  margin: 0 auto;
  position: relative;
  display: flex;
  min-height: 150vh;
  overflow:auto;
  border-radius: 10px;
}


.tab-content-background {
  background-color: rgba(1,1,1,0.5);
  border-radius: 5px;
  width: 100%;
  height: 100vh;
  min-height: 300px;
  z-index: 1;
  overflow: hidden;

}

.tab-content-text {
  background-color: rgba(1,1,1,0.5);
}


/*-----MEDIA-----*/

@media (max-width: 1160px) {

  .tab-content-background, .tab-content-text {
    overflow: scroll;
  }
  .tab-content-text p{
    font-size: 14px;
  }
}
@media (max-width: 730px) {
  .text-left-container, .text-right-container {
    float: none;
    width: 100%;
    margin: auto;
  }
  .tab-content-background {
    overflow: scroll;
  }
  .tab-content-text p{
    font-size: 12px;
  }
}

@media (max-height: 480px) {
  .tab-content-background {
    overflow: scroll;
  }

}

