* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "cormorant_regular";
    src: url(../font/Cormorant_Garamond/CormorantGaramond-Regular.ttf);
}

@font-face {
    font-family: "cormorant_medium";
    src: url(../font/Cormorant_Garamond/CormorantGaramond-Medium.ttf);
}

@font-face {
    font-family: "cormorant_semibold";
    src: url(../font/Cormorant_Garamond/CormorantGaramond-SemiBold.ttf);
}

@font-face {
    font-family: "cormorant_bold";
    src: url(../font/Cormorant_Garamond/CormorantGaramond-Bold.ttf);
}

@font-face {
    font-family: "helvetica_regular";
    src: url(../font/helvetica/Helvetica.ttf);
}

@font-face {
    font-family: "helvetica_bold";
    src: url(../font/helvetica/Helvetica-Bold.ttf);
}

:root {
    --cormorant_regular: "cormorant_regular";
    --cormorant_medium: "cormorant_medium";
    --cormorant_semibold: "cormorant_semibold";
    --cormorant_bold: "cormorant_bold";
    --helvetica_regular: "helvetica_regular";
    --helvetica_bold: "helvetica_bold";

    --fs_10: 10px;
    --fs_12: 12px;
    --fs_14: 14px;
    --fs_15: 15px;
    --fs_16: 16px;
    --fs_18: 18px;
    --fs_20: 20px;
    --fs_22: 22px;
    --fs_24: 24px;
    --fs_26: 26px;
    --fs_28: 28px;
    --fs_30: 30px;
    --fs_32: 32px;
    --fs_34: 34px;
    --fs_35: 35px;
    --fs_36: 36px;
    --fs_38: 38px;
    --fs_40: 40px;
    --fs_42: 42px;
    --fs_44: 44px;
    --fs_45: 45px;
    --fs_46: 46px;
    --fs_48: 48px;
    --fs_50: 50px;
    --fs_52: 52px;
    --fs_54: 54px;
    --fs_56: 56px;
    --fs_58: 58px;
    --fs_60: 60px;
    --fs_64: 64px;

    --bg_color_1: #000000;
    --bg_color_2: #FFFFFF;
    --bg_color_3: #518B1C;
    --bg_color_4: #6B6B6B;
    --bg_color_5: #D1E4BF;
    --bg_color_6: #F1F3EE;


    --text_color_1: #000000;
    --text_color_2: #FFFFFF;
    --text_color_3: #518B1C;
    --text_color_4: #6B6B6B;
    --text_color_5: #D1E4BF;
    --text_color_6: #5E5B5B;

}

.main_unique_part {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
}

.navbar {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.navbar-toggler {
    border: none;
    color: var(--text_color_3);
}

.navbar .navbar-nav .nav-item .nav-link {
    position: relative;
    display: inline-block;
    color: var(--text_color_4);
    font-family: var(--helvetica_regular);
    font-size: var(--fs_18);
    margin: 0 12px;
    transition: color 0.3s ease;
    letter-spacing: 1%;
}

.navbar .navbar-nav .nav-item .nav-link:hover {
    color: #000;
}

.navbar .navbar-nav .nav-item .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--bg_color_3);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.navbar .navbar-nav .nav-item .nav-link:hover::after,
.navbar .navbar-nav .nav-item .nav-link.active::after {
    width: 60%;
}

.navbar .navbar-nav .nav-item .nav-link.active {
    color: var(--text_color_1);
}

.navbar .navbar-nav .nav-item .login {
    font-family: var(--helvetica_bold);
}

.navbar .request_brand_part .request_brand_briefing_btn {
    font-family: var(--helvetica_regular);
    font-size: var(--fs_12);
    color: var(--text_color_4);
    border: 1px solid var(--bg_color_3);
    border-radius: 20px;
    margin-left: 15px;
    text-wrap-mode: nowrap;
    transition: all 0.4s ease;
    padding: 8px 15px;
}

.navbar .request_brand_part .request_brand_briefing_btn:hover{
    background-color: var(--bg_color_3);
    color: var(--text_color_2);
}

.privacy_first_section {
    padding: 50px 0;
}

.privacy_first_section .main_title_part .title {
    font-family: var(--cormorant_medium);
    font-size: var(--fs_64);
    color: var(--text_color_1);
    display: flex;
    align-items: center;
}

/* .privacy_first_section .main_title_part .title .favicon_first {
    height: 50px;
    margin-right: 10px;
}

.privacy_first_section .main_title_part .title .favicon_last {
    height: 50px;
    margin-left: 10px;
} */

.privacy_first_section .main_title_part .desc {
    font-family: var(--helvetica_regular);
    font-size: var(--fs_18);
    color: var(--text_color_4);
    margin-bottom: 0;
}

.privacy_card_section .main_card {
    background: rgba(79, 136, 26, 0.02);
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.25);
    border-radius: 14px;
    padding: 30px;
}

.privacy_second_section .short_info_part {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.privacy_second_section .short_info_part p {
    border: 1px solid rgba(79, 136, 26, 0.4);
    border-radius: 20px;
    margin-bottom: 0;
    font-family: var(--helvetica_regular);
    font-size: var(--fs_16);
    color: var(--text_color_4);
    width: fit-content;
    padding: 3px 14px;
    display: flex;
    align-items: center;
}

.privacy_second_section .short_info_part p span {
    font-family: var(--helvetica_bold);
}

.privacy_second_section .short_info_part p a {
    font-family: var(--helvetica_bold);
    text-decoration: none;
    color: var(--text_color_4);
}

.privacy_third_section {
    margin-top: 30px;
}

.privacy_third_section .title_part h3 {
    font-size: var(--fs_35);
    color: var(--text_color_1);
    font-family: var(--cormorant_medium);
}

.privacy_third_section .info ul li {
    font-family: var(--helvetica_regular);
    font-size: var(--fs_18);
    color: var(--text_color_4);
}

.privacy_third_section .info p {
    font-family: var(--helvetica_regular);
    font-size: var(--fs_18);
    color: var(--text_color_4);
}

.privacy_third_section .note_part {
    background: rgba(79, 136, 26, 0.15);
    box-shadow: -2px 0px 0px rgba(0, 0, 0, 0.25);
    border-radius: 9px;
}

.privacy_third_section .note_part {
    margin-top: 25px;
}

.privacy_third_section .note_part p {
    font-family: var(--helvetica_regular);
    font-size: var(--fs_14);
    color: var(--text_color_4);
    margin-bottom: 0;
    padding: 10px 15px;
}

.privacy_third_section .note_part p span {
    font-family: var(--helvetica_bold);
}

footer {
    padding: 30px 0 30px 0;
}

footer .left_part a {
    font-family: var(--helvetica_regular);
    font-size: var(--fs_15);
    color: var(--text_color_4);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

footer .left_part a:hover {
    color: var(--text_color_3);
}

footer .right_part {
    display: flex;
    justify-content: end;
    gap: 30px;
}

footer .right_part a {
    font-family: var(--helvetica_regular);
    font-size: var(--fs_15);
    color: var(--text_color_4);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

footer .right_part a:hover {
    color: var(--text_color_3);
}

.login_first_section {
    padding: 50px 0;
}

.login_first_section .card {
    border: none;
    height: 100%;
    background: rgba(79, 136, 26, 0.02);
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.25);
    border-radius: 14px;
    padding: 30px;
}

/* .login_first_section .card .left_side_part {
    background: rgba(79, 136, 26, 0.02);
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.25);
    border-radius: 14px;
    padding: 30px;
} */

.login_first_section .card .left_side_part .title {
    font-size: var(--fs_45);
    color: var(--text_color_1);
    font-family: var(--cormorant_medium);
}

.login_first_section .card .left_side_part .desc {
    font-family: var(--helvetica_regular);
    color: var(--text_color_4);
    font-size: var(--fs_18);
    letter-spacing: 5%;
}

.login_first_section .card .left_side_part .desc1 {
    font-family: var(--helvetica_regular);
    color: var(--text_color_4);
    font-size: var(--fs_18);
    letter-spacing: 5%;
    margin-bottom: 0;
}

.login_first_section .card .left_side_part .desc1 span {
    font-family: var(--helvetica_bold);
}

/* .login_first_section .card .right_side_part {
    background: rgba(79, 136, 26, 0.02);
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.25);
    border-radius: 14px;
    padding: 10px 30px 30px 30px;
} */

.login_first_section .card .right_side_part .field_part {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.login_first_section .card .right_side_part .field_part label {
    font-family: var(--helvetica_regular);
    color: var(--text_color_4);
    font-size: var(--fs_15);
    text-transform: uppercase;
    letter-spacing: 5%;
    margin-bottom: 5px;
}

.login_first_section .card .right_side_part .field_part input {
    border-radius: 14px;
    border: 1px solid var(--bg_color_3);
    padding: 10px 15px;
    font-family: var(--helvetica_regular);
    color: var(--text_color_4);
    font-size: var(--fs_15);
}

.login_first_section .card .right_side_part .field_part input:focus {
    outline: none;
}

.login_first_section .card .right_side_part .other_option {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login_first_section .card .right_side_part .other_option .remember_part {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.login_first_section .card .right_side_part .other_option .remember_part .custom-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--bg_color_3);
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.login_first_section .card .right_side_part .other_option .remember_part .custom-checkbox:checked {
    background-color: var(--bg_color_3);
}

.login_first_section .card .right_side_part .other_option .remember_part .custom-checkbox:checked::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid var(--bg_color_2);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.login_first_section .card .right_side_part .other_option .remember_part label {
    cursor: pointer;
    font-size: var(--fs_15);
    color: var(--text_color_4);
    font-family: var(--helvetica_regular);
}

.login_first_section .card .right_side_part .other_option .forgot_password_part .forgot_pass {
    font-size: var(--fs_15);
    font-family: var(--helvetica_regular);
    color: var(--text_color_3);
    letter-spacing: 3%;
}

.login_first_section .card .right_side_part .signin_button_part .signin_btn {
    color: var(--text_color_6);
    font-family: var(--helvetica_regular);
    font-size: var(--fs_20);
    border-radius: 30px;
    padding: 8px 20px;
    background-color: var(--bg_color_5);
    width: 100%;
    margin-top: 25px;
    transition: all 0.4s ease;
}

.login_first_section .card .right_side_part .signin_button_part .signin_btn:hover {
    background-color: var(--bg_color_3);
    color: var(--text_color_2);
}

.login_first_section .card .right_side_part .dont_access_part {
    margin-top: 120px;
}

.login_first_section .card .right_side_part .dont_access_part span {
    font-family: var(--helvetica_regular);
    font-size: var(--fs_15);
    color: var(--text_color_4);
}

.login_first_section .card .right_side_part .dont_access_part a {
    font-family: var(--helvetica_regular);
    font-size: var(--fs_15);
    color: var(--text_color_3);
}

.login_first_section .card .right_side_part .dont_access_part .privacy_text {
    font-family: var(--helvetica_regular);
    font-size: var(--fs_15);
    color: var(--text_color_4);
    margin-bottom: 0;
}

.contact_first_section {
    padding: 50px 0;
}

.contact_first_section .main_title_part .title {
    font-family: var(--cormorant_medium);
    font-size: var(--fs_64);
    color: var(--text_color_1);
    display: flex;
    align-items: center;
}

.contact_first_section .main_title_part .desc,
.contact_first_section .main_title_part .desc1 {
    font-family: var(--helvetica_regular);
    font-size: var(--fs_18);
    color: var(--text_color_4);
    margin-bottom: 0;
}

.contact_second_section .card {
    border: none;
}

.contact_second_section .left_side_main_part {
    background: rgba(79, 136, 26, 0.02);
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.25);
    border-radius: 14px;
    padding: 30px;
}

.contact_second_section .left_side_main_part .title {
    font-family: var(--cormorant_regular);
    color: var(--text_color_1);
    font-size: var(--fs_35);
}

.contact_second_section .left_side_main_part .desc {
    font-family: var(--helvetica_regular);
    color: var(--text_color_4);
    font-size: var(--fs_16);
    margin-bottom: 0;
    margin-top: 10px;
}

.contact_second_section .left_side_main_part .field_part {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.contact_second_section .left_side_main_part .field_part label {
    font-family: var(--helvetica_regular);
    color: var(--text_color_4);
    font-size: var(--fs_15);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
}

.contact_second_section .left_side_main_part .field_part input,
.contact_second_section .left_side_main_part .field_part select,
.contact_second_section .left_side_main_part .field_part textarea {
    border-radius: 14px;
    border: 1px solid var(--bg_color_3);
    padding: 10px 15px;
    font-family: var(--helvetica_regular);
    color: var(--text_color_4);
    font-size: var(--fs_15);
    background: #fff;
}

.contact_second_section .left_side_main_part .field_part textarea {
    resize: vertical;
    min-height: 120px;
}

.contact_second_section .left_side_main_part .field_part input:focus,
.contact_second_section .left_side_main_part .field_part select:focus,
.contact_second_section .left_side_main_part .field_part textarea:focus {
    outline: none;
    border-color: var(--bg_color_3);
}

.contact_second_section .left_side_main_part .contact_button_part {
    margin-top: 25px;
}

.contact_second_section .left_side_main_part .contact_btn {
    width: 100%;
    border-radius: 30px;
    padding: 10px 20px;
    font-family: var(--helvetica_regular);
    font-size: var(--fs_18);
    background: var(--bg_color_5);
    color: var(--text_color_6);
    transition: all 0.3s ease;
    border: none;
}

.contact_second_section .left_side_main_part .contact_btn:hover {
    background: var(--bg_color_3);
    color: var(--text_color_2);
}

.contact_second_section .left_side_main_part .note_part {
    background: rgba(79, 136, 26, 0.15);
    box-shadow: -2px 0px 0px rgba(0, 0, 0, 0.25);
    border-radius: 9px;
    margin-top: 20px;
}

.contact_second_section .left_side_main_part .note_part p {
    font-family: var(--helvetica_regular);
    font-size: var(--fs_14);
    color: var(--text_color_4);
    margin-bottom: 0;
    padding: 10px 15px;
}

.contact_second_section .left_side_main_part .note_part p span {
    font-family: var(--helvetica_bold);
}

.contact_second_section .right_side_main_part .top_part {
    background: rgba(79, 136, 26, 0.02);
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.25);
    border-radius: 14px;
    padding: 30px;
}

.contact_second_section .right_side_main_part .top_part .main_heading .desc {
    font-family: var(--helvetica_regular);
    font-size: var(--fs_18);
    color: var(--text_color_4);
    margin-bottom: 5px;
}

.contact_second_section .right_side_main_part .top_part .main_heading .title {
    font-family: var(--cormorant_regular);
    font-size: var(--fs_35);
    color: var(--text_color_1);
}

.contact_second_section .right_side_main_part .top_part .info {
    gap: 15px;
    display: flex;
    flex-direction: column;
}

.contact_second_section .right_side_main_part .top_part .info .datas {
    border: 1px solid var(--bg_color_3);
    padding: 10px 15px;
    border-radius: 14px;
}

.contact_second_section .right_side_main_part .top_part .info .datas .head {
    font-size: var(--fs_16);
    font-family: var(--helvetica_bold);
    color: var(--text_color_4);
    margin-bottom: 0;
}

.contact_second_section .right_side_main_part .top_part .info .datas .sub {
    font-size: var(--fs_14);
    font-family: var(--helvetica_regular);
    color: var(--text_color_4);
    margin-bottom: 0;
    text-decoration: none;
}

.contact_second_section .right_side_main_part .bottom_part {
    background: rgba(79, 136, 26, 0.02);
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.25);
    border-radius: 14px;
    padding: 30px;
    margin-top: 30px;
}

.contact_second_section .right_side_main_part .bottom_part .main_heading .desc {
    font-family: var(--helvetica_regular);
    font-size: var(--fs_18);
    color: var(--text_color_4);
    margin-bottom: 5px;
}

.contact_second_section .right_side_main_part .bottom_part .main_heading .title {
    font-family: var(--cormorant_regular);
    font-size: var(--fs_35);
    color: var(--text_color_1);
}

.contact_second_section .right_side_main_part .bottom_part .info p {
    font-size: var(--fs_18);
    font-family: var(--helvetica_regular);
    color: var(--text_color_4);
}

.contact_second_section .right_side_main_part .bottom_part .info ul li {
    font-size: var(--fs_18);
    font-family: var(--helvetica_regular);
    color: var(--text_color_4);
}

.homepage_first_section {
    padding: 70px 0 30px 0;
}

.homepage_first_section .left_side_part .desc {
    font-family: var(--helvetica_regular);
    color: var(--text_color_4);
    font-size: var(--fs_14);
}

.homepage_first_section .left_side_part .desc1 {
    font-family: var(--helvetica_regular);
    color: var(--text_color_4);
    font-size: var(--fs_14);
}

.homepage_first_section .left_side_part .title {
    font-family: var(--cormorant_medium);
    font-size: var(--fs_64);
    color: var(--text_color_1);
}

.homepage_first_section .left_side_part .other_title {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
}

.homepage_first_section .left_side_part .other_title p {
    color: var(--text_color_1);
    font-family: var(--helvetica_regular);
    font-size: var(--fs_15);
    margin-bottom: 0;
    border: 1px solid var(--bg_color_3);
    border-radius: 20px;
    padding: 5px 10px;
}

.homepage_first_section .right_side_part {
    background: rgba(206, 172, 105, 0.05);
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.25);
    border-radius: 14px;
    padding: 20px;
}

.homepage_first_section .right_side_part .title {
    font-family: var(--cormorant_medium);
    font-size: var(--fs_32);
    color: var(--text_color_1);
}

.homepage_first_section .right_side_part .desc {
    font-family: var(--helvetica_regular);
    font-size: var(--fs_14);
    color: var(--text_color_4);
    letter-spacing: 5%;
}

.homepage_first_section .right_side_part .other_title {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.homepage_first_section .right_side_part .other_title p {
    font-family: var(--helvetica_regular);
    font-size: var(--fs_12);
    color: var(--text_color_1);
    background: rgba(79, 136, 26, 0.05);
    border: 0.5px solid #4F881A;
    box-shadow: 0px 1px 1.6px rgba(0, 0, 0, 0.25);
    border-radius: 14px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.homepage_first_section .right_side_part .other_title p span {
    color: var(--bg_color_3);
    margin-right: 4px;
}

.homepage_first_section .right_side_part .bottom_part {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

.homepage_first_section .right_side_part .bottom_part span {
    font-family: var(--helvetica_regular);
    font-size: var(--fs_12);
    color: var(--text_color_4);
}

.greenline {
    border: 1.8px solid var(--bg_color_3);
}

.homepage_second_section {
    padding: 50px 0;
}

.homepage_second_section .top_part .left_part .title {
    font-family: var(--cormorant_medium);
    font-size: var(--fs_35);
    color: var(--text_color_1);
}

.homepage_second_section .top_part .right_part .desc {
    margin-bottom: 0;
    font-family: var(--helvetica_regular);
    font-size: var(--fs_15);
    color: var(--text_color_4);
}

.homepage_second_section .bottom_part {
    margin-top: 20px;
}

.homepage_second_section .bottom_part .card {
    border: none;
    background: rgba(79, 136, 26, 0.02);
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.25);
    border-radius: 14px;
    padding: 20px;
    height: 100%;
}

.homepage_second_section .bottom_part .card .subtitle {
    display: flex;
    align-items: center;
}

.homepage_second_section .bottom_part .card .subtitle span {
    font-size: var(--fs_15);
    margin-right: 15px;
    color: var(--text_color_1);
    font-family: var(--helvetica_regular);
}

.homepage_second_section .bottom_part .card .subtitle::after {
    content: "";
    flex: 1;
    height: 2px;
    background-color: var(--bg_color_5);
}

.homepage_second_section .bottom_part .card .title {
    font-size: var(--fs_20);
    font-family: var(--cormorant_semibold);
    color: var(--text_color_1);
    margin-bottom: 10px;
}

.homepage_second_section .bottom_part .card .desc {
    font-family: var(--helvetica_regular);
    font-size: var(--fs_15);
    color: var(--text_color_4);
    margin-bottom: 0;
}

.homepage_third_section {
    padding: 50px 0;
}

.homepage_third_section .top_part .left_part .title {
    font-family: var(--cormorant_medium);
    font-size: var(--fs_35);
    color: var(--text_color_1);
}

.homepage_third_section .top_part .right_part .desc {
    margin-bottom: 0;
    font-family: var(--helvetica_regular);
    font-size: var(--fs_15);
    color: var(--text_color_4);
}

.homepage_third_section .bottom_part {
    margin-top: 30px;
}

.homepage_third_section .bottom_part .card {
    background: rgba(79, 136, 26, 0.02);
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.25);
    border-radius: 14px;
    border: none;
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: start;
}

.homepage_third_section .bottom_part .card .number_part {
    border: 1.5px solid var(--bg_color_3);
    padding: 8px 15px;
    border-radius: 6px;
    background-color: #EFEFEF;
    color: var(--text_color_1);
    font-family: var(--helvetica_regular);
    font-size: var(--fs_15);
    margin-bottom: 0;
}

.homepage_third_section .bottom_part .card .infos {
    margin-left: 15px;
}

.homepage_third_section .bottom_part .card .infos .title {
    font-family: var(--helvetica_regular);
    font-size: var(--fs_15);
    color: var(--text_color_1);
    margin-bottom: 0;
}

.homepage_third_section .bottom_part .card .infos .desc {
    font-family: var(--helvetica_regular);
    font-size: var(--fs_15);
    color: var(--text_color_4);
    margin-bottom: 0;
}

.homepage_fourth_section {
    padding: 50px 0;
}

.homepage_fourth_section .top_part .left_part .title {
    font-family: var(--cormorant_medium);
    font-size: var(--fs_35);
    color: var(--text_color_1);
}

.homepage_fourth_section .top_part .right_part .desc {
    margin-bottom: 0;
    font-family: var(--helvetica_regular);
    font-size: var(--fs_15);
    color: var(--text_color_4);
}

.homepage_fourth_section .bottom_part {
    margin-top: 20px;
}

.homepage_fourth_section .bottom_part .card {
    border: none;
    background: rgba(79, 136, 26, 0.02);
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.25);
    border-radius: 14px;
    padding: 20px;
    height: 100%;
}

.homepage_fourth_section .bottom_part .card .subtitle {
    display: flex;
    align-items: center;
}

.homepage_fourth_section .bottom_part .card .subtitle span {
    font-size: var(--fs_15);
    margin-right: 15px;
    color: var(--text_color_1);
    font-family: var(--helvetica_regular);
}

.homepage_fourth_section .bottom_part .card .subtitle::after {
    content: "";
    flex: 1;
    height: 2px;
    background-color: var(--bg_color_5);
}

.homepage_fourth_section .bottom_part .card .title {
    font-size: var(--fs_20);
    font-family: var(--cormorant_semibold);
    color: var(--text_color_1);
    margin-bottom: 10px;
}

.homepage_fourth_section .bottom_part .card .desc {
    font-family: var(--helvetica_regular);
    font-size: var(--fs_15);
    color: var(--text_color_4);
    margin-bottom: 0;
}

.homepage_fifth_section {
    padding: 50px 0;
}

.homepage_fifth_section .card {
    border: none;
    background: rgba(79, 136, 26, 0.02);
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.25);
    border-radius: 14px;
    padding: 20px;
}

.homepage_fifth_section .card .left_part .title {
    margin-bottom: 0;
    font-family: var(--cormorant_medium);
    font-size: var(--fs_35);
    color: var(--text_color_1);
}

.homepage_fifth_section .card .left_part .desc {
    margin-bottom: 0;
    font-family: var(--helvetica_regular);
    font-size: var(--fs_15);
    color: var(--text_color_4);
}

.homepage_fifth_section .card .right_part {
    display: flex;
    justify-content: end;
    align-items: center;
    height: 100%;
}

.homepage_fifth_section .card .right_part .email_text {
    background: rgba(79, 136, 26, 0.1);
    border-radius: 30px;
    border: 1px solid var(--bg_color_3);
    font-family: var(--helvetica_regular);
    font-size: var(--fs_15);
    color: var(--text_color_1);
    padding: 7px 14px;
    text-decoration: none;
}

.value_first_section .left_side_part {
    background-color: var(--bg_color_6);
    width: 100%;
    height: 100%;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value_first_section .left_side_part button {
    border-radius: 14px;
    padding: 5px 10px;
    font-family: var(--helvetica_regular);
    font-size: var(--fs_24);
    border: none;
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.25);
    background: rgba(79, 136, 26, 0.2);
    color: var(--text_color_6);
}

.value_first_section .left_side_part button.active {
    background: rgba(79, 136, 26, 0.4);
    color: var(--text_color_1);
}

.value_first_section .right_side_part {
    padding: 50px 0;
}

.value_first_section .right_side_part table {
    font-size: var(--fs_20);
    color: var(--text_color_1);
    font-family: var(--helvetica_regular);
}

.value_first_section .right_side_part table th {
    font-size: var(--fs_20);
    color: var(--text_color_1);
    font-family: var(--helvetica_bold);
}

.value_first_section .right_side_part table td {
    font-size: var(--fs_18);
}