:root {
--primary: #F4ED39;
--black: #0F0F0F;
--white: #FFFFFF;
--light-gray: #EEEEEE;
--gray: #7F7F7F;
--yellow: #dcd62f;
--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
} * {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "nexa", sans-serif;
font-weight: 400;
font-style: normal;
color: var(--black);
overflow-x: hidden;
}
img {
max-width: 100%;
height: auto;
display: block;
}
a {
text-decoration: none;
color: inherit;
}
ul, ol {
list-style: outside;
}
section ul li, section ol li {
line-height: 1.4;
margin-bottom: 5px;
max-width: 80%;
}
section ul li::marker, section ol li::marker {
color: var(--gray);
font-size: 12px;
} .container {
width: 100%;
max-width: 1280px;
margin: 0 auto;
padding: 0 20px;
} h1 {
font-size: 36px;
font-weight: 700;
font-style: normal;
line-height: 1.1;
}
h2 {
font-size: 30px;
font-weight: 700;
font-style: normal;
line-height: 1.1;
}
h3 {
font-size: 18px;
font-weight: 700;
font-style: normal;
line-height: 1.3;
}
h4 {
font-size: 16px;
font-weight: 700;
font-style: normal;
line-height: 1.5;
}
h5 {
font-size: 24px;
font-weight: 700;
font-style: normal;
text-transform: uppercase;
}
p {
font-size: 15px;
font-weight: 400;
font-style: normal;
line-height: 1.4;
} .btn {
background: var(--primary);
height: 54px;
line-height: 54px;
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0 15px;
margin-bottom: 20px;
transition: var(--transition);
font-family: "nexa", sans-serif;
font-size: 14px;
font-weight: 600;
letter-spacing: 0.2px;
font-style: normal;
text-transform: uppercase;
cursor: pointer;
border: none;
color: var(--black);
}
.btn.arrow:after {
background-image: url(//boxperto.com.pl/wp-content/themes/boxperto-wp/assets/images/chevron.svg);
content: "";
background-position: 100% 50%;
background-repeat: no-repeat;
width: 24px;
height: 24px;
margin-left: 10px;
transition: var(--transition);
}
.btn:hover:after {
transform: translateX(5px);
}
.btn:hover {
background: var(--yellow);
} .header {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100px;
background: var(--black);
z-index: 1000;
transition: var(--transition);
}
.header-wrapper {
display: flex;
align-items: center;
justify-content: space-between;
height: 100px;
}
.header-logo {
width: 50%;
min-width: unset;
}
.header-logo img {
height: 50px;
}
.header.active {
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
background: var(--white);
transition: var(--transition);
}
.header.active .header-logo img {
content: url(//boxperto.com.pl/wp-content/themes/boxperto-wp/assets/images/logo_black.png);
} .nav {
position: fixed;
top: 0;
right: -100%;
width: 100%;
max-width: 400px;
height: 100vh;
background: var(--primary);
padding: 120px 40px 40px;
transition: var(--transition);
z-index: 999;
}
.nav.active {
right: 0;
}
.menu {
display: flex;
flex-direction: column;
gap: 20px;
align-items: flex-start;
list-style: none;
}
.menu-item > a {
font-size: 16px;
font-weight: 600;
text-transform: uppercase;
color: var(--black);
display: block;
padding: 10px 0;
transition: var(--transition);
letter-spacing: 0.5px;
}
.menu-item > a:hover {
color: var(--black);
}
.menu-item-has-children {
position: relative;
}
.menu-item-has-children > a:after {
content: "";
background-image: url(//boxperto.com.pl/wp-content/themes/boxperto-wp/assets/images/dropdown.svg);
background-position: center;
background-repeat: no-repeat;
width: 20px;
height: 20px;
display: inline-block;
margin-left: 5px;
transition: var(--transition);
transform: translateY(3px);
filter: brightness(0) saturate(100%) invert(53%) sepia(7%) saturate(0%) hue-rotate(149deg) brightness(92%) contrast(89%);
}
.menu-item-has-children.active > a:after {
transform: rotate(180deg);
}
.sub-menu {
display: none;
padding-left: 20px;
margin-top: 10px;
}
.menu-item-has-children.active .sub-menu {
display: block;
}
.sub-menu .menu-item a {
font-size: 14px;
font-weight: 500;
padding: 8px 0;
color: var(--black);
}
.sub-menu .menu-item a:hover {
color: var(--black);
opacity: 0.4;
} .header-phone {
display: none;
} #nav-toggle {
position: relative;
height: 100%;
width: 100px;
cursor: pointer;
z-index: 1001;
background: var(--primary);
clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
display: flex;
align-items: center;
justify-content: center;
margin-right: -20px;
}
#nav-toggle span, #nav-toggle span:before, #nav-toggle span:after {
cursor: pointer;
border-radius: 1px;
height: 2px;
width: 35px;
background: var(--black);
position: absolute;
left: unset;
top: 50%;
display: block;
content: '';
transition: var(--transition);
}
.header.active #nav-toggle span,
.header.active #nav-toggle span:before,
.header.active #nav-toggle span:after {
background: var(--black);
}
.header.active #nav-toggle.active span:before,
.header.active #nav-toggle.active span:after {
background: var(--black);
}
.header.active #nav-toggle.active span {
background-color: transparent;
}
#nav-toggle span:before {
top: -10px;
}
#nav-toggle span:after {
top: 10px;
}
#nav-toggle.active span {
background-color: transparent;
}
#nav-toggle.active span:before,
#nav-toggle.active span:after {
top: 0;
}
#nav-toggle.active span:before {
transform: rotate(135deg);
}
#nav-toggle.active span:after {
transform: rotate(-135deg);
} .section-main-title p:first-child {
color: var(--gray);
font-weight: 600;
font-size: 14px;
margin-bottom: 4px;
text-transform: uppercase;
}
.section-main-title p:first-child:before {
border-right: 2px solid var(--gray);
content: "";
margin-right: 6px;
height: 11px;
display: inline-flex;
opacity: 0.7;
}
.section-main-title h1, .section-main-title h2 {
color: var(--black);
}
.section-main-title h4 span {
color: var(--gray);
margin-right: 6px;
transform: translateY(-1px);
display: inline-flex;
} .hero-carousel {
margin-top: 100px;
position: relative;
overflow: hidden;
background: var(--light-gray);
height: 100vh;
}
.hero-slide {
height: 100dvh;
background-image: url(//boxperto.com.pl/wp-content/themes/boxperto-wp/assets/images/hero-slider-mobile.png);
background-size: cover;
background-position: center;
display: flex;
align-items: center;
}
.hero-content {
color: var(--white);
padding: 40px 0;
z-index: 99999;
position: relative;
}
.hero-content h1 {
margin-bottom: 20px;
color: #ffffff;
font-size: 36px;
}
.hero-content h2 {
font-size: 20px;
margin-bottom: 20px;
color: #ffffff;
}
.hero-content p {
margin-bottom: 30px;
max-width: 600px;
color: #ffffff;
font-size: 14px;
}
.hero-carousel .owl-dots {
position: relative;
bottom: 40px;
left: 20px;
display: flex;
gap: 10px;
width: 100%;
max-width: 1280px;
margin: 0 auto;
padding: 0 20px;
}
.hero-carousel .owl-dot {
width: 20px;
height: 2px;
background: var(--gray) !important;
transition: var(--transition);
}
.hero-carousel .owl-dot.active {
background: var(--yellow) !important;
}
.hero-carousel .owl-nav {
display: none;
} .services-carousel {
background: var(--light-gray);
padding: 60px 0;
}
.service-item {
transition: var(--transition);
position: relative;
}
.service-item:after {
content: "";
background: #000000;
padding: 0 30px;
clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
width: 30px;
height: 8px;
position: absolute;
right: 0;
bottom: 0;
}
.service-image {
display: block;
overflow: hidden;
}
.service-image img {
width: 100%;
transition: var(--transition);
aspect-ratio: 2 / 1;
object-fit: cover;
}
.service-item:hover .service-image img {
transform: scale(1.1);
}
.service-title {
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 2px solid var(--gray);
transition: var(--transition);
min-height: 90px;
}
.service-title h3 {
font-size: 20px;
font-weight: 700;
color: var(--black);
transition: var(--transition);
}
.service-item:hover .service-title {
background: var(--primary);
padding-left: 20px;
padding-right: 20px;
border-bottom-color: var(--primary);
}
.service-title img {
width: 24px !important;
height: 24px;
}
.services-carousel .owl-nav {
display: none;
} .media_text {
background: var(--light-gray);
padding: 0 0 60px;
}
.media_text .btn {
margin-top: 20px;
margin-bottom: 0;
}
.media_text .features-list {
flex-direction: column;
}
.media_text .flex_content {
display: flex;
flex-direction: column;
gap: 0px;
}
.media_text .media_box img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.media_text .media_box,
.media_text .media_box img {
min-height: 400px;
}
.media_text .text_box {
padding: 20px 0;
}
.media_text.outside .text_box {
padding: 50px 20px 0;
}
.media_text.outside > .container {
max-width: none;
padding: 0;
}
.media_text .wrapper h2 {
margin-bottom: 20px;
}
.features-list {
display: flex;
gap: 30px;
flex-direction: column;
}
.feature-item {
display: flex;
gap: 20px;
}
.feature-item img {
width: 40px;
height: 40px;
flex-shrink: 0;
} .price {
background: var(--white);
padding: 60px 0;
}
.price-header {
display: flex;
flex-direction: column;
gap: 20px;
padding-bottom: 40px;
border-bottom: 2px solid var(--light-gray);
}
.price.flex-start .price-content {
align-items: flex-start;
}
.price-header-right .btn {
margin-bottom: 0;
}
.price-content {
display: flex;
flex-direction: column;
gap: 40px;
margin-top: 40px;
}
.price-column h3 {
font-size: 20px;
margin-bottom: 20px;
}
.price-column p {
margin-bottom: 30px;
}
.price-list {
display: flex;
flex-direction: column;
transform: unset;
}
.price-item {
display: flex;
align-items: center;
padding: 15px 20px;
background: var(--primary);
width: 100%;
justify-content: space-between;
max-width: 100%;
}
.price-item-right {
white-space: nowrap;
}
.price-item-left h4 {
margin-bottom: 5px;
margin-top: 5px;
}
.price-item-left p {
font-size: 14px;
margin-bottom: 0;
color: #0f0f0f85;
}
.price-item-right p {
font-size: 18px;
font-weight: 700;
color: var(--black);
margin-bottom: 0;
letter-spacing: -0.5px;
}
.price-item-right p span {
font-size: 13px;
font-weight: 500;
color: #0f0f0f85;
}
.additional-list {
display: flex;
flex-direction: column;
gap: 10px;
margin-bottom: 20px;
}
.additional-list li {
font-size: 16px;
font-weight: 700;
color: var(--gray);
line-height: 1.5;
}
.additional-list li strong {
color: var(--black);
}
.additional-note {
font-size: 15px;
font-weight: 400;
color: var(--gray);
margin-bottom: 30px;
}
.price-box {
background: var(--gray);
color: var(--light-gray);
padding: 30px;
}
.price-box h4 {
margin-bottom: 20px;
}
.price-box-content {
display: flex;
flex-direction: column;
gap: 20px;
align-items: center;
}
.price-box-left p {
margin-bottom: 0;
}
.check-list {
display: flex;
flex-direction: column;
gap: 10px;
color: var(--primary);
}
.check-list li {
display: flex;
align-items: center;
gap: 10px;
font-size: 16px;
font-weight: 700;
}
.check-list li img {
width: 20px;
height: 20px;
} .cta {
background: var(--light-gray);
padding: 60px 0 0;
overflow: hidden;
position: relative;
}
.cta-wrapper {
display: flex;
flex-direction: column;
}
.cta-content {
display: flex;
flex-direction: column;
gap: 40px;
margin-bottom: 40px;
}
.cta-column-left h2 {
margin-bottom: 20px;
}
.cta-column-left p {
font-size: 15px;
color: var(--gray);
width: 90%;
}
.cta-title {
color: var(--gray);
font-weight: 600;
font-size: 14px;
margin-bottom: 20px;
display: block;
}
.cta-contact {
display: flex;
flex-direction: column;
gap: 5px;
margin-bottom: 20px;
list-style: none;
transform: unset;
}
.cta-contact li a {
font-size: 16px;
font-weight: 500;
transition: var(--transition);
}
.cta-contact li a:hover {
opacity: 0.6;
}
.cta-separator {
font-size: 14px;
font-weight: 400;
color: var(--gray);
display: block;
margin-bottom: 20px;
}
.cta-image {
width: 100%;
position: absolute;
bottom: 0;
right: -50%;
aspect-ratio: 1 / 1;
max-height: 300px;
}
.cta-image img {
width: 100%;
object-fit: contain;
object-position: left center;
aspect-ratio: 2 / 1;
height: 300px;
} .footer {
background: var(--black);
padding: 60px 0 40px;
}
.footer-content {
display: flex;
flex-direction: column;
gap: 40px;
margin-bottom: 40px;
}
.footer-logo {
height: 50px;
margin-bottom: 20px;
}
.footer-column address p {
font-size: 14px;
font-weight: 400;
color: var(--light-gray);
font-style: normal;
line-height: 1.5;
transition: var(--transition);
opacity: 0.6;
}
.footer-column h5 {
color: var(--light-gray);
margin-bottom: 20px;
}
.footer-contact {
display: flex;
flex-direction: column;
}
.footer-contact li a {
font-size: 14px;
font-weight: 500;
color: var(--light-gray);
transition: var(--transition);
}
.footer-contact li a:hover {
color: var(--primary);
}
.footer-menu, .footer-menu-2 {
display: flex;
flex-direction: column;
gap: 5px;
}
.footer-menu li a, .footer-menu-2 li a {
font-size: 14px;
font-weight: 500;
color: var(--light-gray);
transition: var(--transition);
text-transform: unset;
}
.footer-menu li a:hover,
.footer-menu-2 li a:hover {
color: var(--primary);
}
.footer-bottom {
border-top: 1px solid #333333;
padding-top: 30px;
display: flex;
flex-direction: column;
gap: 20px;
text-align: center;
}
.footer-bottom p {
font-size: 14px;
font-weight: 400;
color: var(--light-gray);
opacity: 0.6;
}
.footer-bottom a {
transition: var(--transition);
}
.footer-bottom a:hover {
color: var(--primary);
}
footer .menu-item {
line-height: normal !important;
height: auto !important;
}
@media (max-width: 560px) {
.cta-image img {
aspect-ratio: 1 / 1;
object-fit: cover;
}
.cta-image {
right: -40%;
}
.cta-column.cta-column-center {
z-index: 999;
}
} @media (min-width: 992px) {
h1 {
font-size: 48px;
}
h2 {
font-size: 36px;
}
h3 {
font-size: 20px;
}
p {
font-size: 16px;
}
.btn {
padding: 0 30px;
}
section ul, section ol {
transform: translateX(20px);
}
.header-wrapper {
display: inline-flex;
align-items: center;
width: 100%;
}
.nav {
position: static;
height: 100px;
background: transparent;
padding: 0;
flex: 1;
display: flex;
justify-content: center;
align-items: center;
width: 60%;
max-width: unset;
}
.menu {
flex-direction: row;
gap: 60px;
}
.menu-item > a {
color: var(--gray);
padding: 0;
}
.menu-item > a:hover {
color: var(--primary);
}
.menu-item > a:hover::after {
filter: brightness(0) saturate(100%) invert(87%) sepia(69%) saturate(518%) hue-rotate(353deg) brightness(98%) contrast(96%);
}
.menu-item-has-children {
position: relative;
}
.menu-item-has-children:hover .sub-menu {
display: block;
}
li.menu-item {
height: 100px;
display: inline-flex;
align-items: center;
line-height: 100px;
}
li.menu-item .menu-item {
height: auto;
display: block;
line-height: 20px;
}
.sub-menu {
position: absolute;
top: 100%;
left: 0;
background: var(--white);
padding: 20px;
min-width: 220px;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
margin-top: 0;
}
.sub-menu .menu-item a {
color: var(--black);
}
.header-logo {
width: 20%;
min-width: 250px;
}
.header:after {
content: "";
position: absolute;
top: 0;
height: 100%;
width: calc((100vw - 1240px) / 2);
background: var(--primary);
z-index: -1;
right: 0;
}
.header-phone {
display: flex;
align-items: center;
gap: 10px;
background: var(--primary);
padding: 0 30px;
clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%);
width: 20%;
min-width: 250px;
height: 100%;
margin-right: -20px;
}
.header-phone img {
width: 20px;
height: 20px;
margin-left: 20px;
}
.header-phone a {
font-size: 16px;
font-weight: 700;
color: var(--black);
display: inline-flex;
gap: 10px;
transition: var(--transition);
}
.header-phone a:hover {
opacity: 0.6;
}
#nav-toggle {
display: none;
}
.hero-slide {
height: 720px;
background-image: url(//boxperto.com.pl/wp-content/themes/boxperto-wp/assets/images/hero-slider-desktop.png);
}
.hero-carousel {
height: 720px;
}
.hero-carousel .owl-nav {
display: block;
}
.hero-carousel .owl-prev, .hero-carousel .owl-next {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 50px;
height: 50px;
background: var(--light-gray) !important;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: var(--transition);
}
.hero-carousel .owl-prev {
left: 40px;
}
.hero-carousel .owl-next {
right: 40px;
}
.hero-carousel .owl-prev:hover, .hero-carousel .owl-next:hover {
background: var(--primary) !important;
}
.hero-content h1 {
font-size: 48px;
}
.hero-content h2 {
font-size: 36px;
}
.hero-carousel .owl-prev span,
.hero-carousel .owl-next span {
background-image: url(//boxperto.com.pl/wp-content/themes/boxperto-wp/assets/images/owl-arrow.svg);
background-position: center;
background-repeat: no-repeat;
width: 24px;
height: 24px;
display: block;
font-size: 0;
}
.hero-carousel .owl-prev span {
transform: scaleX(-1);
}
.hero-content p {
width: 40%;
font-size: 16px;
}
.services-carousel {
padding: 80px 0;
}
.services-carousel .owl-nav {
display: block;
}
.services-carousel .owl-prev,
.services-carousel .owl-next {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 50px;
height: 50px;
background: var(--light-gray);
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: var(--transition);
}
.services-carousel .owl-prev {
left: -70px;
background: #fff !important;
}
.services-carousel .owl-next {
right: -70px;
background: #fff !important;
}
.services-carousel .owl-prev:hover,
.services-carousel .owl-next:hover {
background: var(--primary);
}
.services-carousel .owl-prev span, .services-carousel .owl-next span {
background-image: url(//boxperto.com.pl/wp-content/themes/boxperto-wp/assets/images/owl-arrow.svg);
background-position: center;
background-repeat: no-repeat;
width: 24px;
height: 24px;
display: block;
font-size: 0;
transform: scaleX(-1);
}
.services-carousel .owl-next span {
transform: scaleX(1);
}
.media_text {
padding: 0;
}
.media_text .flex_content {
flex-direction: row;
align-items: stretch;
}
.media_text.left .text_box {
padding-left: 20px;
}
.media_text .media_box,
.media_text .text_box {
flex: 1 1 50%;
display: flex;
align-items: center;
}
.media_text.left .flex_content {
flex-direction: row;
gap: 0;
}
.media_text.right .flex_content {
flex-direction: row-reverse;
}
.media_text.outside .wrapper {
max-width: calc((1280px / 2) - 40px);
}
.media_text.right.outside .wrapper {
margin-left: 20px;
margin-right: 80px;
padding: 60px 0;
}
.media_text.outside .text_box {
padding: 0px;
}
.media_text.left.outside .wrapper {
margin-left: 80px;
padding: 60px 0;
}
.price {
padding: 80px 0;
}
.price-header {
flex-direction: row;
justify-content: space-between;
align-items: flex-end;
}
.price-content {
flex-direction: row;
gap: 60px;
}
.price-column-left {
width: 40%;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.price-column-right {
width: 60%;
}
.price-box-content {
flex-direction: row;
gap: 60px;
}
.price-box-left {
flex: 1;
}
.price-box-right {
flex: 1;
}
.cta {
padding: 120px 0;
}
.cta-wrapper {
flex-direction: row;
align-items: stretch;
position: relative;
}
.cta-content {
flex-direction: row;
width: 70%;
margin-bottom: 0;
align-items: center;
}
.cta-column-left {
width: 60%;
}
.cta-column-center {
width: 40%;
}
.cta-image {
width: 40%;
margin-right: 0;
top: 0;
right: 0;
height: 100%;
max-height: 100%;
}
.cta-image img {
width: 100%;
object-fit: cover;
aspect-ratio: unset;
object-position: left;
height: 100%;
}
.feature-item {
max-width: 80%;
}
.features-list {
flex-direction: row;
}
.footer {
padding: 80px 0 30px;
}
.footer-content {
flex-direction: row;
gap: 60px;
margin-bottom: 80px;
}
.footer-column-1 {
width: 20%;
}
.footer-column-2 {
width: 40%;
}
.footer-column-3 {
width: 20%;
}
.footer-column-4 {
width: 20%;
}
.footer-bottom {
flex-direction: row;
justify-content: space-between;
text-align: left;
}
}
@media (min-width: 1280px) {
.media_text.right.outside .wrapper {
margin-left: calc((100vw - 1280px) / 2 + 20px);
}
}.margin-top {
margin-top: 60px;
}
.margin-bottom {
margin-bottom: 60px;
} .page_title_block {
background: #ffffff;
color: var(--black) !important;
padding: 60px 0;
margin-top: 100px;
background-size: cover;
background-position: center;
}
.page_title_block h1 {
color: #000000;
margin-bottom: 0;
}
.page_title_block span {
color: var(--gray);
font-size: 14px;
font-weight: 600;
text-transform: uppercase;
margin-bottom: 10px;
}
.breadcrumbs {
display: flex;
align-items: center;
gap: 10px;
margin-top: 20px;
font-size: 14px;
}
.breadcrumbs a {
color: var(--white);
transition: var(--transition);
}
.breadcrumbs a:hover {
color: var(--primary);
}
.breadcrumbs span {
color: var(--gray);
} .features_block {
background: var(--primary);
padding: 60px 0;
} .contact_form_block {
background: var(--light-gray);
padding: 60px 0;
}
.contact_form_wrapper {
display: flex;
flex-direction: column;
gap: 40px;
} .contact_form_block .wpcf7-form {
display: flex;
flex-direction: column;
gap: 20px;
position: relative;
}
.wpcf7-spinner {
position: absolute!important;
left: 0!important;
}
.contact_form_block .form-row {
display: flex;
flex-direction: column;
gap: 20px;
}
.contact_form_block .form-col-left, .contact_form_block .form-col-right{
display: flex;
flex-direction: column;
justify-content: space-evenly;
}
.contact_form_block label {
display: block;
font-size: 13px;
font-weight: 300;
letter-spacing: 0.5px;
color: var(--black);
line-height: unset;
opacity: 0.6;
}
.contact_form_right br {
display: none;
}
.contact_form_block input[type="text"],
.contact_form_block input[type="email"],
.contact_form_block textarea {
width: 100%;
padding: 12px 16px;
border: 1px solid #ddd;
background: #fff;
font-size: 14px;
font-family: inherit;
color: var(--black);
transition: var(--transition);
}
.contact_form_block input[type="text"]:focus,
.contact_form_block input[type="email"]:focus,
.contact_form_block textarea:focus {
outline: none;
border-color: var(--primary);
}
.contact_form_block textarea {
min-height: 150px;
resize: vertical;
} .map_block {
padding: 0;
background: var(--black);
}
.map_block iframe {
width: 100%;
height: 400px;
border: 0;
} .text_block {
background: var(--white);
padding: 60px 0;
border-top: 2px solid var(--light-gray);
}
.text_block_wrapper.narrow {
max-width: 900px;
margin: 0 auto;
} .icon_text_columns {
background: var(--light-gray);
padding: 60px 0;
}
.icon_text_columns_wrapper {
display: flex;
flex-direction: column;
gap: 40px;
}
.icon_text_column {
display: flex;
flex-direction: column;
gap: 20px;
align-items: center;
text-align: center;
}
.icon_text_column .column_icon {
width: 60px;
height: 60px;
} .gallery_block {
background: var(--white);
padding: 60px 0 0;
}
.gallery_content {
margin-bottom: 40px;
}
.gallery-slider .gallery-item {
cursor: pointer;
}
.gallery-slider .gallery-item img {
width: 100%;
height: auto;
display: block;
} @media (min-width: 992px) {
.margin-top {
margin-top: 80px;
}
.margin-bottom {
margin-bottom: 80px;
}
.page_title_block {
padding: 80px 0;
}
.features_block {
padding: 80px 0;
}
.contact_form_block {
padding: 80px 0;
}
.contact_form_wrapper {
flex-direction: row;
gap: 60px;
}
.contact_form_block .form-row {
flex-direction: row;
gap: 20px;
align-items: stretch;
width: calc(100% - 20px);
}
.contact_form_block .form-col-left {
width: 40%;
flex-shrink: 0;
}
.contact_form_block .form-col-right {
width: 60%;
flex-shrink: 0;
}
.contact_form_block .form-col-right {
height: 100%;
display: flex;
flex-direction: column;
margin: 15px 0 10px;
}
.contact_form_block .form-col-right textarea {
flex: 1;
height: 100%;
min-height: auto;
}
.contact_form_block .wpcf7-form > p {
text-align: right;
}
.map_block iframe {
height: 450px;
}
.text_block {
padding: 80px 0;
}
.icon_text_columns {
padding: 80px 0;
}
.icon_text_columns_wrapper {
flex-direction: row;
gap: 60px;
}
.icon_text_column {
flex: 1;
}
.gallery_block {
padding: 80px 0 0;
}
.contact_form_left {
width: 40%;
}
.contact_form_right {
width: 60%;
} .faq-wrapper {
max-width: 900px;
margin: 0 auto;
}
.faq-question h3 {
font-size: 20px;
}
} .faq-section {
background: var(--white);
padding: 60px 0;
}
.faq-header {
text-align: center;
margin-bottom: 40px;
}
.faq-title {
margin-bottom: 20px;
}
.faq-description {
color: var(--gray);
max-width: 800px;
margin: 0 auto;
}
.faq-wrapper {
display: flex;
flex-direction: column;
gap: 15px;
}
.faq-item {
border: 1px solid #e0e0e0;
background: #fff;
overflow: hidden;
transition: all 0.3s ease;
}
.faq-item:hover {
border-color: var(--primary);
}
.faq-question {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 25px;
cursor: pointer;
user-select: none;
transition: background-color 0.3s ease;
}
.faq-question:hover {
background-color: #f8f8f8;
}
.faq-question h3 {
margin: 0;
font-size: 18px;
font-weight: 600;
color: var(--black);
line-height: 1.4;
flex: 1;
padding-right: 20px;
}
.faq-icon {
flex-shrink: 0;
width: 24px;
height: 24px;
display: flex;
align-items: center;
justify-content: center;
transition: transform 0.3s ease;
color: var(--gray);
}
.faq-item.active .faq-icon {
transform: rotate(180deg);
}
.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s ease, padding 0.4s ease;
padding: 0 25px 0;
}
.faq-item.active .faq-answer {
max-height: 200px;
padding: 0 25px 20px;
}
.faq-answer-content {
color: var(--gray);
line-height: 1.6;
}
.faq-answer-content p:last-child {
margin-bottom: 0;
}  .table-wrapper {
width: 100%;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
margin: 20px 0;
} table {
width: 100%;
border-collapse: collapse;
background: #fff;
font-size: 14px;
line-height: 1.6;
}
table th {
background: var(--primary);
color: var(--black);
font-weight: 600;
text-align: left;
padding: 12px 16px;
border: 1px solid #e0e0e0 !important;
}
thead tr th {
border: 1px solid var(--primary) !important;
}
table td {
padding: 12px 16px;
border: 1px solid #ddd;
color: var(--black);
border: 1px solid #e0e0e0 !important;
}
table tbody tr:nth-child(even) {
background: #f9f9f9;
}
table tbody tr:hover {
background: #f5f5f5;
} @media (max-width: 991px) {
.table-wrapper {
margin: 15px -15px;
padding: 0 15px;
}
table {
min-width: 600px;
font-size: 13px;
}
table th,
table td {
padding: 10px 12px;
white-space: nowrap;
}
} @media (min-width: 992px) {
.table-wrapper {
overflow-x: visible;
}
table {
font-size: 15px;
}
table th,
table td {
padding: 14px 18px;
}
}  .cta-2 {
position: relative;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
padding: 60px 0;
overflow: hidden;
}
.cta-2-overlay, .hero-slide-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--black);
z-index: 1;
}
.cta-2 .container {
position: relative;
z-index: 2;
}
.cta-2-content {
display: flex;
flex-direction: column;
gap: 40px;
}
.cta-2-left {
display: flex;
flex-direction: column;
gap: 20px;
}
.cta-2-subtitle {
font-size: 14px;
font-weight: 600;
text-transform: uppercase;
color: var(--primary);
letter-spacing: 0.5px;
}
.cta-2-subtitle:before {
border-right: 2px solid var(--primary);
content: "";
margin-right: 6px;
height: 11px;
display: inline-flex;
opacity: 0.7;
}
.cta-2-title {
font-size: 28px;
font-weight: 700;
color: #fff;
line-height: 1.2;
margin: 0;
}
.cta-2-description {
font-size: 16px;
color: rgba(255, 255, 255, 0.9);
line-height: 1.6;
margin: 0;
}
.cta-2-features {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 12px;
}
.cta-2-features li {
font-size: 15px;
color: rgba(255, 255, 255, 0.9);
padding-left: 25px;
position: relative;
margin-bottom: 0;
}
.cta-2-features li:before {
content: '✓';
position: absolute;
left: 0;
color: var(--primary);
font-weight: 700;
font-size: 18px;
}
.cta-2-right {
display: flex;
flex-direction: column;
gap: 20px;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
padding: 30px;
border: 1px solid rgba(255, 255, 255, 0.2);
}
.cta-2-contact-title {
font-size: 14px;
font-weight: 600;
text-transform: uppercase;
color: var(--primary);
letter-spacing: 0.5px;
}
.cta-2-contact {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 10px;
}
.cta-2-contact li a {
font-size: 20px;
font-weight: 700;
color: #fff;
transition: var(--transition);
}
.cta-2-contact li a:hover {
color: var(--primary);
}
.cta-2-right .btn {
width: 100%;
text-align: center;
justify-content: center;
} @media (min-width: 992px) {
.cta-2 {
padding: 100px 0;
}
.cta-2-content {
flex-direction: row;
gap: 80px;
align-items: center;
}
.cta-2-left {
flex: 1;
gap: 25px;
}
.cta-2-title {
font-size: 42px;
}
.cta-2-description {
font-size: 18px;
}
.cta-2-features li {
font-size: 16px;
}
.cta-2-right {
width: 400px;
flex-shrink: 0;
padding: 40px;
}
.cta-2-contact li a {
font-size: 24px;
}
.cta-2-right .btn {
width: auto;
}
}