:root {
    --transition1s: all 0.1s ease;
    --transition2s: all 0.2s ease;
    --transition3s: all 0.3s ease;
    --transition4s: all 0.4s ease;
}

* {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

.text-justify {
    text-align: justify;
}

body {
    background-color: #F9F9F9;
}

main {
    padding-bottom: 32px;
}

#banner {
    background-image: url('../img/bg\ ict.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;

    z-index: 1;
}

#banner::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: -1;
}

#banner .container {
    min-height: 50vh;
    color: #fff;
    z-index: 2;
}

.left-side {
    border-right: 1px solid #c4c4c4;
}

.box {
    border: 1px solid #d9d9d9;
}

.img-container {
    overflow: hidden;
    position: relative;
}

.img-container img {
    width: 100%;
    aspect-ratio: 1/1;

    transition: var(--transition4s);
}

.img-container:hover img {
    transform: scale(130%);
}

.name {
    position: absolute;
    top: 150%;
    left: 0;
    width: 100%;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;

    transition: var(--transition4s);
}

.img-container:hover .name {
    top: 0;
}

.right-side {
    color: #ffffff;
}

.btn-green {
    background-color: #32A353;
    color: #fff;
}

.btn-green:hover, .btn-green:focus, .btn-green:active {
    background-color: #206435;
    color: #fff;
}

.get-updates {
    top: 12px;
}

footer {
    background-color: #141414;
}

@media (max-width: 767.5px) {
    .left-side {
        border-right: none;
        border-bottom: 1px solid #c4c4c4;
    }
}