
@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
#team {
    background: #dff2eb;
} */

.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    /* margin: 30px 0 60px;/ */
    margin: 0 auto ;
    position: relative;
    color: #000;
} 

.header-container::after{
    content: "";
    width: 400px;
    position: absolute;
	margin: 0 auto;
	height: 4px;
	border-radius: 1px;
	left: 0;
	right: 0;
	bottom: -15px;
}

.tag {
    margin: 0; 
    font-family: 'Comic Sans MS', 'Bubblegum Sans', cursive;
    color: #000;
    font-size: 35px;
    font-weight: 300;
}

.heart-icon {
    color: #bbc4f0;
    font-size: 35px;
    display: flex;
    align-items: center;
}


/* Responsif untuk tablet */
@media (max-width: 768px) {
    .header-container {
        margin: 20px 0 40px;
        gap: 10px;
    }

    .header-container::after {
        width: 300px;
        height: 3px;
        bottom: -12px;
    }

    .tag {
        font-size: 28px;
    }

    .heart-icon {
        font-size: 28px;
    }
}

/* Responsif untuk HP */
@media (max-width: 480px) {
    .header-container {
        /* margin: 15px 0 30px; */
        gap: 8px;
        flex-direction: column;
    }

    .header-container::after {
        width: 200px;
        height: 2px;
        bottom: -10px;
    }

    .tag {
        font-size: 24px;
        text-align: center;
    }

    .heart-icon {
        font-size: 24px;
        margin-top: 5px;
    }
}



.btn-primary:hover,
.btn-primary:focus {
    background-color: #108d6f;
    border-color: #108d6f;
    box-shadow: none;
    outline: none;
}

.btn-primary {
    color: #fff;
    background-color: #fff;
    border-color: #007b5e;
}

section {
    padding: 10px 0;
}

section .section-title {
    text-align: center;
    color: #007b5e;
    margin-bottom: 50px;
    text-transform: uppercase;
}

section .section-title::after {
	content: "";
	width: 550px;
	position: absolute;
	margin: 0 auto;
	height: 4px;
	border-radius: 1px;
	background: #7ac400;
	left: 0;
	right: 0;
    display: block;
    margin-top: 20px;
}


#team .card {
    border: none;
    background: #ffffff;
}

.image-flip:hover .backside,
.image-flip.hover .backside {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
    border-radius: .25rem;
}

.image-flip:hover .frontside,
.image-flip.hover .frontside {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.mainflip {
    -webkit-transition: 1s;
    -webkit-transform-style: preserve-3d;
    -ms-transition: 1s;
    -moz-transition: 1s;
    -moz-transform: perspective(1000px);
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transition: 1s;
    transform-style: preserve-3d;
    position: relative;
}
.frontside {
    position: relative;
    transform: rotateY(0deg);
    z-index: 2;
    margin-bottom: 30px;
}

.backside {
    position: absolute;
    top: 0;
    left: 0;
    background: white;
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
    -moz-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
    box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
}

.frontside,
.backside {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: 1s;
    -webkit-transform-style: preserve-3d;
    -moz-transition: 1s;
    -moz-transform-style: preserve-3d;
    -o-transition: 1s;
    -o-transform-style: preserve-3d;
    -ms-transition: 1s;
    -ms-transform-style: preserve-3d;
    transition: 1s;
    transform-style: preserve-3d;
}

.frontside .card,
.backside .card {
    min-height: 100%;
    position: relative;
}

.backside .card a {
    font-size: 18px;
    color: #007b5e;
}

.frontside .card .card-title,
.backside .card .card-title {
    color: #007b5e;
}

.frontside .card .card-body img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}