:root {
    --color-black: #000;
    --color-white: #fff;
    --color-primary: #efefef;
    --color-green:#f7a317;
    --color-blue: #13A3B2;
}

@font-face {
    font-display: swap;
    font-family: Poppins;
    font-style: normal;
    font-weight: 400;
    src: url("/assets/fonts/poppins/Poppins-Regular.woff2") format("woff2")
}

@font-face {
    font-display: swap;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    src: url("/assets/fonts/poppins/Poppins-Medium.woff2") format("woff2")
}

@font-face {
    font-display: swap;
    font-family: Poppins;
    font-style: normal;
    font-weight: 600;
    src: url("/assets/fonts/poppins/Poppins-SemiBold.woff2") format("woff2")
}

@font-face {
    font-display: swap;
    font-family: Poppins;
    font-style: normal;
    font-weight: 700;
    src: url("/assets/fonts/poppins/Poppins-Bold.woff2") format("woff2")
}

.container {
    margin: 0 auto;
    max-width: 1150px;
    padding: 0 15px
}

.btn {
    border-radius: 5px;
    color: var(--color-white);
    display: block;
    font-weight: 600;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    transition: all .3s ease;
    width: -moz-max-content;
    width: max-content
}

@media (min-width:768px) {
    .btn {
        padding: 8px 25px
    }
}

.btn-primary {
    border: 1px solid var(--color-white);
    background-color: #f7a317;
}

.btn-primary:hover {
    color: var(--color-black)
}

.btn-secondary {
    background: var(--color-green)
}
.btn-secondary:hover {
    background: #a5701d;
}
.btn-blue {
    background: var(--color-blue)
}

.btn-blue:hover {
    background: var(--color-white);
    color: var(--color-black)
}

.btn-red {
    background: var(--color-red)
}

.btn-red:hover {
    background: var(--color-white);
    color: var(--color-black)
}

.btn-lg {
    padding: 12px 0;
    width: 100%
}

@media (min-width:768px) {
    .btn-lg {
        padding: 16px 45px;
        width: -moz-max-content;
        width: max-content
    }
}

.header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 13px 0
}

.header__logo {
    position: relative;
    width: 150px;
    z-index: 2
}

@media (min-width:768px) {
    .header__logo {
        width: 170px
    }
}

.header__buttons {
    align-items: center;
    gap: 20px
}

.burger,
.header__buttons {
    display: flex;
    position: relative;
    z-index: 2
}

.burger {
    cursor: pointer;
    display: block;
    height: 28px;
    transition: all .3s;
    width: 28px
}

@media (min-width:768px) {
    .burger {
        display: none
    }
}

.burger span {
    background-color: var(--color-white);
    display: block;
    float: right;
    height: 2px;
    transition: all .3s;
    width: 100%
}

.burger span:nth-of-type(2) {
    margin: 8px 0;
    width: 50%
}

.burger.active {
    padding-top: 12px
}

.burger.active span {
    float: none
}

.burger.active span:first-of-type {
    height: 2px;
    transform: rotate(45deg);
    transition-delay: .3s
}

.burger.active span:nth-of-type(2) {
    height: 0;
    margin: -2px;
    opacity: 0
}

.burger.active span:nth-of-type(3) {
    height: 2px;
    transform: rotate(-45deg);
    transition-delay: .3s
}

.content {
    padding-bottom: 50px;
    padding-top: 10px
}

@media (min-width:768px) {
    .content {
        padding-top: 35px
    }
}

.content .btn {
    margin-bottom: 50px
}

@media (min-width:768px) {
    .content .btn {
        margin-bottom: 105px
    }
}

.content p {
    margin-bottom: 20px;
    margin-top: 0
}

.content h1 {
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    margin-top: 0;
    text-align: center
}

@media (min-width:768px) {
    .content h1 {
        font-size: 44px;
        line-height: 1.0454545455;
        margin-bottom: 20px;
        text-align: left
    }
}

.content h1+p {
    margin-bottom: 20px;
    text-align: center
}

@media (min-width:768px) {
    .content h1+p {
        margin-bottom: 30px;
        max-width: 900px;
        text-align: left
    }
}

.content h2 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3333333333;
    margin-bottom: 20px;
    margin-top: 0
}

@media (min-width:768px) {
    .content h2 {
        font-size: 32px;
        line-height: 1
    }
}

.content h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3333333333;
    margin-bottom: 20px;
    margin-top: 0
}

@media (min-width:768px) {
    .content h3 {
        font-size: 28px;
        line-height: 1
    }
}

.content table {
    border-spacing: 0;
    margin-bottom: 20px;
    margin-top: 20px;
    width: 100%
}

@media (min-width:768px) {
    /* .content table {
        margin-bottom: 85px
    } */
}

.content tr:nth-child(odd) td {
    background: #c29d65;
}

.content tr:nth-child(odd) td:nth-child(odd) {
    background: #b68936;
}

.content td {
    padding: 5px 16px
}

.content td:nth-child(2n) {
    font-weight: 700
}

.content td:first-child {
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px
}

.content td:last-child {
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px
}

.content .img-cov {
    border-radius: 13px;
    margin: 20px auto;
    max-width: 605px
}

@media (min-width:768px) {
    .content .img-cov {
        margin: 50px auto
    }
}

.content .img-cov img {
    width: 100%
}

.page {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: calc(100vh - 70px);
    padding: 100px 0
}

.page h1 {
    font-size: 80px;
    line-height: 1;
    margin: 0
}

@media (min-width:768px) {
    .page h1 {
        font-size: 150px
    }
}

.page__wrap {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.menu {
    background: var(--color-primary);
    display: block;
    left: 0;
    opacity: 0;
    padding: 45px 15px 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all .3s ease;
    visibility: hidden;
    z-index: 0
}

@media (min-width:768px) {
    .menu {
        display: none
    }
}

.menu.active {
    opacity: 1;
    visibility: visible
}

.menu__lang {
    align-items: center;
    color: #fff;
    display: flex;
    font-size: 14px;
    font-weight: 500;
    justify-content: flex-end;
    padding: 20px 0;
    text-decoration: none
}

.menu__lang img {
    display: block;
    margin-left: 18px
}

.menu__list {
    border-top: 1px solid #222727;
    list-style: none;
    margin: 0;
    padding: 10px 0
}

.menu__item {
    color: #fff;
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    padding: 10px 0;
    text-decoration: none
}

.menu__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3333333333;
    margin-bottom: 20px;
    margin-top: 0
}

@media (min-width:768px) {
    .menu__title {
        font-size: 32px;
        line-height: 1
    }
}

ol,
ul {
    list-style-position: inside;
    padding-left: 0
}

.anchor__menu li {
    margin-bottom: 3px
}

.anchor__menu a {
    color: var(--color-white);
    text-decoration: none
}

.anchor__menu a:hover {
    color: var(--color-green)
}
.table {
    overflow: auto;
}
.site-footer {
    background-color: #fff;
    color: #222;
    padding: 20px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.5;
}

.footer-logo img {
    max-height: 50px;
}

.logo-link {
    display: inline-block;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo {
        margin-top: 10px;
    }
}