
*, :before, :after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: 'PT Sans', sans-serif;
    font-size: 16px;
    background: #FFFFFF;
    webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.container {
    max-width: 1290px;
    margin: 0 auto;
    padding: 0 30px;
}

.gold-bg-text {
    background: linear-gradient(311deg, #D39433 0%, #FDE47F 100%);
    border-radius: 8px;
    height: 34px;
    padding: 2px;
}

header {
    background: #0B3D91;
    height: 70px;
    position: fixed;
    width: 100%;
    padding-top: 14px;
    z-index: 25;
    border-bottom: 1px solid #D39433;
}

header .tel {
    margin: 0;
    width: 108px;
}

header .tel .tel-text {
    font-size: 12px;
    font-weight: 400;
    line-height: 14.4px;

}

header .wrapper {
    display: flex;
    gap: 16px;
}

header .btn {
    background: linear-gradient(307.86deg, #D39433 -33.34%, #FDE47F 92.09%);
    height: 29px;
    width: 88px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;

    font-family: PT Sans, sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 12.94px;
    text-align: center;
    color: #0B3D91;
    transition: .1s all linear;
    cursor: pointer;
}

header .btn:hover {
    transform: scale(1.01);
}

header .header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1 {
    font-family: PT Sans, sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 57.6px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 32px;
}

.hide {
    display: none !important;
}

section.first-screen {
    padding-top: 70px;
    background: url("../img/first-screen-bg.png") center center/cover no-repeat;
    height: 830px;
    display: flex;
    align-items: center;
}

section.first-screen .text {
    font-family: PT Sans, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 32px;
}

button.more-btn, a.more-btn {
    width: 318px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    font-family: PT Sans, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 18.12px;
    text-align: center;
    color: #D39433;
    background: transparent;
    border: 1px solid #D39433;
    border-radius: 8px;
    margin: 0 auto;
    text-transform: uppercase;
    cursor: pointer;
    transition: .1s all linear;
}

button.more-btn:hover {
    transform: scale(1.01);
}

.media-1024 {
    display: none;
}

.burger {
    border: none;
    background: transparent;
    cursor: pointer;
}

#burger {
    width: 25px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

#burger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 25px;
    border-radius: 6px;
    background: linear-gradient(315deg, #D39433 0%, #FDE47F 100%);
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#burger span:nth-child(1) {
    top: -10px;
}

#burger span:nth-child(2) {
    top: -1px;
}

#burger span:nth-child(3) {
    top: 8px;
}

#burger.open span:nth-child(1) {
    top: 0px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

#burger.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

#burger.open span:nth-child(3) {
    top: 0px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.backdrop {
    background: rgba(0, 0, 0, 0.7);
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 20;
    top: 0;
}

.side-menu.open {
    right: 0;
}

.disable-body {
    overflow: hidden;
}

.side-menu {
    position: fixed;
    z-index: 25;
    margin-top: 78px;
    top: -8px;
    right: -100%;
    height: 100vh;
    background: #0B3D91;
    padding: 32px;
    width: 241px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: right 0.5s ease;
}

.side-menu .tel {
    margin-bottom: 32px;
}

.side-menu .tel .tel-text {
    font-size: 16px;
}

.side-menu .tel a {
    margin: 0;
}

.side-menu .btn {
    width: 145px;
    height: 46px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(307.86deg, #D39433 -33.34%, #FDE47F 92.09%);

    font-size: 14px;
    font-weight: 700;
    line-height: 18.12px;
    text-align: center;
    color: #0B3D91;
}

/* footer */

footer {
    background: #0B3D91;
    min-height: 373px;
    padding-top: 84px;
    padding-bottom: 70px;
}

.footer-link {
    color: #FDE47F;
    text-decoration: underline;
    cursor: pointer;
}

footer .footer__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

footer .footer__wrapper .logo-text {
    color: #4F5D6D;
    font-size: 12px;
    margin-top: 20px;
    max-width: 284px;
}

footer .footer__wrapper .footer-nav {
    align-items: flex-start;
    column-gap: 30px;
    row-gap: 16px;
    width: 390px;
    flex-wrap: wrap;
    flex-direction: column;
    max-height: 110px;
}

footer .footer__wrapper .support {
    display: flex;
    flex-direction: column;
}

footer .footer__wrapper .support h5 {
    color: #F3F4F5;
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.tel {
    cursor: pointer;
    transition: .1s all linear;
    display: flex;
    column-gap: 12px;
    align-items: center;
    margin-bottom: 15px;
}


.tel a {
    color: #FDE47F;
}

.tel .tel-text {
    font-size: 24px;
    line-height: 120%;
}

footer .footer__wrapper .footer-text {
    color: #F3F4F5;
    font-size: 16px;
    line-height: 110%;
    margin-bottom: 10px;
}

footer .all-rights-reserved {
    color: #4F5D6D;
    text-align: center;
    font-size: 12px;
    font-weight: 300;
    margin-top: 32px;
    line-height: 120%;
}

/* licence */
section.license {
    background: #0B3D91;
    min-height: 373px;
    padding: 84px 0px;
}

section.license h3 {
    text-align: center;
    color: #0B3D91;
    font-size: 28px;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 32px;
}

section.license .text {
    text-align: center;
    color: #FFF;
    font-size: 16px;
    line-height: 140%;
    font-weight: 400;
    max-width: 1018px;
    margin: 0 auto;
}

.gold-color-text {
    color: #FDE47F;
}

footer .footer__wrapper .contacts {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

footer .footer__wrapper .contacts h5 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 27px;
    text-align: left;
    color: #F3F4F5;
    margin-bottom: 18px;
}


footer .footer__wrapper .contacts .contact-wrapper h5 {
    margin-bottom: 12px;
}

footer .footer__wrapper .contacts .contact-wrapper > .wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

footer .footer__wrapper .contacts .email a {
    font-size: 24px;
    font-weight: 400;
    line-height: 28.8px;
    text-align: left;
    color: #FDE47F;
    cursor: pointer;
    transition: .1s all linear;
}

footer .footer__wrapper .contacts .email a:hover {
    transform: scale(1.01);
}

section.credit-product {
    padding: 70px 0;
    background: #F3F4F5;
}

h2 {
    font-family: PT Sans, sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 33.6px;
    text-align: center;
    color: #1C1C1C;
    margin-bottom: 32px;
}

section.credit-product .container > .wrapper {
    display: flex;
    gap: 32px;
    width: 100%;
}

section.credit-product .choose-credit-product-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

section.credit-product .choose-credit-product-wrapper .credit-product-btn {
    width: 390px;
    height: 120px;
    background: #FFFFFF;
    border-radius: 16px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px;
    position: relative;
}

section.credit-product .btn {
    font-family: PT Sans, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 18.12px;
    text-align: center;
    color: #0B3D91;
    max-width: 305px;
    width: 100%;
    background: linear-gradient(307.86deg, #D39433 -33.34%, #FDE47F 92.09%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    height: 46px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    transition: .1s all linear;
    margin-top: 32px;
}

section.credit-product .btn:hover {
    transform: scale(1.01);
}

section.credit-product .choose-credit-product-wrapper .credit-product-btn.active {
    background: #323232;
    position: relative;
    right: -38px;
}

section.credit-product .choose-credit-product-wrapper .credit-product-btn.active .name {
    color: #FDE47F;
}


section.credit-product .choose-credit-product-wrapper .credit-product-btn.active .text {
    color: #FFFFFF;
}

section.credit-product .choose-credit-product-wrapper .credit-product-btn .name {
    font-size: 24px;
    font-weight: 700;
    line-height: 28.8px;
    text-align: left;
    color: #8399AE;
}

section.credit-product .choose-credit-product-wrapper .credit-product-btn button {
    position: absolute;
    width: 56px;
    height: 56px;
    border: none;
    right: -29px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

section.credit-product .choose-credit-product-wrapper .credit-product-btn button .round {
    width: 46px;
    height: 46px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    position: relative;
}


section.credit-product .choose-credit-product-wrapper .credit-product-btn.active button .round .more-btn {
    background: #454545;
}

section.credit-product .choose-credit-product-wrapper .credit-product-btn.active button .round {
    background: #323232;
}

section.credit-product .choose-credit-product-wrapper .credit-product-btn button .half-round {

    position: absolute;
}
section.credit-product .choose-credit-product-wrapper .credit-product-btn.active button .half-round .not-active {
    display: none;
}
section.credit-product .choose-credit-product-wrapper .credit-product-btn button .half-round .active {
    display: none;
}
section.credit-product .choose-credit-product-wrapper .credit-product-btn button .half-round .not-active {
    display: initial;
}
section.credit-product .choose-credit-product-wrapper .credit-product-btn.active button .half-round .active {
    display: initial;
}
section.credit-product .choose-credit-product-wrapper .credit-product-btn button .half-round .l {
    position: relative;
    right: -14px;
    top: -23px;
}
section.credit-product .choose-credit-product-wrapper .credit-product-btn button .half-round .r {
    position: relative;
    right: 10px;
    top: 27px;
}


section.credit-product .choose-credit-product-wrapper .credit-product-btn button .round .more-btn {
    display: block;
    width: 34px;
    height: 34px;
    background: #F3F4F5;
    border-radius: 10px;
}

section.credit-product .choose-credit-product-wrapper .credit-product-btn.active button .round .line {
    background: #FDE47F;
}

section.credit-product .choose-credit-product-wrapper .credit-product-btn button .round .line {
    position: absolute;
    width: 10px;
    height: 3px;
    background-color: #8399AE;
}

section.credit-product .choose-credit-product-wrapper .credit-product-btn button .round .line1 {
    right: 16px;
    transform: rotate(135deg);
    top: 25px;
}

section.credit-product .choose-credit-product-wrapper .credit-product-btn button .round .line2 {
    right: 16px;
    transform: rotate(-135deg);
    top: 19px;
}

section.credit-product .choose-credit-product-wrapper .credit-product-btn .text {
    font-size: 18px;
    line-height: 27px;
    text-align: left;
    color: #8399AE;
    font-weight: 400;

}

section.credit-product .credit-product-desc {
    max-width: 807px;
    width: 100%;
    height: 500px;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px;
}

section.credit-product .credit-product-desc .credit-product {
    overflow: scroll;
    height: 436px;
    overflow-x: hidden;
    padding-right: 24px;
}

section.credit-product .credit-product-desc .credit-product > .name {
    font-size: 28px;
    font-weight: 400;
    line-height: 33.6px;
    text-align: left;
    color: #0B3D91;
    margin-bottom: 32px;
}

section.credit-product .credit-product-desc .credit-product ul {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

section.credit-product .credit-product-desc .credit-product ul li {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

section.credit-product .credit-product-desc .credit-product ul li .text {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    text-align: left;
    color: #4F5D6D;

}

section.credit-product .credit-product-desc .credit-product ul li a {
    font-family: PT Sans, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    text-align: left;
    color: #D39433;
    text-decoration: underline;
}

section.credit-product .credit-product-desc .credit-product ul li .wrapper {
    display: flex;
    gap: 16px;
    align-items: center;
}

section.credit-product .credit-product-desc .credit-product ul li .wrapper .name {
    font-family: PT Sans, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 28.8px;
    text-align: left;
    color: #0B3D91;
}

::-webkit-scrollbar {
    width: 8px;
    background: #F3F4F5;
    border-radius: 8px;
}

::-webkit-scrollbar-thumb {
    background: #8399AE;
    border-radius: 8px;

}
