:root {
--white: #ffffff;
--black: #000000;
--navy: #111B2A;
--red: #ED1C24;
--off-white: #F4F4F4;
--silver: #E8E9EA;
--blue: #015DCA;
--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
} * {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: "greycliff-cf", "Helvetica Neue", Arial, sans-serif;
font-size: 16px;
line-height: 1.6;
color: var(--chocolate);
background-color: var(--white);
overflow-x: hidden;
font-weight: 300; }
img {
max-width: 100%;
height: auto;
display: block;
}
a {
text-decoration: none;
color: inherit;
transition: var(--transition);
}
a:hover {
color: var(--red);
}
ul, ol {
list-style: none;
font-size: 14px;
color: var(--navy);
} h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "eurostile", "Verdana", sans-serif;
color: var(--navy);
}
h1 {
font-size: 30px;
line-height: 1.1;
text-transform: uppercase;
position: relative;
transform: translateX(20px);
padding-right: 20px;
}
h2 {
font-size: 30px;
line-height: 1.1;
position: relative;
transform: translateX(20px);
padding-right: 20px;
margin-bottom: 20px;
}
h2:before, .hero_carousel h1:before {
content: "";
position: absolute;
left: -20px;
height: calc(100% - 17px);
top: 10px;
width: 3px;
background: var(--red);
}
h3 {
font-size: 20px;
line-height: 1.2;
}
h4 {
font-size: 16px;
line-height: 1.3;
}
p strong em, p em strong {
font-size: 15px;
text-transform: uppercase;
letter-spacing: 0.5px;
font-weight: 500;
color: var(--red);
font-family: "eurostile", "Verdana", sans-serif;
font-style: normal;
display: block;
line-height: 18px;
transform: translateX(0px);
}
section hr {
width: 60px;
height: 2px;
border: none;
display: block;
background: var(--red);
transform: translateY(-10px);
}
p {
font-size: 14px;
color: var(--navy);
line-height: 1.5;
}
strong {
font-weight: 700;
}
.text-content.text-editor li {
text-indent: -1em;
}
main ul, main ol {
list-style: inside;
}
main ul li, main ol li {
text-indent: -1em;
line-height: 1.4;
margin-bottom: 5px;
max-width: 80%;
}
main ul li::marker, main ol li::marker {
color: var(--red);
font-size: 10px;
} .container {
width: 100%;
max-width: 1280px;
margin: 0 auto;
padding: 0 20px;
} .btn {
background: var(--red);
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0 25px;
margin-bottom: 20px;
transition: var(--transition);
border-radius: 30px;
color: white;
font-family: "eurostile", "Verdana", sans-serif;
text-transform: uppercase;
font-weight: 500;
letter-spacing: 0.5px;
height: 50px;
line-height: 50px;
margin-top: 20px;
cursor: pointer;
border: none;
font-size: 15px;
}
.btn.arrow:after {
background-image: url(//rgbpro.pl/wp-content/themes/rgbpro/images/arrow.svg);
content: "";
background-position: 100% 50%;
background-repeat: no-repeat;
width: 24px;
height: 24px;
margin-left: 10px;
transition: var(--transition);
}
.btn.arrow i{
margin-left: 10px;
}
.btn:hover {
color: var(--white);
transform: translateY(-5px);
-webkit-box-shadow: 0px 5px 10px 0px rgba(255 37 46 / 70%);
-moz-box-shadow: 0px 5px 10px 0px rgba(255 37 46 / 70%);
box-shadow: 0px 5px 10px 0px rgba(255 37 46 / 70%);
}
.btn:hover:after {
transform: translateX(5px);
} .header {
position: fixed;
top: 0;
z-index: 1000;
transition: var(--transition);
width: 100%;
}
.header.active {
background: #ffffffe0;
backdrop-filter: blur(40px);
border-bottom: 1px solid #e5e5e5;
}
.header.active .menu a {
color: #ffffff;
}
.header.active .menu a:hover {
color: #ffffff85;
}
.header-top {
color: #000000;
font-size: 12px;
background: #ebebeb;
height: 40px;
line-height: 40px;
}
.header-main {
padding: 30px 0;
position: relative;
max-height: 90px;
display: flex;
align-items: center;
}
.header-main .container {
padding: 0 20px;
}
.header-main-content {
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
position: relative;
}
.header-main-content .logo {
transition: var(--transition);
}
.logo:hover,
.footer-logo img:hover {
opacity: 0.7;
}
.logo {
position: relative;
}
.logo a {
display: block;
position: relative;
}
.logo img {
height: 60px;
width: auto;
transition: opacity 0.3s ease;
}
.logo .logo-default {
opacity: 1;
}
.logo .logo-scroll {
position: absolute;
top: 0;
left: 0;
opacity: 0;
}
.header.active .logo .logo-default {
opacity: 0;
}
.header.active .logo .logo-scroll {
opacity: 1;
} .nav {
position: fixed;
background: var(--blue);
z-index: 999;
overflow-y: auto;
transition: transform 0.3s ease;
width: 300px;
max-width: 100%;
}
.nav.mobile-left {
top: 0;
left: 0;
height: 100vh;
transform: translateX(-100%);
}
.nav.mobile-left.active {
transform: translateX(0);
}
.nav.mobile-right {
top: 0;
right: 0;
max-width: 100%;
height: 100vh;
transform: translateX(100%);
width: 350px;
}
.nav.mobile-right.active {
transform: translateX(0);
}
.nav.mobile-top {
top: 0;
left: 0;
width: 100%;
transform: translateY(-100%);
}
.nav.mobile-top.active {
transform: translateY(0);
} .menu {
list-style: none;
margin: 0;
padding: 20px;
margin-top: 90px;
}
.menu a:hover {
color: #ffffff85;
}
.menu li {
position: relative;
}
.menu a {
display: block;
padding: 13px 15px;
color: #ffffff;
font-size: 18px;
font-weight: 500;
text-transform: uppercase;
font-family: "eurostile", "Verdana", sans-serif;
letter-spacing: 1px;
}
.menu .sub-menu {
list-style: none;
padding: 0;
margin: 0;
background: var(--blue);
max-height: 0;
overflow: hidden;
transition: max-height 0.4s ease;
}
.menu .sub-menu a {
padding: 10px 15px 10px 30px;
font-size: 15px;
line-height: 1.4;
text-transform: none;
}
.menu .sub-menu .sub-menu a {
padding-left: 45px;
}
.menu .sub-menu .sub-menu .sub-menu a {
padding-left: 60px;
}
.menu-item-has-children>a {
position: relative;
padding-right: 40px;
}
.menu-item-has-children>a::after {
content: '\f107';
font-family: 'Font Awesome 6 Free';
font-weight: 900;
position: absolute;
right: 15px;
top: 50%;
transform: translateY(-50%);
transition: transform 0.3s;
}
.menu-item-has-children.active>a::after {
transform: translateY(-50%) rotate(180deg);
}
.menu-item-has-children.active>.sub-menu {
max-height: 2000px;
}
.header-phone a {
color: var(--red);
font-family: "eurostile", "Verdana", sans-serif;
letter-spacing: 0.5px;
font-weight: 500;
}
.header-phone {
position: absolute;
right: 80px;
}
.header-phone a:hover {
opacity: 0.5;
}
.header-actions {
display: none;
} #nav-toggle {
position: relative;
height: 50px;
width: 50px;
cursor: pointer;
z-index: 1001;
}
#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
cursor: pointer;
border-radius: 1px;
height: 2px;
width: 35px;
background: var(--white);
position: absolute;
left: 0;
top: 50%;
display: block;
content: '';
transition: all 0.3s ease-in-out;
}
.header.active #nav-toggle span, .header.active #nav-toggle span:before, .header.active #nav-toggle span:after {
background: #000;
}
.header.active #nav-toggle.active span:before, .header.active #nav-toggle.active span:after {
background: #fff;
}
.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);
} .play_button {
width: 80px;
height: 80px;
background: #ffffff0f;
border-radius: 50px;
padding: 15px;
display: flex;
backdrop-filter: blur(5px);
align-items: center;
justify-content: center;
position: relative;
transition: var(--transition);
-webkit-box-shadow: 0px 0px 105px 45px rgb(255 255 255 / 25%);
-moz-box-shadow: 0px 0px 105px 45px rgba(45,255,196,0.9);
box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 25%);
}
.play_button:hover {
backdrop-filter: blur(10px);
scale: 1.1;
background: #00000026;
-webkit-box-shadow: 0px 0px 105px 45px rgba(255, 255, 255, 0);
-moz-box-shadow: 0px 0px 105px 45px rgba(45,255,196,0);
box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0%);
}
.hero-video-link {
position: relative;
}
.hero-video-link:after {
content: "";
background-image: url(//rgbpro.pl/wp-content/themes/rgbpro/images/color.svg);
width: 200%;
height: 200%;
position: absolute;
z-index: -99999;
filter: blur(50px);
border-radius: 100%;
top: -50%;
opacity: 0.8;
animation: wiggle 8s ease-in-out infinite;
transition: all 4s ease-in-out;
}
.hero-video-link:hover:after {
scale: 1.5;
}
.hero-video-link p {
font-family: "eurostile", "Verdana", sans-serif;
font-size: 14px;
line-height: 1.4;
letter-spacing: 1px;
}
@keyframes wiggle {
0% {
filter: blur(45px);
border-radius: 90%;
top: -55%;
opacity: 0.6;
}
25% {
filter: blur(55px);
border-radius: 95%;
top: -30%;
opacity: 0.9;
}
50% {
filter: blur(48px);
border-radius: 85%;
top: -45%;
opacity: 0.7;
}
75% {
filter: blur(52px);
border-radius: 100%;
top: -25%;
opacity: 1;
}
100% {
filter: blur(45px);
border-radius: 90%;
top: -55%;
opacity: 0.6;
}
}
.play_button img {
height: 40px;
transform: translateX(2px);
} table {
margin: 50px auto;
width: calc(100% - 40px);
max-width: max-content;
color: var(--navy);
position: relative;
display: block;
overflow-x: auto;
border: none !important;
}
table td, table th {
padding: 5px 10px;
border: 1px solid #abb8c3 !important;
} footer {
background: var(--navy);
padding: 60px 0 30px;
color: var(--white);
position: relative;
overflow: hidden;
}
footer h6 {
opacity: 0.5;
margin-bottom: 20px;
color: white;
transform: unset;
}
footer ul {
line-height: 1.8;
}
footer a, footer p {
color: #fff;
}
footer a {
font-family: "eurostile", "Verdana", sans-serif;
text-transform: uppercase;
font-size: 15px;
letter-spacing: 0.5px;
font-weight: 400;
display: inline-block;
}
.footer-logo {
display: block;
margin-bottom: 30px;
}
.footer-logo img {
transition: var(--transition);
}
.footer-bottom {
margin-top: 60px;
z-index: 999;
position: relative;
}
.footer-info {
font-family: "eurostile", "Verdana", sans-serif;
letter-spacing: 0.5px;
margin-bottom: 20px;
}
.footer-info strong{
font-weight: 500;
}
.footer-email {
margin-top: 10px;
}
.footer-email li a {
text-transform: unset;
font-weight: 100;
color: white;
filter: contrast(0.5);
}
.footer-bottom p {
opacity: 0.5;
}
.footer-social {
display: flex;
gap: 15px;
}
.footer-social a i {
font-size: 20px;
}
footer .flex_content {
z-index: 999;
position: relative;
}
footer .flex_content a:hover {
color: var(--red);
filter: contrast(1);
}
.footer-bottom a:hover {
color: white !important;
opacity: 0.5;
}
.footer_menus .flex-item a:hover {
transform: translateX(5px);
}
footer .container {
padding: 0 20px;
}
.aurora {
background-image: url(//rgbpro.pl/wp-content/themes/rgbpro/images/color.svg);
background-repeat: repeat-x;
width: 100%;
height: 10%;
position: absolute;
filter: blur(50px);
border-radius: 250%;
left: 0%;
background-position: top left;
background-size: contain;
}
footer .flex-item span {
font-size: 14px;
text-transform: uppercase;
font-weight: 500;
font-family: "eurostile", "Verdana", sans-serif;
letter-spacing: 1px;
opacity: 0.5;
margin-bottom: 10px;
display: block;
} @media (min-width: 992px) {
.container {
padding: 0 40px;
}
p strong em, p em strong {
transform: translateX(-20px);
}
h1, h2 {
transform: translateX(0px);
}
#nav-toggle {
display: none;
}
.nav {
position: static;
transform: none !important;
background: transparent;
width: auto;
height: auto;
overflow: visible;
}
.menu {
display: flex;
flex-direction: row;
padding: 0;
margin-top: 0;
gap: 30px;
}
.menu .sub-menu {
position: absolute;
top: 100%;
left: 0;
min-width: 220px;
background: var(--blue);
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
max-height: none;
overflow: visible;
transition: all 0.3s ease;
display: none;
border-radius: 0px 10px 10px 10px;
}
.header.active .menu .sub-menu a {
color: #fff;
}
.menu .sub-menu a {
padding: 10px 15px;
}
.header.active .sub-menu a:hover {
color: white !important;
}
.menu .sub-menu .sub-menu {
top: 0;
left: 100%;
}
.menu-item-has-children:hover>.sub-menu {
display: block;
}
.menu-item-has-children>a::after {
content: '\f107';
}
.menu .sub-menu .menu-item-has-children>a::after {
content: '\f105';
}
.nav.mobile-left,
.nav.mobile-right,
.nav.mobile-top {
width: initial;
height: initial;
transform: translateX(0);
}
.menu .sub-menu a:hover {
color: white;
background: var(--red);
border-radius: 0 10px 10px 10px;
}
h1 {
font-size: 48px;
}
h2 {
font-size: 36px;
}
.menu a {
font-size: 16px;
padding-top: 33px;
padding-bottom: 33px;
}
.header.active .menu a {
color: var(--navy);
}
.menu a:hover {
color: var(--red);
}
.header.active .menu a:hover {
color: var(--red);
}
}
@media (min-width: 1320px) {
.container {
padding: 0 20px;
}
} .flex_content {
display: flex;
flex-direction: column;
gap: 40px;
}
.flex-item {
flex: 1 1 100%;
} .flex_content.v_scroll {
flex-direction: row;
flex-wrap: nowrap;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
.flex_content.v_scroll .flex-item {
flex: 0 0 80%;
}
.flex_content[class*='max_'].v_scroll .flex-item {
flex: 0 0 calc(100% / var(--items));
}
.flex_content.max_2_items.v_scroll .flex-item {
--items: 2.5;
}
.flex_content.max_3_items.v_scroll .flex-item {
--items: 3.5;
}
.flex_content.max_4_items.v_scroll .flex-item {
--items: 4.5;
}
.flex_content.max_5_items.v_scroll .flex-item {
--items: 5.5;
}
.flex_content.max_6_items.v_scroll .flex-item {
--items: 6.5;
}
.flex_content.max_7_items.v_scroll .flex-item {
--items: 7.5;
}
.flex_content.max_8_items.v_scroll .flex-item {
--items: 8.5;
}
.flex_content.max_9_items.v_scroll .flex-item {
--items: 9.5;
}
.flex_content.max_10_items.v_scroll .flex-item {
--items: 10.5;
}
@media (min-width: 992px) { .flex_content {
flex-direction: row;
flex-wrap: nowrap;
gap: 60px;
}
.flex-item {
flex: 1 1 auto;
}
.flex_content[class*='max_'] {
flex-wrap: wrap;
}
.flex_content[class*='max_'] .flex-item {
flex: 1 1 0;
max-width: calc((100% - (var(--max-items) - 1) * 20px) / var(--max-items));
}
.flex_content[class*='max_'].v_scroll .flex-item {
flex: 0 0 100%;
}
.flex_content.max_2_items {
--max-items: 2;
}
.flex_content.max_3_items {
--max-items: 3;
}
.flex_content.max_4_items {
--max-items: 4;
}
.flex_content.max_5_items {
--max-items: 5;
}
.flex_content.max_6_items {
--max-items: 6;
}
.flex_content.max_7_items {
--max-items: 7;
}
.flex_content.max_8_items {
--max-items: 8;
}
.flex_content.max_9_items {
--max-items: 9;
}
.flex_content.max_10_items {
--max-items: 10;
}
} .margin-top {
margin-top: 50px;
}
.margin-bottom {
margin-bottom: 50px;
}
@media (min-width: 992px) {
.margin-top {
margin-top: 80px;
}
.margin-bottom {
margin-bottom: 80px;
}
.header-phone {
position: relative;
right: 0px;
}
}
@media (max-width: 480px) {
.header-phone {
display: none;
}
}.hero_carousel .item {
color: white;
min-height: 100dvh;
}
.hero_carousel h1 {
white-space: normal;
color: white;
}
.hero_carousel p {
color: white;
}
.hero_carousel {
background: var(--navy);
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
position: relative;
min-height: 100vh;
}
.hero_carousel .container {
position: relative;
z-index: 2;
}
.hero_carousel .owl-carousel .item {
min-height: 400px;
display: flex;
align-items: center;
}
.slide-content {
height: 100vh;
display: flex;
align-items: center;
flex-direction: row;
padding-top: 90px;
}
.hero_carousel .slide-content .wrapper .flex_content {
align-items: center;
flex-direction: row;
}
.hero-video-link {
max-width: 200px;
display: inline-flex;
flex-direction: column;
align-items: center;
text-align: center;
gap: 10px;
}
.hero_carousel .flex-item.media_box {
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 90px;
margin-left: 15%;
display: none;
}
.hero-background-video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 0;
}
video.hero-background-video {
position: absolute;
width: 100%;
height: 100vh;
object-fit: cover;
opacity: 0;
filter: brightness(0.5);
transition: opacity 1s ease-in-out;
}
video.hero-background-video.loaded {
opacity: 0.7;
}
.owl-dots {
position: absolute;
bottom: 30px;
right: 40px;
}
button.owl-dot span {
background: var(--navy) !important;
border-radius: 0 !important;
width: 7px !important;
height: 24px !important;
rotate: 45deg;
}
button.owl-dot.active span {
background: var(--red) !important;
}
@media (min-width: 992px) {
.hero_carousel h1 {
white-space: nowrap;
}   
}.flex_content.v_scroll::-webkit-scrollbar {
height: 3px; }
.flex_content.v_scroll::-webkit-scrollbar-track {
background: #eee;
}
.flex_content.v_scroll::-webkit-scrollbar-thumb {
background-color: var(--red);
}
.flex_content.v_scroll::-webkit-scrollbar-thumb:hover {
background-color: var(--red);
} .column_block.features {
background-color: var(--off-white);
padding: 50px 0;
}
.column_block.features .flex_content {
display: grid;
grid-template-columns: repeat(1, 1fr);
gap: 20px;
}
.column_block.features .flex-item:not(:first-child) .flex-item-content p {
font-weight: 500;
color: var(--navy);
font-size: 14px;
line-height: 1.5;
font-family: "greycliff-cf", "Helvetica Neue", Arial, sans-serif;
}
.column_block.features .flex-item:not(:first-child) .flex-item-content {
margin-top: 20px;
}
.column_block.features .flex-item:first-child p {
margin-top: 15px;
line-height: 1.5;
}
.column_block.features .flex-item:first-child {
margin-right: 10%;
}
.column_block.features .flex_content .flex-item:first-child {
grid-column: 1 / -1;
width: 100%;
}
.column_block.features h4 {
font-size: 18px;
margin-bottom: 10px;
} .column_block.offer .flex-item-content {
background: var(--silver);
padding: 15px;
height: 100%;
display: flex;
align-items: center;
min-height: 80px;
justify-content: space-between;
transition: var(--transition);
border-radius: 0 0 30px 10px;
}
.column_block.offer .flex-item {
overflow: hidden;
display: flex;
flex-direction: column;
justify-content: space-between;
padding-top: 10px;
min-width: 240px;
margin-bottom: 20px;
}
.column_block.offer .flex-item-content p {
font-family: eurostile, Verdana, sans-serif;
text-transform: uppercase;
letter-spacing: 0.5px;
font-size: 16px;
font-weight: 500;
line-height: 1.2;
transition: var(--transition);
}
.column_block .flex-link:hover .flex-item-content p {
color: white;
}
.column_block img {
margin-bottom: 20px;
border-radius: 10px;
margin-top: 40px;
}
.column_block h3 {
margin-bottom: 20px;
}
.column_block.offer .chevron {
width: 40px;
height: 40px;
border: 2px solid var(--navy);
border-radius: 50px;
min-width: 40px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.column_block.offer .chevron img {
animation-fill-mode: forwards;
margin-top: 0;
}
.column_block.offer .flex-link:hover .flex-item-content {
background: var(--red);
color: var(--white);
}
.column_block.offer .flex-link:hover {
transform: translateY(-10px);
}
.column_block.offer .flex-item img {
border-radius: 10px 10px 0 0;
margin-bottom: 0;
margin-top: 0;
}
.column_block.offer .flex-link:hover .chevron img {
animation: chevronSlide 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.column_block.offer .chevron img.animating {
animation: chevronSlide 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.column_block.offer .flex_content {
gap: 20px !important;
}
.column_block.img_margin img {
margin-top: 0;
}
@keyframes chevronSlide {
0% {
transform: translateX(0);
}
50% {
transform: translateX(25px);
}
51% {
transform: translateX(-25px);
}
100% {
transform: translateX(0);
}
}
.column_block.offer .container {
padding: 0 0px 0 20px;
}
.column_block.offer .flex_content.v_scroll .flex-item:last-child {
margin-right: 20px;
}
@media (min-width: 992px) {
.column_block.offer .flex-item {
min-width: unset;
margin-bottom: 0;
}
.column_block.offer .container {
padding: 0 20px;
}
.column_block.offer .flex_content.v_scroll .flex-item:last-child {
margin-right: 0px;
}
.column_block.offer .chevron {
width: 50px;
height: 50px;
min-width: 50px;
}
.column_block.offer .flex-item-content {
padding: 20px;
min-height: 90px;
}
.column_block.offer .flex-item-content p {
font-size: 20px;
} .column_block.features .flex_content {
display: inline-flex;
grid-template-columns: repeat(2, 1fr);
align-items: flex-start;
}
}.media_text {
background-color: var(--silver);
position: relative;
overflow: hidden;
}
.media_text::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: var(--bg-image);
background-repeat: no-repeat;
background-size: cover;
background-position: 50% 50%;
z-index: 0;
}
.media_text > .container {
position: relative;
z-index: 1;
}
.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 img, .media_text .media_box video {
margin-left: 20px;
width: calc(100% - 40px);
}
.media_text .text_box {
padding: 20px 0 0;
}
.media_text .text_box .btn {
margin-bottom: 0 !important;
}
.media_text.outside .text_box {
padding: 20px;
}
.media_text.outside > .container {
max-width: none;
padding: 0;
}
.media_text.cta {
padding: 50px 0;
}
.media_text.cta .media_box img {
aspect-ratio: 16 / 9;
min-height: unset !important;
height: unset !important;
border-radius: 10px;
}
.media_text.cta::before {
background-position: 50% 100% !important;
opacity: 0.5;
}
.media_text.about {
padding: 50px 0;
}
.media_text.about .media_box img {
border-radius: 10px;
}
.media_text video {
width: 100%;
border-radius: 10px;
}
.media_text .media_box {
width: calc(100% + 40px);
transform: translateX(-20px);
}
@media (min-width: 992px) {
.media_text .media_box img, .media_text .media_box video {
margin-left: 0;
width: 100%;
}
.media_text .flex_content {
flex-direction: row;
align-items: stretch;
gap: 5%;
}
.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;
} .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: 40px;
}
.media_text.outside .text_box {
padding: 0px;
}
.media_text.left.outside .wrapper {
margin-left: 20px;
}
.media_text.about {
padding: 80px 0;
} 
.media_text.cta {
padding: 90px 0;
}
.media_text .media_box {
width: 100%;
transform: translateX(0px);
}
}
@media (min-width: 1280px) {
.media_text.right.outside .wrapper {
margin-left: calc((100vw - 1280px) / 2 + 20px);
}
}.gallery.owl-carousel {
position: relative;
}
.gallery .owl-item a {
position: relative;
overflow: hidden;
aspect-ratio: 1 / 1;
display: block;
}
.gallery .owl-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
scale: 1.02;
} .gallery .owl-item a::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0);
transition: all 0.3s ease;
}
.gallery .owl-item:hover a:before {
opacity: 1;
}
.gallery .owl-item:hover img {
transform: scale(1.05);
}
.gallery .owl-item:hover a::after {
background-color: rgba(0, 0, 0, 0.2);
}
.owl-dot span {
background: #d1d1d1 !important;
}
.owl-dot.active span {
background: #333 !important;
}
.gallery .owl-nav {
position: absolute;
top: calc(50% - 50px);
transform: translateY(-50%);
width: 100%;
left: 0;
pointer-events: none;
}
.gallery .owl-next, .gallery .owl-prev {
width: 50px !important;
height: 50px !important;
background: #d3d3d3 !important;
position: absolute !important;
pointer-events: all;
transition: all 0.3s ease;
border-radius: 0 !important;
}
.gallery .owl-next:hover, .gallery .owl-prev:hover{
background-color: #333 !important;
}
.gallery .owl-prev {
left: 0;
}
.gallery .owl-next {
right: 0;
}
.gallery .owl-next svg, .gallery .owl-prev svg {
width: 100%;
color: #ff0000;
display: flex;
align-items: center;
justify-content: center;
}
.gallery-carousel-block.logos .owl-item img {
scale: 1 !important;
}
.gallery-carousel-block.logos .owl-item:hover a::after {
background-color: unset !important;
}
.gallery-carousel-block.logos .gallery-text {
opacity: 0.5;
}
.gallery-carousel-block.logos .gallery-text h2 {
transform: translateX(0px);
padding-right: 0px;
}
.gallery-carousel-block.logos .gallery-text h2:before {
content: none;
}
@media (min-width: 992px) {
.gallery-carousel-block.logos .owl-item img {
scale: 0.6 !important;
}
}.accordion {
margin-top: 30px;
}
.accordion__header {
width: 100%;
background: none;
border: none;
text-align: left;
padding: 15px 0;
font-size: 20px;
font-weight: 500;
color: var(--navy);
line-height: 1.4;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
font-family: "eurostile", "Verdana", sans-serif;
transition: var(--transition);
gap: 30px;
}
.accordion__header:hover {
color: var(--red);
}
.accordion__header span {
line-height: 1.3;
}
.accordion .accordion__icon {
width: 40px;
height: 40px;
border: 2px solid var(--navy);
border-radius: 50px;
min-width: 40px;
display: flex;
align-items: center;
justify-content: center;
rotate: 90deg;
transition: var(--transition);
opacity: 0.3;
}
.accordion__header:hover .accordion__icon {
opacity: 1;
}
.accordion__item.active .accordion__icon {
transform: rotate(180deg);
}
.accordion__item:hover {
background: var(--silver);
border-color: var(--silver);
}
.accordion__content {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}
.accordion__item.active .accordion__content {
max-height: 1000px;
}
.accordion__content p {
padding: 0 0 20px 0;
font-size: 14px;
line-height: 1.3;
letter-spacing: 0.3px;
font-weight: 300;
width: calc(100% - 30px);
max-width: 900px;
}
@media (min-width: 992px) {
.accordion__header {
font-size: 24px;
}
}