html {
    scroll-behavior: smooth;
}

body {
    background-color: #101010;
}

.bg-grey {
    background-color: #161616;
}

/* font */
.font-poppins {
    font-family: Poppins;
}

.font-10 {
    font-size: 10px;
}

.font-14 {
    font-size: 14px;
}

.font-16 {
    font-size: 16px;
}

.font-20 {
    font-size: 20px;
}

.font-24 {
    font-size: 24px;
}

.font-26 {
    font-size: 26px;
}


/* warna */
.color-green {
    color: #009E66;
}

.color-grey {
    color: #9F9F9F;
}

.border-green {
    border: 1px solid #009E66;
    border-radius: 5px;
}

.wipe {
    position: relative;
    margin-bottom: 5px;
    cursor: pointer;
    padding: 10px;
    transition: 0.5;
}

.wipe:hover {
    color: white;
}

.wipe::before {
    content: "";
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background: black;
    position: absolute;
    z-index: -1;
    transition: 0.5s ease-out;
}

.wipe:hover::before {
    width: 100%;
}

/* nav */
.navbar-toggler {
    width: 20px;
    height: 20px;
    position: relative;
    transition: 0.5s ease-in-out;
}

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
    border: 0;
}

.navbar-toggler span {
    margin: 0;
    padding: 0;
}

.toggler-icon {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #009E66;
    border-radius: 1px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.middle-bar {
    margin-top: 0px;
}

/* when navigation is clicked */
.navbar-toggler .top-bar {
    margin-top: 0px;
    transform: rotate(135deg);
}

.navbar-toggler .middle-bar {
    opacity: 0;
    filter: alpha(opacity=0);
}

.navbar-toggler .bottom-bar {
    margin-top: 0px;
    transform: rotate(-135deg);
}

/* state when the navbar is collapse */
.navbar-toggler.collapsed .top-bar {
    margin-top: -20px;
    transform: rotate(0deg);
}

.navbar-toggler.collapsed .middle-bar {
    opacity: 1;
    filter: alpha(opacity=100);
}

.navbar-toggler.collapsed .bottom-bar {
    margin-top: 20px;
    transform: rotate(0deg);
}

/* end state */
.nav-link {
    position: relative;
    cursor: pointer;
    background: none;
    border: transparent;
    padding: 5px 10px;
    color: #9F9F9F;
    transition: 0.3s ease-in-out;
}

.nav-link:hover {
    color: white;
}

.nav-link.active {
    background-color: #009E66;
    border-radius: 5px;
    padding: 5px 10px;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    height: 3px;
    width: 0%;
    background: #009E66;
    border-radius: 100px;
    transition: 0.5s ease;
}

.nav-link:hover::after {
    left: 0;
    width: 100%;
}

/* css main */
.btn-download {
    color: white;
    background-color: #009e66 !important;
    border: 1px solid #009e66 !important;
    border-radius: 30px;
    padding: 10px 35px;
    transition: .25s ease-in-out;
}

.btn-download:hover {
    background-color: #007e52 !important;
    border: 1px solid #007e52 !important;
}

#about {
    height: 100%;
}

#my-profile {
    width: 430px;
    object-fit: cover;
    object-position: top center;
}

@media only screen and (max-width: 768px) {
    #my-profile {
        width: 200px;
        height: 200px;
        border-radius: 50%;
    }

    p {
        font-size: 14px;
    }
}

@media only screen and (min-width: 769px) {
    #my-profile {
        width: 250px;
        height: 250px;
        border-radius: 50%;
    }
}

@media only screen and (min-width: 992px) {
    #my-profile {
        width: 430px;
        height: 100%;
        border-radius: 5px;
    }

    p {
        font-size: 16px;
    }
}

.line {
    width: 50px;
    height: 5px;
    background-color: #585858;
    border-radius: 5px
}

.btn-logo {
    color: #F0F0F0;
    transition: .3s ease-in-out;
}

.btn-logo:hover {
    color: #009E66;
}

#resume {
    height: 100%;
}

.title {
    font-size: 46px;
}

.mycard {
    background-color: #161616;
    border-left: 3px solid #009E66;
    margin: 0px .15rem;
}

.card {
    background-color: #161616;
    border-radius: 0;
    border: 4px solid #009E66;
}

.img-fluid {
    object-position: center;
    object-fit: cover;
}

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

#contact {
    height: 100%;
}