html, body{
    background-color: #F2F2F2;
}
:root {
    --theme-gold  : #9c8b3e;
    --theme-white: #FFFFFF;
    --theme-nero: #1d1d1d;
    --theme-dark-imperial-blue: #0c0a6c;
}
body {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-family: 'Montserrat', sans-serif;
    font-weight: normal;
    font-size: 14px;
    font-style: normal;
    color: var(--theme-nero);
    line-height: 1.625;
}
.c {
    max-width: 1290px;
}
.col {
    display: inline-block;
}
.col_1 {
    width: 100%;
}
.col_2 {
    width: 50%;
}
.col_3 {
    width: 33.33%;
}
.col_4 {
    width: 25%;
}
.col_5 {
    width: 20%;
}
.col_6 {
    width: 16.66%;
}
.col_35 {
    width: 35%;
}
.col_40 {
    width: 40%;
}
.col_60 {
    width: 60%;
}
.col_65 {
    width: 65%;
}
.section_padding {
    padding: 50px 0;
}
.title_36 {
    font-size: 36px;
    font-weight: 700;
    color: var(--theme-nero);
    line-height: 1.1;
}
.title_24 {
    font-size: 24px;
    font-weight: 700;
    color: var(--theme-nero);
    line-height: 1.1;
}
.title_20 {
    font-size: 20px;
    font-weight: 700;
    color: var(--theme-nero);
    line-height: 1.4;
}
.title_18 {
    font-size: 18px;
    font-weight: 600;
    color: var(--theme-nero);
    line-height: 1.5;
}
.btn {
    line-height: 1.1;
    font-size: 14px;
    padding: 10px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--theme-white);
    min-width: 200px;
    display: inline-block;
    border-radius: 50px;
    background-color: var(--theme-gold);
    border: 1px solid var(--theme-gold);
}
.btn.bg_blue {
    background-color: var(--theme-dark-imperial-blue);
    border: 1px solid var(--theme-dark-imperial-blue);
}
.btn:hover {
    background-color: transparent;
    color: var(--theme-gold);
}
.btn.bg_blue:hover {
    color: var(--theme-dark-imperial-blue);
}
.txt_center {
    text-align: center;
}
.bg_triangle {
    background-color: var(--theme-white);
    background-image: url(../images/bg-triangle.svg);
    background-attachment: fixed;
    background-size: cover;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.bg_white {
    background-color: var(--theme-white);
}
.desc {
    color: var(--theme-nero);
    line-height: 1.5;
}
.content_with_btn_sec .title_36,
.our_brands .title_36,
.how_we_work .title_36,
.our_values .title_36,
.meet_the_team .title_36 {
    max-width: 630px;
    margin: auto;
    text-align: center;
}
.content_with_btn_sec .desc,
.our_brands .desc,
.how_we_work .desc,
.meet_the_team .desc {
    max-width: 625px;
    margin: auto;
    text-align: center;
    padding-top: 30px;
}

/* -------------------------- Header ------------------------------------ */

.header {
    padding: 25px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}
.has-scrolled .header {
    background-color: var(--theme-dark-imperial-blue); 
}
.header .row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.header .logo {
    display: inline-block;
}
.header .logo img {
    width: 150px;
}
.header .menu ul {
    list-style: none;
}
.header .menu ul li {
    display: inline-block;
    margin-right: 30px;
}
.header .menu ul li:last-child {
    margin-right: 0;
}
.header .menu ul li a {
    display: block;
    color: var(--theme-white);
    text-transform: uppercase;
    line-height: 1.5;
    transition: all .3s;
}
.header .menu ul li.current_page_item a,
.header .menu ul li a:hover {
    text-decoration: underline;
}

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

.footer {
    background-color: var(--theme-dark-imperial-blue);
}
.footer .row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin: 0 -10px;
}
.footer .col {
    padding: 0 10px;
}
.footer .logo {
    display: inline-block;
}
.footer .logo img {
    width: 130px;
}
.f_title {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    color: var(--theme-white);
    line-height: 1.5;
}
.footer .menu ul {
    list-style: none;
    margin-top: 12px;
}
.footer .menu ul li {
    display: block;
    margin-top: 12px;
}
.footer .menu ul li:first-child {
    margin-top: 0;
}
.footer .menu ul li a {
    display: block;
    color: var(--theme-white);
    line-height: 1.5;
    transition: all .3s;
}
.footer .menu ul li a:hover {
    text-decoration: underline;
}
.social_links {
    margin-top: 12px;
}
.social_links .soc_link {
    display: inline-block;
}
.social_links .soc_link img {
    width: 50px;
    height: 50px;
    transition: all .3s;
}
.social_links .soc_link:hover img {
    transform: scale(1.2);
}
.social_links .soc_link + .soc_link {
    margin-left: 12px;
}
.text_bold {
    font-weight: 600;
}

/* -------------------------- Banner ------------------------------------ */

.banner {
    background-color: var(--theme-dark-imperial-blue);
    background-size: cover;
    background-attachment: fixed;
}
.banner_image {
    max-width: 300px;
    margin: auto;
    display: block;
    padding: 150px 0 65px;
}
.banner_content {
    padding: 180px 0 120px;
}
.banner_content .title {
    font-size: 48px;
    color: var(--theme-gold);
    text-transform: uppercase;
    line-height: 1;
    font-family: 'Michroma', sans-serif;
}
.banner_content .desc {
    font-size: 18px;
    color: var(--theme-white);
    max-width: 600px;
    margin-top: 15px;
}

/* -------------------------- Home ------------------------------------ */

.content_with_btn_sec .btn {
    margin-top: 30px;
}
.our_brands {
    background-color: var(--theme-white);
}
.brand_title {
    background-color: var(--theme-white);
    color:  var(--theme-gold);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    padding: 65px 15px;
}
.our_brands .row {
    margin: 30px -25px 0;
    font-size: 0;
}
.our_brands .col {
    padding: 0 25px;
}
.find_more_btn {
    color: var(--theme-dark-imperial-blue);
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
}
.our_brands .find_more_btn {
    margin-top: 30px;
}
.find_more_btn i {
    vertical-align: middle;
    font-size: 12px;
    line-height: 1;
    margin-left: 5px;
    transition: transform 0.3s ease;
}
.find_more_btn:hover i {
  transform: translateX(6px);
}
.candidates_and_clients_sec {
    padding-bottom: 100px;
}
.grey_box {
    padding: 30px 50px;
    background-color: #f3f3f3;
    border-radius: 8px;
    max-width: 780px;
    margin: 60px auto 0;
    position: relative;
}
.grey_box img {
    width: 200px;
    border-radius: 8px;
    position: absolute;
    top: -60px;
    right: -60px;
}
.grey_box .title_24 {
    color: var(--theme-dark-imperial-blue);
}
.grey_box.rtl .title_24 {
    color: var(--theme-gold);
}
.grey_box .desc,
.grey_box .desc p + p {
    margin-top: 15px;
}
.btn_grp {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}
.grey_box .title_and_desc {
    padding-right: 120px;
}
.grey_box + .grey_box {
    margin: 140px auto 0;
}
.grey_box.rtl img {
    right: auto;
    left: -60px;
}
.grey_box.rtl .title_and_desc {
    padding-right: 0;
    padding-left: 120px;
}
.latest_jobs_sec .row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
}
.latest_jobs_sec .title_36 + .row,
.latest_jobs_sec .find_more_btn {
    margin-top: 30px;
}
.latest_job_card {
    padding: 30px 15px;
    background-color: var(--theme-white);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.latest_job_card .title_20 {
    color: var(--theme-gold);
}
.latest_job_card .desc {
    font-weight: 600;
    margin-top: 15px;
}
.latest_job_card .btn {
    margin-top: 15px;
}

/* -------------------------- Candidates ------------------------------------ */

.quote {
    font-family: serif;
    font-size: 128px;
    font-weight: 700;
    color: var(--theme-dark-imperial-blue);
    line-height: 0.23;
    margin-top: 55px;
}
.name {
    font-weight: 600;
    color: var(--theme-dark-imperial-blue);
    margin-top: 25px;
    line-height: 1.5;
}
.position {
    color: #9ca3af;
    line-height: 1.5;
}
.testimonials_slider {
    padding-top: 30px;
}
.swiper-pagination {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    justify-content: center;
    position: relative;
    margin-top: 30px;
}
.swiper-pagination-bullet {
    background: #e5e7eb;
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background: var(--theme-dark-imperial-blue);
}

/* -------------------------- Clients ------------------------------------ */

.how_we_work .desc {
    max-width: 900px;
}
.how_we_work_tabs {
    max-width: 900px;
    margin: auto;
}
.work_tabs {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-top: 30px;
}
.work_tab {
    padding: 15px;
    background-color: #f3f3f3;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--theme-nero);
    border-radius: 12px 12px 0 0;
    display: block;
    width: 100%;
    text-align: center;
}
.work_tab.active {
    background-color: #d4d4d4;
}
.work_block {
    padding: 50px;
    background-color: #d4d4d4;
    border-radius: 0 0 12px 12px;
    display: none;
}
.work_block.active {
    display: block;
}
.work_block .row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    margin: 0 -20px;
}
.work_block .col {
    padding: 0 20px;
}
.work_block .image {
    height: 100%;
    padding-top: 100%;
}
.work_block .image .bg_full {
    border-radius: 8px;
}
.how_we_work .work_block .desc {
    text-align: left;
    padding-top: 25px;
}
.work_block .btn {
    margin-top: 25px;
}
.testimonials_slider .desc p + p {
    margin-top: 30px;
}

/* -------------------------- About us ------------------------------------ */

.our_values .row {
    margin: 30px -25px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    row-gap: 50px;
}
.our_values .col {
    padding: 0 25px;
}
.our_brands_box {
    padding: 25px 30px;
    background-color: #f3f3f3;
}
.our_brands_box .title_24 {
    color: var(--theme-dark-imperial-blue);
}
.title_border {
    width: 55px;
    height: 3px;
    background-color: var(--theme-dark-imperial-blue);
    margin: 15px 0;
}
.btn_sec .row {
    font-size: 0;
    margin: 0 -10px;
}
.btn_sec .col {
    padding: 0 10px;
    text-align: center;
}
.meet_the_team .title_36 {
    margin-top: 30px;
}
.meet_the_team .row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    margin: 0 -15px;
}
.meet_the_team .col {
    padding: 0 15px;
    margin-top: 30px;
}
.team {
    text-align: center;
    cursor: pointer;
}
.team img {
    border-radius: 50%;
    width: 200px;
}
.team .name {
    font-weight: 600;
    color: var(--theme-nero);
    margin-top: 10px;
    line-height: 1.2;
    font-size: 18px;
}
.team .position,
.team .find_more_btn {
    color: var(--theme-nero);
    margin-top: 10px;
}
.meet_the_team .desc {
    padding-top: 0;
}
.team .popup_grid {
    display: none;
}

/* -------------------------- popup ------------------------------------ */

.popup_open .common_popup {
    opacity: 1;
    visibility: visible;
}
.popup_open body{
	padding-right: 17px;
	overflow: hidden;
}
.common_popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(142 147 157 / 70%);
    z-index: 9999;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}
.popup_wrap {
    display: table;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    position: relative;
}
.popup_inner {
    display: table-cell;
    vertical-align: middle;
    padding: 90px 30px;
}
.popup_box {
    position: relative;
    max-width: 800px;
    margin:auto;
}
.common_popup .popup_grid {
    display: block;
    padding: 10px 15px 30px;
    background-color: var(--theme-white);
    border-radius: 8px;
}
.common_popup .popup_grid .row {
    margin: 0 -5px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}
.common_popup .popup_grid .col {
    padding: 0 5px;
}
.profile_img {
    width: 200px;
    border-radius: 50%;
}
.common_popup .popup_grid .name {
    font-size: 30px;
    font-weight: 700;
    color: var(--theme-nero);
    margin-top: 0;
    line-height: 1.2;
}
.common_popup .popup_grid .position {
    color: var(--theme-nero);
    margin-top: 5px;
}
.common_popup .popup_grid .desc {
    margin-top: 25px;
}
.common_popup .popup_grid .desc p + p {
    margin-top: 20px;
}
.common_popup .popup_grid .close_btn {
    padding: 0 10px 10px;
    text-align: right;
}
.common_popup .popup_grid .close {
    color: var(--theme-gold);
    font-size: 20px;
}
.social_contacts {
    margin-top: 31px;
}
.social_contact {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}
.social_contact .soc_ico {
    width: 40px;
    height: 40px;
}
.social_contact .soc_cont {
    color: var(--theme-dark-imperial-blue);
    transition: all .3s;
}
.social_contact .soc_cont.tel {
    color: var(--theme-nero);
    font-weight: 600;
}
.social_contact .soc_cont:hover {
    text-decoration: underline;
}

/* -------------------------- Contact Us ------------------------------------ */

.contact_us {
    padding: 30px 15px;
    background-color: var(--theme-white);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}
.contact_us .row {
    display: flex;
    flex-direction: row;
    margin: 0 -10px;
}
.contact_us .col {
    padding: 0 10px;
}
.form_control {
    width: 100%;
    padding: 15px;
    border: 1px solid #d1d5db;
    font-size: 14px;
    margin-top: 25px;
}
textarea.form_control {
    height: 80px;
    resize: vertical;
}
.contact_form .submit_btn {
    margin-top: 25px;
}
.spinner_corect {
    display: inline-block;
    position: relative;
}
.contact_form .wpcf7-spinner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}
.contact_form .btn {
    transition: all .3s;
    cursor: pointer;
}
.burger_menu{
    display: none;
}

.c_editor p + p {
    margin-top: 30px;
}
.mobile-menu {
    display: none;
}
/* -------------------------- editor css ------------------------------------ */

.c_editor {
    line-height: 1.5;
    font-size: 14px;
    color: var(--theme-nero);
}
.c_editor p {
    word-break: break-word;
}
.c_editor strong{
    font-weight: bold;
}
.c_editor i, .c_editor em{
    font-style: italic;
}
.c_editor em{
    font-size: 14px;
    font-style: normal;
    letter-spacing: 0.2px;
}
.c_editor > ul, .c_editor > ol{
    margin-top: 30px;
}
.c_editor ul li, .c_editor ol li{
    list-style: none;
}
.c_editor ul li{
    position: relative;
    padding-left: 20px;
    margin-top: 10px;
    word-break: break-word;
}
.c_editor ul li:before{
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: #0D0D0D;
    border-radius: 50%;
    content: '';
}
.c_editor ul li {
    border-radius: 0;
}
.c_editor ol{
    counter-reset: item;
}
.c_editor ol li{
    counter-increment: item;
    padding-left: 0px;
    margin-top: 10px;
    display: table;
    word-break: break-word;
}
.c_editor ol li:before {
    content: counters(item, ".") ". ";
    display: table-cell;
    font-size: 14px;
    color: #0D0D0D;
    line-height: 1;
    padding-right: 5px;
    white-space: nowrap;
}
.c_editor blockquote {
    font-weight: bold;
    border-left: 3px solid #0D0D0D;
    position: relative;
    background-color: #fafafa;
    padding: 25px 30px;
    margin-top: 40px;
}
.c_editor blockquote p{
    margin-top: 0;
}
.c_editor img.alignright { float: right; }
.c_editor img.alignleft { float: left; }
.c_editor img.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.c_editor .alignright { float: right; }
.c_editor .alignleft { float: left; }
.c_editor .aligncenter { display: block; margin-left: auto; margin-right: auto; }
.c_editor figure {
    width: auto !important;
    max-width: 100%;
}
.c_editor img{
    width: auto;
    height: auto;
}
.c_editor p:after {
    clear: both;
    content: '';
    display: block;
}
.c_editor table{
    text-align: center;
    width: 100%;
    margin-top: 30px;
    border: 1px solid #d1d5db;
    border-left: none;
    border-top: none;
}
.c_editor table td{
    padding: 10px;
    border-top: 1px solid #d1d5db;
    vertical-align: middle;
    border-left: 1px solid #d1d5db;
    word-break: break-word;    
}
.c_editor > *:first-child,.c_editor ul li:first-child {
    margin-top: 0;
}
.c_editor a {
    color: var(--theme-dark-imperial-blue);
    transition: all .3s;
}
.c_editor a:hover {
    text-decoration: underline;
}
.c_editor h1, .c_editor h2, .c_editor h3, .c_editor h4, .c_editor h5, .c_editor h6{
    margin-top: 30px;
    line-height: 1.1;
    font-weight: 600;
    word-break: break-word;
    color: var(--theme-nero);
}
.c_editor h1 {
    font-size: 38px;
}
.c_editor h2 {
    font-size: 34px;
}
.c_editor h3 {
    font-size: 32px;
}
.c_editor h4 {
    font-size: 22px;
}
.c_editor h5 {
    font-size: 17px;
}
.c_editor h6 {
    font-size: 15px;
}
.font-semibold {
    font-weight: 600;
}
/*************/