: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;
}
}.page_title_block {
background: var(--navy);
color: var(--white);
padding: 120px 0 60px;
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
position: relative;
}
.page_title_block h1 {
color: var(--white);
}
.breadcrumbs {
display: flex;
align-items: center;
gap: 10px;
margin-top: 10px;
font-size: 14px;
opacity: 0.7;
overflow-x: auto;
width: 100%;
}
.breadcrumbs a {
color: var(--white);
transition: var(--transition);
white-space: pre;
}
.breadcrumbs a:hover {
opacity: 0.7;
}
.breadcrumbs span {
color: var(--white);
white-space: pre;
}
.page_title_block h1:before {
content: "";
position: absolute;
left: -20px;
height: calc(100% - 17px);
top: 10px;
width: 3px;
background: var(--red);
}
@media (min-width: 992px) {
.page_title_block {
padding: 160px 0 80px;
}
}.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);
}
}.contact_form_block {
padding: 50px 0;
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
background-color: var(--off-white);
}
.contact_form_block .flex_content {
display: flex;
flex-direction: column;
gap: 40px;
}
.contact_form_block .flex-item {
flex: 1;
}
.contact_form_block .content_box {
display: flex;
flex-direction: column;
justify-content: flex-start;
}
.contact_form_block .form_box {
display: flex;
flex-direction: column;
justify-content: center;
}
.contact_form_block .content_box h2 {
margin-bottom: 20px;
}
.contact_form_block .content_box p {
margin-bottom: 15px;
}
.contact_form_block .wpcf7-form {
display: flex;
flex-direction: column;
gap: 10px;
}
.contact_form_block .wpcf7-form-control-wrap {
display: block;
width: 100%;
}
.contact_form_block input[type="text"], .contact_form_block input[type="email"], .contact_form_block input[type="tel"], .contact_form_block textarea {
width: 100%;
padding: 10px;
border: 1px solid #111b2a40;
border-radius: 10px;
font-size: 14px;
font-family: inherit;
transition: var(--transition);
}
.contact_form_block input[type="text"]:focus,
.contact_form_block input[type="email"]:focus,
.contact_form_block input[type="tel"]:focus,
.contact_form_block textarea:focus {
outline: none;
border-color: var(--red);
}
.contact_form_block textarea {
min-height: 100px;
resize: vertical;
height: 100px;
}
.contact_form_block .wpcf7-response-output {
margin-top: 20px;
padding: 15px;
border-radius: 5px;
}
.contact_form_block .wpcf7-validation-errors {
border: 2px solid #f00;
background: #ffe0e0;
}
.contact_form_block .wpcf7-mail-sent-ok {
border: 2px solid #398f14;
background: #e0ffe0;
}
.contact_form_block label {
font-family: "eurostile", "Verdana", sans-serif;
font-size: 13px;
text-transform: uppercase;
letter-spacing: 0.5px;
font-weight: 500;
color: #111b2a85;
display: inline-flex;
flex-direction: column;
width: 100%;
gap: 5px;
}
.contact_form_block .content_box ul li span {
margin: 10px;
opacity: 0.5;
}
.contact_form_block ul.emails span {
display: none;
}
.contact_form_block.contact-list .content_box ul li {
text-indent: 0;
}
.contact_form_block.contact-list ul.emails {
list-style: none;
}
.contact_form_block.contact-list ul.emails a {
margin: 0 5px;
}
.contact_form_block.contact-list ul.emails li:first-child a {
margin-left: 0;
}
@media (min-width: 992px) {
.contact_form_block {
padding: 80px 0;
}
.contact_form_block .flex_content {
flex-direction: row;
gap: 5%;
}
.contact_form_block .flex-item {
flex: 1 1 50%;
}
.contact_form_block ul.emails {
display: inline-flex;
}
.contact_form_block ul.emails span {
display: inline;
}
}.map_block {
width: 100%;
}
.map_container {
width: 100%;
height: 350px;
position: relative;
}
.map_container iframe {
width: 100%;
height: 100%;
border: 0;
display: block;
}
@media (min-width: 992px) {
.map_container {
height: 400px;
}
}