:root {
    --main-color: #000;
    --main-hover-color: #333;
    --white-color: #fff;
    --gray-color: #F5F5F5;
    --lightgray-color: #E6E6E6;
    --text-main-color: #000;
    --text-white-color: #fff;
    --text-gray-color: #666666;
    --text-lightgray-color: #E6E6E6;

    --main-font: 'Inter Tight';
}
h3,
.h3 {
    font-weight: 500;
    font-size: 40px;
    line-height: 1.2;
    color: var(--text-main-color);
}
h5,
.h5 {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.4;
    color: #000;
}
.text {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
}
.footer a {
    color: inherit;
    cursor: pointer;
    background-color: transparent;
    text-decoration: none;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.footer a:hover,
.footer a:focus {
    text-decoration: none;
}
.ls2 {
    letter-spacing: 0.2px;
}
.section {
    position: relative;
    padding: 112px 0;
}
.container {
    position: relative;
    max-width: 1344px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}
.fs-main-menu{
    border-bottom: 1px solid #eee;
}
.fs-main-menu .intec-content-wrapper{
    font-size: 14px;
    line-height: normal;
    display: flex;
    align-items: center;
    padding-top: 5px;
    padding-bottom: 5px;
}
.fs-main-menu .intec-content-wrapper > a > img{
    max-width: 40px;
    margin-right: 25px;
}
.fs-main-menu ul{
    padding: 0;
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
}
.fs-main-menu ul li{
    list-style: none;
    padding: 0;
    margin: 0;
}
.fs-main-menu ul > li:before{
    content: none;
}
.fs-main-menu ul > li > a:hover,
.fs-main-menu ul > li > a.active{
    color: #888;
}
.fs-main-menu ul > li > a.active{
    pointer-events: none;
}
.fs-main-menu ul > li > a{
    padding: 0 15px;
}
.fs-main-menu .widget-authorization-items{
    cursor: pointer;
    font-size: 20px;
}
.footer {
    position: relative;
    padding: 32px 0;
}

.footer-container {
    position: relative;
    max-width: 1344px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

.footer-container::before {
    content: '';
    position: absolute;
    top: -32px;
    left: 0;
    right: 0;
    margin: auto;
    width: calc(100% - 32px);
    height: 1px;
    background: #E6E6E6;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    gap: 0 24px;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.2px;
    color: #666666;
}

.footer-copyright-links {
    display: flex;
    justify-content: space-between;
    gap: 0 24px;
}
.footer .link {
    font-size: 16px;
	text-decoration: underline;
}

.footer .link:hover {
	text-decoration: none;
    opacity: 0.7;
}
@media (max-width: 992px) {
    .fs-main-menu .intec-content-wrapper > a > img{
        max-width: 30px;
        margin-right: 10px;
    }
    .fs-main-menu .intec-content-wrapper{
        font-size: 12px;
    }
    .fs-main-menu ul > li > a {
        padding: 0 5px;
    }
}
@media (max-width: 768px) {
    .fs-main-menu .widget-authorization-items{
        display: none;
    }
}
@media (max-width: 480px) {
    h5,
    .h5 {
        font-size: 20px;
        line-height: 1.3;
    }
    h3,
    .h3 {
        font-size: 24px;
    }
    .text {
        font-size: 14px;
    }
    .section {
        padding: 64px 0;
    }
    .footer {
        padding: 24px 0;
    }

    .footer-copyright,
    .footer-copyright-links {
        flex-direction: column;
        gap: 8px 0;
    }
}