.underline-span:hover .underline-text:before,
body {
    width: 100%
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--main-font)
}

html {
    font-size: 63%;
    scroll-behavior: smooth;
    overflow-x: hidden !important
}

body {
    position: relative;
    background: var(--main-bg);
    color: var(--main-font-color);
    font-size: 1.7rem;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.5;
    min-height: 100rem;
}

a {
    z-index: 10
}

body::-webkit-scrollbar {
    width: .5rem
}

body::-webkit-scrollbar-track {
    background: rgb(235, 235, 235);
}

body::-webkit-scrollbar-thumb {
    background: #24B278;
    border-radius: 5px;
    width: 95%
}

.heading-1 {
    font-size: 4rem;
    font-weight: 600
}

.heading-2,
.underline-div {
    font-weight: 500
}

.heading-2 {
    font-size: 3rem
}

.heading-3 {
    font-size: 2rem
}

h1,
h2,
h3 {
    all: unset
}

.underline-span {
    height: 100%;
    overflow: hidden
}

.underline-text {
    position: relative;
    color: var(--main-bg);
    text-decoration: none;
    padding: 0 0 .5rem;
    font-family: Mulish;
    transition: .3s ease-in-out
}

.underline-text::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    margin: 5px 0 0;
    transition-duration: .75s;
    background-color: var(--main-bg);
    font-size: 2rem;
    border-radius: 10rem
}

.container-main {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    gap: 5rem;
}

.intro-show-item,
.intro-show-item-right,
.become-partner {
    padding: 0 var(--main-padding);
    /* padding: 5rem; */
}


@media only screen and (max-width:600px) {
    body {
        font-size: 1.5rem;
        line-height: 1.2
    }
}