/* helper class starts */
body{
    overflow-x: hidden;
}
.flex-row-center{
    display: flex;
    align-items: center;
    justify-content: center;
}
.flex-col-center{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
/* helper class finished*/

.hero__section {
    height: 600px;
    border-bottom-left-radius: 90px;
    border-bottom-right-radius: 90px;
    position: relative;
}

.hero__section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.094);
    backdrop-filter: blur(2px);
    border-bottom-left-radius: 90px;
    border-bottom-right-radius: 90px;
    pointer-events: none;
}

.hero__section > * {
    position: relative;
    z-index: 2;
}


.menu .menu__item:hover .menu__item-link{
    color: #155dfc ;
}
.menu__item-link--active {
    color: #155dfc ;
}


