html {
    scroll-behavior: smooth;
}

header ul.header-menu .sub-menu .sub-menu {
    opacity: 0;
    pointer-events: none;
    right: -15px;
    left: inherit;
    transform: translate(100%);
    top: 100%;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(98, 117, 134, 0.35);
    position: absolute;
    background: #fff;
    top: -10px;
    z-index: 9;
    padding: 10px 30px;
}
header ul.header-menu .sub-menu li:hover > .sub-menu{
    opacity: 1;
    pointer-events: inherit;
}

header ul.header-menu .sub-menu li a{
    width: 100%;
}
header ul.header-menu .sub-menu li.menu-item-has-children::after{
    display: block;
    content: "";
    width: 0;
    height: 0;
    background-color: transparent;
    border: 1px solid #00457c;
    border-left: 0;
    border-top: 0;
    padding: 3px;
    transform: rotate(-45deg);
    position: absolute;
    right: 25px;
    bottom: 4px;
    transition: .3s;
    top: 23px;
}
header ul.header-menu .sub-menu .sub-menu:before {
    display: block;
    content: "";
    width: 0;
    height: 0;
    border: 12px solid transparent;
    border-right-color: #fff;
    position: absolute;
    bottom: 100%;
    left: -24px;
    top: 25px;
}


@media (max-width: 991.98px){
    header ul.header-menu .sub-menu li.menu-item-has-children > .sub-menu{
        opacity: 0;
        box-shadow: none;
        height: 0;
        padding: 0;
        position: inherit;
        transform: translate(0);
        background-color: transparent;

    }
    header ul.header-menu .sub-menu li.menu-item-has-children > .sub-menu::before{
        display: none;
    }
    header ul.header-menu .sub-menu li.menu-item-has-children > .sub-menu.visible{
        opacity: 1;
        pointer-events: inherit;
        height: fit-content;
        padding: 10px;
    }
    header ul.header-menu .sub-menu li.menu-item-has-children > a {
        display: flex;
        position: relative;
        pointer-events: none;
    }
    header ul.header-menu .sub-menu li.menu-item-has-children > a::after{
        position: absolute;
        display: block;
        content: "+";
        color: #fff;
        transform: rotate(0);
        font-size: 20px;
        top: 5px;
        padding: 0;
        right: -5px;
    }
    header ul.header-menu .sub-menu li.menu-item-has-children.visible > a::after{
        content: "-";
    }
}
.tabs-row{
    margin: 0 auto;
    margin-bottom: 65px;
}
.tabs-row ul{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}
.tabs-row ul li{
    padding: 0;
    /* margin-bottom: 20px; */
}
.tabs-row ul li:before{
    display: none;
    
}
.tabs-row ul li a{
    display: inline-block;
    font-size: 12px;
    color: #fff;
    background: #28516C;
    padding: 15px 30px;
    margin-bottom: 0;
    border-radius: 10px;
    /* margin: 0 10px; */
    /* width: 195px; */
    text-transform: uppercase;
    text-align: center;
    font-weight: bolder;
}

.row-captcha {
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:relative;
}
.row-captcha .ajax-loader {
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

@media(max-width:765px) {
    .row-captcha {
        padding-bottom:40px;
    }
    .row-captcha .ajax-loader {
        top:auto;
        bottom:-10px;
        transform:translate(-50%,0);
    }
}

@media(max-width:600px) {
    .row-captcha {
        flex-direction:column;
        row-gap:14px;
    }
}