html {
    scroll-behavior: smooth;
}

body {
    background: #ECF3F1;
}

.rounded-1 {
    border-radius: 1rem !important;
}

.rounded-2 {
    border-radius: 2rem !important;
}

.information-left, .information-right {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 2rem;
    overflow: hidden;
}

.information-avatar img {
    border-radius: 100%;
    overflow: hidden;
    object-fit: cover;
    margin: 0 auto;
    border: 2px dashed var(--color-highlight);
    padding: 1rem;
}

.information-name {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: capitalize;
    margin: 1rem 0;
}

.information-left ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
    padding: 0;
    margin: 1rem 0 0;
    justify-content: center;
}

.information-left ul li a {
    font-size: 2rem;
    border: 1px solid gray;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    border-radius: .5rem;
}

.information-left ul li a:hover {
    color: var(--color-highlight);
}

.information-right {
    text-align: left;
}

.information-content h2 {
    font-weight: bold;
}

.information-content h2 span {
    -webkit-text-stroke: 1px #000;
    color: transparent;
}

.ido--tile {
    font-size: 1.6rem;
    font-weight: 500;
}

.item-epx {
    display: flex;
    gap: 2rem;
    border-bottom: 1px solid lightgray;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
}

.item-epx i {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eeeeee;
    border-radius: 1rem;
}

.item-epx .epx--tile {
    margin: 1rem 0;
    font-weight: 500;
    font-size: 2rem;
}

.item-skill {
    text-align: center;
    border: 1px solid lightgrey;
    padding: 3rem;
    border-radius: 2rem;
    transition: 0.5s;
}

.skill--tile {
    margin: 1rem 0;
    font-size: 1.8rem;
    font-weight: 500;
}

.skill--number {
    background: var(--color-highlight);
    color: white;
    padding: .5rem 1rem;
    border-radius: 1rem;
    font-size: 2rem;
    font-weight: bold;
}

.item-skill:hover {
    background: white;
    border-color: var(--color-highlight);
}

.article-project {
    border: 1px solid lightgray;
    border-radius: 0 0 2rem 2rem;
}

.article-project .inner-content {
    padding: 2rem;
}

.article-project .article-title {
    font-size: 2rem;
    margin: 0 !important;
}

.slogan {
    background: white;
    padding: 5vw 15vw;
    border-radius: 2rem;
    text-align: center;
}

.slogan h3 {
    font-size: 3.5rem;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 2rem;
}

.slogan h3 span {
    -webkit-text-stroke: 1px #000;
    color: transparent;
}

.box-footer-contact ul {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
    list-style: none;
    flex-wrap: wrap;
}

.box-footer-contact ul li a {
    display: flex;
    width: 3rem;
    height: 3rem;
    border: 1px solid;
    color: black;
    align-items: center;
    justify-content: center;
    border-radius: .5rem;
}

.box-footer-contact ul li a:hover {
    color: var(--color-highlight);
}

.menu-socal ul {
    padding: 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.menu-socal ul li a {
    color: black;
    font-size: 2rem;
}

.setting-menu.fix {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    z-index: 1920;
}
/*--------------------------------------------------------------------------
|  Responsive
--------------------------------------------------------------------------*/

@media (min-width:992px) {
    html {
       scroll-padding-top: 150px;
    }
}