*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
}

:root{
    --bg-yellow:#ffc824;
    --bg-sky:#2897fe;
    --bg-blask:#010f1c;
}

a{
    text-decoration: none;
}


ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.mt-80{
    margin-top: 80px;
}

.mt-100{
    margin-top: 100px;
}

.main_btn a {
    background: var(--bg-yellow);
    padding: 13px 35px;
    border-radius: 2px 15px;
    color: #010f1c;
    font-size: 15px;
    font-weight: 600;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.5s;
    width: fit-content;
}

.main_btn a:before {
    position: absolute;
    left: 0;
    bottom: -100%;
    height: 100%;
    width: 100%;
    border-radius: 2px 15px;
    content: '';
    background: #010f1c;
    z-index: -1;
    transition: 0.5s;
}

.main_btn a:hover:before {
    bottom: 0;
}

.main_btn a i {
    transform: rotate(312deg);
    transition: 0.5s;
}

.main_btn a:hover i {transform: rotate(0deg);}

.main_btn a:hover {
    color: #fff;
}