@import url(variables.css); 
 /*-- tabs 1 --*/
#tabs1{
    width: 90%;
    height: auto;
    background-color: white;
    box-shadow: 4px 4px 4px rgba(0,0,0,.5);
}
[data-tab-content] {
    display: none;
  }
  
.active[data-tab-content] {
    display: block;
  }
  .tabs {
    display: flex;
    justify-content: space-around;
    list-style-type: none;
    margin: 0;
    padding: 0;
  }

  .tab {
    cursor: pointer;
    padding: 10px;
    color: whitesmoke;
    width: 30%;
    text-align: center;
    background-color: rgba(6, 71, 142, .5);
    border-radius: 5px 5px 0 0;
  }

  .tab.active {
    background-color: var(--secondary-color);
  }

  .tab:hover {
    background-color: var(--secondary-color);
  }

  .tab-content {
    margin-left: 20px;
    margin-right: 20px;
  }

  /*-- tabs 2 --*/

  #tabs2{
    width: 90%;
    margin: auto;
    height: auto;
    background-color: white;
    box-shadow: 4px 4px 4px rgba(0,0,0,.5);
}
[data-tab-content2] {
    display: none;
  }
  .active2[data-tab-content2] {
    display: block;
  }
  
  .tabs2 {
    display: flex;
    justify-content: space-around;
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  
  
  .tab2 {
    cursor: pointer;
    padding: 10px;
    color: whitesmoke;
    width: 30%;
    text-align: center;
    background-color: rgba(192, 23, 24, .5);
    border-radius: 5px 5px 0 0;
  }
  
  .tab2.active2 {
    background-color: var(--secondary-color);
  }

  .tab2:hover {
    background-color: var(--secondary-color);
  }

  .tab-content2 {
    margin-left: 20px;
    margin-right: 20px;
  }


/*-- tabs 3 --*/

#tabs3{
  width: 90%;
  margin: auto;
  height: auto;
  background-color: white;
  box-shadow: 4px 4px 4px rgba(0,0,0,.5);
}
[data-tab-content3] {
  display: none;
}
.active3[data-tab-content3] {
  display: block;
}

.tabs3 {
  display: flex;
  justify-content: space-around;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.tab3 {
  cursor: pointer;
  padding: 10px;
  color: whitesmoke;
  width: 30%;
  text-align: center;
  background-color: rgba(192, 23, 24, .5);
  border-radius: 5px 5px 0 0;
}

.tab3.active3 {
  background-color: var(--secondary-color);
}

.tab3:hover {
  background-color: var(--secondary-color);
}

.tab-content3 {
  margin-left: 20px;
  margin-right: 20px;
}

/*-- tabs 4 --*/
#tabs4{
  width: 90%;
  height: auto;
  background-color: white;
  box-shadow: 4px 4px 4px rgba(0,0,0,.5);
}
[data-tab-content4] {
  display: none;
}
.active4[data-tab-content4] {
  display: block;
}

.tabs4 {
  display: flex;
  justify-content: space-around;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.tab4 {
  cursor: pointer;
  padding: 10px;
  color: whitesmoke;
  width: 30%;
  text-align: center;
  background-color: rgba(6, 71, 142, .5);
  border-radius: 5px 5px 0 0;
}

.tab4.active4 {
  background-color: #06478e;
}

.tab4:hover {
  background-color: #06478e;
}

.tab-content4 {
  margin-left: 20px;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
#tabs1, #tabs2, #tabs3, #tabs4{
  width: 100%;
  height: auto;
  font-size: small;

}
}
@media screen and (max-width: 480px) {
  .tab-content, .tab-content2, .tab-content3, .tab-content4{
    width: 90%;
  
  }
  }

  
  
  