:root {
--blue: #0073DE;
--blue-dark: #1565C0;
--blue-light: #17b2f8;
--silver: #A2ABB2;
--light-silver: #8E98A1;
--dark-silver: #4F5963;
--white: #FFFFFF;
--white-light: #F6F8FC;
--black: #000000;
--text: #333333;
--text-light: #889CAD;
--light-bg: #F6F8FC;
--font-heading: 'transducer', sans-serif;
--font-body: 'Google Sans Flex', sans-serif;
--transition: 0.3s ease;
} *,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
scroll-behavior: smooth;
-webkit-text-size-adjust: 100%;
}
body {
font-family: var(--font-body);
font-size: 16px;
line-height: 1.6;
color: var(--text);
background: var(--white);
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
}
img {
max-width: 100%;
height: auto;
display: block;
}
a {
text-decoration: none;
color: inherit;
}
ul,
ol {
list-style: none;
}
button {
cursor: pointer;
border: none;
background: none;
font-family: inherit;
}
input,
textarea {
font-family: inherit;
font-size: inherit;
}
address {
font-style: normal;
} .container {
width: 100%;
max-width: 1280px;
margin: 0 auto;
padding: 0 20px;
} .btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 12px 20px;
font-family: var(--font-heading);
font-size: 14px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: -0.28px;
border-radius: 4px;
transition: all var(--transition);
cursor: pointer;
border: 2px solid transparent;
line-height: 1;
white-space: nowrap;
height: 44px;
}
.btn-primary {
background-color: var(--blue);
color: var(--white);
border-color: var(--blue);
}
.btn-primary:hover {
background-color: var(--blue-dark);
border-color: var(--blue-dark);
}
.btn-ghost {
background-color: transparent;
color: var(--white);
border-color: var(--white);
}
.btn-ghost:hover {
background-color: var(--white);
color: var(--black);
}
.btn-outline-dark {
background-color: transparent;
color: var(--blue);
border-color: var(--blue);
}
.btn-outline-dark:hover {
background-color: var(--blue);
color: var(--white);
} .section-label {
display: inline-flex;
align-items: center;
gap: 8px;
font-family: var(--font-heading);
font-size: 13px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0;
color: var(--blue);
margin-bottom: 10px;
}
.section-label--light {
color: rgba(255, 255, 255, 0.6);
}
.label-icon {
width: 18px;
height: 18px;
flex-shrink: 0;
}
.text-link {
color: var(--text-light);
font-weight: 600;
}
.text-link:hover {
text-decoration: underline;
} .header {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
background-color: transparent;
transition: background-color var(--transition), box-shadow var(--transition);
}
.header.is-scrolled {
background-color: rgba(0, 0, 0, 0.85);
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}
.header .container {
display: flex;
align-items: center;
min-height: 72px;
}
.header__logo {
margin-right: auto;
}
.header__logo img {
width: 80px;
height: auto;
}
.header__phone {
order: 2;
margin-right: 20px;
}
.header__phone a {
display: flex;
align-items: center;
gap: 6px;
font-family: var(--font-heading);
font-size: 15px;
font-weight: 600;
color: var(--silver);
text-transform: uppercase;
letter-spacing: -0.45px;
transition: color var(--transition);
}
.header__phone a:hover {
color: var(--white);
}
.header__phone svg {
width: 18px;
height: 18px;
flex-shrink: 0;
} .hamburger {
display: flex;
flex-direction: column;
justify-content: center;
gap: 5px;
width: 30px;
height: 28px;
z-index: 1001;
order: 3;
}
.hamburger span {
display: block;
width: 100%;
height: 2px;
background-color: var(--white);
transition: all var(--transition);
}
.hamburger.is-open span:nth-child(1) {
transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
transform: translateY(-7px) rotate(-45deg);
} .header__nav {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100dvh;
background-color: rgba(0, 0, 0, 0.95);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
visibility: hidden;
transition: opacity var(--transition), visibility var(--transition);
z-index: 1000;
}
.header__nav.is-open {
opacity: 1;
visibility: visible;
} .menu {
display: flex;
flex-direction: column;
align-items: center;
gap: 4px;
}
.nav-arrow {
display: none;
}
.menu-item > a {
display: block;
padding: 12px 20px;
color: var(--white);
font-family: var(--font-heading);
font-size: 15px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0;
transition: color var(--transition);
}
.menu-item > a:hover {
color: var(--blue);
}
.menu-item-has-children {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.menu-item {
width: 100%;
}
.menu-item-has-children > a {
flex: 1;
}
.submenu-toggle {
display: flex;
align-items: center;
justify-content: center;
width: 44px;
height: 44px;
color: var(--white);
cursor: pointer;
padding: 0;
}
.submenu-toggle svg {
width: 10px;
height: 6px;
transition: transform var(--transition);
}
.submenu-toggle[aria-expanded="true"] svg {
transform: rotate(180deg);
} .sub-menu {
width: 100%;
max-height: 0;
overflow: hidden;
transition: max-height 0.4s ease;
}
.sub-menu.is-open {
max-height: 300px;
}
.sub-menu .menu-item > a {
font-size: 14px;
color: rgba(255, 255, 255, 0.6);
padding: 8px 24px;
}
.sub-menu .menu-item > a:hover {
color: var(--blue);
}
body.menu-open {
overflow: hidden;
} @keyframes hero-kenburns {
from { transform: scale(1.02); }
to   { transform: scale(1.08); }
}
.hero {
position: relative;
height: 100svh;
min-height: 600px;
display: flex;
align-items: flex-end;
background-color: #0a1628;
overflow: hidden;
}
.hero__slider {
position: absolute;
inset: 0;
z-index: 1;
}
.hero__slider .swiper-wrapper,
.hero__slider .swiper-slide {
height: 100%;
}
.hero__bg {
position: absolute;
inset: 0;
}
.hero__bg img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center right;
will-change: transform; animation: hero-kenburns 8s ease-out forwards;
animation-play-state: paused;
}
.swiper-slide-active .hero__bg img {
animation-play-state: running;
} .hero__video-container {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
}
.hero__video-poster {
width: 100%;
height: 100%;
object-fit: cover;
}
.hero__video-overlay {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
background: rgba(0, 0, 0, 0.2);
transition: opacity var(--transition);
}
.hero__video-overlay:hover {
background: rgba(0, 0, 0, 0.3);
}
.hero__video-play {
width: 80px;
height: 80px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.9);
display: flex;
align-items: center;
justify-content: center;
transition: transform var(--transition), background-color var(--transition);
cursor: pointer;
}
.hero__video-play:hover {
transform: scale(1.1);
background: rgba(255, 255, 255, 1);
}
.hero__video-play svg {
width: 32px;
height: 32px;
margin-left: 4px; }
.hero__video {
width: 100%;
height: 100%;
object-fit: cover;
} .hero__video::-webkit-media-controls {
display: none !important;
}
.hero__video::-webkit-media-controls-panel {
display: none !important;
}
.hero__video::-webkit-media-controls-play-button {
display: none !important;
}
.hero__video::-webkit-media-controls-timeline {
display: none !important;
}
.hero__video::-webkit-media-controls-current-time-display {
display: none !important;
}
.hero__video::-webkit-media-controls-time-remaining-display {
display: none !important;
}
.hero__video::-webkit-media-controls-mute-button {
display: none !important;
}
.hero__video::-webkit-media-controls-toggle-closed-captions-button {
display: none !important;
}
.hero__video::-webkit-media-controls-volume-slider {
display: none !important;
}
.hero__video::-webkit-media-controls-fullscreen-button {
display: none !important;
}
.hero__video::-webkit-media-controls-start-playback-button {
display: none !important;
} .hero__video::-moz-media-controls {
display: none !important;
}
.hero__video::-moz-range-thumb {
display: none !important;
} .hero__video,
.hero__video-container iframe {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-touch-callout: none;
} .hero__video-container::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 10;
pointer-events: none;
} .hero__video-container .ytp-chrome-top,
.hero__video-container .ytp-chrome-bottom,
.hero__video-container .ytp-gradient-bottom,
.hero__video-container .ytp-gradient-top,
.hero__video-container .ytp-autohide,
.hero__video-container .ytp-play-button,
.hero__video-container .ytp-prev-button,
.hero__video-container .ytp-next-button,
.hero__video-container .ytp-pause-overlay,
.hero__video-container .ytp-cued-thumbnail-overlay {
display: none !important;
opacity: 0 !important;
visibility: hidden !important;
} .hero__video-container iframe {
z-index: 1;
}
.hero__video-container {
overflow: hidden;
} .hero__overlay-top {
position: absolute;
top: 0;
left: 0;
right: 0;
height: 56%;
z-index: 2;
pointer-events: none;
background:
linear-gradient(180deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0) 74.9%),
linear-gradient(180deg, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0) 74.9%);
opacity: 0.6;
} .hero__overlay-bottom {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 79%;
z-index: 2;
pointer-events: none;
background:
linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 64.4%),
linear-gradient(180deg, rgba(0, 0, 0, 0) 11.5%, rgba(0, 0, 0, 0.8) 100%);
opacity: 0.5;
}
.hero .container {
position: relative;
z-index: 3;
padding-bottom: 80px;
width: 100%;
}
.hero__content {
max-width: 520px;
}
.hero__label {
display: inline-block;
font-family: var(--font-heading);
font-size: 13px;
font-weight: 600;
text-transform: uppercase;
color: rgba(162, 171, 178, 0.8);
margin-bottom: 14px;
background-color: rgba(0, 0, 0, 0.5);
padding: 4px 8px;
border-radius: 4px;
}
.hero h1 {
font-family: var(--font-heading);
font-size: 48px;
font-weight: 600;
line-height: 50px;
letter-spacing: -0.48px;
color: var(--white);
margin-bottom: 20px;
}
.hero h1 em {
font-style: normal;
font-weight: 400;
}
.hero__list {
margin-bottom: 28px;
}
.hero__list li {
color: var(--white);
font-family: var(--font-body);
font-size: 16px;
line-height: 20px;
padding-left: 0;
margin-bottom: 4px;
}
.hero__list strong {
font-weight: 600;
}
.hero__buttons {
display: flex;
align-items: center;
gap: 15px;
}
.hero__text-link {
font-family: var(--font-heading);
font-size: 14px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: -0.28px;
color: var(--silver);
border-bottom: 1px solid var(--silver);
padding-bottom: 4px;
transition: color var(--transition), border-color var(--transition);
line-height: 1;
}
.hero__text-link:hover {
color: var(--white);
border-color: var(--white);
} .hero__pagination {
position: absolute;
bottom: 28px !important;
left: 50% !important;
transform: translateX(-50%);
z-index: 4;
display: flex;
gap: 8px;
width: auto !important;
}
.hero__pagination .swiper-pagination-bullet {
width: 8px;
height: 8px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.4);
opacity: 1;
transition: background-color var(--transition);
}
.hero__pagination .swiper-pagination-bullet-active {
background-color: var(--blue);
} .offer {
padding: 60px 0;
background-color: var(--light-bg);
overflow: hidden;
}
.offer__header {
display: flex;
flex-direction: column;
gap: 16px;
margin-bottom: 32px;
}
.offer__header-left h2 {
font-family: var(--font-heading);
font-size: 30px;
font-weight: 400;
color: var(--black);
line-height: 40px;
letter-spacing: -0.3px;
}
.offer__header-left h2 em {
font-style: normal;
font-weight: 600;
}
.offer__header-right p {
font-family: var(--font-body);
font-size: 16px;
color: var(--text);
line-height: 20px;
opacity: 0.8;
}
.offer__header-right strong, .image-text strong {
font-weight: 600;
color: var(--text-light);
} .offer__carousel-wrap {
position: relative;
display: flex;
align-items: stretch;
gap: 0;
}
.offer__arrow {
display: none;
align-items: center;
justify-content: center;
width: 50px;
height: 50px;
border-radius: 6px;
border: 1px solid var(--blue);
flex-shrink: 0;
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 10;
transition: background-color var(--transition), border-color var(--transition);
cursor: pointer;
}
.offer__arrow:hover {
background-color: var(--blue);
}
.offer__arrow:hover img {
filter: brightness(0) invert(1);
}
.offer__arrow img {
width: 10px;
height: 20px;
transition: filter var(--transition);
}
.offer__arrow--prev {
left: -60px;
}
.offer__arrow--next {
right: -60px;
}
.offer__arrow--next img {
transform: rotate(180deg);
}
.swiper-button-disabled {
background: #a2abb252;
border: 1px solid #00000000;
}
.swiper-button-disabled:hover {
background: #a2abb252 !important;
}
.swiper-button-disabled img {
opacity: 0.6;
filter: brightness(0) invert(1);
} .offer__slider {
width: 100%;
overflow: visible;
}
.offer__track {
display: flex;
gap: 20px;
overflow-x: auto;
scroll-snap-type: x mandatory;
-webkit-overflow-scrolling: touch;
scrollbar-width: none; padding: 20px 20px 20px 20px;
margin: -20px -20px -20px 0;
width: calc(100% + 20px);
}
.offer__track::-webkit-scrollbar {
display: none;
}
.offer__card {
flex: 0 0 calc(75% - 15px);
scroll-snap-align: start;
background: var(--white);
border-radius: 6px;
overflow: hidden;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
display: flex;
flex-direction: column;
transition: box-shadow var(--transition), transform var(--transition);
}
.offer__card:hover {
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
transform: translateY(-6px);
}
.offer__card-image {
display: block;
height: 220px;
overflow: hidden;
border-radius: 6px 6px 0 0;
}
.offer__card-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
filter: contrast(1.15) saturate(1.1) brightness(1.05);
}
.offer__card:hover .offer__card-image img {
transform: scale(1.04);
}
.offer__card-body {
display: flex;
flex-wrap: wrap;
align-items: flex-end;
justify-content: space-between;
gap: 20px;
padding: 18px 18px;
background: var(--white);
flex: 1;
}
.offer__card-info {
width: 100%;
}
.offer__card-cat {
display: block;
font-family: var(--font-heading);
font-size: 13px;
font-weight: 600;
text-transform: uppercase;
color: var(--silver);
margin-bottom: 4px;
}
.offer__card-info h3 {
font-family: var(--font-heading);
font-size: 16px;
font-weight: 600;
color: var(--black);
line-height: 1.3;
letter-spacing: -0.18px;
}
.offer__card-info h3 a {
color: inherit;
transition: color var(--transition);
}
.offer__card-info h3 a:hover {
color: var(--blue);
}
.offer__card-body .btn {
margin-left: auto;
}
.offer__card-footer {
display: inline-flex;
justify-content: space-between;
width: 100%;
align-items: center;
}
.offer__card-price {
color: var(--silver);
}
.offer__card-price strong {
color: var(--light-silver);
}
.offer__card-price span {
font-weight: 600;
color: var(--light-silver);
} .stats {
position: relative;
padding: 60px 0;
background-color: var(--silver);
overflow: hidden;
} .stats__symbol {
position: absolute;
bottom: 0;
left: 55%;
width: 953px;
pointer-events: none;
z-index: 1;
}
.stats__symbol img {
width: 100%;
height: 100%;
object-fit: contain;
} .stats__gradient-bottom {
position: absolute;
bottom: 0;
left: 30%;
right: 0;
height: 173px;
background: linear-gradient(180deg, rgba(162, 171, 178, 0) 0%, var(--silver) 100%);
z-index: 2;
pointer-events: none;
}
.stats .container {
position: relative;
z-index: 3;
}
.stats__top {
display: flex;
flex-direction: column;
gap: 20px;
margin-bottom: 40px;
}
.stats__top-right {
width: 80%;
}
.stats__top-left h2 {
font-family: var(--font-heading);
font-size: 30px;
font-weight: 400;
color: var(--white);
line-height: 40px;
letter-spacing: -0.3px;
}
.stats__top-left h2 em {
font-style: normal;
font-weight: 600;
}
.stats__top-right p {
font-family: var(--font-body);
font-size: 16px;
color: var(--white);
line-height: 20px;
opacity: 0.8;
}
.stats__top-right strong {
font-weight: 600;
}
.stats__grid {
display: flex;
flex-direction: column;
gap: 24px;
}
.stats__item {
padding: 0;
}
.stats__number {
font-size: 56px;
font-weight: 800;
color: var(--white);
line-height: 56px;
letter-spacing: -2.24px;
margin-bottom: 5px;
font-family: var(--font-heading);
}
.stats__value {
color: var(--white);
}
.stats__number span:last-child {
color: var(--blue);
}
.stats__item p {
font-family: var(--font-body);
font-size: 12px;
font-weight: 600;
color: rgba(255, 255, 255, 0.8);
line-height: 16.8px;
text-transform: lowercase;
} .portfolio {
padding: 60px 0;
background-color: var(--light-bg);
}
.portfolio__header {
display: flex;
flex-direction: column;
gap: 12px;
margin-bottom: 32px;
}
.portfolio__header-left h2 {
font-family: var(--font-heading);
font-size: 30px;
font-weight: 400;
color: var(--black);
line-height: 40px;
letter-spacing: -0.3px;
}
.portfolio__header-left h2 strong {
font-weight: 600;
}
.portfolio__header-left h2 em {
font-style: normal;
font-weight: 600;
}
.portfolio__header-right {
font-family: var(--font-body);
font-size: 16px;
color: var(--text);
font-style: normal;
line-height: 20px;
opacity: 0.8;
}
.portfolio__header-right strong {
font-weight: 600;
color: var(--text-light);
}
.portfolio__grid {
display: flex;
gap: 16px;
overflow-x: auto;
scroll-snap-type: x mandatory;
-webkit-overflow-scrolling: touch;
padding-bottom: 8px;
scrollbar-width: none;
}
.portfolio__grid::-webkit-scrollbar {
display: none;
}
.portfolio__card {
flex: 0 0 calc(80% - 8px);
scroll-snap-align: start;
position: relative;
overflow: hidden;
display: block;
height: 240px;
border-radius: 6px;
}
.portfolio__card img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
scale: 1.1;
filter: contrast(1.15) saturate(1.1) brightness(1.05);
}
.portfolio__card:hover img {
transform: scale(1.04);
}
.portfolio__card-caption {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 20px 16px 16px;
background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 10.6%, rgba(0, 0, 0, 0) 64.8%);
}
.portfolio__card-caption h3 {
font-family: var(--font-heading);
font-size: 16px;
font-weight: 600;
color: var(--white);
line-height: 24px;
letter-spacing: -0.16px;
}
.portfolio__card-caption span {
font-family: var(--font-heading);
font-size: 16px;
font-weight: 400;
color: var(--white);
line-height: 24px;
letter-spacing: -0.16px;
}
.portfolio__footer {
text-align: center;
margin-top: 24px;
}
.portfolio__footer .btn {
height: 44px;
font-family: var(--font-heading);
font-size: 14px;
font-weight: 600;
letter-spacing: -0.28px;
} .about {
padding: 60px 0;
background-color: var(--white);
}
.about__wrapper {
display: flex;
flex-direction: column;
gap: 32px;
}
.about h2 {
font-family: var(--font-heading);
font-size: 30px;
font-weight: 600;
color: var(--black);
margin-bottom: 20px;
font-style: normal;
line-height: 40px;
letter-spacing: -0.3px;
}
.about p {
font-family: var(--font-body);
font-size: 16px;
color: var(--text);
margin-bottom: 14px;
line-height: 20px;
opacity: 0.8;
}
.about .text-link {
color: var(--text-light);
font-weight: 600;
}
.about .btn {
margin-top: 8px;
font-family: var(--font-heading);
font-size: 14px;
font-weight: 600;
letter-spacing: -0.28px;
}
.about__image {
position: relative;
}
.about__image img {
width: 100%;
border-radius: 6px;
object-fit: cover;
object-position: top;
}
.about__badge {
position: absolute;
bottom: 16px;
right: 16px;
text-align: center;
}
.about__badge img {
width: 87px;
height: auto;
}
.about__badge span {
display: block;
font-family: 'Be Vietnam', sans-serif;
font-size: 9px;
color: #939598;
text-transform: uppercase;
text-align: center;
margin-top: 2px;
} .cta-banner {
position: relative;
padding: 250px 0 70px;
overflow: hidden;
background-color: #0a1628;
}
.cta-banner__bg {
position: absolute;
inset: 0;
z-index: 1;
}
.cta-banner__bg picture,
.cta-banner__bg img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
}
.cta-banner__overlay {
position: absolute;
inset: 0;
background: linear-gradient(180deg, rgb(0 0 0 / 30%) 22.2%, rgba(0, 0, 0, 0) 35.2%), linear-gradient(180deg, rgba(0, 0, 0, 0) 34%, rgb(0 0 0 / 60%) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgb(0 0 0 / 20%) 100%);
z-index: 2;
}
.cta-banner .container {
position: relative;
z-index: 3;
}
.cta-banner ul {
margin-bottom: 16px;
}
.cta-banner ul li {
color: var(--white);
font-family: var(--font-body);
font-size: 16px;
line-height: 20px;
margin-bottom: 4px;
}
.cta-banner__content {
display: flex;
flex-direction: column;
gap: 24px;
}
.cta-banner h2 {
font-family: var(--font-heading);
font-size: 40px;
font-weight: 400;
color: var(--white);
line-height: 46px;
letter-spacing: -0.4px;
}
.cta-banner h2 em {
font-style: normal;
font-weight: 600;
}
.cta-banner__list {
margin-bottom: 16px;
}
.cta-banner__list li {
color: var(--white);
font-family: var(--font-body);
font-size: 16px;
line-height: 20px;
margin-bottom: 4px;
}
.cta-banner__list strong {
font-weight: 600;
}
.cta-banner__buttons {
display: flex;
align-items: center;
gap: 20px;
}
.cta-banner__text-link {
font-family: var(--font-heading);
font-size: 14px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: -0.28px;
color: var(--silver);
border-bottom: 1px solid var(--silver);
padding-bottom: 4px;
transition: color var(--transition), border-color var(--transition);
line-height: 1;
}
.cta-banner__text-link:hover {
color: var(--white);
border-color: var(--white);
} .contact {
padding: 60px 0;
background-color: var(--light-bg);
}
.contact__wrapper {
display: flex;
flex-direction: column;
gap: 32px;
}
.contact__info h2 {
font-family: var(--font-heading);
font-size: 30px;
font-weight: 600;
color: var(--black);
margin-bottom: 12px;
font-style: normal;
line-height: 40px;
letter-spacing: -0.3px;
}
.contact__info > p {
font-family: var(--font-body);
font-size: 16px;
color: var(--text);
margin-bottom: 24px;
line-height: 20px;
opacity: 0.8;
}
.contact__detail {
display: flex;
align-items: center;
gap: 6px;
padding: 6px 0;
color: var(--light-silver);
transition: color var(--transition);
font-family: var(--font-heading);
font-size: 18px;
font-weight: 600;
letter-spacing: -0.54px;
text-transform: uppercase;
}
.contact__detail svg {
width: 18px;
height: 18px;
flex-shrink: 0;
}
.contact__detail:last-child {
text-transform: lowercase;
}
.contact__detail:hover {
color: var(--blue);
} .contact__form-card {
background: var(--white);
border-radius: 6px;
padding: 28px 24px;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.contact__form-card h3 {
font-family: var(--font-heading);
font-size: 24px;
font-weight: 400;
color: var(--black);
margin-bottom: 24px;
line-height: 30px;
letter-spacing: -0.24px;
}
.contact__form-card h3 strong {
font-weight: 600;
}
.contact__form-row {
display: flex;
flex-direction: column;
gap: 16px;
}
.contact__form {
display: flex;
flex-direction: column;
gap: 16px;
}
.form-group {
display: flex;
flex-direction: column;
gap: 6px;
}
.form-group label {
font-family: var(--font-heading);
font-size: 13px;
font-weight: 600;
color: var(--silver);
text-transform: uppercase;
}
.form-group input,
.form-group textarea {
padding: 10px 14px;
border: 1px solid var(--silver);
border-radius: 4px;
font-family: var(--font-body);
font-size: 15px;
color: var(--text);
transition: border-color var(--transition);
outline: none;
height: 40px;
}
.form-group input:focus,
.form-group textarea:focus {
border-color: var(--blue);
}
.form-group textarea {
resize: vertical;
min-height: 120px;
height: auto;
}
.contact__form .btn {
width: auto;
align-self: flex-end;
} .footer {
background-color: var(--dark-silver);
color: var(--white);
padding: 0;
} .footer__top {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
padding: 25px 0 25px;
}
.footer__top-logo {
display: block;
}
.footer__logo-desktop {
display: none;
}
.footer__logo-mobile {
display: block;
width: 80px;
height: auto;
}
.footer__contact-bar {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 6px;
}
.footer__contact-item {
display: flex;
align-items: center;
gap: 6px;
font-family: var(--font-heading);
font-size: 16px;
font-weight: 600;
color: var(--white);
letter-spacing: -0.48px;
text-transform: uppercase;
transition: color var(--transition);
}
.footer__contact-item:last-child {
text-transform: lowercase;
}
.footer__contact-item svg {
width: 18px;
height: 18px;
flex-shrink: 0;
}
.footer__contact-item:hover {
color: var(--blue-light);
}
.footer__divider {
height: 1px;
background-color: rgba(255, 255, 255, 0.08);
}
.footer__grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px;
padding: 32px 0;
}
.footer__brand {
grid-column: 1 / -1;
}
.footer__brand address {
font-family: var(--font-body);
font-size: 14px;
line-height: 22px;
color: rgba(255, 255, 255, 0.6);
opacity: 0.8;
}
.footer__col ul {
display: flex;
flex-direction: column;
gap: 4px;
align-items: flex-start;
}
.footer__col a {
font-family: var(--font-body);
color: var(--white);
font-size: 15px;
line-height: 30px;
opacity: 0.8;
transition: color var(--transition);
}
.footer__col a:hover {
color: var(--blue-light);
}
.footer__link--highlight {
color: var(--blue-light) !important;
}
.footer__bottom {
display: flex;
flex-direction: column;
align-items: center;
gap: 4px;
padding: 20px 0;
text-align: center;
}
.footer__bottom p {
font-family: var(--font-body);
font-size: 14px;
color: rgba(255, 255, 255, 0.5);
opacity: 0.8;
line-height: 24px;
}
.footer__bottom strong {
font-weight: 600;
}
.footer__bottom a {
color: rgba(255, 255, 255, 0.5);
transition: color var(--transition);
}
.footer__bottom a:hover {
color: var(--white);
} .scroll-top {
position: fixed;
bottom: 20px;
right: 20px;
width: 42px;
height: 42px;
border-radius: 50%;
background-color: var(--blue);
color: var(--white);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
visibility: hidden;
transition: all var(--transition);
z-index: 999;
cursor: pointer;
border: none;
}
.scroll-top.is-visible {
opacity: 1;
visibility: visible;
}
.scroll-top:hover {
background-color: var(--blue-dark);
transform: translateY(-3px);
}
.scroll-top svg {
width: 20px;
height: 20px;
} @media (min-width: 992px) {
.container {
padding: 0 40px;
} .header .container {
min-height: 90px;
}
.header__logo img {
width: 104px;
}
.hamburger {
display: none;
}
.header__nav {
position: static;
width: auto;
height: auto;
background-color: transparent;
opacity: 1;
visibility: visible;
margin: 0 auto;
}
.header__phone {
order: 3;
margin-right: 0;
}
.btn {
padding: 12px 28px;
}
.btn.offer-archive__more {
min-width: 280px;
} .menu {
flex-direction: row;
gap: 10px;
}
.menu-item > a {
font-size: 15px;
padding: 8px 16px;
line-height: 30px;
}
.submenu-toggle {
display: none;
}
.nav-arrow {
display: inline-block;
flex-shrink: 0;
transition: transform var(--transition);
vertical-align: middle;
}
.menu-item-has-children > a {
display: flex;
align-items: center;
gap: 5px;
}
.menu-item-has-children:hover > a .nav-arrow,
.menu-item-has-children:focus-within > a .nav-arrow {
transform: rotate(180deg);
}
.menu-item-has-children {
position: relative;
}
.sub-menu {
position: absolute;
top: calc(100% + 8px);
left: 0;
min-width: 200px;
max-height: none;
overflow: visible;
background-color: rgba(0, 0, 0, 0.9);
border-top: 2px solid var(--blue);
opacity: 0;
visibility: hidden;
transform: translateY(6px);
transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
padding: 8px 0;
width: auto;
}
.menu-item-has-children:hover > .sub-menu, .menu-item-has-children:focus-within > .sub-menu {
opacity: 1;
visibility: visible;
transform: translateY(0);
max-height: none;
width: auto;
}
.sub-menu .menu-item > a {
padding: 10px 20px;
font-size: 13px;
white-space: nowrap;
color: rgba(255, 255, 255, 0.7);
}
.sub-menu .menu-item > a:hover {
color: var(--blue);
} .hero {
align-items: center;
}
.hero .container {
padding-top: 0;
padding-bottom: 0;
}
.hero h1 {
font-size: 60px;
line-height: 62px;
letter-spacing: -0.6px;
}
.hero__list li {
font-size: 18px;
line-height: 24px;
}
.hero__list strong {
font-weight: 600;
}
.hero__buttons {
gap: 20px;
}
.hero__content {
transform: translateY(calc(100% - 100px));
} .offer {
padding: 90px 0 80px;
}
.offer__header {
flex-direction: row;
align-items: flex-start;
justify-content: space-between;
margin-bottom: 48px;
gap: 40px;
}
.offer__header-left {
flex-shrink: 0;
}
.offer__header-left h2 {
font-size: 40px;
line-height: 50px;
letter-spacing: -0.4px;
}
.offer__header-right {
max-width: 444px;
padding-top: 32px;
} .offer__carousel-wrap { padding: 0 60px;
position: relative;
}
.offer__slider { overflow: hidden;
padding: 20px;
margin: -20px;
width: calc(100% + 40px);
}
.offer__track {
gap: 0;
overflow: visible;
scroll-snap-type: none;
padding: 0;
margin: 0;
width: 100%;
} .offer__slider .swiper-slide {
opacity: 0;
transition: opacity 0.35s ease, box-shadow var(--transition), transform var(--transition);
}
.offer__slider .swiper-slide-visible {
opacity: 1;
}
.offer__card {
flex: none;
scroll-snap-align: unset;
}
.offer__arrow {
display: flex;
}
.offer__arrow--prev {
left: 0;
}
.offer__arrow--next {
right: 0;
} .stats {
padding: 90px 0;
}
.stats__symbol {
right: -5%;
max-width: 953px;
height: auto;
align-items: flex-end;
top: 50px;
}
.stats__symbol img {
height: auto;
object-fit: contain;
object-position: center;
}
.stats__top {
flex-direction: row;
gap: 110px;
margin-bottom: 56px;
max-width: 55%;
align-items: flex-end;
}
.stats__top-left {
flex-shrink: 0;
}
.stats__top-left h2 {
font-size: 40px;
line-height: 50px;
letter-spacing: -0.4px;
}
.stats__top-right {
max-width: 427px;
padding-top: 36px;
}
.stats__grid {
flex-direction: row;
gap: 40px;
max-width: 40%;
}
.stats__item {
flex: 0 0 auto;
} .portfolio {
padding: 90px 0;
}
.portfolio__header {
flex-direction: row;
align-items: flex-end;
justify-content: space-between;
margin-bottom: 40px;
}
.portfolio__header-left h2 {
font-size: 40px;
line-height: 50px;
letter-spacing: -0.4px;
}
.portfolio__grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
overflow: visible;
padding-bottom: 0;
}
.portfolio__card {
flex: none;
height: 240px;
}
.portfolio__footer {
text-align: center;
margin-top: 40px;
}
.portfolio__footer .btn {
height: 50px;
padding: 14px 28px;
font-size: 15px;
letter-spacing: -0.3px;
} .about {
padding: 90px 0;
}
.about__wrapper {
flex-direction: row;
gap: 80px;
align-items: center;
}
.about__content {
flex: 1;
}
.about__image {
flex: 0 0 630px;
}
.about h2 {
font-size: 40px;
line-height: 50px;
letter-spacing: -0.4px;
}
.about p {
font-size: 16px;
line-height: 20px;
}
.about p:first-of-type {
font-size: 18px;
line-height: 24px;
} .cta-banner {
padding: 100px 0;
} .cta-banner__bg {
inset: -60px 0;
}
.cta-banner__bg img {
object-position: 0% 25%;
}
.cta-banner__content {
flex-direction: column;
gap: 24px;
}
.cta-banner h2 {
font-size: 52px;
line-height: 60px;
letter-spacing: -0.52px;
}
.cta-banner__list li {
font-size: 18px;
line-height: 24px;
} .contact {
padding: 90px 0;
}
.contact__wrapper {
flex-direction: row;
gap: 40px;
align-items: center;
}
.contact__info {
flex: 1;
min-width: 0;
}
.contact__info h2 {
font-size: 40px;
line-height: 50px;
letter-spacing: -0.4px;
}
.contact__form-card {
flex: 1.5;
min-width: 0;
padding: 40px;
}
.contact__form-row {
flex-direction: row;
flex-wrap: wrap;
gap: 16px;
}
.contact__form-row .form-group {
flex: 1 1 150px;
min-width: 0;
} .footer__top {
flex-direction: row;
justify-content: space-between;
align-items: center;
padding: 40px 0;
}
.footer__logo-mobile {
display: none;
}
.footer__logo-desktop {
display: block;
width: 220px;
height: auto;
}
.footer__contact-bar {
flex-direction: row;
gap: 32px;
}
.footer__grid {
grid-template-columns: 1.5fr 1fr 1fr 1fr;
gap: 40px;
padding: 40px 0;
}
.footer__brand {
grid-column: auto;
}
.footer__brand address {
font-size: 15px;
}
.footer__col a {
font-size: 14px;
line-height: 26px;
}
.footer__bottom {
flex-direction: row;
justify-content: space-between;
}
} @media (min-width: 1360px) {
.container {
padding: 0;
}
} .pdf-btn {
position: fixed;
top: 20vh;
right: 0;
z-index: 900;
display: inline-flex;
align-items: center;
justify-content: center;
padding: 12px 16px;
font-family: var(--font-heading);
font-size: 14px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: -0.28px;
border-radius: 4px 0 0 4px;
border: 2px solid var(--blue);
border-right: none;
background-color: var(--blue);
color: var(--white);
cursor: pointer;
text-decoration: none;
height: 44px;
overflow: hidden;
white-space: nowrap;
transition: padding var(--transition), background-color var(--transition), color var(--transition);
}
.pdf-btn__icon {
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
width: 24px;
height: 24px;
}
.pdf-btn__icon img {
width: 24px;
height: 24px;
display: block;
filter: brightness(0) invert(1);
}
.pdf-btn__label {
max-width: 0;
overflow: hidden;
opacity: 0;
transition: max-width var(--transition), opacity var(--transition), margin var(--transition);
margin-left: 0;
white-space: nowrap;
}
.pdf-btn:hover,
.pdf-btn:focus-visible {
padding: 12px 20px 12px 16px;
outline: none;
}
.pdf-btn:hover .pdf-btn__label,
.pdf-btn:focus-visible .pdf-btn__label {
max-width: 160px;
opacity: 1;
margin-left: 10px;
} @media (min-width: 1400px) {
.offer__carousel-wrap {
padding: 0;
}
.offer__arrow--prev {
left: -60px;
}
.offer__arrow--next {
right: -60px;
}
}.offer-archive__scrollbar-wrap,
.offer-grid__scrollbar-wrap,
.blog-archive__scrollbar-wrap {
display: none;
position: relative;
height: 4px;
background-color: rgba(0, 0, 0, 0.08);
border-radius: 2px;
margin-top: 20px;
overflow: hidden;
}
.offer-archive__scrollbar-thumb,
.offer-grid__scrollbar-thumb,
.blog-archive__scrollbar-thumb {
position: absolute;
top: 0;
left: 0;
height: 4px;
background-color: var(--blue);
border-radius: 2px;
transition: width 0.1s ease;
min-width: 40px;
} .margin-top {
margin-top: 60px;
}
.margin-bottom {
margin-bottom: 60px;
} @media (min-width: 992px) {
.header__nav .menu-item > a {
white-space: nowrap;
}
} .footer__col .menu {
flex-direction: column;
gap: 4px;
} .footer__col-group {
display: flex;
flex-direction: column;
gap: 16px;
} @media (min-width: 992px) {
.footer__col-group {
display: contents;
}
}
.footer__col .menu-item {
width: auto;
display: block;
}
.footer__col .menu-item > a {
font-family: var(--font-body);
font-size: 15px;
font-weight: 400;
color: rgb(255 255 255 / 80%);
text-transform: none;
letter-spacing: 0;
opacity: 1;
padding: 0;
line-height: 30px;
display: block;
}
.footer__col .menu-item > a:hover {
color: var(--blue-light);
opacity: 1;
}
.footer__col .menu-item-has-children {
display: block;
flex-wrap: unset;
justify-content: unset;
}
.footer__col .submenu-toggle {
display: none;
}
.footer__col .sub-menu {
position: static;
opacity: 1;
visibility: visible;
transform: none;
background: none;
border: none;
padding: 0;
max-height: none;
overflow: visible;
}
.footer__col .sub-menu .menu-item > a {
font-size: 14px;
line-height: 26px;
padding: 0;
color: var(--white);
white-space: normal;
}
@media (min-width: 992px) {
.footer__col .menu-item > a {
font-size: 14px;
line-height: 26px;
}
} .hero__content {
transition: opacity 0.2s ease;
}
.hero__content.is-animating {
opacity: 0;
} .hero__list-wrap ul {
list-style: none;
margin-bottom: 28px;
padding: 0;
}
.hero__list-wrap ul li {
color: var(--white);
font-family: var(--font-body);
font-size: 16px;
line-height: 20px;
padding-left: 0;
margin-bottom: 4px;
}
.hero__list-wrap ul strong {
font-weight: 600;
} .image-text {
padding: 60px 0;
background-color: var(--white);
}
.image-text__wrapper {
display: flex;
flex-direction: column;
gap: 32px;
}
.image-text__content {
display: flex;
flex-direction: column;
}
.image-text__content h2 {
font-family: var(--font-heading);
font-size: 30px;
font-weight: 600;
color: var(--black);
margin-bottom: 20px;
line-height: 40px;
letter-spacing: -0.3px;
}
.image-text__content p {
font-family: var(--font-body);
font-size: 16px;
color: var(--text);
margin-bottom: 14px;
line-height: 20px;
opacity: 0.8;
}
.image-text__content .text-link {
color: var(--text-light);
font-weight: 600;
}
.image-text__content .btn {
margin-top: 8px;
align-self: flex-start;
font-family: var(--font-heading);
font-size: 14px;
font-weight: 600;
letter-spacing: -0.28px;
}
.image-text__image {
position: relative;
}
.image-text.elite .image-text__image {
border-radius: 6px;
overflow: hidden;
}
.image-text.elite .image-text__image::after {
content: '';
position: absolute;
inset: 0;
border-radius: 6px;
pointer-events: none;
background:
linear-gradient(to bottom right, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0) 60%),
linear-gradient(to top left,    rgba(0,0,0,0.60) 0%, rgba(0,0,0,0) 60%);
}
.image-text__image img {
width: 100%;
border-radius: 6px;
object-fit: cover;
object-position: top;
}
.image-text__badge {
position: absolute;
bottom: 16px;
right: 16px;
text-align: center;
z-index: 99;
}
.image-text__badge img {
width: 87px;
height: auto;
}
.image-text__badge span {
display: block;
font-family: var(--font-body);
font-size: 9px;
color: #939598;
text-transform: uppercase;
text-align: center;
margin-top: 2px;
}  .page-title {
padding: 100px 0 50px;
background-color: var(--dark-silver, #4F5963);
position: relative;
}
.archive .page-title {
padding: 100px 0 60px;
}
.archive .breadcrumbs,
.taxonomy-kategoria-oferty .breadcrumbs {
display: none;
}
.breadcrumbs li a, .breadcrumbs li span {
font-size: 11px;
line-height: 14px;
} .contact-modal {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 1000;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease, visibility 0.3s ease;
}
.contact-modal.is-open {
opacity: 1;
visibility: visible;
}
.contact-modal__overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.7);
backdrop-filter: blur(4px);
}
.contact-modal__container {
position: relative;
background: var(--white);
border-radius: 12px;
max-width: 500px;
width: 90%;
max-height: 90vh;
overflow-y: auto;
transform: scale(0.9) translateY(20px);
transition: transform 0.3s ease;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.contact-modal.is-open .contact-modal__container {
transform: scale(1) translateY(0);
}
.contact-modal__close {
position: absolute;
top: 10px;
right: 10px;
width: 40px;
height: 40px;
border: none;
background: var(--light-bg);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: background-color var(--transition), transform var(--transition);
z-index: 1;
}
.contact-modal__close:hover {
background: var(--silver);
transform: scale(1.1);
}
.contact-modal__close svg {
width: 16px;
height: 16px;
color: var(--text);
}
.contact-modal__content {
padding: 40px 32px 32px;
}
.contact-modal__header {
text-align: center;
margin-bottom: 20px;
}
.contact-modal__title {
font-family: var(--font-heading);
font-size: 24px;
font-weight: 600;
color: var(--black);
margin-bottom: 8px;
line-height: 1.3;
}
.contact-modal__subtitle {
color: var(--text-light);
font-size: 15px;
line-height: 1.5;
}
.contact-modal__form-group {
margin-bottom: 15px;
}
.contact-modal__row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 15px;
}
.contact-modal__form-group label {
display: block;
margin-bottom: 8px;
font-family: var(--font-heading);
font-size: 13px;
font-weight: 600;
color: var(--silver);
text-transform: uppercase;
}
.contact-modal__input,
.contact-modal__textarea {
width: 100%;
padding: 12px 16px;
border: 2px solid var(--light-silver);
border-radius: 8px;
font-family: var(--font-body);
font-size: 16px;
line-height: 1.5;
color: var(--text);
background: var(--white);
transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-modal__input:focus,
.contact-modal__textarea:focus {
outline: none;
border-color: var(--blue);
}
.contact-modal__textarea {
min-height: 120px;
resize: vertical;
}
.contact-modal__submit {
text-align: center;
}
.contact-modal__btn {
width: 100%;
padding: 14px 24px;
font-size: 16px;
font-weight: 600;
}
.contact-modal__form-group br {
display: none;
} .contact-modal__form .wpcf7-form {
margin: 0;
}
.contact-modal__form .wpcf7-response-output {
margin: 16px 0 0;
padding: 12px 16px;
border-radius: 8px;
font-size: 14px;
text-align: center;
}
.contact-modal__form .wpcf7-form.sent .wpcf7-response-output {
background: #d4edda;
color: #155724;
border: 1px solid #c3e6cb;
}
.contact-modal__form .wpcf7-form.invalid .wpcf7-response-output {
background: #f8d7da;
color: #721c24;
border: 1px solid #f5c6cb;
}
.contact-modal__form .wpcf7-not-valid-tip {
font-size: 12px;
color: #dc3545;
margin-top: 4px;
display: block;
}
@media (max-width: 991.98px) {
.contact-modal__container {
width: 95%;
margin: 20px;
}
.contact-modal__content {
padding: 50px 24px 24px;
}
.contact-modal__row {
grid-template-columns: 1fr;
gap: 0 16px;
}
.contact-modal__title {
font-size: 20px;
}
} .page-title.has-bg-image {
background-size: cover;
background-position: center;
}
.page-title.has-bg-image::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 100%);
z-index: 1;
}
.page-title .container {
position: relative;
z-index: 2;
}
.page-title .section-label {
color: rgba(255,255,255,0.7);
}
.page-title .section-label img {
filter: brightness(0) invert(1) opacity(0.7);
}
.page-title h1 {
font-family: var(--font-heading);
font-size: 36px;
font-weight: 600;
color: var(--white);
line-height: 44px;
letter-spacing: -0.36px;
margin-bottom: 16px;
}
.page-title.has-bg-image h1 {
text-shadow: 0 2px 10px rgba(0,0,0,0.4);
} .blog-single__meta {
display: flex;
align-items: center;
gap: 8px;
font-family: var(--font-heading);
font-size: 13px;
color: rgba(255,255,255,0.7);
text-transform: uppercase;
margin-bottom: 12px;
} .breadcrumbs ol {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 4px;
list-style: none;
padding: 0;
margin: 0;
}
.breadcrumbs li {
display: flex;
align-items: center;
gap: 4px;
font-family: var(--font-heading);
font-size: 12px;
color: rgba(255,255,255,0.6);
text-transform: uppercase;
}
.breadcrumbs a {
color: rgba(255,255,255,0.6);
transition: color var(--transition);
}
.breadcrumbs a:hover {
color: var(--blue-light);
}
.breadcrumbs__sep {
color: rgba(255,255,255,0.4);
margin: 0 2px;
} .text-block {
padding: 40px 0;
background-color: var(--white);
}
.text-block__inner {
max-width: 100%;
}
.text-block__inner h2 {
font-family: var(--font-heading);
font-size: 28px;
font-weight: 600;
color: var(--black);
margin-bottom: 16px;
line-height: 36px;
letter-spacing: -0.28px;
}
.text-block__inner h3 {
font-family: var(--font-heading);
font-size: 22px;
font-weight: 600;
color: var(--black);
margin-bottom: 12px;
line-height: 30px;
}
.text-block__inner p {
font-family: var(--font-body);
font-size: 16px;
color: var(--text);
line-height: 24px;
margin-bottom: 16px;
opacity: 0.85;
}
.text-block__inner ul,
.text-block__inner ol {
padding-left: 20px;
margin-bottom: 16px;
}
.text-block__inner ul {
list-style: disc;
}
.text-block__inner ol {
list-style: decimal;
}
.text-block__inner li {
font-family: var(--font-body);
font-size: 16px;
color: var(--text);
line-height: 24px;
opacity: 0.85;
margin-bottom: 6px;
} .offer-grid {
padding: 60px 0;
background-color: var(--light-bg);
overflow: hidden;
}
.offer-grid__header {
display: flex;
flex-direction: column;
gap: 16px;
margin-bottom: 32px;
}
.offer-grid__header-left h2 {
font-family: var(--font-heading);
font-size: 30px;
font-weight: 400;
color: var(--black);
line-height: 40px;
letter-spacing: -0.3px;
}
.offer-grid__header-left h2 em {
font-style: normal;
font-weight: 600;
}
.offer-grid__header-right {
font-family: var(--font-body);
font-size: 16px;
color: var(--text);
line-height: 20px;
opacity: 0.8;
} .offer-grid__grid {
display: flex;
gap: 20px;
overflow-x: auto;
scroll-snap-type: x mandatory;
-webkit-overflow-scrolling: touch;
padding: 20px;
margin: -20px;
width: calc(100% + 40px);
scrollbar-width: none;
}
.offer-grid__grid::-webkit-scrollbar {
display: none;
}
.offer-grid__grid .offer__card {
flex: 0 0 calc(75% - 10px);
scroll-snap-align: start;
} .map {
background-color: var(--white);
}
.map__embed {
width: 100%;
overflow: hidden;
position: relative;
}
.map__embed iframe {
width: 100%;
height: 100%;
border: 0;
display: block;
}
.map__placeholder {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
background-color: var(--light-bg);
color: var(--silver);
font-size: 14px;
} .faq {
padding: 60px 0;
background-color: var(--white);
}
.faq__header {
margin-bottom: 40px;
}
.faq__header h2 {
font-family: var(--font-heading);
font-size: 30px;
font-weight: 400;
color: var(--black);
line-height: 40px;
letter-spacing: -0.3px;
}
.faq__header h2 em {
font-style: normal;
font-weight: 600;
}
.faq__list {
display: flex;
flex-direction: column;
gap: 0;
border-top: 1px solid rgba(0,0,0,0.08);
}
.faq__item {
border-bottom: 1px solid rgba(0,0,0,0.08);
}
.faq__question {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
padding: 20px 0;
background: none;
border: none;
cursor: pointer;
text-align: left;
font-family: var(--font-heading);
font-size: 16px;
font-weight: 600;
color: var(--black);
line-height: 1.4;
letter-spacing: -0.16px;
transition: color var(--transition);
}
.faq__question:hover {
color: var(--blue);
}
.faq__icon {
flex-shrink: 0;
transition: transform var(--transition);
color: var(--blue);
}
.faq__question[aria-expanded="true"] .faq__icon {
transform: rotate(180deg);
}
.faq__answer {
padding: 0 0 20px;
font-family: var(--font-body);
font-size: 16px;
color: var(--text);
line-height: 24px;
opacity: 0.85;
}
.faq__answer p {
margin-bottom: 10px;
}
.faq__answer p:last-child {
margin-bottom: 0;
}
.faq__answer[hidden] {
display: none;
} .gallery-section {
padding: 60px 0;
background-color: var(--light-bg);
}
.gallery-section:nth-child(odd) {
background-color: #fff;
padding-top: 60px;
}
.gallery-section__header {
margin-bottom: 28px;
}
.gallery-section__header h2 {
font-family: var(--font-heading);
font-size: 30px;
font-weight: 400;
color: var(--black);
line-height: 40px;
letter-spacing: -0.3px;
}
.gallery-section__header p {
font-family: var(--font-body);
font-size: 16px;
color: var(--text);
line-height: 20px;
opacity: 0.8;
margin-top: 8px;
} .gallery-section__slider-wrap {
overflow: hidden;
}
.gallery-section__swiper {
overflow: visible;
}
.gallery-section__swiper .swiper-wrapper {
display: flex;
gap: 12px;
overflow-x: auto;
scroll-snap-type: x mandatory;
-webkit-overflow-scrolling: touch;
scrollbar-width: none;
flex-wrap: nowrap;
}
.gallery-section__swiper .swiper-wrapper::-webkit-scrollbar {
display: none;
}
.gallery-section__slide {
flex: 0 0 calc(80% - 6px);
scroll-snap-align: start;
}
.gallery-section__thumb {
display: block;
overflow: hidden;
border-radius: 6px;
aspect-ratio: 4/3;
}
.gallery-section__thumb img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.gallery-section__thumb:hover img {
transform: scale(1.04);
}
.gallery-section__arrow {
display: none;
align-items: center;
justify-content: center;
width: 50px;
height: 50px;
border-radius: 6px;
border: 1px solid var(--blue);
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 10;
cursor: pointer;
transition: background-color var(--transition);
}
.gallery-section__arrow:hover {
background-color: var(--blue);
}
.gallery-section__arrow:hover img {
filter: brightness(0) invert(1);
}
.gallery-section__arrow--prev {
left: -60px;
}
.gallery-section__arrow--next {
right: -60px;
}
.gallery-section__arrow--next img {
transform: rotate(180deg);
}
.gallery-section__footer {
margin-top: 28px;
text-align: center;
} .offer-archive {
padding: 15px 0 60px;
background-color: var(--light-bg);
} .offer-archive__controls {
display: flex;
flex-direction: column;
gap: 16px;
margin-bottom: 32px;
} .offer-archive__nav {
background: var(--white);
border: 1px solid rgba(0, 14, 42, 0.1);
border-radius: 6px;
box-shadow: 0 1px 2px rgba(0, 14, 42, 0.06);
overflow: hidden;
} .offer-archive__tabs {
display: flex;
flex-wrap: wrap;
align-items: stretch;
border-bottom: 1px solid rgba(0, 14, 42, 0.1);
}
.offer-archive__tab {
flex: 1 1 50%;
display: block;
position: relative;
padding: 14px 16px 12px;
background: transparent;
border: none;
border-right: 1px solid rgba(0, 14, 42, 0.1);
border-bottom: 1px solid rgba(0, 14, 42, 0.1);
text-align: left;
color: var(--dark-silver);
transition: background-color 0.15s ease;
text-decoration: none;
}
.offer-archive__tab:hover:not(.is-active) {
background-color: #e5eaf070;
}
.offer-archive__tab:focus-visible {
outline: 2px solid var(--blue);
outline-offset: -2px;
z-index: 1;
}
.offer-archive__tab-top {
display: flex;
align-items: baseline;
justify-content: space-between;
gap: 8px;
width: 100%;
}
.offer-archive__tab-name {
display: block;
font-family: var(--font-heading);
font-weight: 600;
font-size: 13px;
letter-spacing: 0.02em;
text-transform: uppercase;
color: var(--black);
line-height: 1.2;
}
.offer-archive__tab-count {
font-family: var(--font-heading);
font-weight: 500;
font-size: 11px;
color: var(--silver);
letter-spacing: 0.02em;
}
.offer-archive__tab-hint {
display: block;
margin-top: 6px;
font-family: var(--font-body);
font-size: 11px;
line-height: 1.35;
color: var(--dark-silver);
opacity: 0.85;
}
.offer-archive__tab-hint {
display: none !important;
}
.offer-archive__tab.is-active {
background-color: #e5eaf070;
}
.offer-archive__tab.is-active::after {
content: '';
position: absolute;
left: 0;
right: 0;
bottom: -1px;
height: 3px;
background-color: var(--blue);
}
.offer-archive__tab.is-active .offer-archive__tab-name,
.offer-archive__tab.is-active .offer-archive__tab-count {
color: var(--blue);
} .offer-archive__subrow {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 4px;
padding: 10px 14px;
background-color: #e5eaf070;
}
.offer-archive__subrow[hidden] {
display: none !important;
}
.offer-archive__subrow-label {
font-family: var(--font-heading);
font-size: 11px;
font-weight: 600;
color: var(--silver);
text-transform: uppercase;
letter-spacing: 0.14em;
margin-right: 8px;
}
.offer-archive__subtab {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 8px 14px;
background: transparent;
border: none;
border-radius: 4px;
font-family: var(--font-body);
font-weight: 500;
font-size: 14px;
color: var(--blue-light);
text-decoration: none;
transition: background-color 0.12s ease, color 0.12s ease, box-shadow 0.12s ease;
}
.offer-archive__subtab:hover {
color: var(--blue);
}
.offer-archive__subtab:focus-visible {
outline: 2px solid var(--blue);
outline-offset: 2px;
}
.offer-archive__subtab-count {
font-family: var(--font-heading);
font-size: 11px;
color: var(--silver);
font-weight: 500;
}
.offer-archive__subtab.is-active {
background-color: var(--white);
color: var(--blue);
font-weight: 600;
box-shadow: 0 1px 2px rgba(0, 14, 42, 0.06);
}
.offer-archive__subtab.is-active .offer-archive__subtab-count {
color: var(--blue);
} .offer-archive__toolbar {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 10px;
padding: 0 4px;
} .offer-archive__search-wrap {
width: 100%;
}
.offer-archive__search-inner {
position: relative;
display: flex;
align-items: center;
}
.offer-archive__search-icon {
position: absolute;
left: 12px;
color: var(--dark-silver);
pointer-events: none;
flex-shrink: 0;
}
.offer-archive__search-input {
font-family: var(--font-heading);
font-weight: 600;
font-size: 11px;
text-transform: uppercase;
letter-spacing: 0.06em;
padding: 8px 36px 8px 36px;
width: 100%;
min-width: 220px;
border: 1px solid rgba(0, 14, 42, 0.1);
background: var(--white);
color: var(--black);
border-radius: 4px;
appearance: none;
-webkit-appearance: none;
transition: border-color var(--transition);
}
.offer-archive__search-input::placeholder {
color: var(--silver);
font-weight: 500;
}
.offer-archive__search-input:hover,
.offer-archive__search-input:focus {
border-color: var(--blue);
outline: none;
}
.offer-archive__search-input::-webkit-search-cancel-button,
.offer-archive__search-input::-webkit-search-decoration {
-webkit-appearance: none;
}
.offer-archive__search-clear {
position: absolute;
right: 10px;
display: flex;
align-items: center;
justify-content: center;
width: 20px;
height: 20px;
background: none;
border: none;
cursor: pointer;
color: var(--silver);
padding: 0;
transition: color var(--transition);
}
.offer-archive__search-clear:hover {
color: var(--black);
}
.offer-archive__search-empty {
margin-top: 16px;
}
.offer-archive__bc {
font-family: var(--font-body);
font-size: 13px;
color: var(--dark-silver);
line-height: 1.4;
display: none;
}
.offer-archive__bc b {
color: var(--black);
font-weight: 600;
}
.offer-archive__bc-sep {
margin: 0 8px;
color: var(--silver);
}
.offer-archive__bc-leaf {
color: var(--blue);
font-weight: 600;
} .offer-archive__sort {
display: inline-flex;
align-items: center;
gap: 10px;
font-family: var(--font-heading);
font-size: 11px;
color: var(--dark-silver);
letter-spacing: 0.06em;
text-transform: uppercase;
}
.offer-archive__sort-label {
font-family: var(--font-heading);
font-size: 11px;
font-weight: 600;
color: var(--dark-silver);
letter-spacing: 0.06em;
text-transform: uppercase;
}
.offer-archive__sort-select {
font-family: var(--font-heading);
font-weight: 600;
font-size: 11px;
text-transform: uppercase;
letter-spacing: 0.06em;
padding: 8px 32px 8px 12px;
min-width: 170px;
border: 1px solid rgba(0, 14, 42, 0.1);
background: var(--white);
color: var(--black);
border-radius: 4px;
cursor: pointer;
appearance: none;
-webkit-appearance: none;
background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23000e2a' stroke-width='1.6' fill='none'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 12px center;
transition: border-color var(--transition), color var(--transition);
}
.offer-archive__sort-select:hover,
.offer-archive__sort-select:focus-visible {
border-color: var(--blue);
outline: none;
} .offer-archive__grid {
display: grid;
grid-template-columns: 1fr;
gap: 20px;
}
.offer-archive__grid .offer__card {
flex: none;
scroll-snap-align: unset;
width: 100%;
}
.offer-archive__empty {
font-family: var(--font-body);
font-size: 16px;
color: var(--text);
opacity: 0.6;
padding: 40px 0;
} .offer-archive__more-wrap {
display: flex;
justify-content: center;
margin-top: 40px;
}
.offer-archive__more {
min-width: 180px;
}
.offer-archive__more.is-loading {
opacity: 0.65;
cursor: wait;
} .offer-archive__grid.is-loading {
opacity: 0.5;
pointer-events: none;
transition: opacity 0.2s ease;
} .fade-in-up {
opacity: 0;
transform: translateY(24px);
transition: opacity 0.55s ease, transform 0.55s ease;
will-change: opacity, transform;
}
.fade-in-up.is-visible {
opacity: 1;
transform: translateY(0);
} .offer__card--video {
position: relative;
overflow: hidden;
border-radius: 6px;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
background: #0a1628;
display: block;
aspect-ratio: 16 / 10;
transition: box-shadow var(--transition), transform var(--transition);
}
.offer__card--video:hover {
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
}
.offer__card-video-link {
position: absolute;
inset: 0;
display: block;
color: var(--white);
}
.offer__card-video-link img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.5s ease;
filter: contrast(1.1) saturate(1.05) brightness(0.92);
}
.offer__card--video:hover .offer__card-video-link img {
transform: scale(1.03);
}
.offer__card-video-fallback {
position: absolute;
inset: 0;
display: block;
background: linear-gradient(135deg, #1a2f4a 0%, #0a1628 100%);
}
.offer__card-video-play {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 68px;
height: 68px;
border-radius: 50%;
background-color: rgba(0, 115, 222, 0.92);
color: var(--white);
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 20px rgba(0,0,0,0.35);
transition: background-color var(--transition), transform var(--transition);
padding-left: 4px;
}
.offer__card--video:hover .offer__card-video-play {
background-color: var(--blue-dark);
transform: translate(-50%, -50%) scale(1.08);
}
.offer__card-video-title {
position: absolute;
left: 16px;
right: 16px;
bottom: 14px;
font-family: var(--font-heading);
font-size: 15px;
font-weight: 600;
color: var(--white);
line-height: 1.3;
letter-spacing: -0.18px;
text-shadow: 0 1px 6px rgba(0,0,0,0.45);
z-index: 2;
} .offer-archive__description {
margin-top: 12px;
font-family: var(--font-body);
font-size: 15px;
line-height: 1.5;
color: var(--white-light);
max-width: 800px;
}
.offer-archive__description p {
margin-bottom: 16px;
}
.offer-archive__description p:last-child {
margin-bottom: 0;
}
.offer-archive__description ul,
.offer-archive__description ol {
margin-bottom: 16px;
padding-left: 20px;
}
.offer-archive__description li {
margin-bottom: 8px;
}
.offer-archive__description strong {
font-weight: 600;
color: var(--black);
}
.offer-archive__description em {
font-style: italic;
color: var(--text-light);
}
.archive main {
background: var(--light-bg);
} .seo-section {
background-color: var(--light-bg);
padding: 48px 0;
overflow: hidden;
transition: height 0.38s ease, padding 0.38s ease, opacity 0.28s ease;
}
.seo-section--top {
padding: 40px 0 0;
}
.seo-section--bottom {
padding: 48px 0;
background-color: var(--white);
}
.seo-section--bottom-columns {
padding: 48px 0;
background-color: var(--white);
}
.seo-section__inner--columns {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
} .seo-section__inner--columns:has(.seo-section__column--right:empty),
.seo-section__inner--single-column {
grid-template-columns: 1fr;
} .seo-section__inner--columns:has(.seo-section__column--left:empty) {
grid-template-columns: 1fr;
}
.seo-section__column {
font-family: var(--font-body);
font-size: 16px;
line-height: 1.5;
color: var(--text);
opacity: 0.9;
}
.seo-section__column > *:first-child {
margin-top: 0;
}
.seo-section__column > *:last-child {
margin-bottom: 0;
}
@media (max-width: 991.98px) {
.seo-section__inner--columns {
grid-template-columns: 1fr;
gap: 30px;
}
}
.seo-section__inner {
max-width: 100%;
font-family: var(--font-body);
font-size: 16px;
color: var(--text);
line-height: 1.5;
opacity: 0.9;
}
.seo-section__inner h2 {
font-family: var(--font-heading);
font-size: 26px;
font-weight: 600;
color: var(--black);
margin-bottom: 14px;
line-height: 1.25;
letter-spacing: -0.26px;
}
.seo-section__inner h3 {
font-family: var(--font-heading);
font-size: 20px;
font-weight: 600;
color: var(--black);
margin: 20px 0 10px;
line-height: 1.3;
}
.seo-section__inner p {
margin-bottom: 14px;
}
.seo-section__inner ul,
.seo-section__inner ol {
padding-left: 22px;
margin-bottom: 14px;
}
.seo-section__inner ul { list-style: disc; }
.seo-section__inner ol { list-style: decimal; }
.seo-section__inner li {
margin-bottom: 6px;
}
.seo-section__inner a {
color: var(--blue);
text-decoration: underline;
transition: color var(--transition);
}
.seo-section__inner a:hover {
color: var(--blue-dark);
} .product-single {
padding: 48px 0 60px;
background-color: var(--white);
}
.product-single__wrapper {
display: flex;
flex-direction: column;
gap: 24px;
} .product-single__gallery {
width: 100%;
}
.product-single__swiper-main {
position: relative;
border-radius: 8px;
overflow: hidden;
aspect-ratio: 4/3;
background: var(--white);
}
.product-single__swiper-main .swiper-wrapper {
height: 100%;
}
.product-single__swiper-main .swiper-slide {
height: 100%;
}
.product-single__gallery-link {
display: block;
width: 100%;
height: 100%;
}
.product-single__swiper-main img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.product-single__thumbs {
margin-top: 10px;
}
.product-single__thumbs .swiper-slide {
border-radius: 6px;
overflow: hidden;
cursor: pointer;
opacity: 0.55;
transition: opacity var(--transition);
aspect-ratio: 4/3;
border: 2px solid transparent;
box-sizing: border-box;
}
.product-single__thumbs .swiper-slide-thumb-active {
opacity: 1;
border-color: var(--blue);
}
.product-single__thumbs img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.product-single__arrow.swiper-button-disabled{
border: 1px solid #a2abb252;
background: #a2abb252;
}
.product-single__arrow {
display: flex;
align-items: center;
justify-content: center;
width: 50px;
height: 50px;
border-radius: 6px;
border: 1px solid var(--blue);
background: var(--blue);
flex-shrink: 0;
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 10;
cursor: pointer;
transition: background-color var(--transition), border-color var(--transition);
}
.product-single__arrow:hover {
background-color: var(--blue);
}
.product-single__arrow:hover img {
filter: brightness(0) invert(1);
}
.product-single__arrow img {
width: 10px;
height: 20px;
transition: filter var(--transition);
filter: brightness(0) invert(1);
}
.product-single__arrow--prev { left: 12px; }
.product-single__arrow--next { right: 12px; }
.product-single__arrow--next img { transform: rotate(180deg); } .product-single__info {
width: 100%;
}
.product-single__info-inner {
border-radius: 8px;
padding: 24px 0;
height: 100%;
display: flex;
flex-direction: column;
gap: 0;
}
.single-oferta .page-title h1 {
font-size: 26px;
line-height: 1.2;
}
.product-single__info-header h2 {
font-family: var(--font-heading);
margin-bottom: 10px;
}
.product-single__meta {
display: flex;
flex-direction: column;
gap: 0;
margin: 0;
padding: 0;
}
.product-single__meta-row {
display: flex;
gap: 25px;
padding: 14px 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.07);
align-items: baseline;
}
.product-single__meta-row:last-child {
border-bottom: unset;
}
.product-single__meta-row--note {
padding-top: 0;
padding-bottom: 14px;
border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.product-single__meta-row--note dd {
font-weight: 400 !important;
font-size: 13px !important;
color: var(--dark-silver) !important;
opacity: 0.7;
text-transform: none;
padding: 10px 0;
border-radius: 4px;
line-height: 1.3 !important;
}
.product-single__meta-row dt {
flex: 0 0 90px;
padding-top: 2px;
color: var(--silver);
font-family: var(--font-heading);
font-weight: 700;
font-size: 14px;
text-transform: uppercase;
letter-spacing: 0.3px;
line-height: 1.5;
}
.product-single__meta-row dd {
color: var(--blue);
font-family: var(--font-body);
font-weight: 600;
font-size: 15px;
line-height: 1.5;
}
.product-single__cta {
margin-top: auto;
background: var(--silver);
padding: 15px;
border-radius: 4px;
}
.product-single__cta h4 {
text-align: center;
padding: 5px 0 15px;
color: #fff;
font-size: 20px;
font-weight: 500;
letter-spacing: 0.5px;
}
.product-single__cta .btn {
width: 100%;
text-align: center;
justify-content: center;
border: none;
} .product-single__description {
margin-top: 20px;
font-family: var(--font-body);
font-size: 15px;
color: var(--text);
line-height: 26px;
}
.product-single__description h2,
.product-single__description h3 {
font-family: var(--font-heading);
font-weight: 600;
color: var(--black);
margin-bottom: 12px;
letter-spacing: -0.2px;
}
.product-single__description h2 { font-size: 24px; line-height: 32px; }
.product-single__description h3 { font-size: 20px; line-height: 28px; }
.product-single__description p {
margin-bottom: 16px;
opacity: 0.85;
}
.product-single__description ul,
.product-single__description ol {
padding-left: 20px;
margin-bottom: 16px;
}
.product-single__description ul { list-style: disc; }
.product-single__description ol { list-style: decimal; } .blog-archive {
padding: 60px 0;
background-color: var(--light-bg);
} .blog-archive__grid {
display: grid;
grid-template-columns: 1fr;
gap: 20px;
overflow: visible;
padding: 0;
scrollbar-width: none;
}
.blog-archive__grid::-webkit-scrollbar {
display: none;
}
.blog-archive__card {
background: var(--white);
border-radius: 6px;
overflow: hidden;
box-shadow: 0 1px 3px rgba(0,0,0,0.06);
display: flex;
flex-direction: column;
transition: box-shadow var(--transition), transform var(--transition);
}
.blog-archive__card:hover {
box-shadow: 0 4px 20px rgba(0,0,0,0.10);
transform: translateY(-4px);
}
.blog-archive__card-image {
display: block;
aspect-ratio: 4/3;
overflow: hidden;
}
.blog-archive__card-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.blog-archive__card:hover .blog-archive__card-image img {
transform: scale(1.04);
}
.blog-archive__card-body {
padding: 20px;
display: flex;
flex-direction: column;
gap: 8px;
flex: 1;
}
.blog-archive__cat {
font-family: var(--font-heading);
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
color: var(--blue);
letter-spacing: 0.5px;
}
.blog-archive__card-body h3 {
font-family: var(--font-heading);
font-size: 17px;
font-weight: 600;
color: var(--black);
line-height: 1.35;
letter-spacing: -0.17px;
}
.blog-archive__card-body h3 a {
color: inherit;
transition: color var(--transition);
}
.blog-archive__card-body h3 a:hover {
color: var(--blue);
}
.blog-archive__meta {
font-family: var(--font-heading);
font-size: 12px;
color: var(--silver);
text-transform: uppercase;
}
.blog-archive__card-body p {
font-family: var(--font-body);
font-size: 14px;
color: var(--text);
line-height: 20px;
opacity: 0.7;
flex: 1;
}
.blog-archive__card-body .btn {
align-self: flex-start;
margin-top: 4px;
}
.blog-archive__empty {
font-family: var(--font-body);
font-size: 16px;
color: var(--text);
opacity: 0.6;
padding: 40px 0;
} .blog-single {
padding: 60px 0;
background-color: var(--white);
}
.blog-single__layout {
max-width: 860px;
}
.blog-single__content h2 {
font-family: var(--font-heading);
font-size: 26px;
font-weight: 600;
color: var(--black);
margin: 32px 0 12px;
line-height: 34px;
letter-spacing: -0.26px;
}
.blog-single__content h3 {
font-family: var(--font-heading);
font-size: 20px;
font-weight: 600;
color: var(--black);
margin: 24px 0 10px;
line-height: 28px;
}
.blog-single__content p {
font-family: var(--font-body);
font-size: 16px;
color: var(--text);
line-height: 26px;
margin-bottom: 16px;
opacity: 0.9;
}
.blog-single__content ul,
.blog-single__content ol {
padding-left: 24px;
margin-bottom: 16px;
}
.blog-single__content ul { list-style: disc; }
.blog-single__content ol { list-style: decimal; }
.blog-single__content li {
font-family: var(--font-body);
font-size: 16px;
color: var(--text);
line-height: 26px;
margin-bottom: 6px;
opacity: 0.9;
}
.blog-single__content img {
width: 100%;
height: auto;
border-radius: 6px;
margin: 24px 0;
}
.blog-single__content blockquote {
border-left: 3px solid var(--blue);
padding: 12px 20px;
margin: 24px 0;
background-color: var(--light-bg);
border-radius: 0 4px 4px 0;
}
.blog-single__content blockquote p {
font-style: italic;
opacity: 0.75;
margin-bottom: 0;
}
.blog-single__footer {
margin-top: 40px;
padding-top: 24px;
border-top: 1px solid rgba(0,0,0,0.08);
}
.blog-single__categories {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 8px;
font-family: var(--font-heading);
font-size: 13px;
font-weight: 600;
color: var(--dark-silver);
text-transform: uppercase;
}
.blog-single__tag {
padding: 4px 12px;
background-color: var(--light-bg);
border: 1px solid rgba(0,0,0,0.10);
border-radius: 4px;
color: var(--dark-silver);
font-size: 12px;
transition: all var(--transition);
}
.blog-single__tag:hover {
background-color: var(--blue);
color: var(--white) !important;
border-color: var(--blue);
}
.blog-single__content a {
transition: all var(--transition);
cursor: pointer;
}
.blog-single__content a:hover {
color: var(--blue);
}
.blog-single__content summary {
cursor: pointer;
transition: all var(--transition);
}
.blog-single__content summary:hover {
color: var(--blue);
} .blog-related {
padding: 60px 0;
background-color: var(--light-bg);
}
.blog-related__header {
margin-bottom: 32px;
}
.blog-related__header h2 {
font-family: var(--font-heading);
font-size: 30px;
font-weight: 400;
color: var(--black);
line-height: 40px;
letter-spacing: -0.3px;
}
.blog-related__header h2 em {
font-style: normal;
font-weight: 600;
} .pagination {
display: flex;
justify-content: center;
align-items: center;
gap: 6px;
margin-top: 48px;
flex-wrap: wrap;
}
.pagination .page-numbers {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 4px;
font-family: var(--font-heading);
font-size: 14px;
font-weight: 600;
color: var(--dark-silver);
border: 1px solid rgba(0,0,0,0.12);
background: var(--white);
transition: all var(--transition);
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current {
background-color: var(--blue);
color: var(--white);
border-color: var(--blue);
}
.pagination .page-numbers.dots {
border: none;
background: none;
cursor: default;
} .wpcf7-form .form-group {
display: flex;
flex-direction: column;
gap: 6px;
margin-bottom: 16px;
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
width: 100%;
padding: 10px 14px;
border: 1px solid var(--silver);
border-radius: 4px;
font-family: var(--font-body);
font-size: 15px;
color: var(--text);
transition: border-color var(--transition);
outline: none;
height: 40px;
background: var(--white);
}
.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form textarea:focus {
border-color: var(--blue);
}
.wpcf7-form textarea {
resize: vertical;
min-height: 120px;
}
.wpcf7-form input[type="submit"] {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 12px 28px;
font-family: var(--font-heading);
font-size: 14px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: -0.28px;
border-radius: 4px;
border: 2px solid var(--blue);
background-color: var(--blue);
color: var(--white);
cursor: pointer;
transition: all var(--transition);
height: 44px;
margin-top: 4px;
}
.wpcf7-form input[type="submit"]:hover {
background-color: var(--blue-dark);
border-color: var(--blue-dark);
}
.wpcf7-not-valid-tip {
font-family: var(--font-body);
font-size: 12px;
color: #dc2626;
margin-top: 4px;
}
.wpcf7-response-output {
margin-top: 16px;
padding: 10px 14px;
border-radius: 4px;
font-family: var(--font-body);
font-size: 14px;
}
.wpcf7-mail-sent-ok {
background-color: #d1fae5;
border: 1px solid #6ee7b7;
color: #065f46;
}
.wpcf7-mail-sent-ng,
.wpcf7-aborted {
background-color: #fee2e2;
border: 1px solid #fca5a5;
color: #991b1b;
} .offer.is-related {
padding: 60px 0;
background-color: var(--light-bg);
}
@media (max-width: 425px) {
.offer-archive__tab {
flex: 100%;
}
.offer-archive__subrow {
flex-direction: column;
}
} @media (min-width: 992px) {
.margin-top { margin-top: 90px; }
.margin-bottom { margin-bottom: 90px; } .offer-archive__scrollbar-wrap,
.offer-grid__scrollbar-wrap,
.blog-archive__scrollbar-wrap {
display: none;
} .image-text {
padding: 90px 0;
}
.image-text__wrapper {
flex-direction: row;
gap: 80px;
align-items: center;
}
.image-text.is-right .image-text__content { order: 1; flex: 1; }
.image-text.is-right .image-text__image   { order: 2; flex: 0 0 630px; }
.image-text.is-left  .image-text__image   { order: 1; flex: 0 0 630px; }
.image-text.is-left  .image-text__content { order: 2; flex: 1; }
.image-text__content h2 {
font-size: 40px;
line-height: 50px;
letter-spacing: -0.4px;
}
.image-text__content p:first-of-type {
font-size: 18px;
line-height: 24px;
} .page-title {
padding: 140px 0 60px;
}
.page-title h1 {
font-size: 52px;
line-height: 60px;
letter-spacing: -0.52px;
} .text-block {
padding: 60px 0;
}
.text-block__inner.is-narrow {
max-width: 900px;
}
.text-block__inner h2 {
font-size: 36px;
line-height: 46px;
} .offer-grid {
padding: 90px 0;
}
.offer-grid__header {
flex-direction: row;
align-items: flex-start;
justify-content: space-between;
gap: 40px;
margin-bottom: 48px;
}
.offer-grid__header-left h2 {
font-size: 40px;
line-height: 50px;
letter-spacing: -0.4px;
}
.offer-grid__header-right {
max-width: 444px;
padding-top: 32px;
}
.offer-archive__tab-name {
font-size: 15px;
line-height: 1.3;
} .offer-grid__grid {
display: grid;
gap: 24px;
overflow: visible;
padding: 0;
margin: 0;
width: 100%;
}
.offer-grid__grid--cols-3 {
grid-template-columns: repeat(3, 1fr);
}
.offer-grid__grid--cols-4 {
grid-template-columns: repeat(4, 1fr);
}
.offer-grid__grid .offer__card {
flex: none;
scroll-snap-align: unset;
} .faq {
padding: 90px 0;
}
.faq__header h2 {
font-size: 40px;
line-height: 50px;
letter-spacing: -0.4px;
}
.faq__question {
font-size: 17px;
} .gallery-section {
padding: 90px 0;
}
.gallery-section:nth-child(odd) {
padding-top: 90px;
}
.gallery-section__slider-wrap {
overflow: visible;
position: relative;
}
.gallery-section__swiper .swiper-wrapper {
display: flex;
gap: 0;
overflow: visible;
scroll-snap-type: none;
flex-wrap: nowrap;
}
.gallery-section__slide {
flex: none;
scroll-snap-align: none;
}
.gallery-section__swiper {
overflow: hidden;
}
.gallery-section__arrow {
display: flex;
}
.gallery-section__header h2 {
font-size: 40px;
line-height: 50px;
letter-spacing: -0.4px;
} .offer-archive {
padding: 20px 0 80px;
} .offer-archive__controls {
gap: 16px;
} .offer-archive__tabs {
flex-wrap: nowrap;
}
.offer-archive__tab {
flex: 1 1 0;
padding: 16px 18px 14px;
border-bottom: none;
display: flex;
align-items: center;
justify-content: space-between;
}
.offer-archive__tab:last-child {
border-right: none;
}
.offer-archive__subrow {
padding: 10px 14px;
} .offer-archive__toolbar {
flex-direction: row;
align-items: center;
justify-content: flex-start;
gap: 16px;
}
.offer-archive__search-wrap {
flex: 1 1 auto;
max-width: 360px;
}
.offer-archive__sort {
margin-left: auto;
flex-shrink: 0;
}
.offer-archive__grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
overflow: visible;
padding: 0;
margin: 0;
width: 100%;
}
.offer-archive__grid .offer__card {
flex: none;
scroll-snap-align: unset;
} .offer-archive__grid .offer__card--video {
grid-column: span 2;
aspect-ratio: auto;
height: auto;
align-self: stretch;
} .product-single {
padding: 60px 0 90px;
}
.product-single__wrapper {
flex-direction: row;
gap: 40px;
align-items: flex-start;
}
.product-single__gallery {
flex: 0 0 65%;
max-width: 65%;
}
.product-single__info {
flex: 1;
min-width: 0;
align-self: stretch;
}
.product-single__info-inner {
height: 100%;
padding: 0;
}
.product-single__meta-row {
gap: 24px;
}
.product-single__cta {
transform: translateY(-130px);
}
.single-oferta .page-title h1 {
font-size: 36px;
line-height: 1.2;
}
.breadcrumbs li a, .breadcrumbs li span {
font-size: 13px;
} .blog-archive {
padding: 90px 0;
}
.blog-archive__grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
overflow: visible;
padding: 0;
margin: 0;
width: 100%;
}
.blog-archive__card {
flex: none;
scroll-snap-align: unset;
} .blog-single {
padding: 90px 0;
}
.blog-single__layout {
max-width: 860px;
}
.blog-single__content h2 {
font-size: 32px;
line-height: 42px;
} .blog-related {
padding: 90px 0;
}
.blog-related__header h2 {
font-size: 40px;
line-height: 50px;
letter-spacing: -0.4px;
} .offer.is-related {
padding: 90px 0;
}
}