#tabs {
  background: #007b5e;
  color: #eee;
}
#tabs h6.section-title {
  color: #eee;
}

#tabs .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #f3f3f3;
  background-color: transparent;
  border-color: transparent transparent #f3f3f3;
  border-bottom: 4px solid #6F00FF!important;
  font-size: 20px;
  font-weight: bold;
}
#tabs .nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  color: #eee;
  font-size: 20px;
}

/* modal */
.modal-dialog {
  max-width: 450px;
}

.modal-content {
  border: none;
  position: relative;
  padding: 0 !important;
  -webkit-box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
  -moz-box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
  box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
}
.modal-content .modal-header {
  position: relative;
  padding: 0;
  border: none;
}
.modal-content button.close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0;
  margin: 0;
  width: 40px;
  height: 40px;
  z-index: 1;
}
.modal-content .modal-body {
  border: none;
}

.modal-content .modal-body input, 
.modal-content .modal-body textarea{
	border: 1px solid royalblue!important;
	border-radius: 0px!important;
	height: 45px;
}

.modal-content .modal-body input:focus, 
.modal-content .modal-body textarea:focus{
	border: 1px solid rgb(229, 24, 75)!important;
	border-radius: 0px!important;
	outline: none;
	height: 45px;
}

.modal-content .modal-body .icon {
  width: 80px;
  height: 80px;
  border: 1px solid #fb8691;
  border-radius: 50%;
  font-size: 30px;
  margin: 0 auto;
  margin-bottom: 10px;
}
.modal-content .modal-body .icon span {
  color: #fb8691;
}
.modal-content .modal-footer {
  border: none;
  background: #f8f8f8;
}


.soc{
	display: flex;
	justify-content: start;
	align-items: center;
}

.soc a{
	margin: 13px;
	text-decoration: none;
	font-size: 22px;
	color: royalblue;
}


/* gallery */
.card {
	display: block; 
	  margin-bottom: 20px;
	  line-height: 1.42857143;
	  background-color: #fff;
	  border-radius: 2px;
	  box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12); 
	  transition: box-shadow .25s; 
  }
  .card:hover {
	box-shadow: 0 8px 17px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  }
  .img-card {
	width: 100%;
	height:200px;
	border-top-left-radius:2px;
	border-top-right-radius:2px;
	display:block;
	  overflow: hidden;
  }
  .img-card img{
	width: 100%;
	height: 200px;
	object-fit:cover; 
	transition: all .25s ease;
  } 
  .card-content {
	padding:15px;
	text-align:left;
  }
  .card-title {
	margin-top:0px;
	font-weight: 700;
	font-size: 1.65em;
  }
  .card-title a {
	color: #000;
	text-decoration: none !important;
  }
  .card-read-more {
	border-top: 1px solid #D4D4D4;
  }
  .card-read-more a {
	text-decoration: none !important;
	padding:10px;
	font-weight:600;
	text-transform: uppercase
  }