@import "reset.css";
@import "fonts.css";
@import "slick.css";

/**
--------------------------------------------------------------------------------------
------------------------ ************ Public Css ************ ------------------------
--------------------------------------------------------------------------------------
**/

html {
    scroll-behavior: smooth;
}

.container {
    width: 1200px;
    margin: 0 auto;
}

.container-fluid {
    width: 100%;
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

a {
    text-decoration: none;
    color: #000;
}

body {
    font-family: IRANSansX;
    background-color: #ffffff;
    color: #484747;
}

img {
    width: 100%;
    height: auto;
    display: block;
}

/* --------- Header --------- */
#support {
    width: 48px;
    height: 48px;
    position: fixed;
    right: 48px;
    bottom: 40px;
    background-color: #801323;
    border-radius: 100%;
    padding: 8px;
    box-shadow: 0 0 10px #00000033;
    z-index: 99999999;
}

#header {
    transition: 0.3s ease;
}

#header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

#header_abs {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

#header_abs.sticky {
    position: fixed;
    top: 0;
    left: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.logo {
    width: 116px;
    float: right;
    padding: 16px 0;
}

.header_cta {
    float: left;
    margin: 20px 0 0 0;
}

.header_cta a {
    border: 1.5px solid #801323;
    color: #801323;
    border-radius: 8px;
    padding: 8px 16px;
    display: block;
    font-size: 16px;
    font-weight: 500;
    transition: 0.5s ease;
}

.header_cta a:hover {
    background-color: #FAEBED;
    color: #801323;
}

.header_cta a:active {
    background-color: #EBC6CC;
    color: #801323;
}

.header_cta a:focus {
    box-shadow: 2px 2px 10px #FFE6EA;
}

/* --------- Mega Menu --------- */
.main_menu {
    float: right;
    padding: 30px 50px 0 0;
}

.main_menu ul li {
    display: inline-block;
    padding: 0 0 24px 0;
    margin: 0 30px;
    border-bottom: 2px solid transparent;
}

.main_menu ul li a {
    font-weight: 500;
}

.main_menu > ul > li:hover {
    border-bottom: 2px solid #801323;
}

.main_menu > ul > li:hover > a {
    color: #801323;
}

.main_menu > ul > li:after {
    content: "";
    display: inline-block;
    width: 13px;
    height: 13px;
    background-image: url(../images/arrow-menu.svg);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin: 3px 10px 0 0;
}

.main_menu > ul > li:hover::after {
    background-image: url(../images/arrow-menu-hover.svg);
}

.mega_menu {
    position: absolute;
    background: #ffffff;
    padding: 40px 0;
    display: none;
    z-index: 999999;
    right: 0;
    left: 0;
    top: 80px;
    border-top: 1.5px solid #C9C9C9;
    box-shadow: 0 14px 100px -40px rgba(0, 0, 0, 0.25);
}

.main_nav > li:hover > .mega_menu {
    display: block;
    animation: fadeIn 0.25s ease-in-out;
}

.mega_menu_container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 80px;
    padding: 0 40px;
}

.mega_menu .menu-column {
    min-width: 300px;
    padding: 0;
    margin: 0;
    position: relative;
}

.menu_hover {
    position: relative;
}

.menu_hover:hover {
    color: #a00000;
    background-color: #FAEBED;
}

.menu_hover:hover .item_product_title,
.menu_hover:hover .item_product_excerpt {
    color: #a00000;
}

.menu_hover:hover::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 15px;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url("../images/arrow-hover.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.mega_menu_title {
    font-size: 14px;
    color: #939393;
    font-weight: 500;
    margin-bottom: 10px;
    padding: 0 2px 0 0;
}

.mega_menu_title a {
    color: #939393;
    text-decoration: none;
}

.mega_menu .menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mega_menu .menu-column ul li a {
    display: block;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
    padding: 4px;
    position: relative;
}

.mega_menu .mega_menu_container .sub-menu .menu-column ul li {
    padding: 0;
    margin: 0;
    border: unset;
    display: unset;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.item_product_title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px 0;
}

.item_product_title img {
    width: 16px;
    display: inline-block;
    vertical-align: middle;
}

.item_product_excerpt {
    max-width: 214px;
    font-size: 12px;
    padding: 0 20px 0 0;
}

.menu_open {
    display: none;
    cursor: pointer;
    font-size: 15px;
    float: left;
    border: 1.5px solid #801323;
    color: #801323;
    border-radius: 8px;
    padding: 8.5px;
    margin: 20px 8px 0 0;
}

.mobile_menu_overlay {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 9999;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    overflow-y: auto;
    padding: 16px;
}

.mobile_menu_overlay.active {
    display: flex;
}

.mobile_menu_header {
    width: 100%;
    margin: 0 0 26px 0;
}

.mobile_nav_logo {
    float: right;
    width: 93px;
}

.menu_close {
    float: left;
    border: 1.5px solid #801323;
    color: #801323;
    border-radius: 8px;
    padding: 8px;
}

.mobile_nav {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.mobile_nav > li {
    width: 100%;
    position: relative;
}

.mobile_nav > li > a {
    display: block;
    color: #1A1A1A;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 0;
}

.mobile_nav > li > a:after {
    content: "";
    position: absolute;
    width: 13px;
    height: 13px;
    background-image: url(../images/arrow-menu.svg);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin: 3px 10px 0 0;
    left: 16px;
    top: 18px;
}

/* زیرمنو */
.mobile_nav .mega_menu {
    display: none;
    flex-direction: column;
    transition: all 0.3s ease;
    padding: 16px 0;
    border-top: 2px solid #801323;
    box-shadow: unset;
}

.mobile_nav .menu-item-open > .mega_menu {
    display: flex;
    position: unset;
}

.mobile_nav .mega_menu a {
    font-size: 16px;
    color: #333;
    text-decoration: none;
    padding: 8px 0;
    display: block;
}

.mobile_nav .mega_menu_container {
    padding: 0;
}

/* --------- Mega Menu --------- */
/* --------- Header --------- */
/* --------- 404 --------- */
#page_404 {
    padding: 70px 0;
}

.image_404 {
    width: 175px;
    margin: 0 auto;
}

.title_404 {
    color: #801323;
    font-size: 80px;
    font-weight: 800;
    text-align: center;
}

.subtitle_404 {
    color: #1A1A1A;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
}

.excerpt_404 {
    color: #797979;
    font-size: 14px;
    text-align: center;
    margin: 15px 0 0 0;
}

/* --------- 404 --------- */
/* --------- Page & Single--------- */
#main_page {
    padding: 100px 0;
}

.breadcrumb {
    font-size: 16px;
    margin-bottom: 64px;
}

.breadcrumb a {
    color: #484747;
    font-weight: 500;
}

.breadcrumb a:hover {
    color: #801323;
    text-decoration: underline;
}

.breadcrumb .separator {
    margin: 0 12px;
    color: #ADADAD;
}

.breadcrumb .current {
    font-weight: 500;
}

.page_title {
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 8px 0;
}

.page_content {
    font-size: 16px;
    line-height: 28px;
    /*text-align: justify;*/
}

.page_content h1 {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 8px 0;
}

.page_content h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.page_content h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.page_content h4 {
    font-size: 16px;
    margin: 0 0 10px 0;
}

.page_content h5 {
    font-size: 14px;
    margin: 0 0 10px 0;
}

.page_content h6 {
    font-size: 12px;
    margin: 0 0 10px 0;
}

.page_content a {
    color: #801323;
    text-decoration: underline;
}

.page_content p, .page_content ol, .page_content ul {
    margin-bottom: 8px;
}

.page_content ul li {
    list-style: disc;
    list-style-position: inside;
}

.page_content ol li {
    list-style-position: inside;
}

.page_content img {
    width: auto !important;
    margin: 20px 0;
    border-radius: 5px;
}

.page_content a img {
    display: block;
    margin: 20px auto;
    border-radius: 5px;
}

.alignleft {
    float: left;
    margin: 0 15px 15px 0 !important;
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.alignright {
    float: right;
    margin: 5px 0 15px 15px !important;
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.page_excerpt_title {
    font-size: 20px;
    font-weight: 700;
}

.page_thumbnail {
    margin: 30px 0;
}

.page_thumbnail img {
    border-radius: 16px;
}

.page_details {
    margin: 0 0 12px 0;
}

.cat_label {
    float: right;
    margin: 5px 0 0 0;
}

.cat_label ul li {
    display: inline-block;
}

.cat_label a {
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 500;
    color: #902922;
    background-color: #FEECEB;
    border: 1px solid #FCDAD7;
}

.details_p {
    float: left;
}

.details_p .read_time {
    margin: 0 0 0 20px;
}

.read_time {
    font-size: 12px;
    color: #797979;
    float: right;
    padding: 5px 0;
    margin: 0 10px 0 20px;
    position: relative;
}

.read_time::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 5px;
    height: 5px;
    background-color: #797979;
    border-radius: 50%;
    transform: translateY(-50%);
    left: -15px;
}

.published_date {
    font-size: 12px;
    color: #797979;
    float: right;
    padding: 5px 0;
    margin: 0 10px;
}

.main_single_content {
    width: calc(100% - 400px);
    padding: 0 0 0 40px;
    float: right;
}

.main_single_sidebar {
    width: 400px;
    float: left;
    position: sticky;
    top: 20px;
    align-self: flex-start;
    height: max-content;
}

.main_single_sidebar_bg {
    background-color: #FAFAFA;
    padding: 16px;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
}

.title_sidebar {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.toc_list li {
    list-style: disc;
    list-style-position: inside;
    padding: 3px 0;
}

.toc_list li a:hover {
    color: #801323;
    text-decoration: underline;
}

.related_items {
    margin: 20px 0 0 0;
}

.related_item {
    padding: 8px 0;
}

.related_item_image {
    width: 68px;
    float: right;
    background-color: #FAFAFA;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    overflow: hidden;
}

.related_item_details {
    width: calc(100% - 68px);
    float: right;
    padding: 8px 16px 0 0;
}

.related_item_title {
    font-size: 16px;
    font-weight: 700;
}

.related_item_excerpt {
    font-size: 13px;
}

/* --------- Page --------- */
/* --------- Index --------- */
#hero {
    padding: 100px 0 0 0;
}

.hero_head_line {
    color: #484747;
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    position: relative;
}

.hero_head_line_absolute {
    color: #801323;
    font-size: 17px;
    font-weight: 600;
    position: absolute;
    text-align: center;
    right: 0;
    left: 0;
    top: 65px;
}

.hero_excerpt {
    width: 780px;
    text-align: center;
    margin: 10px auto 0 auto;
}

.hero_cta a {
    background-color: #801323;
    color: #ffffff;
    border-radius: 8px;
    padding: 8px 20px;
    margin: 25px auto 0 auto;
    display: table;
    font-size: 16px;
    font-weight: 500;
}

.disable {
    background-color: #C9C9C9 !important;
}

.hero_cta a:hover {
    background-color: #660F1C;
}

.hero_cta a:active {
    background-color: #4D0B15;
}

.hero_cta a:focus {
    background-color: #801323;
}

.hero_image_and_statistic {
    margin: 40px 0;
    position: relative;
}

.hero_statistic {
    position: absolute;
    background-image: url(../images/bg-stat-hero.svg);
    border: 1px solid #80132333;
    border-radius: 16px;
    width: 700px;
    bottom: 0;
    left: 0;
    padding: 12px;
}

.hero_statistic_col {
    width: 25%;
    float: right;
}

.hero_statistic_value {
    text-align: center;
}

.hero_statistic_value1 {
    font-size: 32px;
    font-weight: 700;
    position: relative;
}

.hero_statistic_value2 {
    font-size: 14px;
    font-weight: 900;
}

.hero_statistic_namad {
    position: absolute;
    font-size: 18px;
    font-weight: 700;
    top: -5px;
    right: -10px;
}

.hero_statistic_title {
    font-size: 16px;
    font-weight: 500;
    color: #838383;
    text-align: center;
}

.hero_image_mobile {
    display: none;
}

.main_title_customers {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin: 0 0 10px 0;
}

.main_title_customers span {
    font-size: 24px;
    font-weight: 800;
    text-align: center;
}

.row_customers {

}

.row_customers_mobile {
    display: none;
}

.col_customer {
    filter: grayscale(100%);
    transition: 0.3s ease;
    text-align: center;
    padding: 6px;
}

.col_customer:hover {
    filter: grayscale(0%);
}

.name_customer {
    position: absolute;
    font-size: 14px;
    text-align: center;
    background: #ffffff;
    box-shadow: 0 0 10px #00000024;
    border-radius: 4px;
    padding: 4px 8px;
    right: 0;
    left: 0;
    bottom: 6px;
    display: none;
}

.col_customer:hover .name_customer {
    display: block;
}


.main_title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    position: relative;
    display: table;
    margin: 0 auto;
    padding: 0 30px;
}

.main_title::before,
.main_title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    background-color: #484747;
    border-radius: 50%;
    transform: translateY(-50%);
}

.main_title::before {
    left: 0;
}

.main_title::after {
    right: 0;
}

.main_subtitle {
    font-size: 16px;
    text-align: center;
    margin: 5px 0 0 0;
}

#products {
    padding: 150px 0 90px 0;
}

.row_products {
    width: 1000px;
    margin: 0 auto;
}

.row_products > div {
    margin: 0 -30px;
}

.col_product {
    width: 50%;
    padding: 30px;
}

.col_product_c {
    padding: 55px 30px 30px 30px;
}

.pad-r30 {
    padding: 0 30px 0 0;
}

.col_product_title {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 15px 0;
}

.col_product p {
    margin: 0 0 10px 0;
}

.col_product ul li {
    padding: 5px 0;
    list-style: disc;
    list-style-position: inside;
}

.product_cta {
    margin: 10px 0 0 0;
}

.product_cta a {
    color: #801323;
    font-weight: 500;
}

.product_cta:after {
    content: "";
    display: inline-block;
    width: 13px;
    height: 13px;
    background-image: url(../images/arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin: 3px 10px 0 0;
}

#features {
    padding: 90px 0;
}

.row_features {
    margin: 32px -12px 0 -12px;
}

.col_features {
    float: right;
    width: calc(100% - 408px);
    padding: 0 12px;
}

.col_feature {
    float: right;
    width: 408px;
    padding: 0 12px;
}

.box_feature {
    background-color: #FAFAFA;
    border: 1px solid #E5E5E5;
    border-radius: 16px;
    overflow: hidden;
}

.feature_details {
    padding: 24px;
}

.feature_title {
    font-size: 24px;
    font-weight: 800;
}

.feature_excerpt {
    margin: 8px 0 0 0;
}

.box_feature1 .feature_details {
    width: 50%;
    float: right;
    padding: 50px 24px 0 0;
}

.box_feature1 .feature_image {
    width: 50%;
    float: left;
}

.row_col_features {
    padding: 24px 0 0 0;
    margin: 0 -12px;
}

.col_features_col {
    width: 50%;
    float: right;
    padding: 0 12px;
}

.box_feature2 .feature_image {
    margin: -85px 0 0 0;
}

.box_feature3 .feature_details {
    margin: -105px 0 0 0;
}

.box_feature4 .feature_image {
    margin: -70px 0 0 0;
}

#consulting {
    padding: 90px 0;
}

#consulting .container {
    background: linear-gradient(to right, #e9e9e9, #fafafa);
    border: 1px solid #E5E5E5;
    position: relative;
    padding: 40px 32px;
    border-radius: 16px;
}

.consulting_image {
    width: 580px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.consulting_details {
    width: 600px;
}

.consulting_title {
    font-size: 32px;
    font-weight: 800;
}

.consulting_excerpt {
    margin: 10px 0 20px 0;
    color: #484747;
}

.consulting_CTA a {
    background-color: #801323;
    color: #ffffff;
    border-radius: 8px;
    padding: 8px 20px;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
}

.consulting_CTA a:hover {
    background-color: #660F1C;
}

.consulting_CTA a:active {
    background-color: #4D0B15;
}

.consulting_CTA a:focus {
    background-color: #801323;
}

#articles {
    padding: 90px 0;
}

.title_articles {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 12px 0;
}

.row_articles {
    margin: 0 -16px;
}

#statistic {
    padding: 90px 0;
}

.statistic_col {
    width: 480px;
    float: left;
}

.statistic_col_content {
    width: calc(100% - 480px);
    float: right;
    padding: 120px 0 0 40px;
}

.statistic_title {
    font-size: 32px;
    font-weight: 800;
}

.statistic_excerpt {
    margin: 10px 0 0 0;
}

.statistic_cta a {
    background-color: #801323;
    color: #ffffff;
    border-radius: 8px;
    padding: 8px 20px;
    margin: 25px auto 0 auto;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
}

.statistic_cta a:hover {
    background-color: #660F1C;
}

.statistic_cta a:active {
    background-color: #4D0B15;
}

.statistic_cta a:focus {
    background-color: #801323;
}

.statistic_col_box {
    width: 50%;
    float: left;
    padding: 16px;
}

.statistic_box {
    background-color: #FAFAFA;
    border: 1px solid #E5E5E5;
    border-radius: 16px;
    padding: 16px;
}

.statistic_icon {
    width: 48px;
    height: 48px;
}

.statistic_value {
    font-size: 40px;
    font-weight: 700;
    color: #801323;
    margin: 10px 0 0 0;
}

.statistic_value span {
    font-size: 40px;
    font-weight: 700;
    color: #000000;
}

.statistic_excerpt {
    font-size: 14px;
}

/* --------- Index --------- */
/* --------- Form Page --------- */
#main_form_page {
    position: relative;
    min-height: 100vh;
    padding: 170px 0 100px 0;
    z-index: 1; /* آیتم‌ها بالاتر از بک‌گراند باشن */
}

#main_form_page::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: url(../images/bg-form-side.svg) no-repeat right top;
    background-size: cover;
    z-index: -1;
}

.col_content_side {
    width: 50%;
    float: right;
    padding: 0 0 0 50px;
}

.col_form_side {
    width: 50%;
    float: right;
    padding: 0 32px 0 0;
}

.show_errors {
    position: fixed;
    background: #FAEBED;
    top: 70px;
    right: 0;
    left: 0;
    display: table;
    margin: 0 auto;
    border-radius: 4px;
    border-right: 4px solid #F04438;
    padding: 8px;
    width: 500px;
    z-index: 999999;
}

.show_errors_title {
    font-size: 12px;
    font-weight: 500;
    color: #902922;
    margin: 0 0 8px 0;
    float: right;
}

.hide_errors {
    color: #C0362D;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    float: left;
    transition: color 0.2s ease;
}

.error_item {
    color: #C0362D;
    font-size: 12px;
    padding: 3px 0;
}

form {
    width: 100%;
    margin: 0 auto;
    background-color: #FAFAFA;
    border: 1px solid #E5E5E5;
    padding: 24px;
    border-radius: 16px;
}

form h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 32px 0;
}

form input[type="text"],
form input[type="email"],
form input[type="number"],
form select,
form textarea {
    background-color: #FFFFFF;
    border: 1px solid #C9C9C9;
    padding: 15px 36px;
    font-family: IRANSansX;
    border-radius: 8px;
    width: 100%;
    outline: none;
    font-size: 14px;
    color: #797979;
    transition: 0.3s ease;
}

form input[type="text"]:hover,
form input[type="email"]:hover,
form input[type="number"]:hover,
form select:hover,
form textarea:hover {
    border: 1px solid #939393;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="number"]:focus,
form select:focus,
form textarea:focus {
    border: 1px solid #EAB2BB;
    box-shadow: 0 0 10px #FFE6EA;
}

form input::placeholder,
form textarea::placeholder {
    color: #ADADAD;
    opacity: 1;
}

.error_text {
    color: #C0362D;
    font-size: 12px;
    margin-top: 4px;
}

.error_text img {
    width: 12px;
    height: 12px;
    display: inline-block;
    vertical-align: middle;
}

.is-invalid {
    border-color: #C0362D !important;
}

form textarea {
    min-height: 150px;
    resize: none;
}

select {
    color: #ADADAD;
}

select:valid {
    color: #000000;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.custom-select .error_text {
    position: absolute;
    bottom: -18px;
    right: 0;
}

.custom-select {
    position: relative;
    cursor: pointer;
}

.float-field {
    position: relative;
}

.float-field img {
    position: absolute;
    width: 11px;
    left: 14px;
    top: 23px;
}

.custom-select .select-display {
    background: #fff;
    border: 1px solid #C9C9C9;
    padding: 20px 16px 10px 16px !important;
    border-radius: 8px;
    transition: 0.2s ease;
    color: #797979;
    font-size: 14px;
    height: 52.8px;
}

.custom-select .select-display.placeholder {
    color: #ADADAD;
}

.select-display:hover {
    border: 1px solid #939393;
}

.custom-select.open .select-display {
    border: 1px solid #EAB2BB;
    box-shadow: 0 0 10px #FFE6EA;
}

.custom-select .select-options {
    position: absolute;
    right: 0;
    left: 0;
    margin-top: 4px;
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    list-style: none;
    padding: 0;
    display: none;
    z-index: 20;
    max-height: 230px;
    overflow-y: auto;
    box-shadow: 0 0 10px #1018281A;
}

.custom-select.open .select-options {
    display: block;
}

.custom-select .select-options li {
    padding: 10px 12px;
    transition: 0.2s;
    font-size: 14px;
    color: #797979;
}

.custom-select .select-options li:hover {
    background: #FAFAFA;
}

.custom-select .select-options li:focus {
    background: #F4F4F4;
}

form button {
    font-family: IRANSansX;
    background-color: #801323;
    color: #ffffff;
    border-radius: 8px;
    padding: 12px 20px;
    border: unset;
    outline: unset;
    width: 100%;
}

.row_form {
    padding: 8px 0;
}

.without_col {
    margin: 0 8px;
}

.col_form {
    width: 50%;
    float: right;
    padding: 0 8px;
}

.float-field {
    position: relative;
}

.float-field input,
.float-field textarea {
    padding: 20px 16px 10px 16px !important;
}

.float-field label {
    position: absolute;
    right: 16px;
    top: 16px;
    font-size: 14px;
    color: #ADADAD;
    pointer-events: none;
    background: transparent;
    transition: 0.2s ease;
}

.float-field input:focus + label,
.float-field textarea:focus + label {
    top: 4px;
    font-size: 12px;
    color: #ADADAD;
}

.float-field.has-value label,
.float-field input:focus + label,
.float-field textarea:focus + label,
.custom-select.open label {
    top: 4px;
    font-size: 12px;
    color: #ADADAD;
}

.float-field input:focus + label,
.float-field textarea:focus + label {
    top: 4px;
    font-size: 12px;
    color: #ADADAD;
}

.float-field.has-value label {
    top: 4px;
    font-size: 12px;
    color: #ADADAD;
}

.float-field textarea {
    min-height: 150px;
}

.col_content_side h2 {
    font-size: 40px;
    font-weight: 800;
}

.col_content_side h3 {
    font-size: 16px;
}

.list_title {
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 8px 0;
}

.col_content_side ul li {
    padding: 8px 0;
}

.col_content_side ul li:before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 22px;
    background-image: url(../images/check.svg);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin: 0 0 0 8px;
}

.title_of_radio {
    font-size: 15px;
    font-weight: 500;
    margin: 0 0 8px 0;
}

label {
    font-size: 14px;
}

input[type="radio"] {
    width: unset;
    vertical-align: middle;
    margin: 0 0 0 10px;
}

input[type="checkbox"] {
    width: unset;
    vertical-align: middle;
    margin: 0 0 0 10px;
}

.col_radio {
    float: right;
    margin: 0 0 0 25px;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}

.col_radio input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 18px;
    height: 18px;
    border: 1.5px solid #666;
    border-radius: 50%;
    margin-left: 8px;
    position: relative;
    cursor: pointer;
    outline: none;
    transition: all 0.2s ease;
}

.col_radio input[type="radio"]:hover {
    border-color: #801323;
}

.col_radio input[type="radio"]:checked {
    border-color: #801323;
}

.col_radio input[type="radio"]:checked::before {
    content: "";
    position: absolute;
    top: 49%;
    left: 49%;
    width: 8px;
    height: 8px;
    background-color: #801323;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.checkbox_label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
}

.checkbox_label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    width: 18px;
    height: 18px;
    border: 1.5px solid #666;
    border-radius: 4px;
    margin-left: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.checkbox_label input[type="checkbox"]:hover {
    border-color: #801323;
}

.checkbox_label input[type="checkbox"]:checked {
    background-color: #801323;
    border-color: #801323;
}

.checkbox_label input[type="checkbox"]:checked::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.success_message_layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 9999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.4s ease;
}

.success_message {
    width: 350px;
    border-radius: 16px;
    background-color: #FAFAFA;
    padding: 32px;
}

.success_icon {
    width: 80px;
    margin: 0 auto 10px auto;
}

.success_title {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 10px 0;
}

.success_subtitle {
    font-size: 15px;
    text-align: center;
}

.success_accept {
    cursor: pointer;
    background-color: #801323;
    color: #ffffff;
    border-radius: 8px;
    padding: 8px 20px;
    font-size: 15px;
    font-weight: 500;
    width: 100%;
    text-align: center;
    margin: 20px 0 0 0;
}

.success_message_layer.fade-out {
    opacity: 0;
}

/* --------- Form Page --------- */
/* --------- Other Pages --------- */

.main_about_left {
    width: 400px;
    float: left;
}

.main_about_right {
    width: calc(100% - 400px);
    padding: 0 0 0 40px;
    float: right;
}

.about_cta_box {
    background-color: #FAFAFA;
    border: 1px solid #E5E5E5;
    padding: 16px;
    border-radius: 16px;
}

.about_cta_box.catalog {
    margin: 16px 0 0 0;
}

.about_cta_box .footer_center_item_icon {
    width: 40px;
}

.about_cta_title {
    font-size: 28px;
    font-weight: 700;
}

.about_cta_excerpt {
    margin: 10px 0 0 0;
}

.about_cta a {
    background-color: #801323;
    color: #ffffff;
    border-radius: 8px;
    padding: 8px 20px;
    display: table;
    margin: 16px 0 0 0;
}

.main_contact_right {
    width: calc(100% - 500px);
    padding: 0 0 0 72px;
    float: right;
}

.main_contact_left {
    width: 500px;
    float: left;
}

.main_contact_left form {
    width: 100%;
}

.main_contact_right h1 {
    margin: 40px 0 8px 0 !important;
}

.row_contact {
    padding: 8px 0;
}

.icon_contact {
    width: 20px;
    float: right;
    margin: -15px 0 0 0;
}

.details_contact {
    float: right;
    padding: 0 8px 0 0;
}

.details_contact_title {
    font-size: 14px;
    color: #797979;
}

.details_contact_value {
    font-weight: 500;
}

/* --------- Other Pages --------- */
/* --------- Archive --------- */

#main_archive {
    padding: 100px 0 0 0;
}

.main_header_archive {
    margin: 0 0 30px 0;
}

.details_header_archive {
    float: right;
}

.search_header_archive {
    float: left;
    margin: 40px 0 0 0;
}

.search .search_header_archive {
    margin: 12px 0 0 0;
}

.title_header_archive {
    font-size: 40px;
    font-weight: 800;
}

.excerpt_header_archive {
    font-size: 16px;
}

.search_header_archive form {
    width: 380px;
    background-color: unset;
    border: unset;
    position: relative;
    padding: 0;
}

.search_header_archive form img {
    width: 14px;
    position: absolute;
    top: 14px;
    right: 14px;
}

.search_header_archive form input {
    padding: 10px 35px 10px 15px;
}

.col_post {
    width: 25%;
    float: right;
    padding: 20px 16px;
}

.box_post {
    /*display: flex;*/
    /*flex-direction: column;*/
    /*justify-content: space-between;*/
    /*height: 100%;*/
}

.photo_post {
    border-radius: 16px;
    background-color: #FEECEB;
    overflow: hidden;
    margin: 0 0 12px 0;
    border: 1px solid #E5E5E5;
}

.title_post {
    height: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
}

.title_post a {
    font-size: 20px;
    font-weight: 800;
    color: #484747;
}

.excerpt_post {
    margin: 8px 0 0 0;
}

.blog_header {
    margin: 0 0 90px 0;
}

.blog_body {
    padding: 90px 0;
}

.blog_categories {
    display: table;
    margin: 40px auto 20px auto;
}

.cat_filter {
    border-radius: 4px;
    border: 1px solid #C9C9C9;
    font-size: 15px;
    font-weight: 500;
    font-family: 'IRANSansX';
    color: #797979;
    padding: 8px 12px;
    background-color: #ffffff;
    margin: 0 0 0 16px;
    transition: 0.3s ease;
}

.cat_filter.active {
    color: #484747;
    background-color: #FAFAFA;
    border-color: #484747;
}

.cat_filter:hover {
    color: #797979;
    background-color: #F4F4F4;
    border-color: #797979;
}

.cat_all {
    position: relative;
    margin: 0 0 0 40px !important;
    padding: 8px 33px;
}

.cat_all:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 1px;
    height: 40px;
    background-color: #484747;
    left: -20px;
    transform: translateY(-50%);
}

.blog_first_post {
    width: 750px;
    float: right;
}

.blog_other_posts {
    width: calc(100% - 750px);
    float: right;
    padding: 0 64px 0 0;
}

.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0;
    direction: ltr;
}

.pag_numbers {
    display: flex;
    gap: 8px;
    direction: ltr;
}

.pagination .pag_prev a,
.pagination .pag_next a,
.pagination .pag_prev span,
.pagination .pag_next span {
    display: inline-block;
    padding: 10px;
    border-radius: 6px;
    background: #FAEBED;
    font-size: 14px;
    white-space: nowrap;
}

.pagination .disabled span {
    background-color: #E5E5E5;
    cursor: default;
    padding: 12px;
}

.pag_item a,
.pag_item span {
    padding: 8px 15px;
    border-radius: 4px;
    color: #797979;
    font-size: 14px;
    font-weight: 700;
}

.pag_item a:hover {
    color: #000000;
}

.pag_item .current {
    background: #801323;
    color: #ffffff;
}

/* --------- Archive --------- */
/* --------- Footer --------- */

#footer {
    background-color: #FAFAFA;
    border-top: 1px solid #C9C9C9;
    padding: 32px 0;
}

.footer_menu_col {
    width: 25%;
    float: right;
    padding: 0 10px;
}

.footer_menu_title {
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 24px 0;
}

.footer_menu ul li {
    padding: 0 0 12px 0;
}

.footer_menu ul li a {
    color: #606060;
    font-size: 14px;
    font-weight: 500;
}

.footer_menu ul li a:hover {
    color: #191919;
}

.footer_menu span {
    font-size: 12px;
    color: #797979;
    display: block;
    margin: 0 0 8px 0;
}

.footer_center_row {
    margin: 30px 0;
}

.footer_center_item {
    background-color: #E5E5E5;
    border-radius: 8px;
    padding: 12px;
    color: #191919;
    width: 260px;
    float: right;
}

.footer_app {
    margin: 0 0 0 15px;
}

.footer_center_item_icon {
    width: 28px;
    float: right;
    margin: 0 0 0 8px;
}

.footer_center_item_details {
    float: right;
}

.footer_center_title {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 3px 0;
}

.footer_center_subtitle {
    font-size: 12px;
    font-weight: 500;
}

.footer_logos {
    float: left;
    width: 440px;
    margin: 0 0 0 -10px;
}

.footer_logo {
    width: 20%;
    float: left;
    padding: 0 10px;
}

.footer_bottom_row {
    padding: 10px 0 0 0;
}

.footer_bottom_text {
    color: #797979;
    font-size: 12px;
    margin: 0 0 0 20px;
    float: right;
    font-weight: 300;
}

.footer_bottom_text a {
    color: #797979;
}

.footer_bottom_text a:hover {
    color: #191919;
}

.footer_bottom_text.en {
    direction: ltr;
}

.footer_bottom_social {
    float: left;
}

.footer_bottom_social ul li {
    float: left;
    padding: 0 10px;
}

/* --------- Footer --------- */
/* --------- Single Product --------- */

.single-product .hero_image,
.single-solution .hero_image {
    background-color: #f4f4f4;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #E5E5E5;
    margin: 40px 0 32px 0;
}

#what {
    padding: 90px 0;
}

.what_right {
    width: 50%;
    padding: 0 0 0 40px;
    float: right;
}

.what_left {
    width: 50%;
    float: left;
    height: 340px;
    background-color: #f4f4f4;
    border-radius: 16px;
}

.what_title {
    font-size: 32px;
    font-weight: 800;
}

.what_excerpt {
    font-size: 16px;
    margin: 12px 0 0 0;
}

.what_excerpt ul li {
    padding: 6px 0;
}

.what_excerpt ul li img {
    width: 40px;
    margin: 0 0 0 12px;
    display: inline-block;
    vertical-align: middle;
}

#benefit {
    padding: 90px 0;
}

.row_benefit {
    margin: 32px 0 0 0;
}

.col_benefit {
    padding: 12px;
    width: 33.33%;
    float: right;
}

.box_benefit {
    background-color: #FAFAFA;
    border-radius: 16px;
    border: 1px solid #E5E5E5;
    padding: 16px;
}

.image_benefit {
    background: #e9e9e9;
    border-radius: 8px;
    margin: 0 0 16px 0;
    overflow: hidden;
    border: 1px solid #E5E5E5;
}

.title_benefit {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 8px 0;
    min-height: 72px;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
}

#how {
    padding: 90px 0;
}

.row_how {
    width: 1000px;
    margin: 0 auto;
}

.row_how > div {
    margin: 0 -30px;
}

.col_how {
    width: 50%;
    padding: 30px;
}

.col_how p {
    margin: 0 0 10px 0;
}

.col_how_title {
    font-size: 28px;
    font-weight: 800;
    margin: 50px 0 15px 0;
}

.how_image {
    background: #e9e9e9;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #4C4C4C33;
    box-shadow: 0 0 12px #0000000F;
}

#solutions {
    padding: 90px 0;
}

.row_solution {
    margin: 32px 0 16px 0;
}

.box_solutions {
    background-color: #FAFAFA;
    border-radius: 16px;
    border: 1px solid #E5E5E5;
    overflow: hidden;
}

.box_solutions_one .details_solutions {
    width: 50%;
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 380px;
    padding: 24px;
}

.box_solutions_one .photo_solutions {
    width: 50%;
    float: right;
    height: 380px;
    background: #e9e9e9;
}

.box_solutions_two .details_solutions {
    padding: 24px;
}

.box_solutions_two .photo_solutions {
    background: #e9e9e9;
}

.box_solutions_three .details_solutions {
    padding: 24px;
}

.box_solutions_three .photo_solutions {
    background: #e9e9e9;
}

.title_solutions {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 12px 0;
}

.row_solutions {
    margin: 0 -16px;
}

.col_solution {
    width: 50%;
    float: right;
    padding: 16px;
}

/* --------- Single Product --------- */
/* --------- FAQ --------- */

#faq {
    padding: 90px 0;
}

.faq {
    max-width: 900px;
    margin: 60px auto;
    direction: rtl;
}

.faq-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    background: #faebed;
    border-color: #eab2bb;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 16px 28px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
    color: #1e1e1e;
    transition: color 0.2s ease;
    text-align: right;
}

.faq-icon {
    margin-left: 12px;
    font-size: 24px;
    font-weight: 500;
    color: #333;
    transition: transform 0.25s ease, color 0.2s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #a00022;
}

.faq-item.active .faq-title {
    color: #801323;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #faebed;
    color: #801323;
    font-size: 16px;
    transition: all 0.4s ease;
    opacity: 0;
    padding: 0 50px 0 50px;
}

.faq-item.active .faq-answer {
    opacity: 1;
    padding: 0 50px 18px 50px;
    max-height: 400px;
}

.faq-title {
    font-size: 20px;
    font-weight: 700;
}

/* --------- FAQ --------- */
@media only screen and (max-width: 599px) {
    .container {
        width: 100%;
    }

    .container {
        padding: 0 16px;
    }

    .hero_head_line {
        font-size: 22px;
    }

    .hero_head_line_absolute {
        font-size: 11px;
        top: 34px;
    }

    .hero_excerpt {
        width: 100%;
    }

    .main_title {
        font-size: 22px;
    }

    .main_title_customers span {
        font-size: 21px;
    }

    .row_products {
        width: 100%;
        margin: 20px 0;
    }

    .col_product, .col_how {
        width: 100%;
        padding: 10px 0;
    }

    .footer_menu_col {
        width: 100%;
        padding: 15px 0;
    }

    .footer_app {
        margin: 0 0 15px 0;
    }

    .footer_center_item {
        width: 100%;
    }

    .footer_logos {
        width: 100%;
        margin: 20px 0 0 0;
    }

    .footer_bottom_text {
        text-align: center;
        float: unset;
    }

    .footer_bottom_social {
        float: unset;
        margin: 0 auto 10px auto;
        display: table;
    }

    .row_customers {
        margin: 0;
    }

    #consulting {
        padding: 50px 16px;
    }

    #consulting .container {
        background: #fafafa;
        padding: 24px 24px 0 0;
    }

    .consulting_details {
        width: 100%;
        padding: 0 0 0 24px;
    }

    .consulting_title {
        font-size: 22px;
    }

    .consulting_image {
        position: unset;
        width: 100%;
        background: #e9e9e9;
        border-radius: 150px 250px 100px 0;
        padding: 20px 0 0 0;
    }

    .col_content_side {
        width: 100%;
        /*padding: 50px 15px;*/
        padding: 0;
        height: auto;
    }

    .col_form_side {
        width: 100%;
        padding: 40px 0 0 0;
        height: auto;
        background-image: unset;
    }

    .col_content_side h2 {
        font-size: 28px;
    }

    .col_content_side h3 {
        font-size: 14px;
    }

    .col_content_side ul li {
        font-size: 13px;
    }

    form h1 {
        font-size: 24px;
    }

    .row_form {
        padding: 0;
    }

    .without_col {
        margin: 0;
        padding: 8px 0;
    }

    .col_form {
        width: 100%;
        padding: 8px 0;
    }

    .success_message {
        width: 90%;
    }

    .main_about_right, .main_contact_right {
        width: 100%;
        padding: 0;
        float: right;
    }

    .main_about_left, .main_contact_left, .main_contact_left form {
        width: 100%;
    }

    .details_header_archive {
        text-align: center;
    }

    .search_header_archive, .search_header_archive form {
        width: 100%;
    }

    .col_post {
        width: 50%;
        padding: 8px;
    }

    .title_post a {
        font-size: 16px;
    }

    .main_single_sidebar {
        width: 100%;
        position: unset;
        margin: 0 0 20px 0;
    }

    .main_single_content {
        width: 100%;
        padding: 0;
    }

    .search_header_archive {
        margin: 20px 0 0 0;
    }

    .statistic_col_content {
        width: 100%;
        padding: 0;
        float: unset;
    }

    .statistic_title {
        font-size: 24px;
    }

    .statistic_col {
        width: 100%;
        margin: 40px 0 0 0;
        float: unset;
    }

    .statistic_col_box {
        padding: 8px;
    }

    .statistic_excerpt {
        font-size: 12.5px;
    }

    .row_features {
        margin: 32px 0 0 0;
    }

    .col_features, .col_feature {
        width: 100%;
        padding: 0;
    }

    .row_col_features {
        margin: 0;
    }

    .col_features_col {
        width: 100%;
        padding: 0 0 24px 0;
    }

    .box_feature1 .feature_details {
        width: 100%;
        padding: 24px;
    }

    .box_feature1 .feature_image {
        width: 100%;
    }

    .show_errors {
        width: 85%;
    }

    .blog_first_post {
        width: 100%;
    }

    .blog_other_posts {
        width: 100%;
        padding: 20px 0 0 0;
    }

    .read_time, .published_date {
        font-size: 10px;
    }

    .title_post {
        -webkit-line-clamp: 3;
        height: 70px;
    }

    .page_title {
        font-size: 32px;
    }

    .toc_list li {
        font-size: 14px;
    }

    .title_sidebar {
        font-size: 16px;
    }

    .page_content h1 {
        font-size: 20px;
    }

    .page_content h2 {
        font-size: 18px;
    }

    .page_content h3 {
        font-size: 16px;
    }

    .main_contact_left {
        margin: 40px 0 0 0;
    }

    #main_page {
        padding: 48px 0;
    }

    .row_products > div {
        margin: 0;
    }

    .row_articles {
        margin: 0 -8px;
    }

    .hero_cta a {
        font-size: 14px;
    }

    #products {
        padding: 100px 0 50px 0;
    }

    #features, #statistic, #articles, #faq,
    #what, #benefit, #how, #solutions {
        padding: 50px 0;
    }

    .faq-title {
        font-size: 16px;
    }

    .faq-answer {
        font-size: 14px;
    }

    .hero_statistic {
        width: 100%;
        position: unset;
    }

    .hero_statistic_col {
        width: 50%;
        float: right;
        padding: 12px 0;
    }

    .statistic_box {
        padding: 12px;
    }

    .details_p {
        float: right;
    }

    .row_how {
        width: 100%;
    }

    .col_benefit {
        padding: 0 0 20px 0;
        width: 100%;
    }

    .what_right {
        width: 100%;
        padding: 0;
    }

    .what_left {
        width: 100%;
        margin: 0 0 20px 0;
    }

    .what_excerpt ul li img {
        width: 32px;
    }

    .what_excerpt {
        font-size: 14px;
    }

    .box_solutions_one .details_solutions,
    .box_solutions_one .photo_solutions {
        width: 100%;
        height: auto;
    }

    .box_solutions_one .details_solutions {
        padding: 16px;
    }

    .col_solution {
        width: 100%;
    }

    .title_solutions {
        font-size: 20px;
    }

    .excerpt_solutions {
        font-size: 14px;
    }

    .cat_filter {
        margin: 6px 0 6px 6px;
    }

    .cat_all {
        margin: 0 0 0 32px !important;
    }

    .cat_all:after {
        left: -17px;
    }

    .row_how > div {
        margin: 0;
    }

    .title_articles {
        font-size: 24px;
    }

    #main_archive {
        padding: 48px 0 0 0;
    }

    .title_header_archive {
        font-size: 32px;
    }

    .excerpt_header_archive {
        font-size: 14px;
    }

    .col_content_side > div {
        width: 100%;
    }

    .header_cta a {
        font-size: 14px;
    }

    .checkbox_label input[type="checkbox"] {
        width: 28px;
    }

    /* ---------- Just Mobile ---------- */
    .hero_image_mobile {
        display: block;
        margin: 0 -16px;
    }

    .hero_image {
        display: none;
    }

    .single-product .hero_image, .single-solution .hero_image {
        display: block;
    }

    .row_customers_mobile {
        display: block;
    }

    .row_customers {
        display: none;
    }

    .menu_open {
        display: inline-block;
    }

    .main_menu {
        display: none !important;
    }

    #support {
        width: 40px;
        height: 40px;
        right: 16px;
        bottom: 16px;
    }

    #hero {
        padding: 48px 0 0 0;
    }

    .menu_open {
        margin: 16px 8px 0 0;
    }

    .header_cta {
        margin: 16px 0 0 0;
    }

    .logo {
        width: 93px;
    }

    .about_cta_title {
        font-size: 20px;
    }

    .about_cta a, .about_cta_excerpt {
        font-size: 14px;
    }

    .hero_image {
        margin: 40px -16px 32px -16px;
        border-radius: 0;
    }

    form {
        padding: 16px;
    }

    #main_form_page::before {
        display: none;
    }

    #main_form_page {
        padding: 118px 0 100px 0;
    }

    /* ---------- Should Remove ---------- */
    .col_customer {
        width: 33.33%;
    }

    .main_menu {
        display: none;
    }

    .name_customer {
        display: none;
    }
}
