/* style caurousel */
.carousel-item {
    height: 550px;
}
.panjang {
    width: 400px;
}

.containerCSS {
    display: flex;
    gap: 2;
}

.form {
    height: 500px;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* Reseting */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}



.container {
    margin-top: 80px;
    margin-bottom: 80px;
}

.container .col-md-4 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.container .card::before {
    content: "";
    position: absolute;
    top: -50px;
    height: 0;
    width: 150%;
    background-color: #1369ce;
    z-index: -1;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    transition: all 0.5s ease-in-out;
}

.container .card {
    width: 280px;
    height: 320px;
    overflow: hidden;
    z-index: 3;
    transition: all 0.5s ease-in-out;
    border: none;
    box-shadow: 5px 5px 10px #1f1f1fa8,
                -5px -5px 10px #1f1f1fa8;
}

.container .card:hover::before {
    height: 150px;
}

.container .card .img-container {
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
    transition: all 0.5s ease-in-out;
}

.container .card .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: all 0.5s ease-in-out;
}

.container .card:hover .img-container img {
    box-shadow: 0 0 0 14px #f7f5ec;
    transform: scale(0.8);
}

.container .card .h3 {
    margin-bottom: 5px !important;
    font-weight: 600;
    pointer-events: none;
}

.container .card .designation {
    font-size: 0.85rem;
    letter-spacing: 2px;
    pointer-events: none;
}

.container .card ul {
    background-color: #1369ce;
    transition: all 0.5s ease-in-out;
    transform: translateY(100px);
}

.container .card:hover ul {
    transform: translateY(40px);
}

.container .card ul li {
    padding: 5px 8px;
    transition: all 0.4s;
}

.container .card ul li a {
    color: #FFF;
}

.container .card ul li:hover {
    background: #fff;
}

.container .card ul li:hover a {
    color: #1369ce;
}

.text {
    font-size: 13px;
    color: #0088cc;
    font-weight: bold;
}

.img {
    height: 50px;
    width: 40px;
}
.bg {
    background-color: #0088cc;
    height: 50px;
}
.navbarr {
    height: 100px;
}
.panjang {
    width: 150px;
}