/** RESET **/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

body {
    font-family: 'Inter', sans-serif;
}

.header {
    background-color: rgb(19, 22, 26);
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
    max-width: 1200px;
    padding: 0 30px;
    margin: 0 auto;
}

.logo {

}

.logo__img {
    height: 20px;
    display: block;

}

.nav {

}

.nav__list {
    display: flex;
    column-gap: 40px;
}

.nav__item {

}

.nav__link {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    transition: all 0.4s;
    position: relative;
}

.nav__link:hover,
.nav__link:focus {
    color: rgba(255, 255, 255, 1);
    text-decoration-line: none;
}

.nav__link::after {
    content: '';
    height: 2px;
    width: 100%;
    background-color: rgb(0, 183, 255);
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: all 0.2s;
    opacity: 0;
    pointer-events: none;
}

.nav__link:hover::after {
    opacity: 1;
}

.tombol {
    color: #fff;
    background-color: #0071e3;
    padding: 7px 18px;
    border-radius: 1000px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s;
}

.tombol:hover {
    background-color: rgb(28, 128, 228);
    text-decoration-line: none;
    color: #fff;
}

/* ------------------ area footer ------------------ */

.footer {
    background-color: #24262b;
    padding: 70px 0;
}

.foo__container {
    max-width: 1170px;
    /*background-color: red;*/
    margin: auto;
}

.foo__row {
    display: flex;
    flex-wrap: wrap;
}

.footer-col {
    width: 25%;
    padding: 0 15px;
}

.footer-col h4 {
    font-size: 18px;
    color: #fff;
    text-decoration: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
    /* background-color: red; */
}

.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #e91e63;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.footer-col ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 16px;
    text-transform: capitalize;
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    color: #bbb;
    display: block;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 8px;
}

.footer-col .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #fff;
    transition: all 0.5 ease;
}

.footer-col .social-links a:hover {
    color: #24262b;
    background-color: #fff;
}
