:root {
    --themPrimary: #b3a369;
    --themSecondary: #fffcf3;
    --themPrimary3: #ccc;
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@font-face {
    font-family: "gilroy-bolduploaded_file";
    src: url("../fonts/gilroy-bold.woff2") format("woff2"),
        url("../fonts/gilroy-bold.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "gilroy-mediumuploaded_file";
    src: url("../fonts/gilroy-medium.woff2") format("woff2"),
        url("../fonts/gilroy-medium.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "gilroy-semibolduploaded_file";
    src: url("../fonts/gilroy-semibold.woff2") format("woff2"),
        url("../fonts/gilroy-semibold.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

body {
    background: #fff;
    color: #000000;
    font-family: "gilroy-mediumuploaded_file";
}

a {
    color: var(--themPrimary);
    transition: 0.5s;
}

a:hover,
a:active {
    color: var(--themPrimary);
    outline: none;
    text-decoration: none;
}
a:focus {
    outline: none;
    text-decoration: none;
}

p {
    padding: 0;
    margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "gilroy-bolduploaded_file";
    margin: 0 0 20px 0;
    padding: 0;
}

/* Back to top button */

.back-to-top {
    position: fixed;
    display: none;
    background: var(--themPrimary);
    color: #fff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 50%;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 11;
}

.back-to-top i {
    padding-top: 12px;
    color: #fff;
}

/* Prelaoder */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #f2f2f2;
    border-top: 6px solid var(--themPrimary);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header_area {
    padding: 30px 0;
}
.navigation {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    font-family: inherit;
    background-color: #fff;
}

.navigation * {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

.navigation-portrait {
    height: 48px;
}

.navigation-fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 19998;
}

.navigation-hidden {
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.align-to-right {
    float: right;
}

.nav-header {
    float: left;
}

.navigation-hidden .nav-header {
    display: none;
}

.nav-brand {
    line-height: 70px;
    padding: 0;
    color: #000;
    font-size: 24px;
    text-decoration: none !important;
}

.nav-brand:hover,
.nav-brand:focus {
    color: #000;
}

.navigation-portrait .nav-brand {
    font-size: 18px;
    line-height: 48px;
}

.nav-logo > img {
    height: 48px;
    margin: 11px auto;
    padding: 0 15px;
    float: left;
}

.nav-logo:focus > img {
    outline: initial;
}

.navigation-portrait .nav-logo > img {
    height: 36px;
    margin: 6px auto 6px 15px;
    padding: 0;
}

.nav-toggle {
    width: 30px;
    height: 30px;
    padding: 6px 2px 0;
    position: absolute;
    top: 50%;
    margin-top: -14px;
    right: 15px;
    display: none;
    cursor: pointer;
}

.nav-toggle:before {
    content: "";
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #000;
    border-radius: 10px;
    box-shadow: 0 0.5em 0 0 #000, 0 1em 0 0 #000;
}

.navigation-portrait .nav-toggle {
    display: block;
}

.navigation-portrait .nav-menus-wrapper {
    width: 320px;
    height: 100%;
    top: 0;
    left: -400px;
    position: fixed;
    background-color: #fff;
    z-index: 20000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition-duration: 0.2s;
    transition-timing-function: ease;
}

.navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-right {
    left: auto;
    right: -400px;
}

.navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-open {
    left: 0;
}

.navigation-portrait
    .nav-menus-wrapper.nav-menus-wrapper-right.nav-menus-wrapper-open {
    left: auto;
    right: 0;
}

.nav-menus-wrapper-close-button {
    width: 30px;
    height: 40px;
    margin: 10px 7px;
    display: none;
    float: right;
    color: #000;
    font-size: 26px;
    cursor: pointer;
}

.navigation-portrait .nav-menus-wrapper-close-button {
    display: block;
}

.nav-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: normal;
    font-size: 0;
}

.navigation-portrait .nav-menu {
    width: 100%;
}

.navigation-landscape .nav-menu.nav-menu-centered {
    float: none;
    text-align: center;
}

.navigation-landscape .nav-menu.nav-menu-centered > li {
    float: none;
}

.nav-menu > li {
    display: inline-block;
    float: left;
    text-align: left;
}

.navigation-portrait .nav-menu > li {
    width: 100%;
    position: relative;
    border-top: solid 1px #f0f0f0;
}

.navigation-portrait .nav-menu > li:last-child {
    border-bottom: solid 1px #f0f0f0;
}

.nav-menu + .nav-menu > li:first-child {
    border-top: none;
}

.nav-menu > li > a {
    padding: 20px 15px;
    display: inline-block;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    transition: color 0.3s, background 0.3s;
    letter-spacing: 0.01em;
    font-family: "gilroy-semibolduploaded_file";
}

.navigation-portrait .nav-menu > li > a {
    width: 100%;
    height: auto;
    padding: 12px 15px 12px 26px;
}

/* .nav-menu > li:hover > a,
.nav-menu > li.active > a,
.nav-menu > li.focus > a {
    color: var(--themPrimary);
} */

.nav-menu > li > a > i,
.nav-menu > li > a > [class*="ion-"] {
    width: 18px;
    height: 16px;
    line-height: 16px;
    transform: scale(1.4);
}

.nav-menu > li > a > [class*="ion-"] {
    width: 16px;
    display: inline-block;
    transform: scale(1.8);
}

.navigation-portrait .nav-menu.nav-menu-social {
    width: 100%;
    text-align: center;
}

.nav-menu.nav-menu-social > li {
    text-align: center;
    float: none;
    border: none !important;
}

.navigation-portrait .nav-menu.nav-menu-social > li {
    width: auto;
}

.nav-menu.nav-menu-social > li > a > [class*="ion-"] {
    font-size: 12px;
}

.nav-menu.nav-menu-social > li > a > .fa {
    font-size: 14px;
}

.navigation-portrait .nav-menu.nav-menu-social > li > a {
    padding: 15px;
}

.submenu-indicator {
    margin-left: 6px;
    margin-top: 6px;
    float: right;
    transition: all 0.2s;
}

.navigation-portrait .submenu-indicator {
    width: 54px;
    height: 44px;
    margin-top: 0;
    position: absolute;
    top: 0;
    right: 0;
    text-align: center;
    z-index: 20000;
}

.submenu-indicator-chevron {
    position: relative;
    top: 3px;
    display: block;
    border-top: 0.3em solid var(--themPrimary);
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.navigation-portrait .submenu-indicator-chevron {
    position: absolute;
    top: 18px;
    left: 24px;
}

.nav-menu > li:hover > a .submenu-indicator-chevron,
.nav-menu > .active > a .submenu-indicator-chevron,
.nav-menu > .focus > a .submenu-indicator-chevron {
    border-top: 0.3em solid var(--themPrimary);
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.navigation-portrait .submenu-indicator.submenu-indicator-up {
    transform: rotate(-180deg);
}

.nav-overlay-panel {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    display: none;
    z-index: 19999;
}

.no-scroll {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.btn-box {
    float: right;
    z-index: 19998;
}

.navigation-portrait .nav-search {
    height: 48px;
    padding: 0 10px;
    margin-right: 52px;
}

.navigation-hidden .nav-search {
    display: none;
}

.nav-search-icon {
    width: 14px;
    height: 14px;
    margin: 2px 8px 8px 4px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    color: #000;
    text-align: left;
    text-indent: -9999px;
    border: 2px solid;
    border-radius: 50%;
    transform: rotate(-45deg);
}

.nav-search-icon:after,
.nav-search-icon:before {
    content: "";
    pointer-events: none;
}

.nav-search-icon:before {
    width: 2px;
    height: 11px;
    top: 11px;
    position: absolute;
    left: 50%;
    border-radius: 0 0 1px 1px;
    box-shadow: inset 0 0 0 32px;
    transform: translateX(-50%);
}

.nav-search-button:hover .nav-search-icon {
    color: var(--themPrimary);
}

.nav-search > form {
    width: 100%;
    height: 100%;
    padding: 0 auto;
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #fff;
    z-index: 99;
}
.nav-search-close-button {
    width: 28px;
    height: 28px;
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    line-height: normal;
    color: #000;
    font-size: 20px;
    cursor: pointer;
    text-align: center;
}

.navigation-portrait .nav-search-close-button {
    top: 10px;
    right: 14px;
}

.nav-button {
    margin: 18px 15px 0;
    padding: 8px 14px;
    display: inline-block;
    color: #fff;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
}

.nav-button:hover,
.nav-button:focus {
    color: #fff;
    text-decoration: none;
}

.navigation-portrait .nav-button {
    width: calc(100% - 52px);
    margin: 17px 26px;
}

.nav-text {
    margin: 25px 15px;
    display: inline-block;
    color: #000;
    font-size: 14px;
}

.navigation-portrait .nav-text {
    width: calc(100% - 52px);
    margin: 12px 26px 0;
}

.navigation-portrait .nav-text + ul {
    margin-top: 15px;
}

.nav-dropdown {
    min-width: 180px;
    margin: 0;
    padding: 0;
    display: none;
    position: absolute;
    list-style: none;
    z-index: 98;
    white-space: nowrap;
}

.navigation-portrait .nav-dropdown {
    width: 100%;
    position: static;
    left: 0;
}

.nav-dropdown .nav-dropdown {
    left: 100%;
}

.nav-menu > li > .nav-dropdown {
    border-top: solid 1px #f0f0f0;
}

.nav-dropdown > li {
    width: 100%;
    float: left;
    clear: both;
    position: relative;
    text-align: left;
}

.nav-dropdown > li > a {
    width: 100%;
    padding: 16px 20px;
    display: inline-block;
    text-decoration: none;
    float: left;
    font-size: 13px;
    color: #000;
    background-color: #fdfdfd;
}

.nav-dropdown > li:hover > a,
.nav-dropdown > li.focus > a {
    color: var(--themPrimary);
}

.nav-dropdown.nav-dropdown-left {
    right: 0;
}

.nav-dropdown > li > .nav-dropdown-left {
    left: auto;
    right: 100%;
}

.navigation-landscape .nav-dropdown.nav-dropdown-left > li > a {
    text-align: right;
}

.navigation-portrait .nav-dropdown > li > a {
    padding: 12px 20px 12px 30px;
}

.navigation-portrait .nav-dropdown > li > ul > li > a {
    padding-left: 50px;
}

.navigation-portrait .nav-dropdown > li > ul > li > ul > li > a {
    padding-left: 70px;
}

.navigation-portrait .nav-dropdown > li > ul > li > ul > li > ul > li > a {
    padding-left: 90px;
}

.navigation-portrait
    .nav-dropdown
    > li
    > ul
    > li
    > ul
    > li
    > ul
    > li
    > ul
    > li
    > a {
    padding-left: 110px;
}

.nav-dropdown .submenu-indicator {
    right: 15px;
    top: 10px;
    position: absolute;
}

.navigation-portrait .nav-dropdown .submenu-indicator {
    right: 0;
    top: 0;
}

.nav-dropdown .submenu-indicator .submenu-indicator-chevron {
    transform: rotate(-45deg);
}

.navigation-portrait
    .nav-dropdown
    .submenu-indicator
    .submenu-indicator-chevron {
    transform: rotate(45deg);
}

.nav-dropdown > li:hover > a .submenu-indicator-chevron,
.nav-dropdown > .focus > a .submenu-indicator-chevron {
    border-color: transparent var(--themPrimary) var(--themPrimary) transparent;
}

.navigation-landscape .nav-dropdown.nav-dropdown-left .submenu-indicator {
    left: 10px;
}

.navigation-landscape
    .nav-dropdown.nav-dropdown-left
    .submenu-indicator
    .submenu-indicator-chevron {
    transform: rotate(135deg);
}
.nav-dropdown-horizontal {
    width: 100%;
    left: 0;
    background-color: #fdfdfd;
    border-top: solid 1px #f0f0f0;
}

.nav-dropdown-horizontal .nav-dropdown-horizontal {
    width: 100%;
    top: 100%;
    left: 0;
}

.navigation-portrait .nav-dropdown-horizontal .nav-dropdown-horizontal {
    border-top: none;
}

.nav-dropdown-horizontal > li {
    width: auto;
    clear: none;
    position: static;
}

.navigation-portrait .nav-dropdown-horizontal > li {
    width: 100%;
}

.nav-dropdown-horizontal > li > a {
    position: relative;
}

.nav-dropdown-horizontal .submenu-indicator {
    height: 18px;
    top: 11px;
    transform: rotate(90deg);
}

.navigation-portrait .nav-dropdown-horizontal .submenu-indicator {
    height: 42px;
    top: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.navigation-portrait
    .nav-dropdown-horizontal
    .submenu-indicator.submenu-indicator-up {
    transform: rotate(-180deg);
}

.megamenu-panel {
    width: 100%;
    padding: 30px 15px;
    display: none;
    position: absolute;
    font-size: 14px;
    z-index: 98;
    text-align: left;
    color: inherit;
    border-bottom: solid 1px var(--themPrimary3);
    background-color: #fff;
    margin-top: -17px;
}

.navigation-portrait .megamenu-panel {
    padding: 25px;
    position: static;
    display: block;
}

.megamenu-panel [class*="container"] {
    width: 100%;
}

.megamenu-panel [class*="container"] [class*="col-"] {
    padding: 0;
}

.megamenu-panel-half {
    width: 50%;
}

.megamenu-panel-quarter {
    width: 25%;
}

.navigation-portrait .megamenu-panel-half,
.navigation-portrait .megamenu-panel-quarter {
    width: 100%;
}

.megamenu-panel-row {
    width: 100%;
}

.megamenu-panel-row:before,
.megamenu-panel-row:after {
    content: "";
    display: table;
    line-height: 0;
}

.megamenu-panel-row:after {
    clear: both;
}

.megamenu-panel-row [class*="col-"] {
    display: block;
    min-height: 20px;
    float: left;
    margin-left: 3%;
}

.megamenu-panel-row [class*="col-"]:first-child {
    margin-left: 0;
}

.navigation-portrait .megamenu-panel-row [class*="col-"] {
    float: none;
    display: block;
    width: 100% !important;
    margin-left: 0;
    margin-top: 15px;
}

.navigation-portrait
    .megamenu-panel-row:first-child
    [class*="col-"]:first-child {
    margin-top: 0;
}

.megamenu-panel-row .col-1 {
    width: 5.583333333333%;
}

.megamenu-panel-row .col-2 {
    width: 14.166666666666%;
}

.megamenu-panel-row .col-3 {
    width: 22.75%;
}

.megamenu-panel-row .col-4 {
    width: 31.333333333333%;
}

.megamenu-panel-row .col-5 {
    width: 39.916666666667%;
}

.megamenu-panel-row .col-6 {
    width: 48.5%;
}

.megamenu-panel-row .col-7 {
    width: 57.083333333333%;
}

.megamenu-panel-row .col-8 {
    width: 65.666666666667%;
}

.megamenu-panel-row .col-9 {
    width: 74.25%;
}

.megamenu-panel-row .col-10 {
    width: 82.833333333334%;
}

.megamenu-panel-row .col-11 {
    width: 91.416666666667%;
}

.megamenu-panel-row .col-12 {
    width: 100%;
}

.megamenu-tabs {
    width: 100%;
    float: left;
    display: block;
}

.megamenu-tabs-nav {
    width: 20%;
    margin: 0;
    padding: 0;
    float: left;
    list-style: none;
}

.navigation-portrait .megamenu-tabs-nav {
    width: 100%;
}

.megamenu-tabs-nav > li > a {
    width: 100%;
    padding: 10px 16px;
    float: left;
    font-size: 13px;
    text-decoration: none;
    color: #000;
    border: solid 1px #eff0f2;
    outline: 0;
    background-color: #fff;
}

.megamenu-tabs-nav > li.active a,
.megamenu-tabs-nav > li:hover a {
    background-color: #f5f5f5;
}

.megamenu-tabs-pane {
    width: 80%;
    min-height: 30px;
    padding: 20px;
    float: right;
    display: none;
    font-size: 13px;
    color: #000;
    border: solid 1px #eff0f2;
    background-color: #fff;
}

.megamenu-tabs-pane.active {
    display: block;
}

.navigation-portrait .megamenu-tabs-pane {
    width: 100%;
}

.megamenu-lists {
    width: 100%;
    display: table;
}

.megamenu-list {
    width: 100%;
    margin: 0 0 15px;
    padding: 0;
    display: inline-block;
    float: left;
    list-style: none;
}

.megamenu-list:last-child {
    margin: 0;
    border: none;
}

.navigation-landscape .megamenu-list {
    margin: -15px 0;
    padding: 20px 0;
    border-right: solid 1px #f0f0f0;
}

.navigation-landscape .megamenu-list:last-child {
    border: none;
}

.megamenu-list > li > a {
    width: 100%;
    padding: 10px 15px;
    display: inline-block;
    color: #000;
    text-decoration: none;
    font-size: 13px;
}

.megamenu-list > li > a:hover {
    background-color: var(--themPrimary);
    color: #fff;
}

.megamenu-list > li.megamenu-list-title > a {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
}

.megamenu-list > li.megamenu-list-title > a:hover {
    background-color: transparent;
}

.navigation-landscape .list-col-2 {
    width: 50%;
}

.navigation-landscape .list-col-3 {
    width: 33%;
}

.navigation-landscape .list-col-4 {
    width: 25%;
}

.navigation-landscape .list-col-5 {
    width: 20%;
}

.nav-menu > li > a {
    color: #000;
}

.nav-dropdown > li > a {
    color: #000;
    padding: 10px 20px;
    border-bottom: 1px solid #f6f6f6;
    font-family: "gilroy-semibolduploaded_file";
}

.nav-dropdown > li > a:hover,
.nav-dropdown > li > a:focus {
    color: var(--themPrimary);
}

.main_header_area.sticky {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 9999;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.transparent-menu {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 99;
}

.navigation-portrait .nav-menu > li > a {
    width: 100%;
    height: auto;
    padding: 10px 10px 10px 30px;
}

.fill-color1 {
    stroke: var(--themPrimary);
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .nav-dropdown > li > a,
    .megamenu-list > li > a {
        width: 65%;
    }
}

.btn-apply {
    border-radius: 50px;
    background: var(--themPrimary);
    color: #fff;
    padding: 10px 15px;
    display: inline-block;
    font-family: "gilroy-bolduploaded_file";
}
.btn-apply:hover {
    background-color: var(--themSecondary);
}

.login-btn {
    position: relative;
    margin-left: 15px;
}
.login-btn .btn {
    border-radius: 50px;
    padding: 10px 15px;
    border: 1px solid #000;
    font-weight: bold;
    font-size: 14px;
}
/* .login-btn .btn::after {
    border-top-color: var(--themPrimary) !important;
} */

.header_area .nav-brand {
    display: flex;
    align-items: center;
}
.simbol {
    background-color: var(--themPrimary);
    width: 55px;
    height: 55px;
    align-items: center;
    display: flex;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    position: relative;
    border-radius: 50%;
    margin-right: 20px;
}
.header_area .nav-brand span {
    font-size: 14px;
    line-height: normal;
    font-weight: bold;
    color: var(--themPrimary);
}

.header_area .dropdown-menu {
    border-radius: 20px;
    border: 1px solid var(--themPrimary3);
    overflow: hidden;
}
.header_area .dropdown-menu li a {
    font-size: 14px;
    font-family: "gilroy-semibolduploaded_file";
    color: #000;
    line-height: 34px;
}
.naces-logo {
    width: 150px;
}

.naces-bg-white {
    display: inline-block;
    margin-top: 20px;
}

.amemberOf {
    display: flex;
    align-items: flex-end;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
}
.amemberOf img {
    position: relative;
    margin-left: 15px;
    width: 60px;
}
.bnrsec {
    padding: 100px 0;
    text-align: center;
}
.bnrsec a img {
    position: relative;
    margin-bottom: 15px;
    max-width: 250px;
}
.bnrsec h6 {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    color: #000;
    font-family: "gilroy-semibolduploaded_file";
    letter-spacing: 0.22em;
}
.bnrsec h1 {
    font-weight: bold;
    font-family: "gilroy-bolduploaded_file";
    font-size: 48px;
}
.bnrsec p {
    margin-bottom: 20px;
    letter-spacing: 0.02em;
    font-size: 16px;
}

.saf {
    padding: 0 0 50px 0;
}
.saf h2 {
    font-size: 36px;
    font-weight: bold;
}
.saf p {
    color: #5a6179;
    letter-spacing: 0.01em;
    font-family: "gilroy-mediumuploaded_file";
}
.general-bx {
    overflow: auto;
    max-height: 480px;
}
.general-bx .inside-bx {
    border: 1px solid var(--themPrimary3);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    margin-bottom: 20px;
}
.general-bx .inside-bx h3 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
}
.general-bx .inside-bx h3 a {
    text-decoration: none !important;
}
.general-bx .inside-bx h3 a i {
    /* width: 20px;
  height: 20px; */
    border-radius: 50%;
    /* border: 1px solid var(--themPrimary); */
    position: relative;
    margin-left: 5px;
    /* color: var(--themPrimary); */
    /* font-size: 14px; */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tooltip1 {
    position: relative;
    display: inline-block;
}

.tooltip1 .tooltiptext {
    display: none;
    width: 260px;
    background-color: #fff;
    color: #000 !important;
    text-align: left;
    padding: 20px;
    border-radius: 15px;
    position: absolute;
    border: 1px solid var(--themPrimary3);
    z-index: 1;
    font-size: 12px;
    font-weight: inherit !important;
    line-height: 17px;
    top: 0 !important;
    left: 30px;
    font-family: "gilroy-semibolduploaded_file";
}

.tooltip1:hover .tooltiptext {
    display: block;
}

.inside-bx h6 {
    font-family: "gilroy-semibolduploaded_file";
    font-size: 14px;
    color: var(--themPrimary3);
    letter-spacing: 0.01em;
}
.inside-bx h6 span {
    position: relative;
    /* top: -5px; */
}
.inside-bx h6 strong {
    color: var(--themPrimary);
}

.border-btn {
    border: 1px solid var(--themPrimary);
    border-radius: 50px;
    padding: 12px 25px;
    color: #000;
    font-weight: bold;
    font-size: 14px;
    position: relative;
    display: inline-block;
    background: transparent;
}

.right-position {
    position: absolute;
    right: 30px;
    top: 15px;
    font-size: 34px !important;
    font-weight: bold;
    color: var(--themPrimary) !important;
}

.right-position del {
    font-size: 18px !important;
}

.general-bx::-webkit-scrollbar {
    display: none;
}
::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    background-color: var(--themPrimary3);
}

::-webkit-scrollbar-thumb {
    background: var(--themPrimary);
}

.rc-doc {
    background: var(--themSecondary);
    padding: 60px 0;
    text-align: center;
}
.rc-doc h2 {
    color: #000;
    font-weight: bold;
    font-size: 36px;
    margin-bottom: 40px;
}
.rc-doc p {
    font-size: 14px;
    line-height: 20px;
    color: #5a6179;
    margin-bottom: 60px;
    letter-spacing: 0.01em;
}

.drop-section {
    text-align: left;
}
.drop-section .form-control {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--themPrimary3);
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 45px;
    padding-left: 0;
    position: relative;
}

.drop-section .col-sm-8::after {
    position: absolute;
    top: 23px;
    right: 20px;
    display: block;
    border-top: 0.5em solid var(--themPrimary);
    border-right: 0.5em solid transparent;
    border-bottom: 0;
    border-left: 0.5em solid transparent;
    content: "";
}

.drop-section .form-control:focus {
    outline: none;
    box-shadow: none;
}

.icon-flex {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.icon-flex span {
    border-radius: 15px;
    width: 88px;
    height: 88px;
    background: #fff;
    border: 1px solid var(--themPrimary3);
    display: flex;
    align-items: center;
    justify-content: center;
}
.translation {
    padding: 100px 0;
    text-align: center;
}
.translation h2 {
    color: #000;
    font-weight: bold;
    font-size: 36px;
    margin-bottom: 40px;
}
.translation p {
    font-size: 14px;
    line-height: 20px;
    color: #5a6179;
    margin-bottom: 0;
    letter-spacing: 0.01em;
    font-family: "gilroy-mediumuploaded_file";
}
.application-pro {
    background-color: var(--themSecondary);
    padding: 100px 0;
}
.application-pro h2 {
    font-size: 36px;
    font-weight: bold;
}
.application-pro p {
    color: #5a6179;
    letter-spacing: 0.01em;
}
.pt-100 {
    padding-top: 100px;
}
.pr-150 {
    padding-right: 150px;
}
.btn-apply-text {
    color: var(--themPrimary);
    font-family: "gilroy-bolduploaded_file";
    /* background: url(../img/ar-rt.svg) no-repeat right;
  padding-right: 20px; */
    position: relative;
}

.getEv {
    padding: 100px 0;
    background-color: var(--themSecondary);
}
.mr-0 {
    margin-right: 0;
}
.getEv .simbol {
    display: inline-flex;
    width: 80px;
    height: 80px;
    font-size: 40px;
    line-height: 0;
}
.getEv h2 {
    font-weight: bold;
    font-size: 36px;
}
.getEv p {
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.01em;
    color: #5a6179;
    font-family: "gilroy-mediumuploaded_file";
}

.mb-20 {
    margin-bottom: 20px;
}

.megha {
    display: flex;
}
.width50 {
    width: 50%;
}

.mnu-flex {
    display: flex;
}

.content-mnu h3 {
    font-family: "gilroy-bolduploaded_file";
    font-size: 18px;
    line-height: 150%;
    color: #000000;
}
.content-mnu p {
    font-size: 14px;
    line-height: 150%;
    color: #5a6179;
    font-family: "gilroy-mediumuploaded_file";
    letter-spacing: 0.01em;
}
.mnu-text h4 {
    font-size: 14px;
    line-height: 150%;
    color: #5a6179;
}
.mnu-text ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.mnu-text ul li {
    margin-bottom: 10px;
}

.mnu-text ul li a {
    color: #000;
    font-family: "gilroy-semibolduploaded_file";
}
.mnu-text ul li a:hover {
    color: var(--themPrimary);
}
.width60 {
    width: 60%;
}
.width40 {
    width: 40%;
}
.devider-line {
    border-right: 1px solid var(--themPrimary3);
}
.pnl-mnu {
    width: 50%;
}
.pnl-mnu h5 {
    font-size: 14px;
    margin-bottom: 5px;
}
.pnl-mnu p {
    font-family: "gilroy-mediumuploaded_file";
    color: #5a6179;
}

.number {
    font-size: 36px;
    line-height: 42px;
    letter-spacing: -0.02em;
    color: var(--themPrimary);
    font-family: "gilroy-bolduploaded_file";
    margin-bottom: 10px;
}
.application-pro h4 {
    font-size: 18px;
    line-height: 21px;
    color: #000000;
    font-family: "gilroy-bolduploaded_file";
}

.right-one {
    position: relative;
}
.right-one::after {
    position: absolute;
    right: -5px;
    top: 15px;
    background: url(../img/ar-right.png) no-repeat;
    width: 230px;
    height: 13px;
    content: "";
    background-size: contain;
}

.left-one {
    position: relative;
}
.left-one::after {
    position: absolute;
    right: -5px;
    top: 15px;
    background: url(../img/ar-left.png) no-repeat;
    width: 230px;
    height: 13px;
    content: "";
    background-size: contain;
}
.u-one {
    position: relative;
}
.u-one::after {
    width: 154px;
    height: 189px;
    position: absolute;
    right: 64px;
    top: 20px;
    content: "";
    background: url(../img/ar-u.png) no-repeat;
    background-size: contain;
}

.flex-media {
    display: flex;
}
.general-bx p {
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.01em;
    font-family: "gilroy-mediumuploaded_file";
    color: #5a6179;
    word-break: break-word;
}
.general-bx h5 {
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 5px;
    color: #000000;
    font-family: "gilroy-bolduploaded_file";
}
.thum-img {
    margin-bottom: 20px;
}

.general-bx span {
    font-size: 14px;
    line-height: 150%;
    color: #5a6179;
}
.min-height {
    height: auto;
    overflow: inherit;
    max-height: inherit;
}
.p-100 {
    padding: 100px 0;
}

.arw-rtt {
    width: 0px;
    height: 0px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid var(--themPrimary);
    position: absolute;
    right: -15px;
    top: 3px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.section-bg {
    padding: 50px 0;
    font-size: 14px;
    background: #fff;
}

.section-bg h3 {
    font-size: 14px;
    line-height: 150%;
    font-family: "gilroy-semibolduploaded_file";
    color: #000000;
}
.nav-brand2 {
    display: flex;
    align-items: center;
    line-height: 70px;
    padding: 0;
    color: #000;
    font-size: 24px;
    text-decoration: none !important;
}
.nav-brand2 span {
    font-size: 14px;
    line-height: normal;
    font-weight: bold;
    color: #000;
}

.section-bg ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.section-bg ul li {
    margin-bottom: 10px;
}

.section-bg ul li a {
    color: #5a6179;
    font-size: 12px;
}
.section-bg ul li a:hover {
    text-decoration: underline;
    color: var(--themPrimary);
}
.ftrbtm {
    background: #000000;
    padding: 15px 0;
    text-align: center;
    font-size: 13px;
    line-height: 200%;
    color: #ffffff;
}
.mobile-block {
    display: none;
}
/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

.social-icon-link-header a:hover{
 background:var(--themPrimary);
 color: #fff;   
}

.header_area{
    position: relative;
}
.css-langiage{
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}
.css-langiage .form-select{
    appearance: none;
    border-radius: 50px;
    padding: 8px 10px;
    border: 1px solid var(--themPrimary);
    font-weight: bold;
    font-size: 14px;
    margin: 0 !important;
    width:80px !important;
    position: relative;
        background: #fff url(../img/a-btm.svg) no-repeat right 0 center/26px 5px !important;
    margin-left: 5px !important;
}
.css-langiage .form-select:focus{
    box-shadow: none !important;
    outline: none !important;
}
.css-langiage::after{
        position: absolute;
    top: 17px;
    right: 10px;
    display: block;
    border-top: 5px solid var(--themPrimary);
    border-right: 5px solid transparent;
    border-bottom: 0;
    border-left:5px solid transparent;
    content: "";
        border-top: 5px solid !important;
}

html:lang(zh-CN) .__affirm-logo.__ligature__affirm_full_logo__:after {
  display: none;
}
html:lang(zh-TW) .__affirm-logo.__ligature__affirm_full_logo__:after {
  display: none;
}
.contact-from.bg-color-gray .from-account.pt-4{
    padding: 50px 0 0;
}

/* @media only screen and (min-width: 800px) and (max-width:1280px) {
    .social-icon-link-header{
        margin-right: 70px;
    }
  
} */



@media only screen and (min-width: 1024px) and (max-width:1366px) {
    .social-icon-link-header{
        margin-right: 70px !important;
    }
 /* .btn-box.mobile-nan{
        margin-right: 36px !important;
    } */
  
}

@media only screen and (min-width: 1024px) and (max-width:1366px) {
    .social-icon-link-header{
        margin-right: 30px !important;
    }
 /* .btn-box.mobile-nan{
        margin-right: 36px !important;
    } */
  
}



@media only screen and (min-width:1025px) and (max-width:1280px) {
   
    /* .btn-box.mobile-nan{
        margin-right: 60px !important;
    } */
    .nav-menu > li > a{
            padding: 10px 5px;
            font-size: 12px;
    }
    .btn-apply{
            padding: 10px 10px;
             font-size: 12px;
    }
    .login-btn .btn{
         padding: 9px 10px;
          font-size: 12px;
    }
  
}
@media only screen and (min-width: 1067px) and (max-width:1300px) {
.social-icon-link-header {
    margin-right:6% !important;
}
}
@media only screen and (min-width: 1067px) and (max-width:1225px) {
.social-icon-link-header {
    margin-right:8% !important;
}
}
@media only screen and (max-width:1067px) {
    .btn-apply{
        padding: 10px 5px;
    }
    .login-btn .btn{
        padding: 9px 5px;
    }
    .social-icon-link-header{
            margin-right: 85px !important;
    }
}

@media only screen and (min-width: 600px) and (max-width:1024px) {
    .nav-menu > li > a{
        font-size: 12px;
        padding: 10px 5px;
    }
    .btn-apply{
        padding: 10px 5px;
        font-size: 12px;
    }
    .login-btn .btn{
         padding: 9px 5px;
        font-size: 12px;
    }
    .social-icon-link-header{
        margin-right: 80px !important;
    }
    .css-langiage .form-select{
        font-size: 12px;
        width: 70px !important;
    }
  
    .nav-toggle{
        right: 65px;
    }
    .social-icon-link-header a{
          width: 20px;
    height: 20px;
    font-size: 10px;
    line-height: 19px;
    }
    .css-langiage{
        top: 50% !important;
    }
    .nav-menu{
            justify-content: center;
    display: flex;
    flex-wrap: wrap;
    }

}
.thum-img .simbol.mr-0{
    width: 80px;
    height: 80px;
    font-size: 38px;
        line-height: 0;
}
@media only screen and (min-width:768px) and (max-width:991px) {
.social-icon-link-header{
    margin-right: 118px !important;
}
.nav-toggle{
        right: 75px;
}
}


@media only screen and (max-width: 991px) {
    .mobile-nan {
        display: none;
    }
    .mobile-block {
        display: block;
        text-align: left;
        width: 100%;
        padding: 20px;
    }
    .megha {
        display: inline-block;
        width: 100%;
    }
    .width40 {
        width: 100%;
    }
    .width60 {
        width: 100%;
    }
    .devider-line {
        border-bottom: 1px solid var(--themPrimary3);
        border-right: none;
    }
    .mnu-text.pl-5 {
        padding: 20px 0 0 0 !important;
    }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .right-one::after {
        display: none;
    }
    .left-one::after {
        display: none;
    }
    .u-one::after {
        display: none;
    }
    .saf .btn-apply {
        margin-bottom: 20px;
    }

    .saf .btn-apply-text {
        margin-bottom: 20px;
        display: inline-block;
    }
    .nav-brand2 span {
        font-size: 10px;
    }
    .nav-brand2 .simbol {
        margin-right: 5px;
        font-size: 24px;
        width: 45px;
        height: 45px;
    }

         .social-icon-link-header{
        margin-right: 60px;
    }
    .css-langiage{
        top: 24%;
    }
    .css-langiage .form-select{
        margin-left: 0 !important;
        padding: 2px 10px !important;
    }
    .css-langiage::after{
        top: 11px;
    }
}
@media only screen and (max-width: 767px) {
    .bnrsec {
        padding: 20px 0 50px;
    }
    .bnrsec h1 {
        font-size: 30px;
    }
    .rc-doc .border-btn {
        width: 100%;
    }
    br {
        display: none;
    }
    .saf {
        text-align: center;
    }
    .saf h2 {
        font-size: 24px;
    }
    .saf .btn-apply {
        margin-bottom: 20px;
    }
    .border-btn.ml-3 {
        margin-left: 0 !important;
        margin-top: 15px;
    }
    .general-bx .inside-bx {
        padding: 20px;
        text-align: center;
    }
    .right-position {
        position: relative;
        left: inherit;
        right: inherit;
        top: inherit;
        width: 100%;
    }
    .rc-doc h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    .drop-section .form-control {
        margin-bottom: 15px;
    }
    .translation {
        padding: 50px 0;
    }
    .translation h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .application-pro {
        padding: 50px 0;
    }
    .application-pro h2 {
        font-size: 24px;
    }
    .mb-5.right-one {
        margin-bottom: 0 !important;
        margin-top: 20px;
    }
    .mb-5.u-one {
        margin-bottom: 0 !important;
        margin-top: 20px;
    }
    .right-one::after {
        display: none;
    }
    .left-one::after {
        display: none;
    }
    .u-one::after {
        display: none;
    }
    .application-pro {
        text-align: center;
    }
    .p-100 {
        padding: 50px 0;
    }
    .pr-150 {
        padding-right: 15px;
        margin-bottom: 30px;
    }
    .flex-media {
        display: inline-block;
        width: 100%;
    }
    .text-center.mr-4 {
        margin-right: 0 !important;
    }
    .getEv {
        padding: 50px 0;
    }
    .getEv h2 {
        font-size: 24px;
    }
    .drop-section .form-control {
        padding: 10px !important;
    }
    .header_area .nav-brand span br {
        display: block !important;
    }
    .mnu-flex {
        display: inline-block;
        width: 100%;
    }
    .width40.pl-3 {
        padding-left: 0 !important;
    }


     .social-icon-link-header{
        display: none;
    }
    .css-langiage{
        top: 24%;
    }
    .css-langiage .form-select{
        margin-left: 0 !important;
        padding: 2px 10px !important;
    }
}
