228 lines
219 KiB
CSS
228 lines
219 KiB
CSS
@charset "UTF-8";
|
|
/*
|
|
* Trunk version 2.0.0
|
|
*/
|
|
/*
|
|
*
|
|
* Contexts
|
|
*/
|
|
a:focus,
|
|
button:focus {
|
|
outline: none !important;
|
|
}
|
|
|
|
button::-moz-focus-inner {
|
|
border: 0;
|
|
}
|
|
|
|
*:focus {
|
|
outline: none;
|
|
}
|
|
|
|
blockquote {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
input,
|
|
button,
|
|
select,
|
|
textarea {
|
|
outline: none;
|
|
}
|
|
|
|
label {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
p {
|
|
margin: 0;
|
|
}
|
|
|
|
ul,
|
|
ol {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
ul li,
|
|
ol li {
|
|
display: block;
|
|
}
|
|
|
|
dl {
|
|
margin: 0;
|
|
}
|
|
|
|
dt,
|
|
dd {
|
|
line-height: inherit;
|
|
}
|
|
|
|
dt {
|
|
font-weight: inherit;
|
|
}
|
|
|
|
dd {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
cite {
|
|
font-style: normal;
|
|
}
|
|
|
|
form {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
blockquote {
|
|
padding-left: 0;
|
|
border-left: 0;
|
|
}
|
|
|
|
address {
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
figure {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
html p a:hover {
|
|
text-decoration: none;
|
|
}
|
|
|
|
/*
|
|
*
|
|
* Typography
|
|
*/
|
|
body {
|
|
font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
font-size: 14px;
|
|
line-height: 1.3;
|
|
font-weight: 400;
|
|
color: rgba(21, 21, 21, 0.8);
|
|
letter-spacing: .025em;
|
|
background-color: #ffffff;
|
|
-webkit-text-size-adjust: none;
|
|
-webkit-font-smoothing: subpixel-antialiased;
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
body {
|
|
font-size: 1.125rem;
|
|
line-height: 1.22;
|
|
}
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6, [class^='heading-'] {
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
letter-spacing: 0.005em;
|
|
font-weight: 600;
|
|
font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
color: #151515;
|
|
}
|
|
|
|
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, [class^='heading-'] a {
|
|
color: inherit;
|
|
}
|
|
|
|
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover, [class^='heading-'] a:hover {
|
|
color: #ffad4d;
|
|
}
|
|
|
|
.heading-small {
|
|
font: 600 16px/1.2 "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
letter-spacing: .3em;
|
|
text-transform: uppercase;
|
|
opacity: .5;
|
|
}
|
|
|
|
.subtitle {
|
|
display: inline-block;
|
|
position: relative;
|
|
font: 400 20px/1.2 "Abril Fatface", cursive;
|
|
}
|
|
|
|
.subtitle:after {
|
|
position: absolute;
|
|
bottom: 0;
|
|
right: 0;
|
|
left: 0;
|
|
content: '';
|
|
height: 6px;
|
|
background-color: #f3f3f3;
|
|
}
|
|
|
|
.subtitle > span {
|
|
position: relative;
|
|
z-index: 1;
|
|
line-height: 1.3;
|
|
background: linear-gradient(to right, #ffad4d, #ffad4d);
|
|
-webkit-background-clip: text;
|
|
color: transparent;
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.subtitle {
|
|
font-size: 33px;
|
|
}
|
|
.subtitle:after {
|
|
height: 10px;
|
|
}
|
|
}
|
|
|
|
.ie-10 .subtitle,
|
|
.ie-10 .subtitle span,
|
|
.ie-11 .subtitle,
|
|
.ie-11 .subtitle span,
|
|
.ie-edge .subtitle,
|
|
.ie-edge .subtitle span {
|
|
background: inherit;
|
|
color: #ffad4d;
|
|
}
|
|
|
|
.heading-decoration-line {
|
|
position: relative;
|
|
padding-left: 45px;
|
|
}
|
|
|
|
.heading-decoration-line:before {
|
|
position: absolute;
|
|
top: 33%;
|
|
left: 0;
|
|
content: "";
|
|
display: inline-block;
|
|
width: 30px;
|
|
border-top: 3px solid #ffad4d;
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.heading-decoration-line {
|
|
padding-left: 70px;
|
|
}
|
|
.heading-decoration-line:before {
|
|
width: 45px;
|
|
}
|
|
}
|
|
|
|
.heading-decoration-line-2 {
|
|
position: relative;
|
|
padding-left: 33px;
|
|
}
|
|
|
|
.heading-decoration-line-2:before {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 0;
|
|
transform: translateY(-50%);
|
|
content: "";
|
|
height: 40px;
|
|
border-left: 3px solid #ffad4d;
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.heading-decoration-line-2:before {
|
|
height: 60px;
|
|
}
|
|
}
|
|
|
|
.heading-decoration-quote {
|
|
position: relative;
|
|
padding-left: 50px;
|
|
}
|
|
|
|
.heading-decoration-quote:before {
|
|
position: absolute;
|
|
top: -5px;
|
|
left: 0;
|
|
content: "\eae5";
|
|
color: #ffad4d;
|
|
font-family: "Linearicons";
|
|
font-size: 32px;
|
|
font-weight: 400;
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.heading-decoration-quote {
|
|
padding-left: 80px;
|
|
}
|
|
.heading-decoration-quote:before {
|
|
font-size: 57px;
|
|
}
|
|
}
|
|
|
|
h1,
|
|
.heading-1 {
|
|
font-size: 32px;
|
|
line-height: 1.2;
|
|
font-weight: 700;
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
h1,
|
|
.heading-1 {
|
|
font-size: 70px;
|
|
line-height: 1;
|
|
}
|
|
}
|
|
|
|
h2,
|
|
.heading-2 {
|
|
font-size: 28px;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
h2,
|
|
.heading-2 {
|
|
font-size: 48px;
|
|
line-height: 1.2;
|
|
}
|
|
}
|
|
|
|
h3,
|
|
.heading-3 {
|
|
font-size: 22px;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
h3,
|
|
.heading-3 {
|
|
font-size: 40px;
|
|
line-height: 1.2;
|
|
}
|
|
}
|
|
|
|
h4,
|
|
.heading-4 {
|
|
font-size: 21px;
|
|
line-height: 1.2;
|
|
font-weight: 500;
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
h4,
|
|
.heading-4 {
|
|
font-size: 33px;
|
|
line-height: 1.09091;
|
|
}
|
|
}
|
|
|
|
h5,
|
|
.heading-5 {
|
|
font-size: 19px;
|
|
line-height: 1.2;
|
|
font-weight: 500;
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
h5,
|
|
.heading-5 {
|
|
font-size: 26px;
|
|
line-height: 1.2;
|
|
}
|
|
}
|
|
|
|
h6,
|
|
.heading-6 {
|
|
font-size: 17px;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
h6,
|
|
.heading-6 {
|
|
font-size: 22px;
|
|
line-height: 1.27273;
|
|
}
|
|
}
|
|
|
|
small,
|
|
.small {
|
|
display: block;
|
|
font-size: 0.75rem;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
mark,
|
|
.mark {
|
|
padding: 3px 5px;
|
|
color: #ffffff;
|
|
background: #ffad4d;
|
|
}
|
|
|
|
.big {
|
|
font-size: 1.375rem;
|
|
line-height: 1.27;
|
|
}
|
|
|
|
.lead {
|
|
font-size: 24px;
|
|
line-height: 34px;
|
|
font-weight: 300;
|
|
}
|
|
|
|
code {
|
|
padding: 10px 5px;
|
|
border-radius: 0.2rem;
|
|
font-size: 90%;
|
|
color: #111111;
|
|
background: #f3f3f3;
|
|
}
|
|
|
|
p [data-toggle='tooltip'] {
|
|
padding-left: .25em;
|
|
padding-right: .25em;
|
|
color: #ffad4d;
|
|
}
|
|
|
|
p [style*='max-width'] {
|
|
display: inline-block;
|
|
}
|
|
|
|
.font-family-cursive {
|
|
font-family: "Abril Fatface", cursive;
|
|
}
|
|
|
|
.img-wrap img {
|
|
transform: translateX(-15%);
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.img-wrap img {
|
|
float: right;
|
|
max-width: none;
|
|
transform: translateX(0);
|
|
}
|
|
}
|
|
|
|
/*
|
|
*
|
|
* Brand
|
|
*/
|
|
.brand {
|
|
display: inline-block;
|
|
}
|
|
|
|
.brand .brand-logo-dark {
|
|
display: block;
|
|
}
|
|
|
|
/*
|
|
*
|
|
* Links
|
|
*/
|
|
a {
|
|
transition: all 0.3s ease-in-out;
|
|
}
|
|
|
|
a, a:focus, a:active, a:hover {
|
|
text-decoration: none;
|
|
}
|
|
|
|
a, a:focus, a:active {
|
|
color: #ffad4d;
|
|
}
|
|
|
|
a:hover {
|
|
color: #b36100;
|
|
}
|
|
|
|
a[href*='tel'], a[href*='mailto'] {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.link-hover {
|
|
color: #b36100;
|
|
}
|
|
|
|
.link-press {
|
|
color: #b36100;
|
|
}
|
|
|
|
* + .privacy-link {
|
|
margin-top: 25px;
|
|
}
|
|
|
|
/*
|
|
*
|
|
* Blocks
|
|
*/
|
|
.block-center, .block-sm, .block-lg {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.block-sm {
|
|
max-width: 560px;
|
|
}
|
|
|
|
.block-lg {
|
|
max-width: 768px;
|
|
}
|
|
|
|
.block-center {
|
|
padding: 10px;
|
|
}
|
|
|
|
.block-center:hover .block-center-header {
|
|
background-color: #ffad4d;
|
|
}
|
|
|
|
.block-center-title {
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
@media (max-width: 1599.98px) {
|
|
.block-center {
|
|
padding: 20px;
|
|
}
|
|
.block-center:hover .block-center-header {
|
|
background-color: #ffffff;
|
|
}
|
|
.block-center-header {
|
|
background-color: #ffad4d;
|
|
}
|
|
}
|
|
|
|
/*
|
|
*
|
|
* Boxes
|
|
*/
|
|
.box-minimal {
|
|
text-align: center;
|
|
}
|
|
|
|
.box-minimal .box-minimal-icon {
|
|
font-size: 50px;
|
|
line-height: 50px;
|
|
color: #ffad4d;
|
|
}
|
|
|
|
.box-minimal-divider {
|
|
width: 36px;
|
|
height: 4px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
background: #ffad4d;
|
|
}
|
|
|
|
.box-minimal-text {
|
|
width: 100%;
|
|
max-width: 320px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
* + .box-minimal {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
* + .box-minimal-title {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
* + .box-minimal-divider {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
* + .box-minimal-text {
|
|
margin-top: 15px;
|
|
}
|
|
|
|
.context-dark .box-minimal p, .bg-gray-dark .box-minimal p, .bg-primary .box-minimal p {
|
|
color: #151515;
|
|
}
|
|
|
|
.box-counter {
|
|
position: relative;
|
|
text-align: center;
|
|
color: #2c343b;
|
|
}
|
|
|
|
.box-counter-title {
|
|
display: inline-block;
|
|
font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
font-size: 16px;
|
|
line-height: 1.3;
|
|
letter-spacing: -.025em;
|
|
}
|
|
|
|
.box-counter-main {
|
|
font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
font-size: 45px;
|
|
font-weight: 400;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.box-counter-main > * {
|
|
display: inline;
|
|
font: inherit;
|
|
}
|
|
|
|
.box-counter-main .small {
|
|
font-size: 28px;
|
|
}
|
|
|
|
.box-counter-main .small_top {
|
|
position: relative;
|
|
top: .2em;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.box-counter-divider {
|
|
font-size: 0;
|
|
line-height: 0;
|
|
}
|
|
|
|
.box-counter-divider::after {
|
|
content: '';
|
|
display: inline-block;
|
|
width: 80px;
|
|
height: 2px;
|
|
background: #ffad4d;
|
|
}
|
|
|
|
* + .box-counter-title {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
* + .box-counter-main {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
* + .box-counter-divider {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.box-counter-title {
|
|
font-size: 18px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.box-counter-main {
|
|
font-size: 60px;
|
|
}
|
|
.box-counter-main .small {
|
|
font-size: 36px;
|
|
}
|
|
* + .box-counter-main {
|
|
margin-top: 30px;
|
|
}
|
|
* + .box-counter-divider {
|
|
margin-top: 15px;
|
|
}
|
|
* + .box-counter-title {
|
|
margin-top: 18px;
|
|
}
|
|
}
|
|
|
|
.services-container {
|
|
counter-reset: div;
|
|
}
|
|
|
|
.box-service {
|
|
position: relative;
|
|
padding-right: 43px;
|
|
max-width: 300px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.box-service:before {
|
|
content: counter(div, decimal) "";
|
|
counter-increment: div;
|
|
position: absolute;
|
|
bottom: 0;
|
|
right: 0;
|
|
display: inline-block;
|
|
color: rgba(21, 21, 21, 0.12);
|
|
font: 400 190px/0.8 "Abril Fatface", cursive;
|
|
}
|
|
|
|
.box-service-heading {
|
|
display: flex;
|
|
margin-bottom: -13px;
|
|
margin-left: -13px;
|
|
}
|
|
|
|
.box-service-heading:empty {
|
|
margin-bottom: 0;
|
|
margin-left: 0;
|
|
}
|
|
|
|
.box-service-heading > * {
|
|
display: inline-block;
|
|
margin-top: 0;
|
|
margin-bottom: 13px;
|
|
margin-left: 13px;
|
|
}
|
|
|
|
.box-service-heading > *:nth-child(1) {
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.box-service-body {
|
|
margin-top: 12px;
|
|
}
|
|
|
|
.box-service:hover .icon-effect-7 {
|
|
color: #ffad4d;
|
|
}
|
|
|
|
.box-service:hover .icon-effect-7:after {
|
|
box-shadow: inset 0 0 0 2px #ffad4d;
|
|
transform: scale3d(1, 1, 1);
|
|
}
|
|
|
|
.box-team {
|
|
display: inline-block;
|
|
margin: 0 auto;
|
|
transition: .33s ease;
|
|
}
|
|
|
|
.box-team:hover {
|
|
transform: translateY(-6px);
|
|
}
|
|
|
|
.box-team:hover .box-team-name {
|
|
padding: 14px 35px;
|
|
box-shadow: 0 -8px 21px rgba(21, 21, 21, 0.28);
|
|
}
|
|
|
|
.box-team-header {
|
|
position: relative;
|
|
}
|
|
|
|
.box-team-header .icon {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 48px;
|
|
height: 48px;
|
|
font-size: 30px;
|
|
background-color: #ffad4d;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.box-team-body {
|
|
text-align: center;
|
|
padding: 7px;
|
|
}
|
|
|
|
.box-team-name {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
padding: 8px 30px;
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
transition: .33s ease;
|
|
}
|
|
|
|
.box-team-name > * {
|
|
color: #ffffff;
|
|
}
|
|
|
|
.section-cta .button {
|
|
box-shadow: 10px 10px 24px rgba(0, 0, 0, 0.19);
|
|
}
|
|
|
|
.section-cta .subtitle + h2 {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.section-cta h2 + p {
|
|
margin-top: 35px;
|
|
}
|
|
|
|
.section-cta * + .button {
|
|
margin-top: 35px;
|
|
}
|
|
|
|
.box-process {
|
|
padding: 30px;
|
|
box-shadow: 0 0 18px rgba(0, 0, 0, 0.08);
|
|
border-radius: 8px;
|
|
border-bottom: 7px solid #e7e7e7;
|
|
text-align: left;
|
|
}
|
|
|
|
.box-process-header {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: -15px;
|
|
margin-left: -15px;
|
|
}
|
|
|
|
.box-process-header:empty {
|
|
margin-bottom: 0;
|
|
margin-left: 0;
|
|
}
|
|
|
|
.box-process-header > * {
|
|
display: inline-block;
|
|
margin-top: 0;
|
|
margin-bottom: 15px;
|
|
margin-left: 15px;
|
|
}
|
|
|
|
.box-process .icon.icon-circle {
|
|
background-color: transparent;
|
|
color: #ffad4d;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.box-process:hover .icon.icon-circle {
|
|
background: rgba(255, 173, 77, 0.78);
|
|
box-shadow: 0 0 0 8px rgba(255, 173, 77, 0.27);
|
|
color: #ffffff;
|
|
}
|
|
|
|
.box-process:hover .icon.icon-circle:before {
|
|
-moz-animation: toBottomFromTop 0.3s forwards;
|
|
-webkit-animation: toBottomFromTop 0.3s forwards;
|
|
animation: toBottomFromTop 0.3s forwards;
|
|
}
|
|
|
|
.box-process-body {
|
|
margin-top: 15px;
|
|
}
|
|
|
|
.box-process-body p {
|
|
padding-right: 25px;
|
|
}
|
|
|
|
.box-process * + .list-marked {
|
|
margin-top: 15px;
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.box-process {
|
|
padding: 57px 25px 55px 70px;
|
|
}
|
|
.box-process-body {
|
|
margin-top: 40px;
|
|
}
|
|
.box-process * + .list-marked {
|
|
margin-top: 28px;
|
|
}
|
|
}
|
|
|
|
.box-project {
|
|
max-width: 630px;
|
|
margin: 0 auto;
|
|
background-color: #ffffff;
|
|
color: #151515;
|
|
}
|
|
|
|
.owl-item.center .box-project {
|
|
box-shadow: 0 25px 38px rgba(0, 0, 0, 0.22);
|
|
}
|
|
|
|
.box-project-body {
|
|
padding: 25px 15px;
|
|
}
|
|
|
|
.box-project-body > * + * {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.box-project-title a {
|
|
color: #151515;
|
|
}
|
|
|
|
.box-project-subtitle {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: 10px auto 0;
|
|
color: #ffad4d;
|
|
text-transform: uppercase;
|
|
font-size: 11px;
|
|
font-weight: 900;
|
|
letter-spacing: .075em;
|
|
}
|
|
|
|
.box-project-subtitle:before {
|
|
content: "";
|
|
display: inline-block;
|
|
flex-grow: 1;
|
|
max-width: 100px;
|
|
border-top: 1px solid #d7d7d7;
|
|
margin-right: 15px;
|
|
}
|
|
|
|
.box-project-social span {
|
|
display: none;
|
|
}
|
|
|
|
.box-project-social .box-project-icon-list li {
|
|
display: inline-block;
|
|
}
|
|
|
|
.box-project-social li + li {
|
|
margin-left: 7px;
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.box-project-body {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 35px 45px;
|
|
text-align: left;
|
|
}
|
|
.box-project-body > * + * {
|
|
margin-top: 0;
|
|
}
|
|
.box-project-inner {
|
|
flex-grow: 1;
|
|
flex-basis: 70%;
|
|
max-width: 70%;
|
|
}
|
|
.box-project-subtitle {
|
|
justify-content: flex-start;
|
|
font-size: 13px;
|
|
}
|
|
.box-project-social {
|
|
position: relative;
|
|
flex-shrink: 0;
|
|
letter-spacing: 0;
|
|
}
|
|
.box-project-social span {
|
|
display: inline-block;
|
|
font-size: 44px;
|
|
opacity: .5;
|
|
cursor: pointer;
|
|
transition: .33s ease;
|
|
}
|
|
.box-project-social .box-project-icon-list {
|
|
display: block;
|
|
position: absolute;
|
|
bottom: 70px;
|
|
right: 0;
|
|
pointer-events: none;
|
|
}
|
|
.box-project-social .box-project-icon-list li {
|
|
pointer-events: auto;
|
|
transform: translate(0, 80%);
|
|
visibility: hidden;
|
|
opacity: 0;
|
|
transition: .3s ease;
|
|
}
|
|
.box-project-social .box-project-icon-list li:nth-child(6) {
|
|
transition-delay: .05s;
|
|
}
|
|
.box-project-social .box-project-icon-list li:nth-child(5) {
|
|
transition-delay: .1s;
|
|
}
|
|
.box-project-social .box-project-icon-list li:nth-child(4) {
|
|
transition-delay: .15s;
|
|
}
|
|
.box-project-social .box-project-icon-list li:nth-child(3) {
|
|
transition-delay: .2s;
|
|
}
|
|
.box-project-social .box-project-icon-list li:nth-child(2) {
|
|
transition-delay: .25s;
|
|
}
|
|
.box-project-social .box-project-icon-list li:nth-child(1) {
|
|
transition-delay: .3s;
|
|
}
|
|
.box-project-social .box-project-icon-list li .icon {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 50px;
|
|
height: 50px;
|
|
border-radius: 50%;
|
|
background-color: #ffffff;
|
|
color: #ffad4d;
|
|
box-shadow: 0 5px 15px rgba(21, 21, 21, 0.2);
|
|
}
|
|
.box-project-social .box-project-icon-list li .icon:hover {
|
|
background-color: #ffad4d;
|
|
color: #ffffff;
|
|
}
|
|
.box-project-social .box-project-icon-list li + li {
|
|
margin-left: 0;
|
|
margin-top: 12px;
|
|
}
|
|
.box-project-social .box-project-icon-list.active li {
|
|
visibility: visible;
|
|
opacity: 1;
|
|
transform: translate(0, 0);
|
|
}
|
|
}
|
|
|
|
.portfolio-centered {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
max-width: 370px;
|
|
margin: 0 auto;
|
|
padding: 25px 35px;
|
|
box-shadow: 0 2px 21px rgba(21, 21, 21, 0.09);
|
|
}
|
|
|
|
.portfolio-centered .icon {
|
|
opacity: .5;
|
|
}
|
|
|
|
.portfolio-centered h5 {
|
|
width: 100%;
|
|
}
|
|
|
|
.portfolio-centered * + h5 {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.portfolio-centered * + .button {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.portfolio-centered {
|
|
padding: 32px 65px 40px;
|
|
}
|
|
}
|
|
|
|
.box-portfolio {
|
|
display: inline-block;
|
|
position: relative;
|
|
overflow: hidden;
|
|
background: linear-gradient(to bottom, #ffad4d, #ffad4d);
|
|
}
|
|
|
|
.box-portfolio .portfolio-title,
|
|
.box-portfolio .portfolio-subtitle {
|
|
color: #ffffff;
|
|
}
|
|
|
|
.box-portfolio img {
|
|
opacity: 0.1;
|
|
}
|
|
|
|
.box-portfolio .portfolio-subtitle {
|
|
margin-top: 5px;
|
|
opacity: .53;
|
|
text-transform: uppercase;
|
|
font-size: 13px;
|
|
letter-spacing: .075em;
|
|
font-weight: 900;
|
|
}
|
|
|
|
.box-portfolio .caption {
|
|
position: absolute;
|
|
right: 0;
|
|
bottom: 0;
|
|
margin: 3em;
|
|
padding: 0 1em;
|
|
border-right: 4px solid #ffffff;
|
|
text-align: right;
|
|
transition: opacity 0.35s;
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.box-portfolio img {
|
|
opacity: 1;
|
|
transition: opacity 0.35s, transform 0.35s;
|
|
transform: scale3d(1.05, 1.05, 1);
|
|
}
|
|
.box-portfolio .caption {
|
|
opacity: 0;
|
|
}
|
|
.box-portfolio:before {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: rgba(255, 255, 255, 0.5);
|
|
content: '';
|
|
transition: transform 0.6s;
|
|
transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
|
|
}
|
|
.box-portfolio:hover img {
|
|
opacity: 0.1;
|
|
transform: scale3d(1, 1, 1);
|
|
}
|
|
.box-portfolio:hover .caption {
|
|
opacity: 1;
|
|
transition-delay: 0.1s;
|
|
}
|
|
.box-portfolio:hover:before {
|
|
transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
|
|
}
|
|
}
|
|
|
|
.box-testimonials {
|
|
margin-top: 44px;
|
|
border-radius: 6px;
|
|
background-color: #ffffff;
|
|
text-align: center;
|
|
}
|
|
|
|
.box-testimonials-image {
|
|
position: relative;
|
|
top: -44px;
|
|
}
|
|
|
|
.box-testimonials-image img {
|
|
box-shadow: 10px 15px 16px rgba(21, 21, 21, 0.15);
|
|
}
|
|
|
|
.box-testimonials-body {
|
|
margin-top: -10px;
|
|
padding: 0 15px 35px;
|
|
color: rgba(21, 21, 21, 0.8);
|
|
line-height: 24px;
|
|
}
|
|
|
|
.box-testimonials-footer {
|
|
position: relative;
|
|
padding: 20px 15px;
|
|
background-color: #f3f3f3;
|
|
border-radius: 0 0 6px 6px;
|
|
}
|
|
|
|
.box-testimonials-footer:after {
|
|
bottom: 100%;
|
|
left: 50%;
|
|
border: solid transparent;
|
|
content: " ";
|
|
height: 0;
|
|
width: 0;
|
|
position: absolute;
|
|
pointer-events: none;
|
|
border-color: rgba(243, 243, 243, 0);
|
|
border-bottom-color: #f3f3f3;
|
|
border-width: 18px 9px 18px 9px;
|
|
margin-left: -5px;
|
|
}
|
|
|
|
.box-testimonials-footer cite {
|
|
display: block;
|
|
font: 400 26px/1 "Abril Fatface", cursive;
|
|
color: #ffad4d;
|
|
}
|
|
|
|
.box-testimonials-footer span {
|
|
display: inline-block;
|
|
font-size: 18px;
|
|
color: rgba(21, 21, 21, 0.5);
|
|
}
|
|
|
|
@media (min-width: 992px) {
|
|
.box-testimonials-body {
|
|
margin-top: 0;
|
|
padding: 0 55px 43px;
|
|
}
|
|
.box-testimonials-footer {
|
|
padding: 28px 15px 33px;
|
|
}
|
|
.box-testimonials-footer cite + * {
|
|
margin-top: 8px;
|
|
}
|
|
}
|
|
|
|
.container-decoration {
|
|
position: relative;
|
|
}
|
|
|
|
.container-decoration-inner {
|
|
display: none;
|
|
}
|
|
|
|
.container-decoration .inner-left {
|
|
left: 4%;
|
|
}
|
|
|
|
.container-decoration .inner-right {
|
|
right: 4%;
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.container-decoration-inner {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-around;
|
|
}
|
|
.container-decoration-inner img {
|
|
opacity: .1;
|
|
transition: .33s ease;
|
|
}
|
|
.container-decoration-inner img:hover {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.box-pricing {
|
|
position: relative;
|
|
text-align: center;
|
|
border-radius: 6px;
|
|
box-shadow: 0 15px 21px rgba(21, 21, 21, 0.08);
|
|
max-width: 370px;
|
|
margin: 0 auto;
|
|
transition: .33s ease;
|
|
}
|
|
|
|
.box-pricing:hover {
|
|
transform: translateY(-13px);
|
|
}
|
|
|
|
.box-pricing .label {
|
|
position: absolute;
|
|
top: 20px;
|
|
left: 20px;
|
|
padding: 5px 10px;
|
|
border-radius: 4px;
|
|
font: 900 13px/1 "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
text-transform: uppercase;
|
|
letter-spacing: .075em;
|
|
}
|
|
|
|
.box-pricing .label-popular {
|
|
color: #ffffff;
|
|
background-color: #f8666a;
|
|
}
|
|
|
|
.box-pricing-header {
|
|
padding-top: 40px;
|
|
background-color: #f3f3f3;
|
|
border-radius: 6px 6px 0 0;
|
|
}
|
|
|
|
.box-pricing-header .title {
|
|
margin-bottom: -15px;
|
|
}
|
|
|
|
.box-pricing-header .icon {
|
|
position: relative;
|
|
bottom: -45px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
background-color: #ffffff;
|
|
color: #151515;
|
|
width: 120px;
|
|
height: 120px;
|
|
font-size: 55px;
|
|
box-shadow: 0 15px 21px rgba(0, 0, 0, 0.08);
|
|
}
|
|
|
|
.box-pricing-header.bg-image h5 {
|
|
color: #ffffff;
|
|
}
|
|
|
|
.box-pricing-header.bg-image .icon {
|
|
color: #ffad4d;
|
|
}
|
|
|
|
.box-pricing-body {
|
|
padding: 55px 15px 30px;
|
|
border-radius: 0 0 6px 6px;
|
|
}
|
|
|
|
.box-pricing .price-box {
|
|
font: 400 48px/1 "Abril Fatface", cursive;
|
|
color: #151515;
|
|
}
|
|
|
|
.box-pricing .price-box:before {
|
|
content: "$";
|
|
display: inline-block;
|
|
font-size: 18px;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.box-pricing .price-box span:last-of-type {
|
|
font-size: 26px;
|
|
}
|
|
|
|
.box-pricing .pricing-list {
|
|
color: rgba(21, 21, 21, 0.8);
|
|
}
|
|
|
|
.box-pricing .pricing-list li {
|
|
padding-top: 18px;
|
|
padding-bottom: 18px;
|
|
}
|
|
|
|
.box-pricing .pricing-list li + li {
|
|
border-top: 1px solid #e7e7e7;
|
|
}
|
|
|
|
.box-pricing * + .pricing-list {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.box-pricing * + .button {
|
|
margin-top: 23px;
|
|
}
|
|
|
|
@media (min-width: 576px) {
|
|
.box-pricing {
|
|
min-width: 300px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.box-pricing-header {
|
|
padding-top: 65px;
|
|
}
|
|
.box-pricing-body {
|
|
padding: 75px 50px 50px;
|
|
}
|
|
}
|
|
|
|
[class*='box-post'] {
|
|
text-align: left;
|
|
}
|
|
|
|
.box-post-meta {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.box-post-text {
|
|
color: #151515;
|
|
}
|
|
|
|
.box-post-title a:hover {
|
|
color: #151515;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
* + .box-post-title {
|
|
margin-top: 15px;
|
|
}
|
|
|
|
* + .box-post-text {
|
|
margin-top: 15px;
|
|
}
|
|
|
|
.box-post-classic {
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
* + .box-post-classic {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.box-post-classic-image {
|
|
display: inline-block;
|
|
overflow: hidden;
|
|
width: 100%;
|
|
}
|
|
|
|
.box-post-classic-image img {
|
|
width: 100%;
|
|
transition: .33s ease;
|
|
}
|
|
|
|
.box-post-classic-image img:hover {
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
.box-post-classic-body {
|
|
padding: 25px 15px 30px;
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.box-post-classic-body {
|
|
padding: 30px 90px 45px 45px;
|
|
}
|
|
}
|
|
|
|
.box-post-modern {
|
|
position: relative;
|
|
overflow: hidden;
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
.box-post-modern-image {
|
|
position: absolute;
|
|
bottom: 0;
|
|
right: 0;
|
|
left: 0;
|
|
}
|
|
|
|
.box-post-modern-image img {
|
|
width: 100%;
|
|
height: 100%;
|
|
max-width: none;
|
|
opacity: .3;
|
|
}
|
|
|
|
.box-post-modern-body {
|
|
position: relative;
|
|
z-index: 1;
|
|
padding: 45px 15px 60px;
|
|
max-width: 385px;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.box-post-modern-body {
|
|
padding: 50px 125px 70px 35px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 992px) {
|
|
.box-post-modern-image img {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.box-post-modern-body {
|
|
padding: 90px 60px 110px 45px;
|
|
}
|
|
}
|
|
|
|
.box-post-quote {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
height: 100%;
|
|
padding: 45px 20px 45px 75px;
|
|
background-color: #ffffff;
|
|
color: #151515;
|
|
transition: .28s ease;
|
|
}
|
|
|
|
.box-post-quote:hover {
|
|
box-shadow: 0 8px 21px rgba(21, 21, 21, 0.15);
|
|
}
|
|
|
|
.box-post-quote-inner {
|
|
position: relative;
|
|
font-size: 26px;
|
|
line-height: 1.2;
|
|
font-weight: 300;
|
|
font-style: italic;
|
|
}
|
|
|
|
.box-post-quote-inner:before {
|
|
content: "\eae5";
|
|
font: 400 36px/1 "Linearicons";
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
transform: translateX(-100%);
|
|
margin-left: -15px;
|
|
}
|
|
|
|
.box-post-quote .box-post-cite {
|
|
display: inline-block;
|
|
margin-top: 10px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.box-post-quote {
|
|
padding: 45px 15px 45px 95px;
|
|
}
|
|
.box-post-quote .box-post-cite {
|
|
margin-top: 15px;
|
|
}
|
|
}
|
|
|
|
.box-hero-header-var-1 .dot {
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 50%;
|
|
background-color: #ffad4d;
|
|
}
|
|
|
|
.box-hero-header-var-1 h2 span {
|
|
display: inline-block;
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.box-hero-header-var-1 h1 {
|
|
font-size: 90px;
|
|
font-weight: 900;
|
|
}
|
|
.box-hero-header-var-1 h2 {
|
|
font-weight: 700;
|
|
}
|
|
.box-hero-header-var-1 .dot {
|
|
width: 14px;
|
|
height: 14px;
|
|
}
|
|
}
|
|
|
|
.box-hero-header-var-2 h1 span {
|
|
display: inline-block;
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.box-hero-header-var-2 h1 {
|
|
font-size: 109px;
|
|
}
|
|
}
|
|
|
|
.box-hero-header-var-3 h1 {
|
|
font-weight: 800;
|
|
}
|
|
|
|
.box-hero-header-var-3 h2 {
|
|
font-weight: 700;
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.box-hero-header-var-3 h1 {
|
|
font-size: 80px;
|
|
}
|
|
}
|
|
|
|
.box-strategy {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
padding: 27px 0;
|
|
transform: translate3d(0, -15px, 0);
|
|
margin-bottom: -15px;
|
|
margin-left: -48px;
|
|
margin-right: -48px;
|
|
}
|
|
|
|
.box-strategy > * {
|
|
margin-top: 15px;
|
|
padding-left: 48px;
|
|
padding-right: 48px;
|
|
}
|
|
|
|
.box-strategy-inner {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.box-strategy-inner .button {
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.box-strategy-title {
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.box-strategy-body {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.box-strategy * + .button {
|
|
margin-top: 0;
|
|
}
|
|
.box-strategy-inner {
|
|
flex-wrap: nowrap;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.box-strategy-inner + .box-strategy-inner {
|
|
border-top: none;
|
|
border-left: 1px solid #d7d7d7;
|
|
}
|
|
}
|
|
|
|
.box-double {
|
|
position: relative;
|
|
width: 100%;
|
|
background-image: url(../images/architect/architect-about-bg.jpg);
|
|
background-color: #ffffff;
|
|
background-size: 0 0;
|
|
padding-bottom: 74.87002%;
|
|
}
|
|
|
|
.box-double:before, .box-double:after {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
content: "";
|
|
display: inline-block;
|
|
background-image: inherit;
|
|
background-repeat: no-repeat;
|
|
background-size: auto 100%;
|
|
animation-fill-mode: forwards;
|
|
animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
|
|
}
|
|
|
|
.box-double:before {
|
|
width: 32%;
|
|
left: 0;
|
|
background-position: 0% center;
|
|
z-index: 1;
|
|
animation: 1s box-double-before;
|
|
}
|
|
|
|
.box-double:after {
|
|
right: 0;
|
|
width: 66%;
|
|
background-position: 100% center;
|
|
animation: 1s box-double-after;
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.desktop .box-double:hover:after {
|
|
animation: 1s box-double-after-hover;
|
|
animation-fill-mode: forwards;
|
|
animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
|
|
}
|
|
.desktop .box-double:hover:before {
|
|
animation: 1s box-double-before-hover;
|
|
animation-fill-mode: forwards;
|
|
animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
|
|
}
|
|
}
|
|
|
|
@keyframes box-double-after-hover {
|
|
20% {
|
|
transform: scale3d(0.95, 0.95, 0.95);
|
|
}
|
|
80% {
|
|
transform: scale3d(0.95, 0.95, 0.95);
|
|
}
|
|
100% {
|
|
transform: scale3d(1, 1, 1);
|
|
right: 34%;
|
|
background-position: 0% center;
|
|
}
|
|
}
|
|
|
|
@keyframes box-double-before-hover {
|
|
20% {
|
|
transform: scale3d(1.05, 1.05, 1.05);
|
|
box-shadow: 16px 0 25px rgba(21, 21, 21, 0.4);
|
|
}
|
|
80% {
|
|
transform: scale3d(1.05, 1.05, 1.05);
|
|
box-shadow: -16px 0 25px rgba(21, 21, 21, 0.4);
|
|
}
|
|
100% {
|
|
transform: scale3d(1, 1, 1);
|
|
left: 68%;
|
|
background-position: 100% center;
|
|
box-shadow: none;
|
|
}
|
|
}
|
|
|
|
@keyframes box-double-after {
|
|
0% {
|
|
transform: scale3d(1, 1, 1);
|
|
right: 34%;
|
|
background-position: 0% center;
|
|
}
|
|
20% {
|
|
transform: scale3d(0.95, 0.95, 0.95);
|
|
}
|
|
80% {
|
|
transform: scale3d(0.95, 0.95, 0.95);
|
|
}
|
|
100% {
|
|
transform: scale3d(1, 1, 1);
|
|
right: 0%;
|
|
background-position: 100% center;
|
|
}
|
|
}
|
|
|
|
@keyframes box-double-before {
|
|
0% {
|
|
transform: scale3d(1, 1, 1);
|
|
left: 68%;
|
|
background-position: 100% center;
|
|
box-shadow: none;
|
|
}
|
|
20% {
|
|
transform: scale3d(1.05, 1.05, 1.05);
|
|
box-shadow: -16px 0 25px rgba(21, 21, 21, 0.4);
|
|
}
|
|
80% {
|
|
transform: scale3d(1.05, 1.05, 1.05);
|
|
box-shadow: 16px 0 25px rgba(21, 21, 21, 0.4);
|
|
}
|
|
100% {
|
|
transform: scale3d(1, 1, 1);
|
|
left: 0;
|
|
background-position: 0% center;
|
|
box-shadow: none;
|
|
}
|
|
}
|
|
|
|
.box-menu-item {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
flex-wrap: wrap;
|
|
align-items: stretch;
|
|
text-align: left;
|
|
}
|
|
|
|
.box-menu-item-image {
|
|
flex-shrink: 0;
|
|
flex-basis: 100%;
|
|
}
|
|
|
|
.box-menu-item-image img {
|
|
transition: .33s ease-in;
|
|
border-radius: 50%;
|
|
box-shadow: 4px 8px 18px rgba(134, 142, 150, 0.3);
|
|
}
|
|
|
|
.box-menu-item-body {
|
|
margin-top: 20px;
|
|
padding-right: 30px;
|
|
padding-bottom: 20px;
|
|
border-bottom: 1px solid #d7d7d7;
|
|
flex-basis: 80%;
|
|
}
|
|
|
|
.box-menu-item-price {
|
|
padding-top: 15px;
|
|
font: 400 33px/1 "Abril Fatface", cursive;
|
|
border-bottom: 1px solid #d7d7d7;
|
|
color: #151515;
|
|
flex-basis: 20%;
|
|
}
|
|
|
|
.box-menu-item-price:before {
|
|
content: "$";
|
|
}
|
|
|
|
.box-menu-item:hover .box-menu-item-image img {
|
|
box-shadow: -4px -8px 18px rgba(134, 142, 150, 0.3);
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.box-menu-item {
|
|
flex-wrap: nowrap;
|
|
max-width: 600px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
.box-menu-item-image, .box-menu-item-body, .box-menu-item-price {
|
|
flex-basis: auto;
|
|
}
|
|
.box-menu-item-body {
|
|
margin-top: 0;
|
|
margin-left: 17px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.box-menu-item-body {
|
|
padding-right: 50px;
|
|
}
|
|
}
|
|
|
|
.about-decoration {
|
|
display: inline-block;
|
|
position: relative;
|
|
z-index: 0;
|
|
}
|
|
|
|
.about-decoration:before {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
left: 0;
|
|
transform: translate(10%, 10%);
|
|
content: "";
|
|
background-image: url(../images/interior-design/about-decoration.jpg);
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
z-index: -1;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.about-decoration-mod-1:after {
|
|
position: absolute;
|
|
top: -40px;
|
|
right: -40px;
|
|
content: '';
|
|
width: 40px;
|
|
height: 40px;
|
|
border-width: 2px 2px 0 0;
|
|
border-style: solid;
|
|
}
|
|
}
|
|
|
|
.box-author {
|
|
font: 400 22px/1 "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
font-style: italic;
|
|
}
|
|
|
|
.box-author span {
|
|
display: block;
|
|
}
|
|
|
|
.box-author .position {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.box-client:hover {
|
|
filter: drop-shadow(5px 8px 2px rgba(21, 21, 21, 0.25));
|
|
}
|
|
|
|
.box-typography {
|
|
display: flex;
|
|
align-items: flex-end;
|
|
font-size: 88px;
|
|
font-weight: 700;
|
|
font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
}
|
|
|
|
.box-typography-inner:first-of-type {
|
|
line-height: .9;
|
|
}
|
|
|
|
.box-typography-inner:last-of-type {
|
|
font-size: 30px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.box-typography-inner:last-of-type > * {
|
|
display: block;
|
|
}
|
|
|
|
* + .box-typography {
|
|
margin-top: 50px;
|
|
}
|
|
|
|
.box-typography + * {
|
|
margin-top: 25px;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
* + .box-typography {
|
|
margin-top: 70px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
* + .box-typography {
|
|
margin-top: 105px;
|
|
}
|
|
}
|
|
|
|
.box-thumbnail-classic {
|
|
display: inline-block;
|
|
}
|
|
|
|
.box-thumbnail-classic figure {
|
|
border-radius: 6px;
|
|
box-shadow: 0 8px 18px 0 rgba(21, 21, 21, 0.25);
|
|
}
|
|
|
|
.box-thumbnail-classic .caption {
|
|
margin-top: 25px;
|
|
font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
color: #151515;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.box-thumbnail-classic .caption-link {
|
|
color: inherit;
|
|
}
|
|
|
|
.box-thumbnail-classic .caption-link:hover {
|
|
color: #ffad4d;
|
|
}
|
|
|
|
.box-thumbnail-classic-link {
|
|
display: inline-block;
|
|
}
|
|
|
|
.box-advantages-container {
|
|
counter-reset: div;
|
|
}
|
|
|
|
.box-advantages {
|
|
padding: 30px 20px;
|
|
border-radius: 4px;
|
|
text-align: left;
|
|
transition: .33s ease-in;
|
|
box-shadow: 0 0 18px rgba(21, 21, 21, 0.11);
|
|
}
|
|
|
|
.box-advantages:hover {
|
|
box-shadow: 0 0 18px rgba(21, 21, 21, 0.22);
|
|
}
|
|
|
|
.box-advantages:hover .box-advantages-divider {
|
|
width: 105px;
|
|
background: #ffad4d;
|
|
}
|
|
|
|
.box-advantages .label {
|
|
padding: 5px 8px;
|
|
border-radius: 4px;
|
|
font: 600 12px/1 "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
text-transform: uppercase;
|
|
letter-spacing: .05em;
|
|
}
|
|
|
|
.box-advantages .label-popular {
|
|
color: #ffffff;
|
|
background-color: #f8666a;
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.box-advantages {
|
|
padding: 40px 20px 40px 30px;
|
|
}
|
|
}
|
|
|
|
.box-advantages-icon {
|
|
font-size: 50px;
|
|
color: #ffad4d;
|
|
}
|
|
|
|
.box-advantages-title {
|
|
font-weight: 400;
|
|
}
|
|
|
|
.box-advantages-title:before {
|
|
content: counter(div, decimal-leading-zero) ".";
|
|
counter-increment: div;
|
|
display: inline-block;
|
|
opacity: .22;
|
|
font-weight: 500;
|
|
margin-right: 8px;
|
|
}
|
|
|
|
.box-advantages-divider {
|
|
height: 3px;
|
|
width: 60px;
|
|
background-color: rgba(21, 21, 21, 0.18);
|
|
transition: .33s ease-in;
|
|
}
|
|
|
|
.box-advantages-body {
|
|
font-size: 15px;
|
|
line-height: 22px;
|
|
opacity: .8;
|
|
}
|
|
|
|
* + .box-advantages-title {
|
|
margin-top: 15px;
|
|
}
|
|
|
|
* + .box-advantages-divider {
|
|
margin-top: 25px;
|
|
}
|
|
|
|
* + .box-advantages-body {
|
|
margin-top: 25px;
|
|
}
|
|
|
|
.bg-primary .box-counter {
|
|
color: #ffffff;
|
|
}
|
|
|
|
.bg-primary .box-counter-divider::after {
|
|
background: #ffffff;
|
|
}
|
|
|
|
/*
|
|
* Element groups
|
|
*/
|
|
html .group {
|
|
margin-bottom: -20px;
|
|
margin-left: -15px;
|
|
}
|
|
|
|
html .group:empty {
|
|
margin-bottom: 0;
|
|
margin-left: 0;
|
|
}
|
|
|
|
html .group > * {
|
|
display: inline-block;
|
|
margin-top: 0;
|
|
margin-bottom: 20px;
|
|
margin-left: 15px;
|
|
}
|
|
|
|
html .group-sm {
|
|
margin-bottom: -10px;
|
|
margin-left: -10px;
|
|
}
|
|
|
|
html .group-sm:empty {
|
|
margin-bottom: 0;
|
|
margin-left: 0;
|
|
}
|
|
|
|
html .group-sm > * {
|
|
display: inline-block;
|
|
margin-top: 0;
|
|
margin-bottom: 10px;
|
|
margin-left: 10px;
|
|
}
|
|
|
|
html .group-md {
|
|
margin-bottom: -20px;
|
|
margin-left: -25px;
|
|
}
|
|
|
|
html .group-md:empty {
|
|
margin-bottom: 0;
|
|
margin-left: 0;
|
|
}
|
|
|
|
html .group-md > * {
|
|
display: inline-block;
|
|
margin-top: 0;
|
|
margin-bottom: 20px;
|
|
margin-left: 25px;
|
|
}
|
|
|
|
html .group-xl {
|
|
margin-bottom: -20px;
|
|
margin-left: -30px;
|
|
}
|
|
|
|
html .group-xl:empty {
|
|
margin-bottom: 0;
|
|
margin-left: 0;
|
|
}
|
|
|
|
html .group-xl > * {
|
|
display: inline-block;
|
|
margin-top: 0;
|
|
margin-bottom: 20px;
|
|
margin-left: 30px;
|
|
}
|
|
|
|
@media (min-width: 992px) {
|
|
html .group-xl {
|
|
margin-bottom: -20px;
|
|
margin-left: -45px;
|
|
}
|
|
html .group-xl > * {
|
|
margin-bottom: 20px;
|
|
margin-left: 45px;
|
|
}
|
|
}
|
|
|
|
html .group-xxl {
|
|
margin-bottom: -20px;
|
|
margin-left: -30px;
|
|
}
|
|
|
|
html .group-xxl:empty {
|
|
margin-bottom: 0;
|
|
margin-left: 0;
|
|
}
|
|
|
|
html .group-xxl > * {
|
|
display: inline-block;
|
|
margin-top: 0;
|
|
margin-bottom: 20px;
|
|
margin-left: 30px;
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
html .group-xxl {
|
|
margin-bottom: -20px;
|
|
margin-left: -60px;
|
|
}
|
|
html .group-xxl > * {
|
|
margin-bottom: 20px;
|
|
margin-left: 60px;
|
|
}
|
|
}
|
|
|
|
html .group-sm-justify .button {
|
|
padding-left: 20px;
|
|
padding-right: 20px;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
html .group-sm-justify {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
html .group-sm-justify > * {
|
|
flex-grow: 1;
|
|
flex-shrink: 0;
|
|
}
|
|
html .group-sm-justify .button {
|
|
min-width: 130px;
|
|
padding-left: 20px;
|
|
padding-right: 20px;
|
|
}
|
|
}
|
|
|
|
html .custom-button-group {
|
|
margin-bottom: -20px;
|
|
margin-left: -15px;
|
|
}
|
|
|
|
html .custom-button-group:empty {
|
|
margin-bottom: 0;
|
|
margin-left: 0;
|
|
}
|
|
|
|
html .custom-button-group > * {
|
|
display: inline-block;
|
|
margin-top: 0;
|
|
margin-bottom: 20px;
|
|
margin-left: 15px;
|
|
}
|
|
|
|
html .custom-button-group > span {
|
|
font-family: "Abril Fatface", cursive;
|
|
opacity: .5;
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
html .custom-button-group .icon {
|
|
font-size: 45px;
|
|
}
|
|
}
|
|
|
|
html .custom-button-group .button-tel {
|
|
display: inline-flex;
|
|
}
|
|
|
|
html .custom-button-group .button-tel, html .custom-button-group .button-tel:focus, html .custom-button-group .button-tel:active {
|
|
color: #151515;
|
|
}
|
|
|
|
html .custom-button-group .button-tel:hover {
|
|
color: #ffad4d;
|
|
}
|
|
|
|
html .custom-button-group .button-tel > span + * {
|
|
margin-left: 8px;
|
|
}
|
|
|
|
html .custom-button-group .button-tel > span > * {
|
|
display: block;
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
html .custom-button-group .button-tel .tel {
|
|
font-size: 24px;
|
|
}
|
|
}
|
|
|
|
html .group-middle {
|
|
display: inline-table;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
html .group-middle > * {
|
|
vertical-align: middle;
|
|
}
|
|
|
|
* + .group-sm {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
* + .group-xl {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
* + .group-xxl {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
/*
|
|
*
|
|
* Responsive units
|
|
*/
|
|
.unit {
|
|
display: flex;
|
|
flex: 0 1 100%;
|
|
margin-bottom: -30px;
|
|
margin-left: -20px;
|
|
}
|
|
|
|
.unit > * {
|
|
margin-bottom: 30px;
|
|
margin-left: 20px;
|
|
}
|
|
|
|
.unit:empty {
|
|
margin-bottom: 0;
|
|
margin-left: 0;
|
|
}
|
|
|
|
.unit-body {
|
|
flex: 0 1 auto;
|
|
}
|
|
|
|
.unit-left,
|
|
.unit-right {
|
|
flex: 0 0 auto;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.unit-spacing-xs {
|
|
margin-bottom: -15px;
|
|
margin-left: -7px;
|
|
}
|
|
|
|
.unit-spacing-xs > * {
|
|
margin-bottom: 15px;
|
|
margin-left: 7px;
|
|
}
|
|
|
|
/*
|
|
*
|
|
* Lists
|
|
*/
|
|
.list > li + li {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.list-xs > li + li {
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.list-sm > li + li {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.list-md > li + li {
|
|
margin-top: 18px;
|
|
}
|
|
|
|
.list-lg > li + li {
|
|
margin-top: 25px;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.list-xl > li + li {
|
|
margin-top: 60px;
|
|
}
|
|
}
|
|
|
|
.list-inline > li {
|
|
display: inline-block;
|
|
}
|
|
|
|
html .list-inline-md {
|
|
transform: translate3d(0, -8px, 0);
|
|
margin-bottom: -8px;
|
|
margin-left: -10px;
|
|
margin-right: -10px;
|
|
}
|
|
|
|
html .list-inline-md > * {
|
|
margin-top: 8px;
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
}
|
|
|
|
@media (min-width: 992px) {
|
|
html .list-inline-md {
|
|
margin-left: -15px;
|
|
margin-right: -15px;
|
|
}
|
|
html .list-inline-md > * {
|
|
padding-left: 15px;
|
|
padding-right: 15px;
|
|
}
|
|
}
|
|
|
|
.list-terms dt + dd {
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.list-terms dd + dt {
|
|
margin-top: 25px;
|
|
}
|
|
|
|
* + .list-terms {
|
|
margin-top: 25px;
|
|
}
|
|
|
|
.index-list {
|
|
counter-reset: li;
|
|
}
|
|
|
|
.index-list > li .list-index-counter:before {
|
|
content: counter(li, decimal-leading-zero);
|
|
counter-increment: li;
|
|
}
|
|
|
|
.list-marked {
|
|
text-align: left;
|
|
}
|
|
|
|
.list-marked > li {
|
|
position: relative;
|
|
padding-top: 8px;
|
|
padding-bottom: 8px;
|
|
padding-left: 27px;
|
|
}
|
|
|
|
.list-marked > li::before {
|
|
position: absolute;
|
|
display: inline-block;
|
|
left: 0;
|
|
min-width: 25px;
|
|
content: '\f14f';
|
|
font: 400 21px/1 "Material Design Icons";
|
|
color: #151515;
|
|
}
|
|
|
|
* + .list-marked {
|
|
margin-top: 15px;
|
|
}
|
|
|
|
p + .list-marked {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.list-marked-2 {
|
|
text-align: left;
|
|
}
|
|
|
|
.list-marked-2 > li {
|
|
position: relative;
|
|
padding-top: 8px;
|
|
padding-bottom: 8px;
|
|
padding-left: 35px;
|
|
}
|
|
|
|
.list-marked-2 > li::before {
|
|
position: absolute;
|
|
display: inline-block;
|
|
left: 0;
|
|
min-width: 25px;
|
|
content: '\f222';
|
|
font: 400 24px/1 "Material Design Icons";
|
|
color: #ffad4d;
|
|
}
|
|
|
|
* + .list-marked-2 {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
p + .list-marked-2 {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.list-ordered {
|
|
counter-reset: li;
|
|
padding-left: 25px;
|
|
text-align: left;
|
|
}
|
|
|
|
.list-ordered > li {
|
|
position: relative;
|
|
padding-left: 25px;
|
|
}
|
|
|
|
.list-ordered > li:before {
|
|
content: counter(li, decimal) ".";
|
|
counter-increment: li;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
display: inline-block;
|
|
width: 15px;
|
|
color: #b7b7b7;
|
|
}
|
|
|
|
.list-ordered > li + li {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
* + .list-ordered {
|
|
margin-top: 15px;
|
|
}
|
|
|
|
.contact-list dt {
|
|
font: 900 13px/1 "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.075em;
|
|
}
|
|
|
|
.contact-list > * + * {
|
|
margin-top: 13px;
|
|
}
|
|
|
|
* + .contact-list {
|
|
margin-top: 39px;
|
|
}
|
|
|
|
.nav-list li {
|
|
padding-top: 5px;
|
|
padding-bottom: 5px;
|
|
}
|
|
|
|
.nav-list li a:before {
|
|
content: "\f14f";
|
|
font: 400 21px/1 "Material Design Icons";
|
|
color: #ffad4d;
|
|
display: inline-block;
|
|
vertical-align: baseline;
|
|
margin-left: -28px;
|
|
margin-right: 7px;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
transition: .22s ease;
|
|
}
|
|
|
|
.nav-list li a:hover:before {
|
|
margin-left: 0;
|
|
opacity: 1;
|
|
visibility: visible;
|
|
}
|
|
|
|
* + .nav-list {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
/*
|
|
*
|
|
* Images
|
|
*/
|
|
img {
|
|
display: inline-block;
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
.img-responsive {
|
|
width: 100%;
|
|
}
|
|
|
|
/*
|
|
*
|
|
* Icons
|
|
*/
|
|
.icon {
|
|
display: inline-block;
|
|
font-size: 16px;
|
|
line-height: 1;
|
|
}
|
|
|
|
.icon::before {
|
|
position: relative;
|
|
display: inline-block;
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
speak: none;
|
|
text-transform: none;
|
|
}
|
|
|
|
.icon-primary {
|
|
color: #ffad4d;
|
|
}
|
|
|
|
.icon-circle {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.icon-circle.icon-primary {
|
|
background-color: #ffad4d;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.icon-circle.icon-md {
|
|
width: 70px;
|
|
height: 70px;
|
|
}
|
|
|
|
.icon-sm {
|
|
font-size: 22px;
|
|
}
|
|
|
|
.icon-md {
|
|
font-size: 35px;
|
|
}
|
|
|
|
.icon-lg {
|
|
font-size: 54px;
|
|
}
|
|
|
|
.linearicons-diamond3:before {
|
|
position: relative;
|
|
left: 2px;
|
|
}
|
|
|
|
.linearicons-power:before,
|
|
.linearicons-mouse-right:before {
|
|
position: relative;
|
|
top: -1px;
|
|
}
|
|
|
|
.icon-effect-7 {
|
|
position: relative;
|
|
z-index: 1;
|
|
transition: color 0.3s;
|
|
}
|
|
|
|
.icon-effect-7.icon-circle.icon-primary {
|
|
background: transparent;
|
|
}
|
|
|
|
.icon-effect-7.icon-circle.icon-md {
|
|
width: 78px;
|
|
height: 78px;
|
|
}
|
|
|
|
.icon-effect-7:after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: inherit;
|
|
z-index: -1;
|
|
box-shadow: inset 0 0 0 70px #ffad4d;
|
|
transform: scale3d(0.9, 0.9, 1);
|
|
transition: box-shadow 0.3s, transform 0.3s;
|
|
}
|
|
|
|
.icon-effect-7:hover {
|
|
color: #ffad4d;
|
|
}
|
|
|
|
.icon-effect-7:hover:after {
|
|
box-shadow: inset 0 0 0 2px #ffad4d;
|
|
transform: scale3d(1, 1, 1);
|
|
}
|
|
|
|
.icon-effect-4 {
|
|
position: relative;
|
|
z-index: 1;
|
|
box-shadow: 0 0 0 3px #ffad4d;
|
|
overflow: hidden;
|
|
transition: background 0.3s, color 0.3s, box-shadow 0.3s;
|
|
}
|
|
|
|
.icon-effect-4:before {
|
|
display: block;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
.icon-effect-4:after {
|
|
content: '';
|
|
pointer-events: none;
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: 50%;
|
|
box-sizing: content-box;
|
|
display: none;
|
|
}
|
|
|
|
.icon-effect-4:hover {
|
|
background: rgba(255, 173, 77, 0.78);
|
|
box-shadow: 0 0 0 8px rgba(255, 173, 77, 0.27);
|
|
color: #ffffff;
|
|
}
|
|
|
|
.icon-effect-4--mod-4:hover:before {
|
|
-moz-animation: toBottomFromTop 0.3s forwards;
|
|
-webkit-animation: toBottomFromTop 0.3s forwards;
|
|
animation: toBottomFromTop 0.3s forwards;
|
|
}
|
|
|
|
@-webkit-keyframes toBottomFromTop {
|
|
49% {
|
|
-webkit-transform: translateY(100%);
|
|
}
|
|
50% {
|
|
opacity: 0;
|
|
-webkit-transform: translateY(-100%);
|
|
}
|
|
51% {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@-moz-keyframes toBottomFromTop {
|
|
49% {
|
|
-moz-transform: translateY(100%);
|
|
}
|
|
50% {
|
|
opacity: 0;
|
|
-moz-transform: translateY(-100%);
|
|
}
|
|
51% {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@keyframes toBottomFromTop {
|
|
49% {
|
|
transform: translateY(100%);
|
|
}
|
|
50% {
|
|
opacity: 0;
|
|
transform: translateY(-100%);
|
|
}
|
|
51% {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
/*
|
|
*
|
|
* Tables custom
|
|
*/
|
|
.table-custom {
|
|
width: 100%;
|
|
max-width: 100%;
|
|
text-align: left;
|
|
background: #ffffff;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
.table-custom th,
|
|
.table-custom td {
|
|
color: #2c343b;
|
|
background: #ffffff;
|
|
}
|
|
|
|
.table-custom th {
|
|
padding: 35px 24px;
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
letter-spacing: .05em;
|
|
text-transform: uppercase;
|
|
background: #e7e7e7;
|
|
}
|
|
|
|
@media (max-width: 991.98px) {
|
|
.table-custom th {
|
|
padding-top: 20px;
|
|
padding-bottom: 20px;
|
|
}
|
|
}
|
|
|
|
.table-custom td {
|
|
padding: 17px 24px;
|
|
}
|
|
|
|
.table-custom tbody tr:first-child td {
|
|
border-top: 0;
|
|
}
|
|
|
|
.table-custom tr td {
|
|
border-bottom: 1px solid #d7d7d7;
|
|
}
|
|
|
|
.table-custom tfoot td {
|
|
font-weight: 700;
|
|
}
|
|
|
|
* + .table-custom-responsive {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
* + .table-custom-responsive {
|
|
margin-top: 40px;
|
|
}
|
|
}
|
|
|
|
.table-custom.table-custom-primary thead th {
|
|
color: #ffffff;
|
|
background: #ffad4d;
|
|
border: 0;
|
|
}
|
|
|
|
.table-custom.table-custom-primary tbody tr:hover td {
|
|
background: #e7e7e7;
|
|
}
|
|
|
|
.table-custom.table-custom-bordered tr td:first-child {
|
|
border-left: 0;
|
|
}
|
|
|
|
.table-custom.table-custom-bordered tr td:last-child {
|
|
border-right: 0;
|
|
}
|
|
|
|
.table-custom.table-custom-bordered td {
|
|
border: 1px solid #d7d7d7;
|
|
}
|
|
|
|
.table-custom.table-custom-bordered tbody > tr:first-of-type > td {
|
|
border-top: 0;
|
|
}
|
|
|
|
.table-custom.table-custom-striped {
|
|
border-bottom: 1px solid #d7d7d7;
|
|
}
|
|
|
|
.table-custom.table-custom-striped tbody tr:nth-of-type(odd) td {
|
|
background: transparent;
|
|
}
|
|
|
|
.table-custom.table-custom-striped tbody tr:nth-of-type(even) td {
|
|
background: #e7e7e7;
|
|
}
|
|
|
|
.table-custom.table-custom-striped tbody td {
|
|
border: 0;
|
|
}
|
|
|
|
.table-custom.table-custom-striped tfoot td:not(:first-child) {
|
|
border-left: 0;
|
|
}
|
|
|
|
@media (max-width: 991.98px) {
|
|
.table-custom-responsive {
|
|
display: block;
|
|
width: 100%;
|
|
overflow-x: auto;
|
|
-ms-overflow-style: -ms-autohiding-scrollbar;
|
|
}
|
|
.table-custom-responsive.table-bordered {
|
|
border: 0;
|
|
}
|
|
}
|
|
|
|
/*
|
|
*
|
|
* Dividers
|
|
*/
|
|
hr {
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
border-top: 1px solid #d7d7d7;
|
|
}
|
|
|
|
.divider {
|
|
font-size: 0;
|
|
line-height: 0;
|
|
}
|
|
|
|
.divider::after {
|
|
content: '';
|
|
display: inline-block;
|
|
width: 60px;
|
|
height: 3px;
|
|
background-color: #ffad4d;
|
|
}
|
|
|
|
* + .divider {
|
|
margin-top: 35px;
|
|
}
|
|
|
|
.divider + * {
|
|
margin-top: 28px;
|
|
}
|
|
|
|
.divider-sm::after {
|
|
width: 88px;
|
|
}
|
|
|
|
/*
|
|
*
|
|
* Buttons
|
|
*/
|
|
.button {
|
|
position: relative;
|
|
overflow: hidden;
|
|
display: inline-block;
|
|
padding: 10px 25px;
|
|
font-size: 13px;
|
|
line-height: 1.25;
|
|
border: 2px solid;
|
|
font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
font-weight: 900;
|
|
letter-spacing: 0.07em;
|
|
text-transform: uppercase;
|
|
border-radius: 35px;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
vertical-align: middle;
|
|
user-select: none;
|
|
transition: 250ms all ease-in-out;
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.button {
|
|
padding: 16px 35px;
|
|
font-size: 13px;
|
|
line-height: 1.25;
|
|
}
|
|
}
|
|
|
|
.button-block {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
|
|
.button-default, .button-default:focus {
|
|
color: #d7d7d7;
|
|
background-color: #2c343b;
|
|
border-color: #2c343b;
|
|
}
|
|
|
|
.button-default:hover, .button-default:active {
|
|
color: #ffffff;
|
|
background-color: #ffad4d;
|
|
border-color: #ffad4d;
|
|
}
|
|
|
|
.button-default.button-ujarak::before {
|
|
background: #ffad4d;
|
|
}
|
|
|
|
.button-gray-100, .button-gray-100:focus {
|
|
color: #151515;
|
|
background-color: #f3f3f3;
|
|
border-color: #f3f3f3;
|
|
}
|
|
|
|
.button-gray-100:hover, .button-gray-100:active {
|
|
color: #151515;
|
|
background-color: #e6e6e6;
|
|
border-color: #e6e6e6;
|
|
}
|
|
|
|
.button-gray-100.button-ujarak::before {
|
|
background: #e6e6e6;
|
|
}
|
|
|
|
.button-primary, .button-primary:focus {
|
|
color: #ffffff;
|
|
background-color: #ffad4d;
|
|
border-color: #ffad4d;
|
|
}
|
|
|
|
.button-primary:hover, .button-primary:active {
|
|
color: #ffffff;
|
|
background-color: #151515;
|
|
border-color: #151515;
|
|
}
|
|
|
|
.button-primary.button-ujarak::before {
|
|
background: #151515;
|
|
}
|
|
|
|
.button-default-outline, .button-default-outline:focus {
|
|
color: #ffad4d;
|
|
background-color: transparent;
|
|
border-color: #ffad4d;
|
|
}
|
|
|
|
.button-default-outline:hover, .button-default-outline:active {
|
|
color: #ffffff;
|
|
background-color: #ffad4d;
|
|
border-color: #ffad4d;
|
|
}
|
|
|
|
.button-default-outline.button-ujarak::before {
|
|
background: #ffad4d;
|
|
}
|
|
|
|
.button-gray-800-outline, .button-gray-800-outline:focus {
|
|
color: #151515;
|
|
background-color: transparent;
|
|
border-color: #151515;
|
|
}
|
|
|
|
.button-gray-800-outline:hover, .button-gray-800-outline:active {
|
|
color: #ffffff;
|
|
background-color: #ffad4d;
|
|
border-color: #ffad4d;
|
|
}
|
|
|
|
.button-gray-800-outline.button-ujarak::before {
|
|
background: #ffad4d;
|
|
}
|
|
|
|
.button-ghost {
|
|
border: 0;
|
|
background-color: transparent;
|
|
}
|
|
|
|
.button-ghost:hover {
|
|
color: #ffffff;
|
|
background: #ffad4d;
|
|
}
|
|
|
|
.button-facebook, .button-facebook:focus {
|
|
color: #ffffff;
|
|
background-color: #4d70a8;
|
|
border-color: #4d70a8;
|
|
}
|
|
|
|
.button-facebook:hover, .button-facebook:active {
|
|
color: #ffffff;
|
|
background-color: #456497;
|
|
border-color: #456497;
|
|
}
|
|
|
|
.button-facebook.button-ujarak::before {
|
|
background: #456497;
|
|
}
|
|
|
|
.button-twitter, .button-twitter:focus {
|
|
color: #ffffff;
|
|
background-color: #02bcf3;
|
|
border-color: #02bcf3;
|
|
}
|
|
|
|
.button-twitter:hover, .button-twitter:active {
|
|
color: #ffffff;
|
|
background-color: #02a8da;
|
|
border-color: #02a8da;
|
|
}
|
|
|
|
.button-twitter.button-ujarak::before {
|
|
background: #02a8da;
|
|
}
|
|
|
|
.button-google, .button-google:focus {
|
|
color: #ffffff;
|
|
background-color: #e2411e;
|
|
border-color: #e2411e;
|
|
}
|
|
|
|
.button-google:hover, .button-google:active {
|
|
color: #ffffff;
|
|
background-color: #cc3a1a;
|
|
border-color: #cc3a1a;
|
|
}
|
|
|
|
.button-google.button-ujarak::before {
|
|
background: #cc3a1a;
|
|
}
|
|
|
|
.button-shadow {
|
|
box-shadow: 0 8px 18px 0 rgba(21, 21, 21, 0.25);
|
|
}
|
|
|
|
.button-shadow:hover {
|
|
box-shadow: 0 9px 10px 0 rgba(21, 21, 21, 0.25);
|
|
}
|
|
|
|
.button-shadow:focus, .button-shadow:active {
|
|
box-shadow: none;
|
|
}
|
|
|
|
.button-ujarak {
|
|
position: relative;
|
|
z-index: 0;
|
|
transition: background .4s, border-color .4s, color .4s;
|
|
}
|
|
|
|
.button-ujarak::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: #ffad4d;
|
|
z-index: -1;
|
|
opacity: 0;
|
|
transform: scale3d(0.7, 1, 1);
|
|
transition: transform 0.42s, opacity 0.42s;
|
|
border-radius: inherit;
|
|
}
|
|
|
|
.button-ujarak, .button-ujarak::before {
|
|
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
|
}
|
|
|
|
.button-ujarak:hover {
|
|
transition: background .4s .4s, border-color .4s 0s, color .2s 0s;
|
|
}
|
|
|
|
.button-ujarak:hover::before {
|
|
opacity: 1;
|
|
transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
|
|
}
|
|
|
|
.button-xs {
|
|
padding: 8px 17px;
|
|
}
|
|
|
|
.button-sm {
|
|
padding: 13px 25px;
|
|
font-size: 11px;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.button-lg {
|
|
padding: 12px 50px;
|
|
font-size: 14px;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.button-xl {
|
|
padding: 16px 50px;
|
|
font-size: 16px;
|
|
line-height: 28px;
|
|
}
|
|
|
|
@media (min-width: 992px) {
|
|
.button-xl {
|
|
padding: 20px 80px;
|
|
}
|
|
}
|
|
|
|
.button-circle {
|
|
border-radius: 30px;
|
|
}
|
|
|
|
.button-round-1 {
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.button-round-2 {
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.button.button-icon {
|
|
display: inline-flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
vertical-align: middle;
|
|
padding-left: 40px;
|
|
}
|
|
|
|
.button.button-icon .icon {
|
|
position: relative;
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
color: inherit;
|
|
font-size: 1.55em;
|
|
line-height: 1.2em;
|
|
}
|
|
|
|
.button.button-icon-left .icon {
|
|
padding-right: 8px;
|
|
}
|
|
|
|
.button.button-icon-right {
|
|
flex-direction: row-reverse;
|
|
}
|
|
|
|
.button.button-icon-right .icon {
|
|
padding-left: 8px;
|
|
}
|
|
|
|
.button.button-icon.button-link .icon {
|
|
top: 5px;
|
|
font-size: 1em;
|
|
}
|
|
|
|
.button.button-icon.button-xs .icon {
|
|
top: .05em;
|
|
font-size: 1.2em;
|
|
padding-right: 8px;
|
|
}
|
|
|
|
.button.button-icon.button-xs .button-icon-right {
|
|
padding-left: 8px;
|
|
}
|
|
|
|
.button-link {
|
|
display: inline-block;
|
|
font: 400 18px/1 "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
color: #151515;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.button-link.button-link-icon .icon {
|
|
font-size: 25px;
|
|
margin-right: 7px;
|
|
vertical-align: text-bottom;
|
|
}
|
|
|
|
* + .button-link {
|
|
margin-top: 25px;
|
|
}
|
|
|
|
.btn-primary {
|
|
border-radius: 3px;
|
|
font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
font-weight: 900;
|
|
letter-spacing: .05em;
|
|
text-transform: uppercase;
|
|
transition: .33s;
|
|
}
|
|
|
|
.btn-primary, .btn-primary:active, .btn-primary:focus {
|
|
color: #ffffff;
|
|
background: #ffad4d;
|
|
border-color: #ffad4d;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
color: #ffffff;
|
|
background: #000000;
|
|
border-color: #000000;
|
|
}
|
|
|
|
/**
|
|
* Button effects
|
|
*/
|
|
.button-nina {
|
|
position: relative;
|
|
overflow: hidden;
|
|
transition: background 0.3s 0.01s, border-color 0.3s 0.01s, box-shadow .3s;
|
|
}
|
|
|
|
.button-nina > span {
|
|
display: none;
|
|
vertical-align: middle;
|
|
line-height: 24px;
|
|
}
|
|
|
|
.desktop .rd-form-inline .button-nina > span,
|
|
.desktop .rd-form .button-nina > span {
|
|
line-height: 34px;
|
|
}
|
|
|
|
.button-nina .button-original-content {
|
|
display: block;
|
|
}
|
|
|
|
@media (max-width: 767.98px) {
|
|
html:not(.desktop) .button-original-content {
|
|
transition: .22s;
|
|
transition-delay: 0s !important;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 992px) {
|
|
.desktop .button-nina > span {
|
|
position: relative;
|
|
overflow: hidden;
|
|
display: inline-block;
|
|
line-height: 24px;
|
|
text-align: center;
|
|
opacity: 0.01;
|
|
color: inherit;
|
|
transform: translate3d(0, -10px, 0);
|
|
transition: 0.22s;
|
|
transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
|
|
}
|
|
.desktop .button-nina > span:first-child {
|
|
padding-left: 4px;
|
|
}
|
|
.desktop .button-nina > span:nth-last-child(2) {
|
|
padding-right: 4px;
|
|
}
|
|
.desktop .button-nina > span:empty::after {
|
|
display: inline-block;
|
|
padding: 0 2px;
|
|
content: '\a';
|
|
}
|
|
.desktop .button-nina > span:only-child {
|
|
transform: translate3d(0, 0, 0);
|
|
opacity: 1;
|
|
}
|
|
.desktop .button-nina .button-original-content {
|
|
position: absolute;
|
|
z-index: 1;
|
|
opacity: 1;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
display: block;
|
|
padding: inherit;
|
|
transform: translate3d(0, 0, 0);
|
|
letter-spacing: 0.07em;
|
|
min-width: inherit;
|
|
background-color: transparent;
|
|
}
|
|
.desktop .button-nina:hover > span {
|
|
opacity: 1;
|
|
top: 0;
|
|
transform: translate3d(0, 0, 0);
|
|
}
|
|
.desktop .button-nina:hover .button-original-content {
|
|
opacity: 0;
|
|
transform: translate3d(0, 100%, 0);
|
|
transition-delay: 0s !important;
|
|
}
|
|
.desktop .rd-form-inline .button-nina > span {
|
|
line-height: 34px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.desktop .rd-form-inline .button-nina > span {
|
|
line-height: 24px;
|
|
}
|
|
}
|
|
|
|
/*
|
|
*
|
|
* Form styles
|
|
*/
|
|
.rd-form {
|
|
position: relative;
|
|
text-align: left;
|
|
}
|
|
|
|
.rd-form .button {
|
|
min-height: 60px;
|
|
}
|
|
|
|
* + .rd-form {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
* + .form-button {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
* + .form-button {
|
|
margin-top: 45px;
|
|
}
|
|
}
|
|
|
|
input:-webkit-autofill ~ label,
|
|
input:-webkit-autofill ~ .form-validation {
|
|
color: #000000 !important;
|
|
}
|
|
|
|
.form-wrap {
|
|
position: relative;
|
|
width: 100%;
|
|
}
|
|
|
|
.form-wrap.has-error .form-input {
|
|
border-color: #f8666a;
|
|
}
|
|
|
|
.form-wrap.has-focus .form-input {
|
|
border-color: #ffad4d;
|
|
}
|
|
|
|
.form-wrap-icon .form-input {
|
|
padding-bottom: 0;
|
|
padding-left: 25px;
|
|
}
|
|
|
|
.form-wrap-icon .form-label {
|
|
padding-left: 0;
|
|
font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
}
|
|
|
|
.form-wrap-icon .form-label:before {
|
|
font-size: 20px;
|
|
margin-right: 5px;
|
|
vertical-align: baseline;
|
|
font-family: "Material Design Icons";
|
|
}
|
|
|
|
.form-wrap + * {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.form-input {
|
|
display: block;
|
|
width: 100%;
|
|
min-height: 60px;
|
|
padding: 9px 19px;
|
|
font-size: 18px;
|
|
font-weight: 400;
|
|
line-height: 31px;
|
|
color: #151515;
|
|
background-color: #ffffff;
|
|
background-image: none;
|
|
border-radius: 0;
|
|
-webkit-appearance: none;
|
|
transition: .3s ease-in-out;
|
|
border: 1px solid #ffffff;
|
|
}
|
|
|
|
.form-input:focus {
|
|
outline: 0;
|
|
}
|
|
|
|
textarea.form-input {
|
|
height: 110px;
|
|
min-height: 50px;
|
|
max-height: 187px;
|
|
resize: vertical;
|
|
}
|
|
|
|
.form-label,
|
|
.form-label-outside {
|
|
margin-bottom: 0;
|
|
color: #151515;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.form-label {
|
|
position: absolute;
|
|
top: 30px;
|
|
left: 0;
|
|
right: 0;
|
|
padding-left: 19px;
|
|
padding-right: 19px;
|
|
font-size: 18px;
|
|
font-weight: 400;
|
|
line-height: 31px;
|
|
pointer-events: none;
|
|
text-align: left;
|
|
z-index: 1;
|
|
transition: .25s;
|
|
will-change: transform;
|
|
transform: translate3d(0, -50%, 0);
|
|
}
|
|
|
|
.form-label.focus {
|
|
opacity: 0;
|
|
}
|
|
|
|
.form-label.auto-fill {
|
|
color: #151515;
|
|
}
|
|
|
|
.form-label-outside {
|
|
width: 100%;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.form-label-outside {
|
|
position: static;
|
|
}
|
|
.form-label-outside, .form-label-outside.focus, .form-label-outside.auto-fill {
|
|
transform: none;
|
|
}
|
|
}
|
|
|
|
[data-x-mode='true'] .form-label {
|
|
pointer-events: auto;
|
|
}
|
|
|
|
.form-validation {
|
|
position: absolute;
|
|
right: 8px;
|
|
bottom: 4px;
|
|
z-index: 1;
|
|
margin-top: 2px;
|
|
font-size: 10px;
|
|
font-weight: 400;
|
|
line-height: 12px;
|
|
letter-spacing: 0;
|
|
color: #f8666a;
|
|
transition: .3s;
|
|
}
|
|
|
|
.form-validation-left .form-validation {
|
|
top: 100%;
|
|
right: auto;
|
|
left: 0;
|
|
}
|
|
|
|
#form-output-global {
|
|
position: fixed;
|
|
bottom: 30px;
|
|
left: 15px;
|
|
z-index: 99999;
|
|
visibility: hidden;
|
|
transform: translate3d(-500px, 0, 0);
|
|
transition: .3s all ease;
|
|
}
|
|
|
|
#form-output-global.active {
|
|
visibility: visible;
|
|
transform: translate3d(0, 0, 0);
|
|
}
|
|
|
|
@media (min-width: 576px) {
|
|
#form-output-global {
|
|
left: 30px;
|
|
}
|
|
}
|
|
|
|
.form-output {
|
|
position: absolute;
|
|
top: 100%;
|
|
left: 0;
|
|
font-size: 10px;
|
|
font-weight: 400;
|
|
line-height: 1.2;
|
|
margin-top: 2px;
|
|
transition: .3s;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
}
|
|
|
|
.form-output.active {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
}
|
|
|
|
.form-output.error {
|
|
color: #f8666a;
|
|
}
|
|
|
|
.form-output.success {
|
|
color: #98bf44;
|
|
}
|
|
|
|
.radio .radio-custom,
|
|
.radio-inline .radio-custom,
|
|
.checkbox .checkbox-custom,
|
|
.checkbox-inline .checkbox-custom {
|
|
opacity: 0;
|
|
}
|
|
|
|
.radio .radio-custom, .radio .radio-custom-dummy,
|
|
.radio-inline .radio-custom,
|
|
.radio-inline .radio-custom-dummy,
|
|
.checkbox .checkbox-custom,
|
|
.checkbox .checkbox-custom-dummy,
|
|
.checkbox-inline .checkbox-custom,
|
|
.checkbox-inline .checkbox-custom-dummy {
|
|
position: absolute;
|
|
left: 0;
|
|
width: 14px;
|
|
height: 14px;
|
|
outline: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.radio .radio-custom-dummy,
|
|
.radio-inline .radio-custom-dummy,
|
|
.checkbox .checkbox-custom-dummy,
|
|
.checkbox-inline .checkbox-custom-dummy {
|
|
pointer-events: none;
|
|
background: #ffffff;
|
|
}
|
|
|
|
.radio .radio-custom-dummy::after,
|
|
.radio-inline .radio-custom-dummy::after,
|
|
.checkbox .checkbox-custom-dummy::after,
|
|
.checkbox-inline .checkbox-custom-dummy::after {
|
|
position: absolute;
|
|
opacity: 0;
|
|
transition: .22s;
|
|
}
|
|
|
|
.radio .radio-custom:focus,
|
|
.radio-inline .radio-custom:focus,
|
|
.checkbox .checkbox-custom:focus,
|
|
.checkbox-inline .checkbox-custom:focus {
|
|
outline: none;
|
|
}
|
|
|
|
.radio input,
|
|
.radio-inline input,
|
|
.checkbox input,
|
|
.checkbox-inline input {
|
|
position: absolute;
|
|
width: 1px;
|
|
height: 1px;
|
|
padding: 0;
|
|
margin: -1px;
|
|
overflow: hidden;
|
|
clip: rect(0, 0, 0, 0);
|
|
white-space: nowrap;
|
|
border: 0;
|
|
}
|
|
|
|
.radio-custom:checked + .radio-custom-dummy:after,
|
|
.checkbox-custom:checked + .checkbox-custom-dummy:after {
|
|
opacity: 1;
|
|
}
|
|
|
|
.radio,
|
|
.radio-inline {
|
|
padding-left: 28px;
|
|
}
|
|
|
|
.radio .radio-custom-dummy,
|
|
.radio-inline .radio-custom-dummy {
|
|
top: 1px;
|
|
left: 0;
|
|
width: 18px;
|
|
height: 18px;
|
|
border-radius: 50%;
|
|
border: 1px solid #b7b7b7;
|
|
}
|
|
|
|
.radio .radio-custom-dummy::after,
|
|
.radio-inline .radio-custom-dummy::after {
|
|
content: '';
|
|
top: 3px;
|
|
right: 3px;
|
|
bottom: 3px;
|
|
left: 3px;
|
|
background: #2c343b;
|
|
border-radius: inherit;
|
|
}
|
|
|
|
.checkbox,
|
|
.checkbox-inline {
|
|
padding-left: 28px;
|
|
}
|
|
|
|
.checkbox .checkbox-custom-dummy,
|
|
.checkbox-inline .checkbox-custom-dummy {
|
|
left: 0;
|
|
width: 18px;
|
|
height: 18px;
|
|
margin: 0;
|
|
border: 1px solid #b7b7b7;
|
|
}
|
|
|
|
.checkbox .checkbox-custom-dummy::after,
|
|
.checkbox-inline .checkbox-custom-dummy::after {
|
|
content: '\f222';
|
|
font-family: "Material Design Icons";
|
|
position: absolute;
|
|
top: -1px;
|
|
left: -2px;
|
|
font-size: 20px;
|
|
line-height: 18px;
|
|
color: #d7d7d7;
|
|
}
|
|
|
|
.toggle-custom {
|
|
padding-left: 60px;
|
|
-webkit-appearance: none;
|
|
}
|
|
|
|
.toggle-custom:checked ~ .checkbox-custom-dummy::after {
|
|
background: #ffad4d;
|
|
transform: translate(20px, -50%);
|
|
}
|
|
|
|
.toggle-custom ~ .checkbox-custom-dummy {
|
|
position: relative;
|
|
display: inline-block;
|
|
margin-top: -1px;
|
|
width: 44px;
|
|
height: 20px;
|
|
background: #ffffff;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.toggle-custom ~ .checkbox-custom-dummy::after {
|
|
content: '';
|
|
position: absolute;
|
|
display: inline-block;
|
|
width: 16px;
|
|
height: 16px;
|
|
left: 0;
|
|
top: 50%;
|
|
background: #b7b7b7;
|
|
transform: translate(4px, -50%);
|
|
opacity: 1;
|
|
transition: .22s;
|
|
}
|
|
|
|
.rd-form-inline {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: stretch;
|
|
justify-content: center;
|
|
text-align: center;
|
|
transform: translate3d(0, -15px, 0);
|
|
margin-bottom: -15px;
|
|
margin-left: -8px;
|
|
margin-right: -8px;
|
|
max-width: 570px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.rd-form-inline > * {
|
|
margin-top: 15px;
|
|
padding-left: 8px;
|
|
padding-right: 8px;
|
|
}
|
|
|
|
* + .rd-form-inline {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.rd-form-inline .form-wrap {
|
|
flex: 1;
|
|
min-width: 185px;
|
|
}
|
|
|
|
.rd-form-inline .form-input {
|
|
border-radius: 35px;
|
|
padding-left: 30px;
|
|
}
|
|
|
|
.rd-form-inline .form-validation {
|
|
right: 32px;
|
|
}
|
|
|
|
.rd-form-inline .form-label {
|
|
padding-left: 38px;
|
|
}
|
|
|
|
.rd-form-inline .form-wrap-select {
|
|
text-align: left;
|
|
}
|
|
|
|
.rd-form-inline .form-button {
|
|
flex-shrink: 0;
|
|
max-width: calc(100% - 10px);
|
|
min-height: 50px;
|
|
}
|
|
|
|
@media (min-width: 576px) {
|
|
.rd-form-inline .button {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
.rd-form-inline.rd-form-inline-centered {
|
|
justify-content: center;
|
|
}
|
|
|
|
.form-sm .form-input,
|
|
.form-sm .button {
|
|
padding-top: 9px;
|
|
padding-bottom: 9px;
|
|
min-height: 40px;
|
|
}
|
|
|
|
.form-sm .form-validation {
|
|
top: -16px;
|
|
}
|
|
|
|
.form-sm .form-label {
|
|
top: 20px;
|
|
}
|
|
|
|
.form-sm * + .button {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.form-lg .form-input,
|
|
.form-lg .form-label,
|
|
.form-lg .select2-container .select2-choice {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.form-lg .form-input,
|
|
.form-lg .select2-container .select2-choice {
|
|
font-size: 16px;
|
|
padding-top: 14px;
|
|
padding-bottom: 14px;
|
|
}
|
|
|
|
.form-lg .form-input,
|
|
.form-lg .select2-container .select2-choice {
|
|
min-height: 58px;
|
|
}
|
|
|
|
.form-lg .form-button {
|
|
min-height: 60px;
|
|
}
|
|
|
|
.form-lg .form-label {
|
|
top: 30px;
|
|
}
|
|
|
|
/* Nao */
|
|
.input--nao {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.input--nao.form-wrap.has-error .form-input {
|
|
border: 0;
|
|
}
|
|
|
|
.input--nao.form-wrap.has-error .form-label {
|
|
color: #f8666a;
|
|
}
|
|
|
|
.input--nao.form-wrap.has-error .graphic--nao {
|
|
stroke: #f8666a;
|
|
}
|
|
|
|
.input__field--nao {
|
|
width: 100%;
|
|
background: transparent;
|
|
border: none;
|
|
}
|
|
|
|
.input__label--nao {
|
|
transform-origin: 0 0;
|
|
transition: transform 0.2s 0.15s, color 1s;
|
|
transition-timing-function: ease-out;
|
|
transform: none;
|
|
top: auto;
|
|
bottom: 0;
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
textarea ~ .input__label--nao {
|
|
bottom: auto;
|
|
top: 0;
|
|
padding-top: 20px;
|
|
}
|
|
|
|
textarea.input__field--nao {
|
|
padding-top: 20px;
|
|
}
|
|
|
|
.graphic {
|
|
position: absolute;
|
|
bottom: -2px;
|
|
left: 0;
|
|
fill: none;
|
|
}
|
|
|
|
.graphic--nao {
|
|
stroke: #d7d7d7;
|
|
pointer-events: none;
|
|
transition: transform 0.7s, stroke 0.7s;
|
|
transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
|
|
}
|
|
|
|
.input__field--nao:focus + .input__label--nao,
|
|
.input__label--nao.form-label.focus {
|
|
transform: translate3d(0, -1.15em, 0) scale3d(0.8, 0.8, 1);
|
|
opacity: 1;
|
|
}
|
|
|
|
.input__field--nao:focus ~ .graphic--nao,
|
|
.input--filled .graphic--nao {
|
|
stroke: #151515;
|
|
transform: translate3d(-66.6%, 0, 0);
|
|
}
|
|
|
|
.form-shadow .form-input {
|
|
box-shadow: 2px 2px 7px rgba(21, 21, 21, 0.05);
|
|
}
|
|
|
|
/*
|
|
*
|
|
* Posts
|
|
*/
|
|
/*
|
|
*
|
|
* Quotes
|
|
*/
|
|
.quote-primary-mark {
|
|
position: relative;
|
|
top: 6px;
|
|
display: block;
|
|
width: 37px;
|
|
height: 27px;
|
|
fill: #ffad4d;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.quote-primary-body {
|
|
position: relative;
|
|
padding: 25px 0;
|
|
border-top: 1px solid #e7e7e7;
|
|
}
|
|
|
|
.quote-primary-body::before, .quote-primary-body::after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: 0;
|
|
height: 13px;
|
|
border-style: solid;
|
|
border-color: #e7e7e7;
|
|
}
|
|
|
|
.quote-primary-body::before {
|
|
left: 0;
|
|
width: 78px;
|
|
border-width: 1px 1px 0 0;
|
|
}
|
|
|
|
.quote-primary-body::after {
|
|
right: 0;
|
|
width: calc(100% - 78px - 12px);
|
|
border-width: 1px 0 0 1px;
|
|
transform-origin: 0 0;
|
|
transform: skew(-45deg);
|
|
}
|
|
|
|
.quote-primary-text {
|
|
padding-top: 20px;
|
|
}
|
|
|
|
.quote-primary-cite {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.quote-primary-footer {
|
|
padding-left: 5px;
|
|
}
|
|
|
|
* + .quote-primary {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
* + .quote-primary-footer {
|
|
margin-top: 8px;
|
|
}
|
|
|
|
@media (min-width: 576px) {
|
|
.quote-primary-body {
|
|
display: flex;
|
|
padding: 32px 20px 40px 30px;
|
|
}
|
|
.quote-primary-text {
|
|
padding-top: 0;
|
|
padding-left: 20px;
|
|
}
|
|
.quote-primary-footer {
|
|
padding-left: 30px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.quote-primary-body {
|
|
padding-right: 40px;
|
|
}
|
|
}
|
|
|
|
/*
|
|
*
|
|
* Thumbnails
|
|
*/
|
|
.figure-light figcaption {
|
|
padding-top: 10px;
|
|
color: #b7b7b7;
|
|
}
|
|
|
|
/*
|
|
*
|
|
* Breadcrumbs
|
|
*/
|
|
.breadcrumbs-custom {
|
|
position: relative;
|
|
padding: 35px 0 40px;
|
|
text-align: center;
|
|
background-color: #d7d7d7;
|
|
}
|
|
|
|
.breadcrumbs-custom-path {
|
|
margin-left: -15px;
|
|
margin-right: -15px;
|
|
}
|
|
|
|
.breadcrumbs-custom-path > * {
|
|
padding-left: 15px;
|
|
padding-right: 15px;
|
|
}
|
|
|
|
.breadcrumbs-custom-path a {
|
|
display: inline;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.breadcrumbs-custom-path a, .breadcrumbs-custom-path a:active, .breadcrumbs-custom-path a:focus {
|
|
color: #ffad4d;
|
|
}
|
|
|
|
.breadcrumbs-custom-path li {
|
|
position: relative;
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
font-size: 14px;
|
|
line-height: 1.7;
|
|
}
|
|
|
|
.breadcrumbs-custom-path li::after {
|
|
content: "";
|
|
font-family: 'FontAwesome';
|
|
position: absolute;
|
|
top: 52%;
|
|
right: -5px;
|
|
display: inline-block;
|
|
font-size: inherit;
|
|
font-style: normal;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
transform: translate3d(0, -50%, 0);
|
|
}
|
|
|
|
.breadcrumbs-custom-path li:last-child:after {
|
|
display: none;
|
|
}
|
|
|
|
.breadcrumbs-custom-path a:hover,
|
|
.breadcrumbs-custom-path li.active {
|
|
color: #ffffff;
|
|
}
|
|
|
|
.breadcrumbs-custom-path li.active {
|
|
top: 2px;
|
|
}
|
|
|
|
* + .breadcrumbs-custom-path {
|
|
margin-top: 14px;
|
|
}
|
|
|
|
@media (max-width: 991.98px) {
|
|
.breadcrumbs-custom-title {
|
|
font-size: 26px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 576px) {
|
|
.breadcrumbs-custom {
|
|
margin-left: -30px;
|
|
margin-right: -30px;
|
|
}
|
|
.breadcrumbs-custom > * {
|
|
padding-left: 30px;
|
|
padding-right: 30px;
|
|
}
|
|
* + .breadcrumbs-custom-path {
|
|
margin-top: 18px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.breadcrumbs-custom {
|
|
padding: 70px 0 80px;
|
|
}
|
|
.breadcrumbs-custom-path li {
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.breadcrumbs-custom {
|
|
padding: 80px 0 100px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1600px) {
|
|
.breadcrumbs-custom {
|
|
padding: 80px 0 100px;
|
|
}
|
|
}
|
|
|
|
/*
|
|
*
|
|
* Pagination custom
|
|
*/
|
|
.pagination {
|
|
font-size: 0;
|
|
line-height: 0;
|
|
margin-bottom: -10px;
|
|
margin-left: -10px;
|
|
}
|
|
|
|
.pagination:empty {
|
|
margin-bottom: 0;
|
|
margin-left: 0;
|
|
}
|
|
|
|
.pagination > * {
|
|
display: inline-block;
|
|
margin-top: 0;
|
|
margin-bottom: 10px;
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.page-item {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
text-align: center;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.page-link {
|
|
display: inline-block;
|
|
min-width: 48px;
|
|
padding: 10px 10px;
|
|
border: 2px solid #e7e7e7;
|
|
font-size: 14px;
|
|
line-height: 1.71429;
|
|
background-color: #ffffff;
|
|
color: #5b5b5b;
|
|
transition: all 0.3s ease-in-out;
|
|
}
|
|
|
|
.page-link:hover, .page-link:focus, .page-link:active {
|
|
color: #ffffff;
|
|
background-color: #ffad4d;
|
|
border-color: #ffad4d;
|
|
}
|
|
|
|
.page-item.active > .page-link, .page-item.active > .page-link:hover, .page-item.active > .page-link:focus, .page-item.active > .page-link:active {
|
|
color: #ffffff;
|
|
background-color: #ffad4d;
|
|
border-color: #ffad4d;
|
|
}
|
|
|
|
.page-item.disabled > .page-link, .page-item.disabled > .page-link:hover, .page-item.disabled > .page-link:focus, .page-item.disabled > .page-link:active {
|
|
color: #b7b7b7;
|
|
background-color: #e7e7e7;
|
|
border-color: #e7e7e7;
|
|
}
|
|
|
|
.page-item-control .icon::before {
|
|
font-family: 'FontAwesome';
|
|
font-size: 11px;
|
|
line-height: 24px;
|
|
}
|
|
|
|
.page-item-control:first-child .icon::before {
|
|
content: '\f053';
|
|
margin-left: -1px;
|
|
}
|
|
|
|
.page-item-control:last-child .icon::before {
|
|
content: '\f054';
|
|
margin-right: -1px;
|
|
}
|
|
|
|
/*
|
|
*
|
|
* Snackbars
|
|
*/
|
|
.snackbars {
|
|
padding: 9px 16px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
color: #ffffff;
|
|
text-align: left;
|
|
background-color: #151515;
|
|
border-radius: 0;
|
|
box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
|
|
font-size: 14px;
|
|
}
|
|
|
|
.snackbars .icon-xxs {
|
|
font-size: 18px;
|
|
}
|
|
|
|
.snackbars p span:last-child {
|
|
padding-left: 14px;
|
|
}
|
|
|
|
.snackbars-left {
|
|
display: inline-block;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.snackbars-right {
|
|
display: inline-block;
|
|
float: right;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.snackbars-right:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
@media (min-width: 576px) {
|
|
.snackbars {
|
|
max-width: 540px;
|
|
padding: 12px 15px;
|
|
font-size: 15px;
|
|
}
|
|
}
|
|
|
|
/*
|
|
*
|
|
* Footers
|
|
*/
|
|
.footer-classic {
|
|
padding: 50px 0 0;
|
|
background: #f3f3f3;
|
|
}
|
|
|
|
.footer-classic .rights {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
.footer-classic p {
|
|
line-height: 22px;
|
|
letter-spacing: 0.025em;
|
|
}
|
|
|
|
.footer-classic a, .footer-classic a:focus, .footer-classic a:active {
|
|
color: #ffffff;
|
|
}
|
|
|
|
.footer-classic a:hover {
|
|
color: #ffffff;
|
|
}
|
|
|
|
.footer-classic [href*='mailto:']:hover,
|
|
.footer-classic [href*='tel:']:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.footer-classic h5 {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.footer-classic .contact-list dt {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
.footer-classic * + p {
|
|
margin-top: 25px;
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.footer-classic {
|
|
padding: 75px 0 0;
|
|
}
|
|
.footer-classic * + .row {
|
|
margin-top: 65px;
|
|
}
|
|
}
|
|
|
|
.social-container {
|
|
text-align: center;
|
|
}
|
|
|
|
.social-container .col {
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
.social-inner {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
width: 100%;
|
|
padding: 23px;
|
|
font: 900 13px/1 "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
text-transform: uppercase;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
.social-inner .icon {
|
|
color: #ffffff;
|
|
padding: 8px;
|
|
}
|
|
|
|
@media (min-width: 992px) {
|
|
.social-inner {
|
|
display: inline-block;
|
|
}
|
|
}
|
|
|
|
.social-inner:hover {
|
|
color: inherit;
|
|
background-color: rgba(71, 78, 102, 0.18);
|
|
}
|
|
|
|
.footer-minimal {
|
|
padding-top: 65px;
|
|
padding-bottom: 65px;
|
|
text-align: center;
|
|
background-color: #394254;
|
|
}
|
|
|
|
.footer-minimal .rights {
|
|
font-size: 16px;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.modal {
|
|
z-index: 9999;
|
|
padding-top: 15px;
|
|
padding-bottom: 15px;
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.modal {
|
|
padding: 0;
|
|
}
|
|
}
|
|
|
|
.modal-dialog_custom {
|
|
min-height: calc(100vh - 20px);
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: left;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.modal-dialog_custom .modal-dialog__inner {
|
|
position: relative;
|
|
width: 100%;
|
|
max-width: 550px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
pointer-events: auto;
|
|
border-radius: 0;
|
|
overflow: hidden;
|
|
filter: drop-shadow(3px 5px 5px rgba(0, 0, 0, 0.5));
|
|
background-color: #ffffff;
|
|
padding: 30px;
|
|
}
|
|
|
|
.modal-dialog_custom .decoration {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 1;
|
|
margin: 0;
|
|
transform: rotate(90deg) translateY(-100%);
|
|
transform-origin: 0 0;
|
|
font-size: 140px;
|
|
pointer-events: none;
|
|
opacity: .08;
|
|
line-height: .9;
|
|
letter-spacing: 15.1px;
|
|
}
|
|
|
|
.modal-dialog_custom .img-responsive {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.modal-dialog_custom .rd-mailform .btn {
|
|
width: 100%;
|
|
height: 60px;
|
|
}
|
|
|
|
.modal-dialog_custom button.close {
|
|
position: absolute;
|
|
top: 30px;
|
|
right: 20px;
|
|
z-index: 10000;
|
|
transition: .33s all ease;
|
|
cursor: pointer;
|
|
font-size: 0;
|
|
line-height: 1;
|
|
color: #151515;
|
|
opacity: 1;
|
|
text-shadow: none;
|
|
}
|
|
|
|
.modal-dialog_custom button.close::before {
|
|
display: block;
|
|
content: '\f69a';
|
|
font-family: "Material Design Icons";
|
|
font-weight: 400;
|
|
font-size: 19px;
|
|
line-height: inherit;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.modal-dialog_custom button.close:hover {
|
|
color: #ffad4d;
|
|
}
|
|
|
|
.modal-dialog_custom * + .rd-mailform {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.modal-dialog_custom-details .modal-dialog__inner {
|
|
max-width: 950px;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
background-color: #ffffff;
|
|
padding-top: 50px;
|
|
}
|
|
|
|
.modal-dialog_custom-details .modal-dialog__inner button.close {
|
|
top: 15px;
|
|
}
|
|
|
|
.modal-dialog_custom-details .modal-dialog__content-inner:nth-child(2) {
|
|
padding: 30px 15px;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.modal-dialog_custom {
|
|
min-height: calc(100vh - 60px);
|
|
}
|
|
.modal-dialog_custom-details {
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
.modal-dialog_custom-details ul {
|
|
margin: 0;
|
|
}
|
|
.modal-dialog_custom-details .modal-dialog__inner {
|
|
padding: 0;
|
|
text-align: left;
|
|
}
|
|
.modal-dialog_custom-details .modal-dialog__content {
|
|
display: flex;
|
|
}
|
|
.modal-dialog_custom-details .modal-dialog__content-inner {
|
|
flex-grow: 1;
|
|
flex-shrink: 0;
|
|
width: 65%;
|
|
}
|
|
.modal-dialog_custom-details .modal-dialog__content-inner:nth-child(2) {
|
|
padding: 43px 30px;
|
|
flex-shrink: 1;
|
|
}
|
|
.modal-dialog_custom .d-flex {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.modal-dialog_custom .justify-content-between {
|
|
justify-content: space-between;
|
|
}
|
|
}
|
|
|
|
.ie-10 .modal-dialog_custom,
|
|
.ie-11 .modal-dialog_custom {
|
|
display: block;
|
|
vertical-align: middle;
|
|
white-space: nowrap;
|
|
text-align: center;
|
|
}
|
|
|
|
.ie-10 .modal-dialog_custom > *,
|
|
.ie-11 .modal-dialog_custom > * {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
white-space: normal;
|
|
}
|
|
|
|
.ie-10 .modal-dialog_custom:after,
|
|
.ie-11 .modal-dialog_custom:after {
|
|
content: '';
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
min-height: inherit;
|
|
width: 0;
|
|
}
|
|
|
|
.corner-1 {
|
|
border-radius: 8px 8px 0 0;
|
|
padding: 30px;
|
|
background: #ffffff;
|
|
background: linear-gradient(to right, #ffffff 0, #ffffff 100%) no-repeat top center, linear-gradient(to bottom, #ffffff 0, #ffffff 100%) no-repeat center left, radial-gradient(at top left, #ffffff 64%, #ffffff 69%) no-repeat top left, radial-gradient(at top right, #ffffff 64%, #ffffff 69%) no-repeat top right, radial-gradient(at bottom left, transparent 64%, #ffffff 69%) no-repeat bottom left, radial-gradient(at bottom right, transparent 64%, #ffffff 69%) no-repeat bottom right;
|
|
background-size: calc(100% - 30px) 100%, 100% calc(100% - 30px), 16px 16px, 16px 16px, 16px 16px, 16px 16px;
|
|
}
|
|
|
|
.corner-2 {
|
|
border-radius: 0 0 8px 8px;
|
|
padding: 45px 30px;
|
|
background: #ffffff;
|
|
background: linear-gradient(to right, #ffffff 0, #ffffff 100%) no-repeat top center, linear-gradient(to bottom, #ffffff 0, #ffffff 100%) no-repeat center left, radial-gradient(at top left, transparent 64%, #ffffff 69%) no-repeat top left, radial-gradient(at top right, transparent 64%, #ffffff 69%) no-repeat top right, radial-gradient(at bottom left, #ffffff 64%, #ffffff 69%) no-repeat bottom left, radial-gradient(at bottom right, #ffffff 64%, #ffffff 69%) no-repeat bottom right;
|
|
background-size: calc(100% - 30px) 100%, 100% calc(100% - 30px), 16px 16px, 16px 16px, 16px 16px, 16px 16px;
|
|
}
|
|
|
|
/*
|
|
*
|
|
* Panels Custom
|
|
* --------------------------------------------------
|
|
*/
|
|
.panel {
|
|
margin-bottom: 0;
|
|
box-shadow: none;
|
|
border: none;
|
|
border-radius: 0;
|
|
text-align: left;
|
|
}
|
|
|
|
.panel-custom {
|
|
border-top: 1px solid #d7d7d7;
|
|
border-bottom: 1px solid #d7d7d7;
|
|
}
|
|
|
|
.panel-custom-body {
|
|
font-size: 16px;
|
|
line-height: 24px;
|
|
font-weight: 300;
|
|
}
|
|
|
|
.panel-custom + .panel-custom {
|
|
border-bottom: 1px solid #d7d7d7;
|
|
border-top: none;
|
|
margin-top: 0;
|
|
}
|
|
|
|
.panel-custom .panel-custom-title > a {
|
|
display: block;
|
|
position: relative;
|
|
padding: 20px 45px 20px 30px;
|
|
color: #151515;
|
|
background: transparent;
|
|
font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
font-weight: 500;
|
|
transition: .3s all ease;
|
|
}
|
|
|
|
.panel-custom .panel-custom-title > a:before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 50%;
|
|
right: 20px;
|
|
font: 400 24px/24px "Linearicons";
|
|
color: #151515;
|
|
transform: translateY(-50%) rotate(0deg);
|
|
transition: .35s all ease-in-out;
|
|
}
|
|
|
|
.panel-custom .panel-custom-title > a span {
|
|
padding-left: 8px;
|
|
color: #151515;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.panel-custom .panel-custom-title > a.collapsed {
|
|
background: #fcfcfc;
|
|
}
|
|
|
|
.panel-custom .panel-custom-title > a.collapsed:before {
|
|
content: '\e936';
|
|
transform: translateY(-50%) rotate(180deg);
|
|
}
|
|
|
|
.panel-custom .panel-custom-title > a:hover {
|
|
text-decoration: none;
|
|
background: transparent;
|
|
}
|
|
|
|
.panel-custom .panel-custom-collapse {
|
|
background: transparent;
|
|
}
|
|
|
|
.panel-custom .panel-custom-collapse .panel-custom-body {
|
|
padding: 0px 20px 20px 30px;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.panel-custom .panel-custom-collapse .panel-custom-body {
|
|
padding: 0px 45px 20px 30px;
|
|
padding-right: 180px;
|
|
}
|
|
}
|
|
|
|
h3 + .panel-custom-group-wrap {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.panel-classic .panel-custom-title > a {
|
|
color: #ffad4d;
|
|
}
|
|
|
|
.panel-classic .panel-custom-title > a:before {
|
|
content: '\ec37';
|
|
font-size: 16px;
|
|
top: 47%;
|
|
color: #ffad4d;
|
|
transform: translateY(-50%) rotate(180deg);
|
|
transition: .35s all ease-in-out;
|
|
}
|
|
|
|
.panel-classic .panel-custom-title > a.collapsed {
|
|
color: #151515;
|
|
}
|
|
|
|
.panel-classic .panel-custom-title > a.collapsed:before {
|
|
content: "";
|
|
color: #151515;
|
|
transform: translateY(-50%) rotate(0deg);
|
|
}
|
|
|
|
.panel-classic .panel-custom-title > a:hover {
|
|
text-decoration: none;
|
|
background: transparent;
|
|
}
|
|
|
|
/*
|
|
*
|
|
* Page layout
|
|
*/
|
|
.page {
|
|
position: relative;
|
|
overflow: hidden;
|
|
min-height: 100vh;
|
|
opacity: 0;
|
|
}
|
|
|
|
[data-x-mode] .page {
|
|
opacity: 1;
|
|
}
|
|
|
|
.overflow-hidden {
|
|
overflow: hidden;
|
|
}
|
|
|
|
html.boxed body {
|
|
background: #f3f3f3 url(../images/bg-pattern-boxed.png) repeat fixed;
|
|
}
|
|
|
|
@media (min-width: 1630px) {
|
|
html.boxed .page {
|
|
max-width: 1600px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
box-shadow: 0 0 23px 0 rgba(1, 1, 1, 0.1);
|
|
}
|
|
html.boxed .rd-navbar-static {
|
|
max-width: 1600px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
html.boxed .rd-navbar-static.rd-navbar--is-stuck {
|
|
max-width: 1600px;
|
|
width: 100%;
|
|
left: calc(50% - 1600px);
|
|
right: calc(50% - 1600px);
|
|
}
|
|
}
|
|
|
|
/*
|
|
*
|
|
* Text styling
|
|
*/
|
|
.text-italic {
|
|
font-style: italic;
|
|
}
|
|
|
|
.text-normal {
|
|
font-style: normal;
|
|
}
|
|
|
|
.text-underline {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.text-strike {
|
|
text-decoration: line-through;
|
|
}
|
|
|
|
.font-weight-thin {
|
|
font-weight: 100;
|
|
}
|
|
|
|
.font-weight-light {
|
|
font-weight: 300;
|
|
}
|
|
|
|
.font-weight-regular {
|
|
font-weight: 400;
|
|
}
|
|
|
|
.font-weight-medium {
|
|
font-weight: 500;
|
|
}
|
|
|
|
.font-weight-sbold {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.font-weight-ubold {
|
|
font-weight: 900;
|
|
}
|
|
|
|
.text-spacing-0 {
|
|
letter-spacing: 0;
|
|
}
|
|
|
|
.text-primary {
|
|
color: #ffad4d !important;
|
|
}
|
|
|
|
/*
|
|
*
|
|
* Offsets
|
|
*/
|
|
* + p {
|
|
margin-top: 15px;
|
|
}
|
|
|
|
* + h1 {
|
|
margin-top: 12px;
|
|
}
|
|
|
|
* + h4 {
|
|
margin-top: 12px;
|
|
}
|
|
|
|
* + h3 {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
* + h5 {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
* + h6 {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
h1 + h3 {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
h1 + h2 {
|
|
margin-top: 25px;
|
|
}
|
|
|
|
h2 + p,
|
|
h4 + p,
|
|
.heading-2 + p {
|
|
margin-top: 12px;
|
|
}
|
|
|
|
p + h2,
|
|
p + .heading-2 {
|
|
margin-top: 15px;
|
|
}
|
|
|
|
p + p {
|
|
margin-top: 12px;
|
|
}
|
|
|
|
img + p {
|
|
margin-top: 15px;
|
|
}
|
|
|
|
h3 + img {
|
|
margin-top: 42px;
|
|
}
|
|
|
|
.group-md + h1 {
|
|
margin-top: 40px;
|
|
}
|
|
|
|
h6 + .group-sm {
|
|
margin-top: 40px;
|
|
}
|
|
|
|
* + .row {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
* + .big {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
* + .text-block {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
* + .button {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
* + .button-sm {
|
|
margin-top: 40px;
|
|
}
|
|
|
|
* + .custom-button-group {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.row + h3,
|
|
.row + .heading-3 {
|
|
margin-top: 80px;
|
|
}
|
|
|
|
.group-xl + hr {
|
|
margin-top: 45px;
|
|
}
|
|
|
|
.container + .container {
|
|
margin-top: 35px;
|
|
}
|
|
|
|
.isotope-wrap + .button {
|
|
margin-top: 40px;
|
|
}
|
|
|
|
.row + .row {
|
|
margin-top: 35px;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
* + h1 {
|
|
margin-top: 15px;
|
|
}
|
|
* + .row {
|
|
margin-top: 55px;
|
|
}
|
|
h2 + p,
|
|
h4 + p {
|
|
margin-top: 25px;
|
|
}
|
|
.subtitle + h2,
|
|
.subtitle + h4 {
|
|
margin-top: 22px;
|
|
}
|
|
h6 + .group-sm {
|
|
margin-top: 50px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
* + h1 {
|
|
margin-top: 25px;
|
|
}
|
|
* + .rd-form {
|
|
margin-top: 30px;
|
|
}
|
|
h3 + .group-sm {
|
|
margin-top: 45px;
|
|
}
|
|
.container + .container {
|
|
margin-top: 60px;
|
|
}
|
|
.row + .row {
|
|
margin-top: 50px;
|
|
}
|
|
.isotope-wrap + .row {
|
|
margin-top: 80px;
|
|
}
|
|
.isotope-wrap + .button {
|
|
margin-top: 60px;
|
|
}
|
|
}
|
|
|
|
.row-0 {
|
|
margin-bottom: 0px;
|
|
}
|
|
|
|
.row-0:empty {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.row-0 > * {
|
|
margin-bottom: 0px;
|
|
}
|
|
|
|
.row-15 {
|
|
margin-bottom: -15px;
|
|
}
|
|
|
|
.row-15:empty {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.row-15 > * {
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.row-20 {
|
|
margin-bottom: -20px;
|
|
}
|
|
|
|
.row-20:empty {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.row-20 > * {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.row-30 {
|
|
margin-bottom: -30px;
|
|
}
|
|
|
|
.row-30:empty {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.row-30 > * {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.row-50 {
|
|
margin-bottom: -50px;
|
|
}
|
|
|
|
.row-50:empty {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.row-50 > * {
|
|
margin-bottom: 50px;
|
|
}
|
|
|
|
@media (min-width: 992px) {
|
|
.row-md-30 {
|
|
margin-bottom: -30px;
|
|
}
|
|
.row-md-30:empty {
|
|
margin-bottom: 0;
|
|
}
|
|
.row-md-30 > * {
|
|
margin-bottom: 30px;
|
|
}
|
|
}
|
|
|
|
/*
|
|
*
|
|
* Sections
|
|
*/
|
|
.section-xs {
|
|
padding: 25px 0;
|
|
}
|
|
|
|
.section-sm {
|
|
padding: 45px 0 0;
|
|
}
|
|
|
|
.section-md,
|
|
.section-lg,
|
|
.section-xl,
|
|
.section-xxl {
|
|
padding: 65px 0;
|
|
}
|
|
|
|
.section-xxl {
|
|
padding: 90px 0;
|
|
}
|
|
|
|
.section-collapse + .section-collapse {
|
|
padding-top: 0;
|
|
}
|
|
|
|
.section-collapse:last-child {
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
html [class*='section-'].section-bottom-0 {
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
@media (max-width: 991.98px) {
|
|
section.section-sm:first-of-type,
|
|
section.section-md:first-of-type,
|
|
section.section-lg:first-of-type,
|
|
section.section-xl:first-of-type,
|
|
section.section-xxl:first-of-type {
|
|
padding-top: 40px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.section-md {
|
|
padding: 70px 0;
|
|
}
|
|
.section-lg {
|
|
padding: 85px 0;
|
|
}
|
|
.section-xxl {
|
|
padding: 120px 0;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 992px) {
|
|
.section-md {
|
|
padding: 80px 0 100px;
|
|
}
|
|
.section-lg {
|
|
padding: 100px 0;
|
|
}
|
|
.section-xxl {
|
|
padding: 145px 0;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.section-lg {
|
|
padding: 115px 0;
|
|
}
|
|
.section-xxl {
|
|
padding: 190px 0 180px;
|
|
}
|
|
}
|
|
|
|
.section-single {
|
|
display: flex;
|
|
text-align: center;
|
|
}
|
|
|
|
.section-single p {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.section-single * + .rights {
|
|
margin-top: 35px;
|
|
}
|
|
|
|
.section-single * + .countdown-wrap {
|
|
margin-top: 35px;
|
|
}
|
|
|
|
.section-single .countdown-wrap + * {
|
|
margin-top: 35px;
|
|
}
|
|
|
|
@media (min-width: 992px) {
|
|
.section-single * + .rights {
|
|
margin-top: 60px;
|
|
}
|
|
.section-single .countdown-wrap + * {
|
|
margin-top: 35px;
|
|
}
|
|
}
|
|
|
|
.section-single .rd-mailform-wrap {
|
|
max-width: 670px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
text-align: center;
|
|
}
|
|
|
|
.section-single * + .rd-mailform-wrap {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.section-single-header {
|
|
padding: calc(1em + 3vh) 0 calc(1em + 2vh);
|
|
}
|
|
|
|
.section-single-main {
|
|
padding: calc(1em + 4vh) 0;
|
|
}
|
|
|
|
.section-single-footer {
|
|
padding: calc(1em + 2vh) 0 calc(1em + 3vh);
|
|
}
|
|
|
|
.section-single-inner {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.section-single-inner > * {
|
|
width: 100%;
|
|
}
|
|
|
|
@supports (display: grid) {
|
|
.section-single-inner {
|
|
display: grid;
|
|
justify-items: center;
|
|
align-content: space-between;
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
|
|
/*
|
|
*
|
|
* Grid modules
|
|
*/
|
|
.grid-demonstration {
|
|
padding: 12px 8px;
|
|
letter-spacing: 0;
|
|
text-align: left;
|
|
}
|
|
|
|
.grid-demonstration h5, .grid-demonstration .heading-5 {
|
|
font-weight: 700;
|
|
}
|
|
|
|
@media (max-width: 1199.98px) {
|
|
.grid-demonstration h5, .grid-demonstration .heading-5 {
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 1599.98px) {
|
|
.grid-demonstration p {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 991.98px) {
|
|
.container-fluid.grid-demonstration .row {
|
|
margin-left: 0;
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
|
|
.container-fluid.grid-demonstration [class^='cell'] {
|
|
padding: 5px;
|
|
}
|
|
|
|
@media (max-width: 991.98px) {
|
|
.container-fluid.grid-demonstration [class^='cell'] p {
|
|
font-size: 14px;
|
|
}
|
|
.container-fluid.grid-demonstration [class^='cell'] * + p {
|
|
margin-top: 10px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.container-fluid.grid-demonstration [class^='cell'] {
|
|
padding: 15px 10px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 992px) {
|
|
.container-fluid.grid-demonstration [class^='cell'] {
|
|
padding: 25px 15px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.container-fluid.grid-demonstration [class^='cell'] {
|
|
padding: 30px 15px 30px 30px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1600px) {
|
|
.container-fluid.grid-demonstration [class^='cell'] {
|
|
padding: 50px 100px;
|
|
}
|
|
.container-fluid.grid-demonstration [class^='cell'] * + p {
|
|
margin-top: 24px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1600px) {
|
|
.container-fluid.grid-demonstration .row {
|
|
margin-left: -70px;
|
|
margin-right: -70px;
|
|
}
|
|
}
|
|
|
|
.grid-system-bordered [class*='col'] {
|
|
padding-top: 15px;
|
|
padding-bottom: 15px;
|
|
}
|
|
|
|
.grid-system-bordered .row {
|
|
border-bottom: 1px solid #e7e7e7;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.grid-system-bordered [class*='col'] {
|
|
padding-top: 25px;
|
|
padding-bottom: 25px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.grid-system-bordered [class*='col'] {
|
|
padding-top: 45px;
|
|
padding-bottom: 45px;
|
|
}
|
|
}
|
|
|
|
.grid-system-outline .row {
|
|
border: 1px solid #e7e7e7;
|
|
}
|
|
|
|
.grid-system-outline .row:not(:last-child) {
|
|
border-bottom-width: 0;
|
|
}
|
|
|
|
.grid-system-outline [class*='col']:not(:last-child) {
|
|
border-right: 1px solid #e7e7e7;
|
|
margin-right: -1px;
|
|
}
|
|
|
|
.grid-system-outline * + .row {
|
|
margin-top: 45px;
|
|
}
|
|
|
|
.grid-system-outline .row + .row {
|
|
margin-top: 0;
|
|
}
|
|
|
|
/*
|
|
*
|
|
* Backgrounds
|
|
*/
|
|
.context-dark, .bg-gray-dark, .bg-primary {
|
|
color: rgba(255, 255, 255, 0.8);
|
|
}
|
|
|
|
.context-dark h1, .bg-gray-dark h1, .bg-primary h1, .context-dark h2, .bg-gray-dark h2, .bg-primary h2, .context-dark h3, .bg-gray-dark h3, .bg-primary h3, .context-dark h4, .bg-gray-dark h4, .bg-primary h4, .context-dark h5, .bg-gray-dark h5, .bg-primary h5, .context-dark h6, .bg-gray-dark h6, .bg-primary h6, .context-dark [class^='heading-'], .bg-gray-dark [class^='heading-'], .bg-primary [class^='heading-'] {
|
|
color: #ffffff;
|
|
}
|
|
|
|
.context-dark .subtitle:after, .bg-gray-dark .subtitle:after, .bg-primary .subtitle:after {
|
|
background-color: rgba(255, 255, 255, 0.26);
|
|
}
|
|
|
|
.ie-10 .context-dark .subtitle, .ie-10 .bg-gray-dark .subtitle, .ie-10 .bg-primary .subtitle,
|
|
.ie-11 .context-dark .subtitle,
|
|
.ie-11 .bg-gray-dark .subtitle,
|
|
.ie-11 .bg-primary .subtitle,
|
|
.ie-edge .context-dark .subtitle,
|
|
.ie-edge .bg-gray-dark .subtitle,
|
|
.ie-edge .bg-primary .subtitle {
|
|
color: #ffffff;
|
|
}
|
|
|
|
.context-dark .brand .brand-logo-dark, .bg-gray-dark .brand .brand-logo-dark, .bg-primary .brand .brand-logo-dark {
|
|
display: none;
|
|
}
|
|
|
|
.context-dark .brand .brand-logo-light, .bg-gray-dark .brand .brand-logo-light, .bg-primary .brand .brand-logo-light {
|
|
display: block;
|
|
}
|
|
|
|
.context-dark .button-default-outline, .bg-gray-dark .button-default-outline, .bg-primary .button-default-outline, .context-dark .button-default-outline:focus, .bg-gray-dark .button-default-outline:focus, .bg-primary .button-default-outline:focus {
|
|
color: #ffffff;
|
|
background-color: transparent;
|
|
border-color: #ffffff;
|
|
}
|
|
|
|
.context-dark .button-default-outline:hover, .bg-gray-dark .button-default-outline:hover, .bg-primary .button-default-outline:hover, .context-dark .button-default-outline:active, .bg-gray-dark .button-default-outline:active, .bg-primary .button-default-outline:active {
|
|
color: #ffffff;
|
|
background-color: #ffad4d;
|
|
border-color: #ffad4d;
|
|
}
|
|
|
|
.context-dark .button-default-outline.button-ujarak::before, .bg-gray-dark .button-default-outline.button-ujarak::before, .bg-primary .button-default-outline.button-ujarak::before {
|
|
background: #ffad4d;
|
|
}
|
|
|
|
.context-dark .rd-form-inline .form-input, .bg-gray-dark .rd-form-inline .form-input, .bg-primary .rd-form-inline .form-input {
|
|
background-color: rgba(255, 255, 255, 0.14);
|
|
border-color: rgba(255, 255, 255, 0.14);
|
|
color: #ffffff;
|
|
}
|
|
|
|
.context-dark .rd-form-inline .form-label, .bg-gray-dark .rd-form-inline .form-label, .bg-primary .rd-form-inline .form-label {
|
|
color: #ffffff;
|
|
}
|
|
|
|
.context-dark .form-validation, .bg-gray-dark .form-validation, .bg-primary .form-validation {
|
|
color: #fee0e1;
|
|
}
|
|
|
|
.context-dark .owl-carousel .owl-prev, .bg-gray-dark .owl-carousel .owl-prev, .bg-primary .owl-carousel .owl-prev,
|
|
.context-dark .owl-carousel .owl-next,
|
|
.bg-gray-dark .owl-carousel .owl-next,
|
|
.bg-primary .owl-carousel .owl-next {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
.context-light, .bg-gray-100 {
|
|
color: rgba(21, 21, 21, 0.9);
|
|
}
|
|
|
|
.context-light h1, .bg-gray-100 h1, .context-light h2, .bg-gray-100 h2, .context-light h3, .bg-gray-100 h3, .context-light h4, .bg-gray-100 h4, .context-light h5, .bg-gray-100 h5, .context-light h6, .bg-gray-100 h6, .context-light [class^='heading-'], .bg-gray-100 [class^='heading-'] {
|
|
color: #151515;
|
|
}
|
|
|
|
.context-light .brand .brand-logo-dark, .bg-gray-100 .brand .brand-logo-dark {
|
|
display: block;
|
|
}
|
|
|
|
.context-light .brand .brand-logo-light, .bg-gray-100 .brand .brand-logo-light {
|
|
display: none;
|
|
}
|
|
|
|
/**
|
|
* Light Backgrounds
|
|
*/
|
|
.bg-default {
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
.bg-default + .bg-default {
|
|
padding-top: 0;
|
|
}
|
|
|
|
.bg-gray-100 {
|
|
background-color: #f3f3f3;
|
|
}
|
|
|
|
.bg-gray-100 + .bg-gray-100 {
|
|
padding-top: 0;
|
|
}
|
|
|
|
.bg-gray-100 .subtitle:after {
|
|
background-color: #ddd;
|
|
}
|
|
|
|
.bg-gray-100 .box-process {
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
.bg-gray-100 .box-service-body {
|
|
color: rgba(21, 21, 21, 0.8);
|
|
}
|
|
|
|
/**
|
|
* Dark Backgrounds
|
|
*/
|
|
.bg-gray-dark {
|
|
background-color: #2c343b;
|
|
}
|
|
|
|
.bg-gray-dark + .bg-gray-dark {
|
|
padding-top: 0;
|
|
}
|
|
|
|
/**
|
|
* Accent Backgrounds
|
|
*/
|
|
.bg-primary + .bg-primary {
|
|
padding-top: 0;
|
|
}
|
|
|
|
.bg-gradient-gray-100 {
|
|
background: linear-gradient(to right, #f3f3f3, #ffffff);
|
|
}
|
|
|
|
/**
|
|
* Background Image
|
|
*/
|
|
[class*='bg-'] {
|
|
background-size: cover;
|
|
background-position: center center;
|
|
}
|
|
|
|
@media (min-width: 992px) {
|
|
html:not(.tablet):not(.mobile) .bg-fixed {
|
|
background-attachment: fixed;
|
|
}
|
|
}
|
|
|
|
/*
|
|
*
|
|
* Utilities custom
|
|
*/
|
|
.height-fill {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.height-fill > * {
|
|
flex-grow: 1;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.object-inline {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.object-inline > * {
|
|
display: inline-block;
|
|
min-width: 20px;
|
|
vertical-align: top;
|
|
white-space: normal;
|
|
}
|
|
|
|
.object-inline > * + * {
|
|
margin-left: 5px;
|
|
}
|
|
|
|
.oh {
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.text-decoration-lines {
|
|
position: relative;
|
|
overflow: hidden;
|
|
width: 100%;
|
|
}
|
|
|
|
.text-decoration-lines-content {
|
|
position: relative;
|
|
display: inline-block;
|
|
min-width: 170px;
|
|
font-size: 13px;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.text-decoration-lines-content::before, .text-decoration-lines-content::after {
|
|
content: '';
|
|
position: absolute;
|
|
height: 1px;
|
|
background: #e7e7e7;
|
|
top: 50%;
|
|
width: 100vw;
|
|
}
|
|
|
|
.text-decoration-lines-content::before {
|
|
left: 0;
|
|
transform: translate3d(-100%, 0, 0);
|
|
}
|
|
|
|
.text-decoration-lines-content::after {
|
|
right: 0;
|
|
transform: translate3d(100%, 0, 0);
|
|
}
|
|
|
|
* + .text-decoration-lines {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
p.rights {
|
|
font-size: 16px;
|
|
color: #151515;
|
|
}
|
|
|
|
p.rights a {
|
|
color: inherit;
|
|
}
|
|
|
|
p.rights a:hover {
|
|
color: #ffad4d;
|
|
}
|
|
|
|
[style*='z-index: 1000;'] {
|
|
z-index: 1101 !important;
|
|
}
|
|
|
|
.text-block > * {
|
|
margin-left: .125em;
|
|
margin-right: .125em;
|
|
}
|
|
|
|
/*
|
|
*
|
|
* Animate.css
|
|
*/
|
|
.animated {
|
|
-webkit-animation-duration: 1s;
|
|
animation-duration: 1s;
|
|
-webkit-animation-fill-mode: both;
|
|
animation-fill-mode: both;
|
|
opacity: 1;
|
|
}
|
|
|
|
.animated.infinite {
|
|
-webkit-animation-iteration-count: infinite;
|
|
animation-iteration-count: infinite;
|
|
}
|
|
|
|
.animated.hinge {
|
|
-webkit-animation-duration: 2s;
|
|
animation-duration: 2s;
|
|
}
|
|
|
|
html:not(.lt-ie10) .not-animated {
|
|
opacity: 0;
|
|
}
|
|
|
|
@-webkit-keyframes fadeIn {
|
|
0% {
|
|
opacity: 0;
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@keyframes fadeIn {
|
|
0% {
|
|
opacity: 0;
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.fadeIn {
|
|
-webkit-animation-name: fadeIn;
|
|
animation-name: fadeIn;
|
|
}
|
|
|
|
@-webkit-keyframes fadeInUp {
|
|
0% {
|
|
opacity: 0;
|
|
-webkit-transform: translate3d(0, 100%, 0);
|
|
transform: translate3d(0, 100%, 0);
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
-webkit-transform: none;
|
|
transform: none;
|
|
}
|
|
}
|
|
|
|
@keyframes fadeInUp {
|
|
0% {
|
|
opacity: 0;
|
|
-webkit-transform: translate3d(0, 100%, 0);
|
|
transform: translate3d(0, 100%, 0);
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
-webkit-transform: none;
|
|
transform: none;
|
|
}
|
|
}
|
|
|
|
.fadeInUp {
|
|
-webkit-animation-name: fadeInUp;
|
|
animation-name: fadeInUp;
|
|
}
|
|
|
|
@-webkit-keyframes fadeInDown {
|
|
0% {
|
|
opacity: 0;
|
|
-webkit-transform: translate3d(0, -100%, 0);
|
|
transform: translate3d(0, -100%, 0);
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
-webkit-transform: none;
|
|
transform: none;
|
|
}
|
|
}
|
|
|
|
@keyframes fadeInDown {
|
|
0% {
|
|
opacity: 0;
|
|
-webkit-transform: translate3d(0, -100%, 0);
|
|
transform: translate3d(0, -100%, 0);
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
-webkit-transform: none;
|
|
transform: none;
|
|
}
|
|
}
|
|
|
|
.fadeInDown {
|
|
-webkit-animation-name: fadeInDown;
|
|
animation-name: fadeInDown;
|
|
}
|
|
|
|
@-webkit-keyframes fadeInLeft {
|
|
0% {
|
|
opacity: 0;
|
|
-webkit-transform: translate3d(-100%, 0, 0);
|
|
transform: translate3d(-100%, 0, 0);
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
-webkit-transform: none;
|
|
transform: none;
|
|
}
|
|
}
|
|
|
|
@keyframes fadeInLeft {
|
|
0% {
|
|
opacity: 0;
|
|
-webkit-transform: translate3d(-100%, 0, 0);
|
|
transform: translate3d(-100%, 0, 0);
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
-webkit-transform: none;
|
|
transform: none;
|
|
}
|
|
}
|
|
|
|
.fadeInLeft {
|
|
-webkit-animation-name: fadeInLeft;
|
|
animation-name: fadeInLeft;
|
|
}
|
|
|
|
@-webkit-keyframes fadeInRight {
|
|
0% {
|
|
opacity: 0;
|
|
-webkit-transform: translate3d(100%, 0, 0);
|
|
transform: translate3d(100%, 0, 0);
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
-webkit-transform: none;
|
|
transform: none;
|
|
}
|
|
}
|
|
|
|
@keyframes fadeInRight {
|
|
0% {
|
|
opacity: 0;
|
|
-webkit-transform: translate3d(100%, 0, 0);
|
|
transform: translate3d(100%, 0, 0);
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
-webkit-transform: none;
|
|
transform: none;
|
|
}
|
|
}
|
|
|
|
.fadeInRight {
|
|
-webkit-animation-name: fadeInRight;
|
|
animation-name: fadeInRight;
|
|
}
|
|
|
|
@-webkit-keyframes fadeOut {
|
|
0% {
|
|
opacity: 1;
|
|
}
|
|
100% {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
@keyframes fadeOut {
|
|
0% {
|
|
opacity: 1;
|
|
}
|
|
100% {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
.fadeOut {
|
|
-webkit-animation-name: fadeOut;
|
|
animation-name: fadeOut;
|
|
}
|
|
|
|
@-webkit-keyframes slideInDown {
|
|
0% {
|
|
-webkit-transform: translate3d(0, -100%, 0);
|
|
transform: translate3d(0, -100%, 0);
|
|
visibility: visible;
|
|
}
|
|
100% {
|
|
-webkit-transform: translate3d(0, 0, 0);
|
|
transform: translate3d(0, 0, 0);
|
|
}
|
|
}
|
|
|
|
@keyframes slideInDown {
|
|
0% {
|
|
-webkit-transform: translate3d(0, -100%, 0);
|
|
transform: translate3d(0, -100%, 0);
|
|
visibility: visible;
|
|
}
|
|
100% {
|
|
-webkit-transform: translate3d(0, 0, 0);
|
|
transform: translate3d(0, 0, 0);
|
|
}
|
|
}
|
|
|
|
.slideInDown {
|
|
-webkit-animation-name: slideInDown;
|
|
animation-name: slideInDown;
|
|
}
|
|
|
|
@-webkit-keyframes slideInLeft {
|
|
0% {
|
|
-webkit-transform: translate3d(-100%, 0, 0);
|
|
transform: translate3d(-100%, 0, 0);
|
|
visibility: visible;
|
|
}
|
|
100% {
|
|
-webkit-transform: translate3d(0, 0, 0);
|
|
transform: translate3d(0, 0, 0);
|
|
}
|
|
}
|
|
|
|
@keyframes slideInLeft {
|
|
0% {
|
|
-webkit-transform: translate3d(-100%, 0, 0);
|
|
transform: translate3d(-100%, 0, 0);
|
|
visibility: visible;
|
|
}
|
|
100% {
|
|
-webkit-transform: translate3d(0, 0, 0);
|
|
transform: translate3d(0, 0, 0);
|
|
}
|
|
}
|
|
|
|
.slideInLeft {
|
|
-webkit-animation-name: slideInLeft;
|
|
animation-name: slideInLeft;
|
|
}
|
|
|
|
@-webkit-keyframes slideInRight {
|
|
0% {
|
|
-webkit-transform: translate3d(100%, 0, 0);
|
|
transform: translate3d(100%, 0, 0);
|
|
visibility: visible;
|
|
}
|
|
100% {
|
|
-webkit-transform: translate3d(0, 0, 0);
|
|
transform: translate3d(0, 0, 0);
|
|
}
|
|
}
|
|
|
|
@keyframes slideInRight {
|
|
0% {
|
|
-webkit-transform: translate3d(100%, 0, 0);
|
|
transform: translate3d(100%, 0, 0);
|
|
visibility: visible;
|
|
}
|
|
100% {
|
|
-webkit-transform: translate3d(0, 0, 0);
|
|
transform: translate3d(0, 0, 0);
|
|
}
|
|
}
|
|
|
|
.slideInRight {
|
|
-webkit-animation-name: slideInRight;
|
|
animation-name: slideInRight;
|
|
}
|
|
|
|
@-webkit-keyframes slideOutDown {
|
|
0% {
|
|
-webkit-transform: translate3d(0, 0, 0);
|
|
transform: translate3d(0, 0, 0);
|
|
}
|
|
100% {
|
|
visibility: hidden;
|
|
-webkit-transform: translate3d(0, 100%, 0);
|
|
transform: translate3d(0, 100%, 0);
|
|
}
|
|
}
|
|
|
|
@keyframes slideOutDown {
|
|
0% {
|
|
-webkit-transform: translate3d(0, 0, 0);
|
|
transform: translate3d(0, 0, 0);
|
|
}
|
|
100% {
|
|
visibility: hidden;
|
|
-webkit-transform: translate3d(0, 100%, 0);
|
|
transform: translate3d(0, 100%, 0);
|
|
}
|
|
}
|
|
|
|
.slideOutDown {
|
|
-webkit-animation-name: slideOutDown;
|
|
animation-name: slideOutDown;
|
|
}
|
|
|
|
@-webkit-keyframes slideOutDown {
|
|
0% {
|
|
-webkit-transform: translate3d(0, 0, 0);
|
|
transform: translate3d(0, 0, 0);
|
|
}
|
|
100% {
|
|
visibility: hidden;
|
|
-webkit-transform: translate3d(0, 100%, 0);
|
|
transform: translate3d(0, 100%, 0);
|
|
}
|
|
}
|
|
|
|
@keyframes slideOutDown {
|
|
0% {
|
|
-webkit-transform: translate3d(0, 0, 0);
|
|
transform: translate3d(0, 0, 0);
|
|
}
|
|
100% {
|
|
visibility: hidden;
|
|
-webkit-transform: translate3d(0, 100%, 0);
|
|
transform: translate3d(0, 100%, 0);
|
|
}
|
|
}
|
|
|
|
.slideOutDown {
|
|
-webkit-animation-name: slideOutDown;
|
|
animation-name: slideOutDown;
|
|
}
|
|
|
|
@keyframes zoomIn {
|
|
from {
|
|
opacity: 0;
|
|
transform: scale3d(0.3, 0.3, 0.3);
|
|
}
|
|
50% {
|
|
opacity: 1;
|
|
transform: scale3d(1.2, 1.2, 1.2);
|
|
}
|
|
100% {
|
|
transform: scale3d(1, 1, 1);
|
|
}
|
|
}
|
|
|
|
.zoomIn {
|
|
animation-name: zoomIn;
|
|
}
|
|
|
|
/*
|
|
*
|
|
* Preloader
|
|
*/
|
|
.preloader {
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
z-index: 9999999;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding: 20px;
|
|
background: #ffffff;
|
|
transition: .3s all ease;
|
|
}
|
|
|
|
.preloader.loaded {
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
}
|
|
|
|
.preloader-body {
|
|
text-align: center;
|
|
}
|
|
|
|
.preloader-body p {
|
|
position: relative;
|
|
right: -8px;
|
|
}
|
|
|
|
.cssload-container {
|
|
width: 100%;
|
|
height: 36px;
|
|
text-align: center;
|
|
}
|
|
|
|
.cssload-speeding-wheel {
|
|
width: 36px;
|
|
height: 36px;
|
|
margin: 0 auto;
|
|
border: 3px solid #ffad4d;
|
|
border-radius: 50%;
|
|
border-left-color: transparent;
|
|
border-bottom-color: transparent;
|
|
animation: cssload-spin .88s infinite linear;
|
|
}
|
|
|
|
@-webkit-keyframes cssload-spin {
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
@keyframes cssload-spin {
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
/*
|
|
*
|
|
* ToTop
|
|
*/
|
|
.ui-to-top {
|
|
position: fixed;
|
|
right: 15px;
|
|
bottom: 15px;
|
|
z-index: 100;
|
|
width: 50px;
|
|
height: 50px;
|
|
font-size: 24px;
|
|
line-height: 49px;
|
|
color: #ffffff;
|
|
background: #ffad4d;
|
|
overflow: hidden;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
transition: .45s all ease-in-out;
|
|
transform: translate3d(0, 100px, 0);
|
|
}
|
|
|
|
.ui-to-top:hover {
|
|
color: #ffffff;
|
|
background: #111111;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.ui-to-top:focus {
|
|
color: #ffffff;
|
|
}
|
|
|
|
.ui-to-top.active {
|
|
transform: translate3d(0, 0, 0);
|
|
}
|
|
|
|
html.mobile .ui-to-top,
|
|
html.tablet .ui-to-top {
|
|
display: none !important;
|
|
}
|
|
|
|
@media (min-width: 576px) {
|
|
.ui-to-top {
|
|
right: 40px;
|
|
bottom: 40px;
|
|
}
|
|
}
|
|
|
|
/*
|
|
*
|
|
* RD Navbar
|
|
*/
|
|
@keyframes rd-navbar-slide-down {
|
|
0% {
|
|
transform: translateY(-100%);
|
|
}
|
|
100% {
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
@keyframes rd-navbar-slide-up {
|
|
0% {
|
|
transform: translateY(0);
|
|
}
|
|
100% {
|
|
transform: translateY(-100%);
|
|
}
|
|
}
|
|
|
|
.rd-navbar-wrap, .rd-navbar,
|
|
.rd-menu,
|
|
.rd-navbar-nav,
|
|
.rd-navbar-panel, .rd-navbar-static .rd-menu, .rd-navbar-fixed .rd-navbar-nav-wrap, .rd-navbar-fixed .rd-navbar-submenu {
|
|
transition: 0.35s all cubic-bezier(0.65, 0.05, 0.36, 1);
|
|
}
|
|
|
|
.rd-navbar--no-transition, .rd-navbar--no-transition * {
|
|
transition: none !important;
|
|
}
|
|
|
|
.rd-navbar,
|
|
.rd-navbar.rd-navbar--is-clone {
|
|
display: none;
|
|
}
|
|
|
|
.rd-navbar.rd-navbar-fixed + .rd-navbar.rd-navbar--is-clone,
|
|
.rd-navbar.rd-navbar-sidebar + .rd-navbar.rd-navbar--is-clone {
|
|
display: none;
|
|
}
|
|
|
|
.rd-navbar {
|
|
display: none;
|
|
background: transparent;
|
|
}
|
|
|
|
.rd-navbar-toggle {
|
|
display: inline-block;
|
|
position: relative;
|
|
width: 48px;
|
|
height: 48px;
|
|
line-height: 48px;
|
|
cursor: pointer;
|
|
color: #ffffff;
|
|
background-color: transparent;
|
|
border: none;
|
|
display: none;
|
|
}
|
|
|
|
.rd-navbar-toggle span {
|
|
position: relative;
|
|
display: block;
|
|
margin: auto;
|
|
transition: .3s all ease;
|
|
}
|
|
|
|
.rd-navbar-toggle span:after, .rd-navbar-toggle span:before {
|
|
content: "";
|
|
position: absolute;
|
|
left: 0;
|
|
top: -8px;
|
|
transition: .3s all ease;
|
|
}
|
|
|
|
.rd-navbar-toggle span:after {
|
|
top: 8px;
|
|
}
|
|
|
|
.rd-navbar-toggle span:after, .rd-navbar-toggle span:before, .rd-navbar-toggle span {
|
|
width: 24px;
|
|
height: 4px;
|
|
background-color: #ffffff;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.rd-navbar-toggle span {
|
|
transform: rotate(180deg);
|
|
}
|
|
|
|
.rd-navbar-toggle span:before, .rd-navbar-toggle span:after {
|
|
transform-origin: 1.71429px center;
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
.rd-navbar-toggle.active span {
|
|
transform: rotate(360deg);
|
|
}
|
|
|
|
.rd-navbar-toggle.active span:before, .rd-navbar-toggle.active span:after {
|
|
top: 0;
|
|
width: 15px;
|
|
}
|
|
|
|
.rd-navbar-toggle.active span:before {
|
|
transform: rotate(-40deg);
|
|
}
|
|
|
|
.rd-navbar-toggle.active span:after {
|
|
transform: rotate(40deg);
|
|
}
|
|
|
|
.rd-navbar-collapse-toggle {
|
|
display: inline-block;
|
|
position: relative;
|
|
width: 48px;
|
|
height: 48px;
|
|
line-height: 48px;
|
|
cursor: pointer;
|
|
color: #ffffff;
|
|
display: none;
|
|
}
|
|
|
|
.rd-navbar-collapse-toggle span {
|
|
top: 50%;
|
|
margin-top: -3px;
|
|
}
|
|
|
|
.rd-navbar-collapse-toggle span, .rd-navbar-collapse-toggle span:before, .rd-navbar-collapse-toggle span:after {
|
|
position: absolute;
|
|
width: 6px;
|
|
height: 6px;
|
|
line-height: 6px;
|
|
text-align: center;
|
|
background: #ffffff;
|
|
left: 50%;
|
|
margin-left: -3px;
|
|
border-radius: 50%;
|
|
transition: .3s all ease;
|
|
}
|
|
|
|
.rd-navbar-collapse-toggle span:before, .rd-navbar-collapse-toggle span:after {
|
|
content: '';
|
|
}
|
|
|
|
.rd-navbar-collapse-toggle span:before {
|
|
bottom: 100%;
|
|
margin-bottom: 3px;
|
|
}
|
|
|
|
.rd-navbar-collapse-toggle span:after {
|
|
top: 100%;
|
|
margin-top: 3px;
|
|
}
|
|
|
|
.rd-navbar-collapse-toggle.active span {
|
|
transform: scale(0.7);
|
|
}
|
|
|
|
.rd-navbar-collapse-toggle.active span:before {
|
|
transform: translateY(18px);
|
|
}
|
|
|
|
.rd-navbar-collapse-toggle.active span:after {
|
|
transform: translateY(-18px);
|
|
}
|
|
|
|
.rd-navbar-brand a {
|
|
display: block;
|
|
}
|
|
|
|
.rd-navbar-search {
|
|
position: relative;
|
|
display: inline-flex;
|
|
}
|
|
|
|
.rd-navbar-search .form-input {
|
|
padding-right: 50px;
|
|
}
|
|
|
|
.rd-navbar-search .rd-search-form-submit {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
width: 50px;
|
|
padding: 0;
|
|
margin: 0;
|
|
border: none;
|
|
cursor: pointer;
|
|
background-color: transparent;
|
|
color: #d7d7d7;
|
|
transition: .33s;
|
|
}
|
|
|
|
.rd-navbar-search .rd-search-form-submit:hover {
|
|
color: #ffad4d;
|
|
}
|
|
|
|
.rd-navbar-search-toggle {
|
|
background: none;
|
|
border: none;
|
|
display: inline-block;
|
|
padding: 0;
|
|
outline: none;
|
|
outline-offset: 0;
|
|
cursor: pointer;
|
|
-webkit-appearance: none;
|
|
}
|
|
|
|
.rd-navbar-search-toggle::-moz-focus-inner {
|
|
border: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.rd-navbar-dropdown {
|
|
display: none;
|
|
}
|
|
|
|
/*
|
|
* @subsection RD Navbar Static
|
|
*/
|
|
.rd-navbar-static {
|
|
display: block;
|
|
}
|
|
|
|
.rd-navbar-static .rd-nav-item {
|
|
display: inline-block;
|
|
}
|
|
|
|
.rd-navbar-static .rd-nav-item.focus .rd-nav-link, .rd-navbar-static .rd-nav-item.opened .rd-nav-link {
|
|
color: #ffad4d;
|
|
background: transparent;
|
|
}
|
|
|
|
.rd-navbar-static .rd-nav-item.focus > .rd-navbar-submenu-toggle, .rd-navbar-static .rd-nav-item.opened > .rd-navbar-submenu-toggle {
|
|
color: #ffad4d;
|
|
}
|
|
|
|
.rd-navbar-static .rd-nav-item.active .rd-nav-link {
|
|
color: #ffad4d;
|
|
background: transparent;
|
|
}
|
|
|
|
.rd-navbar-static .rd-nav-item.active > .rd-navbar-submenu-toggle {
|
|
color: #ffad4d;
|
|
}
|
|
|
|
.rd-navbar-static .rd-nav-item.focus > .rd-navbar-submenu-toggle::before,
|
|
.rd-navbar-static .rd-nav-item.opened > .rd-navbar-submenu-toggle::before,
|
|
.rd-navbar-static .rd-nav-item .rd-nav-link:hover + .rd-navbar-submenu-toggle::before {
|
|
transform: rotate(180deg);
|
|
}
|
|
|
|
.rd-navbar-static .rd-nav-item > .rd-navbar-submenu-toggle {
|
|
margin-left: 4px;
|
|
font-family: "Material Design Icons";
|
|
font-size: 16px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.rd-navbar-static .rd-nav-item > .rd-navbar-submenu-toggle::before {
|
|
position: relative;
|
|
display: inline-block;
|
|
transition: .22s;
|
|
content: '\f236';
|
|
}
|
|
|
|
.rd-navbar-static .rd-nav-item > .rd-navbar-submenu-toggle:hover {
|
|
color: #ffad4d;
|
|
}
|
|
|
|
.rd-navbar-static .rd-nav-item > .rd-navbar-submenu {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.rd-navbar-static .rd-nav-item + .rd-nav-item {
|
|
margin-left: 38px;
|
|
}
|
|
|
|
.rd-navbar-static .rd-nav-link {
|
|
position: relative;
|
|
display: inline-block;
|
|
color: #ffffff;
|
|
font-size: 13px;
|
|
font-weight: 900;
|
|
text-transform: uppercase;
|
|
letter-spacing: .075em;
|
|
line-height: 1.2;
|
|
transition: .25s;
|
|
}
|
|
|
|
.rd-navbar-static .rd-nav-link:hover {
|
|
color: #ffad4d;
|
|
}
|
|
|
|
.rd-navbar-static .rd-menu {
|
|
z-index: 15;
|
|
position: absolute;
|
|
display: block;
|
|
margin-top: 22px;
|
|
visibility: hidden;
|
|
opacity: 0;
|
|
text-align: left;
|
|
border: 1px solid #e7e7e7;
|
|
transform: translate3d(0, 30px, 0);
|
|
}
|
|
|
|
.rd-navbar-static .rd-navbar-dropdown {
|
|
position: absolute;
|
|
left: 0;
|
|
width: 270px;
|
|
padding: 15px;
|
|
background: #ffffff;
|
|
z-index: 5;
|
|
}
|
|
|
|
.rd-navbar-static .rd-navbar-dropdown .rd-navbar-dropdown {
|
|
top: -1px;
|
|
left: 100%;
|
|
z-index: 2;
|
|
margin-top: -15px;
|
|
margin-left: 15px;
|
|
transform: translate3d(30px, 0, 0);
|
|
}
|
|
|
|
.rd-navbar-static .rd-navbar-dropdown .rd-navbar-dropdown.rd-navbar-open-left {
|
|
left: auto;
|
|
right: 100%;
|
|
margin-left: 0;
|
|
margin-right: 15px;
|
|
transform: translate3d(-30px, 0, 0);
|
|
}
|
|
|
|
.rd-navbar-static .rd-dropdown-item.focus .rd-dropdown-link, .rd-navbar-static .rd-dropdown-item.opened .rd-dropdown-link {
|
|
color: #ffad4d;
|
|
}
|
|
|
|
.rd-navbar-static .rd-dropdown-link {
|
|
color: #5b5b5b;
|
|
}
|
|
|
|
.rd-navbar-static .rd-dropdown-link:hover {
|
|
color: #ffad4d;
|
|
}
|
|
|
|
.rd-navbar-static .rd-navbar-dropdown li > a,
|
|
.rd-navbar-static .rd-megamenu-list li > a {
|
|
position: relative;
|
|
left: -3px;
|
|
display: flex;
|
|
padding: 1px 14px 1px 0;
|
|
text-align: left;
|
|
}
|
|
|
|
.rd-navbar-static .rd-navbar-dropdown li > a, .rd-navbar-static .rd-navbar-dropdown li > a:focus, .rd-navbar-static .rd-navbar-dropdown li > a:active,
|
|
.rd-navbar-static .rd-megamenu-list li > a,
|
|
.rd-navbar-static .rd-megamenu-list li > a:focus,
|
|
.rd-navbar-static .rd-megamenu-list li > a:active {
|
|
color: #5b5b5b;
|
|
}
|
|
|
|
.rd-navbar-static .rd-navbar-dropdown li > a:hover,
|
|
.rd-navbar-static .rd-megamenu-list li > a:hover {
|
|
color: #ffad4d;
|
|
}
|
|
|
|
.rd-navbar-static .rd-navbar-dropdown li > a, .rd-navbar-static .rd-navbar-dropdown li > a::before,
|
|
.rd-navbar-static .rd-megamenu-list li > a,
|
|
.rd-navbar-static .rd-megamenu-list li > a::before {
|
|
transition: .15s ease-in-out;
|
|
}
|
|
|
|
.rd-navbar-static .rd-navbar-dropdown li > a::before,
|
|
.rd-navbar-static .rd-megamenu-list li > a::before {
|
|
position: relative;
|
|
top: -1px;
|
|
left: -6px;
|
|
display: inline-block;
|
|
content: '\f105';
|
|
font-family: 'FontAwesome';
|
|
font-size: inherit;
|
|
line-height: inherit;
|
|
color: #ffad4d;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
}
|
|
|
|
.rd-navbar-static .rd-navbar-dropdown li.focus > a,
|
|
.rd-navbar-static .rd-navbar-dropdown li.opened > a,
|
|
.rd-navbar-static .rd-navbar-dropdown li > a:hover,
|
|
.rd-navbar-static .rd-megamenu-list li.focus > a,
|
|
.rd-navbar-static .rd-megamenu-list li.opened > a,
|
|
.rd-navbar-static .rd-megamenu-list li > a:hover {
|
|
left: 0;
|
|
padding-left: 14px;
|
|
padding-right: 0;
|
|
}
|
|
|
|
.rd-navbar-static .rd-navbar-dropdown li.focus > a::before,
|
|
.rd-navbar-static .rd-navbar-dropdown li.opened > a::before,
|
|
.rd-navbar-static .rd-navbar-dropdown li > a:hover::before,
|
|
.rd-navbar-static .rd-megamenu-list li.focus > a::before,
|
|
.rd-navbar-static .rd-megamenu-list li.opened > a::before,
|
|
.rd-navbar-static .rd-megamenu-list li > a:hover::before {
|
|
left: -7px;
|
|
opacity: 1;
|
|
visibility: visible;
|
|
}
|
|
|
|
.rd-navbar-static .rd-navbar-megamenu {
|
|
display: flex;
|
|
left: 0;
|
|
width: 100%;
|
|
max-width: 1200px;
|
|
padding: 30px 40px;
|
|
background: #ffffff;
|
|
}
|
|
|
|
.rd-navbar-static .rd-megamenu-item {
|
|
flex-basis: 50%;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.rd-navbar-static .rd-megamenu-item + .rd-megamenu-item {
|
|
padding-left: 20px;
|
|
}
|
|
|
|
.rd-navbar-static .rd-megamenu-title {
|
|
padding-bottom: 10px;
|
|
border-bottom: 1px solid #e7e7e7;
|
|
}
|
|
|
|
.rd-navbar-static .rd-megamenu-list-item + .rd-megamenu-list-item {
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.rd-navbar-static .rd-megamenu-list-link {
|
|
color: #000000;
|
|
background: transparent;
|
|
}
|
|
|
|
.rd-navbar-static .rd-megamenu-list-link:hover {
|
|
color: #ffad4d;
|
|
background: transparent;
|
|
}
|
|
|
|
.rd-navbar-static * + .rd-megamenu-list {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.rd-navbar-static .rd-navbar-submenu.focus > .rd-menu, .rd-navbar-static .rd-navbar-submenu.opened > .rd-menu {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
transform: translate3d(0, 0, 0);
|
|
}
|
|
|
|
.rd-navbar-static .rd-navbar-search.active .rd-search {
|
|
visibility: visible;
|
|
opacity: 1;
|
|
}
|
|
|
|
.rd-navbar-static .rd-search {
|
|
position: absolute;
|
|
top: 100%;
|
|
right: 0;
|
|
width: 270px;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
transition: .3s;
|
|
margin-top: 20px;
|
|
z-index: 2;
|
|
}
|
|
|
|
.rd-navbar-static * + .rd-navbar-search {
|
|
margin-left: 38px;
|
|
}
|
|
|
|
.rd-navbar-static .rd-navbar-search-toggle {
|
|
display: inline-flex;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.rd-navbar-static .rd-navbar-search-toggle span {
|
|
display: inline-block;
|
|
position: relative;
|
|
width: 32px;
|
|
height: 32px;
|
|
font-size: 26px;
|
|
line-height: 32px;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
background: none;
|
|
border: none;
|
|
outline: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.rd-navbar-static .rd-navbar-search-toggle span, .rd-navbar-static .rd-navbar-search-toggle span::before, .rd-navbar-static .rd-navbar-search-toggle span::after {
|
|
transition: .3s all ease-in-out;
|
|
}
|
|
|
|
.rd-navbar-static .rd-navbar-search-toggle span::before, .rd-navbar-static .rd-navbar-search-toggle span::after {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
}
|
|
|
|
.rd-navbar-static .rd-navbar-search-toggle span::before {
|
|
content: "";
|
|
transform: rotate(0deg) scale(1);
|
|
opacity: 1;
|
|
visibility: visible;
|
|
font-family: "Material Design Icons";
|
|
}
|
|
|
|
.rd-navbar-static .rd-navbar-search-toggle span::after {
|
|
content: "";
|
|
transform: rotate(-90deg) scale(0.4);
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
font-family: "Material Design Icons";
|
|
}
|
|
|
|
.rd-navbar-static .rd-navbar-search-toggle.active span::before {
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
transform: rotate(90deg) scale(0.4);
|
|
}
|
|
|
|
.rd-navbar-static .rd-navbar-search-toggle.active span::after {
|
|
transform: rotate(0deg) scale(1);
|
|
opacity: 1;
|
|
visibility: visible;
|
|
}
|
|
|
|
.rd-navbar-static .rd-navbar-search-toggle:hover {
|
|
color: #ffad4d;
|
|
}
|
|
|
|
.rd-navbar-static.rd-navbar--is-clone {
|
|
display: block;
|
|
transform: translate3d(0, -100%, 0);
|
|
}
|
|
|
|
.rd-navbar-static.rd-navbar--is-clone.rd-navbar--is-stuck {
|
|
transform: translate3d(0, 0, 0);
|
|
}
|
|
|
|
.rd-navbar-static.rd-navbar--is-stuck, .rd-navbar-static.rd-navbar--is-clone {
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
right: 0;
|
|
z-index: 1080;
|
|
background: #151515;
|
|
}
|
|
|
|
.rd-navbar-static .rd-navbar--has-dropdown {
|
|
position: relative;
|
|
}
|
|
|
|
/*
|
|
*
|
|
* RD Navbar Fixed
|
|
*/
|
|
.rd-navbar-fixed {
|
|
display: block;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-toggle {
|
|
display: inline-block;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-brand {
|
|
position: relative;
|
|
margin-left: 6px;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
text-align: left;
|
|
font-size: 22px;
|
|
line-height: 34px;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-brand img {
|
|
max-width: 160px;
|
|
max-height: 58px;
|
|
width: auto;
|
|
height: auto;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-panel {
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
right: 0;
|
|
z-index: 1080;
|
|
display: flex;
|
|
align-items: center;
|
|
height: 56px;
|
|
padding: 4px;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-nav-wrap {
|
|
position: fixed;
|
|
left: 0;
|
|
top: -56px;
|
|
bottom: -56px;
|
|
z-index: 1079;
|
|
width: 270px;
|
|
padding: 112px 0 81px;
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
-webkit-overflow-scrolling: touch;
|
|
font-size: 14px;
|
|
line-height: 34px;
|
|
transform: translateX(-110%);
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-nav-wrap::-webkit-scrollbar {
|
|
width: 4px;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-nav-wrap::-webkit-scrollbar-thumb {
|
|
background: #ffdcb3;
|
|
border: none;
|
|
border-radius: 0;
|
|
opacity: .2;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-nav-wrap::-webkit-scrollbar-track {
|
|
background: #ffad4d;
|
|
border: none;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-nav-wrap.active {
|
|
transform: translateX(0);
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-nav {
|
|
display: block;
|
|
margin: 15px 0;
|
|
height: auto;
|
|
text-align: left;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-nav-item {
|
|
text-align: left;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-nav-item + .rd-nav-item {
|
|
margin-top: 4px;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-nav-link {
|
|
display: block;
|
|
padding: 9px 56px 9px 18px;
|
|
}
|
|
|
|
.rd-navbar-fixed li.opened > .rd-navbar-dropdown {
|
|
padding: 4px 0 0;
|
|
}
|
|
|
|
.rd-navbar-fixed li.opened > .rd-navbar-megamenu {
|
|
padding-top: 15px;
|
|
padding-bottom: 15px;
|
|
}
|
|
|
|
.rd-navbar-fixed li.opened > .rd-menu {
|
|
opacity: 1;
|
|
height: auto;
|
|
}
|
|
|
|
.rd-navbar-fixed li.opened > .rd-navbar-submenu-toggle::after {
|
|
transform: rotate(180deg);
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-menu {
|
|
display: none;
|
|
transition: opacity 0.3s, height 0.4s ease;
|
|
opacity: 0;
|
|
height: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-submenu {
|
|
position: relative;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-submenu .rd-navbar-dropdown .rd-navbar-submenu-toggle:after {
|
|
height: 34px;
|
|
line-height: 34px;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-submenu .rd-navbar-dropdown > li > a {
|
|
padding-left: 30px;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-submenu .rd-navbar-dropdown li li > a,
|
|
.rd-navbar-fixed .rd-navbar-submenu .rd-navbar-megamenu ul li li > a {
|
|
padding-left: 46px;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-submenu.opened > .rd-navbar-dropdown,
|
|
.rd-navbar-fixed .rd-navbar-submenu.opened > .rd-navbar-megamenu {
|
|
display: block;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-megamenu-list > li > a,
|
|
.rd-navbar-fixed .rd-navbar-dropdown > li > a {
|
|
display: block;
|
|
padding: 9px 56px 9px 16px;
|
|
font-size: 12px;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-megamenu-list > li + li,
|
|
.rd-navbar-fixed .rd-navbar-dropdown > li + li {
|
|
margin-top: 3px;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-megamenu-list > li > a {
|
|
padding-left: 30px;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-megamenu .rd-megamenu-title {
|
|
position: relative;
|
|
display: block;
|
|
padding: 0 18px 7px;
|
|
font-size: 16px;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-megamenu .rd-megamenu-title::after {
|
|
content: '';
|
|
position: absolute;
|
|
left: 20px;
|
|
right: 20px;
|
|
bottom: 0;
|
|
border-bottom: 1px solid;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-megamenu * + .rd-megamenu-list {
|
|
margin-top: 11px;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-megamenu * + .rd-megamenu-title {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-megamenu > li + li {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-submenu-toggle {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-submenu-toggle::after {
|
|
content: '\f107';
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
width: 56px;
|
|
height: 52px;
|
|
font: 400 14px "FontAwesome";
|
|
line-height: 52px;
|
|
text-align: center;
|
|
transition: 0.4s all ease;
|
|
z-index: 2;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-collapse-toggle {
|
|
display: block;
|
|
top: 4px;
|
|
z-index: 1081;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-collapse {
|
|
position: fixed;
|
|
right: 0;
|
|
top: 56px;
|
|
z-index: 1079;
|
|
transform: translate3d(0, -10px, 0);
|
|
padding: 15px;
|
|
width: auto;
|
|
border-radius: 0;
|
|
text-align: left;
|
|
font-size: 14px;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
transition: .3s;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-collapse.active {
|
|
transform: translate3d(0, 0, 0);
|
|
opacity: 1;
|
|
visibility: visible;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-collapse .list-inline > li {
|
|
display: block;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-collapse .list-inline > li + li {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-main-element {
|
|
position: absolute;
|
|
float: left;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-search .rd-search {
|
|
position: fixed;
|
|
right: 0;
|
|
left: 0;
|
|
top: 56px;
|
|
z-index: 1079;
|
|
width: 100%;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
transition: .3s;
|
|
transform: translate3d(0, -10px, 0);
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-search .rd-search-results-live {
|
|
display: none;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-search .form-input {
|
|
padding-right: 50px;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-search .rd-search-form-submit {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
width: 50px;
|
|
padding: 0;
|
|
margin: 0;
|
|
border: none;
|
|
background-color: transparent;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-search.active .rd-search {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
transform: none;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-search-toggle {
|
|
display: inline-flex;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-search-toggle span {
|
|
display: inline-block;
|
|
position: relative;
|
|
width: 48px;
|
|
height: 48px;
|
|
font-size: 26px;
|
|
line-height: 48px;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
background: none;
|
|
border: none;
|
|
outline: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-search-toggle span, .rd-navbar-fixed .rd-navbar-search-toggle span::before, .rd-navbar-fixed .rd-navbar-search-toggle span::after {
|
|
transition: .3s all ease-in-out;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-search-toggle span::before, .rd-navbar-fixed .rd-navbar-search-toggle span::after {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-search-toggle span::before {
|
|
content: "";
|
|
transform: rotate(0deg) scale(1);
|
|
opacity: 1;
|
|
visibility: visible;
|
|
font-family: "Material Design Icons";
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-search-toggle span::after {
|
|
content: "";
|
|
transform: rotate(-90deg) scale(0.4);
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
font-family: "Material Design Icons";
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-search-toggle.active span::before {
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
transform: rotate(90deg) scale(0.4);
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-search-toggle.active span::after {
|
|
transform: rotate(0deg) scale(1);
|
|
opacity: 1;
|
|
visibility: visible;
|
|
}
|
|
|
|
.rd-navbar-fixed [class*='rd-navbar-fixed-element'] {
|
|
position: fixed;
|
|
top: 4px;
|
|
z-index: 1082;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-fixed-element-1 {
|
|
right: 0;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-fixed-element-2 {
|
|
right: 46px;
|
|
}
|
|
|
|
.rd-navbar-fixed.rd-navbar--is-clone {
|
|
display: none;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-fixed--visible {
|
|
display: block;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-fixed--hidden {
|
|
display: none;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-panel {
|
|
color: #ffffff;
|
|
box-shadow: none;
|
|
background: #151515;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-nav-wrap {
|
|
color: #ffffff;
|
|
background: #151515;
|
|
border-left: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-nav-item:hover .rd-nav-link, .rd-navbar-fixed .rd-nav-item.focus .rd-nav-link, .rd-navbar-fixed .rd-nav-item.active .rd-nav-link, .rd-navbar-fixed .rd-nav-item.opened .rd-nav-link {
|
|
color: #ffffff;
|
|
background: #ffad4d;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-nav-item:hover > .rd-navbar-submenu-toggle, .rd-navbar-fixed .rd-nav-item.focus > .rd-navbar-submenu-toggle, .rd-navbar-fixed .rd-nav-item.active > .rd-navbar-submenu-toggle, .rd-navbar-fixed .rd-nav-item.opened > .rd-navbar-submenu-toggle {
|
|
color: #ffffff;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-nav-link {
|
|
color: #ffffff;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-megamenu-list > li > a,
|
|
.rd-navbar-fixed .rd-navbar-dropdown > li > a {
|
|
color: #5b5b5b;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-megamenu-list > li:hover > a,
|
|
.rd-navbar-fixed .rd-megamenu-list > li.focus > a,
|
|
.rd-navbar-fixed .rd-megamenu-list > li.active > a,
|
|
.rd-navbar-fixed .rd-megamenu-list > li.opened > a,
|
|
.rd-navbar-fixed .rd-navbar-dropdown > li:hover > a,
|
|
.rd-navbar-fixed .rd-navbar-dropdown > li.focus > a,
|
|
.rd-navbar-fixed .rd-navbar-dropdown > li.active > a,
|
|
.rd-navbar-fixed .rd-navbar-dropdown > li.opened > a {
|
|
color: #ffffff;
|
|
background: #ffad4d;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-megamenu .rd-megamenu-title {
|
|
color: #d7d7d7;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-megamenu .rd-megamenu-title::after {
|
|
border-bottom: 1px solid #e7e7e7;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-megamenu .rd-megamenu-title a, .rd-navbar-fixed .rd-navbar-megamenu .rd-megamenu-title a:focus, .rd-navbar-fixed .rd-navbar-megamenu .rd-megamenu-title a:active {
|
|
color: #ffffff;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-megamenu .rd-megamenu-title a:hover {
|
|
color: #ffad4d;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-submenu-toggle {
|
|
color: #ffffff;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-search .rd-search-form-submit {
|
|
color: #d7d7d7;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-search .rd-search-form-submit:hover {
|
|
color: #ffad4d;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-search-toggle {
|
|
color: #ffffff;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-search-toggle:hover {
|
|
color: #ffad4d;
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-collapse {
|
|
background-color: #151515;
|
|
box-shadow: 0 0 22px -4px rgba(0, 0, 0, 0.17);
|
|
}
|
|
|
|
.rd-navbar-fixed .rd-navbar-collapse,
|
|
.rd-navbar-fixed .rd-navbar-collapse a {
|
|
color: #ffffff;
|
|
}
|
|
|
|
html.rd-navbar-fixed-linked .page {
|
|
padding-top: 56px;
|
|
}
|
|
|
|
/*
|
|
*
|
|
* RD Navbar Sidebar
|
|
*/
|
|
.rd-navbar-sidebar {
|
|
display: block;
|
|
background: #ffffff;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-navbar-main-outer {
|
|
padding-left: 15px;
|
|
padding-right: 15px;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-navbar-main {
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 22px 60px 22px 0;
|
|
max-width: 1200px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-navbar-main-element {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-navbar-main-element > * + * {
|
|
margin-left: 20px;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-navbar-toggle {
|
|
position: absolute;
|
|
right: 0;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
display: block;
|
|
z-index: 1102;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-navbar-panel {
|
|
min-width: 200px;
|
|
text-align: center;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-navbar-brand img {
|
|
width: auto;
|
|
height: auto;
|
|
max-width: 200px;
|
|
max-height: 200px;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-navbar-nav-wrap {
|
|
position: fixed;
|
|
top: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
z-index: 1101;
|
|
width: 450px;
|
|
padding: 94px 0 0 0;
|
|
background: #ffffff;
|
|
transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
|
|
transform: translateX(100%);
|
|
box-shadow: 0 0 13px 0 rgba(215, 215, 215, 0.16);
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-navbar-nav-wrap.active {
|
|
transition-delay: .1s;
|
|
transform: translateX(0);
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-navbar-nav {
|
|
height: calc(100vh - 100px);
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
-webkit-overflow-scrolling: touch;
|
|
border-top: 1px solid #e7e7e7;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-nav-item {
|
|
position: relative;
|
|
display: block;
|
|
padding: 19px 30px 19px 40px;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-nav-item.active .rd-nav-link {
|
|
color: #ffad4d;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-nav-item .rd-nav-link,
|
|
.rd-navbar-sidebar .rd-nav-item > .rd-navbar-submenu-toggle {
|
|
font-size: 18px;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-nav-item + .rd-nav-item {
|
|
border-top: 1px solid #e7e7e7;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-nav-item:last-child {
|
|
border-bottom: 1px solid #e7e7e7;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-nav-link {
|
|
max-width: calc(100% - 30px);
|
|
word-break: break-all;
|
|
font-size: 18px;
|
|
line-height: 1.4;
|
|
text-transform: none;
|
|
color: #d7d7d7;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-nav-link:hover {
|
|
color: #ffad4d;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-navbar-submenu .opened > .rd-navbar-submenu-toggle::after {
|
|
transform: rotate(180deg);
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-navbar-submenu > .rd-navbar-dropdown,
|
|
.rd-navbar-sidebar .rd-navbar-submenu > .rd-navbar-megamenu {
|
|
display: none;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
will-change: opacity, visibility;
|
|
transition: opacity .2s;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-navbar-submenu.opened > .rd-navbar-dropdown,
|
|
.rd-navbar-sidebar .rd-navbar-submenu.opened > .rd-navbar-megamenu {
|
|
display: block;
|
|
opacity: 1;
|
|
visibility: visible;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-navbar-submenu > .rd-navbar-submenu > .rd-navbar-dropdown,
|
|
.rd-navbar-sidebar .rd-navbar-submenu > .rd-navbar-submenu > .rd-navbar-megamenu {
|
|
transform: translateY(30px);
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-navbar-submenu > .rd-navbar-submenu.opened > .rd-navbar-dropdown,
|
|
.rd-navbar-sidebar .rd-navbar-submenu > .rd-navbar-submenu.opened > .rd-navbar-megamenu {
|
|
transform: translateY(0);
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-navbar-submenu > .rd-navbar-submenu .rd-navbar-submenu > .rd-navbar-dropdown {
|
|
transform: translateX(-20px);
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-navbar-submenu > .rd-navbar-submenu .rd-navbar-submenu.opened > .rd-navbar-dropdown {
|
|
transform: translateX(0);
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-nav-item > .rd-navbar-submenu-toggle,
|
|
.rd-navbar-sidebar .rd-nav-item .rd-navbar--has-dropdown > .rd-navbar-submenu-toggle {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
padding-top: inherit;
|
|
padding-right: inherit;
|
|
padding-left: 10px;
|
|
margin-bottom: inherit;
|
|
display: inline-block;
|
|
width: 30px;
|
|
margin-left: 5px;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-nav-item > .rd-navbar-submenu-toggle:hover,
|
|
.rd-navbar-sidebar .rd-nav-item .rd-navbar--has-dropdown > .rd-navbar-submenu-toggle:hover {
|
|
color: #ffad4d;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-nav-item > .rd-navbar-submenu-toggle::after,
|
|
.rd-navbar-sidebar .rd-nav-item .rd-navbar--has-dropdown > .rd-navbar-submenu-toggle::after {
|
|
content: '\f107';
|
|
position: relative;
|
|
display: inline-block;
|
|
font-family: "FontAwesome";
|
|
font-size: inherit;
|
|
line-height: inherit;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
transition: 0.4s all ease;
|
|
z-index: 2;
|
|
will-change: transform;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-nav-item .rd-navbar--has-dropdown > .rd-navbar-submenu-toggle {
|
|
font-size: 14px;
|
|
color: #d7d7d7;
|
|
margin-left: 7px;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-menu {
|
|
margin-top: 31px;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-navbar-dropdown,
|
|
.rd-navbar-sidebar .rd-megamenu-list {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-navbar-dropdown li > a,
|
|
.rd-navbar-sidebar .rd-megamenu-list li > a {
|
|
position: relative;
|
|
left: -3px;
|
|
display: flex;
|
|
padding: 1px 14px 1px 0;
|
|
text-align: left;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-navbar-dropdown li > a, .rd-navbar-sidebar .rd-navbar-dropdown li > a:focus, .rd-navbar-sidebar .rd-navbar-dropdown li > a:active,
|
|
.rd-navbar-sidebar .rd-megamenu-list li > a,
|
|
.rd-navbar-sidebar .rd-megamenu-list li > a:focus,
|
|
.rd-navbar-sidebar .rd-megamenu-list li > a:active {
|
|
color: #5b5b5b;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-navbar-dropdown li > a:hover,
|
|
.rd-navbar-sidebar .rd-megamenu-list li > a:hover {
|
|
color: #ffad4d;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-navbar-dropdown li > a, .rd-navbar-sidebar .rd-navbar-dropdown li > a::before,
|
|
.rd-navbar-sidebar .rd-megamenu-list li > a,
|
|
.rd-navbar-sidebar .rd-megamenu-list li > a::before {
|
|
transition: .15s ease-in-out;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-navbar-dropdown li > a::before,
|
|
.rd-navbar-sidebar .rd-megamenu-list li > a::before {
|
|
position: relative;
|
|
top: -1px;
|
|
left: -6px;
|
|
display: inline-block;
|
|
content: '\f105';
|
|
font-family: 'FontAwesome';
|
|
font-size: inherit;
|
|
line-height: inherit;
|
|
color: #ffad4d;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-navbar-dropdown li.focus > a,
|
|
.rd-navbar-sidebar .rd-navbar-dropdown li.opened > a,
|
|
.rd-navbar-sidebar .rd-navbar-dropdown li > a:hover,
|
|
.rd-navbar-sidebar .rd-megamenu-list li.focus > a,
|
|
.rd-navbar-sidebar .rd-megamenu-list li.opened > a,
|
|
.rd-navbar-sidebar .rd-megamenu-list li > a:hover {
|
|
left: 0;
|
|
padding-left: 14px;
|
|
padding-right: 0;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-navbar-dropdown li.focus > a::before,
|
|
.rd-navbar-sidebar .rd-navbar-dropdown li.opened > a::before,
|
|
.rd-navbar-sidebar .rd-navbar-dropdown li > a:hover::before,
|
|
.rd-navbar-sidebar .rd-megamenu-list li.focus > a::before,
|
|
.rd-navbar-sidebar .rd-megamenu-list li.opened > a::before,
|
|
.rd-navbar-sidebar .rd-megamenu-list li > a:hover::before {
|
|
left: -7px;
|
|
opacity: 1;
|
|
visibility: visible;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-navbar-megamenu {
|
|
max-width: 450px;
|
|
margin-bottom: -30px;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-navbar-megamenu > * {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-navbar-megamenu > li {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
width: 45%;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-megamenu-title {
|
|
display: none;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-megamenu-list {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-megamenu-list > li + li {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-navbar-dropdown .rd-navbar--has-dropdown > a {
|
|
padding-right: 0;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-navbar-dropdown .rd-navbar--has-dropdown > a::before {
|
|
display: none;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-navbar-dropdown .rd-navbar--has-dropdown > a:hover {
|
|
padding-left: 0;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-navbar-dropdown .rd-navbar--has-dropdown.focus > a {
|
|
padding-left: 0;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-navbar-dropdown .rd-navbar--has-dropdown.opened > .rd-navbar-submenu-toggle {
|
|
color: #ffad4d;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-navbar-dropdown .rd-navbar--has-dropdown.opened > .rd-navbar-submenu-toggle::after {
|
|
top: 1px;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-navbar-dropdown > li + li {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-nav-item > .rd-navbar-dropdown {
|
|
margin-top: 25px;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-nav-item > .rd-navbar-dropdown .rd-navbar-dropdown {
|
|
margin-top: 10px;
|
|
padding-left: 15px;
|
|
}
|
|
|
|
.rd-navbar-sidebar .rd-nav-item > .rd-navbar-dropdown .rd-navbar-dropdown > li > a {
|
|
font-size: 12px;
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.rd-navbar-sidebar .rd-navbar-megamenu {
|
|
margin-bottom: -30px;
|
|
}
|
|
.rd-navbar-sidebar .rd-navbar-megamenu > * {
|
|
margin-bottom: 30px;
|
|
}
|
|
.rd-navbar-sidebar .rd-navbar-dropdown > li + li,
|
|
.rd-navbar-sidebar .rd-megamenu-list > li + li {
|
|
margin-top: 18px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.rd-navbar-sidebar .rd-navbar-nav-wrap {
|
|
width: auto;
|
|
left: calc(50% + 600px - 80px);
|
|
}
|
|
}
|
|
|
|
.rd-navbar-sidebar.rd-navbar--is-clone {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 1000;
|
|
transform: translateY(-101%);
|
|
}
|
|
|
|
.rd-navbar-sidebar.rd-navbar--is-clone.rd-navbar--is-stuck {
|
|
transform: translateY(0);
|
|
}
|
|
|
|
.rd-navbar-sidebar.rd-navbar--is-stuck {
|
|
position: fixed;
|
|
left: 0;
|
|
right: 0;
|
|
top: 0;
|
|
z-index: 1000;
|
|
box-shadow: 0 2px 10px 1px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.rd-navbar-sidebar.rd-navbar--is-stuck .rd-navbar-main {
|
|
padding-top: 11px;
|
|
padding-bottom: 11px;
|
|
}
|
|
|
|
/**
|
|
*
|
|
* RD Navbar Classic
|
|
* =====================================================
|
|
*/
|
|
.rd-navbar-wrap {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 2;
|
|
}
|
|
|
|
.rd-navbar-classic.rd-navbar-static .rd-navbar-aside-outer,
|
|
.rd-navbar-classic.rd-navbar-static .rd-navbar-main-outer {
|
|
padding-left: 15px;
|
|
padding-right: 15px;
|
|
}
|
|
|
|
.rd-navbar-classic.rd-navbar-static .rd-navbar-aside,
|
|
.rd-navbar-classic.rd-navbar-static .rd-navbar-main {
|
|
max-width: 1200px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.rd-navbar-classic.rd-navbar-static .rd-navbar-aside {
|
|
padding: 10px 0;
|
|
}
|
|
|
|
.rd-navbar-classic.rd-navbar-static .rd-navbar-main {
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 20px 0;
|
|
}
|
|
|
|
.rd-navbar-classic.rd-navbar-static .rd-navbar-brand img {
|
|
width: auto;
|
|
height: auto;
|
|
max-width: 200px;
|
|
max-height: 200px;
|
|
}
|
|
|
|
.rd-navbar-classic.rd-navbar-static .rd-navbar-main-element {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.rd-navbar-classic.rd-navbar-static.rd-navbar--is-stuck, .rd-navbar-classic.rd-navbar-static.rd-navbar--is-clone {
|
|
border-bottom-color: #e7e7e7;
|
|
}
|
|
|
|
.rd-navbar-classic.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-aside-outer, .rd-navbar-classic.rd-navbar-static.rd-navbar--is-clone .rd-navbar-aside-outer {
|
|
display: none;
|
|
}
|
|
|
|
.rd-navbar-classic.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-main, .rd-navbar-classic.rd-navbar-static.rd-navbar--is-clone .rd-navbar-main {
|
|
padding: 17px 0;
|
|
}
|
|
|
|
.rd-navbar-classic.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-nav-item > .rd-navbar-submenu, .rd-navbar-classic.rd-navbar-static.rd-navbar--is-clone .rd-navbar-nav-item > .rd-navbar-submenu {
|
|
margin-top: 17px;
|
|
}
|
|
|
|
/*
|
|
*
|
|
* RD Navbar Fullwidth
|
|
*/
|
|
.rd-navbar-fullwidth {
|
|
display: block;
|
|
}
|
|
|
|
.rd-navbar-fullwidth .rd-navbar-nav > li + li {
|
|
margin-left: 20px;
|
|
}
|
|
|
|
.rd-navbar-fullwidth.rd-navbar--is-stuck .rd-navbar-main, .rd-navbar-fullwidth.rd-navbar--is-clone .rd-navbar-main {
|
|
padding: 10px 0;
|
|
}
|
|
|
|
/*
|
|
*
|
|
* Swiper
|
|
*/
|
|
.swiper-container {
|
|
display: flex;
|
|
margin: 0 auto;
|
|
position: relative;
|
|
overflow: hidden;
|
|
height: auto;
|
|
width: 100%;
|
|
/* Fix of Webkit flickering */
|
|
z-index: 1;
|
|
}
|
|
|
|
.swiper-container-no-flexbox .swiper-slide {
|
|
float: left;
|
|
}
|
|
|
|
.swiper-container-vertical > .swiper-wrapper {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.swiper-wrapper {
|
|
position: relative;
|
|
z-index: 1;
|
|
display: flex;
|
|
align-self: stretch;
|
|
align-items: stretch;
|
|
width: 100%;
|
|
height: auto;
|
|
min-height: inherit;
|
|
transition-property: transform;
|
|
box-sizing: content-box;
|
|
}
|
|
|
|
.swiper-container {
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.swiper-container-android .swiper-slide,
|
|
.swiper-wrapper {
|
|
transform: translate3d(0, 0, 0);
|
|
}
|
|
|
|
.swiper-container-multirow > .swiper-wrapper {
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.swiper-container-free-mode > .swiper-wrapper {
|
|
transition-timing-function: ease-out;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
/* a11y */
|
|
.swiper-container .swiper-notification {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
pointer-events: none;
|
|
opacity: 0;
|
|
z-index: -1000;
|
|
}
|
|
|
|
/* IE10 Windows Phone 8 Fixes */
|
|
.swiper-wp8-horizontal {
|
|
touch-action: pan-y;
|
|
}
|
|
|
|
.swiper-wp8-vertical {
|
|
touch-action: pan-x;
|
|
}
|
|
|
|
/* Coverflow */
|
|
.swiper-container-coverflow .swiper-wrapper {
|
|
/* Windows 8 IE 10 fix */
|
|
}
|
|
|
|
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
|
|
transition-timing-function: ease-out;
|
|
}
|
|
|
|
.swiper-container-fade .swiper-slide {
|
|
pointer-events: none;
|
|
}
|
|
|
|
.swiper-container-fade .swiper-slide .swiper-slide {
|
|
pointer-events: none;
|
|
}
|
|
|
|
.swiper-container-fade .swiper-slide-active,
|
|
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
|
|
pointer-events: auto;
|
|
}
|
|
|
|
.swiper-lazy-preloader {
|
|
width: 42px;
|
|
height: 42px;
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 50%;
|
|
margin-left: -21px;
|
|
margin-top: -21px;
|
|
z-index: 10;
|
|
transform-origin: 50%;
|
|
animation: swiper-preloader-spin 1s steps(12, end) infinite;
|
|
}
|
|
|
|
.swiper-lazy-preloader:after {
|
|
display: block;
|
|
content: "";
|
|
width: 100%;
|
|
height: 100%;
|
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
|
|
background-position: 50%;
|
|
background-size: 100%;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.swiper-lazy-preloader-white:after {
|
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
|
|
}
|
|
|
|
@keyframes swiper-preloader-spin {
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
.swiper-slide > .vide__body,
|
|
.swiper-slide > .parallax_cnt {
|
|
height: 100%;
|
|
}
|
|
|
|
.swiper-button-prev,
|
|
.swiper-button-next {
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
display: none;
|
|
font-size: 26px;
|
|
line-height: 1;
|
|
color: #ffffff;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
transition: .2s ease-in;
|
|
will-change: transform;
|
|
z-index: 10;
|
|
}
|
|
|
|
.swiper-button-prev:hover,
|
|
.swiper-button-next:hover {
|
|
color: #ffad4d;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.swiper-button-prev,
|
|
.swiper-button-next {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
.swiper-button-prev.swiper-button-disabled,
|
|
.swiper-button-next.swiper-button-disabled {
|
|
opacity: 0.35;
|
|
cursor: auto;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.swiper-button-prev {
|
|
left: 30px;
|
|
}
|
|
|
|
.swiper-button-prev:before {
|
|
font-family: "FontAwesome";
|
|
content: "\f060";
|
|
}
|
|
|
|
.swiper-button-next {
|
|
right: 30px;
|
|
}
|
|
|
|
.swiper-button-next:before {
|
|
font-family: "FontAwesome";
|
|
content: "\f061";
|
|
}
|
|
|
|
.swiper-slider.swiper-container-rtl .swiper-button-prev::before {
|
|
content: "\f061";
|
|
}
|
|
|
|
.swiper-slider.swiper-container-rtl .swiper-button-next::before {
|
|
content: "\f060";
|
|
}
|
|
|
|
.swiper-pagination {
|
|
position: absolute;
|
|
display: block;
|
|
text-align: center;
|
|
transition: .3s;
|
|
transform: translate3d(0, 0, 0);
|
|
z-index: 10;
|
|
}
|
|
|
|
.swiper-pagination.swiper-pagination-hidden {
|
|
opacity: 0;
|
|
}
|
|
|
|
.swiper-pagination .swiper-pagination-bullet {
|
|
width: 10px;
|
|
height: 10px;
|
|
display: inline-block;
|
|
border-radius: 100%;
|
|
background: rgba(255, 255, 255, 0.6);
|
|
transition: .2s;
|
|
}
|
|
|
|
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active, .swiper-pagination .swiper-pagination-bullet:hover {
|
|
background: white;
|
|
}
|
|
|
|
.swiper-pagination.swiper-pagination-clickable .swiper-pagination-bullet {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.swiper-pagination-black .swiper-pagination-bullet {
|
|
background: rgba(0, 0, 0, 0.6);
|
|
}
|
|
|
|
.swiper-pagination-black .swiper-pagination-bullet.swiper-pagination-bullet-active {
|
|
background: black;
|
|
}
|
|
|
|
.swiper-container-vertical > .swiper-pagination {
|
|
right: 10px;
|
|
top: 50%;
|
|
transform: translate3d(0px, -50%, 0);
|
|
}
|
|
|
|
.swiper-container-vertical > .swiper-pagination .swiper-pagination-bullet {
|
|
margin: 5px 0;
|
|
display: block;
|
|
}
|
|
|
|
.swiper-container-horizontal > .swiper-pagination {
|
|
bottom: 20px;
|
|
left: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.swiper-container-horizontal > .swiper-pagination .swiper-pagination-bullet {
|
|
margin: 0 5px;
|
|
}
|
|
|
|
.swiper-slide {
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-shrink: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
white-space: nowrap;
|
|
background-size: cover;
|
|
}
|
|
|
|
.swiper-slide-caption {
|
|
width: 100%;
|
|
white-space: normal;
|
|
}
|
|
|
|
.swiper-slider-1 {
|
|
min-height: 36.45833vw;
|
|
}
|
|
|
|
.swiper-slider-1 * + .group-sm {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.swiper-slider-1 * + .group-sm {
|
|
margin-top: 40px;
|
|
}
|
|
}
|
|
|
|
/*
|
|
* @subsection Google Map
|
|
* @description Describes style declarations for RD Google Map extension
|
|
* @version 1.0.0
|
|
*/
|
|
.google-map-markers {
|
|
display: none;
|
|
}
|
|
|
|
.google-map-container {
|
|
width: 100%;
|
|
}
|
|
|
|
.google-map {
|
|
height: 250px;
|
|
width: 100%;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.google-map {
|
|
height: 400px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.google-map {
|
|
height: 520px;
|
|
}
|
|
}
|
|
|
|
/*
|
|
*
|
|
* Search Results
|
|
*/
|
|
.rd-search-results-live {
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
top: 100%;
|
|
max-height: 600px;
|
|
overflow-y: auto;
|
|
margin: -3px 0 0;
|
|
text-align: left;
|
|
z-index: 998;
|
|
}
|
|
|
|
.rd-search-results-live #search-results {
|
|
position: relative;
|
|
padding: 16px 0 0;
|
|
color: #151515;
|
|
background: #ffffff;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
transform-origin: 50% 0;
|
|
transform: scale(1, 0.9);
|
|
transition: .3s all ease;
|
|
}
|
|
|
|
.rd-search-results-live #search-results::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
pointer-events: none;
|
|
z-index: -1;
|
|
border: 1px solid #e7e7e7;
|
|
border-top: 0;
|
|
}
|
|
|
|
.rd-search-results-live #search-results.active {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
transform: scale(1, 1);
|
|
}
|
|
|
|
.rd-search-results-live .search-quick-result {
|
|
padding-left: 15px;
|
|
padding-right: 15px;
|
|
font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
line-height: 30px;
|
|
text-transform: uppercase;
|
|
color: #151515;
|
|
}
|
|
|
|
.rd-search-results-live .search-list {
|
|
margin-top: 11px;
|
|
}
|
|
|
|
.rd-search-results-live .search-list li:only-child {
|
|
padding: 0 15px 15px;
|
|
}
|
|
|
|
.rd-search-results-live .search-link {
|
|
color: #d7d7d7;
|
|
}
|
|
|
|
.rd-search-results-live .search-link:hover {
|
|
color: #ffad4d;
|
|
}
|
|
|
|
.rd-search-results-live .search-error {
|
|
font-size: 14px;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.rd-search-results-live .search-title {
|
|
position: relative;
|
|
font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
color: #151515;
|
|
}
|
|
|
|
.rd-search-results-live .search-title a:hover {
|
|
color: #ffad4d;
|
|
}
|
|
|
|
.rd-search-results-live .search-list-item-all {
|
|
margin-top: 18px;
|
|
width: 100%;
|
|
}
|
|
|
|
.rd-search-results-live .search-submit {
|
|
position: relative;
|
|
overflow: hidden;
|
|
z-index: 0;
|
|
display: block;
|
|
padding: 8px;
|
|
font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
font-size: 13px;
|
|
font-weight: 900;
|
|
letter-spacing: 0.07em;
|
|
text-transform: uppercase;
|
|
text-align: center;
|
|
color: #ffffff;
|
|
background: #ffad4d;
|
|
}
|
|
|
|
.rd-search-results-live .search-submit:hover {
|
|
color: #ffffff;
|
|
background: #d7d7d7;
|
|
}
|
|
|
|
.rd-search-results-live .match {
|
|
display: none;
|
|
}
|
|
|
|
.not-empty ~ .rd-search-results-live {
|
|
visibility: visible;
|
|
opacity: 1;
|
|
}
|
|
|
|
.rd-search-results-live p {
|
|
font-size: 11px;
|
|
}
|
|
|
|
.rd-search-results-live p * {
|
|
margin: 0;
|
|
}
|
|
|
|
.rd-search-results-live .search-list-item {
|
|
padding: 0 15px;
|
|
}
|
|
|
|
.rd-search-results-live * + p {
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.rd-search-results-live .search-list-item + .search-list-item {
|
|
margin-top: 17px;
|
|
}
|
|
|
|
.rd-search-results .search-list {
|
|
counter-reset: li;
|
|
text-align: left;
|
|
padding-left: 0;
|
|
font-size: 18px;
|
|
list-style-type: none;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.rd-search-results .search-list li div {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
max-width: 100%;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.rd-search-results .search-list li:only-child::before {
|
|
display: none;
|
|
}
|
|
|
|
.rd-search-results .search-list-item {
|
|
position: relative;
|
|
padding-left: 40px;
|
|
font-size: 1.125rem;
|
|
color: #5b5b5b;
|
|
}
|
|
|
|
.rd-search-results .search-list-item::before {
|
|
content: counter(li, decimal-leading-zero) ".";
|
|
counter-increment: li;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
font-size: 14px;
|
|
line-height: inherit;
|
|
font-weight: 600;
|
|
color: #000000;
|
|
}
|
|
|
|
.rd-search-results .search-list-item + .search-list-item {
|
|
margin-top: 40px;
|
|
}
|
|
|
|
.rd-search-results .search-title {
|
|
font-size: 16px;
|
|
color: #000000;
|
|
}
|
|
|
|
.rd-search-results .search {
|
|
color: #ffffff;
|
|
padding: 0 .25em;
|
|
background: #ffad4d;
|
|
}
|
|
|
|
.rd-search-results .match {
|
|
padding: 5px;
|
|
font-size: 12px;
|
|
line-height: 1.7;
|
|
letter-spacing: .1em;
|
|
text-transform: uppercase;
|
|
color: #000000;
|
|
}
|
|
|
|
.rd-search-results .match em {
|
|
margin: 0;
|
|
font-style: normal;
|
|
}
|
|
|
|
.rd-search-results p * {
|
|
margin: 0;
|
|
}
|
|
|
|
.rd-search-results * + .match {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.rd-search-results .search-title {
|
|
font-size: 18px;
|
|
}
|
|
.rd-search-results .search-list-item::before {
|
|
top: -1px;
|
|
font-size: 16px;
|
|
}
|
|
.rd-search-results * + p {
|
|
margin-top: 12px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 992px) {
|
|
.rd-search-results .search-list-item {
|
|
padding-left: 40px;
|
|
}
|
|
}
|
|
|
|
* + .rd-search-results {
|
|
margin-top: 40px;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
* + .rd-search-results {
|
|
margin-top: 55px;
|
|
}
|
|
}
|
|
|
|
.rd-search-classic {
|
|
position: relative;
|
|
}
|
|
|
|
.rd-search-classic .form-input {
|
|
padding-right: 50px;
|
|
}
|
|
|
|
.rd-search-classic .form-input,
|
|
.rd-search-classic .form-label {
|
|
letter-spacing: 0;
|
|
}
|
|
|
|
.rd-search-classic .rd-search-submit {
|
|
background: none;
|
|
border: none;
|
|
display: inline-block;
|
|
padding: 0;
|
|
outline: none;
|
|
outline-offset: 0;
|
|
cursor: pointer;
|
|
-webkit-appearance: none;
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
width: 50px;
|
|
padding-top: 3px;
|
|
padding-right: 2px;
|
|
margin: 0;
|
|
text-align: center;
|
|
color: #d7d7d7;
|
|
font-size: 0;
|
|
line-height: 0;
|
|
}
|
|
|
|
.rd-search-classic .rd-search-submit::-moz-focus-inner {
|
|
border: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.rd-search-classic .rd-search-submit:before {
|
|
position: relative;
|
|
top: -1px;
|
|
content: '\e014';
|
|
font: 400 20px 'fl-chapps';
|
|
line-height: 1;
|
|
transition: .33s all ease;
|
|
}
|
|
|
|
.rd-search-classic .rd-search-submit:hover {
|
|
color: #ffad4d;
|
|
}
|
|
|
|
.rd-search.rd-search-inline {
|
|
position: relative;
|
|
}
|
|
|
|
.rd-search.rd-search-inline .form-input {
|
|
padding-right: 50px;
|
|
}
|
|
|
|
.rd-search.rd-search-inline .button-link {
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
width: 50px;
|
|
right: 0;
|
|
margin: 0;
|
|
font-size: 21px;
|
|
color: #d7d7d7;
|
|
transition: .33s;
|
|
}
|
|
|
|
.rd-search.rd-search-inline .button-link::before {
|
|
display: block;
|
|
margin: auto;
|
|
}
|
|
|
|
.rd-search.rd-search-inline .button-link:hover {
|
|
color: #ffad4d;
|
|
}
|
|
|
|
.rd-search.rd-search-inline.form-sm .form-input {
|
|
padding-right: 40px;
|
|
}
|
|
|
|
.rd-search.rd-search-inline.form-sm .button-link {
|
|
width: 40px;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.rd-search.rd-search-inline.form-lg .form-input {
|
|
padding-right: 60px;
|
|
}
|
|
|
|
.rd-search.rd-search-inline.form-lg .button-link {
|
|
width: 60px;
|
|
}
|
|
|
|
/*
|
|
*
|
|
* Isotope
|
|
*/
|
|
@keyframes sprite-animation {
|
|
from {
|
|
background-position: 0 0;
|
|
}
|
|
}
|
|
|
|
[data-isotope-layout] {
|
|
z-index: 0;
|
|
display: block;
|
|
min-height: 160px;
|
|
margin-left: -15px;
|
|
margin-right: -15px;
|
|
transition: .4s all ease;
|
|
}
|
|
|
|
[data-isotope-layout] .row {
|
|
margin-bottom: -30px;
|
|
}
|
|
|
|
[data-isotope-layout] .row > [class*="col-"] {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
[data-isotope-layout] .row-narrow {
|
|
margin-bottom: -30px;
|
|
}
|
|
|
|
[data-isotope-layout] .row-narrow > [class*="col-"] {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
[data-isotope-layout] .row-condensed {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
[data-isotope-layout] .row-condensed > [class*="col-"] {
|
|
margin-top: 0;
|
|
}
|
|
|
|
[data-isotope-layout] [class*="col-"] {
|
|
display: block;
|
|
will-change: transform;
|
|
backface-visibility: hidden;
|
|
transition: .1s opacity ease-in;
|
|
}
|
|
|
|
@media (max-width: 767.98px) {
|
|
[data-isotope-layout] [class*="col-"] {
|
|
max-width: 100%;
|
|
}
|
|
}
|
|
|
|
.isotope-filters > * {
|
|
margin-top: 0;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.isotope-filters .inline-list {
|
|
position: relative;
|
|
word-spacing: 0;
|
|
}
|
|
|
|
.isotope-filters .inline-list li {
|
|
display: inline-block;
|
|
}
|
|
|
|
.isotope-filters .inline-list a {
|
|
position: relative;
|
|
transition: .3s;
|
|
}
|
|
|
|
.isotope-filters .inline-list .isotope-filters-trigger {
|
|
display: none;
|
|
}
|
|
|
|
.isotope-filters-modern .inline-list {
|
|
transform: translate3d(0, -10px, 0);
|
|
margin-bottom: -10px;
|
|
margin-left: -10px;
|
|
margin-right: -10px;
|
|
}
|
|
|
|
.isotope-filters-modern .inline-list > * {
|
|
margin-top: 10px;
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
}
|
|
|
|
.isotope-filters-modern .inline-list > li {
|
|
font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.isotope-filters-modern .inline-list a {
|
|
position: relative;
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
.isotope-filters-modern .inline-list a::after {
|
|
content: '';
|
|
position: absolute;
|
|
left: 0;
|
|
bottom: 0;
|
|
width: 0;
|
|
height: 2px;
|
|
transition: .4s;
|
|
background: #ffad4d;
|
|
}
|
|
|
|
.isotope-filters-modern .inline-list a:hover {
|
|
color: #ffad4d;
|
|
}
|
|
|
|
.isotope-filters-modern .inline-list a.active::after {
|
|
width: 100%;
|
|
}
|
|
|
|
@media (min-width: 992px) {
|
|
.isotope-filters-modern .inline-list {
|
|
transform: translate3d(0, -10px, 0);
|
|
margin-bottom: -10px;
|
|
margin-left: -23px;
|
|
margin-right: -23px;
|
|
}
|
|
.isotope-filters-modern .inline-list > * {
|
|
margin-top: 10px;
|
|
padding-left: 23px;
|
|
padding-right: 23px;
|
|
}
|
|
}
|
|
|
|
.isotope-modern-wrap [class*='col'] {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
@media (max-width: 767.98px) {
|
|
.isotope-modern-wrap [class*='col'] {
|
|
width: 100%;
|
|
max-width: 100%;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 992px) {
|
|
html:not(.tablet):not(.mobile) .isotope-modern-wrap [class*='col'] {
|
|
margin-top: 0;
|
|
}
|
|
}
|
|
|
|
.isotope-condensed {
|
|
margin-left: 0;
|
|
margin-right: 0;
|
|
}
|
|
|
|
.isotope-condensed .row > * {
|
|
margin-top: -1px;
|
|
margin-bottom: -1px;
|
|
}
|
|
|
|
.isotope-filters-responsive {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
@media (max-width: 767.98px) {
|
|
.isotope-filters-responsive > li {
|
|
display: inline-block;
|
|
}
|
|
.isotope-filters-responsive .isotope-filters {
|
|
position: absolute;
|
|
top: 49px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
z-index: 10;
|
|
width: 200px;
|
|
padding: 15px;
|
|
background: #ffffff;
|
|
border-radius: 3px;
|
|
text-align: left;
|
|
visibility: hidden;
|
|
opacity: 0;
|
|
transition: .33s all ease;
|
|
border: 1px solid #f2f2f2;
|
|
}
|
|
.isotope-filters-responsive .isotope-filters.active {
|
|
visibility: visible;
|
|
opacity: 1;
|
|
}
|
|
.isotope-filters-responsive .isotope-filters .inline-list {
|
|
width: 100%;
|
|
}
|
|
.isotope-filters-responsive .isotope-filters .inline-list a {
|
|
display: inline-block;
|
|
width: 100%;
|
|
padding: 5px 8px;
|
|
border: 0;
|
|
background-color: transparent;
|
|
}
|
|
.isotope-filters-responsive .isotope-filters .inline-list a.active, .isotope-filters-responsive .isotope-filters .inline-list a:hover {
|
|
color: #ffad4d;
|
|
background-color: rgba(255, 173, 77, 0.1);
|
|
}
|
|
.isotope-filters-responsive .isotope-filters li {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.isotope-filters-responsive .isotope-filters li + li {
|
|
margin-top: 6px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 576px) {
|
|
.isotope-filters-responsive > li {
|
|
display: inline-block;
|
|
margin: 0;
|
|
}
|
|
.isotope-filters-responsive > li + li {
|
|
margin-top: 0;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.isotope-filters-responsive .isotope-filters {
|
|
left: 0;
|
|
transform: none;
|
|
}
|
|
.isotope-filters-responsive .isotope-filters .inline-list a {
|
|
position: relative;
|
|
padding: 23px 38px;
|
|
}
|
|
.isotope-filters-responsive .isotope-filters .inline-list a:before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
left: 0;
|
|
background-color: #ffad4d;
|
|
border-radius: 45px;
|
|
z-index: -1;
|
|
opacity: 0;
|
|
transition: .33s ease;
|
|
box-shadow: 9px 9px 19px rgba(255, 173, 77, 0.22);
|
|
}
|
|
.isotope-filters-responsive .isotope-filters .inline-list a.active, .isotope-filters-responsive .isotope-filters .inline-list a:hover {
|
|
color: #ffffff;
|
|
}
|
|
.isotope-filters-responsive .isotope-filters .inline-list a.active:before, .isotope-filters-responsive .isotope-filters .inline-list a:hover:before {
|
|
opacity: 1;
|
|
}
|
|
.isotope-filters-responsive > li:first-child {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.isotope-filters {
|
|
display: inline-block;
|
|
border: 1px solid #e7e7e7;
|
|
border-radius: 35px;
|
|
}
|
|
|
|
.isotope-filters li a {
|
|
display: inline-block;
|
|
text-transform: uppercase;
|
|
color: rgba(21, 21, 21, 0.65);
|
|
font-weight: 900;
|
|
letter-spacing: .07em;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.isotope-filters-toggle {
|
|
display: block;
|
|
border: 0;
|
|
outline: 0;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.isotope-filters-toggle {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
* + .isotope-condensed,
|
|
* + .isotope-wrap {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
@media (max-width: 991.98px) {
|
|
.isotope-condensed {
|
|
padding: 0 0 30px;
|
|
margin-left: 0;
|
|
margin-right: 0;
|
|
}
|
|
.isotope-condensed .row.row-condensed > [class*='col'] {
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
}
|
|
.isotope-condensed .row.row-condensed > [class*='col'] + [class*='col'] {
|
|
margin-top: 25px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
* + .isotope {
|
|
margin-top: 40px;
|
|
}
|
|
* + .isotope-condensed {
|
|
margin-top: 50px;
|
|
}
|
|
}
|
|
|
|
.tabs-custom {
|
|
text-align: left;
|
|
}
|
|
|
|
.tabs-custom .nav-tabs {
|
|
font-size: 0;
|
|
line-height: 0;
|
|
word-spacing: 0;
|
|
border: 0;
|
|
}
|
|
|
|
.tabs-custom .nav-tabs:before, .tabs-custom .nav-tabs:after {
|
|
display: none;
|
|
}
|
|
|
|
.tabs-custom .nav-item {
|
|
float: none;
|
|
border: 0;
|
|
cursor: pointer;
|
|
transition: .33s all ease;
|
|
}
|
|
|
|
.tabs-custom .nav-link {
|
|
margin: 0;
|
|
border-radius: 0;
|
|
border: 0;
|
|
}
|
|
|
|
.tabs-custom .nav-link.active {
|
|
cursor: default;
|
|
border: 0;
|
|
}
|
|
|
|
.tab-content > .tab-pane {
|
|
display: block;
|
|
visibility: hidden;
|
|
height: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.tab-content > .active {
|
|
visibility: visible;
|
|
height: auto;
|
|
overflow: visible;
|
|
}
|
|
|
|
* + .tabs-horizontal.tabs-corporate {
|
|
margin-top: 25px;
|
|
}
|
|
|
|
* + .tabs-vertical.tabs-corporate {
|
|
margin-top: 40px;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
* + .tabs-vertical.tabs-corporate {
|
|
margin-top: 60px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
* + .tabs-vertical.tabs-corporate {
|
|
margin-top: 80px;
|
|
}
|
|
}
|
|
|
|
.tabs-line .nav-tabs {
|
|
position: relative;
|
|
}
|
|
|
|
.tabs-line .nav-link {
|
|
text-transform: uppercase;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
line-height: 1.4;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.tabs-line * + .tab-content {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
@media (max-width: 991.98px) {
|
|
.tabs-line .nav-tabs {
|
|
max-width: 100%;
|
|
border: 1px solid #e5e7e9;
|
|
}
|
|
.tabs-line .nav-item {
|
|
margin: -1px;
|
|
}
|
|
.tabs-line .nav-link {
|
|
padding: 7px 10px;
|
|
color: #151515;
|
|
background: transparent;
|
|
border-bottom: 1px solid #e5e7e9;
|
|
}
|
|
.tabs-line .nav-link:first-child {
|
|
border-top: 1px solid #e5e7e9;
|
|
}
|
|
.tabs-line .nav-link:hover,
|
|
.tabs-line .nav-link.active {
|
|
color: #ffffff;
|
|
background: #ffad4d;
|
|
border-color: #ffad4d;
|
|
}
|
|
}
|
|
|
|
.tabs-corporate .nav-tabs {
|
|
position: relative;
|
|
border: 1px solid #e5e7e9;
|
|
}
|
|
|
|
.tabs-corporate .nav-item {
|
|
margin: -1px;
|
|
}
|
|
|
|
.tabs-corporate .nav-link {
|
|
padding: 10px 10px;
|
|
text-transform: uppercase;
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
line-height: 1.4;
|
|
color: #151515;
|
|
background: transparent;
|
|
border-bottom: 1px solid #e5e7e9;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.tabs-corporate .nav-link:first-child {
|
|
border-top: 1px solid #e5e7e9;
|
|
}
|
|
|
|
.tabs-corporate .nav-link:hover,
|
|
.tabs-corporate .nav-link.active {
|
|
color: #ffffff;
|
|
background: #ffad4d;
|
|
border-color: #ffad4d;
|
|
}
|
|
|
|
.tabs-corporate .tab-content {
|
|
padding: 30px 0 0;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.tabs-horizontal.tabs-corporate .nav-tabs {
|
|
position: relative;
|
|
width: 100%;
|
|
display: block;
|
|
transform: translate3d(0, -10px, 0);
|
|
margin-bottom: -10px;
|
|
margin-left: -5px;
|
|
margin-right: -5px;
|
|
text-align: center;
|
|
border: 0;
|
|
will-change: transform;
|
|
}
|
|
.tabs-horizontal.tabs-corporate .nav-tabs > * {
|
|
margin-top: 10px;
|
|
padding-left: 5px;
|
|
padding-right: 5px;
|
|
}
|
|
.tabs-horizontal.tabs-corporate .nav-item {
|
|
display: inline-block;
|
|
will-change: transform;
|
|
}
|
|
.tabs-horizontal.tabs-corporate .nav-link {
|
|
display: block;
|
|
position: relative;
|
|
z-index: 1;
|
|
min-width: 130px;
|
|
letter-spacing: .1em;
|
|
padding: 13px 20px;
|
|
border: 2px solid #e5e7e9;
|
|
}
|
|
.tabs-horizontal.tabs-corporate .nav-link, .tabs-horizontal.tabs-corporate .nav-link::before {
|
|
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
|
}
|
|
.tabs-horizontal.tabs-corporate .nav-link::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: -1px;
|
|
left: -1px;
|
|
width: calc(100% + 2px);
|
|
height: calc(100% + 2px);
|
|
z-index: -1;
|
|
opacity: 0;
|
|
transform: scale3d(0.7, 1, 1);
|
|
transition: transform 0.4s, opacity 0.4s;
|
|
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
|
background: #ffad4d;
|
|
}
|
|
.tabs-horizontal.tabs-corporate .nav-link.active,
|
|
.tabs-horizontal.tabs-corporate .nav-link:hover {
|
|
color: #ffffff;
|
|
border-color: #ffad4d;
|
|
background-color: transparent;
|
|
}
|
|
.tabs-horizontal.tabs-corporate .nav-link.active::before,
|
|
.tabs-horizontal.tabs-corporate .nav-link:hover::before {
|
|
opacity: 1;
|
|
transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
|
|
}
|
|
.tabs-horizontal.tabs-line .nav-tabs {
|
|
border: 0;
|
|
border-bottom: 4px solid #e7e7e7;
|
|
}
|
|
.tabs-horizontal.tabs-line .nav-item {
|
|
display: inline-block;
|
|
}
|
|
.tabs-horizontal.tabs-line .nav-item:not(:last-child) {
|
|
margin-right: 52px;
|
|
}
|
|
.tabs-horizontal.tabs-line .nav-link {
|
|
position: relative;
|
|
padding: 0 0 15px 0;
|
|
background-color: transparent;
|
|
color: #5b5b5b;
|
|
border: 0;
|
|
}
|
|
.tabs-horizontal.tabs-line .nav-link::after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: -4px;
|
|
left: 0;
|
|
height: 4px;
|
|
width: 0;
|
|
background: #ffad4d;
|
|
transition: .22s ease;
|
|
}
|
|
.tabs-horizontal.tabs-line .nav-link.active,
|
|
.tabs-horizontal.tabs-line .nav-link:hover {
|
|
color: #d7d7d7;
|
|
}
|
|
.tabs-horizontal.tabs-line .nav-link.active::after {
|
|
width: 100%;
|
|
}
|
|
.tabs-horizontal.tabs-line * + .tab-content {
|
|
margin-top: 30px;
|
|
}
|
|
.tabs-vertical {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
}
|
|
.tabs-vertical .nav-tabs {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
flex-shrink: 0;
|
|
max-width: 50%;
|
|
}
|
|
.tabs-vertical .nav-item {
|
|
border: 0;
|
|
width: 100%;
|
|
text-align: left;
|
|
}
|
|
.tabs-vertical .nav-link.active,
|
|
.tabs-vertical .nav-link:hover {
|
|
box-shadow: 0 9px 21px 0 rgba(30, 30, 30, 0.13);
|
|
}
|
|
.tabs-vertical .tab-content {
|
|
flex-grow: 1;
|
|
}
|
|
.tabs-vertical.tabs-corporate .nav-tabs {
|
|
width: auto;
|
|
min-width: 260px;
|
|
border: 0;
|
|
}
|
|
.tabs-vertical.tabs-corporate .nav-item {
|
|
margin: 0;
|
|
}
|
|
.tabs-vertical.tabs-corporate .nav-link {
|
|
position: relative;
|
|
padding: 17px 30px;
|
|
border: 0;
|
|
overflow: hidden;
|
|
text-align: left;
|
|
}
|
|
.tabs-vertical.tabs-corporate .nav-item + .nav-item {
|
|
margin-top: 2px;
|
|
}
|
|
.tabs-vertical.tabs-corporate .tab-content {
|
|
padding: 0 0 0 30px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 992px) {
|
|
.tabs-horizontal.tabs-corporate .tab-content {
|
|
padding: 60px 30px 0;
|
|
}
|
|
.tabs-vertical.tabs-corporate .tab-content {
|
|
padding: 0 0 0 45px;
|
|
}
|
|
}
|
|
|
|
.card-group-custom {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.card-group-custom .card-header + .collapse > .card-body,
|
|
.card-group-custom .card-header + .collapse > .list-group {
|
|
border-top: 0;
|
|
}
|
|
|
|
.card-group-custom .card + .card {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.card-group-custom.card-group-corporate .card + .card {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.card-custom {
|
|
display: block;
|
|
margin: 0;
|
|
background: inherit;
|
|
border: 0;
|
|
border-radius: 0;
|
|
box-shadow: none;
|
|
text-align: left;
|
|
}
|
|
|
|
.card-custom a {
|
|
display: block;
|
|
}
|
|
|
|
.card-custom .card-header {
|
|
padding: 0;
|
|
border-bottom: 0;
|
|
border-top-left-radius: 0;
|
|
border-top-right-radius: 0;
|
|
}
|
|
|
|
.card-custom .card-body {
|
|
padding: 0;
|
|
border: 0;
|
|
}
|
|
|
|
* + .card-group-custom {
|
|
margin-top: 35px;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
* + .card-group-custom {
|
|
margin-top: 50px;
|
|
}
|
|
}
|
|
|
|
.card-corporate {
|
|
text-align: left;
|
|
box-shadow: -1px 2px 5px 0px rgba(68, 73, 83, 0.12);
|
|
}
|
|
|
|
.card-corporate .card-title {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.card-corporate .card-title a,
|
|
.card-corporate .card-body {
|
|
background: #ffffff;
|
|
}
|
|
|
|
.card-corporate .card-title a {
|
|
position: relative;
|
|
z-index: 1;
|
|
padding: 21px 82px 21px 32px;
|
|
font-weight: 700;
|
|
font-size: 16px;
|
|
line-height: 1.25;
|
|
letter-spacing: 0;
|
|
color: #2c343b;
|
|
transition: 1.3s all ease;
|
|
border-radius: 6px 6px 0 0;
|
|
border-bottom: 1px solid #dedede;
|
|
}
|
|
|
|
.card-corporate .card-title a .card-arrow:after {
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
}
|
|
|
|
.card-corporate .card-title a.collapsed {
|
|
border-radius: 6px;
|
|
border-bottom-width: 0;
|
|
}
|
|
|
|
.card-corporate .card-title a.collapsed .card-arrow {
|
|
border-radius: 0 6px 6px 0;
|
|
}
|
|
|
|
.card-corporate .card-title a.collapsed .card-arrow:after {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
}
|
|
|
|
.card-corporate .card-arrow {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: -1px;
|
|
right: -1px;
|
|
z-index: 2;
|
|
width: 70px;
|
|
background: #ffad4d;
|
|
border-radius: 0 6px 0 0;
|
|
transition: .33s all ease;
|
|
}
|
|
|
|
.card-corporate .card-arrow::before, .card-corporate .card-arrow::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 50%;
|
|
z-index: 4;
|
|
transform: translateY(-50%);
|
|
background: #ffffff;
|
|
}
|
|
|
|
.card-corporate .card-arrow::before {
|
|
width: 14px;
|
|
height: 2px;
|
|
right: 28px;
|
|
}
|
|
|
|
.card-corporate .card-arrow::after {
|
|
width: 2px;
|
|
height: 14px;
|
|
right: 34px;
|
|
}
|
|
|
|
.card-corporate .collapse {
|
|
position: relative;
|
|
z-index: 1;
|
|
color: #151515;
|
|
border-radius: 0 0 6px 6px;
|
|
}
|
|
|
|
.card-corporate .card-body {
|
|
padding: 25px 44px 25px 32px;
|
|
}
|
|
|
|
@media (max-width: 991.98px) {
|
|
.card-corporate .card-title a,
|
|
.card-corporate .card-body {
|
|
padding-left: 25px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.card-corporate .card-title a {
|
|
font-size: 18px;
|
|
}
|
|
}
|
|
|
|
/*
|
|
*
|
|
* Tooltop Custom
|
|
*/
|
|
.tooltip {
|
|
font-size: 1.125rem;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
/*
|
|
*
|
|
* Counter
|
|
*/
|
|
.counter {
|
|
font: 400 50px/1.5 "Abril Fatface", cursive;
|
|
opacity: .25;
|
|
}
|
|
|
|
.box-counter {
|
|
max-width: 210px;
|
|
text-align: left;
|
|
}
|
|
|
|
.box-counter__wrap {
|
|
display: flex;
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.box-counter__title {
|
|
position: relative;
|
|
font-weight: 700;
|
|
padding-left: 30px;
|
|
}
|
|
|
|
.box-counter__title:before {
|
|
position: absolute;
|
|
left: 0;
|
|
bottom: 0;
|
|
height: 70px;
|
|
border-left: 1px solid #e7e7e7;
|
|
transform: rotate(15deg);
|
|
transform-origin: left bottom;
|
|
content: "";
|
|
display: inline-block;
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.counter {
|
|
font-size: 80px;
|
|
}
|
|
}
|
|
|
|
.box-counter_var-2 .box-counter__title {
|
|
font-size: 16px;
|
|
color: #151515;
|
|
padding-left: 0;
|
|
}
|
|
|
|
.box-counter_var-2 .box-counter__title:before {
|
|
content: none;
|
|
}
|
|
|
|
.box-counter_var-2 .box-counter__wrap span {
|
|
font-size: 40px;
|
|
font-family: "Abril Fatface", cursive;
|
|
color: #ffad4d;
|
|
}
|
|
|
|
.box-counter_var-2 .counter {
|
|
line-height: .9;
|
|
}
|
|
|
|
/*
|
|
*
|
|
* Progress Bars
|
|
*/
|
|
* + .progress-bar-container {
|
|
margin-top: 35px;
|
|
}
|
|
|
|
.progress-linear {
|
|
position: relative;
|
|
text-align: left;
|
|
}
|
|
|
|
.progress-linear .progress-header {
|
|
position: absolute;
|
|
left: 25px;
|
|
right: 25px;
|
|
top: 0;
|
|
bottom: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
transform: translate3d(0, -10px, 0);
|
|
margin-bottom: -10px;
|
|
margin-left: -5px;
|
|
margin-right: -5px;
|
|
font: 400 18px/1 "Abril Fatface", cursive;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.progress-linear .progress-header > * {
|
|
margin-top: 10px;
|
|
padding-left: 5px;
|
|
padding-right: 5px;
|
|
}
|
|
|
|
.progress-linear .progress-linear-bar-wrap {
|
|
height: 44px;
|
|
background: inherit;
|
|
}
|
|
|
|
.progress-linear .progress-linear-bar {
|
|
position: relative;
|
|
width: 0;
|
|
height: inherit;
|
|
background: #ffad4d;
|
|
border-radius: 30px;
|
|
transition: .5s all ease-in-out;
|
|
}
|
|
|
|
.progress-linear .progress-linear-counter::after {
|
|
content: "%";
|
|
}
|
|
|
|
.progress-linear.progress-bg-var1 .progress-linear-bar {
|
|
background: #7c6cc0;
|
|
}
|
|
|
|
.progress-linear.progress-bg-var2 .progress-linear-bar {
|
|
background: #5f7ca8;
|
|
}
|
|
|
|
* + .progress-linear-bar-wrap {
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.progress-linear + .progress-linear {
|
|
margin-top: 15px;
|
|
}
|
|
|
|
@media (min-width: 992px) {
|
|
.progress-linear + .progress-linear {
|
|
margin-top: 25px;
|
|
}
|
|
}
|
|
|
|
/*
|
|
*
|
|
* Circle Progress Bars
|
|
*/
|
|
.progress-bar-circle {
|
|
display: inline-block;
|
|
position: relative;
|
|
text-align: center;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.progress-bar-circle canvas {
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.progress-bar-circle span {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 51%;
|
|
font-size: 36px;
|
|
line-height: 36px;
|
|
transform: translate(-50%, -50%);
|
|
color: #5b5b5b;
|
|
}
|
|
|
|
.progress-bar-circle span::after {
|
|
content: "%";
|
|
}
|
|
|
|
.progress-bar-circle-title {
|
|
font-size: 14px;
|
|
letter-spacing: .05em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
* + .progress-bar-circle-title {
|
|
margin-top: 12px;
|
|
}
|
|
|
|
/*
|
|
*
|
|
* Time Circles
|
|
*/
|
|
.time_circles {
|
|
position: relative;
|
|
width: 100%;
|
|
}
|
|
|
|
.time_circles > div {
|
|
position: absolute;
|
|
top: 0 !important;
|
|
bottom: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
margin-top: -10px;
|
|
text-align: center;
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
#DateCountdown {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.time_circles > div > h4 {
|
|
position: absolute;
|
|
left: 0;
|
|
top: calc(100% + 10px);
|
|
right: 0;
|
|
transform: translateY(-100%);
|
|
margin: 0;
|
|
padding: 0;
|
|
text-align: center;
|
|
font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
font-weight: 500;
|
|
font-size: 13px !important;
|
|
line-height: 1.2 !important;
|
|
color: #868e96;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.time_circles > div > h4 + * {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.time_circles > div > span {
|
|
display: block;
|
|
text-align: center;
|
|
letter-spacing: 0;
|
|
font-size: 24px !important;
|
|
font-weight: 400;
|
|
line-height: 1 !important;
|
|
color: #111111;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.time_circles > div > span {
|
|
font-size: 34px !important;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 992px) {
|
|
.time_circles > div > span {
|
|
font-size: 48px !important;
|
|
}
|
|
}
|
|
|
|
.context-dark .time_circles > div > span, .bg-gray-dark .time_circles > div > span, .bg-primary .time_circles > div > span {
|
|
color: #ffffff;
|
|
}
|
|
|
|
.countdown-wrap {
|
|
max-width: 730px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
padding-bottom: 20px;
|
|
}
|
|
|
|
* + .countdown-wrap {
|
|
margin-top: 35px;
|
|
}
|
|
|
|
.countdown-wrap + .button {
|
|
margin-top: 40px;
|
|
}
|
|
|
|
/*
|
|
* jQuery mousewheel plugin
|
|
*/
|
|
/*
|
|
------------------------------------------------------------------------------------------------------------------------
|
|
1. BASIC STYLE
|
|
------------------------------------------------------------------------------------------------------------------------
|
|
*/
|
|
.mCustomScrollbar {
|
|
-ms-touch-action: pinch-zoom;
|
|
touch-action: pinch-zoom;
|
|
/* direct pointer events to js */
|
|
}
|
|
|
|
.mCustomScrollbar.mCS_no_scrollbar, .mCustomScrollbar.mCS_touch_action {
|
|
-ms-touch-action: auto;
|
|
touch-action: auto;
|
|
}
|
|
|
|
.mCustomScrollBox {
|
|
/* contains plugin's markup */
|
|
position: relative;
|
|
overflow: hidden;
|
|
height: 100%;
|
|
max-width: 100%;
|
|
outline: none;
|
|
direction: ltr;
|
|
}
|
|
|
|
.mCSB_container {
|
|
/* contains the original content */
|
|
overflow: hidden;
|
|
width: auto;
|
|
height: auto;
|
|
}
|
|
|
|
/*
|
|
------------------------------------------------------------------------------------------------------------------------
|
|
2. VERTICAL SCROLLBAR
|
|
y-axis
|
|
------------------------------------------------------------------------------------------------------------------------
|
|
*/
|
|
.mCSB_inside > .mCSB_container {
|
|
margin-right: 30px;
|
|
}
|
|
|
|
.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
|
|
margin-right: 0;
|
|
}
|
|
|
|
/* non-visible scrollbar */
|
|
.mCS-dir-rtl-custom > .mCSB_inside > .mCSB_container {
|
|
/* RTL direction/left-side scrollbar */
|
|
margin-right: 0;
|
|
margin-left: 30px;
|
|
}
|
|
|
|
.mCS-dir-rtl-custom > .mCSB_inside > .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
|
|
margin-left: 0;
|
|
}
|
|
|
|
/* RTL direction/left-side scrollbar */
|
|
.mCSB_scrollTools {
|
|
/* contains scrollbar markup (draggable element, dragger rail, buttons etc.) */
|
|
position: absolute;
|
|
width: 16px;
|
|
height: auto;
|
|
left: auto;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
}
|
|
|
|
.mCSB_outside + .mCSB_scrollTools {
|
|
right: -26px;
|
|
}
|
|
|
|
/* scrollbar position: outside */
|
|
.mCS-dir-rtl-custom > .mCSB_inside > .mCSB_scrollTools,
|
|
.mCS-dir-rtl-custom > .mCSB_outside + .mCSB_scrollTools {
|
|
/* RTL direction/left-side scrollbar */
|
|
right: auto;
|
|
left: 0;
|
|
}
|
|
|
|
.mCS-dir-rtl-custom > .mCSB_outside + .mCSB_scrollTools {
|
|
left: -26px;
|
|
}
|
|
|
|
/* RTL direction/left-side scrollbar (scrollbar position: outside) */
|
|
.mCSB_scrollTools .mCSB_draggerContainer {
|
|
/* contains the draggable element and dragger rail markup */
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
height: auto;
|
|
}
|
|
|
|
.mCSB_scrollTools a + .mCSB_draggerContainer {
|
|
margin: 20px 0;
|
|
}
|
|
|
|
.mCSB_scrollTools .mCSB_draggerRail {
|
|
width: 16px;
|
|
height: 100%;
|
|
margin: 0 auto;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.mCSB_scrollTools .mCSB_dragger {
|
|
/* the draggable element */
|
|
cursor: pointer;
|
|
width: 100%;
|
|
height: 30px;
|
|
/* minimum dragger height */
|
|
z-index: 1;
|
|
}
|
|
|
|
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
|
|
/* the dragger element */
|
|
position: relative;
|
|
width: 16px;
|
|
height: 100%;
|
|
margin: 0 auto;
|
|
border-radius: 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
|
|
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
|
|
width: 12px;
|
|
/* auto-expanded scrollbar */
|
|
}
|
|
|
|
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
|
|
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
|
|
width: 8px;
|
|
/* auto-expanded scrollbar */
|
|
}
|
|
|
|
.mCSB_scrollTools .mCSB_buttonUp,
|
|
.mCSB_scrollTools .mCSB_buttonDown {
|
|
display: block;
|
|
position: absolute;
|
|
height: 20px;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
margin: 0 auto;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.mCSB_scrollTools .mCSB_buttonDown {
|
|
bottom: 0;
|
|
}
|
|
|
|
/*
|
|
------------------------------------------------------------------------------------------------------------------------
|
|
3. HORIZONTAL SCROLLBAR
|
|
x-axis
|
|
------------------------------------------------------------------------------------------------------------------------
|
|
*/
|
|
.mCSB_horizontal.mCSB_inside > .mCSB_container {
|
|
margin-right: 0;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.mCSB_horizontal.mCSB_outside > .mCSB_container {
|
|
min-height: 100%;
|
|
}
|
|
|
|
.mCSB_horizontal > .mCSB_container.mCS_no_scrollbar_x.mCS_x_hidden {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
/* non-visible scrollbar */
|
|
.mCSB_scrollTools.mCSB_scrollTools_horizontal {
|
|
width: auto;
|
|
height: 16px;
|
|
top: auto;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
}
|
|
|
|
.mCustomScrollBox + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
|
|
.mCustomScrollBox + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal {
|
|
bottom: -26px;
|
|
}
|
|
|
|
/* scrollbar position: outside */
|
|
.mCSB_scrollTools.mCSB_scrollTools_horizontal a + .mCSB_draggerContainer {
|
|
margin: 0 20px;
|
|
}
|
|
|
|
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail {
|
|
width: 100%;
|
|
height: 2px;
|
|
margin: 7px 0;
|
|
}
|
|
|
|
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger {
|
|
width: 30px;
|
|
/* minimum dragger width */
|
|
height: 100%;
|
|
left: 0;
|
|
}
|
|
|
|
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
|
|
width: 100%;
|
|
height: 4px;
|
|
margin: 6px auto;
|
|
}
|
|
|
|
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
|
|
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
|
|
height: 12px;
|
|
/* auto-expanded scrollbar */
|
|
margin: 2px auto;
|
|
}
|
|
|
|
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
|
|
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
|
|
height: 8px;
|
|
/* auto-expanded scrollbar */
|
|
margin: 4px 0;
|
|
}
|
|
|
|
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft,
|
|
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
|
|
display: block;
|
|
position: absolute;
|
|
width: 20px;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
margin: 0 auto;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft {
|
|
left: 0;
|
|
}
|
|
|
|
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
|
|
right: 0;
|
|
}
|
|
|
|
/*
|
|
------------------------------------------------------------------------------------------------------------------------
|
|
4. VERTICAL AND HORIZONTAL SCROLLBARS
|
|
yx-axis
|
|
------------------------------------------------------------------------------------------------------------------------
|
|
*/
|
|
.mCSB_container_wrapper {
|
|
position: absolute;
|
|
height: auto;
|
|
width: auto;
|
|
overflow: hidden;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
margin-right: 30px;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.mCSB_container_wrapper > .mCSB_container {
|
|
padding-right: 30px;
|
|
padding-bottom: 30px;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_vertical {
|
|
bottom: 20px;
|
|
}
|
|
|
|
.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
|
|
right: 20px;
|
|
}
|
|
|
|
/* non-visible horizontal scrollbar */
|
|
.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden + .mCSB_scrollTools.mCSB_scrollTools_vertical {
|
|
bottom: 0;
|
|
}
|
|
|
|
/* non-visible vertical scrollbar/RTL direction/left-side scrollbar */
|
|
.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal,
|
|
.mCS-dir-rtl-custom > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
|
|
right: 0;
|
|
}
|
|
|
|
/* RTL direction/left-side scrollbar */
|
|
.mCS-dir-rtl-custom > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
|
|
left: 20px;
|
|
}
|
|
|
|
/* non-visible scrollbar/RTL direction/left-side scrollbar */
|
|
.mCS-dir-rtl-custom > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal {
|
|
left: 0;
|
|
}
|
|
|
|
.mCS-dir-rtl-custom > .mCSB_inside > .mCSB_container_wrapper {
|
|
/* RTL direction/left-side scrollbar */
|
|
margin-right: 0;
|
|
margin-left: 30px;
|
|
}
|
|
|
|
.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden > .mCSB_container {
|
|
padding-right: 0;
|
|
}
|
|
|
|
.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden > .mCSB_container {
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden {
|
|
margin-right: 0;
|
|
/* non-visible scrollbar */
|
|
margin-left: 0;
|
|
}
|
|
|
|
/* non-visible horizontal scrollbar */
|
|
.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
/*
|
|
------------------------------------------------------------------------------------------------------------------------
|
|
5. TRANSITIONS
|
|
------------------------------------------------------------------------------------------------------------------------
|
|
*/
|
|
.mCSB_scrollTools,
|
|
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
|
|
.mCSB_scrollTools .mCSB_buttonUp,
|
|
.mCSB_scrollTools .mCSB_buttonDown,
|
|
.mCSB_scrollTools .mCSB_buttonLeft,
|
|
.mCSB_scrollTools .mCSB_buttonRight {
|
|
-webkit-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
|
|
-moz-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
|
|
-o-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
|
|
transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
|
|
}
|
|
|
|
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,
|
|
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail,
|
|
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,
|
|
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail {
|
|
-webkit-transition: width .2s ease-out .2s, height .2s ease-out .2s, margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out;
|
|
-moz-transition: width .2s ease-out .2s, height .2s ease-out .2s, margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out;
|
|
-o-transition: width .2s ease-out .2s, height .2s ease-out .2s, margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out;
|
|
transition: width .2s ease-out .2s, height .2s ease-out .2s, margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out;
|
|
}
|
|
|
|
/*
|
|
------------------------------------------------------------------------------------------------------------------------
|
|
6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS
|
|
------------------------------------------------------------------------------------------------------------------------
|
|
*/
|
|
/*
|
|
----------------------------------------
|
|
6.1 THEMES
|
|
----------------------------------------
|
|
*/
|
|
/* default theme ("light") */
|
|
.mCSB_scrollTools .mCSB_draggerRail {
|
|
background-color: transparent;
|
|
}
|
|
|
|
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
|
|
background-color: #f2f3f8;
|
|
}
|
|
|
|
.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
|
|
.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
|
|
.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
|
|
background-color: #d1d4e6;
|
|
}
|
|
|
|
.mCSB_scrollTools .mCSB_buttonUp,
|
|
.mCSB_scrollTools .mCSB_buttonDown,
|
|
.mCSB_scrollTools .mCSB_buttonLeft,
|
|
.mCSB_scrollTools .mCSB_buttonRight {
|
|
background-image: url(../images/mCSB_buttons.png);
|
|
/* css sprites */
|
|
background-repeat: no-repeat;
|
|
opacity: 0.4;
|
|
}
|
|
|
|
.mCSB_scrollTools .mCSB_buttonUp {
|
|
background-position: 0 0;
|
|
}
|
|
|
|
.mCSB_scrollTools .mCSB_buttonDown {
|
|
background-position: 0 -20px;
|
|
}
|
|
|
|
.mCSB_scrollTools .mCSB_buttonLeft {
|
|
background-position: 0 -40px;
|
|
}
|
|
|
|
.mCSB_scrollTools .mCSB_buttonRight {
|
|
background-position: 0 -56px;
|
|
}
|
|
|
|
.mCSB_scrollTools .mCSB_buttonUp:hover,
|
|
.mCSB_scrollTools .mCSB_buttonDown:hover,
|
|
.mCSB_scrollTools .mCSB_buttonLeft:hover,
|
|
.mCSB_scrollTools .mCSB_buttonRight:hover {
|
|
opacity: 0.75;
|
|
}
|
|
|
|
.mCSB_scrollTools .mCSB_buttonUp:active,
|
|
.mCSB_scrollTools .mCSB_buttonDown:active,
|
|
.mCSB_scrollTools .mCSB_buttonLeft:active,
|
|
.mCSB_scrollTools .mCSB_buttonRight:active {
|
|
opacity: 0.9;
|
|
}
|
|
|
|
/* theme: "dark" */
|
|
.mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
|
|
background-color: #000000;
|
|
background-color: rgba(0, 0, 0, 0.15);
|
|
}
|
|
|
|
.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
|
|
background-color: #000000;
|
|
background-color: rgba(0, 0, 0, 0.75);
|
|
}
|
|
|
|
.mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
|
|
background-color: rgba(0, 0, 0, 0.85);
|
|
}
|
|
|
|
.mCS-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
|
|
.mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
|
|
background-color: rgba(0, 0, 0, 0.9);
|
|
}
|
|
|
|
.mCS-dark.mCSB_scrollTools .mCSB_buttonUp {
|
|
background-position: -80px 0;
|
|
}
|
|
|
|
.mCS-dark.mCSB_scrollTools .mCSB_buttonDown {
|
|
background-position: -80px -20px;
|
|
}
|
|
|
|
.mCS-dark.mCSB_scrollTools .mCSB_buttonLeft {
|
|
background-position: -80px -40px;
|
|
}
|
|
|
|
.mCS-dark.mCSB_scrollTools .mCSB_buttonRight {
|
|
background-position: -80px -56px;
|
|
}
|
|
|
|
/*
|
|
*
|
|
* Owl Carousel
|
|
*/
|
|
.owl-carousel .animated {
|
|
animation-duration: 1000ms;
|
|
animation-fill-mode: both;
|
|
}
|
|
|
|
.owl-carousel .owl-animated-in {
|
|
z-index: 0;
|
|
}
|
|
|
|
.owl-carousel .owl-animated-out {
|
|
z-index: 1;
|
|
}
|
|
|
|
.owl-carousel .fadeOut {
|
|
animation-name: fadeOut;
|
|
}
|
|
|
|
@keyframes fadeOut {
|
|
0% {
|
|
opacity: 1;
|
|
}
|
|
100% {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Owl Carousel - Auto Height Plugin
|
|
*/
|
|
.owl-height {
|
|
transition: height 500ms ease-in-out;
|
|
}
|
|
|
|
/*
|
|
* Core Owl Carousel CSS File
|
|
*/
|
|
.owl-carousel {
|
|
display: none;
|
|
width: 100%;
|
|
-webkit-tap-highlight-color: transparent;
|
|
/* position relative and z-index fix webkit rendering fonts issue */
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.owl-carousel .owl-stage {
|
|
position: relative;
|
|
-ms-touch-action: pan-Y;
|
|
}
|
|
|
|
.owl-carousel .owl-stage:after {
|
|
content: ".";
|
|
display: block;
|
|
clear: both;
|
|
visibility: hidden;
|
|
line-height: 0;
|
|
height: 0;
|
|
}
|
|
|
|
.owl-carousel .owl-stage-outer {
|
|
position: relative;
|
|
overflow: hidden;
|
|
/* fix for flashing background */
|
|
-webkit-transform: translate3d(0px, 0px, 0px);
|
|
}
|
|
|
|
.owl-carousel .owl-controls .owl-nav .owl-prev,
|
|
.owl-carousel .owl-controls .owl-nav .owl-next,
|
|
.owl-carousel .owl-controls .owl-dot {
|
|
cursor: pointer;
|
|
user-select: none;
|
|
}
|
|
|
|
.owl-carousel.owl-loaded {
|
|
display: block;
|
|
}
|
|
|
|
.owl-carousel.owl-loading {
|
|
opacity: 0;
|
|
display: block;
|
|
}
|
|
|
|
.owl-carousel.owl-hidden {
|
|
opacity: 0;
|
|
}
|
|
|
|
.owl-carousel .owl-refresh .owl-item {
|
|
display: none;
|
|
}
|
|
|
|
.owl-carousel .owl-item {
|
|
position: relative;
|
|
min-height: 1px;
|
|
float: left;
|
|
-webkit-tap-highlight-color: transparent;
|
|
-webkit-touch-callout: none;
|
|
}
|
|
|
|
.owl-carousel .owl-grab {
|
|
cursor: move;
|
|
cursor: -webkit-grab;
|
|
cursor: grab;
|
|
}
|
|
|
|
.owl-carousel.owl-rtl {
|
|
direction: rtl;
|
|
}
|
|
|
|
.owl-carousel.owl-rtl .owl-item {
|
|
float: right;
|
|
}
|
|
|
|
/* No Js */
|
|
.no-js .owl-carousel {
|
|
display: block;
|
|
}
|
|
|
|
/*
|
|
* Owl Carousel - Lazy Load Plugin
|
|
*/
|
|
.owl-carousel .owl-item .owl-lazy {
|
|
opacity: 0;
|
|
transition: opacity 400ms ease;
|
|
}
|
|
|
|
/*
|
|
* Owl Carousel - Video Plugin
|
|
*/
|
|
.owl-carousel .owl-video-wrapper {
|
|
position: relative;
|
|
height: 100%;
|
|
background: #000000;
|
|
}
|
|
|
|
.owl-carousel .owl-video-play-icon {
|
|
position: absolute;
|
|
height: 80px;
|
|
width: 80px;
|
|
left: 50%;
|
|
top: 50%;
|
|
margin-left: -40px;
|
|
margin-top: -40px;
|
|
font: 400 40px/80px 'FontAwesome';
|
|
cursor: pointer;
|
|
z-index: 1;
|
|
transition: scale 100ms ease;
|
|
}
|
|
|
|
.owl-carousel .owl-video-play-icon:before {
|
|
content: '\f144';
|
|
}
|
|
|
|
.owl-carousel .owl-video-play-icon:hover {
|
|
transform: scale(1.3);
|
|
}
|
|
|
|
.owl-carousel .owl-video-playing .owl-video-tn,
|
|
.owl-carousel .owl-video-playing .owl-video-play-icon {
|
|
display: none;
|
|
}
|
|
|
|
.owl-carousel .owl-video-tn {
|
|
opacity: 0;
|
|
height: 100%;
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
background-size: contain;
|
|
transition: opacity 400ms ease;
|
|
}
|
|
|
|
.owl-carousel .owl-video-frame {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
/*
|
|
* Owl Navigation
|
|
*/
|
|
.owl-nav.disabled {
|
|
display: none !important;
|
|
}
|
|
|
|
.owl-prev,
|
|
.owl-next {
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
font: 400 46px/50px 'FontAwesome';
|
|
color: #d7d7d7;
|
|
background: transparent;
|
|
border: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.owl-prev:hover,
|
|
.owl-next:hover {
|
|
color: #ffad4d;
|
|
}
|
|
|
|
.owl-prev {
|
|
left: 0;
|
|
}
|
|
|
|
.owl-prev::before {
|
|
content: '\f104';
|
|
}
|
|
|
|
.owl-next {
|
|
right: 0;
|
|
}
|
|
|
|
.owl-next::before {
|
|
content: '\f105';
|
|
}
|
|
|
|
/*
|
|
* Owl Pagination
|
|
*/
|
|
.owl-dots {
|
|
text-align: center;
|
|
margin-top: 25px;
|
|
}
|
|
|
|
.owl-dots.disabled {
|
|
display: none !important;
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.owl-dots {
|
|
margin-top: 38px;
|
|
}
|
|
}
|
|
|
|
.owl-dot {
|
|
position: relative;
|
|
display: inline-block;
|
|
width: 27px;
|
|
height: 6px;
|
|
border-radius: 10px;
|
|
margin-left: 7px;
|
|
margin-right: 7px;
|
|
text-align: center;
|
|
outline: none;
|
|
cursor: pointer;
|
|
background-color: rgba(255, 173, 77, 0.3);
|
|
border: none;
|
|
transition: .2s;
|
|
}
|
|
|
|
.owl-dot:only-child {
|
|
display: none;
|
|
}
|
|
|
|
.context-dark .owl-dot {
|
|
background-color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
.owl-dot:hover, .owl-dot:focus {
|
|
background-color: #ffad4d;
|
|
}
|
|
|
|
.owl-dot.active {
|
|
background-color: #ffad4d;
|
|
}
|
|
|
|
.owl-carousel.owl-carousel-light-dots .owl-dot {
|
|
border-color: #ffffff;
|
|
}
|
|
|
|
.owl-carousel.owl-carousel-light-dots .owl-dot:hover, .owl-carousel.owl-carousel-light-dots .owl-dot:focus {
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
.owl-carousel.owl-carousel-light-dots .owl-dot.active {
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
.carousel-team .owl-stage-outer {
|
|
padding-top: 15px;
|
|
}
|
|
|
|
* + .carousel-team {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
* + .carousel-team {
|
|
margin-top: 40px;
|
|
}
|
|
}
|
|
|
|
.carousel-project {
|
|
max-width: 1200px;
|
|
margin: 35px auto;
|
|
}
|
|
|
|
.carousel-project .owl-stage-outer {
|
|
padding-bottom: 40px;
|
|
overflow: visible;
|
|
}
|
|
|
|
* + .carousel-project {
|
|
margin-top: 35px;
|
|
}
|
|
|
|
.carousel-project .owl-item {
|
|
opacity: .4;
|
|
pointer-events: none;
|
|
transition: .33s ease;
|
|
}
|
|
|
|
.carousel-project .owl-item.center {
|
|
opacity: 1;
|
|
pointer-events: auto;
|
|
}
|
|
|
|
.carousel-project .owl-nav {
|
|
display: none;
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.carousel-project .owl-dots {
|
|
margin-top: 30px;
|
|
}
|
|
.carousel-project .owl-nav {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -300%);
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
width: 632px;
|
|
margin: 0 auto;
|
|
pointer-events: none;
|
|
}
|
|
.carousel-project .owl-nav .owl-next,
|
|
.carousel-project .owl-nav .owl-prev {
|
|
position: relative;
|
|
pointer-events: auto;
|
|
font: 400 25px/1 "Abril Fatface", cursive;
|
|
}
|
|
.carousel-project .owl-nav .owl-next:before,
|
|
.carousel-project .owl-nav .owl-prev:before {
|
|
content: none;
|
|
}
|
|
.carousel-project .owl-nav .owl-next {
|
|
transform: translateX(180%);
|
|
}
|
|
.carousel-project .owl-nav .owl-prev {
|
|
transform: translateX(-180%);
|
|
}
|
|
* + .carousel-project {
|
|
margin-top: 55px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1600px) {
|
|
.carousel-project {
|
|
max-width: 1600px;
|
|
}
|
|
.carousel-project .owl-nav .owl-next {
|
|
transform: translateX(300%);
|
|
}
|
|
.carousel-project .owl-nav .owl-prev {
|
|
transform: translateX(-300%);
|
|
}
|
|
}
|
|
|
|
* + .carousel-testimonials {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
* + .carousel-testimonials {
|
|
margin-top: 45px;
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Lightgallery styles
|
|
*/
|
|
.lg-sub-html, .lg-toolbar {
|
|
background-color: rgba(0, 0, 0, 0.45);
|
|
}
|
|
|
|
@font-face {
|
|
font-family: lg;
|
|
src: url(../fonts/lg.eot?n1z373);
|
|
src: url(../fonts/lg.eot?#iefixn1z373) format("embedded-opentype"), url(../fonts/lg.woff?n1z373) format("woff"), url(../fonts/lg.ttf?n1z373) format("truetype"), url(../fonts/lg.svg?n1z373#lg) format("svg");
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
}
|
|
|
|
.lg-icon {
|
|
font-family: lg;
|
|
speak: none;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-variant: normal;
|
|
text-transform: none;
|
|
line-height: 1;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
.lg-actions .lg-next, .lg-actions .lg-prev {
|
|
background-color: rgba(0, 0, 0, 0.45);
|
|
border-radius: 2px;
|
|
color: #999;
|
|
cursor: pointer;
|
|
display: block;
|
|
font-size: 22px;
|
|
margin-top: -10px;
|
|
padding: 8px 10px 9px;
|
|
position: absolute;
|
|
top: 50%;
|
|
z-index: 1080;
|
|
border: none;
|
|
outline: 0;
|
|
}
|
|
|
|
.lg-actions .lg-next.disabled, .lg-actions .lg-prev.disabled {
|
|
pointer-events: none;
|
|
opacity: .5;
|
|
}
|
|
|
|
.lg-actions .lg-next:hover, .lg-actions .lg-prev:hover {
|
|
color: #FFF;
|
|
}
|
|
|
|
.lg-actions .lg-next {
|
|
right: 20px;
|
|
}
|
|
|
|
.lg-actions .lg-next:before {
|
|
content: "\e095";
|
|
}
|
|
|
|
.lg-actions .lg-prev {
|
|
left: 20px;
|
|
}
|
|
|
|
.lg-actions .lg-prev:after {
|
|
content: "\e094";
|
|
}
|
|
|
|
@-webkit-keyframes lg-right-end {
|
|
0%, 100% {
|
|
left: 0;
|
|
}
|
|
50% {
|
|
left: -30px;
|
|
}
|
|
}
|
|
|
|
@-moz-keyframes lg-right-end {
|
|
0%, 100% {
|
|
left: 0;
|
|
}
|
|
50% {
|
|
left: -30px;
|
|
}
|
|
}
|
|
|
|
@-ms-keyframes lg-right-end {
|
|
0%, 100% {
|
|
left: 0;
|
|
}
|
|
50% {
|
|
left: -30px;
|
|
}
|
|
}
|
|
|
|
@keyframes lg-right-end {
|
|
0%, 100% {
|
|
left: 0;
|
|
}
|
|
50% {
|
|
left: -30px;
|
|
}
|
|
}
|
|
|
|
@-webkit-keyframes lg-left-end {
|
|
0%, 100% {
|
|
left: 0;
|
|
}
|
|
50% {
|
|
left: 30px;
|
|
}
|
|
}
|
|
|
|
@-moz-keyframes lg-left-end {
|
|
0%, 100% {
|
|
left: 0;
|
|
}
|
|
50% {
|
|
left: 30px;
|
|
}
|
|
}
|
|
|
|
@-ms-keyframes lg-left-end {
|
|
0%, 100% {
|
|
left: 0;
|
|
}
|
|
50% {
|
|
left: 30px;
|
|
}
|
|
}
|
|
|
|
@keyframes lg-left-end {
|
|
0%, 100% {
|
|
left: 0;
|
|
}
|
|
50% {
|
|
left: 30px;
|
|
}
|
|
}
|
|
|
|
.lg-outer.lg-right-end .lg-object {
|
|
-webkit-animation: lg-right-end .3s;
|
|
-o-animation: lg-right-end .3s;
|
|
animation: lg-right-end .3s;
|
|
position: relative;
|
|
}
|
|
|
|
.lg-outer.lg-left-end .lg-object {
|
|
-webkit-animation: lg-left-end .3s;
|
|
-o-animation: lg-left-end .3s;
|
|
animation: lg-left-end .3s;
|
|
position: relative;
|
|
}
|
|
|
|
.lg-toolbar {
|
|
z-index: 1082;
|
|
left: 0;
|
|
position: absolute;
|
|
top: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.lg-toolbar .lg-icon {
|
|
color: #999;
|
|
cursor: pointer;
|
|
float: right;
|
|
font-size: 24px;
|
|
height: 47px;
|
|
line-height: 27px;
|
|
padding: 10px 0;
|
|
text-align: center;
|
|
width: 42px;
|
|
text-decoration: none !important;
|
|
outline: 0;
|
|
-webkit-transition: color .2s linear;
|
|
-o-transition: color .2s linear;
|
|
transition: color .2s linear;
|
|
}
|
|
|
|
.lg-toolbar .lg-icon:hover {
|
|
color: #FFF;
|
|
}
|
|
|
|
@media (min-width: 678px) {
|
|
.lg-toolbar .lg-icon {
|
|
width: 50px;
|
|
}
|
|
}
|
|
|
|
.lg-toolbar .lg-close:after {
|
|
content: "\e070";
|
|
}
|
|
|
|
.lg-toolbar .lg-download:after {
|
|
content: "\e0f2";
|
|
}
|
|
|
|
.lg-sub-html {
|
|
bottom: 0;
|
|
color: #EEE;
|
|
font-size: 16px;
|
|
left: 0;
|
|
padding: 10px 40px;
|
|
position: fixed;
|
|
right: 0;
|
|
text-align: center;
|
|
z-index: 1080;
|
|
}
|
|
|
|
.lg-sub-html h4 {
|
|
margin: 0;
|
|
font-size: 13px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.lg-sub-html p {
|
|
font-size: 12px;
|
|
margin: 5px 0 0;
|
|
}
|
|
|
|
#lg-counter {
|
|
color: #999;
|
|
display: inline-block;
|
|
font-size: 16px;
|
|
padding-left: 20px;
|
|
padding-top: 12px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.lg-next, .lg-prev, .lg-toolbar {
|
|
opacity: 1;
|
|
-webkit-transition: -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
|
|
-moz-transition: -moz-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
|
|
-o-transition: -o-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
|
|
transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
|
|
}
|
|
|
|
.lg-hide-items .lg-prev {
|
|
opacity: 0;
|
|
-webkit-transform: translate3d(-10px, 0, 0);
|
|
transform: translate3d(-10px, 0, 0);
|
|
}
|
|
|
|
.lg-hide-items .lg-next {
|
|
opacity: 0;
|
|
-webkit-transform: translate3d(10px, 0, 0);
|
|
transform: translate3d(10px, 0, 0);
|
|
}
|
|
|
|
.lg-hide-items .lg-toolbar {
|
|
opacity: 0;
|
|
-webkit-transform: translate3d(0, -10px, 0);
|
|
transform: translate3d(0, -10px, 0);
|
|
}
|
|
|
|
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object {
|
|
-webkit-transform: scale3d(0.5, 0.5, 0.5);
|
|
transform: scale3d(0.5, 0.5, 0.5);
|
|
opacity: 0;
|
|
-webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
|
|
-moz-transition: -moz-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
|
|
-o-transition: -o-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
|
|
transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
|
|
-webkit-transform-origin: 50% 50%;
|
|
-moz-transform-origin: 50% 50%;
|
|
-ms-transform-origin: 50% 50%;
|
|
transform-origin: 50% 50%;
|
|
}
|
|
|
|
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
|
|
-webkit-transform: scale3d(1, 1, 1);
|
|
transform: scale3d(1, 1, 1);
|
|
opacity: 1;
|
|
}
|
|
|
|
.lg-outer .lg-thumb-outer {
|
|
background-color: #0D0A0A;
|
|
bottom: 0;
|
|
position: absolute;
|
|
width: 100%;
|
|
z-index: 1080;
|
|
max-height: 350px;
|
|
-webkit-transform: translate3d(0, 100%, 0);
|
|
transform: translate3d(0, 100%, 0);
|
|
-webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
|
|
-moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
|
|
-o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
|
|
transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
|
|
}
|
|
|
|
.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
|
|
cursor: -webkit-grab;
|
|
cursor: -moz-grab;
|
|
cursor: -o-grab;
|
|
cursor: -ms-grab;
|
|
cursor: grab;
|
|
}
|
|
|
|
.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
|
|
cursor: move;
|
|
cursor: -webkit-grabbing;
|
|
cursor: -moz-grabbing;
|
|
cursor: -o-grabbing;
|
|
cursor: -ms-grabbing;
|
|
cursor: grabbing;
|
|
}
|
|
|
|
.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
|
|
-webkit-transition-duration: 0s !important;
|
|
transition-duration: 0s !important;
|
|
}
|
|
|
|
.lg-outer.lg-thumb-open .lg-thumb-outer {
|
|
-webkit-transform: translate3d(0, 0, 0);
|
|
transform: translate3d(0, 0, 0);
|
|
}
|
|
|
|
.lg-outer .lg-thumb {
|
|
padding: 10px 0;
|
|
height: 100%;
|
|
margin: auto;
|
|
margin-bottom: -5px;
|
|
}
|
|
|
|
.lg-outer .lg-thumb-item {
|
|
cursor: pointer;
|
|
float: left;
|
|
overflow: hidden;
|
|
height: 100%;
|
|
border: 2px solid #FFF;
|
|
border-radius: 4px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
@media (min-width: 1025px) {
|
|
.lg-outer .lg-thumb-item {
|
|
-webkit-transition: border-color .25s ease;
|
|
-o-transition: border-color .25s ease;
|
|
transition: border-color .25s ease;
|
|
}
|
|
}
|
|
|
|
/* primary */
|
|
.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
|
|
border-color: #ffad4d;
|
|
}
|
|
|
|
.lg-outer .lg-thumb-item img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.lg-outer.lg-has-thumb .lg-item {
|
|
padding-bottom: 120px;
|
|
}
|
|
|
|
.lg-outer.lg-can-toggle .lg-item {
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
.lg-outer.lg-pull-caption-up .lg-sub-html {
|
|
-webkit-transition: bottom .25s ease;
|
|
-o-transition: bottom .25s ease;
|
|
transition: bottom .25s ease;
|
|
}
|
|
|
|
.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
|
|
bottom: 100px;
|
|
}
|
|
|
|
.lg-outer .lg-toogle-thumb {
|
|
background-color: #0D0A0A;
|
|
border-radius: 2px 2px 0 0;
|
|
color: #999;
|
|
cursor: pointer;
|
|
font-size: 24px;
|
|
height: 39px;
|
|
line-height: 27px;
|
|
padding: 5px 0;
|
|
position: absolute;
|
|
right: 20px;
|
|
text-align: center;
|
|
top: -39px;
|
|
width: 50px;
|
|
}
|
|
|
|
.lg-outer .lg-toogle-thumb:hover, .lg-outer.lg-dropdown-active #lg-share {
|
|
color: #FFF;
|
|
}
|
|
|
|
.lg-outer .lg-toogle-thumb:after {
|
|
content: "\e1ff";
|
|
}
|
|
|
|
.lg-outer .lg-video-cont {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
max-width: 1140px;
|
|
max-height: 100%;
|
|
width: 100%;
|
|
padding: 0 5px;
|
|
}
|
|
|
|
.lg-outer .lg-video {
|
|
width: 100%;
|
|
height: 0;
|
|
padding-bottom: 56.25%;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
.lg-outer .lg-video .lg-object {
|
|
display: inline-block;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100% !important;
|
|
height: 100% !important;
|
|
}
|
|
|
|
.lg-outer .lg-video .lg-video-play {
|
|
width: 84px;
|
|
height: 59px;
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 50%;
|
|
margin-left: -42px;
|
|
margin-top: -30px;
|
|
z-index: 1080;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.lg-outer .lg-has-iframe .lg-video {
|
|
-webkit-overflow-scrolling: touch;
|
|
overflow: auto;
|
|
}
|
|
|
|
.lg-outer .lg-has-vimeo .lg-video-play {
|
|
background: url(../images/vimeo-play.png) no-repeat;
|
|
}
|
|
|
|
.lg-outer .lg-has-vimeo:hover .lg-video-play {
|
|
background: url(../images/vimeo-play.png) 0 -58px no-repeat;
|
|
}
|
|
|
|
.lg-outer .lg-has-html5 .lg-video-play {
|
|
background: url(../images/video-play.png) no-repeat;
|
|
height: 64px;
|
|
margin-left: -32px;
|
|
margin-top: -32px;
|
|
width: 64px;
|
|
opacity: .8;
|
|
}
|
|
|
|
.lg-outer .lg-has-html5:hover .lg-video-play {
|
|
opacity: 1;
|
|
}
|
|
|
|
.lg-outer .lg-has-youtube .lg-video-play {
|
|
background: url(../images/youtube-play.png) no-repeat;
|
|
}
|
|
|
|
.lg-outer .lg-has-youtube:hover .lg-video-play {
|
|
background: url(../images/youtube-play.png) 0 -60px no-repeat;
|
|
}
|
|
|
|
.lg-outer .lg-video-object {
|
|
width: 100% !important;
|
|
height: 100% !important;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
|
|
.lg-outer .lg-has-video .lg-video-object {
|
|
visibility: hidden;
|
|
}
|
|
|
|
.lg-outer .lg-has-video.lg-video-playing .lg-object, .lg-outer .lg-has-video.lg-video-playing .lg-video-play {
|
|
display: none;
|
|
}
|
|
|
|
.lg-outer .lg-has-video.lg-video-playing .lg-video-object {
|
|
visibility: visible;
|
|
}
|
|
|
|
.lg-progress-bar {
|
|
background-color: #333;
|
|
height: 5px;
|
|
left: 0;
|
|
position: absolute;
|
|
top: 0;
|
|
width: 100%;
|
|
z-index: 1083;
|
|
opacity: 0;
|
|
-webkit-transition: opacity 80ms ease 0s;
|
|
-moz-transition: opacity 80ms ease 0s;
|
|
-o-transition: opacity 80ms ease 0s;
|
|
transition: opacity 80ms ease 0s;
|
|
}
|
|
|
|
/* primary */
|
|
.lg-progress-bar .lg-progress {
|
|
background-color: #ffad4d;
|
|
height: 5px;
|
|
width: 0;
|
|
}
|
|
|
|
.lg-progress-bar.lg-start .lg-progress {
|
|
width: 100%;
|
|
}
|
|
|
|
.lg-show-autoplay .lg-progress-bar {
|
|
opacity: 1;
|
|
}
|
|
|
|
.lg-autoplay-button:after {
|
|
content: "\e01d";
|
|
}
|
|
|
|
.lg-show-autoplay .lg-autoplay-button:after {
|
|
content: "\e01a";
|
|
}
|
|
|
|
.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image, .lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
|
|
-webkit-transition-duration: 0s;
|
|
transition-duration: 0s;
|
|
}
|
|
|
|
.lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
|
|
-webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
|
|
-moz-transition: -moz-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
|
|
-o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
|
|
transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
|
|
}
|
|
|
|
.lg-outer.lg-use-left-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
|
|
-webkit-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
|
|
-moz-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
|
|
-o-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
|
|
transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
|
|
}
|
|
|
|
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
|
|
-webkit-transform: translate3d(0, 0, 0);
|
|
transform: translate3d(0, 0, 0);
|
|
-webkit-backface-visibility: hidden;
|
|
-moz-backface-visibility: hidden;
|
|
backface-visibility: hidden;
|
|
}
|
|
|
|
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
|
|
-webkit-transform: scale3d(1, 1, 1);
|
|
transform: scale3d(1, 1, 1);
|
|
-webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
|
|
-moz-transition: -moz-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
|
|
-o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
|
|
transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
|
|
-webkit-transform-origin: 0 0;
|
|
-moz-transform-origin: 0 0;
|
|
-ms-transform-origin: 0 0;
|
|
transform-origin: 0 0;
|
|
-webkit-backface-visibility: hidden;
|
|
-moz-backface-visibility: hidden;
|
|
backface-visibility: hidden;
|
|
}
|
|
|
|
#lg-zoom-in:after {
|
|
content: "\e311";
|
|
}
|
|
|
|
#lg-actual-size {
|
|
font-size: 20px;
|
|
}
|
|
|
|
#lg-actual-size:after {
|
|
content: "\e033";
|
|
}
|
|
|
|
#lg-zoom-out {
|
|
opacity: .5;
|
|
pointer-events: none;
|
|
}
|
|
|
|
@media (max-width: 479px) {
|
|
#lg-zoom-in,
|
|
#lg-zoom-out {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
#lg-zoom-out:after {
|
|
content: "\e312";
|
|
}
|
|
|
|
.lg-zoomed #lg-zoom-out {
|
|
opacity: 1;
|
|
pointer-events: auto;
|
|
}
|
|
|
|
.lg-outer .lg-pager-outer {
|
|
bottom: 60px;
|
|
left: 0;
|
|
position: absolute;
|
|
right: 0;
|
|
text-align: center;
|
|
z-index: 1080;
|
|
height: 10px;
|
|
}
|
|
|
|
.lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
|
|
overflow: visible;
|
|
}
|
|
|
|
.lg-outer .lg-pager-cont {
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
overflow: hidden;
|
|
position: relative;
|
|
vertical-align: top;
|
|
margin: 0 5px;
|
|
}
|
|
|
|
.lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
|
|
opacity: 1;
|
|
-webkit-transform: translate3d(0, 0, 0);
|
|
transform: translate3d(0, 0, 0);
|
|
}
|
|
|
|
.lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
|
|
box-shadow: 0 0 0 2px #fff inset;
|
|
}
|
|
|
|
.lg-outer .lg-pager-thumb-cont {
|
|
background-color: #fff;
|
|
color: #FFF;
|
|
bottom: 100%;
|
|
height: 83px;
|
|
left: 0;
|
|
margin-bottom: 20px;
|
|
margin-left: -60px;
|
|
opacity: 0;
|
|
padding: 5px;
|
|
position: absolute;
|
|
width: 120px;
|
|
border-radius: 3px;
|
|
-webkit-transition: opacity .15s ease 0s, -webkit-transform .15s ease 0s;
|
|
-moz-transition: opacity .15s ease 0s, -moz-transform .15s ease 0s;
|
|
-o-transition: opacity .15s ease 0s, -o-transform .15s ease 0s;
|
|
transition: opacity .15s ease 0s, transform .15s ease 0s;
|
|
-webkit-transform: translate3d(0, 5px, 0);
|
|
transform: translate3d(0, 5px, 0);
|
|
}
|
|
|
|
.lg-outer .lg-pager-thumb-cont img {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.lg-outer .lg-pager {
|
|
background-color: rgba(255, 255, 255, 0.5);
|
|
border-radius: 50%;
|
|
box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
|
|
display: block;
|
|
height: 12px;
|
|
-webkit-transition: box-shadow .3s ease 0s;
|
|
-o-transition: box-shadow .3s ease 0s;
|
|
transition: box-shadow .3s ease 0s;
|
|
width: 12px;
|
|
}
|
|
|
|
.lg-outer .lg-pager:focus, .lg-outer .lg-pager:hover {
|
|
box-shadow: 0 0 0 8px #fff inset;
|
|
}
|
|
|
|
.lg-outer .lg-caret {
|
|
border-left: 10px solid transparent;
|
|
border-right: 10px solid transparent;
|
|
border-top: 10px dashed;
|
|
bottom: -10px;
|
|
display: inline-block;
|
|
height: 0;
|
|
left: 50%;
|
|
margin-left: -5px;
|
|
position: absolute;
|
|
vertical-align: middle;
|
|
width: 0;
|
|
}
|
|
|
|
.lg-fullscreen:after {
|
|
content: "\e20c";
|
|
}
|
|
|
|
.lg-fullscreen-on .lg-fullscreen:after {
|
|
content: "\e20d";
|
|
}
|
|
|
|
.lg-outer #lg-dropdown-overlay {
|
|
background-color: rgba(0, 0, 0, 0.25);
|
|
bottom: 0;
|
|
cursor: default;
|
|
left: 0;
|
|
position: fixed;
|
|
right: 0;
|
|
top: 0;
|
|
z-index: 1081;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
-webkit-transition: visibility 0s linear .18s, opacity .18s linear 0s;
|
|
-o-transition: visibility 0s linear .18s, opacity .18s linear 0s;
|
|
transition: visibility 0s linear .18s, opacity .18s linear 0s;
|
|
}
|
|
|
|
.lg-outer.lg-dropdown-active #lg-dropdown-overlay, .lg-outer.lg-dropdown-active .lg-dropdown {
|
|
-webkit-transition-delay: 0s;
|
|
transition-delay: 0s;
|
|
-moz-transform: translate3d(0, 0, 0);
|
|
-o-transform: translate3d(0, 0, 0);
|
|
-ms-transform: translate3d(0, 0, 0);
|
|
-webkit-transform: translate3d(0, 0, 0);
|
|
transform: translate3d(0, 0, 0);
|
|
opacity: 1;
|
|
visibility: visible;
|
|
}
|
|
|
|
.lg-outer .lg-dropdown {
|
|
background-color: #fff;
|
|
border-radius: 2px;
|
|
font-size: 14px;
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 10px 0;
|
|
position: absolute;
|
|
right: 0;
|
|
text-align: left;
|
|
top: 50px;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
-moz-transform: translate3d(0, 5px, 0);
|
|
-o-transform: translate3d(0, 5px, 0);
|
|
-ms-transform: translate3d(0, 5px, 0);
|
|
-webkit-transform: translate3d(0, 5px, 0);
|
|
transform: translate3d(0, 5px, 0);
|
|
-webkit-transition: -webkit-transform .18s linear 0s, visibility 0s linear .5s, opacity .18s linear 0s;
|
|
-moz-transition: -moz-transform .18s linear 0s, visibility 0s linear .5s, opacity .18s linear 0s;
|
|
-o-transition: -o-transform .18s linear 0s, visibility 0s linear .5s, opacity .18s linear 0s;
|
|
transition: transform .18s linear 0s, visibility 0s linear .5s, opacity .18s linear 0s;
|
|
}
|
|
|
|
.lg-outer .lg-dropdown:after {
|
|
content: "";
|
|
display: block;
|
|
height: 0;
|
|
width: 0;
|
|
position: absolute;
|
|
border: 8px solid transparent;
|
|
border-bottom-color: #FFF;
|
|
right: 16px;
|
|
top: -16px;
|
|
}
|
|
|
|
.lg-outer .lg-dropdown > li:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.lg-outer .lg-dropdown > li:hover .lg-icon, .lg-outer .lg-dropdown > li:hover a {
|
|
color: #333;
|
|
}
|
|
|
|
.lg-outer .lg-dropdown a {
|
|
color: #333;
|
|
display: block;
|
|
white-space: pre;
|
|
padding: 4px 12px;
|
|
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.lg-outer .lg-dropdown a:hover {
|
|
background-color: rgba(0, 0, 0, 0.07);
|
|
}
|
|
|
|
.lg-outer .lg-dropdown .lg-dropdown-text {
|
|
display: inline-block;
|
|
line-height: 1;
|
|
margin-top: -3px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.lg-outer .lg-dropdown .lg-icon {
|
|
color: #333;
|
|
display: inline-block;
|
|
float: none;
|
|
font-size: 20px;
|
|
height: auto;
|
|
line-height: 1;
|
|
margin-right: 8px;
|
|
padding: 0;
|
|
vertical-align: middle;
|
|
width: auto;
|
|
}
|
|
|
|
.lg-outer, .lg-outer .lg, .lg-outer .lg-inner {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.lg-outer #lg-share {
|
|
position: relative;
|
|
}
|
|
|
|
.lg-outer #lg-share:after {
|
|
content: "\e80d";
|
|
}
|
|
|
|
.lg-outer #lg-share-facebook .lg-icon {
|
|
color: #3b5998;
|
|
}
|
|
|
|
.lg-outer #lg-share-facebook .lg-icon:after {
|
|
content: "\e901";
|
|
}
|
|
|
|
.lg-outer #lg-share-twitter .lg-icon {
|
|
color: #00aced;
|
|
}
|
|
|
|
.lg-outer #lg-share-twitter .lg-icon:after {
|
|
content: "\e904";
|
|
}
|
|
|
|
.lg-outer #lg-share-googleplus .lg-icon {
|
|
color: #dd4b39;
|
|
}
|
|
|
|
.lg-outer #lg-share-googleplus .lg-icon:after {
|
|
content: "\e902";
|
|
}
|
|
|
|
.lg-outer #lg-share-pinterest .lg-icon {
|
|
color: #cb2027;
|
|
}
|
|
|
|
.lg-outer #lg-share-pinterest .lg-icon:after {
|
|
content: "\e903";
|
|
}
|
|
|
|
.lg-group:after {
|
|
content: "";
|
|
display: table;
|
|
clear: both;
|
|
}
|
|
|
|
.lg-outer {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 1050;
|
|
text-align: left;
|
|
opacity: 0;
|
|
-webkit-transition: opacity .15s ease 0s;
|
|
-o-transition: opacity .15s ease 0s;
|
|
transition: opacity .15s ease 0s;
|
|
}
|
|
|
|
.lg-outer * {
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.lg-outer.lg-visible {
|
|
opacity: 1;
|
|
}
|
|
|
|
.lg-outer.lg-css3 .lg-item.lg-current, .lg-outer.lg-css3 .lg-item.lg-next-slide, .lg-outer.lg-css3 .lg-item.lg-prev-slide {
|
|
-webkit-transition-duration: inherit !important;
|
|
transition-duration: inherit !important;
|
|
-webkit-transition-timing-function: inherit !important;
|
|
transition-timing-function: inherit !important;
|
|
}
|
|
|
|
.lg-outer.lg-css3.lg-dragging .lg-item.lg-current, .lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide {
|
|
-webkit-transition-duration: 0s !important;
|
|
transition-duration: 0s !important;
|
|
opacity: 1;
|
|
}
|
|
|
|
.lg-outer.lg-grab img.lg-object {
|
|
cursor: -webkit-grab;
|
|
cursor: -moz-grab;
|
|
cursor: -o-grab;
|
|
cursor: -ms-grab;
|
|
cursor: grab;
|
|
}
|
|
|
|
.lg-outer.lg-grabbing img.lg-object {
|
|
cursor: move;
|
|
cursor: -webkit-grabbing;
|
|
cursor: -moz-grabbing;
|
|
cursor: -o-grabbing;
|
|
cursor: -ms-grabbing;
|
|
cursor: grabbing;
|
|
}
|
|
|
|
.lg-outer .lg {
|
|
position: relative;
|
|
overflow: hidden;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
}
|
|
|
|
.lg-outer .lg-inner {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.lg-outer .lg-item {
|
|
background: url(../images/loading.gif) center center no-repeat;
|
|
display: none !important;
|
|
}
|
|
|
|
.lg-outer.lg-css .lg-current, .lg-outer.lg-css3 .lg-current, .lg-outer.lg-css3 .lg-next-slide, .lg-outer.lg-css3 .lg-prev-slide {
|
|
display: inline-block !important;
|
|
}
|
|
|
|
.lg-outer .lg-img-wrap, .lg-outer .lg-item {
|
|
display: inline-block;
|
|
text-align: center;
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.lg-outer .lg-img-wrap:before, .lg-outer .lg-item:before {
|
|
content: "";
|
|
display: inline-block;
|
|
height: 50%;
|
|
width: 1px;
|
|
margin-right: -1px;
|
|
}
|
|
|
|
.lg-outer .lg-img-wrap {
|
|
position: absolute;
|
|
padding: 0 5px;
|
|
left: 0;
|
|
right: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
}
|
|
|
|
.lg-outer .lg-item.lg-complete {
|
|
background-image: none;
|
|
}
|
|
|
|
.lg-outer .lg-item.lg-current {
|
|
z-index: 1060;
|
|
}
|
|
|
|
.lg-outer .lg-image {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
width: auto !important;
|
|
height: auto !important;
|
|
}
|
|
|
|
.lg-outer.lg-show-after-load .lg-item .lg-object, .lg-outer.lg-show-after-load .lg-item .lg-video-play {
|
|
opacity: 0;
|
|
-webkit-transition: opacity .15s ease 0s;
|
|
-o-transition: opacity .15s ease 0s;
|
|
transition: opacity .15s ease 0s;
|
|
}
|
|
|
|
.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object, .lg-outer.lg-show-after-load .lg-item.lg-complete .lg-video-play {
|
|
opacity: 1;
|
|
}
|
|
|
|
.lg-outer .lg-empty-html, .lg-outer.lg-hide-download #lg-download {
|
|
display: none;
|
|
}
|
|
|
|
.lg-backdrop {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
z-index: 1040;
|
|
background-color: rgba(0, 0, 0, 0.85);
|
|
opacity: 0;
|
|
-webkit-transition: opacity .15s ease 0s;
|
|
-o-transition: opacity .15s ease 0s;
|
|
transition: opacity .15s ease 0s;
|
|
}
|
|
|
|
.lg-backdrop.in {
|
|
opacity: 1;
|
|
}
|
|
|
|
.lg-css3.lg-no-trans .lg-current, .lg-css3.lg-no-trans .lg-next-slide, .lg-css3.lg-no-trans .lg-prev-slide {
|
|
-webkit-transition: none 0s ease 0s !important;
|
|
-moz-transition: none 0s ease 0s !important;
|
|
-o-transition: none 0s ease 0s !important;
|
|
transition: none 0s ease 0s !important;
|
|
}
|
|
|
|
.lg-css3.lg-use-css3 .lg-item, .lg-css3.lg-use-left .lg-item {
|
|
-webkit-backface-visibility: hidden;
|
|
-moz-backface-visibility: hidden;
|
|
backface-visibility: hidden;
|
|
}
|
|
|
|
.lg-css3.lg-fade .lg-item {
|
|
opacity: 0;
|
|
}
|
|
|
|
.lg-css3.lg-fade .lg-item.lg-current {
|
|
opacity: 1;
|
|
}
|
|
|
|
.lg-css3.lg-fade .lg-item.lg-current, .lg-css3.lg-fade .lg-item.lg-next-slide, .lg-css3.lg-fade .lg-item.lg-prev-slide {
|
|
-webkit-transition: opacity .1s ease 0s;
|
|
-moz-transition: opacity .1s ease 0s;
|
|
-o-transition: opacity .1s ease 0s;
|
|
transition: opacity .1s ease 0s;
|
|
}
|
|
|
|
.lg-css3.lg-slide.lg-use-css3 .lg-item {
|
|
opacity: 0;
|
|
}
|
|
|
|
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
|
|
-webkit-transform: translate3d(-100%, 0, 0);
|
|
transform: translate3d(-100%, 0, 0);
|
|
}
|
|
|
|
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
|
|
-webkit-transform: translate3d(100%, 0, 0);
|
|
transform: translate3d(100%, 0, 0);
|
|
}
|
|
|
|
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
|
|
-webkit-transform: translate3d(0, 0, 0);
|
|
transform: translate3d(0, 0, 0);
|
|
opacity: 1;
|
|
}
|
|
|
|
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
|
|
-webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
|
|
-moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
|
|
-o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
|
|
transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
|
|
}
|
|
|
|
.lg-css3.lg-slide.lg-use-left .lg-item {
|
|
opacity: 0;
|
|
position: absolute;
|
|
left: 0;
|
|
}
|
|
|
|
.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
|
|
left: -100%;
|
|
}
|
|
|
|
.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
|
|
left: 100%;
|
|
}
|
|
|
|
.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
|
|
left: 0;
|
|
opacity: 1;
|
|
}
|
|
|
|
.lg-css3.lg-slide.lg-use-left .lg-item.lg-current, .lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
|
|
-webkit-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
|
|
-moz-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
|
|
-o-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
|
|
transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
|
|
}
|
|
|
|
/*
|
|
*
|
|
* Material Parallax
|
|
*/
|
|
.parallax-container {
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.material-parallax {
|
|
position: absolute;
|
|
top: 0;
|
|
left: -1px;
|
|
right: -1px;
|
|
bottom: 0;
|
|
}
|
|
|
|
.ipad .parallax-container, .iphone .parallax-container {
|
|
background-attachment: scroll !important;
|
|
}
|
|
|
|
.material-parallax img {
|
|
display: none;
|
|
position: absolute;
|
|
left: 50%;
|
|
bottom: 0;
|
|
max-width: none;
|
|
min-width: 101%;
|
|
min-height: 101%;
|
|
transform: translate3d(-50%, 0, 0);
|
|
}
|
|
|
|
.parallax-content {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.typed-text {
|
|
color: rgba(255, 173, 77, 0.55);
|
|
font-family: "Abril Fatface", cursive;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.typed-cursor {
|
|
vertical-align: text-top;
|
|
color: rgba(21, 21, 21, 0.72);
|
|
opacity: 1;
|
|
-webkit-animation: blink 0.7s infinite;
|
|
-moz-animation: blink 0.7s infinite;
|
|
animation: blink 0.7s infinite;
|
|
}
|
|
|
|
.context-dark .typed-text,
|
|
.context-dark .typed-cursor {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
@keyframes blink {
|
|
0% {
|
|
opacity: 1;
|
|
}
|
|
50% {
|
|
opacity: 0;
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@-webkit-keyframes blink {
|
|
0% {
|
|
opacity: 1;
|
|
}
|
|
50% {
|
|
opacity: 0;
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@-moz-keyframes blink {
|
|
0% {
|
|
opacity: 1;
|
|
}
|
|
50% {
|
|
opacity: 0;
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.textillate-text > span {
|
|
display: block;
|
|
}
|
|
|
|
/**
|
|
* Twitter
|
|
*/
|
|
.twitter > h6 {
|
|
padding: 10px 0;
|
|
}
|
|
|
|
.twitter-feed {
|
|
max-width: 576px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
text-align: left;
|
|
background-color: #ffffff;
|
|
transition: .3s ease-out all;
|
|
border: 1px solid #f3f3f3;
|
|
}
|
|
|
|
.twitter-feed .twitter-feed-name {
|
|
font-weight: 400;
|
|
color: #151515;
|
|
}
|
|
|
|
.twitter-feed .twitter-feed-name > * {
|
|
font-weight: inherit;
|
|
color: inherit;
|
|
letter-spacing: 0;
|
|
}
|
|
|
|
.bg-gray-darker .twitter-feed,
|
|
.bg-gray-lighter .twitter-feed,
|
|
.bg-image .twitter-feed {
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
.bg-gray-darker .twitter-feed .twitter-feed-name,
|
|
.bg-gray-lighter .twitter-feed .twitter-feed-name,
|
|
.bg-image .twitter-feed .twitter-feed-name {
|
|
color: #151515;
|
|
}
|
|
|
|
.twitter-feed:hover {
|
|
box-shadow: 0 9px 21px rgba(21, 21, 21, 0.08);
|
|
}
|
|
|
|
.twitter-feed-header {
|
|
padding: 30px 20px 20px;
|
|
}
|
|
|
|
.twitter-feed-body {
|
|
padding: 0 20px 20px;
|
|
}
|
|
|
|
.twitter-feed-avatar {
|
|
width: 70px;
|
|
height: 70px;
|
|
}
|
|
|
|
.twitter-feed-name-tag,
|
|
.twitter-feed-content,
|
|
.twitter-feed-footer {
|
|
letter-spacing: 0;
|
|
}
|
|
|
|
.twitter-feed-name-tag {
|
|
color: #b7b7b7;
|
|
}
|
|
|
|
.twitter-feed-name-tag a, .twitter-feed-name-tag a:focus, .twitter-feed-name-tag a:active {
|
|
color: inherit;
|
|
}
|
|
|
|
.twitter-feed-name-tag a:hover {
|
|
color: #ffad4d;
|
|
}
|
|
|
|
.twitter-feed-content {
|
|
color: #151515;
|
|
}
|
|
|
|
.twitter-feed-content a, .twitter-feed-content a:focus, .twitter-feed-content a:active {
|
|
color: #ffad4d;
|
|
}
|
|
|
|
.twitter-feed-content a:hover {
|
|
color: #151515;
|
|
}
|
|
|
|
.twitter-feed-footer {
|
|
padding: 23px 30px 30px;
|
|
}
|
|
|
|
.twitter-feed-footer time {
|
|
color: #b7b7b7;
|
|
}
|
|
|
|
.twitter-image {
|
|
max-width: 100%;
|
|
}
|
|
|
|
* + .twitter-feed {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
* + .twitter-feed-content {
|
|
margin-top: 29px;
|
|
}
|
|
|
|
.twitter-feed-header + .twitter-feed-body {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.twitter-feed-header + .twitter-feed-body:empty {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.twitter-feed-body:empty + .twitter-feed-footer {
|
|
padding-top: 0;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
* + .twitter {
|
|
margin-top: 30px;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Twitter Feed minimal
|
|
*/
|
|
.twitter-feed-minimal {
|
|
max-width: 334px;
|
|
}
|
|
|
|
.twitter-feed-minimal .twitter-icon {
|
|
color: #00bbf5;
|
|
}
|
|
|
|
.twitter-feed-minimal time {
|
|
display: block;
|
|
color: #151515;
|
|
}
|
|
|
|
.twitter-feed-minimal * + time {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.twitter-feed-minimal-content {
|
|
color: #151515;
|
|
letter-spacing: 0;
|
|
}
|
|
|
|
.twitter-feed-minimal-content a {
|
|
color: #ffad4d;
|
|
}
|
|
|
|
.twitter-feed-minimal-content a:hover {
|
|
color: #151515;
|
|
}
|
|
|
|
* + .twitter-feed-minimal {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
@media (min-width: 576px) {
|
|
* + .twitter-feed-minimal {
|
|
margin-top: 25px;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Twitter Feed Block
|
|
*/
|
|
.twitter-feed-block {
|
|
max-width: 770px;
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
.twitter-feed-block .twitter-feed-header {
|
|
padding: 30px;
|
|
}
|
|
|
|
.twitter-feed-block .twitter-feed-name {
|
|
letter-spacing: 0;
|
|
}
|
|
|
|
.twitter-feed-block .twitter-feed-name > * {
|
|
letter-spacing: inherit;
|
|
}
|
|
|
|
.twitter-feed-block .twitter-feed-name h5 {
|
|
font-size: 18px;
|
|
font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
font-weight: 700;
|
|
color: #151515;
|
|
}
|
|
|
|
.twitter-feed-block .twitter-feed-name time {
|
|
color: #151515;
|
|
font-weight: 300;
|
|
}
|
|
|
|
@media (min-width: 576px) {
|
|
.twitter-feed-block .twitter-feed-name {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
}
|
|
|
|
.twitter-feed-block * + .twitter-feed-content {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.twitter-feed-block + .twitter-feed-block {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
/**
|
|
* Twitter Center
|
|
*/
|
|
.twitter-feed-centered {
|
|
max-width: 570px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.bg-gray-darker .twitter-feed-centered .twitter-feed-name-tag,
|
|
.bg-image .twitter-feed-centered .twitter-feed-name-tag {
|
|
color: #ffffff;
|
|
}
|
|
|
|
.twitter-feed-centered .twitter-feed-avatar {
|
|
border-radius: 1px solid #f3f3f3;
|
|
}
|
|
|
|
.twitter-feed-centered .twitter-feed-name-tag,
|
|
.twitter-feed-centered time {
|
|
letter-spacing: 0;
|
|
}
|
|
|
|
.twitter-feed-centered .twitter-feed-name-tag {
|
|
color: #151515;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.twitter-feed-centered time {
|
|
display: block;
|
|
color: #b7b7b7;
|
|
}
|
|
|
|
.twitter-feed-centered * + .twitter-feed-name-tag {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.twitter-feed-centered * + time {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.twitter-feed-centered * + .twitter-feed-minimal-content {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.twitter-feed-minimal-content {
|
|
font-size: 24px;
|
|
}
|
|
}
|
|
|
|
.twitter-column {
|
|
position: relative;
|
|
padding-top: 40px;
|
|
}
|
|
|
|
.twitter-column > h6 {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 15px;
|
|
margin-top: 0;
|
|
}
|
|
|
|
/**
|
|
* Instagram Plugin Style
|
|
*/
|
|
[data-x-mode] .instafeed {
|
|
pointer-events: auto;
|
|
}
|
|
|
|
[data-x-mode] .instafeed > * {
|
|
pointer-events: none;
|
|
}
|
|
|
|
/**
|
|
* Thumbnail InstaFeed
|
|
*/
|
|
.thumbnail-instafeed {
|
|
position: relative;
|
|
padding-bottom: 100%;
|
|
}
|
|
|
|
.thumbnail-instafeed .label {
|
|
position: absolute;
|
|
z-index: 1;
|
|
top: 30px;
|
|
left: 25px;
|
|
color: #ffffff;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.thumbnail-instafeed .label:before {
|
|
margin-right: 7px;
|
|
}
|
|
|
|
.thumbnail-instafeed a {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
left: 0;
|
|
background: #151515;
|
|
}
|
|
|
|
.thumbnail-instafeed img {
|
|
object-fit: cover;
|
|
object-position: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
opacity: .6;
|
|
}
|
|
|
|
.thumbnail-instafeed .caption {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
color: #ffffff;
|
|
background-color: rgba(255, 173, 77, 0.35);
|
|
transition: .3s ease-out all;
|
|
pointer-events: none;
|
|
overflow: hidden;
|
|
will-change: transfrom;
|
|
}
|
|
|
|
.thumbnail-instafeed .caption .list-inline {
|
|
margin-left: -10px;
|
|
margin-right: -10px;
|
|
}
|
|
|
|
.thumbnail-instafeed .caption .list-inline > li {
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
}
|
|
|
|
.thumbnail-instafeed .caption .list-inline span {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.thumbnail-instafeed .caption .icon {
|
|
margin-right: 5px;
|
|
font-size: 28px;
|
|
}
|
|
|
|
.ie-10 .thumbnail-instafeed,
|
|
.ie-11 .thumbnail-instafeed {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.ie-10 .thumbnail-instafeed img,
|
|
.ie-11 .thumbnail-instafeed img {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
width: auto;
|
|
height: auto;
|
|
max-width: 135%;
|
|
max-height: 135%;
|
|
min-height: 101%;
|
|
min-width: 101%;
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.thumbnail-instafeed .caption .list-inline {
|
|
margin-left: -25px;
|
|
margin-right: -25px;
|
|
}
|
|
.thumbnail-instafeed .caption .list-inline > li {
|
|
padding-left: 25px;
|
|
padding-right: 25px;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Thumbnail InstaFeedl Minimal
|
|
*/
|
|
.thumbnail-instafeed-minimal .caption .list-inline > li {
|
|
display: block;
|
|
}
|
|
|
|
.thumbnail-instafeed-minimal .caption .list-inline > li + li {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
@media (min-width: 992px) {
|
|
.desktop .thumbnail-instafeed .caption {
|
|
background-color: rgba(255, 173, 77, 0.8);
|
|
}
|
|
.desktop .thumbnail-instafeed .caption,
|
|
.desktop .thumbnail-instafeed .list-inline > li {
|
|
visibility: hidden;
|
|
opacity: 0;
|
|
}
|
|
.desktop .thumbnail-instafeed .list-inline > li {
|
|
transform: scale3d(0, 0, 0);
|
|
will-change: transfrom;
|
|
}
|
|
.desktop .thumbnail-instafeed:hover .caption,
|
|
.desktop .thumbnail-instafeed:hover .list-inline > li {
|
|
visibility: visible;
|
|
opacity: 1;
|
|
}
|
|
.desktop .thumbnail-instafeed:hover .list-inline > li {
|
|
transform: scale3d(1, 1, 1);
|
|
transition: 480ms cubic-bezier(0.18, 0.89, 0.32, 1.28) transform, 150ms cubic-bezier(0.18, 0.89, 0.32, 1.28) opacity;
|
|
transition-delay: .15s;
|
|
}
|
|
}
|
|
|
|
.parallax-scene-js .layer-01 .layer {
|
|
z-index: 3;
|
|
}
|
|
|
|
.vide_bg {
|
|
width: 100%;
|
|
}
|
|
|
|
.vide_bg .container {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.video-bg-overlay {
|
|
position: relative;
|
|
}
|
|
|
|
.video-bg-overlay:before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
background: rgba(21, 21, 21, 0.37);
|
|
z-index: 1;
|
|
}
|
|
|
|
.video-overlay {
|
|
position: relative;
|
|
}
|
|
|
|
.video-overlay:before {
|
|
background: linear-gradient(to bottom, #106bb8, #010c5f);
|
|
opacity: .72;
|
|
}
|
|
|
|
/*
|
|
*
|
|
* Layout panel
|
|
*/
|
|
.layout-panel-wrap {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
pointer-events: none;
|
|
z-index: 1100;
|
|
}
|
|
|
|
.layout-panel-wrap.active .layout-panel {
|
|
transform: translate3d(0, 0, 0);
|
|
}
|
|
|
|
.layout-panel-wrap.active .layout-panel-inner:after {
|
|
box-shadow: -3px 0px 50px -2px rgba(0, 0, 0, 0.09);
|
|
}
|
|
|
|
.layout-panel-wrap .layout-panel-toggle,
|
|
.layout-panel-wrap .layout-panel-inner > * {
|
|
pointer-events: auto;
|
|
}
|
|
|
|
.layout-panel {
|
|
width: auto;
|
|
transform: translateX(276px);
|
|
transition: .55s all ease;
|
|
}
|
|
|
|
.layout-panel-content {
|
|
position: relative;
|
|
height: 100vh;
|
|
overflow-x: hidden;
|
|
overflow-y: scroll;
|
|
-webkit-overflow-scrolling: touch;
|
|
width: 100%;
|
|
padding-right: 16px;
|
|
}
|
|
|
|
.layout-panel-content .mCSB_outside + .mCSB_scrollTools {
|
|
right: 0;
|
|
}
|
|
|
|
.layout-panel-content .mCSB_scrollTools {
|
|
width: 16px;
|
|
pointer-events: auto;
|
|
}
|
|
|
|
.layout-panel-content .mCSB_scrollTools .mCSB_dragger,
|
|
.layout-panel-content .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
|
|
width: 12px;
|
|
}
|
|
|
|
.layout-panel-content .mCSB_draggerContainer {
|
|
padding: 2px;
|
|
background: #ffad4d;
|
|
}
|
|
|
|
.layout-panel-content .mCSB_draggerContainer::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
background: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
.layout-panel-content .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
|
|
.layout-panel-content .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
|
|
background-color: #ffffff;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.layout-panel-content .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
|
|
.layout-panel-content .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
.layout-panel-inner {
|
|
position: relative;
|
|
height: auto;
|
|
min-height: 101vh;
|
|
max-width: 260px;
|
|
padding: 20px 0 20px;
|
|
color: #151515;
|
|
background: #ffffff;
|
|
margin-left: auto;
|
|
text-align: center;
|
|
}
|
|
|
|
.layout-panel-inner::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
box-shadow: -3px 0px 50px -2px rgba(0, 0, 0, 0);
|
|
z-index: -10;
|
|
transition: .33s all ease;
|
|
}
|
|
|
|
.layout-panel-inner > * + * {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.layout-panel-controls {
|
|
border-top: 1px solid #f3f3f3;
|
|
border-bottom: 1px solid #f3f3f3;
|
|
}
|
|
|
|
.layout-panel-controls > * + * {
|
|
border-top: 1px solid #f3f3f3;
|
|
}
|
|
|
|
.mobile.rd-navbar-fixed-linked .layout-panel-inner,
|
|
.tablet.rd-navbar-fixed-linked .layout-panel-inner {
|
|
padding-bottom: 90px;
|
|
}
|
|
|
|
.layout-panel-header {
|
|
padding: 0 12px;
|
|
}
|
|
|
|
.layout-panel-header .button {
|
|
display: flex;
|
|
justify-content: center;
|
|
width: 100%;
|
|
}
|
|
|
|
.layout-panel-header * + .layout-panel-element,
|
|
.layout-panel-header * + .layout-panel-title {
|
|
margin-top: 22px;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.layout-panel-header * + .layout-panel-element,
|
|
.layout-panel-header * + .layout-panel-title {
|
|
margin-top: 30px;
|
|
}
|
|
}
|
|
|
|
.layout-panel-isotope-wrap {
|
|
position: relative;
|
|
z-index: 10;
|
|
padding-left: 5px;
|
|
padding-right: 4px;
|
|
}
|
|
|
|
.layout-panel-isotope-wrap .isotope {
|
|
position: relative;
|
|
margin-bottom: -10px;
|
|
transform: translateY(-10px);
|
|
}
|
|
|
|
.layout-panel-isotope-wrap .isotope-item {
|
|
margin-top: 10px;
|
|
padding: 0 5px;
|
|
}
|
|
|
|
.layout-panel-isotope-wrap .isotope-item::before {
|
|
content: '';
|
|
display: block;
|
|
}
|
|
|
|
.layout-panel-isotope-wrap .isotope-item {
|
|
flex-basis: 50%;
|
|
max-width: 50%;
|
|
}
|
|
|
|
.layout-panel-isotope-wrap .isotope {
|
|
position: static;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100%;
|
|
margin-left: 0;
|
|
margin-right: 0;
|
|
}
|
|
|
|
.layout-panel-isotope-wrap .isotope-filters {
|
|
padding: 0 5px;
|
|
}
|
|
|
|
.layout-panel-isotope-wrap .isotope-filters-list {
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.layout-panel-isotope-wrap .isotope-filters-list::after {
|
|
content: '';
|
|
position: absolute;
|
|
left: -100px;
|
|
bottom: 0;
|
|
right: -100px;
|
|
border-bottom: 1px solid #e7e7e7;
|
|
}
|
|
|
|
.layout-panel-isotope-wrap .isotope-filters-list li {
|
|
display: inline-block;
|
|
padding-left: 7px;
|
|
padding-right: 7px;
|
|
font: 400 12px/18px "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
color: #5b5b5b;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.layout-panel-isotope-wrap .isotope-filters-list li {
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
}
|
|
}
|
|
|
|
.layout-panel-isotope-wrap .isotope-filters-list a {
|
|
position: relative;
|
|
display: inline-block;
|
|
z-index: 2;
|
|
padding-bottom: 14px;
|
|
text-align: right;
|
|
}
|
|
|
|
.layout-panel-isotope-wrap .isotope-filters-list a::after {
|
|
content: '';
|
|
display: inline-block;
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
height: 3px;
|
|
background: #ffad4d;
|
|
transition: .34s;
|
|
transform: translate(0, 8px);
|
|
opacity: 0;
|
|
}
|
|
|
|
.layout-panel-isotope-wrap .isotope-filters-list a, .layout-panel-isotope-wrap .isotope-filters-list a:active, .layout-panel-isotope-wrap .isotope-filters-list a:focus {
|
|
color: inherit;
|
|
}
|
|
|
|
.layout-panel-isotope-wrap .isotope-filters-list a.active, .layout-panel-isotope-wrap .isotope-filters-list a:hover {
|
|
color: #ffad4d;
|
|
}
|
|
|
|
.layout-panel-isotope-wrap .isotope-filters-list a.active::after {
|
|
transform: translate(0, 0);
|
|
opacity: 1;
|
|
}
|
|
|
|
.layout-panel-isotope-wrap * + .isotope {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.layout-panel-isotope-wrap * + .isotope-filters {
|
|
margin-top: 25px;
|
|
}
|
|
|
|
.layout-panel-toggle {
|
|
background: none;
|
|
border: none;
|
|
display: inline-block;
|
|
padding: 0;
|
|
outline: none;
|
|
outline-offset: 0;
|
|
cursor: pointer;
|
|
-webkit-appearance: none;
|
|
position: fixed;
|
|
top: 20vh;
|
|
right: 276px;
|
|
z-index: 10;
|
|
width: 40px;
|
|
height: 40px;
|
|
line-height: 40px;
|
|
background: #ffffff;
|
|
color: #000000;
|
|
text-align: center;
|
|
box-shadow: -5px 1px 10px 0 rgba(0, 0, 0, 0.05);
|
|
border-right: 0;
|
|
transition: .55s all ease;
|
|
}
|
|
|
|
.layout-panel-toggle::-moz-focus-inner {
|
|
border: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.layout-panel-toggle::before, .layout-panel-toggle::after {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
font-family: 'Material Design Icons';
|
|
font-size: 16px;
|
|
transition: .33s;
|
|
}
|
|
|
|
.layout-panel-toggle::before {
|
|
content: '\f582';
|
|
opacity: 1;
|
|
}
|
|
|
|
.layout-panel-toggle::after {
|
|
content: '\f24c';
|
|
opacity: 0;
|
|
}
|
|
|
|
.layout-panel-toggle.active::before {
|
|
opacity: 0;
|
|
}
|
|
|
|
.layout-panel-toggle.active::after {
|
|
opacity: 1;
|
|
}
|
|
|
|
* + .layout-panel-main {
|
|
margin-top: 25px;
|
|
}
|
|
|
|
.layout-panel-row {
|
|
padding: 15px 10px;
|
|
text-align: left;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.layout-panel-row .jscolor {
|
|
padding: 3px 6px;
|
|
border-radius: 0;
|
|
border: none;
|
|
box-shadow: 1px 1px 6px -1px rgba(0, 0, 0, 0.3);
|
|
text-align: center;
|
|
}
|
|
|
|
.layout-panel-row > * {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
padding-left: 5px;
|
|
padding-right: 5px;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.layout-panel-row .toggle-custom-dummy {
|
|
display: inline-block;
|
|
margin-left: 16px;
|
|
}
|
|
|
|
.layout-panel-row > * + * {
|
|
margin-left: 8px;
|
|
}
|
|
|
|
.layout-panel-row-button-wrap {
|
|
padding-top: 0;
|
|
border: 0;
|
|
}
|
|
|
|
.layout-panel-row-button-wrap .button {
|
|
display: block;
|
|
width: 100%;
|
|
padding: 10px 20px;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.layout-panel-wrap.active .layout-panel {
|
|
transform: translate3d(0, 0, 0);
|
|
}
|
|
.layout-panel-wrap .layout-panel {
|
|
transform: translateX(346px);
|
|
}
|
|
.layout-panel-wrap .layout-panel-inner {
|
|
max-width: 330px;
|
|
}
|
|
.layout-panel-wrap .layout-panel-toggle {
|
|
right: 346px;
|
|
}
|
|
.layout-panel-toggle {
|
|
width: 54px;
|
|
height: 54px;
|
|
line-height: 54px;
|
|
}
|
|
.layout-panel-toggle::before, .layout-panel-toggle::after {
|
|
font-size: 22px;
|
|
}
|
|
.ie-10 .layout-panel,
|
|
.ie-11 .layout-panel {
|
|
transform: translateX(346px);
|
|
}
|
|
.ie-10 .layout-panel-toggle,
|
|
.ie-11 .layout-panel-toggle {
|
|
right: 16px;
|
|
}
|
|
.ie-10 .layout-panel-wrap.active,
|
|
.ie-11 .layout-panel-wrap.active {
|
|
right: 16px;
|
|
}
|
|
.ie-10 .layout-panel-wrap.active .layout-panel-toggle,
|
|
.ie-11 .layout-panel-wrap.active .layout-panel-toggle {
|
|
right: 362px;
|
|
}
|
|
}
|
|
|
|
.thumbnail-small {
|
|
position: relative;
|
|
display: block;
|
|
width: 100%;
|
|
padding: 5px 5px 0;
|
|
text-align: center;
|
|
transition: 0.3s ease;
|
|
color: #2c343b;
|
|
background-color: #f3f3f3;
|
|
}
|
|
|
|
.thumbnail-small:hover {
|
|
color: #ffffff;
|
|
background-color: #ffad4d;
|
|
border-color: #ffad4d;
|
|
}
|
|
|
|
.thumbnail-small-image img,
|
|
.thumbnail-small-hover-image img {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
.thumbnail-small-image {
|
|
position: relative;
|
|
overflow: hidden;
|
|
max-height: 105px;
|
|
}
|
|
|
|
.thumbnail-small-hover-image {
|
|
display: none;
|
|
}
|
|
|
|
.thumbnail-small-caption {
|
|
position: relative;
|
|
padding: 8px 8px;
|
|
}
|
|
|
|
.thumbnail-small-header {
|
|
position: relative;
|
|
z-index: 1;
|
|
font: 400 13px/18px "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
color: inherit;
|
|
}
|
|
|
|
.thumbnail-small-header .brand {
|
|
max-width: 90%;
|
|
}
|
|
|
|
@media (min-width: 992px) {
|
|
html:not(.tablet):not(.mobile) .thumbnail-small-hover-image {
|
|
display: block;
|
|
position: absolute;
|
|
left: -10px;
|
|
top: 50%;
|
|
z-index: 11;
|
|
width: 342px;
|
|
height: 252px;
|
|
padding: 7px;
|
|
background: #ffffff;
|
|
transform: translate3d(-120%, -60%, 0);
|
|
box-shadow: -3px 0px 50px -2px rgba(0, 0, 0, 0.14);
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
transition: .33s all ease;
|
|
}
|
|
html:not(.tablet):not(.mobile) .thumbnail-small-hover-image img {
|
|
position: relative;
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
}
|
|
html:not(.tablet):not(.mobile) .thumbnail-small-hover-image::before {
|
|
content: '';
|
|
position: absolute;
|
|
right: -11px;
|
|
top: 50%;
|
|
z-index: -1;
|
|
width: 24px;
|
|
height: 24px;
|
|
transform: translate3d(0, -50%, 0) rotate(45deg);
|
|
background: #ffffff;
|
|
box-shadow: -3px 0px 45px -2px rgba(0, 0, 0, 0.13);
|
|
}
|
|
html:not(.tablet):not(.mobile) .thumbnail-small:hover .thumbnail-small-caption::after {
|
|
bottom: 0;
|
|
opacity: 1;
|
|
}
|
|
html:not(.tablet):not(.mobile) .thumbnail-small:hover .thumbnail-small-header {
|
|
color: #ffffff;
|
|
}
|
|
html:not(.tablet):not(.mobile) .thumbnail-small:hover .thumbnail-small-image::after {
|
|
opacity: 0;
|
|
}
|
|
html:not(.tablet):not(.mobile) .thumbnail-small:hover .thumbnail-small-hover-image {
|
|
z-index: 12;
|
|
opacity: 1;
|
|
transform: translate(-100%, -60%);
|
|
}
|
|
}
|
|
|
|
* + .theme-switcher-group {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.theme-switcher-group {
|
|
margin-bottom: -10px;
|
|
margin-left: -10px;
|
|
}
|
|
|
|
.theme-switcher-group:empty {
|
|
margin-bottom: 0;
|
|
margin-left: 0;
|
|
}
|
|
|
|
.theme-switcher-group > * {
|
|
display: inline-block;
|
|
margin-top: 0;
|
|
margin-bottom: 10px;
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.theme-switcher-group-item {
|
|
position: relative;
|
|
overflow: hidden;
|
|
background: none;
|
|
border: none;
|
|
display: inline-block;
|
|
padding: 0;
|
|
outline: none;
|
|
outline-offset: 0;
|
|
cursor: pointer;
|
|
-webkit-appearance: none;
|
|
width: 30px;
|
|
height: 30px;
|
|
font-size: 0;
|
|
cursor: pointer;
|
|
background: #ffad4d;
|
|
}
|
|
|
|
.theme-switcher-group-item::-moz-focus-inner {
|
|
border: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.theme-switcher-group-item::before {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate3d(-50%, -50%, 0);
|
|
content: '\f222';
|
|
font-family: "Material Design Icons";
|
|
font-size: 22px;
|
|
transition: .22s;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
pointer-events: none;
|
|
color: #ffffff;
|
|
text-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
|
|
z-index: 2;
|
|
}
|
|
|
|
.theme-switcher-group-item.active-theme::before {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
}
|
|
|
|
.theme-switcher-group-item[data-theme-name='default'] {
|
|
background: #4d6de6;
|
|
}
|
|
|
|
.theme-switcher-group-item[data-theme-name='style-1'] {
|
|
background: #76cfd6;
|
|
}
|
|
|
|
.theme-switcher-group-item[data-theme-name='style-2'] {
|
|
background: #c49a6a;
|
|
}
|
|
|
|
.theme-switcher-group-item[data-theme-name='style-3'] {
|
|
background: #c2a47e;
|
|
}
|
|
|
|
.theme-switcher-group-item[data-theme-name='style-4'] {
|
|
background: #28c4c3;
|
|
}
|
|
|
|
.theme-switcher-group-item[data-theme-name='style-5'] {
|
|
background: #ffad4d;
|
|
}
|
|
|
|
.theme-switcher-group-item[data-theme-name='style-6'] {
|
|
background: #f8667e;
|
|
}
|
|
|
|
.theme-switcher-group-item[data-theme-name='style-6'] .label-popular {
|
|
background: #fbde55;
|
|
}
|