@charset "UTF-8";
/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    /* Colors (updated: background set to white) */
    --bg: #FFFFFF; /* page background */
    --primary: #203d81; /* main blue */
    --secondary: #E31E24;
    --accent: #2293d4; /* light blue */
    --danger: #0e2968; /* red */
    --white: #FFFFFF;
    --text-dark: #2B2A29; /* dark text for readability */
    --text-light: rgb(183, 201, 216);
    --border: #ebede1;

    /* Fonts */
    --font-heading: 'Convergence', sans-serif;
    --font-body: Arial, sans-serif;
    --font-primary: var(--font-body);

    /* Spacing */
    --space-xs: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 70px;
}

/* ===== BASE STYLES ===== */
* , *::before, *::after {
    box-sizing: border-box;
}

html {
    height: 100%;
    width: 100%;
}

body {
    height: 100%;
    width: 100%;
    font-family: var(--font-body);
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--bg);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
}

a:hover {
    color: var(--primary);
    text-decoration: none !important;
}

a,
button,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
}

/* ===== TYPOGRAPHY ===== */
p {
    font-size: 16px;
    line-height: 26px;
    color: var(--text-dark);
    font-weight: 400;
    margin: 0 0 16px 0;
    font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 16px 0;
    font-family: var(--font-heading);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }


/* ===== COMMON SECTION TITLE ===== */
.common-title { max-width: 720px; margin-bottom: 32px;}
.common-title__subtitle { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 10px; color: var(--danger); font-size: 15px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;}
.common-title__subtitle::after { display: none; }
.common-title__heading { margin: 0; color: var(--primary); font-size: 50px; font-weight: 800; line-height: 55px; letter-spacing: -1px; font-family: Convergence, sans-serif; }
.common-title__highlight { color: var(--secondary);} 
.common-title__text { margin-top: 16px; max-width: 620px; font-size: 16px; line-height: 29px; font-family: Arial, sans-serif; color: var(--text-light);} 
@media (max-width: 768px) { .common-title { margin-bottom: 24px;}
.common-title__heading { font-size: 35px; line-height: 40px;}
.common-title__subtitle { gap: 10px; margin-bottom: 12px; font-size: 13px;}
.common-title__subtitle::after { width: 40px;}
.common-title__text {  font-size: 16px;}}

/* ===== COMMON BUTTON ===== */
.common-btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 48px; padding: 12px 36px; border: 2px solid transparent; border-radius: 1px; background: var(--primary); color: var(--white); font-size: 15px; font-weight: 800; line-height: 1; text-decoration: none; cursor: pointer; position: relative;}
.common-btn:hover,
.common-btn:focus { text-decoration: none; background: var(--danger); border-color: var(--danger); color: var(--white);}
.common-btn::after { display: none; }
.common-btn--outline { background: transparent; color: var(--primary); box-shadow: none; border: 2px solid var(--primary);}
.common-btn--outline:hover,
.common-btn--outline:focus { background: var(--primary); border-color: var(--primary); color: var(--white);}
.common-btn--dark { background: var(--text-dark); border-color: var(--text-dark); color: var(--white); }
.common-btn--dark:hover,
.common-btn--dark:focus { background: var(--secondary); border-color: var(--secondary); color: var(--white);}
.common-btn--sm { min-height: 44px; padding: 10px 22px; font-size: 14px; border-radius: 1px;}
.common-btn--lg { min-height: 60px; padding: 16px 40px; font-size: 16px; border-radius: 1px;}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}
::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 10px;
}
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(0,0,0,0.1);
    border-radius: 10px;
}

/* ===== UTILITY CLASSES ===== */
.bg-dark {
    background-color: var(--text-dark) !important;
}
.bg-light {
    background-color: var(--bg) !important;
}

.content-section {
    padding: 70px 0;
}

/* ===== CARDS ===== */
.work-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
}

.work-content {
    padding: 20px 15px 10px;
}

.client-card {
    padding: 15px;
    background-color: var(--text-dark);
    border-radius: 6px;
    color: var(--white);
}

/* ===== WORDPRESS SPECIFIC ===== */
#wpadminbar {
    display: none !important;
}

.grecaptcha-badge {
    display: none !important;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER / NAV STYLES ===== */
.navin-header { position: absolute; top: 18px; left: 0; right: 0; z-index: 60; padding: 0; background: transparent;}
.navin-header__inner {  display: flex;  align-items: center;  justify-content: space-between;  gap: 20px;  background: var(--white);  padding: 10px 20px;  border-radius: 40px;  max-width: 1350px;  margin: 0 auto;}
.navin-header__brand { display: flex; align-items: center; }
.navin-header__logo { max-height: 48px; width: auto; display: block; }
.navin-panel-top { display: none; }
.navin-header__nav { display: flex; align-items: center; gap: 18px; }
.navin-header__link { color: var(--text-dark); text-decoration: none; font-weight: 600; padding: 8px 6px; }
.navin-header__cta { padding: 10px 18px; }
.navin-header__toggle { display: none; background: transparent; border: 0; width: 44px; height: 44px; }
.navin-header__toggle span { display: block; width: 22px; height: 2px; background: var(--text-dark); margin: 5px 0; }
@media (max-width: 900px) {
.navin-header { position: absolute; top: 12px; }
.navin-header__inner { padding: 10px 14px; border-radius: 50px; width: calc(100% - 40px); }
    /* Mobile: convert nav into sliding side panel */
    .navin-header__nav { display: flex; position: fixed; top: 0; left: 0; bottom: 0; align-items: stretch; width: 320px; max-width: 90%; background: var(--bg); flex-direction: column; gap: 0; padding: 22px 20px; border-radius: 0; transform: translateX(-110%); transition: transform .36s cubic-bezier(.2,.9,.2,1); }
.navin-header__nav a { padding: 12px 0; border-bottom: 1px solid var(--border); }
.navin-header__toggle { display: inline-flex; align-items: center; justify-content: center; }
    .navin-header__nav.open { transform: translateX(0); z-index: 10002; outline: none; }
    .navin-panel-top { display:flex; align-items:center; justify-content:space-between; margin-bottom:18px; }
    .navin-panel-logo { max-height:40px; }
    .navin-header__close { background: var(--danger); color: var(--white); border: 0; width:44px; height:44px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; font-size:20px; line-height:1; }
    .navin-header__nav .navin-header__link { padding: 18px 0; font-size:16px; font-weight:700; text-transform:uppercase; color: var(--text-dark); border-bottom: 1px solid rgba(0,0,0,0.04); }
    .navin-header__nav .navin-header__cta { margin-top: 14px; }
.navin-header__toggle.open span { background: var(--primary); }}

/* Oxyfine shop header */
.oxifyne-heder-neffvvvbbhc { color: var(--primary); font-family: "Raleway", sans-serif; background: var(--bg); }
.oxifyne-heder-neffvvvbbhc *, .oxifyne-heder-neffvvvbbhc *::before, .oxifyne-heder-neffvvvbbhc *::after { box-sizing: border-box; }
.oxifyne-heder-neffvvvbbhc__container { width: min(100%, 1280px); margin: 0 auto; padding: 0 20px; }
.oxifyne-heder-neffvvvbbhc__top { min-height: 106px; display: flex; align-items: center; }
.oxifyne-heder-neffvvvbbhc__top-inner { display: flex; align-items: center; gap: 40px; }
.oxifyne-heder-neffvvvbbhc__brand { flex: 0 0 204px; display: block; }
.oxifyne-heder-neffvvvbbhc__logo { display: block; width: 182px; height: auto; }
.oxifyne-heder-neffvvvbbhc__search { height: 43px; flex: 1 1 540px; max-width: 542px; display: flex; background: var(--bg); border-left: 1px solid var(--primary); }
.oxifyne-heder-neffvvvbbhc__search input { width: 100%; min-width: 0; border: 0; outline: 0; background: #e6e8ee93; padding: 0 15px; color: var(--text-dark); font: 500 13px "Raleway", sans-serif; }
.oxifyne-heder-neffvvvbbhc__search input::placeholder { color: var(--text-dark); opacity: 1; }
.oxifyne-heder-neffvvvbbhc__search-button { flex: 0 0 43px; border: 0; background: var(--primary); color: var(--white); font-size: 16px; cursor: pointer; }
.oxifyne-heder-neffvvvbbhc__brochure { min-width: 160px; white-space: nowrap; }
.oxifyne-heder-neffvvvbbhc__tools { display: flex; align-items: center; gap: 19px; margin-left: auto; }
.oxifyne-heder-neffvvvbbhc__tool { position: relative; color: var(--primary); text-decoration: none; font-size: 19px; line-height: 1; }
.oxifyne-heder-neffvvvbbhc__count { position: absolute; right: -10px; top: -11px; width: 18px; height: 18px; display: grid; place-items: center; border-radius: 50%; background: var(--primary); color: var(--white); font-size: 10px; font-weight: 700; }
.oxifyne-heder-neffvvvbbhc__nav { min-height: 66px; background: var(--primary); }
.oxifyne-heder-neffvvvbbhc__nav-inner { min-height: 66px; display: flex; align-items: center; justify-content: space-between; }
.oxifyne-heder-neffvvvbbhc__links { display: flex; align-items: center; gap: 28px; }
.oxifyne-heder-neffvvvbbhc__link, .oxifyne-heder-neffvvvbbhc__recent { color: var(--white); text-decoration: none; font-size: 14px; font-weight: 700; }
.oxifyne-heder-neffvvvbbhc__link:link, .oxifyne-heder-neffvvvbbhc__link:visited, .oxifyne-heder-neffvvvbbhc__recent:link, .oxifyne-heder-neffvvvbbhc__recent:visited { color: var(--white); }
.oxifyne-heder-neffvvvbbhc__brochure:link, .oxifyne-heder-neffvvvbbhc__brochure:visited { color: var(--white); }
.oxifyne-heder-neffvvvbbhc__link:hover, .oxifyne-heder-neffvvvbbhc__recent:hover { color: var(--white); opacity: .82; text-decoration: none; }
.oxifyne-heder-neffvvvbbhc__brochure:hover { color: var(--white); opacity: 1; text-decoration: none; }
.oxifyne-heder-neffvvvbbhc__recent { display: inline-flex; align-items: center; gap: 11px; }
.oxifyne-heder-neffvvvbbhc__recent i { font-size: 12px; }
@media (max-width: 900px) {
	.oxifyne-heder-neffvvvbbhc__top { padding: 14px 0; }
	.oxifyne-heder-neffvvvbbhc__top-inner { flex-wrap: wrap; gap: 14px 20px; }
	.oxifyne-heder-neffvvvbbhc__brand { flex-basis: auto; }
	.oxifyne-heder-neffvvvbbhc__logo { width: 145px; }
	.oxifyne-heder-neffvvvbbhc__search { order: 3; flex-basis: 100%; max-width: none; }
	.oxifyne-heder-neffvvvbbhc__tools { margin-left: 0; }
	.oxifyne-heder-neffvvvbbhc__links { margin-left: 0; gap: 17px; overflow-x: auto; }
	.oxifyne-heder-neffvvvbbhc__recent { display: none; }
}
@media (max-width: 520px) {
	.oxifyne-heder-neffvvvbbhc__container { padding: 0 15px; }
    .oxifyne-heder-neffvvvbbhc__brochure { min-width: 0; }
	.oxifyne-heder-neffvvvbbhc__tools { gap: 14px; }
	.oxifyne-heder-neffvvvbbhc__link { font-size: 12px; white-space: nowrap; }
}

/* Header account sign-in modal. */
.oxifyne-heder-neffvvvbbhc__account-trigger { border: 0; background: transparent; cursor: pointer; padding: 0; }
.oxifyne-heder-neffvvvbbhc__modal[hidden] { display: none; }
.oxifyne-heder-neffvvvbbhc__modal { position: fixed; inset: 0; z-index: 10050; display: grid; place-items: center; padding: 20px; }
.oxifyne-heder-neffvvvbbhc__modal-backdrop { position: absolute; inset: 0; background: rgba(8, 20, 45, .66); }
.oxifyne-heder-neffvvvbbhc__modal-dialog { position: relative; z-index: 1; width: min(100%, 450px); padding: 38px 45px 36px; background: var(--white); box-shadow: 0 18px 60px rgba(0, 0, 0, .25); }
.oxifyne-heder-neffvvvbbhc__modal-close { position: absolute; top: -18px; right: -18px; width: 38px; height: 38px; border: 0; border-radius: 50%; background: var(--white); color: var(--text-light); font-size: 19px; cursor: pointer; box-shadow: 0 2px 8px rgba(0, 0, 0, .12); }
.oxifyne-heder-neffvvvbbhc__modal-title { margin: 0 0 24px; color: var(--primary); text-align: center; font-size: 22px; font-weight: 700; }
.oxifyne-heder-neffvvvbbhc__modal-form { display: grid; gap: 12px; }
.oxifyne-heder-neffvvvbbhc__modal-label { color: var(--text-dark); font-size: 13px; font-weight: 600; }
.oxifyne-heder-neffvvvbbhc__modal-input { width: 100%; min-height: 44px; border: 1px solid var(--border); background: var(--bg); padding: 10px 13px; color: var(--text-dark); font: 14px "Raleway", sans-serif; }
.oxifyne-heder-neffvvvbbhc__modal-options { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 6px 0 8px; font-size: 13px; }
.oxifyne-heder-neffvvvbbhc__modal-remember { display: inline-flex; align-items: center; gap: 7px; margin: 0; color: var(--text-dark); cursor: pointer; }
.oxifyne-heder-neffvvvbbhc__modal-remember input { width: 18px; height: 18px; margin: 0; }
.oxifyne-heder-neffvvvbbhc__modal-link { color: var(--primary); text-decoration: none; }
.oxifyne-heder-neffvvvbbhc__modal-submit, .oxifyne-heder-neffvvvbbhc__modal-create { min-height: 44px; display: flex; align-items: center; justify-content: center; border: 0; text-decoration: none; font: 600 14px "Raleway", sans-serif; cursor: pointer; }
.oxifyne-heder-neffvvvbbhc__modal-submit { background: var(--primary); color: var(--white); }
.oxifyne-heder-neffvvvbbhc__modal-create { background: var(--border); color: var(--text-dark); }
.oxifyne-heder-neffvvvbbhc__modal-submit:hover { background: var(--danger); color: var(--white); }
.oxifyne-heder-neffvvvbbhc__modal-create:hover { background: var(--border); color: var(--text-dark); }
body.oxifyne-heder-neffvvvbbhc__modal-open { overflow: hidden; }
@media (max-width: 520px) { .oxifyne-heder-neffvvvbbhc__modal-dialog { padding: 32px 24px 26px; } .oxifyne-heder-neffvvvbbhc__modal-close { right: 8px; top: 8px; } .oxifyne-heder-neffvvvbbhc__modal-options { align-items: flex-start; flex-direction: column; gap: 10px; } }

/* Compact mobile header and persistent quick-link bar. */
.oxifyne-heder-neffvvvbbhc__mobile-header, .oxifyne-heder-neffvvvbbhc__bottom-nav { display: none; }
@media (max-width: 767px) {
	body { padding-bottom: 62px; }
	.oxifyne-heder-neffvvvbbhc__top, .oxifyne-heder-neffvvvbbhc__nav { display: none; }
    .oxifyne-heder-neffvvvbbhc__mobile-header { display: block; position: relative; z-index: 20; padding: 4px 7px 7px; background: var(--white); border-bottom: 1px solid var(--border); }
	.oxifyne-heder-neffvvvbbhc__mobile-top { height: 26px; display: flex; align-items: center; justify-content: space-between; }
    .oxifyne-heder-neffvvvbbhc__mobile-menu-toggle, .oxifyne-heder-neffvvvbbhc__mobile-cart { position: relative; width: 28px; border: 0; padding: 0; background: transparent; color: var(--text-dark); font-size: 15px; line-height: 1; }
	.oxifyne-heder-neffvvvbbhc__mobile-brand { display: block; }
	.oxifyne-heder-neffvvvbbhc__mobile-brand img { display: block; width: 67px; height: 23px; object-fit: contain; }
    .oxifyne-heder-neffvvvbbhc__mobile-cart { text-align: right; color: var(--primary); text-decoration: none; }
    .oxifyne-heder-neffvvvbbhc__mobile-count, .oxifyne-heder-neffvvvbbhc__bottom-count { position: absolute; display: grid; place-items: center; border-radius: 50%; background: var(--primary); color: var(--white); font-size: 8px; font-weight: 700; }
	.oxifyne-heder-neffvvvbbhc__mobile-count { top: -7px; right: -3px; width: 14px; height: 14px; }
    .oxifyne-heder-neffvvvbbhc__mobile-search { height: 28px; display: flex; align-items: center; margin-top: 4px; border: 1px solid var(--border); color: var(--text-light); }
	.oxifyne-heder-neffvvvbbhc__mobile-search i { padding-left: 8px; font-size: 11px; }
	.oxifyne-heder-neffvvvbbhc__mobile-search input { width: 100%; min-width: 0; border: 0; outline: 0; padding: 2px 6px; font: 10px Arial, sans-serif; }
    .oxifyne-heder-neffvvvbbhc__mobile-search button { min-width: 34px; border: 0; border-left: 1px solid var(--border); background: var(--white); color: var(--text-light); font-size: 10px; }
    .oxifyne-heder-neffvvvbbhc__mobile-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; padding: 8px 14px; background: var(--white); border-bottom: 1px solid var(--border); box-shadow: 0 6px 12px rgba(0,0,0,.1); }
	.oxifyne-heder-neffvvvbbhc__mobile-menu.is-open { display: grid; }
    .oxifyne-heder-neffvvvbbhc__mobile-menu a { padding: 10px 0; border-bottom: 1px solid var(--border); color: var(--primary); font-size: 13px; font-weight: 600; text-decoration: none; }
    .oxifyne-heder-neffvvvbbhc__bottom-nav { position: fixed; z-index: 10040; right: 0; bottom: 0; left: 0; height: 62px; display: grid; grid-template-columns: repeat(5, 1fr); background: var(--white); border-top: 1px solid var(--border); box-shadow: 0 -3px 10px rgba(0,0,0,.06); }
    .oxifyne-heder-neffvvvbbhc__bottom-link { position: relative; display: flex; align-items: center; justify-content: center; gap: 3px; flex-direction: column; border: 0; background: transparent; color: var(--text-light); text-decoration: none; font: 10px Arial, sans-serif; }
	.oxifyne-heder-neffvvvbbhc__bottom-link i { font-size: 16px; }
    .oxifyne-heder-neffvvvbbhc__bottom-link--badge { color: var(--text-light); }
	.oxifyne-heder-neffvvvbbhc__bottom-count { top: 5px; right: calc(50% - 15px); width: 15px; height: 15px; }
    .oxifyne-heder-neffvvvbbhc__bottom-link:hover, .oxifyne-heder-neffvvvbbhc__bottom-link:focus { color: var(--primary); text-decoration: none; }
}

/* Site footer */
.footer-oxifinenewytg-mosgdy { color: var(--text-light); background: var(--danger); }
.footer-oxifinenewytg-mosgdy *, .footer-oxifinenewytg-mosgdy *::before, .footer-oxifinenewytg-mosgdy *::after { box-sizing: border-box; }
.footer-oxifinenewytg-mosgdy__container { width: min(100%, 1280px); margin: 0 auto; padding-right: 25px; padding-left: 25px; }
.footer-oxifinenewytg-mosgdy__main { padding: 44px 0 39px; background: radial-gradient(circle at 12% 100%, var(--primary) 0, var(--primary) 35%, var(--danger) 100%); }
.footer-oxifinenewytg-mosgdy__grid { display: grid; grid-template-columns: 1.16fr 1.14fr .86fr 1.06fr; gap: 48px; }
.footer-oxifinenewytg-mosgdy__brand { display: inline-block; margin-bottom: 23px; }
.footer-oxifinenewytg-mosgdy__logo { display: block; width: 235px; height: auto; filter: brightness(1.12); }
.footer-oxifinenewytg-mosgdy__about { max-width: 285px; margin: 0 0 21px; color: var(--text-light); font-size: 15px; line-height: 1.5; }
.footer-oxifinenewytg-mosgdy__socials { display: flex; gap: 10px; }
.footer-oxifinenewytg-mosgdy__social { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 50%; background: var(--accent); color: var(--white); font-size: 16px; text-decoration: none; }
.footer-oxifinenewytg-mosgdy__social i { color: var(--white); line-height: 1; }
.footer-oxifinenewytg-mosgdy__x-icon { color: var(--white); font-size: 16px; font-weight: 700; line-height: 1; }
.footer-oxifinenewytg-mosgdy__social:hover { background: var(--primary); color: var(--white); }
.footer-oxifinenewytg-mosgdy__title { margin: 0 0 30px; color: var(--white); font-size: 21px; font-weight: 700; }
.footer-oxifinenewytg-mosgdy__contact-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.footer-oxifinenewytg-mosgdy__contact-item { display: grid; grid-template-columns: 27px 1fr; align-items: start; gap: 12px; color: var(--text-light); font-size: 15px; line-height: 1.62; }
.footer-oxifinenewytg-mosgdy__contact-icon { width: 27px; min-height: 27px; display: grid; place-items: center; color: var(--accent); font-size: 16px; }
.footer-oxifinenewytg-mosgdy__contact-item a { color: inherit; text-decoration: none; }
.footer-oxifinenewytg-mosgdy__contact-item address { margin: 0; font-style: normal; }
.footer-oxifinenewytg-mosgdy__links { display: grid; gap: 16px; }
.footer-oxifinenewytg-mosgdy__links a { display: flex; gap: 15px; align-items: center; color: var(--text-light); font-size: 15px; text-decoration: none; }
.footer-oxifinenewytg-mosgdy__links i { color: var(--accent); font-size: 15px; }
.footer-oxifinenewytg-mosgdy__payments { margin-top: 31px; padding-top: 10px; border-top: 0px solid var(--primary); }
.footer-oxifinenewytg-mosgdy__payments p { margin: 0 0 11px; color: var(--white); font-size: 19px; font-weight: 700; }
.footer-oxifinenewytg-mosgdy__payment-list { display: block; }
.footer-oxifinenewytg-mosgdy__payment-list img { display: block; width: min(100%, 440px); height: auto; }
.footer-oxifinenewytg-mosgdy__bottom { border-top: 1px solid var(--primary); background: var(--danger); }
.footer-oxifinenewytg-mosgdy__bottom-inner { min-height: 90px; display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.footer-oxifinenewytg-mosgdy__bottom p { margin: 0; color: var(--text-light); font-size: 15px; }
.footer-oxifinenewytg-mosgdy__bottom-links { display: flex; flex-wrap: wrap; }
.footer-oxifinenewytg-mosgdy__bottom-links a { padding: 0 15px; border-left: 1px solid var(--border); color: var(--text-light); font-size: 13px; text-decoration: none; }
.footer-oxifinenewytg-mosgdy__bottom-links a:last-child { padding-right: 0; }
@media (max-width: 960px) { .footer-oxifinenewytg-mosgdy__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 38px; } }
@media (max-width: 600px) { .footer-oxifinenewytg-mosgdy__main { padding: 35px 0; }.footer-oxifinenewytg-mosgdy__grid { grid-template-columns: 1fr; gap: 32px; }.footer-oxifinenewytg-mosgdy__title { margin-bottom: 18px; }.footer-oxifinenewytg-mosgdy__bottom-inner { min-height: 0; align-items: flex-start; flex-direction: column; padding-top: 22px; padding-bottom: 22px; }.footer-oxifinenewytg-mosgdy__bottom-links { gap: 9px 0; }.footer-oxifinenewytg-mosgdy__bottom-links a { padding: 0 10px; }.footer-oxifinenewytg-mosgdy__bottom-links a:first-child { padding-left: 0; } }








