



/* ================================ [01] HEADER START ================================ */
.header_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
    width: 1000px;
    margin: 0 auto;
}

.header_left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header_menu_mobile {
    margin-right: 8px;
    cursor: pointer;
    display: none;
}

.header_logo {
    margin-right: 40px;
}

.logo_svg {
    width: 100px;
    height: 34px;
    background-image: var(--logo-url);
    background-size: contain;
    background-repeat: no-repeat;
}

.header_center {
    margin-right: 40px;
}

.header_menu > li {
    display: inline-block;
    padding-right: 60px;
}

.header_menu > li:last-child {
    padding-right: 0;
}

.header_menu > li a {
    display: block;
    padding: 10px 0;
    color: var(--body-color);
    text-decoration: none;
    font-size: 1em;
    font-weight: 550;
}

.header_menu > li a:hover {
    color: var(--green-color);
}

.header_menu > li a i {
    margin-left: 2px;
    font-size: 1em;
    font-weight: 550;
}

.has_children {
    position: relative;
}

.menu_children {
    position: absolute;
    top: 40px;
    left: -30px;
    min-width: 200px;
    padding: 10px 15px;
    background-color: var(--white-color);
    border-radius: 5px;
    box-shadow: 2px 3px 2px rgba(0, 0, 0, 0.02);
    display: none;
}

.has_children:hover .menu_children {
    display: block;
}

.menu_children > li a {
    display: block;
    font-weight: 400;
    font-size: 0.92em;
    color: #494a50;
    padding: 5px 8px;
}

.menu_children > li a:hover {
    color: var(--green-color);
}

.menu_children li a::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-size: 1.05em;
    font-weight: 900;
    margin-right: 5px;
    opacity: 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.menu_children li a:hover::before {
    transform: translateX(0);
    opacity: 1;
}

.header_auth > li {
    display: inline-block;
    padding-left: 10px;
}

.header_auth > li:first-child {
    padding-left: 0;
}

.header_auth > li a {
    display: block;
    color: var(--body-color);
    text-decoration: none;
    font-size: 1em;
    font-weight: 550;
}

.header_sign {
    background-color: var(--primary-color);
    padding: 8px 20px;
    border: 1px solid transparent;
    border-radius: 5px;
    box-shadow: 2px 3px 2px rgba(0, 0, 0, 0.02);
}

.header_sign:hover {
    background-color: #75af6f;
}

.header_log {
    border: 1px solid #dadada;
    padding: 8px 20px;
    border-radius: 5px;
    box-shadow: 2px 3px 2px rgba(0, 0, 0, 0.02);
}

.header_log:hover {
    border: 1px solid var(--primary-color);
}
/* ================================ [01] HEADER END ================================ */

/* ================================ [02] CONTENT START ================================ */
/*------- Slider -------*/
.slider {
    background-color: var(--white-color);
    margin-top: 60px;
}

.slider_container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    padding: 40px 90px;
}

.slider_left {
    width: 50%;
    margin-top: 35px;
}

.slide_title {
    font-size: 4em;
    font-weight: 700;
    color: var(--black-2-color);
    width: 450px;
    line-height: 1.2;
}

.slide_desc {
    margin-top: 15px;
}

.slide_btn {
    margin-top: 30px;
}

.menu_slide > li a {
    background-color: var(--primary-color);
    color: var(--body-color);
    text-decoration: none;
    font-size: 1em;
    font-weight: 550;
    padding: 8px 20px;
    border: 1px solid transparent;
    border-radius: 5px;
    box-shadow: 2px 3px 2px rgba(0, 0, 0, 0.02);
}

.menu_slide > li a:hover {
    background-color: #75af6f;
}

.slider_right {
    width: 50%;
    display: flex;
    justify-content: flex-end;
}

.slide_img {
    width: 460px;
    height: 460px;
    background-color: #dcfad9;
    border-radius: 10px;
    box-shadow: 2px 3px 2px rgba(0, 0, 0, 0.2);
}

.slide_img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*------- /Slider -------*/

/*------- Why Us Choose -------*/
.section_flex {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    padding: 40px 90px;
}

.section_title {
    color: var(--black-2-color);
    font-size: 2.7em;
    line-height: 1.3;
    font-weight: 700;
    padding-bottom: 2px;
}

.section_header {
    width: 50%;
    margin-top: 40px;
    position: sticky;
    top: 80px;
}

.section_header > p {
    color: #444446;
    font-size: 1em;
}

.section_main {
    width: 50%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.box_img {
    width: 200px;
    height: 200px;
    margin-left: 25px;
    background-color: #e1fade;
    border-radius: 50%;
    margin-bottom: 10px;
}

.box_img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section_box {
    border: 1px solid #dadada;
    padding: 10px 15px;
    border-radius: 8px;
}

.box_title {
    margin-top: 5px;
    color: #7c7b7b;
}

.box_num {
    font-size: 1.2em;
    font-weight: 700;
    color: #7c7b7b;
}

.box_desc {
    font-size: 1em;
    color: #444446;
    margin-top: 5px;
}
/*------- /Why Us Choose -------*/

/*------- How sell -------*/
.section_sell {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 40px;
    padding: 60px 90px;
}

.sell_aside {
    position: sticky;
    top: 80px;
}

.summary_sell {
    background-color: #c7fdc1;
    box-shadow: 2px 3px 2px rgba(0, 0, 0, 0.02);
    border-radius: 8px;
    padding: 20px 30px;
}

.summary_box {
    margin-top: 10px;
}

.summary_box:first-child {
    margin-top: 0;
}

.summary_title > a {
    font-size: 1.2em;
    font-weight: 600;
    color: #3b6437;
}

.summary_bottom {
    margin-top: 6px;
}

.summary_bottom p {
    margin-top: 2px;
}

.summary_bottom p:first-child {
    margin-top: 0;
}

.summary_bottom a {
    font-size: 0.94em;
    color: #5c5e5b;
}

.sell_main {
    width: 70%;
}

.sell_main_box {
    margin-top: 25px;
}

.sell_main_box:first-child {
    margin-top: 0;
}

.box_sell_title {
    font-size: 2.5em;
    color: #3b6437;
}

.box_sell_subtitle {
    font-size: 1.6em;
    color: #3b6437;
}

.sell_para {
    color: #6c7778;
    margin-top: 10px;
}

.sell_menu {
    color: #6c7778;
    margin-top: 10px;
    margin-left: 30px;
    list-style: circle;
}

.sell_menu > li {
    margin-top: 3px;
}

.sell_menu > li:first-child {
    margin-top: 0;
}

.sell_para:first-child {
    margin-top: 0;
}

.box_sell_desc {
    margin-top: 10px;
}

.sell_btn {
    margin-top: 25px;
    padding-bottom: 10px;
}

.sell_table {
    width: 100%;
    border-collapse: collapse;
    color: #30323a;
    text-align: center;
    margin-top: 15px;
}

.sell_table thead {
    background-color: #aac7a7;
}

.sell_table thead th {
    padding: 8px 10px;
    white-space: nowrap;
    font-size: 1.05em;
    color: #30323a;
}

.sell_table tbody tr:nth-child(even) {
    background-color: #e9fae8;
}

.sell_table tbody td {
    padding: 8px 10px;
    font-size: 0.94em;
    color: #6c7778;
}
/*------- /How sell -------*/
/* ================================ [02] CONTENT END ================================ */

/* ================================ [03] MENU MOBILE START ================================ */
.menu_mobile {
    display: none;
}
/* ================================ [03] MENU MOBILE END ================================ */

/* ================================ [04] FOOTER START ================================ */
.footer_top {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.footer_menu > li {
    display: inline-block;
    margin-right: 20px;
}

.footer_menu > li:last-child {
    margin-right: 0;
}

.footer_menu > li a {
    font-size: 0.9em;
    display: block;
}

.footer_copyright {
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
}

.footer_copyright > p {
    font-size: 0.9em;
    color: #807e7e;
}
/* ================================ [04] FOOTER END ================================ */

/* ================================ [05] TERMS POLICY START ================================ */
.termes_container {
    padding: 60px 90px;
}

.termes_box {
    margin-top: 45px;
}

.termes_box:first-child {
    margin-top: 0;
}

.terms_box_title {
    padding-bottom: 15px;
}

.termes_heading {
    color: var(--black-2-color);
    font-size: 1.8em;
}

.termes_box > p:first-of-type {
    margin-top: 0;
}

.termes_box > p {
    font-size: 1em;
    color: #444446;
    margin-top: 15px;
}

.sub_termes_box {
    margin-top: 30px;
}

.sub_terms_box_title {
    padding-bottom: 12px;
}

.sub_termes_heading {
    font-size: 1.05em;
    color: var(--black-2-color);
    text-transform: uppercase;
}

.sub_termes_box > p:first-of-type {
    margin-top: 0;
}

.sub_termes_box > p {
    font-size: 1em;
    color: #444446;
    margin-top: 15px;
}
/* ================================ [05] TERMS POLICY END ================================ */

/* ================================ [06] COOKIES START ================================ */
.cookies {
    background-color: #e5f8dc;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    box-shadow: 2px 3px 2px rgba(0, 0, 0, 0.02);
}

.section_cookies {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 8px 95px;
}

.desc_cookies {
    font-size: 1em;
    color: #404042;
    width: 800px;
    margin: 0 auto;
}

.cookies_btn {
    background-color: var(--primary-color);
    color: var(--body-color);
    font-size: 0.9em;
    font-weight: 550;
    padding: 10px 20px;
    box-shadow: 2px 3px 2px rgba(0, 0, 0, 0.02);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.cookies_btn:hover {
    background-color: #75af6f;
}

.btn_cookies {
    margin-top: 15px;
}

.img_cookies {
    height: 120px;
    width: 120px;
}

.img_cookies > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* ================================ [06] COOKIES END ================================ */
