.agent__nav {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 50;
}
.agent__nav__logo {
    flex: 0 0 60px;
    overflow: hidden;
    position: relative;
    z-index: 3;
}

.agent__nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    z-index: 2;
}
.nav__agent_custom-btn {
    /*max-width: 120px;*/
    width: 100%;
    padding: 12px 30px;
    color: var(--light);
    border-radius: 4px;
    margin-left: 20px;
}

.nav__agent-burger {
    display: none;
}
.terms {
    margin-top: 68px;
}
.terms__btn {
    padding: 7px;
    border-radius: 10px;
    margin-left: 20px;
}
.terms__body h5 {
    font-family: Source Sans Pro;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 23px;
    color: #222B45;
}
.terms__body h4{
    font-family: Source Sans Pro;
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: 40px;
    color: #222B45;
}
.terms__body p{
    font-family: Source Sans Pro;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    color: #222B45;
}
.terms__body h1{
    font-family: Source Sans Pro;
    font-style: normal;
    font-weight: bold;
    font-size: 44px;
    line-height: 55px;
    color: #222B45;
}
.terms__body ul {
    padding-left: 0 !important;
}
.terms__body ul li {
    font-family: Source Sans Pro;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    color: #222B45;
    list-style-type: none;
}
.terms__btn-back {
    max-width: 80px;
    width: 100%;
    padding: 10px;
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-top: 40px;
}
.terms__btn-back img {
    margin-right: 5px;
}
.terms__btn-back span {
    font-family: Inter;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    line-height: 24px;
    color: #222B45;
}
@media (max-width: 992px) {
    .nav__agent-burger {
        display: block;
        position: relative;
        width: 30px;
        height: 20px;
        z-index: 3;
    }

    .nav__agent-burger::before,
    .nav__agent-burger::after {
        content: "";
        background-color: #050505;
        position: absolute;
        width: 30px;
        height: 2px;
        left: 0;
        transition: all 0.3s ease 0s;
    }

    .nav__agent-burger::before {
        top: 0;
    }

    .nav__agent-burger::after {
        bottom: 0;
    }

    .nav__agent-burger.burger__active::before {
        transform: rotate(45deg);
        top: 9px;
        background-color: #2B2B42;
    }

    .nav__agent-burger.burger__active::after {
        transform: rotate(-45deg);
        bottom: 9px;
        background-color: #2B2B42;
    }

    .nav__agent-burger.burger__active span {
        transform: scale(0);
    }

    .nav__agent-burger span {
        position: absolute;
        background-color: var(--dark);
        left: 0;
        width: 30px;
        height: 2px;
        top: 9px;
        transition: all 0.3s ease 0s;
    }
}
