/* CSS Document */

 .btn-tab {
      border-radius: 0px;
      padding: 10px 25px;
      font-weight: 500;
	  font-size:16px;
	  font-family: "Gordita", Sans-serif;
      border: 2px solid #0d3d2d;
      color: #0d3d2d;
      background-color: #fff;
      transition: 0.3s;
      margin: 0 5px;
	  width:250px;
    }
	
.btn-tab:hover {
      border-radius: 0px;
      padding: 10px 25px;
      font-weight: 600;
      border: 2px solid #0d3d2d;
      color: #0d3d2d;
      background-color: #3dcfe0;
      transition: 0.3s;
      margin: 0 5px;
	  width:250px;
    }
		

    .btn-tab.active {
      background-color: #0d3d2d;
      color: #fff;
	  border: 2px solid #0d3d2d;
    }

    .underline {
      width: 60px;
      height: 3px;
      background-color: #00bcd4;
      margin: 10px auto 25px;
    }

    .tab-content {
      display: none;
      text-align: left;
      margin-top: 20px;
      animation: fadeIn 0.4s ease;
    }

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

    @keyframes fadeIn {
      from {opacity: 0;}
      to {opacity: 1;}
    }

@media (max-width: 576px) {
.btn-tab {
     
    margin-top: 3px;;
	margin-right: 5px;
	margin-bottom: 3px;;
	margin-left: 0px;
    }

}