/*!
Theme Name: Azarak limited
Theme URI: https://azrk.on-forge.com/
Author: Bazu
Author URI: https://bazucompany.com/
Description: Azarak theme
Version: 1.0.0
*/

@charset "utf-8";
/* CSS Document */

/* Fonts */


@font-face {
    font-family: "Montserrat";
    src: local('Montserrat'),
    url("./assets/fonts/Montserrat-Regular.woff2") format("woff2"),
    url("./assets/fonts/Montserrat-Regular.woff") format("woff"),
    url("./assets/fonts/Montserrat-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: "Montserrat";
    src: local('Montserrat'),
    url("./assets/fonts/Montserrat-Medium.woff2") format("woff2"),
    url("./assets/fonts/Montserrat-Medium.woff") format("woff"),
    url("./assets/fonts/Montserrat-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: local('Montserrat'),
    url("./assets/fonts/Montserrat-SemiBold.woff2") format("woff2"),
    url("./assets/fonts/Montserrat-SemiBold.woff") format("woff"),
    url("./assets/fonts/Montserrat-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: local('Montserrat'),
    url("./assets/fonts/Montserrat-Bold.woff2") format("woff2"),
    url("./assets/fonts/Montserrat-Bold.woff") format("woff"),
    url("./assets/fonts/Montserrat-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


/* Reset css */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-style: normal;
    vertical-align: baseline;
    font-feature-settings: 'locl' 0;
    /*color: #1A1A1F;*/
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

html{
    margin-top: 0 !important;
}

body {
    line-height: 1;
    background-color: #F6F6F6;
}

body::-webkit-scrollbar {
    width: 6px;
}

body::-webkit-scrollbar-track {
    background: #3A332D;
}

body::-webkit-scrollbar-thumb {
    background: #9D9FB0;
    height: 94px;
}

.admin-bar{
    padding-top: 32px !important;
}

.admin-bar .header{
    top: 32px;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

button{
    cursor: pointer;
    border: none;
}

button,
button:hover,
button:focus {
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* end Reset css */

:root {
    --az-primary: #003366;
    --az-dark: #0b1f33;
    --az-gold: #c9a24d;
    --az-light-soft: #f3f4f5;
    --az-text-main: #2b2e34;
}

*{
    font-family: "Montserrat", sans-serif;
}


*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    color: var(--az-text-main);
    background-color: #ffffff;
}

/* General */

.text-uppercase{
    text-transform: uppercase;
}

.text-white{
    color: #fff;
}

.text-center{
    text-align: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0.375rem;
    border: 1px solid transparent;
    background-color: transparent;
    transition: all 0.3s ease-out;
}

.btn:disabled {
    opacity: 0.65;
    cursor: default;
}

.btn-light {
    color: var(--az-dark);
    background-color: #ffffff;
    border-color: #ffffff;
}

.btn-light:hover {
    background-color: #f5f5f5;
    border-color: #f5f5f5;
}

.btn-outline-light {
    color: #ffffff;
    border-color: #ffffff;
}

.btn-outline-light:hover {
    color: var(--az-dark);
    background-color: #ffffff;
}

.small {
    font-size: 0.875rem;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--az-text-main);
    background-color: #ffffff;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--az-primary);
}


.section-padding {
    padding: 40px 0;
}

.section-padding-bottom {
    padding: 0 0 40px;
}


@media (max-width: 767px) {
    .section-padding {
        padding: 40px 0;
    }
}

.section-title {
    font-size: 54px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
    }
}

.text-primary-az {
    color: var(--az-primary);
}

.bg-light-soft {
    background-color: var(--az-light-soft);
}

.btn-pill {
    border-radius: 100px;
}

.btn-gradient-primary {
    border-radius: 100px;
    border: none;
    color: #ffffff;
    font-weight: 600;
    background-image: linear-gradient(90deg, var(--az-gold) 0%, var(--az-gold) 100%);
}

.btn-gradient-primary:hover {
    color: #ffffff;
    filter: brightness(1.05);
}

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

/* Header */

.site-header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 10;
    padding: 28px 0;
    color: #ffffff;
    transition: background 0.3s ease-out;
}

.site-header.scrolled{
    background: #0B1F33;
}

.header-overlay {
    position: absolute;
    inset: 0;
    /*background: #0B1F33;*/
    pointer-events: none;
    z-index: -1;
}

.site-logo img {
    max-height: 40px;
}

.main-nav a {
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease-out;
}

.main-nav a:hover {
    color: var(--az-gold);
}

.main-menu-list{
    display: flex;
    gap: 40px;
}

.site-logo{
    position: relative;
    z-index: 5;
}


/* Hero */

.hero-section {
    display: flex;
    align-items: center;
    position: relative;
    color: #ffffff;
    padding:100px 0 80px;
    min-height: 100vh;
    /*background: #0B1F33;*/
}

.hero-section .container{
    position: relative;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    height: 100%;
    top: auto;
    bottom: 0;
    pointer-events: none;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    /*background: radial-gradient(circle at top left, rgba(201, 162, 77, 0.3), transparent 50%),*/
    /*linear-gradient(180deg, rgba(11, 31, 51, 0.7) 0%, rgba(11, 31, 51, 0.9) 100%);*/
    z-index: -1;
}

.hero-content {
    padding-top: 72px;
    padding-bottom: 40px;
}

.hero-content .btn{
    margin-top: 24px;
}

.hero-title {
    font-size: 3.4rem;
    line-height: 1.1;
    font-weight: 500;
    max-width: 640px;
}

.hero-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background-color: rgba(17, 45, 73, 0.95);
    border-radius: 24px;
    padding: 24px;
    max-width: 570px;
    margin-top: 80px;
}

.hero-card p{
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
}

/* About / info cards */

.info-card {
    display: flex;
    align-items: center;
    background-color: var(--az-light-soft);
    border-radius: 24px;
    padding: 24px 18px;
    text-align: center;
    font-weight: 500;
    height: 100%;
}

.info-card p{
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
}

.about-us-image{
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.about-content-wrap{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    background: #F3F4F5;
    height: 100%;
    border-radius: 24px;
    gap: 24px;
}

.about-content-wrap p{
    font-size: 18px;
    line-height: 140%;
}


.about-content-row{
    margin: 40px 0 0;
}

/* Why Clients Choose */

.feature-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 24px;
}

.feature-card p{
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--az-primary);
    margin-bottom: 16px;
    height: 64px;
}

.feature-divider {
    height: 1px;
    width: 100%;
    background-image: linear-gradient(90deg, #d0d4da 0%, #d0d4da 100%);
    margin-bottom: 12px;
}

/* Timeline (Steps) */

.timeline-steps {
    position: relative;
    /*max-width: 860px;*/
    margin: 0 auto;
    /*padding-left: 28px;*/
    /*border-left: 2px solid #d0d4da;*/
}

.timeline-step {
    position: relative;
    padding: 16px 0;
    display: flex;
    gap: 16px;
}

.timeline-step:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transform: translateY(0);
    width: 64px;
    height: 64px;
    border-radius: 999px;
    border: 2px solid var(--az-light-soft);
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 1.25rem;
    color: var(--az-primary);
    margin: auto;
}

.timeline-content {
    display: flex;
    flex-direction: column;
    /*margin-left: 32px;*/
    background-color: var(--az-light-soft);
    border-radius: 24px;
    padding: 20px 24px;
    gap: 12px;
    width: calc(50% - 56px);
}

.timeline-step:nth-child(odd){
    justify-content: flex-end;
}

.timeline-content .separator{
    display: block;
    width: 100%;
    height: 1px;
    background: #036;
    opacity: 0.2;
}

.timeline-content h3 {
    font-size: 24px;
    line-height: 140%;
    font-weight: 600;
    color: var(--az-primary);
    /*margin-bottom: 8px;*/
}

.timeline-content p {
    margin-bottom: 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
}

.timeline-step:after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    margin: auto;
    background: #f3f4f5;
    z-index: -1;
}

.timeline-step:first-child:after,
.timeline-step:last-child:after{
    height: 50%;
}

.timeline-step:first-child:after{
    top: auto;
    bottom: 0;
}

@media (max-width: 575px) {

    .timeline-marker {
        width: 52px;
        height: 52px;
        font-size: 1rem;
        left: -30px;
    }

    .timeline-content {
        margin-left: 24px;
    }
}

/* Services */

.services-text{
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    text-align: right;
}

.service-card {
    background-color: var(--az-light-soft);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: center;
    height: 100%;
    min-height: 140px;
}

.service-card p{
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background-color: var(--az-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon img {
    width: 34px;
    height: 34px;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--az-primary);
    margin-bottom: 12px;
}

.service-divider {
    height: 1px;
    width: 100%;
    background-image: linear-gradient(90deg, #d0d4da 0%, #d0d4da 100%);
    margin: 12px 0;
}

/* Banner */

.banner-card {
    position: relative;
    border-radius: 24px;
    padding: 48px 16px;
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.banner-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(11, 31, 51, 0.9);
    z-index: -1;
}

.banner-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 960px;
    margin: 0 auto;
}

.banner-inner .btn{
    max-width: max-content;
    margin: auto;
}

.banner-title {
    font-size: 2.5rem;
    font-weight: 500;
}

@media (max-width: 767px) {
    .banner-title {
        font-size: 1.9rem;
    }
}

/* Info section */

.info-box {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background-color: #ffffff;
    border-radius: 24px;
    padding: 40px;
    font-size: 0.98rem;
    font-weight: 500;
    height: 100%;
}

.info-box p{
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    color: #2b2e34;
}

.info-image {
    border-radius: 24px;
    height: 100%;
    overflow: hidden;
}

.info-stat-cards{
    margin-top: 40px;
}

.info-stat-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 20px 24px;
}

.info-stat-card .label {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: var(--az-text-main);
    margin-bottom: 8px;
}

.info-stat-card .value {
    display: inline-block;
    font-weight: 600;
    font-size: 18px;
    line-height: 140%;
    min-height: 52px;
    color: var(--az-primary);
}

.link-underline {
    text-decoration: underline;
    color: var(--az-primary);
}

.link-underline:hover {
    color: var(--az-dark);
}

.info-wide-image {
    border-radius: 24px;
    overflow: hidden;
    height: 280px;
}

@media (max-width: 767px) {
    .info-box {
        padding: 24px;
    }

    .info-wide-image {
        height: 200px;
    }
}

/* Vacancies */

.vacancy-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 24px;
    height: 100%;
}

.vacancy-card > p{
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #036;
}

.vacancy-card-header{
    display: flex;
    gap: 24px;
    justify-content: space-between;
    margin-bottom: 24px;
}

.vacancy-card-header .flex-grow-1{
    text-align: right;
}

.vacancy-icon img {
    width: 54px;
    height: 54px;
}

.vacancy-title {
    font-size: 18px;
    line-height: 120%;
    font-weight: 600;
    color: var(--az-primary);
    margin-bottom: 8px;
}

.vacancy-rate {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 0;
}

/* Team */

.team-card {
    position: relative;
    background-color: var(--az-light-soft);
    border-radius: 24px;
    overflow: hidden;
    /*padding: 20px 16px;*/
}

.team-photo {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    height: 260px;
}

.team-photo img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    margin: auto;
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    text-align: center;
    color: #fff;
    margin-bottom: 4px;
    padding: 0 8px;
}

.team-role {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Reviews */

.review-cards{
    column-count: 3;
    gap: 24px;
}

.review-card {
    background-color: var(--az-light-soft);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    break-inside: avoid;
    margin-bottom: 24px;
}

.review-card-header{
    display: flex;
    gap: 16px;
    margin-bottom: 16px !important;
}

.review-flag-placeholder {
    width: 28px;
    height: 20px;
    border-radius: 4px;
    background: linear-gradient(90deg, #d0d0d0, #f0f0f0);
}

.review-country {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: var(--az-text-main);
}

.review-text {
    font-weight: 400;
    font-size: 15px;
    line-height: 140%;
    color: #6f6f6f;
    margin-bottom: 0;
}

.review-photo {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.review-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-name {
    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
    color: var(--az-primary);
}

.review-card-footer{
    gap: 16px;
}

/* Contacts */

.contact-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background-color: var(--az-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon img {
    width: 34px;
    height: 34px;
}

.contact-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 140%;
    color: var(--az-primary);
    margin-bottom: 6px;
}

.contact-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #2b2e34;
}

/* Footer */

.site-footer {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    color: #ffffff;
    overflow: hidden;
}

.site-footer .site-logo{
    margin-bottom: 64px;
}

.footer-nav a{
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: #fff;
    opacity: 0.6;
    text-decoration: none;
    transition: all 0.3s ease-out;
}

.footer-nav a:hover{
    color: var(--az-gold);
}

.footer-top {
    position: relative;
    overflow: hidden;
    padding: 64px 0;
}

.footer-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.footer-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-top::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--az-dark) 0%, var(--az-dark) 100%);
    z-index: -1;
}

.footer-nav .footer-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-nav .footer-link:hover {
    color: #ffffff;
}

.footer-subscribe-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    text-align: right;
    color: #fff;
    margin-bottom: 24px;
}

.footer-input-wrap {
    flex: 1 1 auto;
}

.footer-input {
    border-radius: 100px;
    border-color: #ffffff;
    background-color: transparent;
    color: #ffffff;
    padding-inline: 20px;
    height: 40px;
    font-size: 0.9rem;
}

.footer-input::placeholder {
    color: #b0b0b0;
}

.footer-cta {
    border-radius: 100px;
    font-size: 0.9rem;
    padding-inline: 24px;
}

.footer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-end;
    font-size: 12px;
    color: #ffffff;
}

.footer-bottom {
    background-color: #091929;
}

.footer-bottom p {
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
    text-align: center;
    color: #fff;
    opacity: 0.6;
}

.site-footer .form-row{
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: 24px;
}

.site-footer .form-row input{
    appearance: none;
    background: transparent;
    font-weight: 400;
    font-size: 15px;
    line-height: 100%;
    padding: 11px 20px;
    display: flex;
    height: 42px;
    border-radius: 100px;
    border: 1px solid #ffffff;
    cursor: pointer;
    width: 300px;
    outline: none;
}

.site-footer .form-row input[type="submit"]{
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: #0b1f33;
    background: #fff;
    width: 200px
}

.site-footer .form-row input:-webkit-autofill,
.site-footer .form-row input:-webkit-autofill:hover,
.site-footer .form-row input:-webkit-autofill:focus,
.site-footer .form-row input:-webkit-autofill:active{
    background: transparent !important;
    -webkit-text-fill-color: #fff !important;
    color: #fff !important;
    transition: background-color 5000s ease-in-out 0s !important;
}

.site-footer .wpcf7-response-output{
    display: none;
}

.site-footer .form-subscribe-wrap{
    position: relative;
    padding-bottom: 3px;
    max-width: max-content;
    margin: 0 0 0 auto;
}

.site-footer .sent .wpcf7-response-output {
    position: absolute;
    left: 0;
    right: auto;
    font-size: 12px;
    display: flex;
    /*justify-content: center;*/
    font-weight: 400;
    padding: 0 !important;
    width: 100%;
    max-width: 300px;
    border: none !important;
    background: transparent;
    bottom: 0;
    margin: 0;
    top: auto;
}

.site-footer .form-row .wpcf7-spinner{
    display: none;
}

.site-footer .wpcf7-not-valid-tip{
    color: #f05353;
    position: absolute;
    font-size: 12px;
    margin-top: 5px;
}

@media (min-width: 992px) {
    .mobile-menu-toggle{
        display: none;
    }
}

@media (max-width: 1399px) {
    .contact-icon{
        width: 44px;
        height: 44px;
    }

    .contact-icon svg{
        width: 26px;
        height: 26px;
    }

    /*.service-icon{*/
    /*    width: 44px;*/
    /*    height: 44px;*/
    /*}*/

    /*.service-icon svg{*/
    /*    width: 26px;*/
    /*    height: 26px;*/
    /*}*/
}


@media (max-width: 1199px) {
    .section-title{
        font-size: 44px;
    }

    .contact-icon{
        width: 40px;
        height: 40px;
    }

    .contact-icon svg{
        width: 20px;
        height: 20px;
    }

    .service-icon{
        width: 40px;
        height: 40px;
    }

    .service-icon svg{
        width: 20px;
        height: 20px;
    }
}

@media (min-width:768px) and (max-width: 1199px) {
    .about-content-wrap{
        padding: 24px;
    }
}


/* Mobile */

@media (max-width: 991px) {

    /* Header */

    /* header mobile menu */
    .menu-open{
        overflow: hidden;
    }

    .mobile-menu-toggle {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        outline: none;
        width: 40px;
        height: 40px;
        padding: 0;
        cursor: pointer;
        z-index: 5;
        border: none;
        border-radius: 50%;
        background: #C9A24D;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 18px;
        height: 2px;
        background: #fff;
    }

    .mobile-menu-toggle:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 10px;
        width: 18px;
        height: 2px;
        background: #fff;
        margin: auto;
        transition: all 0.3s ease-out;
    }

    .mobile-menu-toggle:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        top: 10px;
        width: 18px;
        height: 2px;
        margin: auto;
        background: #fff;
        transition: all 0.3s ease-out;
    }

    .menu-open .mobile-menu-toggle span {
        visibility: hidden;
    }

    .menu-open .mobile-menu-toggle:before {
        transform: rotate(45deg);
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        width: 20px;
    }

    .menu-open .mobile-menu-toggle:after {
        transform: rotate(-45deg);
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        width: 20px;
    }

    .site-header{
        padding: 18px 0;
    }

    .site-header .main-nav {
        display: flex;
        position: absolute;
        width: 100%;
        left: 0;
        top: 0;
        height: 100vh;
        overflow: hidden;
        flex-direction: column;
        justify-content: center;
        background: #0B1F33;
        transition: opacity 0.3s ease-out;
        opacity: 0;
        pointer-events: none;
    }

    .menu-open .site-header .main-nav {
        height: 100vh;
        z-index: 4;
        overflow: auto;
        opacity: 1;
        pointer-events: all;
    }

    .site-header .main-menu-list{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* Header */

    .hero-card{
        position: relative;
        margin-left: auto;
        margin-right: auto;
        margin-top: 280px;
    }

    .hero-card:before{
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        width: 292px;
        height: 363px;
        background: center / contain  url(/wp-content/themes/azarak/assets/img/hero-bg-man.png);
        top: -300px;
        z-index: -1;
    }

    .hero-title {
        font-size: 36px;
        text-align: center;
        margin: auto;
    }

    .hero-content .btn{
        margin-left: auto;
        margin-right: auto;
    }

    .section-title{
        font-size: 36px;
        text-align: center;
    }

    #services .section-title,
    .about-content-wrap .section-title{
        text-align: left;
    }


    .site-logo img {
        max-height: 32px;
    }

    .hero-content {
        text-align: center;
        padding-top: 56px;
    }

    .feature-card,
    .service-card,
    .info-box,
    .vacancy-card,
    .contact-card,
    .review-card {
        padding: 20px;
    }

    .feature-card{
        height: 100%;
    }

    .about-content-wrap{
        height: auto;
    }

    .about-content-wrap{
        margin: 40px 0 0;
    }

    .services-text br{
        display: none;
    }

    .timeline-step{
        padding: 8px 0;
    }

    .review-cards {
        column-count: 2;
        gap: 24px;
    }

    .site-footer .site-logo {
        margin-bottom: 24px;
    }

    .footer-subscribe-title{
        text-align: left;
    }

    .site-footer .form-row,
    .site-footer .footer-meta{
        justify-content: flex-start;
    }

    .site-footer .form-subscribe-wrap{
        margin: 0;
    }

}

@media (max-width: 767px) {
    .info-image{
        height: auto;
        margin-bottom: 24px;
    }

    .timeline-marker{
        position: static;
        margin: 0;
        flex-shrink: 0;
    }

    .timeline-step:after{
        display: none;
    }

    .timeline-content{
        width: calc(100% - 60px);
    }

    .timeline-step:nth-child(even){
        flex-direction: row-reverse;
    }

    #services .section-title{
        text-align: center;
    }

    .services-text{
        text-align: center;
    }
}

@media (max-width: 575px) {

    .hero-title{
        font-size: 24px;
    }

    .hero-content .btn{
        font-size: 18px;
        line-height: 140%;
        width: 100%;
        max-width: 370px;
    }

    .hero-card{
        padding: 16px;
    }

    .hero-card p{
        font-size: 12px;
    }

    .section-title {
        font-size: 24px;
        line-height: 120%;
        text-align: center;
    }

    .site-footer .form-row input{
        padding: 12px;
        font-size: 12px;
        max-width: 50vw;
    }

    .site-footer .form-row input[type="submit"]{
        font-size: 13px;
        max-width: calc(50vw - 30px);
        padding: 5px;
    }

    .service-card{
        flex-direction: column;
        align-items: baseline;
        gap: 24px;
    }

    .team-photo{
        height: 67vw;
    }

    .about-content-wrap{
        padding: 16px;
    }

    .about-content-wrap br{
        display: none;
    }

    .review-cards{
        display: flex;
        overflow: auto;
        gap: 0;
    }

    .review-card{
        width: 300px;
        flex-shrink: 0;
        height: inherit;
        margin-left: 12px;
        margin-right: 12px;
    }

    .review-text br{
        display: none;
    }

    #reviews .row>*{
        padding: 0;
    }

    .info-box p{
        font-size: 16px;
    }

    .review-text{
        margin-bottom: auto;
    }

    .site-footer .main-menu-list{
        display: grid    ;
        grid-template-columns: 1fr 1fr;
        grid-row-gap: 24px;
        margin-bottom: 40px;
    }

    .site-footer .form-row{
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .site-footer .form-row input,
    .site-footer .form-row input[type="submit"]{
        width: calc(100vw - 32px);
        max-width: calc(100vw - 32px);
    }

    .footer-top{
        padding: 40px 0;
    }
}


@media (max-width: 340px) {
    .contact-card{
        padding: 12px;
    }

    .contact-icon{
        width: 48px;
        height: 48px;
    }

    .contact-text{
        word-break: break-word;
    }
}