
body {
    background: #2b2b2b;
}
/* start of homepage new styles */
.home-main-animation-div {
    max-width: 480px;
    max-height: 480px;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0;
    content: "";
    background: url(/assets/img/ar_ic_white_down.svg) no-repeat top center;
    width: 12px;
    height: 8px;
    border: none;
    transition: 0.5s;
    opacity: 0.4;
}

.dropdown-toggle:hover::after {
    opacity: 1;
}

.dropdown-toggle:active:not(:hover)::after,
.dropdown-toggle:focus:not(:hover)::after {
    opacity: 0.7;
}


.dropdown-menu.show {
    background: var(--dropdown-bg);
    box-shadow: 0 4px 8px rgba(40, 41, 61, 0.16), 0 20px 32px rgba(96, 97, 112, 0.27);
    border-radius: 8px;
    padding: 0;
    position: relative;
    width: max-content;
    margin: 0 auto;
}

.dropdown-menu.show .triangle {
    width: 0;
    height: 0;
    border-bottom: 8px solid var(--dropdown-bg);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    margin: -8px 0 0 123px;
}

.dropdown-divider {
    height: 1px;
    margin: 0 auto;
    overflow: hidden;
    border-top: var(--border-small);
    color: inherit;
    background-color: rgba(255, 255, 255, 0.1);
    opacity: 1;
    width: 80%;
}

.dropdown-item.dropdown-item-a {
    padding: 16px;
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 500;
    font-size: 1rem;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: var(--main-color);
    cursor: pointer;
    text-align: center;
    margin: 0;
}

.dropdown-item.dropdown-item-a:hover {
    background: var(--dropdown-hover-bg);
}

.dropdown-menu-li:nth-child(2) .dropdown-item-a {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.dropdown-menu-li:last-child .dropdown-item-a {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.theme-toggle-div {
    width: 50px;
    height: 24px;
    position: relative;
    display: flex;
    background: #ffffff;
    border: 1px solid #222222;
    border-radius: 60px;
    justify-content: space-between;
    align-items: center;
    padding: 0 6px 0 4px;
    margin: 0 0 0 24px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.theme-toggle-img {
    width: 21px;
    height: 21px;
}

.theme-toggle-img.moon {
    width: 15px;
    height: 12px;
}

.theme-toggle-ellipse {
    position: absolute;
    right: 0;
    width: 22px;
    height: 22px;
    background: #222222;
    border-radius: 50%;
    border: 1px solid #ffffff;
}

.theme-toggle-div.theme-toggle-div-dark {
    background: #222222;
    border: 1px solid #ffffff;
}

.theme-toggle-div-dark .theme-toggle-ellipse {
    background: #ffffff;
    left: 0;
    border: 1px solid #222222;
}

.marquee-item-div {
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: var(--main-color);
}

.color-grey {
    color: gray;
    display: block;
    margin-left: 16px;
}

.color-red {
    color: #cf3737;
}

.color-green {
    color: #30bb3e;
}

.marquee-currency-div {
    color: #fff;
    display: flex;
}

.marquee-currency-img {
    margin: auto 8px;
}

.marquee-item {
    display: flex;
    margin-right: 38px;
    flex: 0 0 max-content;
    width: 268px;
}

.marquee-item:last-child {
    margin-right: 0;
}

.marquee-item-div-price {
    width: 57px;
}

.marquee-item-div-change {
    width: 65px;
    display: block;
    margin-left: 10px;
}

.marquee-inner {
    display: flex;
    height: 24px;
    overflow: hidden;
    max-width: 1600px;
    margin: 0 auto;
}

.marquee-inner-first, .marquee-inner-second {
    width: max-content;
    display: flex;
    animation: marquee 30s linear infinite;
}

.marquee-inner:hover .marquee-inner-first,
.marquee-inner:hover .marquee-inner-second {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* end of homepage new styles */

/* start of cabinet banners page */
.cabinet-banners-div {
    padding: 24px;
}

.banners-input-button-group {
    grid-template-columns: 1fr;
    grid-gap: 8px 0;
}

.banners-p {
    font-weight: 400;
    font-size: 15px;
}

.calculator-input-group .select2-selection.select2-selection--single {
    padding: 12px;
}

.calculator-input-group .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.01em;
}

/* end of cabinet banners page */

/* start calculator styles */
.calculator-div {
    background: var(--card-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    border: var(--border);
}

.calculator-div-header {
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0.01em;
    color: #fff;
}

.calculator-input-group {
    padding: 16px 55px 32px 55px;
}

.calculator-label {
    display: block;
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 325;
    font-size: 13px;
    line-height: 20px;
    color: var(--main-color-07);
}

.calculator-input-group .select2.select2-container.select2-container--default {
    width: 100% !important;
}

.calculator-input-group .select2-selection.select2-selection--single {
    background: var(--input-bg);
    border: var(--input-border);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 8px !important;
    padding: 13px;
    display: block;
    width: 100%;
    height: 100% !important;
    margin: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: inherit !important;
    cursor: default;
}

.calculator-input-group .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: var(--main-color);
    padding-left: 0;
}

.calculator-input-group .select2-container--default .select2-selection--single .select2-selection__arrow {
    position: absolute;
    top: 30%;
    right: 10px;
    height: 20px;
    width: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 23px;
    background-image: url(/assets/img/svg/selectArrow.svg);
    filter: var(--image-filter);
}

.calculator-input-group .select2-dropdown.select2-dropdown--below {
    background: #464749;
    box-shadow: 0 4px 8px rgba(40, 41, 61, 0.16), 0 20px 32px rgba(96, 97, 112, 0.27);
    border-radius: 8px;
    border: none;
}

.select2-container .select2-dropdown {
    border: none;
    background: var(--select-dropdown-bg);
    border-radius: 8px !important;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(40, 41, 61, 0.16), 0 20px 32px rgba(96, 97, 112, 0.27);
}

.select2-container .select2-search--dropdown {
    padding: 0;
    border: none;
    border-radius: 8px !important;
}

.select2-container.select2-container--default .select2-search--dropdown .select2-search__field {
    backdrop-filter: blur(17.5px);
    -webkit-backdrop-filter: blur(17.5px);
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 325;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.01em;
    color: var(--main-color-04);
    outline: 0;
    padding: 12px 0 12px 43px;
    border: none;
    border-radius: 8px 8px 0 0 !important;
    border-bottom: var(--border-small);
    background-size: 1em;
    background: var(--search-image) no-repeat 12px center, linear-gradient(110.72deg, rgba(255, 255, 255, 0.12) 1.21%, rgba(196, 196, 196, 0.02) 100%);
}

.select2-container.select2-container--default .select2-search--dropdown .select2-search__field::placeholder {
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 325;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.01em;
    color: var(--placeholder-color);

}

.select2-container.select2-container--default .select2-results > .select2-results__options {
    background: linear-gradient(110.72deg, rgba(255, 255, 255, 0.12) 1.21%, rgba(196, 196, 196, 0.02) 100%);
    backdrop-filter: blur(17.5px);
    -webkit-backdrop-filter: blur(17.5px);
    max-height: 100px;
    border-radius: 0 0 8px 8px !important;
}

.select2-container.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar {
    width: 12px;
}

.select2-container.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 0 0 9px 0;
}

.select2-container.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-thumb {
    background: var(--scrollbar-thumb-bg);
    border-radius: 9px;
    border: var(--scrollbar-thumb-border);
}

.new-scrollbar::-webkit-scrollbar {
    width: 16px;
}

.new-scrollbar::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 0 0 9px 0;
}

.new-scrollbar::-webkit-scrollbar-thumb {
    background: var(--scrollbar-thumb-bg);
    border-radius: 9px;
    border: var(--scrollbar-thumb-border);
}

.select2-container .select2-results__option {
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 325;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.01em;
    color: var(--main-color);
    padding: 2px 16px;
}

.select2-container.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: rgba(23, 149, 114, 0.4);
}

.select2-container.select2-container--default .select2-results__option--selected {
    background: rgba(23, 149, 114, 0.5);
}

.calculator-input {
    background: var(--input-bg);
    border: var(--input-border);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 8px;
    padding: 13px;
    display: block;
    width: 100%;
    margin: 10px 0 0 0;
    outline: 0;
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: var(--main-color);
}

.calculator-button {
    width: 60%;
    margin: 32px auto 0 auto;
    border-radius: 14px;
}

.calculator-p-sum {
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 600;
    font-size: 52px;
    line-height: 63px;
    letter-spacing: 0.01em;
    color: var(--main-color);
    opacity: 0.1;
    text-align: center;
    margin: 120px auto;
}

.calculated-p-sum {
    opacity: 1;
}

/* end calculator styles */

/* start of cabinet banners page */
.cabinet-banners-div {
    padding: 24px;
}

.banners-input-button-group {
    grid-template-columns: 1fr;
    grid-gap: 8px 0;
}

.banners-p {
    font-weight: 400;
    font-size: 15px;
}

.calculator-input-group .select2-selection.select2-selection--single {
    padding: 12px;
}

.calculator-input-group .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.01em;
}

/* end of cabinet banners page */












body {
    font-family: 'Montserrat', Arial, serif;
    background: linear-gradient(87.43deg, #333333, #0d0d0d), #202020;
}

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

.nav-dropdown-item {
    color: black !important;
    text-align: center;
}

.error svg {
    width: 100% !important;
}

.second_div {
    background: linear-gradient(110.72deg, rgba(255, 255, 255, 0.12) 1.21%, rgba(196, 196, 196, 0.06) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 16px;
    /*height: 84px;
overflow: hidden;*/
}

.second_div:hover {
    background: linear-gradient(110.72deg, rgba(255, 255, 255, 0.36) 1.21%, rgba(196, 196, 196, 0.06) 100%);
    background-blend-mode: overlay, normal;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 16px;
}

.back_image {
    position: absolute;
    width: 194px;
    height: 194px;
    left: 887px;
    top: 25px;
    background: url(../img/img_bg_home_01.png);
    transform: matrix(-1, 0, 0, 1, 0, 0);
}

.back_image_partnerprogram {
    position: absolute;
    width: 194px;
    height: 194px;
    left: 887px;
    top: 70px;
    background: url(../img/mike.png);
    transform: matrix(-1, 0, 0, 1, 0, 0);
}

.about_card p {
    color: rgba(255, 255, 255, 0.7);
}

.letterbox {
    position: absolute;
    width: 98px;
    height: 92px;
    left: 1078px;
    top: 140px;
    background: url(../img/letterbox.png);
    transform: matrix(-1, 0, 0, 1, 0, 0);
}

.telephone {
    position: absolute;
    width: 121px;
    height: 112px;
    left: 200px;
    top: 770px;
    background: url(../img/telephone.png);
    transform: matrix(-1, 0, 0, 1, 0, 0);
}

.home_image_5 {
    position: absolute;
    width: 164px;
    height: 207px;
    left: 1738px;
    top: 563%;

}

.home_image_4 {
    position: absolute;
    width: 194px;
    height: 194px;
    left: -80px;
    bottom: -85px;
    background: url(../img/img_bg_home_04.png);
}

.home_image_3 {
    position: absolute;
    width: 250px;
    height: 250px;
    left: 1190px;
    top: 960px;

    background: url(../img/img_bg_home_03.png);
    filter: blur(10px);
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4 {
    font-weight: 700;
    color: #092032;
}

.bigHeader_38_50 {
    font-family: 'Montserrat', 'Arial', serif;
    font-style: normal;
    font-weight: 600;
    font-size: 38px;
    line-height: 50px;
    letter-spacing: 0.01em;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.bigHeader_20_24 {
    font-family: 'Montserrat', 'Arial', serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: #ffffff;
}

.paragrap {
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 34px;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.7);
}

.about_text p {
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    padding: 5px 0;
}

.bg-cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

img {
    width: 100%;
}

a {
    color: white;
    transition: all 0.4s ease;
    font-weight: 500;
}

a:hover {
    color: #ff4d29;
}

section {
    padding-top: 28px;
    padding-bottom: 35px;
}

.text-brand {
    color: #ff4d29 !important;
}

.about_text {
    padding-top: 18%;
    margin-top: auto;
    width: 100%;
    height: auto;
    color: white;
}

.why_rebate_div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 56px;
    height: 272px;
    color: white;
    background: linear-gradient(110.72deg, rgba(255, 255, 255, 0.12) 1.21%, rgba(196, 196, 196, 0.06) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 16px;
}

.about_img img {
    /* width: 100%; */
    width: 480px;
    position: relative;
}

.first_div {
    border-radius: 12px;
    margin: 10px;
    padding: 10px;
    /* border: 1px solid; */
    background: linear-gradient(110.72deg, rgba(255, 255, 255, 0.12) 1.21%, rgba(196, 196, 196, 0.06) 100%);
}

.third_div {
    border-radius: 12px;
    margin: 10px;
    padding: 10px;
    /* border: 1px solid; */
    background-image: linear-gradient(110.72deg, rgba(255, 255, 255, 0.12) 28%, rgba(60, 68, 90, 1) 100%);
}

.thirdsection li {
    color: white;
    border: none !important;
    background: transparent;
}

.about_text h5 {
    color: #5b65bd;
    font-size: 18px;
    font-family: monospace;
    padding: 0;
    margin: 0;
    text-transform: uppercase;
}

.about_text h3 span {
    font-weight: 100;
}

.about_btn {
    margin: 30px 0 0 0;
    padding: 0;
}

.about_btn a {
    font-family: monospace;
    background: linear-gradient(to right, #fbc007, #fccc35, #fdd863);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 16px;
    margin: 0;
    transition: 0.9s;
    position: relative;
}

.about_btn a:hover {
    color: #ffffff;
    border: 1px solid #fbc006;
    background: #5b73f9;
    box-shadow: inset 0 100px 0 0 #5b73f9;
    transition: 0.9s;
}

.hero-slider .owl-prev,
.hero-slider .owl-next {
    background-color: rgba(255, 255, 255, 0.3) !important;
    width: 60px !important;
    height: 60px !important;
    display: grid;
    place-items: center;
    color: #ffffff !important;
    line-height: 0;
    border-radius: 100px !important;
    position: absolute;
    top: 50%;
    font-weight: 600 !important;
    font-size: 12px !important;
    transition: all 0.4s ease;
    margin-top: -30px !important;
}

.owl-prev {
    left: 0;
}

.owl-next {
    right: 0;
}

.hero-slider .owl-prev:hover,
.hero-slider .owl-next:hover {
    background-color: #ff4d29 !important;
}

.owl-dot.active span {
    background-color: #ff4d29 !important;
}

/* navbar */
.top-nav {
    background-color: #ff4d29;
    color: #ffffff;
    padding-top: 5px;
    padding-bottom: 5px;
}

.top-nav p {
    display: inline-block;
    margin-bottom: 0;
    margin-right: 10px;
}

.top-nav span,
.top-nav i {
    vertical-align: middle;
}

.navbar {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
    /* background-color: #3C445A !important; */
    background: linear-gradient(110.72deg, rgba(255, 255, 255, 0.12) 1.21%, rgba(196, 196, 196, 0.02) 100%) !important;
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    height: 120px;
    z-index: 1050;
}

.nav-item a {
    font-family: 'Montserrat', 'Arial', serif;
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.4);
    margin-right: 5px;
    text-align: center;
}

.nav_link_readmore {
    /* backdrop-filter: blur(24px);
-webkit-backdrop-filter: blur(24px); */
    /* border-radius: 8px; */
    text-decoration: none;
    color: #ffffff66;
}


.social-icons a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    align-items: center;
    justify-content: center;
    border-radius: 100px;

}

.social-icons a:hover {
    background-color: #ffffff;
    color: #ff4d29;
}

.navbar .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.4);
}


.v-img {
    position: absolute;
    width: 38%;
    height: 103px;
    left: 31%;
    margin-top: 10%;
    /* top: 130.04px; */
    /* border: 2px dashed rgba(255, 255, 255, 0.4); */
    /* transform: matrix(-0.99, 0.13, 0.13, 0.99, 0, 0); */
}

.navbar .navbar-nav .nav-link:hover {
    color: #f9f8f8;
}

.navbar .navbar-nav .nav-link.active {
    font-family: 'Montserrat', 'Arial', serif;
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.02em;
    color: #ffffff;
}

.navbar-brand {
    font-size: 28px;
    font-weight: 700;
}

.navbar-brand .dot {
    color: #ff4d29;
}

.btn {
    padding: 8px 26px;
}

.btn-brand {
    border-color: #ff4d29;
    background-color: #ff4d29;
    color: #ffffff;
}

.btn-brand:hover {
    background-color: #d64022;
    border-color: #d64022;
    color: #ffffff;
}

.intro {
    /*margin-bottom: 36px;*/
    text-align: center;
}

.intro h6 {
    color: #ff4d29;
    font-weight: 400;
    text-transform: uppercase;
}

.intro h1 {
    margin-top: 15px;
    /*margin-bottom: 56px;*/
    /*color: white;*/
}

.info-box {
    align-items: center;
    display: flex;
}

.info-box img {
    width: 90px;
}

.project {
    text-align: center;
    color: white;
    background: transparent;
}

.project h5 {
    margin-top: 32px;
    margin-bottom: 12px;
    /*color: white;*/
}

.service {
    padding: 32px;
    background-color: #ffffff;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
}

.sservis h5 {
    margin-top: 28px;
    margin-bottom: 16px;
    font-family: 'Montserrat', 'Arial', serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: #ffffff;
}


.sservis p {
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 28px;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.7);

}


.first_div img {
    width: 42%;
}

.third_div img {
    width: 20%;
}

.second_div img {
    width: 20%;
}

.sservis {
    text-align: left;
    color: white;
    margin: 10px;
    padding: 19px;
    min-height: 100%;
    border: 2px solid transparent;
}

.sservis:hover {
    background: linear-gradient(110.72deg, rgba(255, 255, 255, 0.36) 1.21%, rgba(196, 196, 196, 0.06) 100%);
    background-blend-mode: overlay, normal;
    border: 2px solid gray;
    /*backdrop-filter: blur(24px);
-webkit-backdrop-filter: blur(24px);*/
}


.project {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.project h6 {
    font-weight: 400;
}

.project h6::before {
    content: "";
    height: 2px;
    width: 30px;
    display: inline-block;
    background: #ff4d29;
    vertical-align: middle;
    margin-right: 10px;
}


.project .overlay {
    width: 100%;
    height: 220px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(255, 76, 41, 0) 0%, #092032 100%);
}

.project .content {
    position: absolute;
    left: 10%;
    bottom: 10%
}

.project h2,
.project h6 {
    color: #ffffff;
}

.team-member {
    text-align: center;
}

.team-member .image {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.team-member .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: -10%;
    background-color: rgba(255, 77, 41, 0.7);
    opacity: 0;
    transition: all 0.4s ease;
}

.team-member h5 {
    margin-top: 16px;
    margin-bottom: 4px;
}

.team-member .social-icons {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 0;
    transition: all 0.4s ease;
}

.team-member .social-icons a {
    width: 40px;
    height: 40px;
}

.team-member:hover .social-icons {
    top: 50%;
    opacity: 1;
}

.team-member:hover .overlay {
    top: 0;
    opacity: 1;
}

#reviews {
    background: linear-gradient(-90deg, rgba(8, 32, 50, 0.8), rgba(8, 32, 50, 0.8)), url(../img/bg_banner1.jpg), #082032;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.review {
    text-align: center;
    z-index: 2;
    position: relative;
    /* max-width: 768px; */
    margin: auto auto 2rem auto;
}

.review .bxs-quote-alt-left {
    font-size: 120px;
    position: absolute;
    opacity: 0.1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
}

.review img {
    width: 80px !important;
    height: 80px;
    border-radius: 100px;
    margin: auto;
}

.review h5 {
    margin-top: 16px;
    margin-bottom: 4px;
    color: #ffffff;
}

.review h3 {
    margin-top: 26px;
    /*margin-bottom: 26px;*/
}

.review small {
    color: #ff4d29;
}

.review .stars {
    color: #ff4d29;
}

.blog-post {
    position: relative;
    background-color: #ffffff;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
}

.blog-post .content {
    padding: 32px;
}

.blog-post a {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #ff4d29;
    padding: 2px 12px;
    border-radius: 100px;
    text-decoration: none;
    color: #ffffff;
}

.blog-post h5 {
    margin-top: 12px;
    margin-bottom: 12px;
}

.blog-post small {
    text-transform: uppercase;
    color: #ff4d29;
    text-decoration: underline;
}

footer {
    background: linear-gradient(110.72deg, #494949, #151515);
}

footer .footer-top {
    padding-top: 56px;
    padding-bottom: 40px;
}

.footer-bottom {
    padding: 24px;
    background: linear-gradient(110.72deg, #737373, #232323);
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    margin: 0 0;
}

footer .navbar-brand {
    color: #ffffff;
}

footer p {
    color: #adb3b9;
}

footer .social-icons a {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-left: 4px;
    margin-right: 4px;
}

.loader {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: red;
    z-index: 99999;
    position: fixed;
    left: 0;
    right: 0;
}

input.form-control {
    border-color: transparent;
    height: 44px;
}

.form-control {
    background-color: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.04);;
}

.form-control:focus {
    box-shadow: none;
    border-color: #ff4d29;
}

.form-holder {
    /*display: flex;*/
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /*min-height: 100vh;*/
}

.form-holder .form-content {
    position: relative;
    text-align: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 60px;
}

.form-content .form-items {
    /*border: 1px solid #fff;*/
    background: linear-gradient(110.72deg, rgba(255, 255, 255, 0.36) 1.21%, rgba(196, 196, 196, 0.06) 100%);
    background-blend-mode: overlay, normal;
    backdrop-filter: blur(77px);
    -webkit-backdrop-filter: blur(77px);
    padding: 40px;
    display: inline-block;
    width: 100%;
    min-width: 540px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
    text-align: left;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.form-content h3 {
    color: #ffffff;
    text-align: left;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 5px;
}

.form-content h3.form-title {
    margin-bottom: 30px;
}

.form-content p {
    font-family: 'Montserrat', Arial, serif;
    color: #ffffff;
    text-align: left;
    font-size: 17px;
    font-weight: 400;
    line-height: 28px;
}

.form-check {
    padding-left: 0 !important;
}

.btn-primary {
    background-color: #6c757d;
    outline: none;
    border: 0;
    box-shadow: none;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    /*background-color: #495056;*/
    background: linear-gradient(110.72deg, rgba(255, 255, 255, 0.36) 1.21%, rgba(196, 196, 196, 0.06) 100%);
    outline: none !important;
    border: none !important;
    box-shadow: none;
}

.mv-up {
    margin-top: -9px !important;
    margin-bottom: 8px !important;
}

.invalid-feedback {
    color: #ff606e;
}

.valid-feedback {
    color: #2acc80;
}

.form_but {
    width: 56px;
    height: 56px;
    margin-top: -56px;
    background: linear-gradient(110.72deg, rgba(255, 255, 255, 0.12) 1.21%, rgba(196, 196, 196, 0.06) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    /*backdrop-filter: blur(24px);
-webkit-backdrop-filter: blur(24px);*/
    border-radius: 8px;
    position: relative;
    float: left;
    z-index: 1;
    color: white;
}

.container .icon {
    position: relative;
    float: left;
    margin-left: 10px;
    margin-top: -30px;
    z-index: 2;
    color: #222222;
}

.form-content-input {
    background: rgba(174, 192, 236, 0.07);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    /*backdrop-filter: blur(24px);
-webkit-backdrop-filter: blur(24px);*/
    border-radius: 8px;
    height: 56px;
    width: 100%;
    /*padding: 9px 20px;*/
    padding-top: 9px;
    padding-bottom: 9px;
    padding-left: 40px;
    text-align: left;
    font-size: 15px;
    font-weight: 300;
    color: white;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-top: 5px;
}

/* Custom style */
.accordion-button::after {
    background-image: url('../img/Vector 9.svg');
    transform: scale(.7) !important;
    color: white;
}

.accordion-button:not(.collapsed)::after {
    background-image: url('../img/Vector 8.svg');
}

.accordion-button.collapsed {
    color: white;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 16px !important;
    height: 88px;
    font-size: 20px;
    font-family: 'Montserrat', 'Arial', serif;
}

.accordion-item {
    background: linear-gradient(110.72deg, rgba(255, 255, 255, 0.12) 1.21%, rgba(196, 196, 196, 0.06) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 16px !important;
}

.accordion-button:focus {
    /* z-index: 3;*/
    border-color: transparent;
    box-shadow: none;
    /*color: white;*/
    /*height: 88px;*/
    /*border-radius: 16px !important;*/
}

.accordion-button {
    /*border-radius: 16px;*/
    height: 88px;
    background: linear-gradient(110.72deg, rgba(255, 255, 255, 0.12) 1.21%, rgba(196, 196, 196, 0.06) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.accordion-button:not(.collapsed) {
    color: white;
    background: transparent;
    font-size: 20px;
    font-family: 'Montserrat', 'Arial', serif;
}

.accordion-item {
    /*background: linear-gradient(110.72deg, rgba(255, 255, 255, 0.36) 1.21%, rgba(196, 196, 196, 0.06) 100%);*/
    /*background-blend-mode: overlay, normal;*/
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 16px;
    border: none;
}

.accordion-body {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    font-family: 'Montserrat regular', Arial, serif;
}

.accordion-button:hover {
    background: linear-gradient(110.72deg, rgba(255, 255, 255, 0.36) 1.21%, rgba(196, 196, 196, 0.06) 100%);
    background-blend-mode: overlay, normal;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.faqsearch {
    background: rgba(174, 192, 236, 0.07);
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 14px;

}

/*contact page*/

.form-content .form-items2 {
    /*border: 1px solid #fff;*/
    background: linear-gradient(110.72deg, rgba(255, 255, 255, 0.36) 1.21%, rgba(196, 196, 196, 0.06) 100%);
    background-blend-mode: overlay, normal;
    /*backdrop-filter: blur(76.67px);
-webkit-backdrop-filter: blur(76.67px);*/
    padding: 40px;
    display: inline-block;
    width: 70%;
    /*min-width: 540px;*/
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    text-align: left;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.contact input[type=range] {
    background: rgba(174, 192, 236, 0.07);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 8px;
    height: 56px;
    width: 80%;
    padding-top: 9px;
    padding-bottom: 9px;
    padding-left: 2px;
    text-align: left;
    font-size: 15px;
    font-weight: 300;
    color: white;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.contact input[type=text],
.contact input[type=password],
.contact input[type=email] {
    background: rgba(174, 192, 236, 0.07);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 8px;
    height: 56px;
    width: 80%;
    /*padding: 9px 20px;*/
    padding-top: 9px;
    padding-bottom: 9px;
    padding-left: 40px;
    text-align: left;
    font-size: 15px;
    font-weight: 300;
    color: white;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.contact-number2 {
    width: 100%;
    /*background-color: red;*/
    margin: 10px;
    padding: 5px;
}

/*register*/
.form-content .form-items3 {
    background: linear-gradient(110.72deg, rgba(255, 255, 255, 0.36) 1.21%, rgba(196, 196, 196, 0.06) 100%);
    background-blend-mode: overlay, normal;
    backdrop-filter: blur(77px);
    -webkit-backdrop-filter: blur(77px);
    padding: 40px;
    display: inline-block;
    width: 85%;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
    text-align: left;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.table-row {
    background: linear-gradient(110.72deg, rgba(255, 255, 255, 0.12) 1.21%, rgba(196, 196, 196, 0.02) 100%);
    font-family: 'Montserrat', 'Arial', serif;
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0.01em;
    border-radius: 8px;
    margin: -35px 25px 32px 25px;
    padding: 16px;
    color: #ffffffb2;
}

.table1 tr {
    border-style: hidden;
}

.currency-font {
    font-family: 'Montserrat', 'Arial', serif;
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #ffffff;
}

.register_model {
    line-height: normal;
}

.stats {
    padding: 56px 0;
    background: rgba(174, 192, 236, 0.14);
    backdrop-filter: blur(77px);
    -webkit-backdrop-filter: blur(77px);
}

.counter-count {
    font-family: 'Montserrat', 'Arial', serif;
    font-weight: 600;
    font-size: 38px;
    color: #ffffff;
}

.counter,
.counter p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    padding-right: 10px;
}

.counter p {
    margin-bottom: 0;
}

.scroll-text {
    font-family: 'Montserrat', 'Arial', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 24px;
    margin-bottom: 10px;
}

.counter span {
    color: #ffffff;
    font-weight: 600;
    font-size: 38px;
}

.header_lang {
    font-family: 'Montserrat', 'Arial', serif;
    font-style: normal;
    font-weight: 600;
    font-size: 52px;
    line-height: 63px;
    letter-spacing: 0.01em;
    color: #ffffff;
}

.form-content .form-items4 {
    display: inline-block;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    text-align: left;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    color: #ffffff;
}

.m16 {
    margin-right: 16px;
}

.conversion {
    margin-bottom: 24px;
}

.counter p {
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 28px;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.7);
}


.owl-carousel span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #666d81 !important;
    display: block;
    -webkit-backface-visibility: visible;
    -webkit-transition: opacity 200ms ease;
    -moz-transition: opacity 200ms ease;
    -ms-transition: opacity 200ms ease;
    -o-transition: opacity 200ms ease;
    transition: opacity 200ms ease;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

.owl-carousel .active span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #ffffff !important;
    display: block;
    -webkit-backface-visibility: visible;
    -webkit-transition: opacity 200ms ease;
    -moz-transition: opacity 200ms ease;
    -ms-transition: opacity 200ms ease;
    -o-transition: opacity 200ms ease;
    transition: opacity 200ms ease;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}


.footerp {
    font-family: 'Montserrat', 'Arial', serif;
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    display: block;
    margin-bottom: 16px;
}

.ac_body_nav {
    margin-top: 8px;
    margin-left: 8px;
    /*margin-right: 8px;*/
    padding: 5px;
    height: 56px;
    border-radius: 8px;
    color: white;
}

.ac_body_nav h5 {
    margin-top: 10px;
    font-family: 'Montserrat', 'Arial', serif;
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: #ffffff;
}

.ac_body_nav:hover {
    background: linear-gradient(110.72deg, rgba(255, 255, 255, 0.36) 1.21%, rgba(196, 196, 196, 0.06) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 8px;
}

.bigHeader {
    font-family: 'Montserrat', 'Arial', serif;
    font-style: normal;
    font-weight: 600;
    font-size: 52px;
    line-height: 63px;
    letter-spacing: 0.01em;
    color: #ffffff;
}


.banner_header_font {
    font-family: 'Montserrat', 'Arial', serif;
    font-style: normal;
    font-weight: 600;
    font-size: 38px;
    line-height: 50px;
    /*text-align: center;*/
    letter-spacing: 0.01em;
    color: #ffffff;
    z-index: 1;
    position: relative;
}

.banner_padding {
    width: fit-content;
    margin-top: 50px;
    margin-right: 35px;

}

/*for contact*/
.contact_submit {
    height: 56px;
    color: white;
    font-size: 17px;
    border: 2px solid #ffffff30;
    background: linear-gradient(110.72deg, rgba(255, 255, 255, 0.36) 1.21%, rgba(196, 196, 196, 0.06) 100%);
    border-radius: 8px;
    background-origin: border-box;
    background-size: cover;
    font-family: 'Montserrat', 'Arial', serif;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.01em;
}

.contect_form_slid_dev {
    margin-bottom: 20px;
    text-align: -webkit-center;
}

.contact_form {
    margin-bottom: -42px;
    float: right;
    margin-top: 55px;
    border: 2px solid #ffffff30;
}

.contact_form h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.banner_paragrap {
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 28px;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.7);
}

.contact_uppen_para:hover {
    color: white;
}

.contact_form img {
    width: 25px;
    height: 25px;
    margin-top: -90px;
    margin-left: 10px;
}

.button-all {
    height: 56px;
    color: white;
    font-size: 17px;
    background: linear-gradient(110.72deg, rgba(255, 255, 255, 0.36) 1.21%, rgba(196, 196, 196, 0.06) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-family: 'Montserrat', 'Arial', serif;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.01em;
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    cursor: pointer;
}

.button-all:hover {
    color: white;
    background: linear-gradient(110.72deg, rgba(255, 255, 255, 0.36) 1.21%, rgba(255, 255, 255, 0.18) 100%);
}

.button-all:active,
.button-all:focus {
    background: rgba(174, 192, 236, 0.14);
}

.button-all:disabled {
    background: rgba(174, 192, 236, 0.14);
    color: rgba(255, 255, 255, 0.14)
}

.last_login a {
    display: inline;
    text-decoration: none;
    font-family: 'Montserrat', 'Arial', serif;
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.4);
    margin-right: 24px;
}

.last_login {
    margin-top: 24px;
    margin-bottom: -30px;
    text-align: center;
}

/*footer css*/
.footer-top, .footer-bottom {
    /*background: linear-gradient(87.43deg, rgba(0, 0, 0, 0.8) 6.69%, #000000 127.87%), #FFFFFF;*/
}

.footer_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer_upper {
    width: 53px;
    height: 56px;
}

.footer_upper_right {
    display: flex;
    align-items: center;
}

.footer_upper_right h3 {
    display: inline-block;
    color: white;
    font-family: 'Montserrat', 'Arial', serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.01em;
    margin-top: 8px;
}

.footer_upper_right .link-without-styles {
    margin-left: 20px;
}

.footer_top-img {
    display: flex;
}

.foot_left_p {
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 24px;
    display: flex;
    align-items: flex-end;
    color: #ffffff;
    text-align: left;
}

.foot_left_bottom_p {
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.4);
    text-align: left;
}

.footer_heading {
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: white;
    margin-bottom: 26px;
}

.footer_bottom {
    display: flex;
    justify-content: space-between;
}

.footer_info {
    width: 65%;
    display: flex;
    justify-content: space-between;
}

.copyright {
    background: linear-gradient(110.72deg, rgba(255, 255, 255, 0.36) 1.21%, rgba(19, 19, 19, 0.8) 100%);
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
}

.copyright p {
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.4);
}

.footer_hr {
    color: #ffffff1a;
    margin: 24px 10px;
    height: 2px;
}

.footer_map {
    width: 30%;
}

.footer_instaforex {
    color: white;
    margin-bottom: 160px;
}

/*.footer_top .footer-img {*/
/*    width: 120px;*/
/*    height: 40px;*/
/*}*/

.footer-top .footer-img.img2 {
    width: 135px;
}

.link-without-styles {
    text-decoration: none;
    color: inherit;
    text-align: inherit;
    /*display: block;*/
    font-weight: inherit;
    transition: none;
    width: max-content;
    height: max-content;
}

/*about section*/
.about_card {
    padding: 36px;
    height: 340px;
}

.about_card img {
    width: 72px;
}

.about_img_div {
    margin: 10px;
    text-align: right;
}

.about_first {
    margin-top: 50px;
}

.about_img_2 img {
    text-align: right;
}

.about_2 {
    overflow: hidden;
    display: flex;
    z-index: 1;
}

.padding_top_10 {
    padding-top: 10px;
}

.padding_top_20 {
    padding-top: 20px;
}

.about22 {
    margin-top: 40px;
    margin-bottom: 40px;
}

.about33 {
    overflow: hidden;
    display: flex;
    position: relative;
    z-index: 1;
}

.rev1 {
    text-align: center;
    margin: 45px 45px 56px;
}

.about-stars-div .sservis {
    cursor: pointer;
}

.social_picture {
    display: flex;
    min-height: 90px;
}

.social_picture img {
    margin: 5px;
    padding: 5px;
    border-radius: 0;
}

.social_picture .social_text {
    margin: -20px 5px 5px;
    text-align: left;
}

.social_text p {
    font-size: 13px;
    color: #ffffff66;
}

.owl-stage {
    display: flex;
}

.about-carousel {
    height: 100%;
    width: 90%;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 16px;
    padding: 32px;
    margin: 0 auto;
}

.about-carousel:hover {
    background: linear-gradient(110.72deg, rgba(255, 255, 255, 0.36) 1.21%, rgba(196, 196, 196, 0.06) 100%);
    background-blend-mode: overlay, normal;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 16px;
}

.about-carousel img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
}

.about-carousel .paragrap {
    margin-top: 24px;
    margin-bottom: 0;
}

.rev_name {
    margin: -20px 5px 5px;
}

.slid2 li {
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 28px;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.7);
}

.slid2 {
    margin-top: 20px;
    color: #ffffffb2;
    font-size: 17px;
    line-height: 28px;
    letter-spacing: 0.01em;
}

/* exchange table css*/
.table1 {
    background: linear-gradient(95deg, #72727299 1.21%, #23232399 100%);
    background-blend-mode: overlay, normal;
    backdrop-filter: blur(76.67px);
    -webkit-backdrop-filter: blur(76.67px);
    border-radius: 32px;
    color: white;
    border: none;
    border-collapse: inherit;
}

.tableheadvalue {
    margin: 25px;
    padding: 20px;
}

.tablevalue {
    display: flex;
}

.tablevalue .first_img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    margin-left: -20px;
}

.tablevalue .second_img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    z-index: -1111;
    margin-left: -20px;
}

.arrow_img {
    width: 17px;
    height: 16px;
}

.table-row1 {
    border-radius: 8px;
    margin-top: -35px;
    margin-right: 25px;
    margin-bottom: 25px;
    margin-left: -25px !important;
}

.table-row2 {
    border-radius: 8px;
    margin-top: -35px;
    margin-right: 25px;
    margin-bottom: 25px;
    margin-left: -25px !important;
}

.exchange_color_red {
    text-align: left;
    color: #cf3737;
}

.exchange_color_green {
    text-align: left;
    color: #30bb3e;
}

/*css for review*/
.review_head {
    text-align: center;
    margin: 15px;
}

.review_head h1 {
    margin-bottom: 56px;
}

.avater_details p {
    margin-top: 5px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0;
    line-height: 19px;
}

.review_dev {
    /*border-bottom:1px solid #FFFFFF1A;*/
}

.review_dev p {
    color: rgba(255, 255, 255, 0.7);
}

.review_date {
    display: flow-root;
    margin-top: 16px;
}

.review_date .paragrap {
    color: #ffffff66;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
}

/*css for faq*/
.faq_header {
    text-align: center;
}

.faq_header h1 {
    text-align: center;
    margin-bottom: 56px;
}

.faq_search {
    margin-top: 40px;
    margin-bottom: 56px;
}

/*css for home*/
.home_first_para {
    padding-top: 5%;
}

.home_first_para p {
    padding-top: 12px;
    padding-bottom: 12px;
}

.home-button {
    display: flex;
    flex: none;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: linear-gradient(110.72deg, rgba(255, 255, 255, 0.36) 1.21%, rgba(196, 196, 196, 0.06) 100%);
    border-radius: 14px;
    width: 253px;
    height: 72px;
    margin-top: 48px;
    color: white;
    font-size: 20px;
    text-underline: none;
    font-family: 'Montserrat', 'Arial', serif;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.02em;
}

.about_img2 {
    margin: 10px;
}

.about_img {
    padding: 0;
    margin: 0;
    width: 100%;
    /* height: 480px;    */
}

.home_img {
    float: right;
}

.home_sec_2_text {
    padding-top: 16%;
}

.home_sec_2_text .sec1 {
    padding-top: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.home_sec_2_text .sec2 {
    padding-top: 16px;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.4);;
}

.hade_para {
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.4);
}

.project {
    margin: 0;
}

.project p {
    font-weight: 400;
    font-size: 17px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.7);
}

.margin_bottom_56 {
    margin-bottom: 56px;
}

.project a {
    text-decoration: none;
    color: #ffffff66;
    font-family: 'Montserrat', 'Arial', serif;
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
}

.padding-top-20 {
    padding-top: 20px
}

.padding_top_5 {
    padding-top: 5px;
}

.home_img_34 {
    margin: 10px;
    /*margin-left: 56px;*/
}

/*css for how it works*/
.hiw1 {
    margin-top: 2%;
    font-size: 20px;
    font-weight: 400;
    line-height: 34px;
    color: rgba(255, 255, 255, 0.4);
}


.hiw_img {
    margin: 10px;
    text-align: right;
}

.hiw22 {
    overflow: hidden;
    display: flex;
    flex-direction: column-reverse;
}

.hiw22 p {
    font-weight: 400;
    font-size: 17px;
    line-height: 28px;
    letter-spacing: 0.01em;
    margin-bottom: 0;
}

.how_it_work_button {
    text-decoration: none;
    color: #ffffff66;
    font-family: 'Montserrat', 'Arial', serif;
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
}

.why_rebate_div p {
    font-family: 'Montserrat', 'Arial', serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0.01em;
    color: #ffffff;
    margin-top: 32px
}

/*css for partner program*/
.about_text .partner_pro_top_p {
    color: rgba(255, 255, 255, 0.4);
    margin-top: 2%;
    font-size: 20px;
    font-weight: 400;
    line-height: 34px;
}

.pp_top {
    margin: 10px;
    text-align: right;
}

.pp_v_img {
    position: absolute;
    width: 42%;
    height: 64.2px;
    left: 31%;
    margin-top: 10%;
}

.pp_cont_from {
    margin-bottom: 0 !important;
}

.reg_sen {
    margin-left: -25px;
}

.div_decor {

    margin: 5px;
}

.reg_icon_img {
    width: 16px;
    height: 11px;
    margin-right: 5px;
}

.why_banner_paragrap {
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 34px;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.4);
}

.home_image_2 {
    position: absolute;
    left: -5%;
    top: -40%;
    height: 160px;
    width: 160px;
    z-index: -1;

}

.why_rebate_button {
    font-family: 'Montserrat', 'Arial', serif;
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0.01em;
}


.nav_second_margin_left {
    margin-top: 5px;
    margin-right: 0;
    margin-left: auto;
}

.nav_user_pic {
    width: 20px;
    height: 20px;
    margin-right: 4px;
}

.nav_register_button {
    display: inline;
    margin-right: 3px;
}


.div_max_width {
    max-width: 1040px;
}

.mod_back_trans {
    border: 0;
    background: transparent;
}

.mod_border_0 {
    border-bottom: 0;
}

.mar_gin_right {
    margin-right: -120px;
}

.mar_gin_right_30 {
    margin-right: -130px;
}

.display_flow_root {
    display: flow-root;
}

.margin_top_40 {
    margin-top: 40px;
}

.margin_top_150 {
    margin-top: 150px;
}

.margin_top_80 {
    margin-top: 80px;
}

.margin_top_65 {
    margin-top: -65px;
}

.margin_top_32 {
    margin-top: 32px;
}

.margin_top_20 {
    margin-top: 20px;
}

.padding_top_12 {
    padding-top: 12px;
}

.padding_top_8 {
    padding-top: 8%;
}

.padding_top_10 {
    padding-top: 10%;
}

.padding_top_5 {
    padding-top: 5%;
}

.margin_re_40 {
    margin-top: -40px;
}

.height_500 {
    height: 500px;
}

.margin_bottom_100 {
    margin-bottom: 100px;
}

.rev_name p {
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.4);
}

.border_1Px_solid {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about_mid {
    margin-top: 40px;
    margin-bottom: 40px;
}

.navbar-toggler {
    display: none;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler .navbar-toggler-icon {
    background: center / 24px no-repeat url("/assets/img/svg/menu.svg");
}

.navbar-toggler.mobile-close-button .navbar-toggler-icon {
    background: center / 24px no-repeat url("/assets/img/svg/close.svg");
}

.navbar-toggler.mobile-close-button .navbar-toggler-icon {
    background: center / 24px no-repeat url("/assets/img/svg/close.svg");
}

.rebate-service {
    display: flex;
}

.rebate-service .rebate-service-first-sec {
    width: 50%;
}

.rebate-service .rebate-service-second-sec {
    width: 50%;
}

/* start of ui-input */
.ui-input {
    background-color: rgba(174, 192, 236, 0.07);
    border: 2px solid rgba(255, 255, 255, 0.1);
    /*backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);*/
    border-radius: 8px;
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: #ffffff;
    padding: 16px;
    outline: none;
    width: 100%;
    margin-top: 8px;
    transition: border 0.5s, color 0.2s;
}

.ui-input::placeholder {
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.4);
}

.ui-input:not(:active):not(:focus):hover {
    background-color: rgba(174, 192, 236, 0.14);
}

.ui-input:active,
.ui-input:focus,
.ui-input:valid {
    background-color: rgba(174, 192, 236, 0.07);
}

.ui-input:active,
.ui-input:focus {
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.ui-input:disabled {
    background-color: rgba(174, 192, 236, 0.07);
    border: 2px solid rgba(255, 255, 255, 0.14);
}

.ui-input:-webkit-autofill,
.ui-input:-webkit-autofill:hover,
.ui-input:-webkit-autofill:active,
.ui-input:-webkit-autofill:focus {
    background-image: url('/assets/img/lockicon_form.svg') !important;
    -webkit-text-fill-color: #ffffff;
    -webkit-background-clip: text !important;
}

.ui-label {
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    /*line-height: 20px;*/
    color: rgba(255, 255, 255, 0.7);
}

.ui-label-check {
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
}

.login-input {
    background-image: url('/assets/img/user_contact.svg');
    background-repeat: no-repeat;
    background-position: 16px center;
    padding-left: 50px;
}

.password-input {
    background-image: url('/assets/img/lockicon_form.svg');
    background-repeat: no-repeat;
    background-position: 16px center;
    padding-left: 50px;
}

.email-input {
    background-image: url('/assets/img/email-input.svg');
    background-repeat: no-repeat;
    background-position: 16px center;
    padding-left: 50px;
}

.phone-label {
    margin-bottom: 9px;
}

.phone-input {
    padding-left: 87px !important;
}

.theme-input {
    background-image: url('/assets/img/comments_contacts.svg');
    background-repeat: no-repeat;
    background-position: 16px center;
    padding-left: 50px;
}

.range-input-div {
    text-align: -webkit-center;
    position: relative;
    z-index: 0;
}

.slider-p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    width: max-content;
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 325;
    font-size: 17px;
    line-height: 28px;
    text-align: center;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.7);
}

.range-input {
    display: block;
    background: linear-gradient(110.72deg, rgba(255, 255, 255, 0.12) 1.21%, rgba(196, 196, 196, 0.06) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-right: 2px solid #474848;
    box-sizing: border-box;
    /*backdrop-filter: blur(24px);
-webkit-backdrop-filter: blur(24px);*/
    border-radius: 8px;
    height: 56px;
    width: 100%;
    outline: none;
    transition: all 450ms ease-in, background-color 0s linear;
    -webkit-appearance: none;
    z-index: 1;
}

.range-input:hover:not(:active):not(:focus) {
    background: rgba(174, 192, 236, 0.14);
}

.range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 56px;
    height: 56px;
    background-image: url('/i/img/getrebate/slider_button.svg');
    cursor: pointer;
    z-index: 1;
    border-radius: 8px;
}

.range-input-half {
    border-left: 2px solid rgba(28, 234, 49, 0.36);
}

.range-input-half:hover:not(:active):not(:focus) {
    background: inherit;
}

.range-input-half::-webkit-slider-thumb {
    background-color: #224525;
}

.range-input-done {
    border-left: 2px solid rgba(28, 234, 49, 0.36);
    /*border-right: none;*/
    background: linear-gradient(110.72deg, rgba(28, 234, 49, 0.36) 1.21%, rgba(28, 234, 49, 0.06) 100%);
    transition: border 0s linear;
}

.range-input-done:hover:not(:active):not(:focus) {
    background: linear-gradient(110.72deg, rgba(28, 234, 49, 0.36) 1.21%, rgba(28, 234, 49, 0.06) 100%);
}

.range-input-done::-webkit-slider-thumb {
    background-image: url('/i/img/getrebate/slider_button_done.svg');
}

.form-input-country-div .iti.iti--allow-dropdown {
    width: 100%;
}

.form-input-country-div .iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background: transparent !important;
}

.form-input-country-div .iti__arrow {
    border: none;
    width: 12px;
    height: 100%;
    background: url("/assets/img/ar_ic_white_down.svg") no-repeat center center;
    background-size: 10px 6px;
    margin-left: 8px;
    margin-right: 8px;
    opacity: 0.4;
}

.form-input-country-div .iti__arrow.iti__arrow--up {
    background: url("/assets/img/ar_ic_white_up.svg") no-repeat center center;
    background-size: 10px 6px;
}

.form-input-country-div .iti__selected-flag {
    padding-left: 16px;
    border-right: 2px solid rgba(255, 255, 255, 0.1);
}

.form-input-country-div .iti__country-list {
    background: #464749;
    border: 2px solid #ffffff10;
    border-radius: 8px;
}

.form-input-country-div .iti__country-list::-webkit-scrollbar {
    width: 12px;
}

.form-input-country-div .iti__country-list::-webkit-scrollbar-track {
    background: rgba(65, 66, 68, 0.7);
    border-radius: 0 0 9px 0;
}

.form-input-country-div .iti__country-list::-webkit-scrollbar-thumb {
    background: rgba(129, 130, 131, 0.8);
    border-radius: 9px;
    border: 2px solid rgba(65, 66, 68, 1);
}

.form-input-country-div .iti__country-name {
    color: white;
}

.ui-radio-container {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    align-items: center;
}

.ui-radio-label {
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 325;
    font-size: 13px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.4);
}

.ui-radio:checked ~ .ui-radio-label {
    color: #ffffff;
}

.ui-radio-container .ui-radio {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.ui-radio-container .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border: 1px solid #ffffff40;
    border-radius: 50%;
}

.ui-radio-container:hover .ui-radio ~ .checkmark,
.ui-radio-container .ui-radio:checked ~ .checkmark {
    border: 1px solid #ffffff;
}

.ui-radio-container .checkmark:after {
    display: none;
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff40;
}

.ui-radio-container .ui-radio:checked ~ .checkmark:after {
    display: block;
    background: #ffffff;
}

/* end of ui-input */

/* start of ui-textarea */
.ui-textarea {
    min-height: 112px;
    background: rgba(174, 192, 236, 0.07);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: #ffffff;
    padding: 16px;
    outline: none;
    width: 100%;
    margin-top: 8px;
    transition: border 0.5s, color 0.2s;
}

.ui-textarea:not(:active):not(:focus):hover {
    background-color: rgba(174, 192, 236, 0.14);
}

.ui-textarea:active,
.ui-textarea:focus,
.ui-textarea:valid {
    background-color: rgba(174, 192, 236, 0.07);
}

.ui-textarea:active,
.ui-textarea:focus {
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.ui-textarea:disabled {
    background-color: rgba(174, 192, 236, 0.07);
    border: 2px solid rgba(255, 255, 255, 0.14);
}

/* end of ui-textarea */

.input-with-error-div {
    position: relative;
}

.invalid-input {
    border: 2px solid #cf3737 !important;
}

.invalid-input:focus {
    border: 2px solid #cf3737 !important;
}

.invalid-input:active:focus {
    border: 2px solid #cf3737 !important;
}

.input-error {
    margin-bottom: 0.5rem;
    max-width: fit-content;
    position: absolute;
    z-index: 1500;
}

.position-relative {
    position: relative;
}

.input-error .triangle {
    width: 0;
    height: 0;
    border-bottom: 8px solid rgba(120, 120, 120, 0.8);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    margin-left: 2rem;
}

.input-error .text-error {
    border-radius: 8px;
    font-family: 'Montserrat', 'Arial', serif;
    font-style: normal;
    font-weight: 500;
    font-size: 12pt;
    padding: 1rem;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: #ffffff;
    text-align: left;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    background: rgba(120, 120, 120, 1);
    z-index: 1500;
    max-width: 460px;
}

.input-error .text-error span {
    font-style: normal;
    font-weight: 400;
    font-size: 10pt;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.7);
}

#search-input-group {
    height: 4rem;
    background: rgba(174, 192, 236, 0.07);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 2px solid transparent;
    border-radius: 14px;
}

#search-input-group:hover {
    background: rgba(174, 192, 236, 0.14);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

#search-input-group:focus:active {
    background: rgba(174, 192, 236, 0.07);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

#input-to-search {
    color: white;
    height: 100%;
    font-size: 1.5rem;
    font-family: 'Montserrat', 'Arial', serif;
    padding: 8px 8px 8px 40px;
    background: url('/assets/img/svg/searchToInput.svg') no-repeat 10px center;
    border: none;
}

#search-clear-button {
    background: url('/assets/img/svg/clearToInput.svg') no-repeat center;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.4);
}

#search-button {
    font-size: 1.2rem;
    font-family: 'Montserrat', 'Arial', serif;
    color: white;
    height: 80%;
    margin: auto 4px auto auto;
    background: linear-gradient(110.72deg, rgba(255, 255, 255, 0.36) 1.21%, rgba(196, 196, 196, 0.06) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 8px;
}

.search-words {
    font-weight: bold;
    display: contents;
}

.statistic-active {
    background: linear-gradient(110.72deg, rgba(255, 255, 255, 0.36) 1.21%, rgba(196, 196, 196, 0.06) 100%) !important;
    background-blend-mode: overlay, normal !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    border: 2px solid gray !important;
    border-radius: 16px !important;
}

.statistic-title-active {
    background: linear-gradient(110.72deg, rgba(255, 255, 255, 0.36) 1.21%, rgba(196, 196, 196, 0.06) 100%) !important;
    border-radius: 8px !important;
    border: 2px solid gray;
    color: white !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.link-red {
    color: #ff4d29;
    display: contents;
}

.commission-types {
    background: linear-gradient(110.72deg, rgba(255, 255, 255, 0.12) 1.21%, rgba(196, 196, 196, 0.06) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 14px;
}

.commission-types-url {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Montserrat', 'Arial', serif;
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0.01em;
    transition: none;
}

.commission-types-sec {
    text-align: center;
    display: flex;
    align-items: center;
    flex: 1;
    padding: 16px 0;
    justify-content: center;
}

.cabinet-example-div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 56px;
    color: white;
    background: linear-gradient(110.72deg, rgba(255, 255, 255, 0.12) 1.21%, rgba(196, 196, 196, 0.06) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 16px;
}

.cabinet-example-div-title {
    display: flex;
    align-items: center;
    width: 20rem;
    margin-bottom: 1rem;
}

.cabinet-example-div-title-img {
    display: block;
    width: 36px;
    float: left;
}

.cabinet-example-div-title-text {
    width: 18rem;
    float: right;
    padding-left: 0.5rem;
    font-family: 'Montserrat', 'Arial', serif;
    font-style: normal;
    font-weight: 600;
    font-size: 2rem;
    line-height: 2rem;
    letter-spacing: 0.01em;
    color: #ffffff;
}

.cabinet-example-div-header {
    font-family: 'Montserrat', 'Arial', serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0.01em;
    color: #ffffff;
    margin-top: 2rem;
}

.cabinet-example-div-p {
    font-family: 'Montserrat', 'Arial', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 12pt;
    line-height: 28px;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1.5rem;
    margin-bottom: 0;
    word-wrap: break-word;
    width: 100%;
}

.cabinet-div-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    color: white;
    background: linear-gradient(110.72deg, rgba(255, 255, 255, 0.12) 1.21%, rgba(196, 196, 196, 0.06) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 16px;
    width: 100%;
}

.banners-input-button-group {
    display: grid;
    align-items: end;
    grid-template-columns: 1fr min-content;
    grid-gap: 0 8px;
    margin-bottom: 20px;
}

.banners-input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0 8px;
}

.cabinet-banners-div {
    padding: 32px;
}

.banners-img-div {
    width: 100%;
    height: 250px;
    overflow: hidden;
    display: grid;
    justify-content: center;
    align-items: center;
    border: 1px solid #c4c4c4;
    border-radius: 16px;
}

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

.banners-link-img {
    width: 24px;
    height: 24px;
}

.banners-p {
    margin-left: 4px;
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.4);
}

.banners-show-link {
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    padding: 0;
}

.mail-notifications .about_text {
    padding-top: 100px;
}

.mail-notifications .cabinet-div-block {
    padding: 25px 33px 44px 33px;
    margin-top: 22px;
}

.mail-notifications .register-checkbox + label::before {
    margin-right: 22px;
}

.mail-notifications .ui-label-check {
    font-size: 1rem;
}

.cabinet-about-div {
    padding: 10rem 0 0 3rem;
}

.cabinet-about-div-header {
    font-family: 'Montserrat', 'Arial', serif;
    font-style: normal;
    font-weight: 600;
    font-size: 38px;
    line-height: 50px;
    letter-spacing: 0.01em;
    color: #ffffff;
    padding-bottom: 1rem;
}

.cabinet-about-div-p {
    font-family: 'Montserrat', 'Arial', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 28px;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.7);
}

/* begin cabinet input group */
.cabinet-input-group {
    display: flex;
    position: relative;
    margin: 0 0 32px 0;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.cabinet-input-group-label {
    font-family: 'Montserrat', 'Arial', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 1rem;
    display: flex;
    flex-wrap: wrap;
}

.cabinet-input-group-date {
    margin-top: 0.5rem;
    padding: 13px;
    width: 14.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Montserrat', 'Arial', serif;
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0.01em;
    background: rgba(174, 192, 236, 0.07);
    border: 2px solid rgba(255, 255, 255, 0.1);
    outline: none;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 8px;
}

.cabinet-input-group-date::-webkit-calendar-picker-indicator {
    background-image: url(/assets/img/svg/calendar.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 120%;
}

.cabinet-input-group-select {
    margin-top: 0.5rem;
    padding: 13px 0 13px 16px;
    flex: 1 1 38rem;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Montserrat', 'Arial', serif;
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0.01em;
    border: 2px solid rgba(255, 255, 255, 0.1);
    outline: none;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 8px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: rgba(174, 192, 236, 0.07) url("/assets/img/svg/selectArrow.svg") no-repeat 98% center;
    background-size: 1.3em;
}

.background-user-contact {
    padding: 13px 0 13px 40px;
    background-repeat: no-repeat;
    background-position: 2% center, 98% center;
    background-size: 1.3em;
    background-image: url(/assets/img/user_contact.svg), url(/assets/img/svg/selectArrow.svg);
}

.cabinet-input-group-select::-ms-expand {
    display: none;
}

.cabinet-input-group-option {
    color: white;
    background-color: rgb(78, 78, 78);
    font-size: 1rem;
}

.cabinet-input-group-filter {
    padding: 13px 15px;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0.01em;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.cabinet-input-group-submit {
    padding: 13px 32px;
    color: white;
    font-family: 'Montserrat', 'Arial', serif;
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0.01em;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-top: auto;
}

/* end cabinet input group */

.cabinet-chart {
    width: 100%;
    font-family: 'Montserrat', 'Arial', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    padding: 1rem 0 0 0;
}

.chart-toolbar-icons {
    margin-left: 0.5rem;
}

.cabinet-chart .apexcharts-title-text {
    font-family: 'Montserrat', 'Arial', serif !important;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0.01em;
    fill: #ffffff;
}

.cabinet-chart .apexcharts-toolbar {
    right: 0 !important;
    background: #333333;
    padding: 0 12px 7px 0;
}

.cabinet-chart .apexcharts-legend.apx-legend-position-bottom.apexcharts-align-center {
    padding-top: 1.5rem;
}

.cabinet-chart .apexcharts-text #SvgjsTspan1295 {
    display: none;
}

.cabinet-chart .apexcharts-yaxis-label,
.cabinet-chart .apexcharts-xaxis-label {
    font-family: 'Montserrat', 'Arial', serif !important;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
}

.cabinet-chart .apexcharts-legend-marker {
    margin-right: 1.2rem;
    margin-left: 1.5rem;
}

.cabinet-chart .apexcharts-menu {
    background: #00000060;
    position: absolute;
    top: 100%;
    border: 1px solid #dddddd40;
    border-radius: 3px;
    padding: 3px;
    right: 10px;
    min-width: 110px;
}

.cabinet-chart .apexcharts-menu .apexcharts-menu-item:hover {
    background: #ffffff40;
}

.cabinet-div-table {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 30px 30px 30px;
    color: white;
    background: linear-gradient(110.72deg, rgba(255, 255, 255, 0.12) 1.21%, rgba(196, 196, 196, 0.06) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 16px;
    width: 100%;
    overflow-x: auto;
}

.cabinet-div-table-header {
    margin: 2rem 0 0.7rem 0.3rem;
    font-family: 'Montserrat', 'Arial', serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0.01em;
    color: #ffffff;
}

.cabinet-table {
    color: white;
    width: 100% !important;
    padding: 0;
    margin: 0 !important;
    font-family: 'Montserrat', 'Arial', serif !important;
    font-size: 1rem;
    border: none !important;
    border-collapse: separate;
    border-spacing: 0 0.5rem !important;
}

.cabinet-div-table .dataTables_wrapper {
    width: 100% !important;
}

.cabinet-table .cabinet-table-th {
    font-family: 'Montserrat', Arial, serif;
    width: max-content !important;
    font-style: normal;
    font-weight: 400 !important;
    font-size: 13px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.7);
    padding-left: 10px !important;
    border: none !important;
}

.cabinet-div-table .cabinet-table thead,
.cabinet-div-table .cabinet-table tbody {
    display: table-row-group;
}

.cabinet-div-table .cabinet-table tr {
    display: table-row;
}

.commission-statistics-section .cabinet-table .cabinet-table-row {
    background: url(/assets/img/user_contact.svg) no-repeat 14px center, linear-gradient(110.72deg, rgba(255, 255, 255, 0.12) 1.21%, rgba(196, 196, 196, 0.02) 100%) !important;
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    border-radius: 8px;
}

.cabinet-table .cabinet-table-row {
    background: url(/assets/img/svg/calendar.svg) no-repeat 14px center, linear-gradient(110.72deg, rgba(255, 255, 255, 0.12) 1.21%, rgba(196, 196, 196, 0.02) 100%) !important;
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    border-radius: 8px;
}

.cabinet-table .cabinet-table-row .dataTables_empty {
    padding: 1.7rem !important;
    border-radius: 8px;
}

.cabinet-table-start-column {
    padding: 1rem 1rem 1rem 55px !important;
    border-start-start-radius: 8px;
    border-end-start-radius: 8px;
}

.cabinet-table-center-column {
    padding: 1rem !important;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cabinet-table-end-column {
    padding: 1rem !important;
    text-align: right;
    border-end-end-radius: 8px;
    border-start-end-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
}

.cabinet-div-table .dataTables_info {
    font-family: 'Montserrat', 'Arial', serif !important;
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.4) !important;
    margin-top: 1.2rem;
    clear: both;
    float: left;
    padding-top: 0.755em;
}

.cabinet-div-table .dataTables_paginate {
    margin-top: 1rem !important;
    float: right;
    text-align: right;
    padding-top: 0.25em;
}

.cabinet-div-table .dataTables_paginate .paginate_button {
    font-family: 'Montserrat', 'Arial', serif !important;
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    padding: 0.5rem 1rem;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.4) !important;
    border-radius: 8px;

    box-sizing: border-box;
    display: inline-block;
    min-width: 1.5em;
    margin-left: 2px;
    text-align: center;
    text-decoration: none !important;
    cursor: pointer;
    border: 1px solid transparent;
}

.cabinet-div-table .dataTables_paginate .paginate_button:hover {
    color: rgba(255, 255, 255, 0.7) !important;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cabinet-div-table .dataTables_paginate span.ellipsis {
    color: rgba(255, 255, 255, 0.4) !important;
}

.cabinet-div-table .dataTables_paginate a.paginate_button.current {
    color: rgba(255, 255, 255, 1) !important;
    background: rgba(174, 192, 236, 0.07) !important;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 8px;
}

.cabinet-information-div {
    background: linear-gradient(110.72deg, rgba(255, 255, 255, 0.12) 1.21%, rgba(196, 196, 196, 0.06) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 16px;
    padding: 25px;
}

.cabinet-information-div-header {
    font-family: 'Montserrat', 'Arial', serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0.01em;
    color: #ffffff;
    margin: 0.3rem 0 2rem 0;
}

.cabinet-information-div-row {
    font-family: 'Montserrat', 'Arial', serif;
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0.01em;
    height: 4.5rem;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.cabinet-information-row-start {
    float: left;
    color: #ffffff;
}

.cabinet-information-row-end {
    float: right;
    color: rgba(255, 255, 255, 0.7);
}

/* start registration form checkbox */
.register-checkbox {
    display: none;
}

.register-checkbox + label {
    display: inline-flex;
    align-items: center;
    user-select: none;
}

.register-checkbox + label::before {
    content: '';
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    flex-shrink: 0;
    flex-grow: 0;
    margin-right: 0.5rem;
    background-image: url("/i/img/getrebate/defaultCheckbox.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 120%;
}

.register-checkbox:checked + label::before {
    background-image: url("/i/img/getrebate/checkedCheckbox.svg");
}

.register-checkbox:not(:disabled):not(:checked) + label:hover::before,
.register-checkbox:not(:disabled):active + label::before,
.register-checkbox:focus + label::before,
.register-checkbox:focus:not(:checked) + label::before {
    background-image: url("/i/img/getrebate/activeCheckbox.svg");
}

.register-checkbox:disabled + label::before {
    background-image: url("/i/img/getrebate/disabledCheckbox.svg");
}

/* end registration form checkbox */

/* start calculator styles */
.calculator-div {
    background: linear-gradient(110.72deg, rgba(255, 255, 255, 0.12) 1.21%, rgba(196, 196, 196, 0.06) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 16px;
    padding: 32px;
    height: 100%;
}

.calculator-div-header {
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0.01em;
    color: #ffffff;
}

.calculator-input-group {
    padding: 16px 55px 32px 55px;
}

.calculator-label {
    display: block;
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 325;
    font-size: 13px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.calculator-input-group .select2.select2-container.select2-container--default {
    width: 100% !important;
}

.calculator-input-group .select2-selection.select2-selection--single {
    background: rgba(174, 192, 236, 0.07);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 8px !important;
    padding: 13px;
    display: block;
    width: 100%;
    height: 100% !important;
    margin: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: inherit !important;
    cursor: default;
}

.calculator-input-group .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: #ffffff;
    padding-left: 0;
}

.calculator-input-group .select2-container--default .select2-selection--single .select2-selection__arrow {
    position: absolute;
    top: 30%;
    right: 10px;
    height: 20px;
    width: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 23px;
    background-image: url(/assets/img/svg/selectArrow.svg);
}



.calculator-input-group .select2-dropdown.select2-dropdown--below {
    background: #464749;
    box-shadow: 0 4px 8px rgba(40, 41, 61, 0.16), 0 20px 32px rgba(96, 97, 112, 0.27);
    border-radius: 8px;
    border: none;
}

.select2-container .select2-dropdown {
    border: none;
    background: #252525;
    border-radius: 8px !important;
    z-index: 1000;
}

.select2-container .select2-search--dropdown {
    padding: 0;
    border: none;
    border-radius: 8px !important;
}

.select2-container.select2-container--default .select2-search--dropdown .select2-search__field {
    backdrop-filter: blur(17.5px);
    -webkit-backdrop-filter: blur(17.5px);
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 325;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.4);
    outline: 0;
    padding: 12px 0 12px 43px;
    border: none;
    border-radius: 8px 8px 0 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background-size: 1em;
    background: url("/assets/img/svg/searchToInput.svg") no-repeat 12px center, linear-gradient(110.72deg, rgba(255, 255, 255, 0.12) 1.21%, rgba(196, 196, 196, 0.02) 100%);
}

.select2-container.select2-container--default .select2-search--dropdown .select2-search__field::placeholder {
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 325;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.4);

}

.select2-container.select2-container--default .select2-results > .select2-results__options {
    background: linear-gradient(110.72deg, rgba(255, 255, 255, 0.12) 1.21%, rgba(196, 196, 196, 0.02) 100%);
    backdrop-filter: blur(17.5px);
    -webkit-backdrop-filter: blur(17.5px);
    max-height: 100px;
    border-radius: 0 0 8px 8px !important;
}

.select2-container.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar {
    width: 12px;
}

.select2-container.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-track {
    background: rgba(65, 66, 68, 0.7);
    border-radius: 0 0 9px 0;
}

.select2-container.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-thumb {
    background: rgba(129, 130, 131, 0.8);
    border-radius: 9px;
    border: 2px solid rgba(65, 66, 68, 1);
}

.select2-container .select2-results__option {
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 325;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.01em;
    color: #ffffff;
    padding: 2px 16px;
}

.select2-container.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: rgba(23, 149, 114, 0.4);
}

.select2-container.select2-container--default .select2-results__option--selected {
    background: rgba(23, 149, 114, 0.5);
}

.calculator-input {
    background: rgba(174, 192, 236, 0.07);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 8px;
    padding: 13px;
    display: block;
    width: 100%;
    margin: 10px 0 0 0;
    outline: 0;
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: #ffffff;
}

.calculator-button {
    width: 60%;
    margin: 32px auto 0 auto;
    border-radius: 14px;
}

.calculator-p-sum {
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 600;
    font-size: 52px;
    line-height: 63px;
    letter-spacing: 0.01em;
    color: #ffffff;
    opacity: 0.1;
    text-align: center;
    margin: 120px auto;
}

.calculated-p-sum {
    opacity: 1;
}

/* end calculator styles */

/* start map page styles */
.page-h1 {
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 600;
    font-size: 3.1rem;
    line-height: 63px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #ffffff;
    margin: 112px auto 40px auto;
}

.map-div {
    margin-bottom: 100px;
}

.map-arrow-div {
    background: url("/assets/img/project-link.svg") no-repeat calc(100% - 36px) center, linear-gradient(110.72deg, rgba(255, 255, 255, 0.12) 1.21%, rgba(196, 196, 196, 0.02) 100%);
    background-size: 16px, 100%;
    backdrop-filter: blur(17.5px);
    -webkit-backdrop-filter: blur(17.5px);
    border-radius: 8px;
    margin: 0 0 13px 0;
}

.map-a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.01em;
    padding: 16px 80px 16px 32px;
    display: block;
}

/* end map page styles */

/* start of qr-code modal window */
.qr-code-modal-window .modal-dialog-centered {
    justify-content: center;
}

.qr-code-modal-window .modal-content {
    max-width: 400px;
    max-height: 227px;
    padding: 20px;
}

.qr-code-modal-div {
    display: flex;
    width: 100%;
    background: #ffffff;
    border-radius: 8px;
}

.qr-code-div {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    padding: 20px 13px 16px 13px;
}

.qr-code-p {
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: #132529;
    text-align: center;
    margin: 23px auto 0 auto;
}

/* end of qr-code modal window */

/* start of login welcome modal window */
.welcome-modal-window .modal-dialog-centered {
    justify-content: center;
}

.welcome-modal-window .modal-content {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.welcome-modal-window .container-fluid {
    background-color: rgba(0, 0, 0, 0.8);
}

.welcome-modal-div {
    /*width: 70vw;*/
    max-height: 600px;
    background: linear-gradient(110.72deg, #686868, #1a1a1a);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid #ffffff60;
    border-radius: 32px;
    padding: 56px 66px 50px 66px;
}

.welcome-modal-title {
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 600;
    font-size: 3rem;
    line-height: 32px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #ffffff;
}

.welcome-modal-title-desc {
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 600;
    font-size: 1rem;
    line-height: 28px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #ffffff70;
    margin-top: 35px;
}

.welcome-modal-desc-p {
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 400;
    font-size: 1rem;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.7);
    margin: 54px auto 0 auto;
}

.two-inline-buttons {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 44px 0 50px 0;
}

.two-inline-buttons .button-modal {
    flex: 0 0 max-content;
}

.button-modal {
    display: block;
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 500;
    font-size: 1rem;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.7);
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    margin: 20px 10px 10px 10px;
}

.button-green {
    border: 1px solid #30bb3e60;
}

.button-green:hover {
    color: #30bb3e;
}

.button-red {
    border: 1px solid #cf373760;
}

.button-red:hover {
    color: #cf3737;
}

.welcome-modal-hr {
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* end of login welcome modal window */

/* start of forms page */
.forms-page .modal-content,
.forms-page .grey-modal-content {
    margin: 0;
    padding: 0;
    max-width: 100%;
    flex: 1 1 100%;
}

.forms-page .grey-modal-body {
    flex: 1 1 100%;
}

.forms-page .modal-radio-group {
    margin-bottom: 22px;
}

.login-registration-animation-section {
    flex: 1 1 730px;
    max-width: 730px;
    background: linear-gradient(110.72deg, #686868, #2b2b2b);
    background-blend-mode: overlay, normal;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-right: none;
    border-radius: 32px 0 0 32px;
    padding: 33px 110px 33px 84px;
}

.login-registration-forms-div {
    flex: 1 1 30%;
    background: linear-gradient(110.72deg, #363636, #1a1a1a);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-left: none;
    border-radius: 0 32px 32px 0;
    padding: 33px 56px 43px;
}

.forms-navigation {
    display: grid;
    grid-auto-columns: 50%;
    margin-bottom: 30px;
}

.modal-form-navigation {
    grid-row: 1;
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.4);
}

.modal-login-form .form-button {
    margin-top: 40px;
}

.modal-login-form .range-input-div {
    margin-top: 44px;
}

.login-input-div {
    margin-top: 45px;
}

.modal-registration-form .range-input-div {
    margin-top: 25px;
}

.reg-input-div {
    margin-top: 16px;
}

.preloader {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    margin: 0 auto;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    animation: preloader-spin 2s linear infinite;
}

.preloader:before {
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    animation: preloader-spin 3s linear infinite;
}

.preloader:after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    animation: preloader-spin 1.5s linear infinite;
}

@keyframes preloader-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* end of forms page */

/* start of contacts new styles */
.contact-number {
    width: fit-content;
    padding-left: 18px;
    margin-bottom: 16px;
    border-radius: 8px;
}

.contact-number:hover {
    background: rgba(174, 192, 236, 0.07);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.contact_uppen_para img {
    width: 20px;
    height: 20px;
    opacity: 0.4;
}

.contact-number:hover .contact_uppen_para img {
    opacity: 1;
}

.contact-link {
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.4);
    padding: 16px 61px 16px 10px;
}

.contact-link:hover {
    color: #ffffff;
}

.cursor-pointer {
    cursor: pointer;
}

/* end of contacts new styles */

/* start of forex reviews new styles */
.forex-reviews-section .forex-review {
    height: 420px;
    display: flex;
    flex-direction: column;
    padding: 32px;
}

.forex-reviews-section .forex-review .bigHeader_20_24 {
    overflow: hidden;
    text-overflow: ellipsis;
    overflow-wrap: break-word;
    max-height: 67px;
}

.forex-reviews-section .forex-review .review_dev {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    line-clamp: 7;
    -webkit-box-orient: vertical;
}

.forex-reviews-section .forex-review .review_date {
    border-top: 1px solid #ffffff1a;
    padding-top: 16px;
    margin-top: auto;
}

/* end of forex reviews new styles */

/* start of homepage new styles */
.home-main-animation-div {
    max-width: 480px;
    max-height: 480px;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0;
    content: "";
    background: url(/assets/img/ar_ic_white_down.svg) no-repeat top center;
    width: 12px;
    height: 8px;
    border: none;
    transition: 0.5s;
    opacity: 0.4;
}

.dropdown-toggle:hover::after {
    opacity: 1;
}

.dropdown-toggle:active:not(:hover)::after,
.dropdown-toggle:focus:not(:hover)::after {
    opacity: 0.7;
}


.dropdown-menu.show {
    background: rgb(70, 71, 73);
    box-shadow: 0 4px 8px rgba(40, 41, 61, 0.16), 0 20px 32px rgba(96, 97, 112, 0.27);
    border-radius: 8px;
    padding: 0;
    position: relative;
    width: max-content;
    margin: 0 auto;
}

.dropdown-menu.show .triangle {
    width: 0;
    height: 0;
    border-bottom: 8px solid rgb(70, 71, 73);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    margin: -8px 0 0 123px;
}

.dropdown-divider {
    height: 1px;
    margin: 0 auto;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: inherit;
    background-color: rgba(255, 255, 255, 0.1);
    opacity: 1;
    width: 80%;
}

.dropdown-item.dropdown-item-a {
    padding: 16px;
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 500;
    font-size: 1rem;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: #ffffff;
    cursor: pointer;
    text-align: center;
    margin: 0;
}

.dropdown-item.dropdown-item-a:hover {
    background: rgba(85, 88, 96, 1);
}

.dropdown-menu-li:nth-child(2) .dropdown-item-a {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.dropdown-menu-li:last-child .dropdown-item-a {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.marquee-item-div {
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: #ffffff;
}

.color-grey {
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-left: 16px;
}

.color-red {
    color: #cf3737;
}

.color-green {
    color: #30bb3e;
}

.marquee-currency-div {
    color: #ffffff;
    display: flex;
}

.marquee-currency-img {
    margin: auto 8px;
}

.marquee-item {
    display: flex;
    margin-right: 38px;
    flex: 0 0 max-content;
    width: 268px;
}

.marquee-item:last-child {
    margin-right: 0;
}

.marquee-item-div-price {
    width: 57px;
}

.marquee-item-div-change {
    width: 65px;
    display: block;
    margin-left: 10px;
}

.marquee-inner {
    display: flex;
    height: 24px;
    overflow: hidden;
}

.marquee-inner-first, .marquee-inner-second {
    width: max-content;
    display: flex;
    animation: marquee 30s linear infinite;
}

.marquee-inner:hover .marquee-inner-first,
.marquee-inner:hover .marquee-inner-second {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* end of homepage new styles */

/* start of modal new styles */
.modal {
    z-index: 1155;
    background: rgba(174, 192, 236, 0.14);
    backdrop-filter: blur(38px);
    -webkit-backdrop-filter: blur(38px);
}

.modal-dialog {
    flex: 0 0 1200px;
    max-width: 1200px;
}

.modal-content {
    padding: 20px;
}

.modal-content .btn-close {
    position: absolute;
    top: 0;
    right: 0;
}

.grey-modal-content {
    flex: 0 0 1240px;
    background-color: transparent;
    border: none;
    border-radius: 32px;
    max-width: 1240px;
    flex-direction: row;
    margin: 0 auto;
}

.grey-modal-body {
    flex: 0 0 1200px;
    display: flex;
    padding: 0;
}

.modal-title {
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 600;
    font-size: 52px;
    line-height: 55px;
    letter-spacing: 0.01em;
    color: #ffffff;
    margin-left: 80px;
}

.hide {
    display: none;
}

/* end of modal new styles */

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .dropdown-menu.show {
        position: absolute;
        left: auto;
        right: 0;
    }
}


/*new style*/
.container {
    max-width: 1320px;
}
.rebate-service .container {
    overflow-x: hidden;
}
@media (max-width: 320px) {
  .container {
      max-width: 290px;
  }
}

.home_first_para p {
    font-family: 'Montserrat', Arial, serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 34px;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.4);
}

.about_wrap .row {
    position: relative;
}

.about_text_wrap {
    position: relative;
    z-index: 1;
}

.table-title {
    font-family: 'Montserrat', Arial, serif;
    font-weight: 400;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.buttons-menu {
    width: 40px;
    display: none;
    font-size: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-70%);
    right: 5px;
    letter-spacing: 2px;
    justify-content: flex-end;
    cursor: pointer;
}

.buttons-dropdown {
    display: none;
    background: url('../img/dropdown-table.png') center center/auto no-repeat;
    width: 123px;
    height: 130px;
    z-index: 1000;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: absolute;
    right: 3px;
    top: 38px;
    padding: 0 25px;
}

.table-button-mobile {
    font-family: 'Montserrat', Arial, serif;
    font-weight: 400;
    font-size: 15px;
    text-decoration: none;
}

.table-button-green {
    color: #30bb3e;
    padding-bottom: 18px;
}

.table-button-red {
    color: #cf3737;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 18px;
}

.table-button-green:hover {
    color: #30bb3e;
}

.table-button-red:hover {
    color: #cf3737;
}

.color-white {
    color: #ffffff;
}

.footer_arrow {
    display: none;
}

.intro .row {
    flex-wrap: nowrap;
}

.project_link::after {
    content: url('../img/project-link.svg');
    position: relative;
    top: 1px;
    padding-left: 8px;
}

.d-block-mobile {
    display: none;
}

.faq_bg-active {
    background: linear-gradient(110.72deg, rgba(255, 255, 255, 0.36) 1.21%, rgba(196, 196, 196, 0.06) 100%);
    background-blend-mode: overlay, normal;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.faq_btn-active {
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
}

.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: calc(1rem - 1px);
}

.owl-carousel .owl-item img {
    width: auto;
}

.forex-reviews-section .owl-item img {
    width: 80px;
    height: 80px;
}

.forex-reviews-section .bigHeader_20_24 {
    font-size: 17px;
    line-height: 22px;
    font-weight: 500;
    margin-bottom: 0;
}

.owl-carousel .owl-item .partner-slider-img {
    margin: 0 auto;
}

.owl-item {
    margin: 0;
}

.owl-carousel .owl-item .howtoget-img {
    margin: 0 auto;
}

.counter-count {
    text-align: left;
}

.counter p {
    text-align: left;
}

.stats-con-wrap {
    display: flex;
    justify-content: space-between;
}

.mt-mobile {
    margin-top: 40px;
}

.about_wrap .paragrap {
    font-size: 20px;
}

.table-container {
    position: relative;
}

.about_first .paragrap {
    color: rgba(255, 255, 255, 0.4);
}

.why-rebate h1 {
    margin-bottom: 56px;
}

.why-rebate-container {
    position: relative;
}

.learn-more h3 {
    margin: 30px 0;
}

.why_rebate_div img {
    width: 170px;
    display: block;
}

.rev_name, .social_picture .social_text {
    margin: 0;
}

.rev_name p, .social_text p {
    margin-bottom: 0;
}

.social_picture img {
    margin: 0;
    padding: 0;
}

.social_picture .social_text, .avater_details, .rev_name {
    margin-left: 16px;
}

.review_dev .paragrap {
    margin-top: 9px;
}

.about33 .paragrap, .about22 .paragrap {
    font-size: 17px;
    line-height: 28px;
}

.how-it .why_banner_paragrap {
    color: rgba(255, 255, 255, 0.4);
}

.how-it-example p {
    color: rgba(255, 255, 255, 0.7);
}

.accordion-button:not(.collapsed), .accordion-button.collapsed {
    font-weight: 600;
}

.commission-types-wrap {
    display: flex;
    justify-content: space-between;
    padding: 10px 10px;
}

.cards-to-link .sservis {
    margin: 0 15px;
}

.cards-to-link .owl-stage {
    display: flex;
}

.partner-link-animate .about {
    margin-top: 40px;
}

.cabinet-date-click {
    display: none;
    background: url('../img/date-click.svg') center center/auto no-repeat;
    min-width: 44px;
    height: 44px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
}

.table-button-trade-a {
    text-decoration: none;
    padding: 15px 32px;
    display: block;
    font-family: 'Montserrat', Arial, serif;
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    border-radius: 8px;
}

.table-button-trade-a:hover {
    color: #ffffff;
}

.table-button-trade-a-green {
    border: 2px solid rgba(48, 187, 62, 0.2);
}

.table-button-trade-a-green:hover {
    background: linear-gradient(110.72deg, rgba(28, 234, 49, 0.36) 1.21%, rgba(28, 234, 49, 0.06) 100%);
}


.table-button-trade-a-red {
    border: 2px solid rgba(207, 55, 55, 0.3);
}

.table-button-trade-a-red:hover {
    background: linear-gradient(110.72deg, rgba(249, 31, 31, 0.6) 1.21%, rgba(226, 88, 88, 0.18) 100%);
}

.commission-statistics-section .cabinet-input-group-filter {
    height: 53.6px;
}

.cabinet-input-group-date {
    width: 100%;
}

.cabinet-input-group-wrap {
    display: flex;
    justify-content: space-between;
    width: 78%;
}

.cabinet-input-group-label {
    width: 49%;
}

.commission-statistics-section .cabinet-input-group {
    flex-wrap: nowrap;
}

.cabinet-input-group-wrap {
    display: flex;
    justify-content: space-between;
}

.commission-statistics-section .cabinet-input-group-wrap {
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 84%;
}

.commission-statistics-section .cabinet-input-group-wrap label:nth-child(1) {
    width: 56%;
}

.commission-statistics-section .cabinet-input-group-wrap label:nth-child(2) {
    width: 21%;
}

.commission-statistics-section .cabinet-input-group-wrap label:nth-child(3) {
    width: 21%;
}

.commission-statistics-section .cabinet-input-group-select, .commission-statistics-section .cabinet-input-group-date {
    width: 100%;
}

.cabinet-example-div-header a {
    color: #ff4d29;
    font-weight: 600;
}

.cabinet-example-div-header a:hover {
    color: #ffffff;
}

.flex {
    display: flex;
}

@media screen and (max-width: 1399.98px) {
    .counter-count {
        font-size: 33px;
    }

    .counter p {
        font-size: 15px;
    }

    /* start of welcome login modal window */
    .welcome-modal-window .modal-dialog-centered {
        flex: 0 0 940px;
        max-width: 940px;
    }

    .welcome-modal-window .grey-modal-content,
    .welcome-modal-window .grey-modal-body {
        flex: 0 0 940px;
        max-width: 940px;
        justify-content: center;
    }

    .welcome-modal-div {
        width: 875px;
    }

    .welcome-modal-div .footer_upper_right .link-without-styles {
        margin-left: 12px;
    }

    /* end of welcome login modal window */
}

@media screen and (max-width: 1199.98px) {
    .counter-count {
        font-size: 26px;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 10px;
        padding-left: 0;
        padding-right: 5px;
    }

    .about_card {
        margin: 0;
    }

    /* start of forms page */
    .login-registration-animation-section {
        flex: 1 1 50%;
        max-width: 50%;
    }

    .forms-page .modal-title {
        font-weight: 600;
        font-size: 30px;
        line-height: 32px;
        display: block;
        max-width: 252px;
        margin: 0 auto 60px auto;
    }

    /* end of forms page */
    /* start of cabinet mail notifications */
    .mail-notifications .about_text {
        padding-top: 0;
    }

    .mail-notifications .ui-label-check {
        font-size: 0.9rem;
    }

    /* end of cabinet mail notifications */
}

@media screen and (max-width: 991.98px) {
    /* start of forms page */
    .login-registration-animation-section {
        flex: 1 1 60%;
        max-width: 60%;
        padding: 35px 66px;
    }

    .login-registration-forms-div {
        padding: 22px 23px;
    }

    .forms-page .modal-title {
        margin: 0 auto 50px auto;
    }

    .modal-form-navigation:last-child {
        text-align: center;
    }

    .slider-p {
        font-weight: 325;
        font-size: 11px;
        line-height: 16px;
        text-align: center;
        color: rgba(255, 255, 255, 0.4);
    }

    /* start of welcome login modal window */
    .welcome-modal-window .modal-dialog-centered {
        flex: 0 0 765px;
        max-width: 765px;
    }

    .welcome-modal-window .grey-modal-content,
    .welcome-modal-window .grey-modal-body {
        flex: 0 0 745px;
        max-width: 745px;
        justify-content: center;
    }

    .welcome-modal-div {
        width: 700px;
        padding: 31px 15px 15px 15px;
    }

    .welcome-modal-div .welcome-modal-title {
        font-weight: 600;
        font-size: 2.2rem;
        line-height: 32px;
    }

    .welcome-modal-div .welcome-modal-title-desc {
        font-size: 0.9rem;
        line-height: 28px;
        letter-spacing: 0.01em;
        color: #ffffff;
        opacity: 0.7;
        margin-top: 20px;
    }

    .welcome-modal-div .welcome-modal-desc-p {
        font-weight: 400;
        font-size: 1rem;
        line-height: 24px;
        letter-spacing: 0.01em;
        color: rgba(255, 255, 255, 0.7);
        margin-top: 31px;
    }

    .welcome-modal-div .two-inline-buttons {
        margin: 18px 0 22px 0;
        flex-wrap: nowrap;
    }

    .welcome-modal-div .two-inline-buttons .button-green,
    .welcome-modal-div .two-inline-buttons .button-red {
        margin: 0 5px;
        font-size: 0.9rem;
    }

    .welcome-modal-div .footer_top {
        justify-content: space-around;
    }

    .welcome-modal-div .footer_upper_right {
        display: grid;
        align-items: center;
    }

    .welcome-modal-div .footer_upper_right h3 {
        font-size: 0.9rem;
        margin: 0 0 4px 4px;
    }

    .welcome-modal-div .footer_upper_right .link-without-styles {
        margin-left: 4px;
    }

    /* end of welcome login modal window */
    /* end of forms page */
    /* start of cabinet banners page */
    .cabinet-banners-div {
        padding: 24px;
    }

    .banners-input-button-group {
        grid-template-columns: 1fr;
        grid-gap: 8px 0;
    }

    .banners-p {
        font-weight: 400;
        font-size: 15px;
    }

    .calculator-input-group .select2-selection.select2-selection--single {
        padding: 12px;
    }

    .calculator-input-group .select2-container--default .select2-selection--single .select2-selection__rendered {
        font-style: normal;
        font-weight: 400;
        font-size: 15px;
        line-height: 20px;
        letter-spacing: 0.01em;
    }

    /* end of cabinet banners page */
    .sservis:hover {
        border: 2px solid transparent;
    }

    .second_div:hover {
        background: linear-gradient(110.72deg, rgba(255, 255, 255, 0.12) 1.21%, rgba(196, 196, 196, 0.06) 100%);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-radius: 16px;
    }

    .navbar {
        height: 70px;
    }

    .navbar-brand {
        margin-left: 8px;
    }

    .navbar-brand img {
        width: 36px;
    }

    .dropdown-menu.show .triangle {
        margin: -8px 0 0 80px;
    }

    .navbar-collapse {
        width: 320px;
        position: absolute;
        right: 20px;
        top: 47px;
        padding: 43px 73px;
        background: linear-gradient(180deg,  #323437fe 0%, #37393Cfe 25%,  #434548fe 50%, #2C2F31fe 75%, #34373Cfe 100%);
        border-radius: 16px;
        text-align: left !important;
        max-height: 90vh;
        overflow: auto;
    }

    .navbar-toggler {
        display: block;
    }

    .navbar-nav {
        align-items: flex-start;
    }

    .navbar-nav.nav_second_margin_left {
        margin-top: 50px;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 13px;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 12px 0;
        margin-right: 0;
        font-style: normal;
        font-weight: 500;
        font-size: 13px;
        line-height: 16px;
        letter-spacing: 0.01em;
        color: rgba(255, 255, 255, 0.7);
    }

    .home_first_para br {
        display: none;
    }

    .counter-count {
        font-size: 19px;
    }

    .counter p {
        font-size: 13px;
    }

    .about_mid {
        margin-top: 20px;
        margin-bottom: 0;
    }

    .bigHeader_38_50 {
        font-size: 19px;
        line-height: 28px;
        margin-bottom: 0;
    }

    .bigHeader_38_50 br {
        display: none;
    }

    .home_sec_2_text {
        padding-top: 0;
    }

    .home_sec_2_text .sec1 {
        font-size: 13px;
        line-height: 21px;
        padding: 12px 0 10px;
    }

    .home_sec_2_text .sec2 {
        font-size: 11px;
        line-height: 16px;
        padding-top: 0;
    }

    .milestone {
        position: relative;
        z-index: 1;
    }

    .buttons-menu {
        display: flex;
    }

    .sservis {
        margin: 0;
    }

    .footer_bottom {
        flex-direction: column;
    }

    .footer_instaforex {
        margin-bottom: 10px;
    }

    .footer_info {
        width: 100%;
        margin-top: 24px;
    }

    .foot_left_bottom_p {
        margin-bottom: 0;
    }

    .footer_map {
        width: 320px;
    }

    .footer_map a {
        margin-bottom: 0;
    }

    .cabinet-input-group-select {
        width: 20rem;
    }

    .project .project_link {
        font-family: 'Montserrat', Arial, serif;
        font-weight: 400;
        font-size: 15px;
        letter-spacing: 0.01em;
        color: rgba(255, 255, 255, 0.4);
    }

    .project_link::after {
        top: 2px;
    }

    .review_head h1 {
        font-size: 19px;
        margin-bottom: 20px;
    }

    .review_head {
        margin: 0;
    }

    .about-carousel {
        margin: 0 auto;
    }

    .hade_para {
        margin-bottom: 0;
    }

    .services .col-lg-4 {
        margin-top: 0;
    }

    .mt-mobile {
        margin-top: 0;
    }

    .about_wrap .about_text {
        padding-top: 0;
    }

    .table1 {
        border-radius: 16px;
    }

    .home_image_4 {
        background: url(../img/img_bg_home_04.png) center center/cover no-repeat;
        width: 50px;
        height: 50px;
        left: -8px;
        bottom: -24px;
    }

    .about_wrap {
        flex-wrap: nowrap;
    }

    .about_group .row {
        position: relative;
        flex-wrap: nowrap;
    }

    .garanty .bigHeader_38_50 {
        font-size: 38px;
        line-height: 50px;
    }

    .home_image_2 {
        width: 49px;
        height: 49px;
        top: -10%;
        left: 0;
    }

    .how-it-example p {
        margin-top: 10px;
    }

    .form-content .form-items3 {
        width: 100%;
    }

    .faq_header h1 {
        margin-bottom: 0;
    }

    .faq_search {
        margin-top: 20px;
    }

    .how-it-example .margin_top_65 {
        margin-top: 0;
    }

    .bigHeader {
        font-size: 23px;
        line-height: 32px;
    }

    .about_text .partner_pro_top_p {
        font-size: 15px;
        line-height: 19px;
    }

    .partner-promo .padding_top_5 {
        padding-top: 10%;
    }

    .project h5 {
        font-size: 15px;
        line-height: 20px;
    }

    .project p {
        font-size: 13px;
        line-height: 21px;
    }

    .partner-form .banner_paragrap {
        font-weight: 400;
        font-size: 13px;
    }

    .partner-promo .about {
        margin-top: 0;
    }

    .partner-program .margin_top_40 {
        margin-top: 0;
    }

    .sservis p {
        font-size: 13px;
    }

    .avater_details h3 {
        font-size: 15px;
    }

    .accordion-button:hover {
        backdrop-filter: blur(0);
        -webkit-backdrop-filter: blur(0);
    }

    .accordion-button:not(.collapsed), .accordion-button.collapsed {
        font-size: 15px;
    }

    .search-placeholder::placeholder {
        font-size: 15px;
    }

    .accordion-body {
        font-size: 13px;
    }

    #search-button {
        font-size: 15px;
    }

    .how-it .why_banner_paragrap {
        font-size: 15px;
        line-height: 19px;
    }

    .how-it-example p {
        font-size: 13px;
        line-height: 21px;
    }

    .cabinet-example-div-header {
        font-size: 15px;
        line-height: 20px;
        margin-top: 0;
    }

    .cabinet-example-div-title {
        margin-bottom: 16px;
    }

    .cabinet-example-div-title-text {
        font-weight: 600;
        font-size: 19px;
        line-height: 28px;
    }

    .get-involved-container {
        margin-top: 0;
    }

    .how-it .about {
        margin-top: 0;
    }

    .why_banner_paragrap {
        font-size: 15px;
        line-height: 19px;
    }

    .garanty .paragrap {
        font-size: 13px;
        line-height: 21px;
    }

    .garanty .bigHeader_38_50 {
        font-size: 19px;
        line-height: 28px;
        margin-bottom: 0;
    }

    .banner_header_font {
        font-size: 19px;
        line-height: 28px;
    }

    .sservis h5 {
        font-size: 15px;
        margin: 16px 0 8px;
    }

    .about_card {
        padding: 24px;
        height: 270px;
    }

    .why_rebate_div h3 {
        font-size: 15px;
        line-height: 20px;
    }

    .why_rebate_div a {
        font-size: 15px;
        line-height: 20px;
        font-family: 'Montserrat', Arial, serif;
        font-weight: 400;
    }

    .why_rebate_div {
        padding: 24px;
        height: auto;
    }

    .about_wrap .paragrap {
        font-size: 15px;
        line-height: 19px;
    }

    .about22 .paragrap {
        font-size: 13px;
        line-height: 21px;
    }

    .about33 .paragrap {
        font-size: 13px;
        line-height: 21px;
    }

    .social_text h3 {
        font-size: 15px;
        line-height: 20px;
    }

    .about_us_top .margin_top_40 {
        margin-top: 0;
    }

    .who-are .about22 {
        margin-top: 0;
        margin-bottom: 0;
    }

    .about-services .g-3 {
        margin-top: 15px;
    }

    .home_first_para p {
        font-size: 15px;
        line-height: 19px;
        padding: 0;
    }

    .home-button {
        margin-top: 20px;
        width: 165px;
        height: 44px;
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-radius: 8px;
        font-family: 'Montserrat', Arial, serif;
        font-weight: 400;
        font-size: 15px;
    }

    .pt-mobile .paragrap {
        font-size: 13px;
        line-height: 21px;
    }

    .partner-program h5 {
        margin-top: 16px;
    }

    .commission-types-url {
        font-size: 15px;
        font-family: 'Montserrat', Arial, serif;
        font-weight: 400;
        line-height: 20px;
    }

    .cabinet-wrap .paragrap {
        font-size: 15px;
        line-height: 19px;
    }

    .calculator-div {
        padding: 24px;
    }

    .calculator-input-group {
        padding: 0;
    }

    .calculator-div-header {
        font-size: 15px;
        line-height: 20px;
    }

    .calculator-label {
        font-size: 13px;
        line-height: 20px;
        font-weight: 325;
    }

    .calculator-p-sum {
        font-size: 23px;
        line-height: 32px;
    }

    .calculator-remuneration {
        margin-top: 0;
    }

    .calculator-example {
        padding-top: 0;
    }

    .cabinet-calculator {
        padding-bottom: 0;
    }

    .cabinet-calculator section {
        padding: 0;
    }

    .cabinet-calculator .calculator-remuneration, .cabinet-calculator .calculator-sum, .cabinet-calculator .milestone {
        margin-top: 0 !important;
    }

    .cabinet-example-div-p {
        font-family: 'Montserrat', Arial, serif;
        font-weight: 400;
        font-size: 13px;
        line-height: 21px;
    }

    .calculator-example .cabinet-example-div-p {
        font-family: 'Montserrat', Arial, serif;
        font-weight: 325;
        font-size: 13px;
        line-height: 21px;
    }

    .cabinet-example-div-p_1 {
        margin-top: 0 !important;
    }

    .partner-link .bigHeader_38_50 {
        margin-bottom: 20px;
    }

    .cards-to-link .sservis {
        margin: 0 10px;
    }

    .partner-link-animate .paragrap, .mail-notifications .paragrap {
        font-family: 'Montserrat', Arial, serif;
        font-weight: 400;
        font-size: 13px;
        line-height: 21px;
    }

    .partner-link-animate .about {
        margin-top: 0;
    }

    .partner-link-example .cabinet-example-div-p {
        font-family: 'Montserrat', Arial, serif;
        font-weight: 400;
        font-size: 13px;
        line-height: 21px;
        margin-top: 16px;
    }

    .partner-link-example .cabinet-example-div-header {
        margin-bottom: 0;
    }

    .cabinet-example-div-title-text {
        font-size: 19px;
        line-height: 28px;
    }

    .mail-notifications-setting .cabinet-div-block {
        align-items: center;
    }

    .mail-notifications-setting .cabinet-example-div-error {
        font-family: 'Montserrat', Arial, serif;
        font-weight: 400;
        font-size: 13px;
        line-height: 20px;
        color: rgba(255, 255, 255, 0.7);
        margin-top: 15rem !important;
    }

    .cabinet-div-table-header {
        font-size: 15px;
        line-height: 20px;
    }

    .cabinet-table .cabinet-table-th, .dataTables_info, .cabinet-input-group-label {
        font-family: 'Montserrat', Arial, serif;
        font-weight: 400;
        font-size: 11px;
        line-height: 16px;
    }

    .cabinet-table-column {
        font-family: 'Montserrat', Arial, serif;
        font-weight: 400;
        font-size: 15px;
        line-height: 20px;
    }

    .cabinet-table-start-column {
        color: #ffffff;
    }

    .cabinet-input-group-submit, .cabinet-input-group-date {
        font-family: 'Montserrat', Arial, serif;
        font-weight: 400;
        font-size: 15px;
        line-height: 20px;
    }

    .cabinet-information-div-header, .cabinet-chart .apexcharts-title-text {
        font-size: 15px;
        line-height: 20px;
    }

    .cabinet-information-div-row {
        font-family: 'Montserrat', Arial, serif;
        font-weight: 400;
        font-size: 15px;
        line-height: 20px;
    }

    .clients-by-days .cabinet-about-div-header {
        font-size: 19px;
        line-height: 28px;
    }

    .clients-by-days .cabinet-about-div-p {
        font-family: 'Montserrat', Arial, serif;
        font-weight: 400;
        font-size: 13px;
        line-height: 21px;
    }

    .clients-by-days .cabinet-about-div {
        padding: 15rem 0 0 1rem;
    }

    .clients-by-days-wrap {
        flex-wrap: nowrap;
    }

    .commission-statistics-section .cabinet-input-group-filter {
        height: 49.6px;
    }

    .commission-statistics-section .cabinet-input-group-select, .commission-statistics-section .cabinet-input-group-date {
        height: 49.6px;
    }
}

@media screen and (max-width: 767.98px) {
    /* start of forms page */
    .forms-page .grey-modal-body {
        flex-wrap: wrap;
    }

    .login-registration-animation-section {
        flex: 1 1 100%;
        max-width: 100%;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        padding: 35px 0;
    }

    #login-registration-animation {
        display: none;
    }

    .login-registration-forms-div {
        flex: 1 1 100%;
        padding: 60px 80px;
        border-left: 2px solid rgba(255, 255, 255, 0.15);
        border-radius: 32px;
    }

    .forms-page .modal-title {
        margin: 0 auto 30px auto;
        text-align: center;
    }

    .modal-form-navigation:last-child {
        text-align: center;
    }

    .slider-p {
        font-size: 14px;
    }

    /* start of welcome login modal window */
    .welcome-modal-window .modal-dialog-centered {
        flex: 0 0 100vw;
        max-width: 100vw;
    }

    .welcome-modal-window .grey-modal-content,
    .welcome-modal-window .grey-modal-body {
        flex: 0 0 95vw;
        max-width: 95vw;
    }

    .welcome-modal-div {
        width: 90vw;
        padding: 31px 15px 15px 15px;
    }

    .welcome-modal-div .two-inline-buttons {
        flex-wrap: wrap;
    }

    .welcome-modal-div .two-inline-buttons .button-green,
    .welcome-modal-div .two-inline-buttons .button-red {
        margin: 13px 5px 0 5px;
        font-size: 0.9rem;
    }

    .welcome-modal-div .footer_top {
        justify-content: space-around;
    }

    .welcome-modal-div .footer_upper_right {
        display: grid;
        align-items: center;
    }

    .welcome-modal-div .footer_upper_right h3 {
        font-size: 0.9rem;
        margin: 0 0 4px 4px;
    }

    .welcome-modal-div .footer_upper_right .link-without-styles {
        margin-left: 4px !important;
    }

    /* end of welcome login modal window */
    /* end of forms page */
    .pp_v_img {
        display: none;
    }

    .bigHeader {
        font-size: 23px;
        line-height: 32px;
    }

    .about_wrap .row {
        flex-wrap: nowrap;
    }

    .slideItem span span {
        font-size: 15px;
    }

    .stats-con .col {
        padding: 0;
    }

    .counter-count {
        font-size: 15px;
    }

    .counter p {
        font-size: 12px;
    }

    .calculate-section .col-sm-10 {
        width: 100%;
    }

    .buttons-menu {
        right: -8px;
    }

    .table-row {
        padding: 10px 16px;
    }

    .buttons-dropdown {
        right: -10px;
        top: 35px;
    }

    .hade_para {
        font-size: 11px;
    }

    .services .row {
        flex-wrap: nowrap;
    }

    .footer_upper_right h3 {
        font-size: 15px;
    }

    .footer_upper_right .link-without-styles {
        margin-left: 10px;
    }

    .footer_info-item {
        margin-right: 35px;
    }

    .footer_info-item:last-child {
        margin-right: 0;
    }

    .d-block-mobile {
        display: block;
    }

    #search-button {
        display: none;
    }

    .avater_details {
        margin: 0 0 0 16px;
    }

    .stats {
        padding: 16px 0;
    }

    .stats-con {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .about_card img {
        margin-top: 0;
    }

    .about_first p {
        font-size: 15px;
        line-height: 19px;
        padding-top: 0;
    }

    .about22 .row {
        flex-wrap: nowrap;
    }

    .why-rebate h1 {
        margin-bottom: 20px;
    }

    .why-work {
        padding-top: 46px;
    }

    .why-work .row {
        position: relative;
    }

    .why-work-left {
        position: relative;
        z-index: 1;
        width: 56%;
    }

    .why-work-right {
        position: absolute;
        top: -50%;
        right: 0;
        width: auto;
    }

    .garanty .row {
        flex-wrap: nowrap;
    }

    .learn-more h3 {
        margin: 16px 0;
    }

    .how-it .row, .how-it-example .row {
        position: relative;
        flex-wrap: nowrap;
    }

    .cabinet-example-div {
        padding: 24px;
    }

    .partner-form .row {
        flex-wrap: nowrap;
    }

    .slid_user_name {
        font-size: 11px;
    }

    #paragraph-on-slider6 {
        font-size: 11px;
    }

    .partner-form .bigHeader_38_50 {
        font-size: 19px;
        line-height: 28px;
    }

    .form-content .form-items3 {
        padding: 24px;
    }

    .about_text .partner_pro_top_p {
        font-size: 15px;
        line-height: 19px;
    }

    .partner-promo .row {
        flex-wrap: nowrap;
    }

    .register-block .about {
        margin-top: 20px;
    }

    .partner-promo {
        padding-bottom: 0;
    }

    .partner-program {
        padding-top: 0;
    }

    .commission-types-sec {
        padding: 16px 3rem;
    }

    .cabinet-wrap {
        flex-wrap: nowrap;
    }

    .calculator-sum, .calculator-remuneration {
        width: 50%;
    }

    .calculator-button {
        font-size: 15px;
        line-height: 20px;
        font-weight: 325;
        margin-top: 24px;
        width: 100%;
    }

    .cards-to-link .sservis {
        margin: 0 5px;
    }

    .partner-link-animate .row, .mail-notifications .row {
        flex-wrap: nowrap;
    }

    .partner-link-example, .banners {
        padding-bottom: 0;
    }

    .partner-link-example .margin_top_20 {
        margin-top: 0;
    }

    .cabinet-input-group {
        margin: 20px 0 16px;
        display: flex;
    }

    .cabinet-input-group-select {
        padding: 0.7rem 0 0.7rem 40px;
        width: 100%;
    }

    .cabinet-input-group-date {
        width: 100%;
    }

    .cabinet-input-group-filter {
        width: 56px;
        height: 50px;
        margin-top: auto;
    }

    .general-information-wrap {
        flex-wrap: nowrap;
    }

    .general-information-item {
        width: 50%;
    }

    .cabinet-input-group-wrap {
        display: none;
        justify-content: space-between;
        position: absolute;
        z-index: 999;
        top: 50px;
        left: 0;
        padding: 5px;
        border-radius: 8px;
        background: #333333;
        width: 100%;
    }

    .cabinet-input-group-submit {
        margin-top: auto;
        width: 100%;
        padding: 10px 32px;
        margin-left: 8px;
    }

    .cabinet-date-click {
        display: block;
    }

    .cabinet-input-group-label {
        width: 49%;
    }

    .flex {
        display: flex;
    }

    .cabinet-input-group-filter {
        min-width: 56px;
        height: 44px;
        padding: 0.5rem 0.9rem;
    }

    .clients-by-days .cabinet-about-div {
        padding: 5rem 0 0 0.5rem;
    }

    .commission-statistics-section .cabinet-input-group-filter {
        height: 44px;
    }

    .commission-statistics-section .cabinet-input-group-wrap {
        width: 100%;
    }
}

@media screen and (max-width: 575.98px) {
    /* start of forms page */
    .login-registration-forms-div {
        padding: 30px 25px;
        border-radius: 16px;
    }

    .forms-page .modal-title {
        margin: 0 auto 30px auto;
    }

    .forms-page .ui-radio-label,
    .forms-page .ui-label {
        font-size: 13px;
    }

    .login-input-div {
        margin-top: 35px;
    }

    .modal-login-form .range-input-div {
        margin-top: 25px;
    }

    .modal-login-form .form-button {
        margin-top: 32px;
    }

    /* start of welcome login modal window */
    .welcome-modal-window .modal-dialog-centered {
        flex: 0 0 110vw;
        max-width: 110vw;
    }

    .welcome-modal-window .grey-modal-content,
    .welcome-modal-window .grey-modal-body {
        flex: 0 0 100vw;
        max-width: 100vw;
        justify-content: center;
    }

    .welcome-modal-div {
        width: 90vw;
        max-height: max-content;
        padding: 33px 15px 28px 15px;
    }

    .welcome-modal-div .welcome-modal-title {
        font-size: 1.5rem;
        line-height: 32px;
    }

    .welcome-modal-div .welcome-modal-title-desc {
        font-size: 0.85rem;
        line-height: 22px;
        letter-spacing: 0.01em;
        color: #ffffff;
        opacity: 0.7;
        margin-top: 20px;
    }

    .welcome-modal-div .welcome-modal-desc-p {
        font-weight: 400;
        font-size: 0.9rem;
        line-height: 24px;
        letter-spacing: 0.01em;
        color: rgba(255, 255, 255, 0.7);
        margin-top: 21px;
    }

    .welcome-modal-div .two-inline-buttons {
        margin: 18px 0 22px 0;
        flex-wrap: wrap;
    }

    .welcome-modal-div .two-inline-buttons .button-green,
    .welcome-modal-div .two-inline-buttons .button-red {
        margin: 13px 0 0 0;
        font-size: 0.9rem;
        max-width: fit-content;
        text-align: center;
    }

    .welcome-modal-div .welcome-modal-hr {
        display: none;
    }

    .welcome-modal-div .footer_top {
        justify-content: space-around;
    }

    .welcome-modal-div .footer_upper_right {
        display: grid;
        align-items: center;
    }

    .welcome-modal-div .footer_upper_right h3 {
        font-size: 0.9rem;
        margin: 0 0 16px 0;
    }

    .welcome-modal-div .footer_upper_right .link-without-styles:nth-child(2) {
        margin-left: 0 !important;
    }

    /* end of welcome login modal window */
    /* end of forms page */

    .forex-reviews-section .forex-review {
        padding: 24px;
        overflow: hidden;
    }

    .forex-reviews-section .forex-review .bigHeader_20_24 {
        font-size: 14px;
    }

    .navbar-collapse {
        width: 100vw;
        height: 100vh;
        top: 70px;
        right: 0;
        border-radius: 0;
    }

    .rebate-service {
        flex-wrap: wrap;
    }

    .home-button {
        width: 287px;
        margin: 20px auto 0;
    }

    .about_img2 {
        margin-top: 20px;
    }

    .stats-con {
        padding-top: 0;
    }

    .stats-con-wrap {
        //flex-direction: column;
        text-align: left;
    }

    .counter {
        display: flex;
        align-items: center;
        //margin-bottom: 15px;
    }

    .counter:last-child {
        margin-bottom: 0;
    }

    .counter-count {
        margin-bottom: 0;
        margin-right: 8px;
    }

    .counter p {
        font-size: 13px;
        margin-bottom: 0;
    }

    .rebate-service .rebate-service-first-sec {
        width: 100%;
    }

    .rebate-service .rebate-service-second-sec {
        width: 100%;
        margin-top: 30px;
    }

    .calculate-section {
        margin-right: 0;
        margin-left: 0;
    }

    .milestone {
        margin-top: 0;
    }

    .about_wrap .col-md-6 {
        width: 100%;
    }

    .about_wrap .about_text {
        padding-top: 0;
        margin-top: 15px;
    }

    .home_img_34 {
        margin: 0;
    }

    .d-none-mobile {
        display: none;
    }

    .t-align-mobile {
        text-align: center;
    }

    .buttons-menu {
        right: 0;
    }

    .buttons-dropdown {
        background: url('../img/dropdown-table-mobile.png') center center/auto no-repeat;
        right: 0;
    }

    .bigHeader_38_50, .hade_para {
        text-align: left;
    }

    .hade_para {
        margin-top: 8px;
        margin-bottom: 0;
    }

    .services .row {
        flex-wrap: wrap;
    }

    .footer_upper_right {
        flex-direction: column;
        align-items: flex-start;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        padding-top: 16px;
        margin-top: 16px;
    }

    .footer_top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer_top-img .link-without-styles {

    }

    .footer_upper_right h3 {
        margin-top: 0;
        margin-bottom: 20px;
    }

    .footer_instaforex {
        font-family: 'Montserrat', Arial, serif;
        font-weight: 400;
        line-height: 24px;
    }

    .footer_map {
        width: 260px;
    }

    .footer_hr {
        display: none;
    }

    .footer_bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 16px;
        margin-top: 16px;
    }

    .footer_info {
        flex-direction: column;
    }

    .footer_info-item {
        margin-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 16px;
        margin-top: 16px;
        width: 100%;
    }

    .footer_info-title {
        position: relative;
    }

    .footer_heading {
        color: rgba(255, 255, 255, 0.4);
        font-size: 15px;
        margin-bottom: 0;
    }

    .footer_arrow {
        display: block;
        position: absolute;
        top: -2px;
        right: 10px;
        width: 13px;
    }

    .footer_arrow img {
        width: 100%;
    }

    .footer_info-descr {
        display: none;
        margin-top: 16px;
    }

    .footer_active {
        display: block;
    }

    .footer_white {
        color: #ffffff;
    }

    .how-to_wrap {
        flex-direction: column;
    }

    .how-to_title {
        text-align: center;
    }

    .about-carousel {
        width: 95%;
    }

    .about_mid {
        margin-top: 0;
    }

    .services .col-lg-4 {
        margin-bottom: 16px;
    }

    .services .col-lg-4:last-child {
        margin-bottom: 0;
    }

    .about_2 {
        width: 100%;
    }

    .about22 {
        margin-top: 0;
    }

    .who-are {
        padding-top: 0;
    }

    .about22 .row {
        flex-wrap: wrap;
    }

    .about_card {
        height: 230px;
    }

    .about_wrap {
        flex-wrap: wrap;
    }

    .about_first {
        margin-top: 0;
    }

    .rev1 h1 {
        text-align: center;
    }

    .about_group {
        padding-top: 0;
    }

    .about_group .row {
        flex-wrap: wrap-reverse;
    }

    .about33 {
        width: 100%;
    }

    .about_img_group {
        width: 100%;
    }

    .why-work-left {
        width: 100%;
    }

    .why-work-right {
        position: static;
    }

    .garanty .row {
        flex-wrap: wrap;
    }

    .garanty .about_text {
        padding-top: 20px;
    }

    .home_image_2 {
        display: none;
        top: -3%;
    }

    .how-it .row {
        flex-wrap: wrap;
    }

    .how-it-example .row {
        flex-wrap: wrap-reverse;
    }

    .cabinet-example-div-title {
        width: auto;
    }

    .cabinet-example-div-title-text {
        width: auto;
        font-size: 15px;
        line-height: 20px;
    }

    .how-it-example {
        padding: 0;
    }

    .how-it {
        padding: 0;
    }

    .hiw_img {
        margin: 0;
    }

    .hiw22 {
        margin-top: 80px;
    }

    .contact_submit {
        font-size: 15px;
    }

    .partner-form {
        padding-top: 0;
    }

    .partner-form .row {
        flex-wrap: wrap;
    }

    .partner-form-info {
        margin-top: 56px;
    }

    .partner-program .bigHeader_38_50 {
        text-align: center;
    }

    .partner-promo {
        padding-top: 16px;
        padding-bottom: 0;
    }

    .partner-promo .row {
        flex-wrap: wrap;
    }

    .partner-promo .about {
        margin-top: 0;
    }

    .partner-program {
        padding-top: 0;
    }

    .how-it-example .margin_top_65 {
        margin-top: -65px;
    }

    .register-block {
        padding-top: 16px;
    }

    .register-block .about {
        margin-top: 0;
    }

    .register-block .home_first_para {
        padding-top: 0;
    }

    .services {
        padding-top: 16px;
    }

    .services .margin_top_40 {
        margin-top: 0;
    }

    .partner-promo .padding_top_5 {
        padding-top: 0;
    }

    .calculator-input-group .select2-container--default .select2-selection--single .select2-selection__rendered {
        font-size: 15px;
        line-height: 20px;
    }

    .calculator-remuneration {
        margin-top: 0 !important;
    }

    .about_wrap .row {
        flex-wrap: wrap-reverse;
    }

    .rebate-section {
        padding-top: 0;
    }

    .pt-mobile {
        padding-top: 0;
        padding-bottom: 0;
    }

    .how-it .why_banner_paragrap {
        padding-bottom: 0;
    }

    .get-involved {
        padding-top: 20px;
    }

    .why-work, .about_us_top, .faq-section {
        padding-top: 16px;
    }

    .howtoget-howitworks .get-involved {
        padding-top: 0;
    }

    .howtoget-howitworks .get-involved-container {
        margin-top: 0;
    }

    .commission-types {
        background: linear-gradient(110.72deg, rgba(255, 255, 255, 0.12) 1.21%, rgba(196, 196, 196, 0.06) 100%);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-radius: 16px;
    }

    .commission-types-wrap {
        flex-direction: column;
    }

    .commission-types-sec {
        padding: 12px 32px;
        width: 100%;
    }

    .cabinet-partner {
        margin-top: 16px;
    }

    .cabinet-wrap {
        flex-wrap: wrap;
    }

    .calculator-sum, .calculator-remuneration {
        width: 100%;
        margin-top: 0 !important;
    }

    .calculator-p-sum {
        margin: 56px auto;
    }

    .calculator-example {
        padding-bottom: 0;
    }

    .calculator-example .margin_top_20 {
        margin-top: 56px;
    }

    .partner-link-animate .row, .mail-notifications .row {
        flex-wrap: wrap;
    }

    .mail-notifications {
        padding-bottom: 0;
    }

    .mail-notifications .about_text {
        padding-top: 20px;
    }

    .mail-notifications-setting .cabinet-div-block {
        align-items: flex-start;
    }

    .cabinet-div-table {
        padding: 24px;
    }

    .cabinet-table-start-column {
        padding: 1rem 1rem 1rem 45px !important;
    }

    .general-information-wrap {
        flex-wrap: wrap;
    }

    .general-information-item {
        width: 100%;
    }

    .general-information-subwrap {
        margin-top: 0 !important;
    }

    .clients-by-days-table thead {
        display: none !important;
    }

    .clients-by-days-table .cabinet-table-row {
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        padding: 12px;
        margin-bottom: 8px;
        background: linear-gradient(110.72deg, rgba(255, 255, 255, 0.12) 1.21%, rgba(196, 196, 196, 0.02) 100%) !important;
    }

    .clients-by-days-table .cabinet-table-row:last-child {
        margin-bottom: 0;
    }

    .clients-by-days-table .cabinet-table-column {
        padding: 0 !important;
        margin-bottom: 5px;
    }

    .clients-by-days-table .cabinet-table-column:last-child {
        margin-bottom: 0;
    }

    .clients-by-days-wrap {
        flex-wrap: wrap;
    }

    .clients-by-days .cabinet-about-div {
        padding: 56px 0 0;
    }

    .clients-by-days .mt-mobile {
        margin-top: 20px;
    }
}

@media (max-width: 370px) {
    /* start of forms page */
    .forms-page .ui-radio-label,
    .forms-page .ui-label,
    .forms-page .ui-label-check {
        font-size: 11px;
    }

    .button-all {
        font-size: 15px;
    }

    .ui-input {
        padding-top: 14px;
        padding-bottom: 14px;
        font-size: 15px;
    }

    .ui-input::placeholder {
        font-size: 15px;
    }


    .modal-form-navigation {
        font-size: 17px;
    }

    .slider-p {
        font-size: 11px;
    }

    /* end of forms page */
}

@media (min-width: 576px) {
    .faq .col-sm-10 {
        width: 100%;
    }
}

.table-row span {
    display: flex;
    justify-content: space-between;
    width: 105px;
    align-items: center;
}

.tablevalue .first_img {
    width: 37px !important;
}

@media screen and (max-width: 991.98px) {
    table .row {
        flex-wrap: nowrap;
        align-items: center;
        text-align: center;
    }

    .row > * {
        flex-shrink: 1;
    }

    .table {
        display: grid;
    }

    .exchange-table-thead,
    .exchange-table-tbody,
    .exchange-table-tr {
        display: contents;
    }

    .button {
        display: none;
    }

    .table-row {
        font-size: 15px;
        font-family: 'Montserrat', Arial, serif;
        font-weight: 400;
        position: relative;
    }

    .table-row span {
        width: 95px;
    }

    .tablevalue .first_img {
        width: 34px !important;
        margin-right: 5px;
    }

    .currency-font {
        font-size: 15px;
    }

    .tablevalue .first_img {
        height: auto;
    }
}
