@font-face {
    font-family: bebas-neue;
    src: url('./fonts/bebas-neue.ttf');
}

@font-face {
    font-family: 'Segoe UI Regular';
    font-style: normal;
    font-weight: normal;
    src: url('./fonts/Segoe UI.woff') format('woff');
}
    

@font-face {
    font-family: 'Segoe UI Italic';
    font-style: normal;
    font-weight: normal;
    src: url('./fonts/Segoe UI Italic.woff') format('woff');
}
    

@font-face {
    font-family: 'Segoe UI Bold';
    font-style: normal;
    font-weight: normal;
    src: url('./fonts/Segoe UI Bold.woff') format('woff');
}
    

@font-face {
    font-family: 'Segoe UI Bold Italic';
    font-style: normal;
    font-weight: normal;
    src: url('./fonts/Segoe UI Bold Italic.woff') format('woff');
}

:root {
    --main-color: #00A859;
}

body {
    background-color: #E6E7E8;
    margin-bottom: 80px;
}

.header-container {
    background-color: #222026;
}

.navbar {
    font-family: bebas-neue;
}

.navbar-logo {
    color: var(--main-color);
    font-size: 30px;
}

.nav-item {
    padding: 16px;
}

.nav-link {
    position: relative;
    background-color: #E6E7E8;
    font-size: 18px;
    line-height: 18px;
    padding-top: 6px;
    padding-bottom: 4px;
    padding-left: 28px !important;
    padding-right: 4px;
    border-radius: 20px;
    color: #373435;
}

.nav-link.active {
    color: #373435 !important;
    background-color: var(--main-color);
}

.nav-link::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 8px;
    width: 10px;
    height: 10px;
    background-color: blue;
    border-radius: 10px;
    background-color: var(--main-color);
}

.nav-link.active::before {
    background-color: #FEFEFE;
}

.navbar-toggler {
    background-color: #E6E7E8;
}

.section-1 {
    background-color: var(--main-color);
    font-family: 'Segoe UI Regular';
}

.section-1 h4 {
    color: #FEFEFE;
}

.section-2 {
    font-family: 'Segoe UI Regular';
}

.section-2 .price-row {
    display: flex;
    justify-content: center;
}

.section-2 .price-row span {
    font-weight: bold;
    color: var(--main-color);
    font-size: 24px;
    padding-left: 24px;
    padding-right: 24px;
}

.section-2 .price-row span:first-child {
    border-right: 1px solid #BDBFC1;
}

.section-2 .tabs-row {
    display: flex;
    justify-content: center;
    font-family: bebas-neue;
    font-size: 32px;
}

.section-2 .tabs-row .tab-item {
    line-height: 32px;
    padding: 4px 16px;
    color: #A78F5A;
    border-radius: 20px;
    cursor: pointer;
}

.section-2 .tabs-row .tab-item.active {
    background-color: #A78F5A;
    color: #FEFEFE;
}

.section-main-data {
    background-color: #D2D3D5;
    background-repeat: no-repeat;
    background-position: right 50px center;
    background-size: 120px;
}

.input-group .input-group-text {
    border-color: #A78F5A;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
}

.input-group .input-group-text i {
    color: #A78F5A;
}

.input-group .form-control {
    border-color: #A78F5A;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

.input-group .form-control:focus {
    box-shadow: none;
}

.input-group .input-group-text {
    background-color: transparent;
}

input[type="text"],
input[type="number"] {
    background-color: transparent;
}

.section-title {
    font-family: 'bebas-neue';
    color: #00A859;
    font-size: 32px;
}

.section-title-2 {
    display: inline-block;
    font-family: 'bebas-neue';
    color: #A78F5A;
    font-size: 32px;
    background-color: #D2D3D5;
    padding: 6px 20px 2px;
    border-radius: 12px;
    line-height: 32px;
    text-decoration: none;
}

.section-title-3 {
    color: #373435;
    display: inline-block;
    background-color: #D2D3D5;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 20px;
    line-height: 20px;
    border-radius: 12px;
}

.section-data {
    background-color: #D2D3D5;
}

.form-check-input {
    background-color: #848688;
}

.form-check-input:checked {
    background-color: var(--main-color);
}

.form-range::-webkit-slider-thumb {
    background: var(--main-color);
}
  
.form-range::-moz-range-thumb {
    background: var(--main-color);
}
  
.form-range::-ms-thumb {
    background: var(--main-color);
}

.custom_range {
    position: relative;
    padding-top: 16px;
    padding-bottom: 16px;
}
.custom_range .min,
.custom_range .max,
.custom_range .current {
    position: absolute;
}
.custom_range .min {
    left: 0;
    bottom: 0;
}
.custom_range .max {
    right: 0;
    bottom: 0;
}
.custom_range .current {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-data .form-label {
    font-family: 'Segoe UI Regular';
    font-weight: bold;
    color: var(--main-color);
    text-transform: uppercase;
}

.custom_btn_success {
    font-family: 'bebas-neue';
    color: #FEFEFE;
    background-color: var(--main-color);
    font-size: 32px;
    line-height: 32px;
    padding: 6px 24px 2px;
    border-radius: 12px;
}

.custom_btn_success:hover {
    background-color: var(--main-color);
    color: #FEFEFE;
}

.custom_btn_color {
    font-family: 'bebas-neue';
    color: #FEFEFE;
    background-color: #A78F5A;
    font-size: 32px;
    line-height: 32px;
    padding: 14px 24px 10px;
    border-radius: 12px;
    border-left: 10px solid var(--main-color);
    border-right: 10px solid var(--main-color);
}

.custom_btn_color:hover {
    background-color: #A78F5A;
    color: #FEFEFE;
    border-left: 10px solid var(--main-color);
    border-right: 10px solid var(--main-color);
}

.section-info {
    background-color: #D2D3D5;
}

.section-info .info-text {
    font-weight: bold;
    font-size: 14px;
}

.section-info .info-text .img-container {
    width: 70px;
    margin-right: 16px;
}

.section-info .info-text .img-container img {
    max-width: 100%;
}

.section-services {
    background-color: #A78F5A;
}

.section-services .img-wrapper {
    width: 100px;
}

.section-services .img-wrapper img {
    max-width: 100%;
}

.section-services .text-wrapper {
    color: #FEFEFE;
}

.section-buttons {
    background-repeat: no-repeat;
    background-position: left 50px center;
    background-size: 100px;
}

.section-salary {
    background-image: url('./money_right.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
}

.section-amount {
    background-image: url('./money_left.png');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
}

footer {
    font-weight: bold;
    font-size: 20px;
    background-color: var(--main-color);
    color: #FEFEFE;
    width: 100%;
    padding: 16px;
    position: fixed;
    bottom: 0;
}

.section-terms .terms-list {
    padding-left: 0;
    list-style-type: none;
    list-style-position: inside;
}

.section-terms .terms-list li::before {
    content: '';
    background-color: #A78F5A;
    width: 10px;
    height: 10px;
    display: inline-block;
    margin-right: 10px;
    border-radius: 10px;
}

.section-terms .info-text {
    color: #A78F5A;
    font-weight: bold;
}

#success_modal .modal-body i {
    font-size: 36px;
    color: #00A859;
}

#success_modal .modal-body {
    font-size: 18px;
}

.chat-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #00A859;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 168, 89, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.chat-icon:hover {
    background-color: #00A859;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 168, 89, 0.4);
}

.chat-icon i {
    color: #FEFEFE;
    font-size: 24px;
}