.fix-mar {
    padding-top: 82px;
}

.echron_header {
    background-color: #fff;
    position: fixed;
    z-index: 2;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
}

.echron_header .main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
}

.echron_header .main .dropdown-symbol {
    position: relative;
    margin-right: 15px;
}

.echron_header .main .dropdown-symbol::before {
    position: absolute;
    content: "\f0dd";
    right: 1px;
    top: -3px;
    color: #000;
    font-family: FontAwesome;
}

.echron_header .main .dropdown-symbol .sub-menu {
    width: 200px;
    display: none;
    padding: 5px;
    z-index: 2;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border-radius: 5px;
}

.echron_header .main .dropdown-symbol .sub-menu .noflex {
    list-style: none;
    display: block;
}

.echron_header .main .dropdown-symbol .sub-menu .noflex li {
    width: 100%;
    margin: 5px 0;
    color: #697488;
    text-align: left;
}

.echron_header .main .dropdown-symbol .sub-menu .noflex li a {
    width: 100%;
    color: #000;
    display: block;
}

.echron_header .main .dropdown-symbol .sub-menu .noflex li a:hover {
    background-color: #f1f1f1;
}

.echron_header .main .dropdown-symbol:hover .sub-menu {
    display: block;
}

.echron_header .main .left {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.echron_header .main .left .logo {
    margin-right: 0;
}

.echron_header .main .left .logo img {
    width: 100%;
}


/* .echron_header .main nav {
    width: 93%;
} */

.echron_header .main nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.echron_header .main nav ul li a {
    text-decoration: none;
    padding: 10px 12px;
    color: #000;
}

.echron_header .main nav ul li {
    flex: 1 0 auto;
}

.echron_header .main .right {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.echron_header .main .right .loc_lang {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
}

.echron_header .main .right .loc_lang ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.echron_header .main .right .loc_lang ul li:first-child {
    position: relative;
}

.echron_header .main .right .loc_lang ul li:first-child::after {
    position: absolute;
    content: "";
    height: 14px;
    width: 1px;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
}

.echron_header .main .right .loc_lang ul li a {
    text-decoration: none;
    color: #fff;
    padding: 10px 15px;
}

.echron_header .main .right .loc_lang ul li .lang-icon {
    border-radius: 50%;
    margin-left: 15px;
}

.echron_header .main .right .head_buttons ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    width: 100%;
    gap: 0.5em;
}

.echron_header .main .right .head_buttons ul li.active a {
    color: #fff;
    background-color: #023d1b;
}

.echron_header .main .right .head_buttons ul li a {
    color: #fff;
    border-radius: 7px;
    text-decoration: none;
    padding: 7px 15px;
    border: 1px solid #023d1b;
}