html {
    -webkit-text-size-adjust: 100%
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%
}

#root {
    position: relative;
    height: 100%
}
.swiper-container {
    min-height: 600px;
}
.rfm-marquee-container {
    overflow-x: hidden;
    display: flex;
    flex-direction: row;
    position: relative;
    width: var(--width);
    transform: var(--transform);
}

.rfm-marquee-container:hover div {
    animation-play-state: var(--pause-on-hover);
}

.rfm-marquee-container:active div {
    animation-play-state: var(--pause-on-click);
}

.rfm-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
}

.rfm-overlay::before,
.rfm-overlay::after {
    background: linear-gradient(to right, var(--gradient-color), transparent);
    content: "";
    height: 100%;
    position: absolute;
    width: var(--gradient-width);
    z-index: 2;
    pointer-events: none;
    touch-action: none;
}

.rfm-overlay::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.rfm-overlay::before {
    left: 0;
    top: 0;
}

.rfm-marquee {
    flex: 0 0 auto;
    min-width: var(--min-width);
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    animation: scroll var(--duration) linear var(--delay) var(--iteration-count);
    animation-play-state: var(--play);
    animation-delay: var(--delay);
    animation-direction: var(--direction);
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.rfm-initial-child-container {
    flex: 0 0 auto;
    display: flex;
    min-width: auto;
    flex-direction: row;
    align-items: center;
}

.rfm-child {
    transform: var(--transform);
}

.fslightbox-absoluted {
    position: absolute;
    top: 0;
    left: 0
}

.fslightbox-fade-in {
    animation: fslightbox-fade-in .25s cubic-bezier(0, 0, .7, 1)
}

.fslightbox-fade-out {
    animation: fslightbox-fade-out .25s ease
}

.fslightbox-fade-in-strong {
    animation: fslightbox-fade-in-strong .25s cubic-bezier(0, 0, .7, 1)
}

.fslightbox-fade-out-strong {
    animation: fslightbox-fade-out-strong .25s ease
}

@keyframes fslightbox-fade-in {
    from {
        opacity: .65
    }

    to {
        opacity: 1
    }
}

@keyframes fslightbox-fade-out {
    from {
        opacity: .35
    }

    to {
        opacity: 0
    }
}

@keyframes fslightbox-fade-in-strong {
    from {
        opacity: .3
    }

    to {
        opacity: 1
    }
}

@keyframes fslightbox-fade-out-strong {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.fslightbox-cursor-grabbing {
    cursor: grabbing
}

.fslightbox-full-dimension {
    width: 100%;
    height: 100%
}

.fslightbox-open {
    overflow: hidden;
    height: 100%
}

.fslightbox-flex-centered {
    display: flex;
    justify-content: center;
    align-items: center
}

.fslightbox-opacity-0 {
    opacity: 0 !important
}

.fslightbox-opacity-1 {
    opacity: 1 !important
}

.fslightbox-scrollbarfix {
    padding-right: 17px
}

.fslightbox-transform-transition {
    transition: transform .3s
}

.fslightbox-container {
    font-family: Arial, sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(30, 30, 30, .9), #000 1810%);
    z-index: 1000000000;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: none;
    -webkit-tap-highlight-color: transparent
}

.fslightbox-container * {
    box-sizing: border-box
}

.fslightbox-svg-path {
    transition: fill .15s ease;
    fill: #ddd
}

.fslightbox-nav {
    height: 45px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.fslightbox-slide-number-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
    font-size: 15px;
    color: #d7d7d7;
    z-index: 0;
    max-width: 55px;
    text-align: left
}

.fslightbox-slash {
    display: block;
    margin: 0 5px;
    width: 1px;
    height: 12px !important;
    transform: rotate(15deg);
    background: #fff
}

.fslightbox-toolbar {
    position: absolute;
    z-index: 3;
    right: 0;
    top: 0;
    height: 100%;
    display: flex;
    background: rgba(35, 35, 35, .65)
}

.fslightbox-toolbar-button {
    height: 100%;
    width: 45px;
    cursor: pointer
}

.fslightbox-toolbar-button:hover .fslightbox-svg-path {
    fill: #fff
}

.fslightbox-slide-btn-container {
    display: flex;
    align-items: center;
    padding: 12px 12px 12px 6px;
    position: absolute;
    top: 50%;
    cursor: pointer;
    z-index: 3;
    transform: translateY(-50%)
}

@media (min-width:476px) {
    .fslightbox-slide-btn-container {
        padding: 22px 22px 22px 6px
    }
}

@media (min-width:768px) {
    .fslightbox-slide-btn-container {
        padding: 30px 30px 30px 6px
    }
}

.fslightbox-slide-btn-container:hover .fslightbox-svg-path {
    fill: #f1f1f1
}

.fslightbox-slide-btn {
    padding: 9px;
    font-size: 26px;
    background: rgba(35, 35, 35, .65)
}

@media (min-width:768px) {
    .fslightbox-slide-btn {
        padding: 10px
    }
}

@media (min-width:1600px) {
    .fslightbox-slide-btn {
        padding: 11px
    }
}

.fslightbox-slide-btn-previous-container {
    left: 0
}

@media (max-width:475.99px) {
    .fslightbox-slide-btn-previous-container {
        padding-left: 3px
    }
}

.fslightbox-slide-btn-next-container {
    right: 0;
    padding-left: 12px;
    padding-right: 3px
}

@media (min-width:476px) {
    .fslightbox-slide-btn-next-container {
        padding-left: 22px
    }
}

@media (min-width:768px) {
    .fslightbox-slide-btn-next-container {
        padding-left: 30px
    }
}

@media (min-width:476px) {
    .fslightbox-slide-btn-next-container {
        padding-right: 6px
    }
}

.fslightbox-down-event-detector {
    position: absolute;
    z-index: 1
}

.fslightbox-slide-swiping-hoverer {
    z-index: 4
}

.fslightboxin {
    font-size: 22px;
    color: #eaebeb;
    margin: auto
}

.fslightboxv {
    object-fit: cover
}

.fslightboxl {
    display: block;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 67px;
    height: 67px
}

.fslightboxl div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 54px;
    height: 54px;
    margin: 6px;
    border: 5px solid;
    border-color: #999 transparent transparent transparent;
    border-radius: 50%;
    animation: fslightboxl 1.2s cubic-bezier(.5, 0, .5, 1) infinite
}

.fslightboxl div:nth-child(1) {
    animation-delay: -.45s
}

.fslightboxl div:nth-child(2) {
    animation-delay: -.3s
}

.fslightboxl div:nth-child(3) {
    animation-delay: -.15s
}

@keyframes fslightboxl {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.fslightboxs {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateZ(0);
    margin: auto;
    backface-visibility: hidden
}

.font-size-12 {
    font-size: 12px
}

.font-size-48 {
    font-size: 48px
}

@media(min-width: 992px) {
    .dropdown-menu-lg-end.show {
        position: absolute;
        inset: 0px 0px auto auto;
        margin: 0px;
        transform: translate3d(0.5px, 40px, 0px)
    }
}

.subheading {
    font-weight: bold
}

@media(max-width: 767px) {
    .subheading {
        font-size: 22px;
        margin-bottom: 24px
    }
    .swiper-container {
        min-height: 400px;
    }
}

@media(min-width: 768px)and (max-width: 1024px) {
    .subheading {
        font-size: 34px;
        margin-bottom: 24px
    }
    .swiper-container {
        min-height: 400px;
    }
    
}

@media(min-width: 1025px)and (max-width: 1199px) {
    .subheading {
        font-size: 44px;
        margin-bottom: 24px
    }
}

@media(min-width: 1200px) {
    .subheading {
        font-size: 64px;
        margin-bottom: 48px
    }
}

.text {
    line-height: 1.3
}

@media(max-width: 767px) {
    .text {
        font-size: 15px
    }
}

@media(min-width: 768px)and (max-width: 1024px) {
    .text {
        font-size: 18px
    }
}

@media(min-width: 1025px)and (max-width: 1199px) {
    .text {
        font-size: 18px
    }
}

@media(min-width: 1200px) {
    .text {
        font-size: 20px
    }
}

.navigation {
    background-color: #0544a5
}

.navigation .navbar-brand {
    display: flex;
    align-items: center
}

.navigation .navbar-brand img {
    height: 100%;
    width: auto;
    max-width: 150px;
}

.navigation .navbar-brand .logo-title {
    margin-left: 16px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase
}

@media(max-width: 639px) {
    .navigation .navbar-brand .logo-title {
        font-size: 22px
    }
}

@media(min-width: 640px) {
    .navigation .navbar-brand .logo-title {
        font-size: 28px
    }
}

.navigation .nav-item {
    padding: 0
}

.navigation .nav-item .nav-link {
    font-size: 20px;
    color: #fff;
    text-decoration: underline
}

.company-carousel {
    background-color: #e3e3e3;
    width: 100vw
}

.company-carousel-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.company-carousel-item {
    display: flex;
    margin: 0 20px;
    padding: 10px 0;
    width: auto
}

.company-carousel-item-logo {
    border-radius: 50%;
    height: 32px;
    width: 32px;
    overflow: hidden;
    background-color: #000
}

.company-carousel-item-logo img {
    display: inline-block;
    height: 32px;
    width: 32px
}

.company-carousel-item-code,
.company-carousel-item-dTitle,
.company-carousel-item-aTitle {
    display: block;
    font-size: 13px;
    color: #838383;
    line-height: 1
}

.company-carousel-item-title,
.company-carousel-item-dValue,
.company-carousel-item-aValue {
    display: block;
    font-size: 13px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #000;
    line-height: 1
}

@media(max-width: 767px) {
    .slider {
        margin: 0px 0 40px
    }
}

@media(min-width: 768px)and (max-width: 1024px) {
    .slider {
        margin: 0px 0 40px
    }
}

@media(min-width: 1025px) {
    .slider {
        margin: 0px 0 100px
    }
}

.slider-item {
    position: relative;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center
}

@media(max-width: 767px) {
    .slider-item {
        height: 400px
    }
}

@media(min-width: 768px)and (max-width: 1024px) {
    .slider-item {
        height: 400px
    }
}

@media(min-width: 1025px) {
    .slider-item {
        height: 600px
    }
}

.slider-item img {
    height: auto;
    width: 100%
}

.slider-item-index {
    position: absolute;
    right: 0;
    bottom: 68px;
    font-size: 110px;
    color: rgba(255, 255, 255, .7);
    line-height: 1
}

@media(max-width: 767px) {
    .slider-item-index {
        display: none
    }
}

.slider-item-text {
    position: relative;
    height: 100%
}

.slider-item-text__title {
    font-weight: bold;
    color: #fff;
    line-height: 1.1
}

@media(max-width: 767px) {
    .slider-item-text__title {
        margin-top: 30px;
        font-size: 20px
    }
}

@media(min-width: 768px)and (max-width: 1024px) {
    .slider-item-text__title {
        margin-top: 50px;
        font-size: 32px
    }
}

@media(min-width: 1025px)and (max-width: 1199px) {
    .slider-item-text__title {
        margin-top: 100px;
        font-size: 44px
    }
}

@media(min-width: 1200px)and (max-width: 1399px) {
    .slider-item-text__title {
        margin-top: 100px;
        font-size: 46px
    }
}

@media(min-width: 1400px) {
    .slider-item-text__title {
        margin-top: 100px;
        font-size: 51px
    }
}

.slider-item-text__description {
    color: #fff;
    width: 100%
}

@media(max-width: 767px) {
    .slider-item-text__description {
        font-size: 13px
    }
}

@media(min-width: 1025px)and (max-width: 1199px) {
    .slider-item-text__description {
        font-size: 20px
    }
}

@media(min-width: 1200px)and (max-width: 1399px) {
    .slider-item-text__description {
        font-size: 20px
    }
}

@media(min-width: 1400px) {
    .slider-item-text__description {
        font-size: 24px
    }
}

.slider-item-text__author {
    margin-top: 20px;
    padding-left: 20px;
    color: #fff
}

@media(max-width: 767px) {
    .slider-item-text__author {
        font-size: 13px
    }
}

@media(min-width: 768px) {
    .slider-item-text__author {
        font-size: 16px
    }
}

@media(max-width: 767px) {
    .slider-item-1 {
        background-position: right center
    }
}

@media(max-width: 767px) {
    .slider-item-1-text {
        background-color: rgba(0, 0, 0, .5)
    }
}

@media(max-width: 767px) {
    .slider-item-1-text .slider-item-text__title {
        margin-bottom: 25px;
        width: 100%
    }
}

@media(min-width: 768px)and (max-width: 1024px) {
    .slider-item-1-text .slider-item-text__title {
        margin-bottom: 30px;
        width: 70%
    }
}

@media(min-width: 1025px) {
    .slider-item-1-text .slider-item-text__title {
        margin-bottom: 50px;
        width: 60%
    }
}

@media(max-width: 767px) {
    .slider-item-1-text .slider-item-text__description {
        width: 100%
    }
}

@media(min-width: 768px)and (max-width: 1024px) {
    .slider-item-1-text .slider-item-text__description {
        width: 70%
    }
}

@media(min-width: 1025px) {
    .slider-item-1-text .slider-item-text__description {
        width: 48%
    }
}

@media(min-width: 1200px) {
    .slider-item-2 {
        background-position: left center;
        background-size: 120%
    }
}

@media(max-width: 767px) {
    .slider-item-2-text {
        background-color: rgba(0, 0, 0, .5)
    }
}

.slider-item-2-text .slider-item-text__title {
    margin-bottom: 25px
}

@media(max-width: 767px) {
    .slider-item-2-text .slider-item-text__title {
        width: 100%
    }
}

@media(min-width: 768px)and (max-width: 1024px) {
    .slider-item-2-text .slider-item-text__title {
        width: 80%
    }
}

@media(min-width: 1025px) {
    .slider-item-2-text .slider-item-text__title {
        width: 59%
    }
}

@media(max-width: 767px) {
    .slider-item-2-text .slider-item-text__description {
        width: 100%
    }
}

@media(min-width: 768px) {
    .slider-item-2-text .slider-item-text__description {
        width: 65%
    }
}

@media(max-width: 767px) {
    .slider-item-3 {
        background-position: center
    }
}

@media(min-width: 1200px) {
    .slider-item-3 {
        background-size: 120%
    }
}

@media(max-width: 767px) {
    .slider-item-3-text {
        background-color: rgba(0, 0, 0, .5)
    }
}

.slider-item-3-text .slider-item-text__title {
    margin-bottom: 25px
}

@media(max-width: 767px) {
    .slider-item-3-text .slider-item-text__title {
        width: 100%
    }
}

@media(min-width: 768px)and (max-width: 1024px) {
    .slider-item-3-text .slider-item-text__title {
        width: 80%
    }
}

@media(min-width: 1025px) {
    .slider-item-3-text .slider-item-text__title {
        width: 60%
    }
}

@media(max-width: 767px) {
    .slider-item-3-text .slider-item-text__description {
        width: 100%
    }
}

@media(min-width: 768px)and (max-width: 1024px) {
    .slider-item-3-text .slider-item-text__description {
        width: 80%
    }
}

@media(min-width: 1025px) {
    .slider-item-3-text .slider-item-text__description {
        width: 50%
    }
}

@media(max-width: 767px) {
    .slider-item-4 {
        background-position: right center
    }
}

@media(min-width: 768px) {
    .slider-item-4 {
        background-position: left center;
        background-size: 150%
    }
}

@media(max-width: 767px) {
    .slider-item-4-text {
        background-color: rgba(0, 0, 0, .5)
    }
}

@media(max-width: 767px) {
    .slider-item-4-text .slider-item-text__title {
        margin-bottom: 20px;
        width: 100%
    }
}

@media(min-width: 768px)and (max-width: 1024px) {
    .slider-item-4-text .slider-item-text__title {
        margin-bottom: 15px;
        width: 100%
    }
}

@media(min-width: 1025px) {
    .slider-item-4-text .slider-item-text__title {
        margin-bottom: 25px;
        width: 80%
    }
}

@media(max-width: 767px) {
    .slider-item-4-text .slider-item-text__description {
        width: 100%
    }
}

@media(min-width: 768px)and (max-width: 1024px) {
    .slider-item-4-text .slider-item-text__description {
        width: 100%
    }
}

@media(min-width: 1025px) {
    .slider-item-4-text .slider-item-text__description {
        font-size: 20px;
        width: 70%
    }
}

.swiper-custom-pagination {
    margin-top: -100px;
    position: relative;
    z-index: 99
}

.swiper-pagination-bullet {
    height: 16px;
    width: 16px;
    background-color: rgba(255, 255, 255, .4);
    opacity: 1
}

.swiper-pagination-bullet:not(:last-child) {
    margin-right: 20px
}

.swiper-pagination-bullet-active {
    background-color: #fb3159
}

@media(max-width: 767px) {
    .catalog {
        margin: 20px 0 40px
    }
}

@media(min-width: 768px)and (max-width: 1024px) {
    .catalog {
        margin: 20px 0 40px
    }
}

@media(min-width: 1025px) {
    .catalog {
        margin: 20px 0 100px
    }
}

@media(max-width: 1024px) {
    .program:not(:last-child) {
        margin-bottom: 40px
    }
}

@media(min-width: 1025px) {
    .program:not(:last-child) {
        margin-bottom: 80px
    }
}

.program__logo {
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, .1);
    height: 68px;
    width: 68px;
    background-color: #fff;
    overflow: hidden
}

.program__logo img {
    display: block;
    height: 100%;
    width: 100%;
    background-color: #fff
}

@media(max-width: 1024px) {

    .program__code,
    .program__title,
    .program__description,
    .program__value-title,
    .program__value,
    .program__price {
        font-size: 14px
    }
}

@media(min-width: 1025px)and (max-width: 1199px) {

    .program__code,
    .program__title,
    .program__description,
    .program__value-title,
    .program__value,
    .program__price {
        font-size: 16px
    }
}

@media(min-width: 1200px) {

    .program__code,
    .program__title,
    .program__description,
    .program__value-title,
    .program__value,
    .program__price {
        font-size: 18px
    }
}

.program__code {
    color: #0544a5;
    line-height: 1
}

.program__title,
.program__price {
    font-weight: bold
}

.program__description {
    color: #838383
}

.program__value-title {
    color: rgba(0, 0, 0, .3)
}

.program__value {
    color: #000;
    font-weight: bold
}

.calculator {
    padding: 16px;
    border-radius: 12px;
    background-color: #f0f0f0
}

.calculator__input-money,
.calculator__period,
.calculator__get-money {
    margin-bottom: 10px;
    display: block;
    color: #838383
}

@media(max-width: 1024px) {

    .calculator__input-money,
    .calculator__period,
    .calculator__get-money {
        font-size: 15px
    }
}

@media(min-width: 1025px) {

    .calculator__input-money,
    .calculator__period,
    .calculator__get-money {
        font-size: 20px
    }
}

.calculator__input-value {
    margin-bottom: 10px;
    display: block;
    font-weight: bold;
    line-height: 1
}

@media(max-width: 1024px) {
    .calculator__input-value {
        font-size: 18px
    }
}

@media(min-width: 1025px)and (max-width: 1199px) {
    .calculator__input-value {
        font-size: 24px
    }
}

@media(min-width: 1200px)and (max-width: 1399px) {
    .calculator__input-value {
        font-size: 28px
    }
}

@media(min-width: 1400px) {
    .calculator__input-value {
        font-size: 32px
    }
}

.calculator__rangeDot {
    border-radius: 50%;
    height: 16px;
    width: 16px;
    background-color: #0544a5
}

.calculator__rangeLine {
    height: 6px;
    width: 100%
}

.calculator__timer {
    margin-top: 10px;
    font-size: 17px;
    font-weight: 500;
    text-align: center
}

.calculator__info {
    color: rgba(0, 0, 0, .4)
}

@media(max-width: 1024px) {
    .calculator__info {
        font-size: 14px
    }
}

.timer {
    font-weight: bold;
    line-height: 1
}

.action-button {
    display: block;
    border: none;
    border-radius: 12px;
    box-shadow: none;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    background-color: #0544a5;
    text-decoration: none;
    text-align: center;
    outline: none;
    height: 68px;
    line-height: 68px;
    width: 100%;
    white-space: nowrap;
    user-select: none
}

.action-button:hover {
    background-color: #053d95;
    outline: none;
    text-decoration: none
}

.action-button:focus {
    outline: none;
    text-decoration: none
}

.action-button:active {
    background-color: #043684;
    outline: none;
    text-decoration: none
}

@media(max-width: 767px) {
    .partners {
        margin: 20px 0 40px
    }
}

@media(min-width: 768px)and (max-width: 1024px) {
    .partners {
        margin: 20px 0 40px
    }
}

@media(min-width: 1025px) {
    .partners {
        margin: 20px 0 100px
    }
}

.partners__item-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px
}

.partners__item-img img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto
}

.partners__item-title {
    margin-top: 30px;
    text-align: center
}

.tasks__item:not(:last-child) {
    margin-bottom: 30px
}

.tasks__text {
    margin-top: -2px
}

@media(max-width: 767px) {
    .faq {
        margin: 20px 0 40px
    }
}

@media(min-width: 768px)and (max-width: 1024px) {
    .faq {
        margin: 20px 0 40px
    }
}

@media(min-width: 1025px) {
    .faq {
        margin: 20px 0 100px
    }
}

.faq__q {
    margin-left: 20px;
    font-weight: bold
}

.faq .accordion-item {
    position: relative;
    border: none
}

.faq .accordion-item:not(:last-child) {
    margin-bottom: 15px
}

.faq .accordion-item:after {
    position: absolute;
    left: 64px;
    right: 0;
    bottom: 0;
    content: "";
    height: 1px;
    background: rgba(0, 0, 0, .4)
}

.faq .accordion-body {
    padding-top: 0;
    padding-left: 64px
}

.faq .accordion-header {
    background: none
}

.faq .accordion-header .accordion-button {
    padding: 0 0 15px;
    background: none;
    border: none;
    box-shadow: none;
    color: #000
}

.faq .accordion-header .accordion-button:not(.collapsed) {
    color: #000
}

.faq .accordion-header .accordion-button:focus,
.faq .accordion-header .accordion-button:active {
    outline: none;
    background: none;
    border: none;
    box-shadow: none
}

.faq .accordion-header .accordion-button:after {
    display: none;
    content: none
}

@media(max-width: 767px) {
    .licenses {
        margin: 20px 0 40px
    }
}

@media(min-width: 768px)and (max-width: 1024px) {
    .licenses {
        margin: 20px 0 40px
    }
}

@media(min-width: 1025px) {
    .licenses {
        margin: 20px 0 100px
    }
}

.licenses__item img {
    line-height: 0;
    height: auto;
    width: 100%
}

.licenses__item-title {
    margin-top: 20px;
    text-align: center
}

.licenses__item-description {
    font-size: 13px;
    text-align: center
}

.howInvest__item:not(:last-child) {
    margin-bottom: 30px
}

.howInvest__text {
    margin-top: -2px
}

.invest-form {
    position: relative;
    height: 100%;
    border-radius: 12px;
    background-color: #f0f0f0
}

.invest-form--submitted {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    font-weight: bold
}

.invest-form .form--loading {
    border-radius: 12px;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, .3);
    display: flex;
    align-items: center;
    justify-content: center
}

@media(max-width: 767px) {
    .invest-form {
        padding: 20px 15px
    }
}

@media(min-width: 768px) {
    .invest-form {
        padding: 30px
    }
}

.invest-form__registered {
    display: block;
    border-radius: 6px;
    padding: 14px 5px;
    border: 1px solid rgba(39, 123, 101, .5);
    color: #277b65;
    margin-top: 25px;
    text-align: center
}

.invest-form .form-control {
    height: 60px
}

.circle-index {
    display: inline-block;
    border-radius: 50%;
    text-align: center;
    height: 44px;
    width: 44px;
    font-size: 20px;
    font-weight: bold;
    line-height: 44px
}

.circle-index--type-blue {
    color: #fff;
    background-color: #0544a5
}

.circle-index--type-light {
    color: #0544a5;
    background-color: #e6f5f9
}

.circle-index--type-collapsed {
    border: 1px solid #e6f5f9;
    color: rgba(0, 0, 0, .4);
    background: none;
    line-height: 41px
}

.footer {
    padding: 12px 0;
    height: auto
}

.footer .navbar-brand {
    height: 50px
}

.footer .logo-title {
    font-size: 24px !important
}

.footer__info {
    font-size: 14px;
    color: #fff
}

.footer__info a {
    color: #fff;
    text-decoration: underline
}

.footer__info a:hover {
    color: #e6ecf6;
    text-decoration: underline
}

.footer__info a:focus {
    color: #e6ecf6;
    outline: none
}

.custom-panel {
    border-radius: 12px
}

@media(max-width: 767px) {
    .custom-panel {
        margin: 20px 0 40px
    }
}

@media(min-width: 768px)and (max-width: 1024px) {
    .custom-panel {
        margin: 20px 0 40px
    }
}

@media(min-width: 1025px) {
    .custom-panel {
        margin: 20px 0 100px
    }
}

@media(max-width: 767px) {
    .custom-panel {
        padding: 20px 20px
    }
}

@media(min-width: 768px)and (max-width: 1024px) {
    .custom-panel {
        padding: 40px 30px
    }
}

@media(min-width: 1025px) {
    .custom-panel {
        padding: 60px 40px
    }
}

.custom-panel--1 {
    background-color: #bdd4f7
}

.custom-panel--2 {
    background-color: #e6ecf6
}
