3906 lines
92 KiB
CSS
3906 lines
92 KiB
CSS
@import '../assets/fonts/HelveticaNeue/stylesheet.css';
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
border: 0 solid transparent;
|
|
}
|
|
|
|
html {
|
|
-webkit-text-size-adjust: 100%;
|
|
}
|
|
|
|
body {
|
|
min-height: 100vh;
|
|
line-height: 1;
|
|
text-rendering: optimizeSpeed;
|
|
}
|
|
|
|
img,
|
|
svg,
|
|
video,
|
|
canvas,
|
|
audio,
|
|
iframe,
|
|
embed,
|
|
object {
|
|
display: block;
|
|
max-width: 100%;
|
|
}
|
|
|
|
input,
|
|
button,
|
|
textarea,
|
|
select {
|
|
font: inherit;
|
|
line-height: inherit;
|
|
color: inherit;
|
|
}
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
border-spacing: 0;
|
|
}
|
|
|
|
button,
|
|
[role=button] {
|
|
cursor: pointer;
|
|
background-color: transparent;
|
|
-webkit-tap-highlight-color: transparent;
|
|
}
|
|
button:focus,
|
|
[role=button]:focus {
|
|
outline: 0;
|
|
}
|
|
|
|
a {
|
|
cursor: pointer;
|
|
color: inherit;
|
|
text-decoration: inherit;
|
|
-webkit-tap-highlight-color: transparent;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
font-size: inherit;
|
|
font-weight: inherit;
|
|
}
|
|
|
|
ol,
|
|
ul {
|
|
list-style: none;
|
|
}
|
|
|
|
[type=date],
|
|
[type=datetime],
|
|
[type=datetime-local],
|
|
[type=email],
|
|
[type=month],
|
|
[type=number],
|
|
[type=password],
|
|
[type=search],
|
|
[type=tel],
|
|
[type=text],
|
|
[type=time],
|
|
[type=url],
|
|
[type=week],
|
|
textarea,
|
|
select {
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
appearance: none;
|
|
width: 100%;
|
|
}
|
|
[type=date]:focus,
|
|
[type=datetime]:focus,
|
|
[type=datetime-local]:focus,
|
|
[type=email]:focus,
|
|
[type=month]:focus,
|
|
[type=number]:focus,
|
|
[type=password]:focus,
|
|
[type=search]:focus,
|
|
[type=tel]:focus,
|
|
[type=text]:focus,
|
|
[type=time]:focus,
|
|
[type=url]:focus,
|
|
[type=week]:focus,
|
|
textarea:focus,
|
|
select:focus {
|
|
outline: 0;
|
|
}
|
|
|
|
::-moz-placeholder {
|
|
opacity: 1;
|
|
}
|
|
|
|
textarea {
|
|
vertical-align: top;
|
|
overflow: auto;
|
|
}
|
|
|
|
[type=checkbox],
|
|
[type=radio] {
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
appearance: none;
|
|
}
|
|
[type=checkbox]:focus,
|
|
[type=radio]:focus {
|
|
outline: 0;
|
|
}
|
|
|
|
@media (prefers-reduced-motion: reduce) {
|
|
html:focus-within {
|
|
scroll-behavior: auto;
|
|
}
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
animation-duration: 0.01ms !important;
|
|
animation-iteration-count: 1 !important;
|
|
transition-duration: 0.01ms !important;
|
|
scroll-behavior: auto !important;
|
|
}
|
|
}
|
|
* {
|
|
font-family: "Helvetica Neue", sans-serif;
|
|
}
|
|
|
|
body.no-scroll {
|
|
overflow: hidden;
|
|
}
|
|
|
|
p:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
input[type=checkbox]:not([name=gdprPrefItem]) {
|
|
-webkit-appearance: none !important;
|
|
-moz-appearance: none !important;
|
|
appearance: none !important;
|
|
position: relative;
|
|
display: inline-block;
|
|
width: 19px;
|
|
min-width: 19px;
|
|
height: 19px;
|
|
border: 1px solid #d9ba5c;
|
|
border-radius: 6px;
|
|
transition: all 250ms ease-in-out;
|
|
overflow: hidden;
|
|
cursor: pointer;
|
|
}
|
|
input[type=checkbox]:not([name=gdprPrefItem])::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: -7px;
|
|
left: 20px;
|
|
width: 11px;
|
|
height: 2px;
|
|
background: #ffffff;
|
|
transform: rotate(-50deg);
|
|
transition: all 250ms linear;
|
|
}
|
|
input[type=checkbox]:not([name=gdprPrefItem])::after {
|
|
content: "";
|
|
position: absolute;
|
|
top: -5px;
|
|
left: -12px;
|
|
width: 6px;
|
|
height: 2px;
|
|
background: #ffffff;
|
|
transform: rotate(50deg);
|
|
transition: all 250ms linear;
|
|
}
|
|
input[type=checkbox]:not([name=gdprPrefItem]):checked {
|
|
background: #d9ba5c;
|
|
}
|
|
input[type=checkbox]:not([name=gdprPrefItem]):checked::before {
|
|
top: 8px;
|
|
left: 5px;
|
|
}
|
|
input[type=checkbox]:not([name=gdprPrefItem]):checked::after {
|
|
top: 10px;
|
|
left: 3px;
|
|
}
|
|
|
|
.container {
|
|
width: 100%;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
padding-left: 15px;
|
|
padding-right: 15px;
|
|
}
|
|
@media (min-width: 576px) {
|
|
.container {
|
|
max-width: 540px;
|
|
}
|
|
}
|
|
@media (min-width: 768px) {
|
|
.container {
|
|
max-width: 720px;
|
|
}
|
|
}
|
|
@media (min-width: 992px) {
|
|
.container {
|
|
max-width: 960px;
|
|
}
|
|
}
|
|
@media (min-width: 1200px) {
|
|
.container {
|
|
max-width: 1140px;
|
|
}
|
|
}
|
|
@media (min-width: 1370px) {
|
|
.container {
|
|
max-width: 1310px;
|
|
}
|
|
}
|
|
|
|
.btn_1, header#masthead .row .main-navigation-secondary li:nth-child(1) a {
|
|
color: #232323 !important;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
line-height: 1;
|
|
display: inline-block;
|
|
padding: 15px 24px 13px;
|
|
border-radius: 100px;
|
|
background: rgba(139, 139, 139, 0.1);
|
|
text-wrap-mode: nowrap;
|
|
transition: all 250ms ease-in-out;
|
|
}
|
|
.btn_1:hover, header#masthead .row .main-navigation-secondary li:nth-child(1) a:hover {
|
|
color: #ffffff !important;
|
|
background: #232323;
|
|
}
|
|
|
|
.btn_2, footer#site-footer .footer-1 .row .col-1 .box-contact form .form-fields .c-item-6 .c-row .c-col-2 input, header#masthead .row .main-navigation-secondary li:nth-child(2) a {
|
|
color: #ffffff !important;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
line-height: 1;
|
|
display: inline-block;
|
|
padding: 15px 24px 13px;
|
|
border-radius: 100px;
|
|
background: #d9ba5c;
|
|
text-wrap-mode: nowrap;
|
|
transition: all 250ms ease-in-out;
|
|
}
|
|
.btn_2:hover, footer#site-footer .footer-1 .row .col-1 .box-contact form .form-fields .c-item-6 .c-row .c-col-2 input:hover, header#masthead .row .main-navigation-secondary li:nth-child(2) a:hover {
|
|
background: #ba962b;
|
|
}
|
|
|
|
.btn_3 {
|
|
color: #d9ba5c !important;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
line-height: 1;
|
|
display: inline-block;
|
|
padding: 15px 24px 13px;
|
|
border-radius: 100px;
|
|
background: rgba(217, 186, 92, 0.1);
|
|
text-wrap-mode: nowrap;
|
|
transition: all 250ms ease-in-out;
|
|
}
|
|
.btn_3:hover {
|
|
color: #ffffff !important;
|
|
background: #d9ba5c;
|
|
}
|
|
|
|
.btn_4 {
|
|
color: #d9ba5c !important;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
line-height: 1;
|
|
display: inline-block;
|
|
padding: 15px 24px 13px;
|
|
border-radius: 100px;
|
|
background: #ffffff;
|
|
text-wrap-mode: nowrap;
|
|
transition: all 250ms ease-in-out;
|
|
}
|
|
.btn_4:hover {
|
|
color: #ffffff !important;
|
|
background: #d9ba5c;
|
|
}
|
|
|
|
.btn_5 {
|
|
color: #d9ba5c !important;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
line-height: 1;
|
|
text-wrap-mode: nowrap;
|
|
transition: all 250ms ease-in-out;
|
|
}
|
|
.btn_5:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
#breadcrumbs_box {
|
|
margin-bottom: 24px;
|
|
}
|
|
#breadcrumbs_box #breadcrumbs {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
gap: 10px;
|
|
color: rgba(30, 30, 30, 0.502);
|
|
font-weight: 500;
|
|
font-size: 16px;
|
|
line-height: 1;
|
|
letter-spacing: -0.32px;
|
|
}
|
|
#breadcrumbs_box #breadcrumbs ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
#breadcrumbs_box #breadcrumbs ul li a {
|
|
color: inherit;
|
|
font-size: inherit;
|
|
font-weight: inherit;
|
|
line-height: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
header#masthead {
|
|
position: relative;
|
|
height: 77px;
|
|
transition: all 250ms ease-in-out;
|
|
transition-delay: 600ms;
|
|
}
|
|
@media (min-width: 992px) and (max-width: 1199px) {
|
|
header#masthead {
|
|
height: 110px;
|
|
}
|
|
}
|
|
header#masthead.active {
|
|
background: #232323;
|
|
transition-delay: 0ms;
|
|
}
|
|
header#masthead .row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
-moz-column-gap: 40px;
|
|
column-gap: 40px;
|
|
height: 77px;
|
|
}
|
|
@media (min-width: 992px) and (max-width: 1199px) {
|
|
header#masthead .row {
|
|
height: 110px;
|
|
}
|
|
}
|
|
header#masthead .row .site-branding img {
|
|
width: 246px;
|
|
min-width: 246px;
|
|
transition: all 250ms ease-in-out;
|
|
transition-delay: 600ms;
|
|
}
|
|
@media (min-width: 992px) and (max-width: 1199px) {
|
|
header#masthead .row .site-branding img {
|
|
width: 200px;
|
|
min-width: 200px;
|
|
}
|
|
}
|
|
@media (max-width: 575px) {
|
|
header#masthead .row .site-branding img {
|
|
width: 200px;
|
|
min-width: 200px;
|
|
}
|
|
}
|
|
header#masthead .row .site-branding.active img {
|
|
filter: brightness(0) invert(1);
|
|
transition-delay: 0ms;
|
|
}
|
|
@media (max-width: 991px) {
|
|
header#masthead .row nav#site-navigation {
|
|
position: absolute;
|
|
top: 76px;
|
|
left: 0;
|
|
right: 0;
|
|
background: #232323;
|
|
z-index: 10;
|
|
padding-top: 90px;
|
|
padding-bottom: 90px;
|
|
height: 100svh;
|
|
max-height: calc(100svh - 77px);
|
|
}
|
|
}
|
|
header#masthead .row nav#site-navigation ul#primary-menu {
|
|
gap: 50px;
|
|
justify-content: center;
|
|
}
|
|
@media (max-width: 1369px) {
|
|
header#masthead .row nav#site-navigation ul#primary-menu {
|
|
gap: 30px;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
header#masthead .row nav#site-navigation ul#primary-menu {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 40px;
|
|
}
|
|
}
|
|
header#masthead .row nav#site-navigation ul#primary-menu li {
|
|
position: relative;
|
|
}
|
|
header#masthead .row nav#site-navigation ul#primary-menu li.current-menu-item {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
gap: 7px;
|
|
}
|
|
@media (min-width: 992px) {
|
|
header#masthead .row nav#site-navigation ul#primary-menu li.current-menu-item::before {
|
|
content: "";
|
|
position: relative;
|
|
display: inline-block;
|
|
width: 5px;
|
|
height: 5px;
|
|
border-radius: 100%;
|
|
background: #d9ba5c;
|
|
margin-bottom: 2px;
|
|
}
|
|
}
|
|
header#masthead .row nav#site-navigation ul#primary-menu li.current-menu-item a {
|
|
color: #d9ba5c;
|
|
}
|
|
@media (max-width: 991px) {
|
|
header#masthead .row nav#site-navigation ul#primary-menu li.current-menu-item a {
|
|
width: 100%;
|
|
}
|
|
}
|
|
header#masthead .row nav#site-navigation ul#primary-menu li a {
|
|
color: #232323;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
line-height: 1;
|
|
}
|
|
@media (max-width: 991px) {
|
|
header#masthead .row nav#site-navigation ul#primary-menu li a {
|
|
color: #ffffff;
|
|
font-weight: 500;
|
|
font-size: 40px;
|
|
line-height: 1;
|
|
letter-spacing: -0.8px;
|
|
text-align: center;
|
|
}
|
|
}
|
|
@media (min-width: 992px) {
|
|
header#masthead .row nav#site-navigation ul#primary-menu li#menu-item-18, header#masthead .row nav#site-navigation ul#primary-menu li#menu-item-19 {
|
|
display: none;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
header#masthead .row nav#site-navigation ul#primary-menu li#menu-item-19 {
|
|
text-align: center;
|
|
}
|
|
header#masthead .row nav#site-navigation ul#primary-menu li#menu-item-19 a {
|
|
color: #232323;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
line-height: 1;
|
|
display: inline-block;
|
|
padding: 11px 24px 12px;
|
|
border-radius: 100px;
|
|
background: #ffffff;
|
|
text-wrap-mode: nowrap;
|
|
transition: all 250ms ease-in-out;
|
|
}
|
|
header#masthead .row nav#site-navigation ul#primary-menu li#menu-item-19 a:hover {
|
|
color: #ffffff !important;
|
|
background: #d9ba5c;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
header#masthead .row nav#site-navigation {
|
|
display: none;
|
|
}
|
|
}
|
|
header#masthead .row .main-navigation-secondary {
|
|
padding: 0;
|
|
margin: 0;
|
|
list-style: none;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
gap: 16px;
|
|
}
|
|
@media (max-width: 1199px) {
|
|
header#masthead .row .main-navigation-secondary {
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
header#masthead .row .main-navigation-secondary {
|
|
display: none;
|
|
}
|
|
}
|
|
header#masthead .row #nav-menu-toggle {
|
|
color: #ffffff;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
line-height: 1;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
padding: 9px 18px;
|
|
border-radius: 100px;
|
|
border: none;
|
|
background: #232323;
|
|
text-wrap-mode: nowrap;
|
|
transition: all 250ms ease-in-out;
|
|
transition-delay: 600ms;
|
|
}
|
|
header#masthead .row #nav-menu-toggle.active {
|
|
padding: 12px 14px 12px 12px;
|
|
background: rgba(255, 255, 255, 0.2);
|
|
transition-delay: 0ms;
|
|
}
|
|
header#masthead .row #nav-menu-toggle.active .text {
|
|
padding-left: 0;
|
|
width: 0;
|
|
opacity: 0;
|
|
}
|
|
header#masthead .row #nav-menu-toggle.active .icon {
|
|
width: 11px;
|
|
height: 11px;
|
|
}
|
|
header#masthead .row #nav-menu-toggle.active .icon::before {
|
|
width: 13px;
|
|
top: 50%;
|
|
rotate: 45deg;
|
|
}
|
|
header#masthead .row #nav-menu-toggle.active .icon::after {
|
|
width: 13px;
|
|
top: 50%;
|
|
rotate: -45deg;
|
|
}
|
|
header#masthead .row #nav-menu-toggle .text {
|
|
display: inline-block;
|
|
height: 12px;
|
|
padding-left: 8px;
|
|
margin-top: -1px;
|
|
width: 45px;
|
|
opacity: 1;
|
|
overflow: hidden;
|
|
transition: all 250ms ease-in-out;
|
|
transition-delay: 600ms;
|
|
}
|
|
header#masthead .row #nav-menu-toggle .icon {
|
|
position: relative;
|
|
display: inline-block;
|
|
width: 13px;
|
|
height: 8px;
|
|
transition-delay: 600ms;
|
|
}
|
|
header#masthead .row #nav-menu-toggle .icon::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
height: 2px;
|
|
width: 11px;
|
|
background: #ffffff;
|
|
transition: all 250ms ease-in-out;
|
|
transition-delay: 600ms;
|
|
}
|
|
header#masthead .row #nav-menu-toggle .icon::after {
|
|
content: "";
|
|
position: absolute;
|
|
top: calc(100% - 2px);
|
|
left: 0;
|
|
height: 2px;
|
|
width: 11px;
|
|
background: #ffffff;
|
|
transition: all 250ms ease-in-out;
|
|
transition-delay: 600ms;
|
|
}
|
|
@media (min-width: 992px) {
|
|
header#masthead .row #nav-menu-toggle {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
footer#site-footer {
|
|
background: #232323;
|
|
overflow: hidden;
|
|
}
|
|
footer#site-footer .footer-1 {
|
|
padding-top: 140px;
|
|
padding-bottom: 100px;
|
|
border-bottom: 1px solid #6a6a6a;
|
|
}
|
|
footer#site-footer .footer-1 .row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
gap: 80px;
|
|
}
|
|
@media (max-width: 1199px) {
|
|
footer#site-footer .footer-1 .row {
|
|
gap: 60px;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
footer#site-footer .footer-1 .row {
|
|
flex-direction: column-reverse;
|
|
}
|
|
}
|
|
footer#site-footer .footer-1 .row .col-1 .box-contact {
|
|
padding: 48px;
|
|
background: #faf8f2;
|
|
border-radius: 10px;
|
|
}
|
|
footer#site-footer .footer-1 .row .col-1 .box-contact .box-title {
|
|
margin-bottom: 24px;
|
|
}
|
|
footer#site-footer .footer-1 .row .col-1 .box-contact .box-title h2 {
|
|
color: #232323;
|
|
font-weight: 400;
|
|
font-size: 36px;
|
|
line-height: 1.2;
|
|
letter-spacing: -0.68px;
|
|
}
|
|
footer#site-footer .footer-1 .row .col-1 .box-contact .box-title h2 strong {
|
|
color: #d9ba5c;
|
|
font-weight: inherit;
|
|
}
|
|
footer#site-footer .footer-1 .row .col-1 .box-contact .box-text {
|
|
margin-bottom: 40px;
|
|
}
|
|
footer#site-footer .footer-1 .row .col-1 .box-contact .box-text p {
|
|
color: #232323;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 1.5;
|
|
letter-spacing: -0.32px;
|
|
}
|
|
footer#site-footer .footer-1 .row .col-1 .box-contact form .form-fields {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
-moz-column-gap: 24px;
|
|
column-gap: 24px;
|
|
row-gap: 16px;
|
|
grid-template-areas: "i1 i2" "i3 i4" "i5 i5" "i6 i6";
|
|
}
|
|
@media (max-width: 575px) {
|
|
footer#site-footer .footer-1 .row .col-1 .box-contact form .form-fields {
|
|
grid-template-columns: 1fr;
|
|
grid-template-areas: "i1" "i2" "i3" "i4" "i5" "i6";
|
|
}
|
|
}
|
|
footer#site-footer .footer-1 .row .col-1 .box-contact form .form-fields .c-item-1 {
|
|
grid-area: i1;
|
|
}
|
|
footer#site-footer .footer-1 .row .col-1 .box-contact form .form-fields .c-item-2 {
|
|
grid-area: i2;
|
|
}
|
|
footer#site-footer .footer-1 .row .col-1 .box-contact form .form-fields .c-item-3 {
|
|
grid-area: i3;
|
|
}
|
|
footer#site-footer .footer-1 .row .col-1 .box-contact form .form-fields .c-item-4 {
|
|
grid-area: i4;
|
|
}
|
|
footer#site-footer .footer-1 .row .col-1 .box-contact form .form-fields .c-item-5 {
|
|
grid-area: i5;
|
|
margin-bottom: 26px;
|
|
}
|
|
footer#site-footer .footer-1 .row .col-1 .box-contact form .form-fields .c-item-6 {
|
|
grid-area: i6;
|
|
}
|
|
footer#site-footer .footer-1 .row .col-1 .box-contact form .form-fields .c-item-6 .c-row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
}
|
|
@media (max-width: 1369px) {
|
|
footer#site-footer .footer-1 .row .col-1 .box-contact form .form-fields .c-item-6 .c-row {
|
|
flex-direction: column;
|
|
row-gap: 20px;
|
|
}
|
|
}
|
|
@media (min-width: 1370px) {
|
|
footer#site-footer .footer-1 .row .col-1 .box-contact form .form-fields .c-item-6 .c-row .c-col-1 {
|
|
max-width: 290px;
|
|
}
|
|
}
|
|
footer#site-footer .footer-1 .row .col-1 .box-contact form .form-fields .c-item-6 .c-row .c-col-1 span {
|
|
margin: 0px;
|
|
}
|
|
footer#site-footer .footer-1 .row .col-1 .box-contact form .form-fields .c-item-6 .c-row .c-col-1 label {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 16px;
|
|
}
|
|
footer#site-footer .footer-1 .row .col-1 .box-contact form .form-fields .c-item-6 .c-row .c-col-1 label span {
|
|
color: #232323;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 1.5;
|
|
letter-spacing: -0.32px;
|
|
}
|
|
footer#site-footer .footer-1 .row .col-1 .box-contact form .form-fields .c-item-6 .c-row .c-col-1 label span a {
|
|
color: inherit;
|
|
text-decoration: underline;
|
|
}
|
|
footer#site-footer .footer-1 .row .col-1 .box-contact form .form-fields .c-item-6 .c-row .c-col-2 {
|
|
display: flex;
|
|
flex-direction: row-reverse;
|
|
}
|
|
@media (max-width: 1369px) {
|
|
footer#site-footer .footer-1 .row .col-1 .box-contact form .form-fields .c-item-6 .c-row .c-col-2 {
|
|
flex-direction: row;
|
|
}
|
|
}
|
|
footer#site-footer .footer-1 .row .col-1 .box-contact form .form-fields .c-item-6 .c-row .c-col-2 input {
|
|
border: none;
|
|
cursor: pointer;
|
|
width: 260px;
|
|
}
|
|
footer#site-footer .footer-1 .row .col-1 .box-contact form label {
|
|
position: relative;
|
|
display: block;
|
|
}
|
|
footer#site-footer .footer-1 .row .col-1 .box-contact form label > span {
|
|
display: block;
|
|
}
|
|
footer#site-footer .footer-1 .row .col-1 .box-contact form input[type=tel], footer#site-footer .footer-1 .row .col-1 .box-contact form input[type=text], footer#site-footer .footer-1 .row .col-1 .box-contact form input[type=email] {
|
|
height: 51px;
|
|
width: 100%;
|
|
background: #fff;
|
|
border: none !important;
|
|
border-radius: 10px;
|
|
box-shadow: none !important;
|
|
outline: none !important;
|
|
padding: 15px 19px 5px;
|
|
transition: all 250ms ease-in-out;
|
|
color: #232323;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 1;
|
|
letter-spacing: -0.32px;
|
|
margin: 0;
|
|
}
|
|
footer#site-footer .footer-1 .row .col-1 .box-contact form input[type=tel]:not(:-moz-placeholder) + p, footer#site-footer .footer-1 .row .col-1 .box-contact form input[type=text]:not(:-moz-placeholder) + p, footer#site-footer .footer-1 .row .col-1 .box-contact form input[type=email]:not(:-moz-placeholder) + p {
|
|
top: 8px;
|
|
color: #9e9e9e !important;
|
|
padding: 3px 10px;
|
|
font-size: 9px;
|
|
}
|
|
footer#site-footer .footer-1 .row .col-1 .box-contact form input[type=tel]:focus + p, footer#site-footer .footer-1 .row .col-1 .box-contact form input[type=tel]:not(:placeholder-shown) + p, footer#site-footer .footer-1 .row .col-1 .box-contact form input[type=text]:focus + p, footer#site-footer .footer-1 .row .col-1 .box-contact form input[type=text]:not(:placeholder-shown) + p, footer#site-footer .footer-1 .row .col-1 .box-contact form input[type=email]:focus + p, footer#site-footer .footer-1 .row .col-1 .box-contact form input[type=email]:not(:placeholder-shown) + p {
|
|
top: 8px;
|
|
color: #9e9e9e !important;
|
|
padding: 3px 10px;
|
|
font-size: 9px;
|
|
}
|
|
footer#site-footer .footer-1 .row .col-1 .box-contact form textarea {
|
|
height: 170px;
|
|
width: 100%;
|
|
background: #fff;
|
|
border: none !important;
|
|
border-radius: 10px;
|
|
box-shadow: none !important;
|
|
outline: none !important;
|
|
padding: 20px 19px 5px;
|
|
transition: all 250ms ease-in-out;
|
|
color: #232323;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 1;
|
|
letter-spacing: -0.32px;
|
|
margin: 0;
|
|
resize: none;
|
|
}
|
|
footer#site-footer .footer-1 .row .col-1 .box-contact form textarea:not(:-moz-placeholder) + p {
|
|
top: 8px;
|
|
color: #9e9e9e !important;
|
|
padding: 3px 10px;
|
|
font-size: 9px;
|
|
}
|
|
footer#site-footer .footer-1 .row .col-1 .box-contact form textarea:focus + p, footer#site-footer .footer-1 .row .col-1 .box-contact form textarea:not(:placeholder-shown) + p {
|
|
top: 8px;
|
|
color: #9e9e9e !important;
|
|
padding: 3px 10px;
|
|
font-size: 9px;
|
|
}
|
|
footer#site-footer .footer-1 .row .col-1 .box-contact form p {
|
|
color: #232323;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 1;
|
|
letter-spacing: -0.32px;
|
|
margin: 0;
|
|
position: absolute;
|
|
top: 14px;
|
|
left: 9px;
|
|
padding: 4px 10px;
|
|
transition: all 250ms ease-in-out;
|
|
}
|
|
@media (max-width: 991px) {
|
|
footer#site-footer .footer-1 .row .col-1 .box-contact form p {
|
|
font-size: 13px;
|
|
top: 14px;
|
|
}
|
|
}
|
|
footer#site-footer .footer-1 .row .col-1 .box-contact form .wpcf7-not-valid-tip {
|
|
font-size: 12px;
|
|
padding: 3px;
|
|
}
|
|
footer#site-footer .footer-1 .row .col-2 {
|
|
width: 100%;
|
|
max-width: 400px;
|
|
}
|
|
@media (max-width: 991px) {
|
|
footer#site-footer .footer-1 .row .col-2 {
|
|
max-width: unset;
|
|
}
|
|
}
|
|
footer#site-footer .footer-1 .row .col-2 .box-logo {
|
|
margin-bottom: 24px;
|
|
}
|
|
footer#site-footer .footer-1 .row .col-2 .box-logo img {
|
|
width: 100%;
|
|
max-width: 205px;
|
|
}
|
|
footer#site-footer .footer-1 .row .col-2 .box-text p {
|
|
color: #9e9e9e;
|
|
font-weight: 400;
|
|
font-size: 20px;
|
|
line-height: 1.5;
|
|
letter-spacing: -0.38px;
|
|
margin-bottom: 24px;
|
|
}
|
|
footer#site-footer .footer-1 .row .col-2 .box-text ol {
|
|
padding: 0;
|
|
margin: 0;
|
|
counter-reset: custom-counter;
|
|
}
|
|
footer#site-footer .footer-1 .row .col-2 .box-text ol li {
|
|
position: relative;
|
|
color: #ffffff;
|
|
font-weight: 400;
|
|
font-size: 24px;
|
|
line-height: 1.4;
|
|
letter-spacing: -0.48px;
|
|
padding-left: 25px;
|
|
counter-increment: custom-counter;
|
|
}
|
|
footer#site-footer .footer-1 .row .col-2 .box-text ol li::before {
|
|
content: counter(custom-counter) ". ";
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
color: #ffffff;
|
|
font-weight: 400;
|
|
font-size: 24px;
|
|
line-height: 1.4;
|
|
letter-spacing: -0.48px;
|
|
}
|
|
@media (max-width: 575px) {
|
|
footer#site-footer .footer-1 .row .col-2 .box-text ol li {
|
|
font-size: 20px;
|
|
}
|
|
}
|
|
footer#site-footer .footer-1 .row .col-2 .box-info p {
|
|
color: #9e9e9e;
|
|
font-weight: 400;
|
|
font-size: 20px;
|
|
line-height: 1.5;
|
|
letter-spacing: -0.38px;
|
|
margin-bottom: 16px;
|
|
}
|
|
footer#site-footer .footer-2 {
|
|
padding-top: 32px;
|
|
padding-bottom: 32px;
|
|
}
|
|
footer#site-footer .footer-2 .row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
@media (max-width: 991px) {
|
|
footer#site-footer .footer-2 .row {
|
|
flex-direction: column;
|
|
row-gap: 24px;
|
|
}
|
|
}
|
|
footer#site-footer .footer-2 .row .col-1 {
|
|
flex-basis: 40%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
row-gap: 20px;
|
|
}
|
|
footer#site-footer .footer-2 .row .col-1 p {
|
|
color: #ffffff;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 1;
|
|
letter-spacing: -0.32px;
|
|
margin: 0;
|
|
}
|
|
footer#site-footer .footer-2 .row .col-1 a {
|
|
color: #9e9e9e;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 1;
|
|
letter-spacing: -0.32px;
|
|
}
|
|
@media (max-width: 991px) {
|
|
footer#site-footer .footer-2 .row .col-1 a {
|
|
display: none;
|
|
}
|
|
}
|
|
footer#site-footer .footer-2 .row .col-1 .col-text p {
|
|
color: #9e9e9e;
|
|
margin: 0;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 1.5;
|
|
letter-spacing: -0.32px;
|
|
}
|
|
footer#site-footer .footer-2 .row .col-2 {
|
|
flex-basis: 60%;
|
|
}
|
|
footer#site-footer .footer-2 .row .col-2 ol {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
-moz-column-gap: 30px;
|
|
column-gap: 30px;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
@media (max-width: 991px) {
|
|
footer#site-footer .footer-2 .row .col-2 ol {
|
|
flex-direction: column;
|
|
row-gap: 24px;
|
|
}
|
|
}
|
|
footer#site-footer .footer-2 .row .col-2 ol li p {
|
|
color: #9e9e9e;
|
|
margin: 0;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 1.5;
|
|
letter-spacing: -0.32px;
|
|
}
|
|
@media (min-width: 992px) {
|
|
footer#site-footer .footer-2 .row .col-3 {
|
|
display: none;
|
|
}
|
|
}
|
|
footer#site-footer .footer-2 .row .col-3 a {
|
|
color: #9e9e9e;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 1;
|
|
letter-spacing: -0.32px;
|
|
}
|
|
|
|
article.article-card .article-card--wrapper .article-card--image {
|
|
margin-bottom: 24px;
|
|
}
|
|
article.article-card .article-card--wrapper .article-card--image a img {
|
|
width: 100%;
|
|
height: 286px;
|
|
-o-object-fit: cover;
|
|
object-fit: cover;
|
|
}
|
|
@media (max-width: 767px) {
|
|
article.article-card .article-card--wrapper .article-card--image a img {
|
|
height: 200px;
|
|
}
|
|
}
|
|
article.article-card .article-card--wrapper .article-card--content .article-card--title {
|
|
margin-bottom: 24px;
|
|
}
|
|
article.article-card .article-card--wrapper .article-card--content .article-card--title h3 {
|
|
color: #232323;
|
|
font-weight: 400;
|
|
font-size: 24px;
|
|
line-height: 1.2;
|
|
letter-spacing: -0.45px;
|
|
}
|
|
@media (max-width: 767px) {
|
|
article.article-card .article-card--wrapper .article-card--content .article-card--title h3 {
|
|
font-size: 20px;
|
|
}
|
|
}
|
|
@media (max-width: 575px) {
|
|
article.article-card .article-card--wrapper .article-card--content .article-card--title h3 {
|
|
font-size: 18px;
|
|
}
|
|
}
|
|
article.article-card .article-card--wrapper .article-card--content .article-card--title h3 a {
|
|
color: inherit;
|
|
font-size: inherit;
|
|
font-weight: inherit;
|
|
line-height: inherit;
|
|
letter-spacing: inherit;
|
|
text-decoration: inherit;
|
|
}
|
|
.c-tabs .c-tabs--nav {
|
|
padding: 0;
|
|
margin: 0 0 64px 0;
|
|
border-bottom: 1px solid rgba(106, 106, 106, 0.4);
|
|
display: flex;
|
|
flex-direction: row;
|
|
-moz-column-gap: 80px;
|
|
column-gap: 80px;
|
|
}
|
|
.c-tabs .c-tabs--nav li {
|
|
color: #9e9e9e;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 120%;
|
|
letter-spacing: -0.32px;
|
|
display: inline-block;
|
|
padding-bottom: 15px;
|
|
margin-bottom: -1px;
|
|
cursor: pointer;
|
|
transition: all 250ms ease-in-out;
|
|
}
|
|
.c-tabs .c-tabs--nav li.active {
|
|
color: #d9ba5c;
|
|
border-bottom: 1px solid #d9ba5c;
|
|
}
|
|
.c-tabs .c-tabs--content .c-tab--item {
|
|
display: none;
|
|
}
|
|
|
|
.c-acc .c-acc--item .c-acc--head {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.c-acc-advanced .c-acc--item .c-acc--head {
|
|
cursor: pointer;
|
|
}
|
|
|
|
body.page-id-72 main {
|
|
margin-top: 60px;
|
|
}
|
|
@media (max-width: 767px) {
|
|
body.page-id-72 main .box-1 {
|
|
overflow: hidden;
|
|
}
|
|
}
|
|
body.page-id-72 main .box-1 .row {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
-moz-column-gap: 40px;
|
|
column-gap: 40px;
|
|
}
|
|
@media (max-width: 575px) {
|
|
body.page-id-72 main .box-1 .row {
|
|
min-height: 500px;
|
|
}
|
|
}
|
|
body.page-id-72 main .box-1 .row .col-1 {
|
|
max-width: 680px;
|
|
}
|
|
@media (max-width: 1199px) {
|
|
body.page-id-72 main .box-1 .row .col-1 {
|
|
max-width: 500px;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-72 main .box-1 .row .col-1 {
|
|
max-width: 330px;
|
|
padding-bottom: 60px;
|
|
}
|
|
}
|
|
@media (max-width: 767px) {
|
|
body.page-id-72 main .box-1 .row .col-1 {
|
|
max-width: 370px;
|
|
}
|
|
}
|
|
@media (max-width: 1369px) {
|
|
body.page-id-72 main .box-1 .row .col-2 {
|
|
z-index: 1;
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
z-index: 1;
|
|
max-width: 430px;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-72 main .box-1 .row .col-2 {
|
|
max-width: 360px;
|
|
}
|
|
}
|
|
@media (max-width: 767px) {
|
|
body.page-id-72 main .box-1 .row .col-2 {
|
|
left: 0;
|
|
right: auto;
|
|
transform: translateX(100%);
|
|
max-width: 400px;
|
|
}
|
|
}
|
|
@media (max-width: 575px) {
|
|
body.page-id-72 main .box-1 .row .col-2 {
|
|
max-width: unset;
|
|
width: 100svw;
|
|
inset: 0;
|
|
}
|
|
body.page-id-72 main .box-1 .row .col-2 img {
|
|
max-width: unset;
|
|
width: 100%;
|
|
}
|
|
}
|
|
body.page-id-72 main .box-1 .box-head {
|
|
margin-bottom: 24px;
|
|
}
|
|
body.page-id-72 main .box-1 .box-head h2 {
|
|
color: #232323;
|
|
font-weight: 500;
|
|
font-size: 64px;
|
|
line-height: 120%;
|
|
letter-spacing: -1.4px;
|
|
}
|
|
@media (max-width: 1199px) {
|
|
body.page-id-72 main .box-1 .box-head h2 {
|
|
font-size: 54px;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-72 main .box-1 .box-head h2 {
|
|
font-size: 48px;
|
|
}
|
|
}
|
|
@media (max-width: 575px) {
|
|
body.page-id-72 main .box-1 .box-head h2 {
|
|
font-size: 40px;
|
|
}
|
|
}
|
|
body.page-id-72 main .box-1 .box-head h2 strong {
|
|
color: #d9ba5c;
|
|
font-weight: inherit;
|
|
}
|
|
body.page-id-72 main .box-1 .box-text {
|
|
margin-bottom: 24px;
|
|
max-width: 670px;
|
|
}
|
|
body.page-id-72 main .box-1 .box-text p {
|
|
color: #232323;
|
|
font-weight: 400;
|
|
font-size: 20px;
|
|
line-height: 150%;
|
|
letter-spacing: -0.38px;
|
|
}
|
|
body.page-id-72 main .box-1 .box-quote {
|
|
padding-left: 24px;
|
|
margin-top: 64px;
|
|
border-left: 1px solid #232323;
|
|
max-width: 550px;
|
|
}
|
|
body.page-id-72 main .box-1 .box-quote p {
|
|
color: #232323;
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
line-height: 150%;
|
|
letter-spacing: -0.27px;
|
|
margin-bottom: 16px;
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-72 main .box-1 .box-quote {
|
|
display: none;
|
|
}
|
|
}
|
|
body.page-id-72 main .box-2 {
|
|
position: relative;
|
|
margin-top: 36px;
|
|
padding-top: 160px;
|
|
padding-bottom: 136px;
|
|
background: #232323;
|
|
}
|
|
body.page-id-72 main .box-2::before {
|
|
content: "";
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
top: 0;
|
|
height: 105px;
|
|
background: linear-gradient(0deg, #d9d9d9 0%, rgba(255, 255, 255, 0) 100%);
|
|
transform: translateY(-100%);
|
|
z-index: -1;
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-72 main .box-2 {
|
|
padding-top: 100px;
|
|
padding-bottom: 100px;
|
|
}
|
|
}
|
|
body.page-id-72 main .box-2 .row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
-moz-column-gap: 100px;
|
|
column-gap: 100px;
|
|
}
|
|
@media (min-width: 992px) and (max-width: 1199px) {
|
|
body.page-id-72 main .box-2 .row {
|
|
-moz-column-gap: 50px;
|
|
column-gap: 50px;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-72 main .box-2 .row {
|
|
flex-direction: column-reverse;
|
|
row-gap: 60px;
|
|
}
|
|
}
|
|
body.page-id-72 main .box-2 .row .col-1 {
|
|
position: relative;
|
|
padding-left: 100px;
|
|
padding-top: 38px;
|
|
padding-bottom: 64px;
|
|
max-width: 650px;
|
|
}
|
|
body.page-id-72 main .box-2 .row .col-1::before {
|
|
content: attr(box-title);
|
|
color: #6a6a6a;
|
|
font-weight: 700;
|
|
font-size: 16px;
|
|
line-height: 1;
|
|
letter-spacing: -0.34px;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
background: #232323;
|
|
z-index: 1;
|
|
}
|
|
body.page-id-72 main .box-2 .row .col-1::after {
|
|
content: "";
|
|
position: absolute;
|
|
left: 7px;
|
|
background: #6a6a6a;
|
|
}
|
|
@media (min-width: 992px) {
|
|
body.page-id-72 main .box-2 .row .col-1::before {
|
|
writing-mode: vertical-rl;
|
|
padding-top: 24px;
|
|
transform: rotate(180deg);
|
|
}
|
|
body.page-id-72 main .box-2 .row .col-1::after {
|
|
top: 10px;
|
|
bottom: 0;
|
|
width: 1px;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-72 main .box-2 .row .col-1::before {
|
|
padding-right: 24px;
|
|
}
|
|
body.page-id-72 main .box-2 .row .col-1::after {
|
|
top: 7px;
|
|
right: 0;
|
|
height: 1px;
|
|
width: 100%;
|
|
}
|
|
}
|
|
@media (min-width: 992px) and (max-width: 1199px) {
|
|
body.page-id-72 main .box-2 .row .col-1 {
|
|
max-width: 550px;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-72 main .box-2 .row .col-1 {
|
|
padding-left: 0;
|
|
padding-top: 60px;
|
|
max-width: unset;
|
|
}
|
|
}
|
|
body.page-id-72 main .box-2 .row .col-1 .box-head h2 {
|
|
color: #ffffff;
|
|
font-weight: 400;
|
|
font-size: 36px;
|
|
line-height: 1.2;
|
|
letter-spacing: -0.68px;
|
|
margin-bottom: 64px;
|
|
}
|
|
body.page-id-72 main .box-2 .row .col-1 .box-list {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
body.page-id-72 main .box-2 .row .col-1 .box-list .box-list__item {
|
|
display: flex;
|
|
flex-direction: row;
|
|
-moz-column-gap: 40px;
|
|
column-gap: 40px;
|
|
}
|
|
body.page-id-72 main .box-2 .row .col-1 .box-list .box-list__item:not(:last-child) {
|
|
margin-bottom: 64px;
|
|
}
|
|
body.page-id-72 main .box-2 .row .col-1 .box-list .box-list__item .box-list__image {
|
|
width: 75px;
|
|
min-width: 75px;
|
|
height: 75px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: rgba(217, 186, 92, 0.32);
|
|
border-radius: 29px;
|
|
}
|
|
body.page-id-72 main .box-2 .row .col-1 .box-list .box-list__item .box-list__data h3 {
|
|
color: #ffffff;
|
|
font-weight: 400;
|
|
font-size: 28px;
|
|
line-height: 1.2;
|
|
letter-spacing: -0.54px;
|
|
margin-bottom: 16px;
|
|
}
|
|
body.page-id-72 main .box-2 .row .col-1 .box-list .box-list__item .box-list__data p {
|
|
color: #9e9e9e;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 1.5;
|
|
letter-spacing: -0.32px;
|
|
}
|
|
body.page-id-72 main .box-2 .row .col-1 .box-list .box-list__item .box-list__data a {
|
|
color: #9e9e9e;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 1.5;
|
|
letter-spacing: -0.32px;
|
|
text-decoration: underline;
|
|
}
|
|
body.page-id-72 main .box-2 .row .col-2 img {
|
|
width: 100%;
|
|
max-width: 450px;
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-72 main .box-2 .row .col-2 img {
|
|
margin: 0 auto;
|
|
}
|
|
}
|
|
body.page-id-72 main .box-3 {
|
|
padding-top: 140px;
|
|
padding-bottom: 140px;
|
|
background: #fafafa;
|
|
}
|
|
body.page-id-72 main .box-3 .row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: flex-end;
|
|
-moz-column-gap: 64px;
|
|
column-gap: 64px;
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-72 main .box-3 .row {
|
|
flex-direction: column;
|
|
align-items: initial;
|
|
row-gap: 100px;
|
|
}
|
|
}
|
|
body.page-id-72 main .box-3 .row .col-1 {
|
|
position: relative;
|
|
padding-left: 64px;
|
|
}
|
|
body.page-id-72 main .box-3 .row .col-1::before {
|
|
content: attr(box-title);
|
|
color: #d4d4d4;
|
|
font-weight: 700;
|
|
font-size: 16px;
|
|
line-height: 1;
|
|
letter-spacing: -0.34px;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
background: #fafafa;
|
|
z-index: 1;
|
|
}
|
|
body.page-id-72 main .box-3 .row .col-1::after {
|
|
content: "";
|
|
position: absolute;
|
|
left: 7px;
|
|
background: #d4d4d4;
|
|
}
|
|
@media (min-width: 992px) {
|
|
body.page-id-72 main .box-3 .row .col-1::before {
|
|
writing-mode: vertical-rl;
|
|
padding-top: 24px;
|
|
transform: rotate(180deg);
|
|
}
|
|
body.page-id-72 main .box-3 .row .col-1::after {
|
|
top: 10px;
|
|
bottom: 0;
|
|
width: 1px;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-72 main .box-3 .row .col-1::before {
|
|
padding-right: 24px;
|
|
}
|
|
body.page-id-72 main .box-3 .row .col-1::after {
|
|
top: 7px;
|
|
right: 0;
|
|
height: 1px;
|
|
width: 100%;
|
|
}
|
|
}
|
|
body.page-id-72 main .box-3 .row .col-1 img {
|
|
width: 100%;
|
|
max-width: 530px;
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-72 main .box-3 .row .col-1 {
|
|
padding-left: 0;
|
|
}
|
|
body.page-id-72 main .box-3 .row .col-1::before {
|
|
top: auto;
|
|
bottom: -60px;
|
|
}
|
|
body.page-id-72 main .box-3 .row .col-1::after {
|
|
top: auto;
|
|
bottom: -55px;
|
|
}
|
|
body.page-id-72 main .box-3 .row .col-1 img {
|
|
margin: 0 auto;
|
|
}
|
|
}
|
|
body.page-id-72 main .box-3 .row .col-2 {
|
|
width: 100%;
|
|
max-width: 600px;
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-72 main .box-3 .row .col-2 {
|
|
max-width: unset;
|
|
}
|
|
}
|
|
body.page-id-72 main .box-3 .row .col-2 .mini_title {
|
|
margin-bottom: 40px;
|
|
}
|
|
body.page-id-72 main .box-3 .row .col-2 .mini_title p {
|
|
color: #232323;
|
|
font-weight: 400;
|
|
font-size: 20px;
|
|
line-height: 1.5;
|
|
letter-spacing: -0.38px;
|
|
}
|
|
body.page-id-72 main .box-3 .row .col-2 ul {
|
|
padding: 0;
|
|
margin: 0 0 80px 0;
|
|
}
|
|
@media (max-width: 1199px) {
|
|
body.page-id-72 main .box-3 .row .col-2 ul {
|
|
margin: 0 0 40px 0;
|
|
}
|
|
}
|
|
body.page-id-72 main .box-3 .row .col-2 ul li {
|
|
position: relative;
|
|
padding-left: 33px;
|
|
}
|
|
body.page-id-72 main .box-3 .row .col-2 ul li:not(:last-child) {
|
|
margin-bottom: 40px;
|
|
}
|
|
@media (max-width: 1199px) {
|
|
body.page-id-72 main .box-3 .row .col-2 ul li:not(:last-child) {
|
|
margin-bottom: 20px;
|
|
}
|
|
}
|
|
body.page-id-72 main .box-3 .row .col-2 ul li::before {
|
|
content: "";
|
|
position: absolute;
|
|
width: 9px;
|
|
min-width: 9px;
|
|
height: 9px;
|
|
left: 0;
|
|
top: 15px;
|
|
border-radius: 100%;
|
|
background: #d9ba5c;
|
|
}
|
|
body.page-id-72 main .box-3 .row .col-2 ul li p {
|
|
color: #232323;
|
|
font-weight: 400;
|
|
font-size: 36px;
|
|
line-height: 1.2;
|
|
letter-spacing: -0.68px;
|
|
margin-bottom: 0;
|
|
}
|
|
@media (max-width: 1369px) {
|
|
body.page-id-72 main .box-3 .row .col-2 ul li p {
|
|
font-size: 26px;
|
|
}
|
|
}
|
|
body.page-id-72 main .box-3 .row .col-2 .info_box {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 20px;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 24px;
|
|
border-radius: 20px;
|
|
background: rgba(217, 186, 92, 0.1);
|
|
}
|
|
body.page-id-72 main .box-3 .row .col-2 .info_box p {
|
|
color: #232323;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 1.5;
|
|
letter-spacing: -0.32px;
|
|
margin-bottom: 0;
|
|
}
|
|
body.page-id-72 main .box-3 .row .col-2 .info_box p strong {
|
|
color: #d9ba5c;
|
|
}
|
|
body.page-id-72 main .box-4 {
|
|
padding-top: 180px;
|
|
padding-bottom: 140px;
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-72 main .box-4 {
|
|
padding-top: 120px;
|
|
padding-bottom: 120px;
|
|
}
|
|
}
|
|
body.page-id-72 main .box-4 .row {
|
|
position: relative;
|
|
padding-left: 100px;
|
|
}
|
|
body.page-id-72 main .box-4 .row::before {
|
|
content: attr(box-title);
|
|
color: #d4d4d4;
|
|
font-weight: 700;
|
|
font-size: 16px;
|
|
line-height: 1;
|
|
letter-spacing: -0.34px;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
background: #ffffff;
|
|
z-index: 1;
|
|
}
|
|
body.page-id-72 main .box-4 .row::after {
|
|
content: "";
|
|
position: absolute;
|
|
left: 7px;
|
|
background: #d4d4d4;
|
|
}
|
|
@media (min-width: 992px) {
|
|
body.page-id-72 main .box-4 .row::before {
|
|
writing-mode: vertical-rl;
|
|
padding-top: 24px;
|
|
transform: rotate(180deg);
|
|
}
|
|
body.page-id-72 main .box-4 .row::after {
|
|
top: 10px;
|
|
bottom: 0;
|
|
width: 1px;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-72 main .box-4 .row::before {
|
|
padding-right: 24px;
|
|
}
|
|
body.page-id-72 main .box-4 .row::after {
|
|
top: 7px;
|
|
right: 0;
|
|
height: 1px;
|
|
width: 100%;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-72 main .box-4 .row {
|
|
padding-left: 0;
|
|
padding-top: 60px;
|
|
}
|
|
}
|
|
body.page-id-72 main .box-4 .row ul {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 64px;
|
|
padding: 0;
|
|
margin: 0 0 60px 0;
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-72 main .box-4 .row ul {
|
|
grid-template-columns: 1fr 1fr;
|
|
}
|
|
}
|
|
@media (max-width: 767px) {
|
|
body.page-id-72 main .box-4 .row ul {
|
|
grid-template-columns: 1fr;
|
|
gap: 26px;
|
|
}
|
|
}
|
|
body.page-id-72 main .box-4 .row ul li {
|
|
position: relative;
|
|
padding-top: 16px;
|
|
}
|
|
body.page-id-72 main .box-4 .row ul li::before {
|
|
content: "";
|
|
position: absolute;
|
|
width: 71px;
|
|
height: 2px;
|
|
left: 0;
|
|
top: 0;
|
|
background: #d9ba5c;
|
|
}
|
|
body.page-id-72 main .box-4 .row ul li p {
|
|
color: #232323;
|
|
font-weight: 400;
|
|
font-size: 36px;
|
|
line-height: 1.2;
|
|
letter-spacing: -0.68px;
|
|
}
|
|
@media (max-width: 1199px) {
|
|
body.page-id-72 main .box-4 .row ul li p {
|
|
font-size: 26px;
|
|
}
|
|
}
|
|
@media (max-width: 767px) {
|
|
body.page-id-72 main .box-4 .row ul li p {
|
|
font-size: 22px;
|
|
}
|
|
}
|
|
body.page-id-72 main .box-4 .row .info_box {
|
|
padding: 24px;
|
|
border-radius: 20px;
|
|
background: rgba(217, 186, 92, 0.1);
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 20px;
|
|
}
|
|
body.page-id-72 main .box-4 .row .info_box p {
|
|
margin: 0;
|
|
}
|
|
body.page-id-72 main .box-4 .row .info_box p strong {
|
|
color: #d9ba5c;
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-72 main .box-4 .row .info_box {
|
|
flex-wrap: wrap;
|
|
}
|
|
body.page-id-72 main .box-4 .row .info_box p {
|
|
order: 1;
|
|
}
|
|
body.page-id-72 main .box-4 .row .info_box .btn_4 {
|
|
order: 2;
|
|
}
|
|
body.page-id-72 main .box-4 .row .info_box .btn_2, body.page-id-72 main .box-4 header#masthead .row .info_box .main-navigation-secondary li:nth-child(2) a, header#masthead body.page-id-72 main .box-4 .row .info_box .main-navigation-secondary li:nth-child(2) a, body.page-id-72 main .box-4 header#masthead .row .main-navigation-secondary li:nth-child(2) .info_box a, header#masthead body.page-id-72 main .box-4 .row .main-navigation-secondary li:nth-child(2) .info_box a, body.page-id-72 main .box-4 footer#site-footer .footer-1 .row .info_box .col-1 .box-contact form .form-fields .c-item-6 .c-row .c-col-2 input, footer#site-footer .footer-1 body.page-id-72 main .box-4 .row .info_box .col-1 .box-contact form .form-fields .c-item-6 .c-row .c-col-2 input, body.page-id-72 main .box-4 footer#site-footer .footer-1 .row .col-1 .box-contact form .form-fields .c-item-6 .c-row .c-col-2 .info_box input, footer#site-footer .footer-1 body.page-id-72 main .box-4 .row .col-1 .box-contact form .form-fields .c-item-6 .c-row .c-col-2 .info_box input {
|
|
order: 3;
|
|
}
|
|
}
|
|
body.page-id-72 main .box-5 {
|
|
position: relative;
|
|
background: #faf8f2;
|
|
}
|
|
body.page-id-72 main .box-5 .row {
|
|
display: flex;
|
|
padding: 160px 0 130px;
|
|
}
|
|
@media (min-width: 992px) {
|
|
body.page-id-72 main .box-5 .row {
|
|
flex-direction: row;
|
|
-moz-column-gap: 100px;
|
|
column-gap: 100px;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-72 main .box-5 .row {
|
|
flex-direction: column-reverse;
|
|
padding: 0 0 80px;
|
|
row-gap: 80px;
|
|
}
|
|
}
|
|
@media (max-width: 1369px) {
|
|
body.page-id-72 main .box-5 .row {
|
|
padding: 100px 0 100px;
|
|
}
|
|
}
|
|
body.page-id-72 main .box-5 .row .col-1 {
|
|
position: relative;
|
|
width: 100%;
|
|
max-width: 700px;
|
|
}
|
|
body.page-id-72 main .box-5 .row .col-1::before {
|
|
content: attr(box-title);
|
|
color: rgba(217, 186, 92, 0.7490196078);
|
|
font-weight: 700;
|
|
font-size: 16px;
|
|
line-height: 1;
|
|
letter-spacing: -0.34px;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
background: #faf8f2;
|
|
z-index: 1;
|
|
}
|
|
body.page-id-72 main .box-5 .row .col-1::after {
|
|
content: "";
|
|
position: absolute;
|
|
left: 7px;
|
|
background: rgba(217, 186, 92, 0.7490196078);
|
|
}
|
|
@media (min-width: 992px) {
|
|
body.page-id-72 main .box-5 .row .col-1::before {
|
|
writing-mode: vertical-rl;
|
|
padding-top: 24px;
|
|
transform: rotate(180deg);
|
|
}
|
|
body.page-id-72 main .box-5 .row .col-1::after {
|
|
top: 10px;
|
|
bottom: 0;
|
|
width: 1px;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-72 main .box-5 .row .col-1::before {
|
|
padding-right: 24px;
|
|
}
|
|
body.page-id-72 main .box-5 .row .col-1::after {
|
|
top: 7px;
|
|
right: 0;
|
|
height: 1px;
|
|
width: 100%;
|
|
}
|
|
}
|
|
@media (max-width: 1369px) {
|
|
body.page-id-72 main .box-5 .row .col-1 {
|
|
max-width: 600px;
|
|
}
|
|
}
|
|
@media (min-width: 992px) {
|
|
body.page-id-72 main .box-5 .row .col-1 {
|
|
padding-left: 100px;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-72 main .box-5 .row .col-1 {
|
|
padding-top: 64px;
|
|
}
|
|
}
|
|
@media (min-width: 992px) {
|
|
body.page-id-72 main .box-5 .row .col-1 .box-text {
|
|
margin-bottom: 120px;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-72 main .box-5 .row .col-1 .box-text {
|
|
margin-bottom: 70px;
|
|
}
|
|
}
|
|
body.page-id-72 main .box-5 .row .col-1 .box-text p {
|
|
color: #232323;
|
|
font-weight: 400;
|
|
font-size: 28px;
|
|
line-height: 1.5;
|
|
letter-spacing: -0.53px;
|
|
}
|
|
body.page-id-72 main .box-5 .row .col-1 .box-text p strong {
|
|
color: #d9ba5c;
|
|
font-weight: inherit;
|
|
}
|
|
body.page-id-72 main .box-5 .row .col-1 ul {
|
|
padding: 0;
|
|
margin: 0;
|
|
display: flex;
|
|
}
|
|
@media (min-width: 992px) {
|
|
body.page-id-72 main .box-5 .row .col-1 ul {
|
|
flex-direction: row;
|
|
align-items: center;
|
|
-moz-column-gap: 40px;
|
|
column-gap: 40px;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-72 main .box-5 .row .col-1 ul {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
row-gap: 32px;
|
|
}
|
|
}
|
|
@media (min-width: 992px) {
|
|
body.page-id-72 main .box-5 .row .col-2 {
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-72 main .box-5 .row .col-2 {
|
|
height: 400px;
|
|
}
|
|
}
|
|
body.page-id-72 main .box-5 .row .col-2 img {
|
|
height: 100%;
|
|
-o-object-fit: cover;
|
|
object-fit: cover;
|
|
-o-object-position: center;
|
|
object-position: center;
|
|
width: 673px;
|
|
}
|
|
@media (max-width: 1500px) {
|
|
body.page-id-72 main .box-5 .row .col-2 img {
|
|
width: 600px;
|
|
}
|
|
}
|
|
@media (min-width: 1200px) and (max-width: 1369px) {
|
|
body.page-id-72 main .box-5 .row .col-2 img {
|
|
width: 530px;
|
|
}
|
|
}
|
|
@media (min-width: 992px) and (max-width: 1199px) {
|
|
body.page-id-72 main .box-5 .row .col-2 img {
|
|
width: 350px;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-72 main .box-5 .row .col-2 img {
|
|
width: 100%;
|
|
}
|
|
}
|
|
body.page-id-72 main .box-6 {
|
|
background: #232323;
|
|
padding: 200px 0;
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-72 main .box-6 {
|
|
padding: 120px 0;
|
|
}
|
|
}
|
|
body.page-id-72 main .box-6 .row {
|
|
position: relative;
|
|
padding-left: 100px;
|
|
}
|
|
body.page-id-72 main .box-6 .row::before {
|
|
content: attr(box-title);
|
|
color: #6a6a6a;
|
|
font-weight: 700;
|
|
font-size: 16px;
|
|
line-height: 1;
|
|
letter-spacing: -0.34px;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
background: #232323;
|
|
z-index: 1;
|
|
}
|
|
body.page-id-72 main .box-6 .row::after {
|
|
content: "";
|
|
position: absolute;
|
|
left: 7px;
|
|
background: #6a6a6a;
|
|
}
|
|
@media (min-width: 992px) {
|
|
body.page-id-72 main .box-6 .row::before {
|
|
writing-mode: vertical-rl;
|
|
padding-top: 24px;
|
|
transform: rotate(180deg);
|
|
}
|
|
body.page-id-72 main .box-6 .row::after {
|
|
top: 10px;
|
|
bottom: 0;
|
|
width: 1px;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-72 main .box-6 .row::before {
|
|
padding-right: 24px;
|
|
}
|
|
body.page-id-72 main .box-6 .row::after {
|
|
top: 7px;
|
|
right: 0;
|
|
height: 1px;
|
|
width: 100%;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-72 main .box-6 .row {
|
|
padding-left: 0;
|
|
padding-top: 60px;
|
|
}
|
|
}
|
|
body.page-id-72 main .box-6 .row .col-1 {
|
|
margin-bottom: 100px;
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-72 main .box-6 .row .col-1 {
|
|
margin-bottom: 60px;
|
|
}
|
|
}
|
|
body.page-id-72 main .box-6 .row .col-1 h2 {
|
|
color: #ffffff;
|
|
font-weight: 400;
|
|
font-size: 36px;
|
|
line-height: 1.2;
|
|
letter-spacing: -0.68px;
|
|
}
|
|
body.page-id-72 main .box-6 .row .col-2 .box-list {
|
|
padding: 0;
|
|
margin: 0;
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 80px;
|
|
}
|
|
@media (max-width: 767px) {
|
|
body.page-id-72 main .box-6 .row .col-2 .box-list {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
body.page-id-72 main .box-6 .row .col-2 .box-list .box-list__item {
|
|
display: flex;
|
|
flex-direction: row;
|
|
-moz-column-gap: 40px;
|
|
column-gap: 40px;
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-72 main .box-6 .row .col-2 .box-list .box-list__item {
|
|
flex-direction: column;
|
|
row-gap: 40px;
|
|
}
|
|
}
|
|
@media (min-width: 576px) and (max-width: 767px) {
|
|
body.page-id-72 main .box-6 .row .col-2 .box-list .box-list__item {
|
|
flex-direction: row;
|
|
}
|
|
}
|
|
body.page-id-72 main .box-6 .row .col-2 .box-list .box-list__item .box-list__image {
|
|
width: 75px;
|
|
min-width: 75px;
|
|
height: 75px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: rgba(217, 186, 92, 0.32);
|
|
border-radius: 29px;
|
|
}
|
|
body.page-id-72 main .box-6 .row .col-2 .box-list .box-list__item .box-list__data h3 {
|
|
color: #ffffff;
|
|
font-weight: 400;
|
|
font-size: 28px;
|
|
line-height: 1.2;
|
|
letter-spacing: -0.54px;
|
|
margin-bottom: 16px;
|
|
}
|
|
body.page-id-72 main .box-6 .row .col-2 .box-list .box-list__item .box-list__data p {
|
|
color: #9e9e9e;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 1.5;
|
|
letter-spacing: -0.32px;
|
|
}
|
|
body.page-id-72 main .box-6 .row .col-2 .box-list .box-list__item .box-list__data a {
|
|
color: #9e9e9e;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 1.5;
|
|
letter-spacing: -0.32px;
|
|
text-decoration: underline;
|
|
}
|
|
@media (min-width: 992px) {
|
|
body.page-id-72 main .box-7 {
|
|
padding-top: 164px;
|
|
padding-bottom: 200px;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-72 main .box-7 {
|
|
padding-top: 100px;
|
|
padding-bottom: 100px;
|
|
}
|
|
}
|
|
body.page-id-72 main .box-7 .row {
|
|
position: relative;
|
|
}
|
|
body.page-id-72 main .box-7 .row::before {
|
|
content: attr(box-title);
|
|
color: #d4d4d4;
|
|
font-weight: 700;
|
|
font-size: 16px;
|
|
line-height: 1;
|
|
letter-spacing: -0.34px;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
background: #ffffff;
|
|
z-index: 1;
|
|
}
|
|
body.page-id-72 main .box-7 .row::after {
|
|
content: "";
|
|
position: absolute;
|
|
left: 7px;
|
|
background: #d4d4d4;
|
|
}
|
|
@media (min-width: 992px) {
|
|
body.page-id-72 main .box-7 .row::before {
|
|
writing-mode: vertical-rl;
|
|
padding-top: 24px;
|
|
transform: rotate(180deg);
|
|
}
|
|
body.page-id-72 main .box-7 .row::after {
|
|
top: 10px;
|
|
bottom: 0;
|
|
width: 1px;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-72 main .box-7 .row::before {
|
|
padding-right: 24px;
|
|
}
|
|
body.page-id-72 main .box-7 .row::after {
|
|
top: 7px;
|
|
right: 0;
|
|
height: 1px;
|
|
width: 100%;
|
|
}
|
|
}
|
|
@media (min-width: 992px) {
|
|
body.page-id-72 main .box-7 .row {
|
|
padding-left: 64px;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-72 main .box-7 .row {
|
|
padding-top: 64px;
|
|
}
|
|
}
|
|
body.page-id-72 main .box-7 .row .col-1 .box-title {
|
|
margin-bottom: 40px;
|
|
}
|
|
body.page-id-72 main .box-7 .row .col-1 .box-title h2 {
|
|
color: #232323;
|
|
font-weight: 400;
|
|
font-size: 48px;
|
|
line-height: 1.5;
|
|
letter-spacing: -0.96px;
|
|
}
|
|
body.page-id-72 main .box-7 .row .col-2 {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 32px;
|
|
}
|
|
@media (min-width: 576px) and (max-width: 991px) {
|
|
body.page-id-72 main .box-7 .row .col-2 {
|
|
padding-top: 64px;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
body.page-id-72 main .box-7 .row .col-2 .article-card:nth-child(3) {
|
|
display: none;
|
|
}
|
|
}
|
|
@media (max-width: 575px) {
|
|
body.page-id-72 main .box-7 .row .col-2 {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
|
|
body.page-id-91 main .box-1 {
|
|
position: relative;
|
|
height: 740px;
|
|
display: flex;
|
|
align-items: flex-end;
|
|
}
|
|
@media (max-width: 767px) {
|
|
body.page-id-91 main .box-1 {
|
|
height: 720px;
|
|
}
|
|
}
|
|
body.page-id-91 main .box-1 .box-bg {
|
|
position: absolute;
|
|
inset: 0;
|
|
}
|
|
body.page-id-91 main .box-1 .box-bg::before {
|
|
content: "";
|
|
position: absolute;
|
|
inset: 0;
|
|
background: rgba(0, 0, 0, 0.5);
|
|
}
|
|
body.page-id-91 main .box-1 .box-bg img {
|
|
height: 100%;
|
|
width: 100%;
|
|
-o-object-fit: cover;
|
|
object-fit: cover;
|
|
-o-object-position: top center;
|
|
object-position: top center;
|
|
}
|
|
body.page-id-91 main .box-1 .row {
|
|
position: relative;
|
|
margin-bottom: 100px;
|
|
}
|
|
body.page-id-91 main .box-1 .row .col-1 #breadcrumbs_box {
|
|
margin-bottom: 24px;
|
|
}
|
|
body.page-id-91 main .box-1 .row .col-1 #breadcrumbs_box #breadcrumbs {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
body.page-id-91 main .box-1 .row .col-1 .box-title {
|
|
padding-bottom: 40px;
|
|
margin-bottom: 40px;
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.5);
|
|
}
|
|
body.page-id-91 main .box-1 .row .col-1 .box-title h2 {
|
|
color: #ffffff;
|
|
font-weight: 500;
|
|
font-size: 48px;
|
|
line-height: 1.2;
|
|
letter-spacing: -0.96px;
|
|
}
|
|
@media (max-width: 767px) {
|
|
body.page-id-91 main .box-1 .row .col-1 .box-title h2 {
|
|
font-size: 34px;
|
|
}
|
|
}
|
|
body.page-id-91 main .box-1 .row .col-1 .box-info {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
gap: 40px;
|
|
}
|
|
@media (max-width: 767px) {
|
|
body.page-id-91 main .box-1 .row .col-1 .box-info {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
row-gap: 20px;
|
|
}
|
|
}
|
|
body.page-id-91 main .box-1 .row .col-1 .box-info p {
|
|
color: #ffffff;
|
|
font-weight: 400;
|
|
font-size: 20px;
|
|
line-height: 1.5;
|
|
letter-spacing: -0.38px;
|
|
margin-bottom: 0;
|
|
max-width: 520px;
|
|
}
|
|
body.page-id-91 main .box-2 {
|
|
position: relative;
|
|
background: #ffffff;
|
|
}
|
|
body.page-id-91 main .box-2::before {
|
|
content: "";
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
top: 0;
|
|
height: 105px;
|
|
background: linear-gradient(0deg, #d9d9d9 0%, rgba(255, 255, 255, 0) 100%);
|
|
transform: translateY(-100%);
|
|
z-index: -1;
|
|
}
|
|
body.page-id-91 main .box-2 .row-2 {
|
|
padding-top: 130px;
|
|
padding-bottom: 120px;
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-91 main .box-2 .row-2 {
|
|
padding-top: 100px;
|
|
padding-bottom: 100px;
|
|
}
|
|
}
|
|
@media (max-width: 767px) {
|
|
body.page-id-91 main .box-2 .row-2 .c-tabs .c-tabs--nav {
|
|
flex-direction: column;
|
|
border-left: 1px solid #d4d4d4;
|
|
border-bottom: none;
|
|
}
|
|
}
|
|
@media (max-width: 767px) {
|
|
body.page-id-91 main .box-2 .row-2 .c-tabs .c-tabs--nav li {
|
|
padding-top: 15px;
|
|
padding-left: 16px;
|
|
margin-left: -1px;
|
|
border-left: 1px solid #6a6a6a;
|
|
}
|
|
body.page-id-91 main .box-2 .row-2 .c-tabs .c-tabs--nav li.active {
|
|
border-bottom: none;
|
|
border-left-color: #d9ba5c;
|
|
}
|
|
}
|
|
body.page-id-91 main .box-2 .row-2 .t-row .t-col-1 {
|
|
width: 60%;
|
|
}
|
|
body.page-id-91 main .box-2 .row-2 .t-row .t-col-2 {
|
|
width: 40%;
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-91 main .box-2 .row-2 .t-row .t-col {
|
|
width: 100%;
|
|
}
|
|
}
|
|
body.page-id-91 main .box-2 .row-2 .t-row-1 {
|
|
margin-bottom: 100px;
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-91 main .box-2 .row-2 .t-row-1 {
|
|
margin-bottom: 40px;
|
|
}
|
|
}
|
|
body.page-id-91 main .box-2 .row-2 .t-row-1 .t-col-1 {
|
|
width: 65%;
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-91 main .box-2 .row-2 .t-row-1 .t-col-1 {
|
|
width: 100%;
|
|
}
|
|
}
|
|
body.page-id-91 main .box-2 .row-2 .t-row-1 .t-col-1 .t-head {
|
|
margin-bottom: 24px;
|
|
}
|
|
body.page-id-91 main .box-2 .row-2 .t-row-1 .t-col-1 .t-head h2 {
|
|
color: #232323;
|
|
font-weight: 400;
|
|
font-size: 36px;
|
|
line-height: 1.2;
|
|
letter-spacing: -0.72px;
|
|
}
|
|
@media (max-width: 767px) {
|
|
body.page-id-91 main .box-2 .row-2 .t-row-1 .t-col-1 .t-head h2 {
|
|
font-size: 32px;
|
|
}
|
|
}
|
|
body.page-id-91 main .box-2 .row-2 .t-row-1 .t-col-1 .t-text p {
|
|
color: #232323;
|
|
font-weight: 400;
|
|
font-size: 20px;
|
|
line-height: 1.5;
|
|
letter-spacing: -0.38px;
|
|
}
|
|
@media (max-width: 767px) {
|
|
body.page-id-91 main .box-2 .row-2 .t-row-1 .t-col-1 .t-text p {
|
|
font-size: 18px;
|
|
}
|
|
}
|
|
body.page-id-91 main .box-2 .row-2 .t-row-2 {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-91 main .box-2 .row-2 .t-row-2 {
|
|
flex-direction: column;
|
|
row-gap: 40px;
|
|
}
|
|
}
|
|
body.page-id-91 main .box-2 .row-2 .t-row-2 .t-col-1 .c-acc-advanced .c-acc--item:not(:last-child) {
|
|
border-bottom: 1px solid rgba(106, 106, 106, 0.4);
|
|
}
|
|
body.page-id-91 main .box-2 .row-2 .t-row-2 .t-col-2 .c-acc-advanced .c-acc--item {
|
|
display: none;
|
|
}
|
|
body.page-id-91 main .box-2 .row-2 .t-row .c-acc-advanced {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
@media (min-width: 992px) {
|
|
body.page-id-91 main .box-2 .row-2 .t-row .c-acc-advanced {
|
|
margin-right: 30px;
|
|
max-width: 630px;
|
|
}
|
|
}
|
|
body.page-id-91 main .box-2 .row-2 .t-row .c-acc-advanced .c-acc--item.active .c-acc--head {
|
|
padding-left: 27px;
|
|
transition-delay: 0ms;
|
|
}
|
|
body.page-id-91 main .box-2 .row-2 .t-row .c-acc-advanced .c-acc--item.active .c-acc--head .icon {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
transition-delay: 250ms;
|
|
}
|
|
body.page-id-91 main .box-2 .row-2 .t-row .c-acc-advanced .c-acc--item.active .c-acc--head span {
|
|
color: #d9ba5c;
|
|
transition-delay: 0ms;
|
|
}
|
|
body.page-id-91 main .box-2 .row-2 .t-row .c-acc-advanced .c-acc--item .c-acc--head {
|
|
position: relative;
|
|
transition: all 250ms ease-in-out;
|
|
cursor: pointer;
|
|
transition-delay: 250ms;
|
|
}
|
|
body.page-id-91 main .box-2 .row-2 .t-row .c-acc-advanced .c-acc--item .c-acc--head .icon {
|
|
position: absolute;
|
|
display: inline-block;
|
|
width: 12px;
|
|
height: 12px;
|
|
top: 50%;
|
|
left: 0;
|
|
transform: translateY(-50%);
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
transition: all 250ms ease-in-out;
|
|
}
|
|
body.page-id-91 main .box-2 .row-2 .t-row .c-acc-advanced .c-acc--item .c-acc--head .icon::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 0;
|
|
width: 12px;
|
|
height: 1px;
|
|
background: #d9ba5c;
|
|
transform: translateY(-50%);
|
|
}
|
|
body.page-id-91 main .box-2 .row-2 .t-row .c-acc-advanced .c-acc--item .c-acc--head .icon::after {
|
|
content: "";
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
width: 1px;
|
|
height: 12px;
|
|
background: #d9ba5c;
|
|
transform: translateY(-50%) translateX(-50%);
|
|
}
|
|
body.page-id-91 main .box-2 .row-2 .t-row .c-acc-advanced .c-acc--item .c-acc--head span {
|
|
display: block;
|
|
padding: 16px 0;
|
|
color: #232323;
|
|
font-weight: 400;
|
|
font-size: 20px;
|
|
line-height: 1.1;
|
|
letter-spacing: -0.38px;
|
|
transition: all 250ms ease-in-out;
|
|
transition-delay: 250ms;
|
|
}
|
|
@media (min-width: 576px) {
|
|
body.page-id-91 main .box-2 .row-2 .t-row .c-acc-advanced .c-acc--item .c-acc--head span {
|
|
font-size: 18px;
|
|
}
|
|
}
|
|
@media (min-width: 992px) {
|
|
body.page-id-91 main .box-2 .row-2 .t-row .c-acc-advanced .c-acc--item .c-acc--body {
|
|
padding-left: 48px;
|
|
border-left: 1px solid #d9ba5c;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-91 main .box-2 .row-2 .t-row .c-acc-advanced .c-acc--item .c-acc--body {
|
|
padding-top: 40px;
|
|
border-top: 1px solid #d9ba5c;
|
|
}
|
|
}
|
|
body.page-id-91 main .box-2 .row-2 .t-row .c-acc-advanced .c-acc--item .c-acc--body .tab-description--head {
|
|
margin-bottom: 24px;
|
|
}
|
|
body.page-id-91 main .box-2 .row-2 .t-row .c-acc-advanced .c-acc--item .c-acc--body .tab-description--head h3 {
|
|
color: #d9ba5c;
|
|
font-weight: 400;
|
|
font-size: 24px;
|
|
line-height: 1.1;
|
|
letter-spacing: -0.48px;
|
|
}
|
|
body.page-id-91 main .box-2 .row-2 .t-row .c-acc-advanced .c-acc--item .c-acc--body .tab-description--text {
|
|
margin-bottom: 40px;
|
|
}
|
|
body.page-id-91 main .box-2 .row-2 .t-row .c-acc-advanced .c-acc--item .c-acc--body .tab-description--text p {
|
|
color: #232323;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 1.5;
|
|
letter-spacing: -0.32px;
|
|
}
|
|
body.page-id-91 main .box-2 .row-2 .t-row .c-acc-advanced .c-acc--item .c-acc--body .tab-description--text p:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
body.page-id-91 main .box-3 {
|
|
position: relative;
|
|
background: #1b1b1b;
|
|
padding-top: 100px;
|
|
padding-bottom: 100px;
|
|
}
|
|
body.page-id-91 main .box-3 .row {
|
|
display: flex;
|
|
}
|
|
@media (min-width: 992px) {
|
|
body.page-id-91 main .box-3 .row {
|
|
flex-direction: row;
|
|
-moz-column-gap: 100px;
|
|
column-gap: 100px;
|
|
padding: 80px 0 50px;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-91 main .box-3 .row {
|
|
flex-direction: column-reverse;
|
|
padding: 0;
|
|
row-gap: 80px;
|
|
}
|
|
}
|
|
body.page-id-91 main .box-3 .row .col-1 {
|
|
position: relative;
|
|
width: 100%;
|
|
max-width: 670px;
|
|
}
|
|
body.page-id-91 main .box-3 .row .col-1::before {
|
|
content: attr(box-title);
|
|
color: #6a6a6a;
|
|
font-weight: 700;
|
|
font-size: 16px;
|
|
line-height: 1;
|
|
letter-spacing: -0.34px;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
background: #1b1b1b;
|
|
z-index: 1;
|
|
}
|
|
body.page-id-91 main .box-3 .row .col-1::after {
|
|
content: "";
|
|
position: absolute;
|
|
left: 7px;
|
|
background: #6a6a6a;
|
|
}
|
|
@media (min-width: 992px) {
|
|
body.page-id-91 main .box-3 .row .col-1::before {
|
|
writing-mode: vertical-rl;
|
|
padding-top: 24px;
|
|
transform: rotate(180deg);
|
|
}
|
|
body.page-id-91 main .box-3 .row .col-1::after {
|
|
top: 10px;
|
|
bottom: 0;
|
|
width: 1px;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-91 main .box-3 .row .col-1::before {
|
|
padding-right: 24px;
|
|
}
|
|
body.page-id-91 main .box-3 .row .col-1::after {
|
|
top: 7px;
|
|
right: 0;
|
|
height: 1px;
|
|
width: 100%;
|
|
}
|
|
}
|
|
@media (min-width: 992px) {
|
|
body.page-id-91 main .box-3 .row .col-1 {
|
|
padding-left: 100px;
|
|
max-width: 700px;
|
|
}
|
|
}
|
|
@media (max-width: 1199px) {
|
|
body.page-id-91 main .box-3 .row .col-1 {
|
|
max-width: 600px;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-91 main .box-3 .row .col-1 {
|
|
padding-top: 64px;
|
|
max-width: unset;
|
|
}
|
|
}
|
|
body.page-id-91 main .box-3 .row .col-1 .box-head {
|
|
margin-bottom: 24px;
|
|
}
|
|
body.page-id-91 main .box-3 .row .col-1 .box-head h2 {
|
|
color: #ffffff;
|
|
font-weight: 400;
|
|
font-size: 36px;
|
|
line-height: 1.2;
|
|
letter-spacing: -0.72px;
|
|
}
|
|
body.page-id-91 main .box-3 .row .col-1 .box-text {
|
|
margin-bottom: 80px;
|
|
}
|
|
body.page-id-91 main .box-3 .row .col-1 .box-text p {
|
|
color: #9e9e9e;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 1.5;
|
|
letter-spacing: -0.32px;
|
|
}
|
|
body.page-id-91 main .box-3 .row .col-1 ul {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
body.page-id-91 main .box-3 .row .col-1 ul li {
|
|
color: #ffffff;
|
|
font-weight: 400;
|
|
font-size: 20px;
|
|
line-height: 1.2;
|
|
letter-spacing: -0.4px;
|
|
}
|
|
body.page-id-91 main .box-3 .row .col-1 ul li:not(:last-child) {
|
|
margin-bottom: 16px;
|
|
padding-bottom: 16px;
|
|
border-bottom: 1px solid #6a6a6a;
|
|
}
|
|
body.page-id-91 main .box-3 .row .col-2 {
|
|
margin-top: 100px;
|
|
margin-bottom: 100px;
|
|
}
|
|
@media (min-width: 1370px) {
|
|
body.page-id-91 main .box-3 .row .col-2 {
|
|
left: 60%;
|
|
}
|
|
}
|
|
@media (min-width: 992px) {
|
|
body.page-id-91 main .box-3 .row .col-2 {
|
|
position: absolute;
|
|
left: 65%;
|
|
top: 0;
|
|
bottom: 0;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-91 main .box-3 .row .col-2 {
|
|
height: 400px;
|
|
margin: 0;
|
|
}
|
|
}
|
|
body.page-id-91 main .box-3 .row .col-2 img {
|
|
height: 100%;
|
|
-o-object-fit: cover;
|
|
object-fit: cover;
|
|
-o-object-position: left;
|
|
object-position: left;
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-91 main .box-3 .row .col-2 img {
|
|
margin: 0 auto;
|
|
}
|
|
}
|
|
body.page-id-91 main .box-4 {
|
|
padding-top: 130px;
|
|
padding-bottom: 160px;
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-91 main .box-4 {
|
|
padding-top: 100px;
|
|
padding-bottom: 130px;
|
|
}
|
|
}
|
|
body.page-id-91 main .box-4 .row-1 {
|
|
margin-bottom: 64px;
|
|
}
|
|
body.page-id-91 main .box-4 .row-1 h2 {
|
|
color: #232323;
|
|
font-weight: 400;
|
|
font-size: 20px;
|
|
line-height: 1.1;
|
|
letter-spacing: -0.38px;
|
|
}
|
|
body.page-id-91 main .box-4 .row-2 .c-acc {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
body.page-id-91 main .box-4 .row-2 .c-acc .c-acc--item {
|
|
border-bottom: 1px solid #d4d4d4;
|
|
}
|
|
body.page-id-91 main .box-4 .row-2 .c-acc .c-acc--item:first-child {
|
|
border-top: 1px solid #d4d4d4;
|
|
}
|
|
body.page-id-91 main .box-4 .row-2 .c-acc .c-acc--item.active .c-acc--head .icon::after {
|
|
height: 0;
|
|
}
|
|
body.page-id-91 main .box-4 .row-2 .c-acc .c-acc--item .c-acc--head {
|
|
position: relative;
|
|
padding-top: 24px;
|
|
padding-bottom: 24px;
|
|
padding-left: 48px;
|
|
}
|
|
body.page-id-91 main .box-4 .row-2 .c-acc .c-acc--item .c-acc--head span {
|
|
color: #232323;
|
|
font-weight: 400;
|
|
font-size: 28px;
|
|
line-height: 1.5;
|
|
letter-spacing: -0.56px;
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-91 main .box-4 .row-2 .c-acc .c-acc--item .c-acc--head span {
|
|
font-size: 20px;
|
|
}
|
|
}
|
|
@media (max-width: 575px) {
|
|
body.page-id-91 main .box-4 .row-2 .c-acc .c-acc--item .c-acc--head span {
|
|
font-size: 18px;
|
|
}
|
|
}
|
|
body.page-id-91 main .box-4 .row-2 .c-acc .c-acc--item .c-acc--head .icon {
|
|
position: absolute;
|
|
display: inline-block;
|
|
width: 24px;
|
|
height: 24px;
|
|
top: 50%;
|
|
left: 0;
|
|
transform: translateY(-50%);
|
|
transition: all 250ms ease-in-out;
|
|
}
|
|
body.page-id-91 main .box-4 .row-2 .c-acc .c-acc--item .c-acc--head .icon::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 0;
|
|
width: 24px;
|
|
height: 1px;
|
|
background: #d9ba5c;
|
|
transform: translateY(-50%);
|
|
}
|
|
body.page-id-91 main .box-4 .row-2 .c-acc .c-acc--item .c-acc--head .icon::after {
|
|
content: "";
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
width: 1px;
|
|
height: 24px;
|
|
background: #d9ba5c;
|
|
transform: translateY(-50%) translateX(-50%);
|
|
transition: all 250ms ease-in-out;
|
|
}
|
|
body.page-id-91 main .box-4 .row-2 .c-acc .c-acc--item .c-acc--body {
|
|
display: none;
|
|
}
|
|
body.page-id-91 main .box-4 .row-2 .c-acc .c-acc--item .c-acc--body .c-acc--body-text {
|
|
padding-bottom: 24px;
|
|
}
|
|
body.page-id-91 main .box-4 .row-2 .c-acc .c-acc--item .c-acc--body .c-acc--body-text p {
|
|
color: #232323;
|
|
font-weight: 400;
|
|
font-size: 20px;
|
|
line-height: 1.5;
|
|
letter-spacing: -0.38px;
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-91 main .box-4 .row-2 .c-acc .c-acc--item .c-acc--body .c-acc--body-text p {
|
|
font-size: 18px;
|
|
}
|
|
}
|
|
@media (max-width: 575px) {
|
|
body.page-id-91 main .box-4 .row-2 .c-acc .c-acc--item .c-acc--body .c-acc--body-text p {
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
body.page-id-91 main .box-4 .row-2 .c-acc .c-acc--item .c-acc--body .c-acc--body-text ul {
|
|
margin-left: 20px;
|
|
list-style: initial;
|
|
}
|
|
body.page-id-91 main .box-4 .row-2 .c-acc .c-acc--item .c-acc--body .c-acc--body-text ul li {
|
|
color: #232323;
|
|
font-weight: 400;
|
|
font-size: 20px;
|
|
line-height: 1.5;
|
|
letter-spacing: -0.38px;
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-91 main .box-4 .row-2 .c-acc .c-acc--item .c-acc--body .c-acc--body-text ul li {
|
|
font-size: 18px;
|
|
}
|
|
}
|
|
@media (max-width: 575px) {
|
|
body.page-id-91 main .box-4 .row-2 .c-acc .c-acc--item .c-acc--body .c-acc--body-text ul li {
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
|
|
body.page-id-134.no-scroll {
|
|
overflow: hidden;
|
|
}
|
|
body.page-id-134 main {
|
|
padding-top: 80px;
|
|
}
|
|
body.page-id-134 main .box-1 {
|
|
margin-bottom: 80px;
|
|
}
|
|
body.page-id-134 main .box-1 .row .col-1 .box-head {
|
|
width: 100%;
|
|
max-width: 600px;
|
|
}
|
|
body.page-id-134 main .box-1 .row .col-1 .box-head h2 {
|
|
color: #232323;
|
|
font-weight: 500;
|
|
font-size: 64px;
|
|
line-height: 120%;
|
|
letter-spacing: -1.4px;
|
|
}
|
|
@media (max-width: 1199px) {
|
|
body.page-id-134 main .box-1 .row .col-1 .box-head h2 {
|
|
font-size: 54px;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-134 main .box-1 .row .col-1 .box-head h2 {
|
|
font-size: 48px;
|
|
}
|
|
}
|
|
@media (max-width: 575px) {
|
|
body.page-id-134 main .box-1 .row .col-1 .box-head h2 {
|
|
font-size: 40px;
|
|
}
|
|
}
|
|
body.page-id-134 main .box-2 {
|
|
margin-bottom: 180px;
|
|
}
|
|
body.page-id-134 main .box-2 .row .tiles {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
-moz-column-gap: 32px;
|
|
column-gap: 32px;
|
|
row-gap: 40px;
|
|
}
|
|
@media (max-width: 767px) {
|
|
body.page-id-134 main .box-2 .row .tiles {
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
}
|
|
}
|
|
body.page-id-134 main .box-2 .row .tiles .tile .tile--btn {
|
|
width: 45px;
|
|
min-width: 45px;
|
|
height: 45px;
|
|
line-height: 0;
|
|
border-radius: 0;
|
|
margin: 0;
|
|
padding: 0;
|
|
position: absolute;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: #ffffff;
|
|
}
|
|
body.page-id-134 main .box-2 .row .tiles .tile .tile--btn img {
|
|
width: 100%;
|
|
max-width: -moz-fit-content;
|
|
max-width: fit-content;
|
|
}
|
|
@media (max-width: 575px) {
|
|
body.page-id-134 main .box-2 .row .tiles .tile .tile--btn {
|
|
width: 35px;
|
|
min-width: 35px;
|
|
height: 35px;
|
|
}
|
|
}
|
|
body.page-id-134 main .box-2 .row .tiles .tile .tile--wrapper .tile--img {
|
|
position: relative;
|
|
margin-bottom: 24px;
|
|
}
|
|
@media (max-width: 575px) {
|
|
body.page-id-134 main .box-2 .row .tiles .tile .tile--wrapper .tile--img {
|
|
margin-bottom: 12px;
|
|
}
|
|
}
|
|
body.page-id-134 main .box-2 .row .tiles .tile .tile--wrapper .tile--img > img {
|
|
width: 100%;
|
|
}
|
|
body.page-id-134 main .box-2 .row .tiles .tile .tile--wrapper .tile--img .tile--btn {
|
|
bottom: 16px;
|
|
right: 16px;
|
|
}
|
|
body.page-id-134 main .box-2 .row .tiles .tile .tile--wrapper .tile--data h3 {
|
|
color: #d9ba5c;
|
|
font-weight: 400;
|
|
font-size: 28px;
|
|
line-height: 1.2;
|
|
letter-spacing: -0.56px;
|
|
margin-bottom: 16px;
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-134 main .box-2 .row .tiles .tile .tile--wrapper .tile--data h3 {
|
|
font-size: 22px;
|
|
}
|
|
}
|
|
@media (max-width: 575px) {
|
|
body.page-id-134 main .box-2 .row .tiles .tile .tile--wrapper .tile--data h3 {
|
|
font-size: 18px;
|
|
padding-bottom: 12px;
|
|
}
|
|
}
|
|
body.page-id-134 main .box-2 .row .tiles .tile .tile--wrapper .tile--data p {
|
|
color: #232323;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 1.2;
|
|
letter-spacing: -0.32px;
|
|
}
|
|
@media (max-width: 575px) {
|
|
body.page-id-134 main .box-2 .row .tiles .tile .tile--wrapper .tile--data p {
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
body.page-id-134 main .box-2 .row .tiles .tile .tile-sidebar {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
z-index: 10;
|
|
display: none;
|
|
}
|
|
body.page-id-134 main .box-2 .row .tiles .tile .tile-sidebar .tile-sidebar-bg {
|
|
position: fixed;
|
|
inset: 0;
|
|
background: rgba(0, 0, 0, 0.35);
|
|
}
|
|
body.page-id-134 main .box-2 .row .tiles .tile .tile-sidebar .tile-sidebar--wrapper {
|
|
position: relative;
|
|
width: 346px;
|
|
height: 100%;
|
|
background: #232323;
|
|
overflow: auto;
|
|
}
|
|
@media (max-width: 575px) {
|
|
body.page-id-134 main .box-2 .row .tiles .tile .tile-sidebar .tile-sidebar--wrapper {
|
|
width: 100%;
|
|
max-width: 346px;
|
|
}
|
|
}
|
|
body.page-id-134 main .box-2 .row .tiles .tile .tile-sidebar .tile-sidebar--wrapper .tile--btn {
|
|
top: 24px;
|
|
right: 16px;
|
|
}
|
|
body.page-id-134 main .box-2 .row .tiles .tile .tile-sidebar .tile-sidebar--wrapper .tile--btn img {
|
|
transform: rotate(45deg);
|
|
}
|
|
body.page-id-134 main .box-2 .row .tiles .tile .tile-sidebar .tile-sidebar--wrapper .tile--img img {
|
|
width: 100%;
|
|
}
|
|
body.page-id-134 main .box-2 .row .tiles .tile .tile-sidebar .tile-sidebar--wrapper .tile--data {
|
|
padding: 24px;
|
|
}
|
|
body.page-id-134 main .box-2 .row .tiles .tile .tile-sidebar .tile-sidebar--wrapper .tile--data .tile--data-head {
|
|
padding-bottom: 24px;
|
|
border-bottom: 1px solid #6a6a6a;
|
|
}
|
|
body.page-id-134 main .box-2 .row .tiles .tile .tile-sidebar .tile-sidebar--wrapper .tile--data .tile--data-head h3 {
|
|
color: #d9ba5c;
|
|
font-weight: 400;
|
|
font-size: 24px;
|
|
line-height: 1.2;
|
|
letter-spacing: -0.45px;
|
|
margin-bottom: 8px;
|
|
}
|
|
body.page-id-134 main .box-2 .row .tiles .tile .tile-sidebar .tile-sidebar--wrapper .tile--data .tile--data-head p {
|
|
color: #ffffff;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 1.2;
|
|
letter-spacing: -0.32px;
|
|
}
|
|
body.page-id-134 main .box-2 .row .tiles .tile .tile-sidebar .tile-sidebar--wrapper .tile--data .tile--data-contact {
|
|
padding: 14px 0 28px 0;
|
|
margin: 0;
|
|
border-bottom: 1px solid #6a6a6a;
|
|
}
|
|
body.page-id-134 main .box-2 .row .tiles .tile .tile-sidebar .tile-sidebar--wrapper .tile--data .tile--data-contact li {
|
|
display: flex;
|
|
flex-direction: column;
|
|
row-gap: 2px;
|
|
}
|
|
body.page-id-134 main .box-2 .row .tiles .tile .tile-sidebar .tile-sidebar--wrapper .tile--data .tile--data-contact li:not(:last-child) {
|
|
margin-bottom: 14px;
|
|
}
|
|
body.page-id-134 main .box-2 .row .tiles .tile .tile-sidebar .tile-sidebar--wrapper .tile--data .tile--data-contact li label {
|
|
color: #bebebe;
|
|
font-weight: 400;
|
|
font-size: 12px;
|
|
line-height: 1.2;
|
|
letter-spacing: -0.24px;
|
|
}
|
|
body.page-id-134 main .box-2 .row .tiles .tile .tile-sidebar .tile-sidebar--wrapper .tile--data .tile--data-contact li a {
|
|
color: #ffffff;
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
line-height: 1.2;
|
|
letter-spacing: -0.28px;
|
|
}
|
|
body.page-id-134 main .box-2 .row .tiles .tile .tile-sidebar .tile-sidebar--wrapper .tile--data .tile--data-text {
|
|
padding-top: 14px;
|
|
}
|
|
body.page-id-134 main .box-2 .row .tiles .tile .tile-sidebar .tile-sidebar--wrapper .tile--data .tile--data-text p {
|
|
color: #ffffff;
|
|
font-weight: 400;
|
|
line-height: 1.3;
|
|
letter-spacing: -0.28px;
|
|
}
|
|
body.page-id-134 main .box-2 .row .tiles .tile .tile-sidebar .tile-sidebar--wrapper .tile--data .tile--data-text .text-1 {
|
|
margin-bottom: 1.5em;
|
|
}
|
|
body.page-id-134 main .box-2 .row .tiles .tile .tile-sidebar .tile-sidebar--wrapper .tile--data .tile--data-text .text-1 p {
|
|
font-size: 14px;
|
|
}
|
|
body.page-id-134 main .box-2 .row .tiles .tile .tile-sidebar .tile-sidebar--wrapper .tile--data .tile--data-text .text-2 p {
|
|
font-size: 12px;
|
|
}
|
|
|
|
body.page-id-132 main {
|
|
padding-top: 80px;
|
|
}
|
|
body.page-id-132 main .box-1 {
|
|
margin-bottom: 130px;
|
|
}
|
|
body.page-id-132 main .box-1 .row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
-moz-column-gap: 100px;
|
|
column-gap: 100px;
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-132 main .box-1 .row {
|
|
flex-direction: column;
|
|
row-gap: 50px;
|
|
}
|
|
}
|
|
body.page-id-132 main .box-1 .row .col-1 {
|
|
width: 100%;
|
|
}
|
|
@media (min-width: 992px) {
|
|
body.page-id-132 main .box-1 .row .col-1 {
|
|
max-width: 630px;
|
|
}
|
|
}
|
|
body.page-id-132 main .box-1 .row .col-1 h2 {
|
|
color: #232323;
|
|
font-weight: 500;
|
|
font-size: 48px;
|
|
line-height: 1.2;
|
|
letter-spacing: -0.96px;
|
|
}
|
|
@media (max-width: 767px) {
|
|
body.page-id-132 main .box-1 .row .col-1 h2 {
|
|
font-size: 32px;
|
|
}
|
|
}
|
|
body.page-id-132 main .box-1 .row .col-2 {
|
|
width: 100%;
|
|
}
|
|
@media (min-width: 992px) {
|
|
body.page-id-132 main .box-1 .row .col-2 {
|
|
max-width: 525px;
|
|
}
|
|
}
|
|
body.page-id-132 main .box-1 .row .col-2 p {
|
|
color: #232323;
|
|
font-weight: 400;
|
|
font-size: 28px;
|
|
line-height: 1.5;
|
|
letter-spacing: -0.56px;
|
|
}
|
|
body.page-id-132 main .box-2 {
|
|
padding-top: 140px;
|
|
background: #1b1b1b;
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-132 main .box-2 {
|
|
padding-top: 100px;
|
|
padding-bottom: 100px;
|
|
}
|
|
}
|
|
body.page-id-132 main .box-2 .row {
|
|
position: relative;
|
|
padding-left: 100px;
|
|
}
|
|
body.page-id-132 main .box-2 .row::before {
|
|
content: attr(box-title);
|
|
color: #6a6a6a;
|
|
font-weight: 700;
|
|
font-size: 16px;
|
|
line-height: 1;
|
|
letter-spacing: -0.34px;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
background: #1b1b1b;
|
|
z-index: 1;
|
|
}
|
|
body.page-id-132 main .box-2 .row::after {
|
|
content: "";
|
|
position: absolute;
|
|
left: 7px;
|
|
background: #6a6a6a;
|
|
}
|
|
@media (min-width: 992px) {
|
|
body.page-id-132 main .box-2 .row::before {
|
|
writing-mode: vertical-rl;
|
|
padding-top: 24px;
|
|
transform: rotate(180deg);
|
|
}
|
|
body.page-id-132 main .box-2 .row::after {
|
|
top: 10px;
|
|
bottom: 0;
|
|
width: 1px;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-132 main .box-2 .row::before {
|
|
padding-right: 24px;
|
|
}
|
|
body.page-id-132 main .box-2 .row::after {
|
|
top: 7px;
|
|
right: 0;
|
|
height: 1px;
|
|
width: 100%;
|
|
}
|
|
}
|
|
@media (max-width: 1199px) {
|
|
body.page-id-132 main .box-2 .row {
|
|
padding-left: 60px;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-132 main .box-2 .row {
|
|
padding-left: 0;
|
|
padding-top: 60px;
|
|
}
|
|
}
|
|
body.page-id-132 main .box-2 .row .col-1 .box-title {
|
|
margin-bottom: 80px;
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-132 main .box-2 .row .col-1 .box-title {
|
|
margin-bottom: 60px;
|
|
}
|
|
}
|
|
body.page-id-132 main .box-2 .row .col-1 .box-title h2 {
|
|
color: #ffffff;
|
|
font-weight: 500;
|
|
font-size: 40px;
|
|
line-height: 1.5;
|
|
letter-spacing: -0.8px;
|
|
}
|
|
body.page-id-132 main .box-2 .row .col-2 .tiles {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-132 main .box-2 .row .col-2 .tiles {
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
@media (min-width: 992px) {
|
|
body.page-id-132 main .box-2 .row .col-2 .tiles .tile {
|
|
flex-basis: 25%;
|
|
}
|
|
}
|
|
@media (min-width: 992px) {
|
|
body.page-id-132 main .box-2 .row .col-2 .tiles .tile:not(:last-child) .tile-data {
|
|
border-right: 1px solid;
|
|
border-image-source: linear-gradient(180deg, #d9ba5c 0%, transparent 100%);
|
|
border-image-slice: 1;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-132 main .box-2 .row .col-2 .tiles .tile:not(:last-child) {
|
|
border-bottom: 1px solid;
|
|
border-image-source: linear-gradient(90deg, #d9ba5c 0%, transparent 100%);
|
|
border-image-slice: 1;
|
|
padding-bottom: 30px;
|
|
margin-bottom: 30px;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-132 main .box-2 .row .col-2 .tiles .tile {
|
|
display: flex;
|
|
flex-direction: row;
|
|
-moz-column-gap: 40px;
|
|
column-gap: 40px;
|
|
}
|
|
}
|
|
body.page-id-132 main .box-2 .row .col-2 .tiles .tile .tile-img {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 75px;
|
|
min-width: 75px;
|
|
height: 75px;
|
|
background: rgba(217, 186, 92, 0.32);
|
|
border-radius: 29px;
|
|
margin-bottom: 40px;
|
|
}
|
|
body.page-id-132 main .box-2 .row .col-2 .tiles .tile .tile-data {
|
|
padding-bottom: 230px;
|
|
padding-right: 30px;
|
|
margin-right: 30px;
|
|
}
|
|
@media (max-width: 1199px) {
|
|
body.page-id-132 main .box-2 .row .col-2 .tiles .tile .tile-data {
|
|
padding-right: 20px;
|
|
margin-right: 20px;
|
|
padding-bottom: 170px;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-132 main .box-2 .row .col-2 .tiles .tile .tile-data {
|
|
padding-right: 0;
|
|
margin-right: 0;
|
|
padding-bottom: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
body.page-id-132 main .box-2 .row .col-2 .tiles .tile .tile-data h3 {
|
|
color: #ffffff;
|
|
font-weight: 400;
|
|
font-size: 28px;
|
|
line-height: 1.2;
|
|
letter-spacing: -0.56px;
|
|
margin-bottom: 16px;
|
|
}
|
|
@media (max-width: 1199px) {
|
|
body.page-id-132 main .box-2 .row .col-2 .tiles .tile .tile-data h3 {
|
|
font-size: 22px;
|
|
}
|
|
}
|
|
body.page-id-132 main .box-2 .row .col-2 .tiles .tile .tile-data p {
|
|
color: rgb(166, 166, 166);
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 1.5;
|
|
letter-spacing: -0.32px;
|
|
}
|
|
body.page-id-132 main .box-3 {
|
|
padding-top: 150px;
|
|
padding-bottom: 125px;
|
|
}
|
|
body.page-id-132 main .box-3 .row-1 {
|
|
display: flex;
|
|
flex-direction: row;
|
|
-moz-column-gap: 100px;
|
|
column-gap: 100px;
|
|
}
|
|
@media (max-width: 1369px) {
|
|
body.page-id-132 main .box-3 .row-1 {
|
|
-moz-column-gap: 60px;
|
|
column-gap: 60px;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-132 main .box-3 .row-1 {
|
|
flex-direction: column;
|
|
margin-bottom: 60px;
|
|
}
|
|
}
|
|
body.page-id-132 main .box-3 .row-1 .col-1 {
|
|
position: relative;
|
|
padding-left: 80px;
|
|
}
|
|
body.page-id-132 main .box-3 .row-1 .col-1::before {
|
|
content: attr(box-title);
|
|
color: #d4d4d4;
|
|
font-weight: 700;
|
|
font-size: 16px;
|
|
line-height: 1;
|
|
letter-spacing: -0.34px;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
background: #ffffff;
|
|
z-index: 1;
|
|
}
|
|
body.page-id-132 main .box-3 .row-1 .col-1::after {
|
|
content: "";
|
|
position: absolute;
|
|
left: 7px;
|
|
background: #d4d4d4;
|
|
}
|
|
@media (min-width: 992px) {
|
|
body.page-id-132 main .box-3 .row-1 .col-1::before {
|
|
writing-mode: vertical-rl;
|
|
padding-top: 24px;
|
|
transform: rotate(180deg);
|
|
}
|
|
body.page-id-132 main .box-3 .row-1 .col-1::after {
|
|
top: 10px;
|
|
bottom: 0;
|
|
width: 1px;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-132 main .box-3 .row-1 .col-1::before {
|
|
padding-right: 24px;
|
|
}
|
|
body.page-id-132 main .box-3 .row-1 .col-1::after {
|
|
top: 7px;
|
|
right: 0;
|
|
height: 1px;
|
|
width: 100%;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-132 main .box-3 .row-1 .col-1 {
|
|
padding-left: 0;
|
|
padding-bottom: 70px;
|
|
margin-bottom: 60px;
|
|
}
|
|
body.page-id-132 main .box-3 .row-1 .col-1::before {
|
|
top: auto;
|
|
bottom: 0;
|
|
}
|
|
body.page-id-132 main .box-3 .row-1 .col-1::after {
|
|
top: auto;
|
|
bottom: 7px;
|
|
}
|
|
body.page-id-132 main .box-3 .row-1 .col-1 img {
|
|
margin: 0 auto;
|
|
}
|
|
}
|
|
body.page-id-132 main .box-3 .row-1 .col-2 {
|
|
max-width: 640px;
|
|
}
|
|
@media (max-width: 1369px) {
|
|
body.page-id-132 main .box-3 .row-1 .col-2 {
|
|
max-width: 530px;
|
|
}
|
|
}
|
|
@media (max-width: 1199px) {
|
|
body.page-id-132 main .box-3 .row-1 .col-2 {
|
|
max-width: 360px;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.page-id-132 main .box-3 .row-1 .col-2 {
|
|
max-width: unset;
|
|
}
|
|
}
|
|
body.page-id-132 main .box-3 .row-1 .col-2 .box-mini-title {
|
|
margin-bottom: 40px;
|
|
}
|
|
body.page-id-132 main .box-3 .row-1 .col-2 .box-mini-title h3 {
|
|
color: #232323;
|
|
font-weight: 400;
|
|
font-size: 20px;
|
|
line-height: 1.2;
|
|
letter-spacing: -0.38px;
|
|
}
|
|
body.page-id-132 main .box-3 .row-1 .col-2 .box-title {
|
|
margin-bottom: 64px;
|
|
}
|
|
body.page-id-132 main .box-3 .row-1 .col-2 .box-title h2 {
|
|
color: #232323;
|
|
font-weight: 400;
|
|
font-size: 36px;
|
|
line-height: 1.2;
|
|
letter-spacing: -0.68px;
|
|
}
|
|
@media (max-width: 1199px) {
|
|
body.page-id-132 main .box-3 .row-1 .col-2 .box-title h2 {
|
|
font-size: 26px;
|
|
}
|
|
}
|
|
body.page-id-132 main .box-3 .row-1 .col-2 ul {
|
|
padding: 0;
|
|
margin: 0;
|
|
max-width: 570px;
|
|
}
|
|
body.page-id-132 main .box-3 .row-1 .col-2 ul li {
|
|
position: relative;
|
|
padding-left: 32px;
|
|
color: #232323;
|
|
font-weight: 400;
|
|
font-size: 20px;
|
|
line-height: 1.2;
|
|
letter-spacing: -0.38px;
|
|
}
|
|
body.page-id-132 main .box-3 .row-1 .col-2 ul li:not(:last-child) {
|
|
padding-bottom: 16px;
|
|
margin-bottom: 16px;
|
|
border-bottom: 1px solid #d4d4d4;
|
|
}
|
|
body.page-id-132 main .box-3 .row-1 .col-2 ul li::before {
|
|
content: "";
|
|
position: absolute;
|
|
left: 0;
|
|
top: 2px;
|
|
width: 16px;
|
|
min-width: 16px;
|
|
height: 16px;
|
|
background-image: url("/wp-content/uploads/2025/09/Check.svg");
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-size: contain;
|
|
}
|
|
body.page-id-132 main .box-3 .row-2 {
|
|
position: relative;
|
|
}
|
|
@media (min-width: 992px) {
|
|
body.page-id-132 main .box-3 .row-2 {
|
|
margin-top: -150px;
|
|
}
|
|
}
|
|
body.page-id-132 main .box-3 .row-2 .box-info {
|
|
max-width: 1120px;
|
|
padding: 64px;
|
|
background: rgb(250, 248, 242);
|
|
margin-left: auto;
|
|
}
|
|
@media (max-width: 1369px) {
|
|
body.page-id-132 main .box-3 .row-2 .box-info {
|
|
max-width: 900px;
|
|
}
|
|
}
|
|
@media (max-width: 1199px) {
|
|
body.page-id-132 main .box-3 .row-2 .box-info {
|
|
max-width: 750px;
|
|
padding: 44px;
|
|
}
|
|
}
|
|
body.page-id-132 main .box-3 .row-2 .box-info h3 {
|
|
color: #232323;
|
|
font-weight: 400;
|
|
font-size: 20px;
|
|
line-height: 1.5;
|
|
letter-spacing: -0.38px;
|
|
margin-bottom: 26px;
|
|
}
|
|
body.page-id-132 main .box-3 .row-2 .box-info p {
|
|
color: #232323;
|
|
font-weight: 400;
|
|
font-size: 36px;
|
|
line-height: 1.2;
|
|
letter-spacing: -0.68px;
|
|
}
|
|
body.page-id-132 main .box-3 .row-2 .box-info p strong {
|
|
color: #d9ba5c;
|
|
font-weight: initial;
|
|
}
|
|
@media (max-width: 1369px) {
|
|
body.page-id-132 main .box-3 .row-2 .box-info p {
|
|
font-size: 28px;
|
|
}
|
|
}
|
|
@media (max-width: 1199px) {
|
|
body.page-id-132 main .box-3 .row-2 .box-info p {
|
|
font-size: 24px;
|
|
}
|
|
body.page-id-132 main .box-3 .row-2 .box-info p br {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
body.blog main.blog-page {
|
|
padding-top: 32px;
|
|
}
|
|
body.blog main.blog-page .box-1 {
|
|
margin-bottom: 48px;
|
|
}
|
|
body.blog main.blog-page .box-1:hover .box-bg img {
|
|
transform: scale(1.3);
|
|
transition: all 10s ease-in-out;
|
|
}
|
|
body.blog main.blog-page .box-1 .box--wrapper {
|
|
position: relative;
|
|
height: 568px;
|
|
padding: 64px;
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.blog main.blog-page .box-1 .box--wrapper {
|
|
height: 460px;
|
|
}
|
|
}
|
|
@media (max-width: 575px) {
|
|
body.blog main.blog-page .box-1 .box--wrapper {
|
|
padding: 30px;
|
|
height: 400px;
|
|
}
|
|
}
|
|
body.blog main.blog-page .box-1 .box-bg {
|
|
position: absolute;
|
|
inset: 0;
|
|
filter: brightness(0.7);
|
|
overflow: hidden;
|
|
}
|
|
body.blog main.blog-page .box-1 .box-bg img {
|
|
width: 100%;
|
|
-o-object-fit: cover;
|
|
object-fit: cover;
|
|
height: 100%;
|
|
-o-object-position: center;
|
|
object-position: center;
|
|
transition: all 250ms ease-in-out;
|
|
}
|
|
body.blog main.blog-page .box-1 .row {
|
|
position: relative;
|
|
z-index: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
row-gap: 40px;
|
|
height: 100%;
|
|
}
|
|
body.blog main.blog-page .box-1 .row .col-1 #breadcrumbs_box .container {
|
|
padding: 0;
|
|
}
|
|
body.blog main.blog-page .box-1 .row .col-1 #breadcrumbs_box #breadcrumbs {
|
|
color: #ffffff;
|
|
}
|
|
body.blog main.blog-page .box-1 .row .col-2 .box-head {
|
|
max-width: 785px;
|
|
margin-bottom: 32px;
|
|
}
|
|
body.blog main.blog-page .box-1 .row .col-2 .box-head h2 {
|
|
color: #ffffff;
|
|
font-weight: 500;
|
|
font-size: 48px;
|
|
line-height: 1.2;
|
|
letter-spacing: -0.96px;
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.blog main.blog-page .box-1 .row .col-2 .box-head h2 {
|
|
font-size: 40px;
|
|
}
|
|
}
|
|
@media (max-width: 767px) {
|
|
body.blog main.blog-page .box-1 .row .col-2 .box-head h2 {
|
|
font-size: 30px;
|
|
}
|
|
}
|
|
@media (max-width: 575px) {
|
|
body.blog main.blog-page .box-1 .row .col-2 .box-head h2 {
|
|
font-size: 24px;
|
|
}
|
|
}
|
|
body.blog main.blog-page .box-2 {
|
|
padding-bottom: 150px;
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.blog main.blog-page .box-2 {
|
|
padding-bottom: 100px;
|
|
}
|
|
}
|
|
body.blog main.blog-page .box-2 .posts-list {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 64px;
|
|
margin-bottom: 100px;
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.blog main.blog-page .box-2 .posts-list {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
margin-bottom: 30px;
|
|
gap: 40px;
|
|
}
|
|
}
|
|
@media (max-width: 575px) {
|
|
body.blog main.blog-page .box-2 .posts-list {
|
|
gap: 50px 24px;
|
|
}
|
|
}
|
|
body.blog main.blog-page .box-2 .posts-more {
|
|
text-align: center;
|
|
}
|
|
body.blog main.blog-page .box-2 .posts-more a {
|
|
display: inline-flex;
|
|
flex-direction: row;
|
|
gap: 16px;
|
|
}
|
|
body.blog main.blog-page .box-2 .posts-more a:hover .loader::after, body.blog main.blog-page .box-2 .posts-more a:hover .loader::before {
|
|
background: #ffffff;
|
|
}
|
|
body.blog main.blog-page .box-2 .posts-more a .loader {
|
|
width: 16px;
|
|
height: 16px;
|
|
display: inline-block;
|
|
position: relative;
|
|
margin-top: -3px;
|
|
display: none;
|
|
}
|
|
body.blog main.blog-page .box-2 .posts-more a .loader::after, body.blog main.blog-page .box-2 .posts-more a .loader::before {
|
|
content: "";
|
|
box-sizing: border-box;
|
|
width: 20px;
|
|
height: 20px;
|
|
border-radius: 50%;
|
|
background: #d9ba5c;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
animation: animloader 1s linear infinite;
|
|
transition: all 250ms ease-in-out;
|
|
}
|
|
body.blog main.blog-page .box-2 .posts-more a .loader::after {
|
|
opacity: 0;
|
|
animation-delay: 0.5s;
|
|
}
|
|
@keyframes animloader {
|
|
0% {
|
|
transform: scale(0);
|
|
opacity: 1;
|
|
}
|
|
100% {
|
|
transform: scale(1);
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
body.single-post main.page-single-post {
|
|
margin-top: 50px;
|
|
}
|
|
body.single-post main.page-single-post .box-1 {
|
|
margin-bottom: 120px;
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.single-post main.page-single-post .box-1 {
|
|
margin-bottom: 100px;
|
|
}
|
|
}
|
|
body.single-post main.page-single-post .box-1 .row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.single-post main.page-single-post .box-1 .row {
|
|
flex-direction: column-reverse;
|
|
row-gap: 50px;
|
|
}
|
|
}
|
|
body.single-post main.page-single-post .box-1 .row .col-1 {
|
|
width: 100%;
|
|
}
|
|
@media (min-width: 992px) {
|
|
body.single-post main.page-single-post .box-1 .row .col-1 {
|
|
padding-right: 70px;
|
|
border-right: 1px solid #d4d4d4;
|
|
max-width: 800px;
|
|
}
|
|
}
|
|
body.single-post main.page-single-post .box-1 .row .col-1 .btn-back-page:hover path {
|
|
stroke: #ffffff;
|
|
}
|
|
body.single-post main.page-single-post .box-1 .row .col-1 .btn-back-page path {
|
|
transition: all 250ms ease-in-out;
|
|
}
|
|
@media (min-width: 992px) {
|
|
body.single-post main.page-single-post .box-1 .row .col-2 {
|
|
flex-basis: 480px;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.single-post main.page-single-post .box-1 .row .col-2 {
|
|
height: 300px;
|
|
}
|
|
}
|
|
@media (min-width: 992px) {
|
|
body.single-post main.page-single-post .box-1 .row .col-2 .post-thumbnail {
|
|
position: sticky;
|
|
top: 0px;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.single-post main.page-single-post .box-1 .row .col-2 .post-thumbnail {
|
|
height: 100%;
|
|
}
|
|
}
|
|
body.single-post main.page-single-post .box-1 .row .col-2 img {
|
|
width: 100%;
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.single-post main.page-single-post .box-1 .row .col-2 img {
|
|
height: 100%;
|
|
-o-object-fit: cover;
|
|
object-fit: cover;
|
|
}
|
|
}
|
|
body.single-post main.page-single-post .box-2 {
|
|
padding-top: 135px;
|
|
padding-bottom: 160px;
|
|
background: #fafafa;
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.single-post main.page-single-post .box-2 {
|
|
padding-top: 100px;
|
|
padding-bottom: 100px;
|
|
}
|
|
}
|
|
body.single-post main.page-single-post .box-2 .row {
|
|
position: relative;
|
|
}
|
|
body.single-post main.page-single-post .box-2 .row::before {
|
|
content: attr(box-title);
|
|
color: #d4d4d4;
|
|
font-weight: 700;
|
|
font-size: 16px;
|
|
line-height: 1;
|
|
letter-spacing: -0.34px;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
background: #fafafa;
|
|
z-index: 1;
|
|
}
|
|
body.single-post main.page-single-post .box-2 .row::after {
|
|
content: "";
|
|
position: absolute;
|
|
left: 7px;
|
|
background: #d4d4d4;
|
|
}
|
|
@media (min-width: 992px) {
|
|
body.single-post main.page-single-post .box-2 .row::before {
|
|
writing-mode: vertical-rl;
|
|
padding-top: 24px;
|
|
transform: rotate(180deg);
|
|
}
|
|
body.single-post main.page-single-post .box-2 .row::after {
|
|
top: 10px;
|
|
bottom: 0;
|
|
width: 1px;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.single-post main.page-single-post .box-2 .row::before {
|
|
padding-right: 24px;
|
|
}
|
|
body.single-post main.page-single-post .box-2 .row::after {
|
|
top: 7px;
|
|
right: 0;
|
|
height: 1px;
|
|
width: 100%;
|
|
}
|
|
}
|
|
@media (min-width: 992px) {
|
|
body.single-post main.page-single-post .box-2 .row {
|
|
padding-left: 64px;
|
|
}
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.single-post main.page-single-post .box-2 .row {
|
|
padding-top: 64px;
|
|
}
|
|
}
|
|
body.single-post main.page-single-post .box-2 .row .box-head h2 {
|
|
margin-bottom: 40px;
|
|
color: #232323;
|
|
font-weight: 400;
|
|
font-size: 48px;
|
|
line-height: 1;
|
|
letter-spacing: -0.96px;
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.single-post main.page-single-post .box-2 .row .box-head h2 {
|
|
font-size: 32px;
|
|
}
|
|
}
|
|
body.single-post main.page-single-post .box-2 .row .other-posts {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 32px;
|
|
}
|
|
@media (max-width: 991px) {
|
|
body.single-post main.page-single-post .box-2 .row .other-posts article.article-card .article-card--wrapper .article-card--image a img {
|
|
height: 180px;
|
|
}
|
|
body.single-post main.page-single-post .box-2 .row .other-posts article.article-card .article-card--wrapper .article-card--content .article-card--title h3 {
|
|
font-size: 18px;
|
|
}
|
|
}
|
|
@media (min-width: 576px) and (max-width: 767px) {
|
|
body.single-post main.page-single-post .box-2 .row .other-posts {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
body.single-post main.page-single-post .box-2 .row .other-posts article.article-card:last-child {
|
|
display: none;
|
|
}
|
|
}
|
|
@media (max-width: 575px) {
|
|
body.single-post main.page-single-post .box-2 .row .other-posts {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
body.single-post main.page-single-post article.post .entry-header {
|
|
margin: 32px 0;
|
|
}
|
|
body.single-post main.page-single-post article.post .entry-header h1 {
|
|
color: #232323;
|
|
font-weight: 500;
|
|
font-size: 48px;
|
|
line-height: 1.2;
|
|
letter-spacing: -0.96px;
|
|
margin: 0;
|
|
}
|
|
@media (max-width: 1199px) {
|
|
body.single-post main.page-single-post article.post .entry-header h1 {
|
|
font-size: 42px;
|
|
}
|
|
}
|
|
@media (max-width: 767px) {
|
|
body.single-post main.page-single-post article.post .entry-header h1 {
|
|
font-size: 32px;
|
|
}
|
|
}
|
|
body.single-post main.page-single-post article.post .entry-content {
|
|
margin-bottom: 50px;
|
|
}
|
|
body.single-post main.page-single-post article.post .entry-content pre.wp-block-preformatted {
|
|
position: relative;
|
|
color: #232323;
|
|
font-family: "Helvetica Neue", sans-serif;
|
|
font-weight: 400;
|
|
font-size: 24px;
|
|
line-height: 1.5;
|
|
letter-spacing: -0.48px;
|
|
padding: 0 0 50px 0;
|
|
margin: 0 0 16px 0;
|
|
background: transparent;
|
|
}
|
|
body.single-post main.page-single-post article.post .entry-content pre.wp-block-preformatted::before {
|
|
content: "";
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 100px;
|
|
height: 1px;
|
|
background: #d9ba5c;
|
|
}
|
|
@media (max-width: 767px) {
|
|
body.single-post main.page-single-post article.post .entry-content pre.wp-block-preformatted {
|
|
font-size: 20px;
|
|
}
|
|
}
|
|
body.single-post main.page-single-post article.post .entry-content h2 {
|
|
color: #232323;
|
|
margin-bottom: 32px;
|
|
font-weight: 400;
|
|
font-size: 24px;
|
|
line-height: 1.5;
|
|
letter-spacing: -0.48px;
|
|
}
|
|
@media (max-width: 767px) {
|
|
body.single-post main.page-single-post article.post .entry-content h2 {
|
|
font-size: 20px;
|
|
}
|
|
}
|
|
body.single-post main.page-single-post article.post .entry-content p {
|
|
color: #232323;
|
|
font-weight: 500;
|
|
font-size: 18px;
|
|
line-height: 1.5;
|
|
letter-spacing: -0.36px;
|
|
}
|
|
body.single-post main.page-single-post article.post .entry-content p strong {
|
|
color: #d9ba5c;
|
|
}
|
|
@media (max-width: 767px) {
|
|
body.single-post main.page-single-post article.post .entry-content p {
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
body.single-post main.page-single-post article.post .entry-content a {
|
|
color: #d9ba5c;
|
|
text-decoration: underline;
|
|
}
|
|
body.single-post main.page-single-post article.post .entry-content ul {
|
|
padding: 0;
|
|
margin-left: 0;
|
|
}
|
|
body.single-post main.page-single-post article.post .entry-content ul li {
|
|
position: relative;
|
|
padding-left: 40px;
|
|
color: #232323;
|
|
font-weight: 500;
|
|
font-size: 18px;
|
|
line-height: 1.5;
|
|
letter-spacing: -0.36px;
|
|
}
|
|
body.single-post main.page-single-post article.post .entry-content ul li:not(:last-child) {
|
|
margin-bottom: 16px;
|
|
}
|
|
body.single-post main.page-single-post article.post .entry-content ul li::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 12px;
|
|
left: 0;
|
|
width: 18px;
|
|
height: 1px;
|
|
background: #d9ba5c;
|
|
transform: translateY(-50%);
|
|
}
|
|
@media (max-width: 767px) {
|
|
body.single-post main.page-single-post article.post .entry-content ul li {
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
body.single-post main.page-single-post article.post .entry-content ol {
|
|
counter-reset: custom-counter;
|
|
padding: 0;
|
|
margin-left: 0;
|
|
}
|
|
body.single-post main.page-single-post article.post .entry-content ol li {
|
|
position: relative;
|
|
padding-left: 40px;
|
|
color: #232323;
|
|
font-weight: 500;
|
|
font-size: 18px;
|
|
line-height: 1.5;
|
|
letter-spacing: -0.36px;
|
|
}
|
|
body.single-post main.page-single-post article.post .entry-content ol li:not(:last-child) {
|
|
margin-bottom: 16px;
|
|
}
|
|
body.single-post main.page-single-post article.post .entry-content ol li::before {
|
|
counter-increment: custom-counter;
|
|
content: counter(custom-counter) ".";
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
color: #d9ba5c;
|
|
font-weight: 500;
|
|
font-size: 18px;
|
|
}
|
|
body.single-post main.page-single-post article.post .entry-content figure.wp-block-pullquote {
|
|
padding: 0;
|
|
margin: 50px 0;
|
|
}
|
|
body.single-post main.page-single-post article.post .entry-content figure.wp-block-pullquote blockquote {
|
|
position: relative;
|
|
padding: 32px 130px 32px 32px;
|
|
background-color: #fafafa;
|
|
}
|
|
body.single-post main.page-single-post article.post .entry-content figure.wp-block-pullquote blockquote::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 32px;
|
|
right: 32px;
|
|
width: 32px;
|
|
height: 28px;
|
|
background-image: url("/wp-content/uploads/2025/08/quote.svg");
|
|
background-position: center;
|
|
background-size: contain;
|
|
background-repeat: no-repeat;
|
|
}
|
|
@media (max-width: 767px) {
|
|
body.single-post main.page-single-post article.post .entry-content figure.wp-block-pullquote blockquote {
|
|
padding: 24px 70px 24px 24px;
|
|
}
|
|
}
|
|
body.single-post main.page-single-post article.post .entry-content figure.wp-block-pullquote blockquote p {
|
|
color: #232323;
|
|
font-weight: 500;
|
|
font-size: 20px;
|
|
line-height: 1.5;
|
|
letter-spacing: -0.38px;
|
|
margin-bottom: 0;
|
|
}
|
|
@media (max-width: 767px) {
|
|
body.single-post main.page-single-post article.post .entry-content figure.wp-block-pullquote blockquote p {
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
body.single-post main.page-single-post article.post .entry-content figure.wp-block-pullquote blockquote cite {
|
|
position: relative;
|
|
color: #232323;
|
|
font-weight: 500;
|
|
font-size: 18px;
|
|
font-style: normal;
|
|
line-height: 1;
|
|
letter-spacing: -0.36px;
|
|
padding-left: 35px;
|
|
margin-top: 24px;
|
|
}
|
|
body.single-post main.page-single-post article.post .entry-content figure.wp-block-pullquote blockquote cite::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 0;
|
|
width: 18px;
|
|
height: 1px;
|
|
background: #d9ba5c;
|
|
transform: translateY(-50%);
|
|
}
|
|
@media (max-width: 767px) {
|
|
body.single-post main.page-single-post article.post .entry-content figure.wp-block-pullquote blockquote cite {
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
body.single-post main.page-single-post article.post .entry-footer .entry-meta {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
body.single-post main.page-single-post article.post .entry-footer .entry-meta > span:not(:last-child) {
|
|
margin-right: 5px;
|
|
padding-right: 5px;
|
|
border-right: 1px solid #8f8f8f;
|
|
}
|
|
body.single-post main.page-single-post article.post .entry-footer .entry-meta * {
|
|
color: #8f8f8f;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 1;
|
|
letter-spacing: -0.32px;
|
|
}/*# sourceMappingURL=custom.css.map */ |