@-webkit-keyframes moveUp {
100% {
-webkit-transform: translateY(0);
opacity: 1;
}
}
@keyframes moveUp {
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
opacity: 1;
}
}
@keyframes spin-rotate-left {
to {
transform: rotate(30deg);
}
from {
transform: rotate(175deg);
}
}
@-webkit-keyframes spin-rotate-left {
to {
transform: rotate(30deg);
}
from {
transform: rotate(175deg);
}
}
@keyframes spin-rotate-right {
from {
transform: rotate(-175deg);
}
to {
transform: rotate(-30deg);
}
}
@-webkit-keyframes spin-rotate-right {
from {
transform: rotate(-175deg);
}
to {
transform: rotate(-30deg);
}
}
@keyframes spin-rotate-all {
from {
transform: rotate(0deg);
}
to {
transform: rotate(-360deg);
}
}
@-webkit-keyframes spin-rotate-all {
from {
transform: rotate(0deg);
}
to {
transform: rotate(-360deg);
}
}
@keyframes spin-fade-in-first {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
@-webkit-keyframes spin-fade-in-first {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
@keyframes spin-fade-in-second {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-webkit-keyframes spin-fade-in-second {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-webkit-keyframes markerWave {
0% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 0.8;
}
20% {
opacity: 0.8;
}
100% {
-webkit-transform: scale(5.5);
transform: scale(5.5);
opacity: 0;
}
}
@keyframes markerWave {
0% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 0.8;
}
20% {
opacity: 0.8;
}
100% {
-webkit-transform: scale(5.5);
transform: scale(5.5);
opacity: 0;
}
}
@-webkit-keyframes rotateplane {
0% {
-webkit-transform: perspective(120px);
}
50% {
-webkit-transform: perspective(120px) rotateY(180deg);
}
100% {
-webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
}
}
@keyframes rotateplane {
0% {
-webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
transform: perspective(120px) rotateX(0deg) rotateY(0deg);
}
50% {
-webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
}
100% {
-webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
}
}
@-webkit-keyframes ct-bounce {
0%, 100% {
-webkit-transform: scale(0);
}
50% {
-webkit-transform: scale(1);
}
}
@keyframes ct-bounce {
0%, 100% {
transform: scale(0);
-webkit-transform: scale(0);
}
50% {
transform: scale(1);
-webkit-transform: scale(1);
}
}
@-webkit-keyframes ct-stretchdelay {
0%, 40%, 100% {
-webkit-transform: scaleY(0.4);
}
20% {
-webkit-transform: scaleY(1);
}
}
@keyframes ct-stretchdelay {
0%, 40%, 100% {
transform: scaleY(0.4);
-webkit-transform: scaleY(0.4);
}
20% {
transform: scaleY(1);
-webkit-transform: scaleY(1);
}
}
@-webkit-keyframes ct-bouncedelay {
0%, 80%, 100% {
-webkit-transform: scale(0);
}
40% {
-webkit-transform: scale(1);
}
}
@keyframes ct-bouncedelay {
0%, 80%, 100% {
-webkit-transform: scale(0);
transform: scale(0);
}
40% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
@-webkit-keyframes ct-cubeGridScaleDelay {
0%, 70%, 100% {
-webkit-transform: scale3D(1, 1, 1);
transform: scale3D(1, 1, 1);
}
35% {
-webkit-transform: scale3D(0, 0, 1);
transform: scale3D(0, 0, 1);
}
}
@keyframes ct-cubeGridScaleDelay {
0%, 70%, 100% {
-webkit-transform: scale3D(1, 1, 1);
transform: scale3D(1, 1, 1);
}
35% {
-webkit-transform: scale3D(0, 0, 1);
transform: scale3D(0, 0, 1);
}
}
@-webkit-keyframes ct-foldCubeAngle {
0%, 10% {
-webkit-transform: perspective(140px) rotateX(-180deg);
transform: perspective(140px) rotateX(-180deg);
opacity: 0;
}
25%, 75% {
-webkit-transform: perspective(140px) rotateX(0deg);
transform: perspective(140px) rotateX(0deg);
opacity: 1;
}
90%, 100% {
-webkit-transform: perspective(140px) rotateY(180deg);
transform: perspective(140px) rotateY(180deg);
opacity: 0;
}
}
@keyframes ct-foldCubeAngle {
0%, 10% {
-webkit-transform: perspective(140px) rotateX(-180deg);
transform: perspective(140px) rotateX(-180deg);
opacity: 0;
}
25%, 75% {
-webkit-transform: perspective(140px) rotateX(0deg);
transform: perspective(140px) rotateX(0deg);
opacity: 1;
}
90%, 100% {
-webkit-transform: perspective(140px) rotateY(180deg);
transform: perspective(140px) rotateY(180deg);
opacity: 0;
}
}
@keyframes ball {
0% {
transform: translate(0, 0);
}
5% {
transform: translate(8px, -14px);
}
10% {
transform: translate(15px, -10px);
}
17% {
transform: translate(23px, -24px);
}
20% {
transform: translate(30px, -20px);
}
27% {
transform: translate(38px, -34px);
}
30% {
transform: translate(45px, -30px);
}
37% {
transform: translate(53px, -44px);
}
40% {
transform: translate(60px, -40px);
}
50% {
transform: translate(60px, 0);
}
57% {
transform: translate(53px, -14px);
}
60% {
transform: translate(45px, -10px);
}
67% {
transform: translate(37px, -24px);
}
70% {
transform: translate(30px, -20px);
}
77% {
transform: translate(22px, -34px);
}
80% {
transform: translate(15px, -30px);
}
87% {
transform: translate(7px, -44px);
}
90% {
transform: translate(0, -40px);
}
100% {
transform: translate(0, 0);
}
}
@keyframes barUp1 {
0% {
transform: scale(1, 0.2);
}
40% {
transform: scale(1, 0.2);
}
50% {
transform: scale(1, 1);
}
90% {
transform: scale(1, 1);
}
100% {
transform: scale(1, 0.2);
}
}
@keyframes barUp2 {
0% {
transform: scale(1, 0.4);
}
40% {
transform: scale(1, 0.4);
}
50% {
transform: scale(1, 0.8);
}
90% {
transform: scale(1, 0.8);
}
100% {
transform: scale(1, 0.4);
}
}
@keyframes barUp3 {
0% {
transform: scale(1, 0.6);
}
100% {
transform: scale(1, 0.6);
}
}
@keyframes barUp4 {
0% {
transform: scale(1, 0.8);
}
40% {
transform: scale(1, 0.8);
}
50% {
transform: scale(1, 0.4);
}
90% {
transform: scale(1, 0.4);
}
100% {
transform: scale(1, 0.8);
}
}
@keyframes barUp5 {
0% {
transform: scale(1, 1);
}
40% {
transform: scale(1, 1);
}
50% {
transform: scale(1, 0.2);
}
90% {
transform: scale(1, 0.2);
}
100% {
transform: scale(1, 1);
}
}
@-moz-keyframes headerSlideDown {
0% {
margin-top: -150px;
}
100% {
margin-top: 0;
}
}
@-ms-keyframes headerSlideDown {
0% {
margin-top: -150px;
}
100% {
margin-top: 0;
}
}
@-webkit-keyframes headerSlideDown {
0% {
margin-top: -150px;
}
100% {
margin-top: 0;
}
}
@keyframes headerSlideDown {
0% {
margin-top: -150px;
}
100% {
margin-top: 0;
}
}
@-webkit-keyframes ct-rotate {
100% {
-webkit-transform: rotate(360deg);
}
}
@keyframes ct-rotate {
100% {
transform: rotate(360deg);
-webkit-transform: rotate(360deg);
}
}
@-webkit-keyframes ct-bounce {
0%, 100% {
-webkit-transform: scale(0);
}
50% {
-webkit-transform: scale(1);
}
}
@-webkit-keyframes video-icon-animation {
from {
-webkit-transform: scale(1, 1);
transform: scale(1, 1);
opacity: 1;
}
to {
-webkit-transform: scale(2, 2);
transform: scale(2, 2);
opacity: 0;
}
}
@keyframes video-icon-animation {
from {
-webkit-transform: scale(1, 1);
transform: scale(1, 1);
opacity: 1;
}
to {
-webkit-transform: scale(2, 2);
transform: scale(2, 2);
opacity: 0;
}
}
@keyframes blink {
0% {
opacity: 1;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-webkit-keyframes blink {
0% {
opacity: 1;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-webkit-keyframes hvrpulse {
25% {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
75% {
-webkit-transform: scale(0.9);
transform: scale(0.9);
}
}
@keyframes hvrpulse {
25% {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
75% {
-webkit-transform: scale(0.9);
transform: scale(0.9);
}
}
@-webkit-keyframes bounceReadMore {
0% {
margin-bottom: 30px;
}
50% {
margin-bottom: -10px;
}
100% {
margin-bottom: 0;
}
}
@-moz-keyframes bounceReadMore {
0% {
margin-bottom: 30px;
}
50% {
margin-bottom: -10px;
}
100% {
margin-bottom: 0;
}
}
@-o-keyframes bounceReadMore {
0% {
margin-bottom: 30px;
}
50% {
margin-bottom: -10px;
}
100% {
margin-bottom: 0;
}
}
@keyframes bounceReadMore {
0% {
margin-bottom: 30px;
}
50% {
margin-bottom: -10px;
}
100% {
margin-bottom: 0;
}
}
@-webkit-keyframes toRightFromLeft {
49% {
-webkit-transform: translate(100%);
}
50% {
opacity: 0;
-webkit-transform: translate(-100%);
}
51% {
opacity: 1;
}
}
@-moz-keyframes toRightFromLeft {
49% {
-moz-transform: translate(100%);
}
50% {
opacity: 0;
-moz-transform: translate(-100%);
}
51% {
opacity: 1;
}
}
@keyframes toRightFromLeft {
49% {
transform: translate(100%);
}
50% {
opacity: 0;
transform: translate(-100%);
}
51% {
opacity: 1;
}
}
@-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;
}
}
@-webkit-keyframes toTopFromBottom {
49% {
-webkit-transform: translateY(-100%);
}
50% {
opacity: 0;
-webkit-transform: translateY(100%);
}
51% {
opacity: 1;
}
}
@-moz-keyframes toTopFromBottom {
49% {
-moz-transform: translateY(-100%);
}
50% {
opacity: 0;
-moz-transform: translateY(100%);
}
51% {
opacity: 1;
}
}
@keyframes toTopFromBottom {
49% {
transform: translateY(-100%);
}
50% {
opacity: 0;
transform: translateY(100%);
}
51% {
opacity: 1;
}
}
@-webkit-keyframes item_hexagon {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@-moz-keyframes item_hexagon {
0% {
-moz-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-moz-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@-o-keyframes item_hexagon {
0% {
-o-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-o-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes item_hexagon {
0% {
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-o-transform: rotate(360deg);
transform: rotate(360deg);
}
}
html {
box-sizing: border-box;
}
a {
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
color: #3396ec;
}
a, a:hover, a:focus, a:before, a:after {
outline: none;
text-decoration: none;
}
a:hover, a:focus {
color: #f90244;
}
p {
margin-bottom: 15px;
}
body {
background-color: #fff;
font-size: 16px;
line-height: 1.8125;
color: #333;
-webkit-font-smoothing: antialiased;
font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
overflow-x: hidden;
font-weight: normal;
letter-spacing: 0;
}
body.body-default-font {
font-family: 'Roboto', sans-serif;
}
body.ovhidden {
overflow: hidden;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
font-weight: normal;
color: #252a37;
clear: both;
line-height: 1.25;
margin: 0 0 15px;
font-weight: 600;
}
.heading-default-font h1, .heading-default-font h2, .heading-default-font h3, .heading-default-font h4, .heading-default-font h5, .heading-default-font h6, .heading-default-font .h1, .heading-default-font .h2, .heading-default-font .h3, .heading-default-font .h4, .heading-default-font .h5, .heading-default-font .h6 {
font-family: 'Poppins', sans-serif;
}
.ft-heading {
font-family: 'Poppins', sans-serif;
}
h1, .h1 {
font-size: 48px;
}
h2, .h2 {
font-size: 36px;
}
h3, .h3 {
font-size: 24px;
}
h4, .h4 {
font-size: 22px;
}
h5, .h5 {
font-size: 18px;
}
h6, .h6 {
font-size: 16px;
}
img {
max-width: 100%;
height: auto;
}
label {
margin-bottom: 0;
}
table {
border-bottom: 1px solid #ededed;
border-collapse: collapse;
border-spacing: 0;
line-height: 2;
margin: 0 0 20px;
width: 100%;
-webkit-border-radius: 0;
-khtml-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
}
table th {
color: #1e2331;
}
caption, td {
font-weight: normal;
text-align: left;
}
.table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
padding: 13px 8px;
}
th {
font-weight: 700;
}
td {
border-top: 1px solid #ededed;
padding: 6px 10px 6px 0; }
dl {
margin: 0 0 0 25px;
}
dl dt {
font-weight: normal;
line-height: 26px;
text-transform: uppercase;
font-weight: 700;
color: #000;
}
dl dd {
line-height: normal;
margin-bottom: 20px;
}
dl dd a {
color: #000;
}
dl dd a:hover {
color: #f00;
}
code, kbd {
background-color: transparent;
border-radius: 4px;
color: inherit;
font-size: 100%;
padding: 2px 4px;
-webkit-box-shadow: none;
-moz-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
}
ins {
color: #fff;
border: none;
padding: 2px;
text-decoration: none;
background-color: #f00;
}
pre {
background: #f5f5f5;
color: #666;
font-size: 14px;
margin: 20px 0;
overflow: auto;
padding: 20px;
white-space: pre-wrap;
word-wrap: break-word;
}
ol {
list-style: outside none decimal;
}
ul {
padding: 0;
margin: 0 0 15px;
}
ul li {
list-style-position: inside;
}
blockquote {
background-color: #f4f7fc;
font-size: 20px;
color: #333;
line-height: 1.7;
position: relative;
padding: 50px 30px 30px 115px;
font-family: 'Poppins', sans-serif;
clear: both;
margin: 40px 0;
overflow: hidden;
}
blockquote p {
margin-bottom: 0 !important;
}
blockquote cite {
font-style: normal;
display: block;
color: #b50d1c;
font-weight: 700;
font-size: 16px;
margin-top: 11px;
}
blockquote:before {
content: '\f10d';
font-family: "FontAwesome";
color: #f00;
font-size: 28px;
position: absolute;
left: 22px;
top: 10px;
font-style: normal;
background-color: #f00;
background-image: -webkit-gradient(linear, left top, right top, from(#f00), to(#b50d1c));
background-image: -webkit-linear-gradient(left, #f00, #b50d1c);
background-image: -moz-linear-gradient(left, #f00, #b50d1c);
background-image: -ms-linear-gradient(left, #f00, #b50d1c);
background-image: -o-linear-gradient(left, #f00, #b50d1c);
background-image: linear-gradient(left, #f00, #b50d1c);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f00', endColorStr='#b50d1c', gradientType='1');
background-color: transparent;
background-clip: text;
-moz-background-clip: text;
-webkit-background-clip: text;
text-fill-color: transparent;
-moz-text-fill-color: transparent;
-webkit-text-fill-color: transparent;
z-index: 2;
}
blockquote:after {
content: '';
z-index: 1;
height: 110px;
width: 110px;
background-color: #fff;
text-align: center;
position: absolute;
top: -24px;
left: -24px;
-webkit-border-radius: 110px;
-khtml-border-radius: 110px;
-moz-border-radius: 110px;
-ms-border-radius: 110px;
-o-border-radius: 110px;
border-radius: 110px;
}
@media screen and (max-width: 767px) {
blockquote {
padding-left: 20px;
padding-top: 110px;
font-size: 16px;
padding-right: 20px;
}
}
.dlab-divider {
height: 1px;
width: 100%;
margin: 30px 0;
background-color: #d3d3d3;
}
dl + h2 + ul {
padding-left: 35px;
}
dl + h2 + ul ul {
padding-left: 35px;
}
dl + h2 + ul ul li {
list-style: outside;
}
.post-password-form label {
display: block;
max-width: 60%;
}
.post-password-form input {
margin: 10px 0;
}
@media screen and (max-width: 767px) {
.post-password-form label {
max-width: 60%;
}
}
@font-face {
font-family: 'Droidsans';
src: url(//www.4cine.it/wp-content/themes/nimmo/assets/fonts/droidsans-webfont.woff2) format('woff2'), url(//www.4cine.it/wp-content/themes/nimmo/assets/fonts/droidsans-webfont.woff) format('woff');
font-weight: normal;
font-style: normal;
}
.ft-droidsans {
font-family: 'Droidsans';
}
#tslOverlay {
background: none !important;
}
.wp-block-button {
margin-bottom: 20px;
}
.wp-block-gallery .blocks-gallery-item {
float: left;
}
.wp-block-gallery .blocks-gallery-caption {
margin-bottom: 32px;
}
.entry-body .entry-content .wp-block-cover {
margin-bottom: 45px;
}
.entry-body .entry-content .wp-block-cover-text {
color: rgba(255, 255, 255, 0.87);
padding-left: 30px;
padding-right: 30px;
font-size: 24px;
line-height: 1.25;
}
.color-white {
color: #fff;
}
.d-table {
display: table;
}
.d-table-cell {
display: table-cell;
vertical-align: middle;
}
.bg-image {
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.screen-reader-text {
display: none;
}
#content[tabindex="-1"]:focus {
outline: 0;
}
#content.zindex, .vc_row.zindex {
position: relative;
z-index: 9999;
}
.fw700 {
font-weight: 700;
}
.fw600 {
font-weight: 600;
}
.fw500 {
font-weight: 500;
}
.alignleft, .alignright, .aligncenter {
margin-bottom: 20px;
}
.alignleft {
display: inline;
float: left;
margin-right: 25px;
}
.alignright {
display: inline;
float: right;
margin-left: 1.5em;
}
.aligncenter {
clear: both;
display: block;
margin-left: auto;
margin-right: auto;
}
.bg-overlay {
position: relative;
}
.bg-overlay:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: inherit;
display: block;
}
.bg-gradient {
position: relative;
}
.bg-gradient:before {
background-color: #f00;
background-image: -webkit-gradient(linear, left top, right top, from(#f00), to(#b50d1c));
background-image: -webkit-linear-gradient(left, #f00, #b50d1c);
background-image: -moz-linear-gradient(left, #f00, #b50d1c);
background-image: -ms-linear-gradient(left, #f00, #b50d1c);
background-image: -o-linear-gradient(left, #f00, #b50d1c);
background-image: linear-gradient(left, #f00, #b50d1c);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f00', endColorStr='#b50d1c', gradientType='1');
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: block;
}
.el-overlay {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
}
.box-white {
background-color: #fff;
border: 1px solid #e5e5e5;
-webkit-border-radius: 6px;
-khtml-border-radius: 6px;
-moz-border-radius: 6px;
-ms-border-radius: 6px;
-o-border-radius: 6px;
border-radius: 6px;
padding: 29px;
}
.box-white .menu li {
font-size: 18px;
line-height: 29px;
font-weight: 600;
}
.bg-primary {
background-color: #f00 !important;
}
.br-radius {
-webkit-border-radius: 4px;
-khtml-border-radius: 4px;
-moz-border-radius: 4px;
-ms-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
}
.ct-box {
padding: 30px;
-webkit-border-radius: 5px;
-khtml-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
border-radius: 5px;
background-color: #fff;
-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
-khtml-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
-moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
-ms-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
-o-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
}
.ct-bgimage {
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.row-visible {
overflow: visible !important;
}
.ct-close {
display: inline-block;
height: 32px;
line-height: 32px;
width: 30px;
cursor: pointer;
position: relative;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
}
.ct-close:before, .ct-close:after {
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
content: "";
background-color: #282828;
display: block;
height: 2px;
left: 0;
margin: auto;
position: absolute;
right: 0;
width: 22px;
top: 21px;
}
.ct-close:before {
top: 15px;
-webkit-transform: rotate(45deg);
-khtml-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}
.ct-close:after {
-webkit-transform: rotate(-45deg);
-khtml-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
top: 15px;
}
.ct-close:hover:before, .ct-close:hover:after {
background-color: #f90244;
}
.ct-icon-plus {
height: 10px;
width: 10px;
position: relative;
display: inline-block;
}
.ct-icon-plus:before, .ct-icon-plus:after {
content: "";
background-color: #b50d1c;
position: absolute;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
}
.ct-icon-plus:before {
width: 100%;
height: 2px;
top: 4px;
left: 0;
}
.ct-icon-plus:after {
width: 2px;
height: 100%;
left: 4px;
top: 0;
}
.inline-block {
display: inline-block;
vertical-align: middle;
}
.text-right, .align-right {
text-align: right;
}
.text-left, .align-left {
text-align: left;
}
.text-center, .align-center {
text-align: center;
}
.style-none {
list-style: none;
margin: 0;
}
.z-index-1 {
z-index: 1;
}
.text-gradient, .ct-heading h3.ct-heading-tag cite, .ct-heading .ct-typingout-typed, .ct-fancybox-default .ct-fancybox-icon i, .ct-counter-default .ct-counter-icon i, .ct-contact-form-default.style-startup .input-filled > label i, .ct-contact-info1.style2 i, .ct-fancy-box-carousel1 .fancy-box-icon i, .ct-grid-blog-layout2 .entry-readmore a, .ct-list.style1 .ct-list-icon i, .text-gradient2 {
background-color: #f00;
background-image: -webkit-gradient(linear, left top, right top, from(#f00), to(#b50d1c));
background-image: -webkit-linear-gradient(left, #f00, #b50d1c);
background-image: -moz-linear-gradient(left, #f00, #b50d1c);
background-image: -ms-linear-gradient(left, #f00, #b50d1c);
background-image: -o-linear-gradient(left, #f00, #b50d1c);
background-image: linear-gradient(left, #f00, #b50d1c);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f00', endColorStr='#b50d1c', gradientType='1');
background-color: transparent;
background-clip: text;
-moz-background-clip: text;
-webkit-background-clip: text;
text-fill-color: transparent;
-moz-text-fill-color: transparent;
-webkit-text-fill-color: transparent;
}
.text-gradient2 {
background-color: #b50d1c;
background-image: -webkit-gradient(linear, left top, right top, from(#b50d1c), to(#f90244));
background-image: -webkit-linear-gradient(left, #b50d1c, #f90244);
background-image: -moz-linear-gradient(left, #b50d1c, #f90244);
background-image: -ms-linear-gradient(left, #b50d1c, #f90244);
background-image: -o-linear-gradient(left, #b50d1c, #f90244);
background-image: linear-gradient(left, #b50d1c, #f90244);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#b50d1c', endColorStr='#f90244', gradientType='1');
}
.ft-heebo {
font-family: 'Heebo', sans-serif;
}
@media screen and (min-width: 992px) {
.flex {
display: flex;
display: -webkit-flex;
display: -ms-flex;
flex-wrap: wrap;
}
.flex .flex-col {
display: flex !important;
display: -webkit-flex !important;
display: -ms-flex !important;
flex-wrap: wrap;
align-items: center;
-webkit-align-items: center;
-ms-align-items: center;
}
.flex-two {
display: flex;
display: -webkit-flex;
display: -ms-flex;
flex-flow: row wrap;
}
.flex-two .flex-col {
flex: 1 0 0px;
-webkit-flex: 1 0 0px;
-ms-flex: 1 0 0px;
display: flex !important;
display: -webkit-flex !important;
display: -ms-flex !important;
flex-wrap: wrap;
align-items: center;
-webkit-align-items: center;
-ms-align-items: center;
}
}
@media screen and (min-width: 992px) {
.text-left-lg {
text-align: left !important;
}
.text-right-lg {
text-align: right !important;
}
}
@media screen and (max-width: 1199px) {
.align-center-md {
text-align: center;
}
.align-left-md {
text-align: left;
}
.align-right-md {
text-align: right;
}
}
@media screen and (max-width: 991px) {
.text-center-md {
text-align: center !important;
}
.text-left-md {
text-align: left !important;
}
.text-right-md {
text-align: right !important;
}
.align-center-sm {
text-align: center;
}
.align-left-sm {
text-align: left;
}
.align-right-sm {
text-align: right;
}
}
@media screen and (max-width: 767px) {
.text-center-sm {
text-align: center !important;
}
.text-left-sm {
text-align: left !important;
}
.text-right-sm {
text-align: right !important;
}
.align-center-xs {
text-align: center;
}
.align-left-xs {
text-align: left;
}
.align-right-xs {
text-align: right;
}
}
input::-moz-placeholder, textarea::-moz-placeholder {
color: inherit;
opacity: 1;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
color: inherit;
opacity: 1;
}
input::-o-placeholder, textarea::-o-placeholder {
color: inherit;
opacity: 1;
}
input::-ms-placeholder, textarea::-ms-placeholder {
color: inherit;
opacity: 1;
}
input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="tel"], input[type="number"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea, select, .nice-select {
background-color: #fff;
border: 1px solid #e5e5e5;
color: #333;
padding: 8px 22px;
line-height: normal;
font-size: 15px;
height: 48px;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
-webkit-box-shadow: none;
-khtml-box-shadow: none;
-moz-box-shadow: none;
-ms-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
-webkit-border-radius: 3px;
-khtml-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
width: 100%;
outline: none;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="number"]:focus, input[type="range"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="week"]:focus, input[type="time"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="color"]:focus, textarea:focus, select:focus, .nice-select:focus {
border-color: #f00;
}
select {
height: 47px;
}
textarea {
line-height: normal;
padding-top: 14px;
padding-bottom: 14px;
height: 195px;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="number"]:focus, input[type="tel"]:focus, input[type="range"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="week"]:focus, input[type="time"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="color"]:focus, textarea:focus, select:focus {
outline: 0;
border-color: #f00;
}
.ct-select form {
position: relative;
background-color: #fff;
-webkit-border-radius: 4px;
-khtml-border-radius: 4px;
-moz-border-radius: 4px;
-ms-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
}
.ct-select select {
height: 39px;
line-height: 37px;
font-size: 15px;
background-color: transparent;
position: relative;
z-index: 99;
-webkit-appearance: none;
-khtml-appearance: none;
-moz-appearance: none;
-ms-appearance: none;
-o-appearance: none;
appearance: none;
}
.ct-select i {
position: absolute;
right: 14px;
top: 50%;
-webkit-transform: translate(0px, -50%);
-khtml-transform: translate(0px, -50%);
-moz-transform: translate(0px, -50%);
-ms-transform: translate(0px, -50%);
-o-transform: translate(0px, -50%);
transform: translate(0px, -50%);
}
.wpcf7-form .wpcf7-form-control-wrap {
margin-bottom: 10px;
display: block;
}
.wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
display: none;
}
.wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid {
border-color: #f13c3c !important;
}
.wpcf7-form .wpcf7-response-output {
border: medium none;
font-style: italic;
padding: 0;
margin: 20px 0 0;
}
.wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok {
color: #398f14;
}
.wpcf7-form .wpcf7-response-output.wpcf7-validation-errors {
color: #f13c3c;
}
.wpcf7-form .ajax-loader {
display: none !important;
}
.wpcf7-form .wpcf7-menu {
display: block;
}
.wpcf7-form .wpcf7-menu select {
background-color: transparent;
-webkit-appearance: none;
-khtml-appearance: none;
-moz-appearance: none;
-ms-appearance: none;
-o-appearance: none;
appearance: none;
position: relative;
z-index: 99;
}
.wpcf7-form .wpcf7-menu select option {
padding: 5px;
}
.select2 .select2-selection--single {
-webkit-border-radius: 0px;
-khtml-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
border: 1px solid #e7e8e9;
height: 47px;
}
.select2 .select2-selection--single .select2-selection__rendered {
padding-left: 15px;
line-height: 47px;
}
.select2 .select2-selection--single .select2-selection__arrow {
right: 8px;
top: 50%;
-webkit-transform: translate(0px, -50%);
-khtml-transform: translate(0px, -50%);
-moz-transform: translate(0px, -50%);
-ms-transform: translate(0px, -50%);
-o-transform: translate(0px, -50%);
transform: translate(0px, -50%);
}
#ui-datepicker-div {
-webkit-border-radius: 3px;
-khtml-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.24);
border: none;
padding: 0;
}
#ui-datepicker-div .ui-datepicker-header {
background-color: #f00;
border: none;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
-webkit-border-radius: 3px 3px 0 0;
-khtml-border-radius: 3px 3px 0 0;
-moz-border-radius: 3px 3px 0 0;
-ms-border-radius: 3px 3px 0 0;
-o-border-radius: 3px 3px 0 0;
border-radius: 3px 3px 0 0;
font-weight: normal;
padding: 0;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev, #ui-datepicker-div .ui-datepicker-header .ui-datepicker-next {
height: 40px;
width: 40px;
line-height: 40px;
text-align: center;
background-color: transparent;
border: none;
cursor: pointer;
padding: 0;
margin: 0;
top: 0;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev span, #ui-datepicker-div .ui-datepicker-header .ui-datepicker-next span {
display: none;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev:before, #ui-datepicker-div .ui-datepicker-header .ui-datepicker-next:before {
font-family: "Material-Design-Iconic-Font";
font-size: 16px;
color: rgba(255, 255, 255, 0.4);
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev {
left: 0;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev:before {
content: "\f2f4";
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next {
right: 0;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next:before {
content: "\f2f6";
}
#ui-datepicker-div .ui-datepicker-title {
color: #fff;
font-size: 16px;
line-height: 40px;
margin: 0 40px;
}
#ui-datepicker-div .ui-datepicker-title select {
font-size: inherit;
color: #fff;
line-height: normal;
height: inherit;
background-color: transparent;
-webkit-appearance: none;
-khtml-appearance: none;
-moz-appearance: none;
-ms-appearance: none;
-o-appearance: none;
appearance: none;
margin: 0;
padding: 0;
width: inherit;
border: none;
}
#ui-datepicker-div .ui-datepicker-title select option {
padding: 0;
}
#ui-datepicker-div .ui-datepicker-calendar {
background-color: transparent;
border: none;
margin: 0;
}
#ui-datepicker-div .ui-datepicker-calendar thead {
background-color: #f00;
}
#ui-datepicker-div .ui-datepicker-calendar th span {
text-transform: uppercase;
color: #fff;
}
#ui-datepicker-div .ui-datepicker-calendar td {
font-size: 12px;
}
#ui-datepicker-div .ui-datepicker-calendar td a, #ui-datepicker-div .ui-datepicker-calendar td span {
background-color: transparent;
border: medium none;
text-align: center;
}
#ui-datepicker-div .ui-datepicker-calendar td a.ui-state-active, #ui-datepicker-div .ui-datepicker-calendar td span.ui-state-active, #ui-datepicker-div .ui-datepicker-calendar td a.ui-state-highlight, #ui-datepicker-div .ui-datepicker-calendar td span.ui-state-highlight {
background-color: #f00;
color: #fff;
-webkit-border-radius: 3px;
-khtml-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
}
#ui-datepicker-div .ui-datepicker-calendar td a.ui-state-highlight, #ui-datepicker-div .ui-datepicker-calendar td span.ui-state-highlight {
background-color: rgba(255, 0, 0, 0.7);
}
form .select2-container--default {
width: 100% !important;
}
form .select2-container--default .select2-selection {
border: 1px solid #e7e8e9;
height: 47px;
}
form .select2-container--default .select2-selection .select2-selection__rendered {
line-height: 47px;
padding-left: 15px;
}
form .select2-container--default .select2-selection .select2-selection__arrow {
right: 10px;
top: 50%;
color: #8f8f8f;
}
form .select2-container--default .select2-selection .select2-selection__clear {
height: 20px;
line-height: 20px;
position: absolute;
right: 30px;
text-align: center;
top: 50%;
-webkit-transform: translate(0px, -50%);
-khtml-transform: translate(0px, -50%);
-moz-transform: translate(0px, -50%);
-ms-transform: translate(0px, -50%);
-o-transform: translate(0px, -50%);
transform: translate(0px, -50%);
width: 20px;
color: #8f8f8f;
}
form .select2-container--default .select2-selection .select2-selection__placeholder {
color: rgba(55, 55, 55, 0.87);
}
.select2-container.select2-container--open .select2-dropdown {
border-color: #e7e8e9;
}
.select2-container.select2-container--open .select2-dropdown .select2-search__field {
border: 1px solid #e7e8e9;
padding-left: 15px;
padding-right: 15px;
}
.select2-container.select2-container--open .select2-results li.select2-results__option--highlighted {
background-color: #f00;
}
.ct-field-checkbox {
position: relative;
padding-left: 27px;
}
.ct-field-checkbox .icon-check {
border: 1px solid #e1e3e3;
border-radius: 1px;
display: block;
height: 17px;
width: 17px;
position: absolute;
top: 50%;
left: 0;
-webkit-transform: translate(0, -50%);
-khtml-transform: translate(0, -50%);
-moz-transform: translate(0, -50%);
-ms-transform: translate(0, -50%);
-o-transform: translate(0, -50%);
transform: translate(0, -50%);
z-index: 1;
}
.ct-field-checkbox .icon-check:before {
content: "\f00c";
font-size: 13px;
color: #f00;
position: absolute;
top: -4px;
left: 1px;
font-family: FontAwesome;
opacity: 0;
}
.ct-field-checkbox input {
bottom: 0;
height: 100%;
left: 0;
position: absolute;
width: 100%;
opacity: 0;
cursor: pointer;
z-index: 3;
}
.ct-field-checkbox input:checked + .icon-check:before {
opacity: 1;
}
.nice-select {
padding-top: 0;
padding-bottom: 0;
position: relative;
padding-right: 40px;
cursor: pointer;
-webkit-tap-highlight-color: transparent;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
white-space: nowrap;
}
.nice-select:after {
content: "\f2f9";
font-family: "Material-Design-Iconic-Font";
font-size: 18px;
color: #222;
position: absolute;
right: 18px;
top: 50%;
-webkit-transform: translate(0px, -50%);
-khtml-transform: translate(0px, -50%);
-moz-transform: translate(0px, -50%);
-ms-transform: translate(0px, -50%);
-o-transform: translate(0px, -50%);
transform: translate(0px, -50%);
}
.nice-select span.current {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
line-height: 48px;
}
.nice-select .option {
text-overflow: ellipsis;
overflow: hidden;
}
.nice-select.open .list {
width: 100%;
max-height: 250px;
overflow: auto;
opacity: 1;
pointer-events: auto;
-webkit-transform: scale(1) translateY(0);
-ms-transform: scale(1) translateY(0);
transform: scale(1) translateY(0);
}
.nice-select.disabled {
border-color: #ededed;
color: #999;
pointer-events: none;
}
.nice-select.disabled:after {
border-color: #ccc;
}
.nice-select.wide {
width: 100%;
}
.nice-select.wide .list {
left: 0 !important;
right: 0 !important;
}
.nice-select.right {
float: right;
}
.nice-select.right .list {
left: auto;
right: 0;
}
.nice-select.small {
font-size: 12px;
height: 36px;
line-height: 34px;
}
.nice-select.small:after {
height: 4px;
width: 4px;
}
.nice-select.small .option {
line-height: 34px;
min-height: 34px;
}
.nice-select .list {
-webkit-border-radius: 3px;
-khtml-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
margin-top: 3px !important;
background-color: #fff;
padding: 12px 0px;
box-sizing: border-box;
opacity: 0;
overflow: hidden;
pointer-events: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
-webkit-transform-origin: 50% 0;
-ms-transform-origin: 50% 0;
transform-origin: 50% 0;
-webkit-transform: scale(0.75) translateY(-21px);
-ms-transform: scale(0.75) translateY(-21px);
transform: scale(0.75) translateY(-21px);
-webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
z-index: 9;
color: #6c757d;
border: 1px solid #efefef;
font-size: 15px;
}
.nice-select .list .selected {
color: #f00;
}
.nice-select .list:hover .option:not(:hover) {
background-color: transparent !important;
}
.nice-select .option {
cursor: pointer;
line-height: normal;
list-style: none;
outline: none;
padding: 6px 22px;
text-align: left;
-webkit-transition: all 0.2s;
-khtml-transition: all 0.2s;
-moz-transition: all 0.2s;
-ms-transition: all 0.2s;
-o-transition: all 0.2s;
transition: all 0.2s;
margin-bottom: 0 !important;
}
.nice-select .option:hover {
color: #f00;
}
.nice-select .option.selected {
font-weight: 700;
}
.nice-select .option.disabled {
background-color: transparent;
color: #999;
cursor: default;
}
.no-csspointerevents .nice-select .list {
display: none;
}
.no-csspointerevents .nice-select.open .list {
display: block;
}
body .booked-calendar-wrap .booked-appt-list .timeslot .timeslot-title {
color: #b50d1c;
}
body #content #booked-profile-page .booked-profile-header, body #content table.booked-calendar th {
background-color: #f00 !important;
}
body #content table.booked-calendar tr:not(.days) th {
background-color: rgba(255, 0, 0, 0.8) !important;
}
body #booked-profile-page input[type="submit"].button-primary:hover, body table.booked-calendar input[type="submit"].button-primary:hover, body .booked-list-view button.button:hover, body .booked-list-view input[type="submit"].button-primary:hover, body .booked-modal input[type="submit"].button-primary:hover, body table.booked-calendar .booked-appt-list .timeslot .timeslot-people button:hover, body #booked-profile-page .appt-block .google-cal-button > a:hover {
background-color: #b50d1c !important;
border-color: #b50d1c !important;
}
#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td.ui-datepicker-today a, #ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td.ui-datepicker-today a:hover, body #booked-profile-page input[type="submit"].button-primary, body table.booked-calendar input[type="submit"].button-primary, body .booked-list-view button.button, body .booked-list-view input[type="submit"].button-primary, body .booked-list-view button.button, body .booked-list-view input[type="submit"].button-primary, body .booked-modal input[type="submit"].button-primary, body table.booked-calendar .booked-appt-list .timeslot .timeslot-people button, body #booked-profile-page .booked-profile-appt-list .appt-block.approved .status-block, body #booked-profile-page .appt-block .google-cal-button > a, body .booked-modal p.booked-title-bar, body table.booked-calendar td:hover .date span, body .booked-list-view a.booked_list_date_picker_trigger.booked-dp-active, body .booked-list-view a.booked_list_date_picker_trigger.booked-dp-active:hover, .booked-ms-modal .booked-book-appt {
background-color: #f00 !important;
border-color: #f00 !important;
}
body #content table.booked-calendar td.today .date span {
border-color: #b50d1c !important;
}
body #content table.booked-calendar td.today:hover .date span {
background-color: #b50d1c !important;
}
body #content table.booked-calendar td.active:hover .date span {
color: #fff !important;
}
.btn, button, .button, input[type="submit"] {
background-color: #f00;
background-image: -webkit-gradient(linear, left top, right top, from(#f00), to(#b50d1c));
background-image: -webkit-linear-gradient(left, #f00, #b50d1c);
background-image: -moz-linear-gradient(left, #f00, #b50d1c);
background-image: -ms-linear-gradient(left, #f00, #b50d1c);
background-image: -o-linear-gradient(left, #f00, #b50d1c);
background-image: linear-gradient(left, #f00, #b50d1c);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f00', endColorStr='#b50d1c', gradientType='1');
border: none;
color: #fff;
font-size: 15px;
padding: 0 32px;
line-height: 50px;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
-webkit-border-radius: 50px;
-khtml-border-radius: 50px;
-moz-border-radius: 50px;
-ms-border-radius: 50px;
-o-border-radius: 50px;
border-radius: 50px;
position: relative;
display: inline-block;
text-align: center;
cursor: pointer;
position: relative;
overflow: hidden;
z-index: 1;
font-weight: 500;
outline: none;
white-space: nowrap;
-webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.36);
-khtml-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.36);
-moz-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.36);
-ms-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.36);
-o-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.36);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.36);
text-transform: uppercase;
}
.btn:hover, button:hover, .button:hover, input[type="submit"]:hover, .btn:focus, button:focus, .button:focus, input[type="submit"]:focus, .btn:active, button:active, .button:active, input[type="submit"]:active {
outline: none;
text-decoration: none;
color: #fff;
background-color: #000;
background-image: none;
}
.btn i {
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
}
.btn:before, .btn:after {
background-color: #fff;
content: "";
height: 100%;
left: -110%;
opacity: 0.1;
position: absolute;
top: 0;
-webkit-transition: all 0.5s ease 0s;
-khtml-transition: all 0.5s ease 0s;
-moz-transition: all 0.5s ease 0s;
-ms-transition: all 0.5s ease 0s;
-o-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s;
-webkit-transform: skewX(25deg);
-khtml-transform: skewX(25deg);
-moz-transform: skewX(25deg);
-ms-transform: skewX(25deg);
-o-transform: skewX(25deg);
transform: skewX(25deg);
width: 100%;
z-index: -1;
}
.btn:hover, .btn:focus, .btn:active {
background-color: #f00;
background-image: -webkit-gradient(linear, left top, right top, from(#f00), to(#b50d1c));
background-image: -webkit-linear-gradient(left, #f00, #b50d1c);
background-image: -moz-linear-gradient(left, #f00, #b50d1c);
background-image: -ms-linear-gradient(left, #f00, #b50d1c);
background-image: -o-linear-gradient(left, #f00, #b50d1c);
background-image: linear-gradient(left, #f00, #b50d1c);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f00', endColorStr='#b50d1c', gradientType='1');
}
.btn:hover:before, .btn:focus:before, .btn:active:before {
left: -10%;
-webkit-transition: all 0.3s ease 0s;
-khtml-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.btn:hover:after, .btn:focus:after, .btn:active:after {
left: -20%;
}
.btn.size-lg {
line-height: 58px;
padding: 0 44px;
}
.btn.btn-primary {
background-color: #f00;
background-image: none;
}
.btn.btn-secondary {
background-color: #b50d1c;
background-image: none;
}
.btn.btn-third {
background-color: #000;
background-image: none;
}
.btn.no-shadow {
-webkit-box-shadow: none;
-khtml-box-shadow: none;
-moz-box-shadow: none;
-ms-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
}
.btn.btn-outline {
color: #2d3136;
background-color: transparent;
background-image: none;
}
.btn.btn-outline i {
color: #f00;
}
.btn.btn-outline span:before {
content: '';
background-color: #f00;
background-image: -webkit-gradient(linear, left top, right top, from(#f00), to(#b50d1c));
background-image: -webkit-linear-gradient(left, #f00, #b50d1c);
background-image: -moz-linear-gradient(left, #f00, #b50d1c);
background-image: -ms-linear-gradient(left, #f00, #b50d1c);
background-image: -o-linear-gradient(left, #f00, #b50d1c);
background-image: linear-gradient(left, #f00, #b50d1c);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f00', endColorStr='#b50d1c', gradientType='1');
z-index: -2;
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
-webkit-border-radius: 50px;
-khtml-border-radius: 50px;
-moz-border-radius: 50px;
-ms-border-radius: 50px;
-o-border-radius: 50px;
border-radius: 50px;
}
.btn.btn-outline span:after {
content: '';
background-color: #fff;
z-index: -1;
position: absolute;
top: 2px;
left: 2px;
right: 2px;
bottom: 2px;
-webkit-border-radius: 50px;
-khtml-border-radius: 50px;
-moz-border-radius: 50px;
-ms-border-radius: 50px;
-o-border-radius: 50px;
border-radius: 50px;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
}
.btn.btn-outline:hover {
color: #fff;
}
.btn.btn-outline:hover i {
color: #fff;
}
.btn.btn-outline:hover span:after {
background-color: transparent;
}
.btn.btn-shadow {
-webkit-box-shadow: 0px 2px 10px rgba(34, 34, 34, 0.36);
-khtml-box-shadow: 0px 2px 10px rgba(34, 34, 34, 0.36);
-moz-box-shadow: 0px 2px 10px rgba(34, 34, 34, 0.36);
-ms-box-shadow: 0px 2px 10px rgba(34, 34, 34, 0.36);
-o-box-shadow: 0px 2px 10px rgba(34, 34, 34, 0.36);
box-shadow: 0px 2px 10px rgba(34, 34, 34, 0.36);
}
.btn.btn-gradient1, .btn.btn-gray1 {
-webkit-box-shadow: none;
-khtml-box-shadow: none;
-moz-box-shadow: none;
-ms-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
background-image: none;
background-color: transparent;
-webkit-border-radius: 0px;
-khtml-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
overflow: visible;
font-size: 15px;
font-weight: 700;
padding: 0 34px;
line-height: 60px;
text-transform: capitalize;
font-family: 'Poppins', sans-serif;
}
.btn.btn-gradient1:before, .btn.btn-gray1:before {
left: 0;
background-image: -webkit-linear-gradient(90deg, #b50d1c 0%, #f90244 50%, #b50d1c);
background-image: -moz-linear-gradient(90deg, #b50d1c 0%, #f90244 50%, #b50d1c);
background-image: -ms-linear-gradient(90deg, #b50d1c 0%, #f90244 50%, #b50d1c);
background-image: -o-linear-gradient(90deg, #b50d1c 0%, #f90244 50%, #b50d1c);
background-image: linear-gradient(90deg, #b50d1c 0%, #f90244 50%, #b50d1c);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='', endColorStr='');
background-size: 300%, 1px;
background-position: 0%;
opacity: 1;
-webkit-transform: skewX(-13deg);
-khtml-transform: skewX(-13deg);
-moz-transform: skewX(-13deg);
-ms-transform: skewX(-13deg);
-o-transform: skewX(-13deg);
transform: skewX(-13deg);
-webkit-box-shadow: 0 7px 18px rgba(249, 2, 68, 0.19);
-khtml-box-shadow: 0 7px 18px rgba(249, 2, 68, 0.19);
-moz-box-shadow: 0 7px 18px rgba(249, 2, 68, 0.19);
-ms-box-shadow: 0 7px 18px rgba(249, 2, 68, 0.19);
-o-box-shadow: 0 7px 18px rgba(249, 2, 68, 0.19);
box-shadow: 0 7px 18px rgba(249, 2, 68, 0.19);
}
.btn.btn-gradient1:after, .btn.btn-gray1:after {
display: none;
}
.btn.btn-gradient1:hover:before, .btn.btn-gray1:hover:before {
background-position: 100% !important;
}
.btn.btn-gradient2 {
line-height: 65px;
font-size: 16px;
font-weight: 700;
padding: 0 40px;
-webkit-border-radius: 5px;
-khtml-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
border-radius: 5px;
text-transform: capitalize;
font-family: 'Poppins', sans-serif;
-webkit-box-shadow: none !important;
-khtml-box-shadow: none !important;
-moz-box-shadow: none !important;
-ms-box-shadow: none !important;
-o-box-shadow: none !important;
box-shadow: none !important;
background-image: -webkit-linear-gradient(90deg, #f90244 0%, #b50d1c 50%, #f90244);
background-image: -moz-linear-gradient(90deg, #f90244 0%, #b50d1c 50%, #f90244);
background-image: -ms-linear-gradient(90deg, #f90244 0%, #b50d1c 50%, #f90244);
background-image: -o-linear-gradient(90deg, #f90244 0%, #b50d1c 50%, #f90244);
background-image: linear-gradient(90deg, #f90244 0%, #b50d1c 50%, #f90244);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='', endColorStr='');
background-size: 300%, 1px;
background-position: 0%;
}
.btn.btn-gradient2:before, .btn.btn-gradient2:after {
display: none;
}
.btn.btn-gradient2:hover, .btn.btn-gradient2:focus {
background-position: 100%;
}
.btn.btn-gray1 {
color: #162171;
}
.btn.btn-gray1:before {
background-color: #e6e6e6;
background-image: none;
-webkit-box-shadow: none;
-khtml-box-shadow: none;
-moz-box-shadow: none;
-ms-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
}
.btn.btn-gray1:hover {
color: #fff;
}
.btn.btn-gray1:hover:before {
background-color: #b50d1c;
}
.btn-align-center {
text-align: center;
}
.btn-align-right {
text-align: right;
}
.btn-group .btn + .btn {
margin-left: 30px;
}
.btn-block {
display: block;
}
.ct-button-wrapper i {
margin-left: 10px;
}
.ct-btn-group {
display: inline-block;
margin-right: 20px;
margin-bottom: 20px;
}
.ct-button-wrapper.layout-custom .btn {
color: #fafff8;
display: inline-flex;
align-items: center;
flex-wrap: nowrap;
width: inherit;
min-height: 58px;
}
.ct-button-wrapper.layout-custom .btn span {
text-transform: uppercase;
display: block;
line-height: 1;
text-align: left;
}
.ct-button-wrapper.layout-custom .btn cite {
text-transform: none;
display: block;
line-height: 1;
font-size: 12px;
font-style: normal;
margin-bottom: 8px;
}
.ct-button-wrapper.layout-custom .btn i {
font-size: 32px;
margin-left: 0;
margin-right: 14px;
}
.ct-button-wrapper.layout-custom .btn.btn-outline {
color: #2d3136;
}
.ct-button-wrapper.layout-custom .btn.btn-outline:hover {
color: #fff;
}
#header-wrap {
position: relative;
z-index: 999;
background-color: #fff;
}
#header-wrap .header-main.h-fixed {
-webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
-khtml-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
-moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
-ms-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
-o-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}
#header-wrap .header-main .row {
align-items: center;
}
#header-wrap .header-branding {
margin: 11px 15px;
position: relative;
flex-grow: 1;
opacity: 1;
}
#header-wrap .header-branding img {
max-height: 25px;
width: auto;
}
#header-wrap .header-branding .logo-sticky, #header-wrap .header-branding .logo-mobile, #header-wrap .header-branding .logo-dark {
position: absolute;
top: 0;
left: 0;
opacity: 0;
}
#header-wrap .header-branding.mobile {
display: none;
}
#header-wrap .hidden-sidebar-icon {
font-size: 27px;
color: #fff;
cursor: pointer;
margin-left: 50px;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
}
#header-wrap .hidden-sidebar-icon:hover {
color: #f00;
}
@media (min-width: 992px) and (max-width: 1199px) {
#header-wrap .hidden-sidebar-icon {
margin-left: 30px;
}
}
@media screen and (min-width: 1930px) {
#header-wrap.header-layout1 #header-main > .container {
max-width: 100%;
padding: 0 100px;
}
}
@media screen and (min-width: 1200px) {
#header-wrap .btn-header-mobile {
display: none;
}
#header-wrap .btn-header {
margin-left: 30px;
}
#header-wrap.header-layout1 #header-main {
position: absolute;
top: 0;
left: 0;
right: 0;
padding-top: 35px;
}
#header-wrap.header-layout1 #header-main .header-navigation {
display: flex;
align-items: center;
margin-left: 15px;
margin-right: 15px;
}
#header-wrap.header-layout1 #header-main .primary-menu > li > a:before {
content: '';
bottom: 0px;
left: 0;
height: 3px;
background-color: #000;
position: absolute;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
width: 0;
}
#header-wrap.header-layout1 #header-main .primary-menu > li.current-menu-item:not(.menu-item-type-custom) > a.no-one-page:before, #header-wrap.header-layout1 #header-main .primary-menu > li > a.current:before, #header-wrap.header-layout1 #header-main .primary-menu > li:hover > a:before {
width: 100%;
}
#header-wrap.header-layout1 #header-main.h-fixed .header-branding .logo-light {
opacity: 0;
}
#header-wrap.header-layout1 #header-main.h-fixed .header-branding .logo-sticky {
opacity: 1;
}
#header-wrap.header-layout1 #header-main.h-fixed .main-navigation {
border: none;
}
#header-wrap.header-layout1 #header-main.h-fixed .main-navigation .primary-menu > li > a {
line-height: 80px;
padding: 0;
}
#header-wrap.header-layout1 #header-main.h-fixed .main-navigation .primary-menu > li > a:before {
bottom: 0px;
}
#header-wrap.header-layout2 .row {
flex-wrap: nowrap;
align-items: center;
}
#header-wrap.header-layout2 .header-menu-left, #header-wrap.header-layout2 .header-branding, #header-wrap.header-layout2 .header-menu-right {
margin-left: 15px;
margin-right: 15px;
}
#header-wrap.header-layout2 .header-menu-left, #header-wrap.header-layout2 .header-menu-right {
width: 35%;
}
#header-wrap.header-layout2 .header-menu-left .primary-menu, #header-wrap.header-layout2 .header-menu-right .primary-menu {
justify-content: space-between;
display: flex;
}
#header-wrap.header-layout2 .header-menu-left .primary-menu > li:first-child > a {
padding-left: 0;
}
#header-wrap.header-layout2 .header-menu-right .primary-menu > li:last-child > a {
padding-right: 0;
}
#header-wrap.header-layout2 .header-branding {
width: 30%;
text-align: center;
margin: 10px 0;
}
#header-wrap.header-layout2 .header-navigation {
width: 100%;
}
#header-wrap.header-layout2 .header-navigation .main-navigation-inner {
display: flex;
align-items: center;
flex-wrap: nowrap;
}
#header-wrap.header-layout2 #header-main {
position: absolute;
top: 0;
left: 0;
right: 0;
}
#header-wrap.header-layout2 #header-main .header-branding a {
right: 0;
}
#header-wrap.header-layout2 #header-main:not(.h-fixed) .header-branding .logo-light {
opacity: 0;
}
#header-wrap.header-layout2 #header-main:not(.h-fixed) .header-branding .logo-dark {
opacity: 1;
}
#header-wrap.header-layout2 #header-main:not(.h-fixed) .primary-menu > li > a {
line-height: 120px;
color: #2c3035;
padding: 0;
}
#header-wrap.header-layout2 #header-main:not(.h-fixed) .primary-menu > li > a:hover, #header-wrap.header-layout2 #header-main:not(.h-fixed) .primary-menu > li > a.current {
color: #f00;
}
#header-wrap.header-layout2 #header-main.h-fixed .primary-menu > li > a {
line-height: 80px;
padding: 0;
}
#header-wrap.header-layout2 #header-main.h-fixed .primary-menu > li > a:hover, #header-wrap.header-layout2 #header-main.h-fixed .primary-menu > li > a.current {
color: #f00;
}
#header-wrap.header-layout3 #header-main {
background-color: #fff !important;
left: 0;
right: 0;
margin: auto;
}
#header-wrap.header-layout3 #header-main:not(.h-fixed) {
position: absolute;
top: 50px;
max-width: 1140px;
padding: 0 15px;
}
#header-wrap.header-layout3 #header-main .header-branding .logo-light {
opacity: 0;
}
#header-wrap.header-layout3 #header-main .header-branding .logo-dark {
opacity: 1;
}
#header-wrap.header-layout3 #header-main .header-navigation {
display: flex;
align-items: center;
margin-left: 15px;
margin-right: 15px;
}
#header-wrap.header-layout3 #header-main .primary-menu > li > a {
line-height: 72px;
color: #2c3035;
padding: 0;
}
#header-wrap.header-layout3 #header-main .primary-menu > li.current-menu-item:not(.menu-item-type-custom) > a.no-one-page, #header-wrap.header-layout3 #header-main .primary-menu > li > a.current, #header-wrap.header-layout3 #header-main .primary-menu > li:hover > a {
color: #f00;
}
#header-wrap.header-layout3 #header-main .hidden-sidebar-icon {
color: #2c3035;
}
#header-wrap.header-layout3 #header-main .hidden-sidebar-icon:hover {
color: #f00;
}
#header-wrap.header-layout4 #header-main {
background-color: #f00;
background-image: -webkit-gradient(linear, left top, right top, from(#f00), to(#b50d1c));
background-image: -webkit-linear-gradient(left, #f00, #b50d1c);
background-image: -moz-linear-gradient(left, #f00, #b50d1c);
background-image: -ms-linear-gradient(left, #f00, #b50d1c);
background-image: -o-linear-gradient(left, #f00, #b50d1c);
background-image: linear-gradient(left, #f00, #b50d1c);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f00', endColorStr='#b50d1c', gradientType='1');
}
#header-wrap.header-layout4 #header-main .header-navigation {
display: flex;
align-items: center;
margin-left: 15px;
margin-right: 15px;
}
#header-wrap.header-layout4 #header-main .primary-menu > li > a {
line-height: 80px;
padding: 0;
}
#header-wrap.header-layout4 #header-main .primary-menu > li > a:before {
content: '';
position: absolute;
bottom: 0px;
left: 0;
width: 100%;
height: 3px;
background-color: #fff;
-webkit-transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
-khtml-transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
-moz-transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
-ms-transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
-o-transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
transform-origin: right center;
-webkit-transform-origin: right center;
-webkit-transform: scale(0, 1);
-khtml-transform: scale(0, 1);
-moz-transform: scale(0, 1);
-ms-transform: scale(0, 1);
-o-transform: scale(0, 1);
transform: scale(0, 1);
}
#header-wrap.header-layout4 #header-main .primary-menu > li.current-menu-item:not(.menu-item-type-custom) > a.no-one-page:before, #header-wrap.header-layout4 #header-main .primary-menu > li > a.current:before, #header-wrap.header-layout4 #header-main .primary-menu > li.current-menu-item > a:before, #header-wrap.header-layout4 #header-main .primary-menu > li:hover > a:before {
transform-origin: left center;
-webkit-transform-origin: left center;
-webkit-transform: scale(1, 1);
-khtml-transform: scale(1, 1);
-moz-transform: scale(1, 1);
-ms-transform: scale(1, 1);
-o-transform: scale(1, 1);
transform: scale(1, 1);
}
#header-wrap.header-layout5 .header-branding {
flex-grow: inherit;
z-index: 2;
}
#header-wrap.header-layout5 .header-branding img {
max-height: 30px;
}
#header-wrap.header-layout5 #header-main {
position: absolute;
top: 0;
left: 0;
right: 0;
}
#header-wrap.header-layout5 #header-main .header-navigation {
display: flex;
align-items: center;
margin-left: 15px;
margin-right: 15px;
position: relative;
z-index: 1;
padding-right: 63px;
}
#header-wrap.header-layout5 #header-main .header-navigation:before {
content: '';
width: 5000px;
top: 0;
height: 100%;
right: 0;
background-color: #162171;
position: absolute;
z-index: -1;
-webkit-transform: skew(-18deg);
-khtml-transform: skew(-18deg);
-moz-transform: skew(-18deg);
-ms-transform: skew(-18deg);
-o-transform: skew(-18deg);
transform: skew(-18deg);
}
#header-wrap.header-layout5 #header-main .primary-menu > li {
margin-left: 36px;
}
#header-wrap.header-layout5 #header-main .primary-menu > li > a {
line-height: 125px;
padding: 0;
font-size: 15px;
}
#header-wrap.header-layout5 #header-main .primary-menu > li > a:before {
content: '';
bottom: 0px;
left: 0;
height: 7px;
background-color: #b50d1c;
background-image: -webkit-gradient(linear, left top, right top, from(#b50d1c), to(#f90244));
background-image: -webkit-linear-gradient(left, #b50d1c, #f90244);
background-image: -moz-linear-gradient(left, #b50d1c, #f90244);
background-image: -ms-linear-gradient(left, #b50d1c, #f90244);
background-image: -o-linear-gradient(left, #b50d1c, #f90244);
background-image: linear-gradient(left, #b50d1c, #f90244);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#b50d1c', endColorStr='#f90244', gradientType='1');
position: absolute;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
width: 0;
}
#header-wrap.header-layout5 #header-main .primary-menu > li.current-menu-item:not(.menu-item-type-custom) > a.no-one-page:before, #header-wrap.header-layout5 #header-main .primary-menu > li > a.current:before, #header-wrap.header-layout5 #header-main .primary-menu > li:hover > a:before {
width: 100%;
}
#header-wrap.header-layout5 #header-main .primary-menu > li .sub-menu {
background-color: #162171;
}
#header-wrap.header-layout5 #header-main.h-fixed .header-navigation:before {
-webkit-box-shadow: 0 3px 16px rgba(22, 33, 113, 0.19);
-khtml-box-shadow: 0 3px 16px rgba(22, 33, 113, 0.19);
-moz-box-shadow: 0 3px 16px rgba(22, 33, 113, 0.19);
-ms-box-shadow: 0 3px 16px rgba(22, 33, 113, 0.19);
-o-box-shadow: 0 3px 16px rgba(22, 33, 113, 0.19);
box-shadow: 0 3px 16px rgba(22, 33, 113, 0.19);
}
#header-wrap.header-layout5 #header-main.h-fixed .header-branding .logo-light {
opacity: 0;
}
#header-wrap.header-layout5 #header-main.h-fixed .header-branding .logo-sticky {
opacity: 1;
}
#header-wrap.header-layout5 #header-main.h-fixed .main-navigation {
border: none;
}
#header-wrap.header-layout5 #header-main.h-fixed .main-navigation .primary-menu > li > a {
line-height: 80px;
padding: 0;
}
#header-wrap.header-layout5 #header-main.h-fixed .main-navigation .primary-menu > li > a:before {
bottom: 0px;
}
#header-wrap.header-layout5.is-sticky #header-main.h-fixed {
background-color: transparent;
-webkit-box-shadow: none;
-khtml-box-shadow: none;
-moz-box-shadow: none;
-ms-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
}
#header-wrap.header-layout6 #header-main .header-branding .logo-dark {
opacity: 1;
}
#header-wrap.header-layout6 #header-main .header-branding .logo-light {
opacity: 0;
}
#header-wrap.header-layout6 #header-main .header-navigation {
display: flex;
align-items: center;
margin-left: 15px;
margin-right: 15px;
}
#header-wrap.header-layout6 #header-main .header-navigation .primary-menu > li > a {
color: #180b36;
line-height: 80px;
padding: 0;
}
#header-wrap.header-layout6 #header-main .header-navigation .primary-menu > li.current-menu-item:not(.menu-item-type-custom) > a.no-one-page, #header-wrap.header-layout6 #header-main .header-navigation .primary-menu > li > a.current, #header-wrap.header-layout6 #header-main .header-navigation .primary-menu > li:hover > a {
color: #f00;
}
#header-wrap.header-layout6 #header-main .header-navigation .hidden-sidebar-icon {
color: #180b36;
}
#header-wrap.header-layout6 #header-main .header-navigation .hidden-sidebar-icon:hover {
color: #f00;
}
#header-wrap.header-layout6.is-sticky #header-main.h-fixed {
background-color: #fff;
}
body:not(.home) #header-wrap.header-layout1 #header-main .primary-menu > li:first-child > a.current:before {
display: none;
}
.site-h7 {
margin-left: 300px;
}
.site-h7 .content-inner > .container {
max-width: 100%;
padding: 0;
}
.site-h7 .entry-content > .vc_row {
width: 100% !important;
left: 0 !important;
padding-left: 0px !important;
padding-right: 0px !important;
margin-left: auto !important;
margin-right: auto !important;
max-width: 1200px;
}
.site-h7 .entry-content > .vc_row.vc_row-no-padding {
max-width: 100%;
padding-left: 0 !important;
padding-right: 0 !important;
}
.site-h7 .entry-content > .vc_row.vc_row-has-fill {
max-width: 100%;
padding-left: 0 !important;
padding-right: 0 !important;
}
.site-h7 .entry-content > .vc_row.vc_row-has-fill > .ct_row_inner {
max-width: 1200px;
position: relative;
left: 50%;
-webkit-transform: translate(-50%, 0);
-khtml-transform: translate(-50%, 0);
-moz-transform: translate(-50%, 0);
-ms-transform: translate(-50%, 0);
-o-transform: translate(-50%, 0);
transform: translate(-50%, 0);
}
.site-h7 .site-footer-custom > .footer-custom-inner > .container {
max-width: 1200px;
}
#ct-header-left {
position: fixed;
top: 0;
left: 0;
width: 300px;
height: 100vh;
background-color: #fff;
-webkit-box-shadow: 0 6px 18px rgba(12, 12, 12, 0.1);
-khtml-box-shadow: 0 6px 18px rgba(12, 12, 12, 0.1);
-moz-box-shadow: 0 6px 18px rgba(12, 12, 12, 0.1);
-ms-box-shadow: 0 6px 18px rgba(12, 12, 12, 0.1);
-o-box-shadow: 0 6px 18px rgba(12, 12, 12, 0.1);
box-shadow: 0 6px 18px rgba(12, 12, 12, 0.1);
z-index: 999;
padding: 45px 0px 30px 45px;
overflow: hidden;
}
#ct-header-left #header-wrap {
height: 100%;
overflow-y: scroll;
overflow-x: hidden;
margin-right: -20px;
width: calc(100% + 20px);
padding-right: 60px;
}
#ct-header-left #header-wrap .header-branding {
margin: 0;
}
#ct-header-left #header-wrap .header-branding img {
max-height: inherit;
}
#ct-header-left #header-wrap .header-branding a.logo-light {
opacity: 0;
}
#ct-header-left #header-wrap .header-branding a.logo-dark {
opacity: 1;
}
#ct-header-left #header-wrap .header-branding a.logo-sticky, #ct-header-left #header-wrap .header-branding a.logo-mobile {
display: none;
}
#ct-header-left #header-wrap .header-navigation {
margin: 33px 0px 0 0;
}
#ct-header-left #header-wrap .header-navigation .primary-menu li {
margin: 0;
display: block;
width: 100%;
}
#ct-header-left #header-wrap .header-navigation .primary-menu li a:before {
content: "";
position: absolute;
left: 0;
bottom: 0;
margin: auto;
height: 4px;
width: 0;
-webkit-transition: width 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
-khtml-transition: width 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
-moz-transition: width 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
-ms-transition: width 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
-o-transition: width 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
transition: width 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
background-color: #b50d1c;
background-image: -webkit-gradient(linear, left top, right top, from(#b50d1c), to(#f90244));
background-image: -webkit-linear-gradient(left, #b50d1c, #f90244);
background-image: -moz-linear-gradient(left, #b50d1c, #f90244);
background-image: -ms-linear-gradient(left, #b50d1c, #f90244);
background-image: -o-linear-gradient(left, #b50d1c, #f90244);
background-image: linear-gradient(left, #b50d1c, #f90244);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#b50d1c', endColorStr='#f90244', gradientType='1');
}
#ct-header-left #header-wrap .header-navigation .primary-menu > li > a {
margin-bottom: 18px;
padding-top: 0;
padding-bottom: 12px;
display: inline-block;
color: #0e0e0e;
line-height: normal;
}
#ct-header-left #header-wrap .header-navigation .primary-menu > li.menu-item-has-children > a::after {
display: none;
}
#ct-header-left #header-wrap .header-navigation .primary-menu > li.current-menu-item:not(.menu-item-type-custom) > a.no-one-page:before, #ct-header-left #header-wrap .header-navigation .primary-menu > li > a.current:before, #ct-header-left #header-wrap .header-navigation .primary-menu > li:hover > a:before {
width: 100%;
}
#ct-header-left #header-wrap .header-navigation .primary-menu .sub-menu {
margin-top: 0;
background-color: transparent;
-webkit-border-radius: 0;
-khtml-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
left: 100%;
top: 0;
position: static;
clip: inherit;
opacity: 1;
visibility: visible;
-webkit-transform: scaleY(1);
-khtml-transform: scaleY(1);
-moz-transform: scaleY(1);
-ms-transform: scaleY(1);
-o-transform: scaleY(1);
transform: scaleY(1);
box-shadow: none;
padding-top: 0;
padding-bottom: 20px;
padding-left: 10px;
min-width: 100%;
display: none;
-webkit-transition: all 0ms linear 0ms;
-khtml-transition: all 0ms linear 0ms;
-moz-transition: all 0ms linear 0ms;
-ms-transition: all 0ms linear 0ms;
-o-transition: all 0ms linear 0ms;
transition: all 0ms linear 0ms;
}
#ct-header-left #header-wrap .header-navigation .primary-menu .sub-menu li {
padding: 0;
}
#ct-header-left #header-wrap .header-navigation .primary-menu .sub-menu li a {
color: #0e0e0e;
padding-top: 0;
}
#ct-header-left #header-wrap .header-navigation .primary-menu .sub-menu li a:before {
display: none;
}
#ct-header-left #header-wrap .header-navigation .primary-menu .sub-menu li:hover > a, #ct-header-left #header-wrap .header-navigation .primary-menu .sub-menu li.current_page_item > a, #ct-header-left #header-wrap .header-navigation .primary-menu .sub-menu li.current-menu-item > a, #ct-header-left #header-wrap .header-navigation .primary-menu .sub-menu li.current_page_ancestor > a, #ct-header-left #header-wrap .header-navigation .primary-menu .sub-menu li.current-menu-ancestor > a {
color: #b50d1c;
}
#ct-header-left #header-wrap .header-navigation .primary-menu .sub-menu .menu-item-has-children > a::after {
display: none;
}
#ct-header-left #header-wrap .header-navigation .primary-menu .sub-menu.submenu-open + .main-menu-toggle:before {
content: "\f068";
}
#ct-header-left #header-wrap .header-navigation .primary-menu .main-menu-toggle {
display: block;
position: absolute;
width: 25px;
height: 25px;
top: 2px;
right: 0;
line-height: 25px;
text-align: center;
cursor: pointer;
color: #0e0e0e;
}
#ct-header-left #header-wrap .header-navigation .primary-menu .main-menu-toggle:before {
content: "\f067";
font-size: 14px;
-webkit-transition: all 200ms linear 0ms;
-khtml-transition: all 200ms linear 0ms;
-moz-transition: all 200ms linear 0ms;
-ms-transition: all 200ms linear 0ms;
-o-transition: all 200ms linear 0ms;
transition: all 200ms linear 0ms;
font-family: "Font Awesome 5 Pro";
}
#ct-header-left #header-wrap .header-navigation .primary-menu .main-menu-toggle:hover {
color: #b50d1c;
}
#ct-header-left #header-wrap .header-navigation .primary-menu .main-menu-toggle:hover:before {
content: "\f068";
}
#ct-header-left #header-wrap .ct-header-meta {
margin: 0;
padding-top: 17px;
}
#ct-header-left #header-wrap .ct-header-meta .h-item-icon {
margin-right: 13px;
line-height: 1;
font-size: 26px;
color: #b2b2b2;
}
#ct-header-left #header-wrap .ct-header-meta .h-item-icon .fa-phone {
-webkit-transform: scaleX(-1);
-khtml-transform: scaleX(-1);
-moz-transform: scaleX(-1);
-ms-transform: scaleX(-1);
-o-transform: scaleX(-1);
transform: scaleX(-1);
}
#ct-header-left #header-wrap .ct-header-meta .h-item-meta {
position: relative;
}
#ct-header-left #header-wrap .ct-header-meta .h-item-meta .h-item-link {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 99;
}
#ct-header-left #header-wrap .ct-header-meta label {
font-size: 15px;
font-weight: 600;
color: #222;
border-bottom: 1px solid #747474;
display: block;
}
#ct-header-left #header-wrap .ct-header-meta span {
font-size: 15px;
}
#ct-header-left #header-wrap .ct-header-meta > div {
display: flex;
flex-wrap: nowrap;
align-items: center;
font-family: 'Poppins', sans-serif;
margin-bottom: 22px;
line-height: normal;
}
#ct-header-left #header-wrap .ct-header-social {
padding-top: 7px;
}
#ct-header-left #header-wrap .ct-header-social a {
display: inline-block;
width: 38px;
height: 38px;
line-height: 38px;
text-align: center;
-webkit-border-radius: 38px;
-khtml-border-radius: 38px;
-moz-border-radius: 38px;
-ms-border-radius: 38px;
-o-border-radius: 38px;
border-radius: 38px;
font-size: 16px;
color: #2b2b2b;
margin-right: 12px;
margin-top: 10px;
position: relative;
}
#ct-header-left #header-wrap .ct-header-social a:before, #ct-header-left #header-wrap .ct-header-social a:after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
-webkit-border-radius: 38px;
-khtml-border-radius: 38px;
-moz-border-radius: 38px;
-ms-border-radius: 38px;
-o-border-radius: 38px;
border-radius: 38px;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
z-index: -1;
}
#ct-header-left #header-wrap .ct-header-social a:before {
background-color: #e6e7e7;
}
#ct-header-left #header-wrap .ct-header-social a:after {
background-color: #b50d1c;
background-image: -webkit-gradient(linear, left top, right top, from(#b50d1c), to(#f90244));
background-image: -webkit-linear-gradient(left, #b50d1c, #f90244);
background-image: -moz-linear-gradient(left, #b50d1c, #f90244);
background-image: -ms-linear-gradient(left, #b50d1c, #f90244);
background-image: -o-linear-gradient(left, #b50d1c, #f90244);
background-image: linear-gradient(left, #b50d1c, #f90244);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#b50d1c', endColorStr='#f90244', gradientType='1');
opacity: 0;
}
#ct-header-left #header-wrap .ct-header-social a:hover {
color: #fff;
}
#ct-header-left #header-wrap .ct-header-social a:hover:before {
opacity: 0;
}
#ct-header-left #header-wrap .ct-header-social a:hover:after {
opacity: 1;
}
}
@media screen and (max-width: 1199px) {
#header-wrap .btn-header-desktop {
display: none;
}
#header-wrap .btn-header-mobile {
width: 100%;
margin-top: 30px;
}
#header-wrap.fixed-height {
height: inherit !important;
}
#header-wrap .header-branding {
margin-top: 15px;
margin-bottom: 15px;
}
#header-wrap .header-branding .logo-light {
opacity: 0;
}
#header-wrap .header-branding .logo-mobile {
opacity: 1;
}
#header-wrap .header-branding.mobile {
display: block;
}
#header-wrap .header-branding.desktop {
display: none;
}
#header-wrap #main-menu-mobile {
position: absolute;
top: 50%;
right: 15px;
-webkit-transform: translate(0, -50%);
-khtml-transform: translate(0, -50%);
-moz-transform: translate(0, -50%);
-ms-transform: translate(0, -50%);
-o-transform: translate(0, -50%);
transform: translate(0, -50%);
}
#header-wrap #header-main {
background-color: #0e0f1f;
}
#header-wrap #header-main.h-fixed {
position: fixed;
left: 0;
width: 100%;
top: 0;
}
#ct-header-left #header-wrap .header-main {
padding: 10px 0;
}
#ct-header-left #header-wrap .ct-header-meta, #ct-header-left #header-wrap .ct-header-social {
display: none;
}
#ct-header-left #header-wrap .header-branding img {
max-height: 30px;
}
#ct-header-left #header-wrap .header-branding a.logo-dark, #ct-header-left #header-wrap .header-branding a.logo-sticky {
display: none;
}
.admin-bar #header-main:not(.h-fixed) .header-navigation .main-navigation {
top: 32px;
}
}
@media screen and (max-width: 782px) {
.admin-bar #header-main:not(.h-fixed) .header-navigation .main-navigation {
top: 46px;
}
}
#header-wrap.is-sticky #header-main, #header-wrap.is-sticky-offset #header-main {
-webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
-khtml-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
-moz-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
-ms-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
-o-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
}
#header-wrap.is-sticky #header-main.h-fixed, #header-wrap.is-sticky-offset #header-main.h-fixed {
padding-top: 0;
background-color: #0e0f1f;
position: fixed;
left: 0;
top: 0;
right: 0;
-webkit-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
-khtml-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
-moz-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
-ms-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
-o-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
}
.admin-bar #header-wrap.is-sticky #header-main.h-fixed, .admin-bar #header-wrap.is-sticky-offset #header-main.h-fixed {
top: 32px;
}
@media screen and (max-width: 782px) {
.admin-bar #header-wrap.is-sticky #header-main.h-fixed, .admin-bar #header-wrap.is-sticky-offset #header-main.h-fixed {
top: 46px;
}
}
@media screen and (max-width: 600px) {
.admin-bar #header-wrap.is-sticky #header-main.h-fixed, .admin-bar #header-wrap.is-sticky-offset #header-main.h-fixed {
top: 0;
}
}
ul.menu {
list-style: none;
margin: 0;
}
ul.menu ul {
list-style: none;
margin: 0;
}
@media screen and (min-width: 1200px) {
.menu-toggle, .main-menu-toggle {
display: none;
}
.main-navigation ul {
display: block;
}
.primary-menu-not-set a {
font-size: 16px;
font-weight: 600;
color: #fff;
line-height: normal;
padding: 10px 0;
position: relative;
}
.primary-menu {
list-style: none;
margin: 0;
padding: 0;
}
.primary-menu li {
position: relative;
}
.primary-menu li a {
display: block;
-webkit-transition: all 300ms linear 0ms !important;
-khtml-transition: all 300ms linear 0ms !important;
-moz-transition: all 300ms linear 0ms !important;
-ms-transition: all 300ms linear 0ms !important;
-o-transition: all 300ms linear 0ms !important;
transition: all 300ms linear 0ms !important;
}
.primary-menu > li {
display: inline-block;
vertical-align: middle;
float: left;
white-space: nowrap;
margin-left: 32px;
}
.primary-menu > li > a {
font-size: 16px;
font-weight: 600;
color: #fff;
line-height: normal;
padding: 15px 0;
position: relative;
}
.primary-menu > li.menu-item-has-children > a:after {
content: "\f078";
font-family: 'FontAwesome';
font-size: 9px;
margin-left: 5px;
font-weight: normal;
vertical-align: middle;
margin-top: -3px;
display: inline-block;
}
.primary-menu > li:first-child {
margin-left: 0;
}
.primary-menu .sub-menu {
margin-top: 40px;
list-style: none;
position: absolute;
background: #0c0c0c;
top: 100%;
left: 0;
min-width: 240px;
z-index: 99;
visibility: hidden;
opacity: 0;
-webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
-khtml-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
-ms-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
-o-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
clip: rect(1px, 1px, 1px, 1px);
padding: 30px 0;
}
.primary-menu .sub-menu li {
padding: 0 30px;
}
.primary-menu .sub-menu li a {
color: #fff;
font-size: 16px;
font-weight: 500;
padding: 6px 0;
position: relative;
}
.primary-menu .sub-menu li a:before {
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
content: '';
width: 10px;
height: 1px;
background-color: #fff;
position: absolute;
top: 50%;
-webkit-transform: translate(0, -50%);
-khtml-transform: translate(0, -50%);
-moz-transform: translate(0, -50%);
-ms-transform: translate(0, -50%);
-o-transform: translate(0, -50%);
transform: translate(0, -50%);
left: 0;
opacity: 0;
}
.primary-menu .sub-menu li > a:hover {
padding-left: 20px;
}
.primary-menu .sub-menu li > a:hover:before {
opacity: 1;
}
.primary-menu .sub-menu li.current-menu-item > a, .primary-menu .sub-menu li.current_page_item > a {
padding-left: 20px;
}
.primary-menu .sub-menu li.current-menu-item > a:before, .primary-menu .sub-menu li.current_page_item > a:before {
opacity: 1;
}
.primary-menu .sub-menu .sub-menu {
top: 0;
left: 100%;
}
.primary-menu .sub-menu .vc_row {
background: #fff;
padding: 10px;
-webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.25);
-khtml-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.25);
-moz-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.25);
-ms-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.25);
-o-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.25);
box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.25);
}
.primary-menu .sub-menu .menu-item-has-children > a {
position: relative;
}
.primary-menu .sub-menu .menu-item-has-children > a:after {
content: "\f105";
font-family: FontAwesome;
position: absolute;
top: 50%;
right: 15px;
-webkit-transform: translate(0, -50%);
-khtml-transform: translate(0, -50%);
-moz-transform: translate(0, -50%);
-ms-transform: translate(0, -50%);
-o-transform: translate(0, -50%);
transform: translate(0, -50%);
}
.primary-menu li:hover, .primary-menu li.focus {
overflow: visible;
}
.primary-menu li:hover > .sub-menu, .primary-menu li.focus > .sub-menu {
visibility: visible;
opacity: 1;
margin-top: 0;
clip: inherit;
}
.menu-mobile-close, .header-social-mobile {
display: none;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.primary-menu > li {
margin-left: 16px;
}
.primary-menu > li > a {
padding-left: 6px;
padding-right: 6px;
}
}
@media screen and (max-width: 1199px) {
.header-social-mobile {
display: block;
text-align: center;
margin-top: 35px;
margin-bottom: 25px;
}
.header-social-mobile a {
color: #505050;
font-size: 16px;
margin: 0 6px;
}
.header-social-mobile a:hover {
color: #f00;
}
.menu-mobile-close {
display: block;
width: 40px;
height: 40px;
background-color: #f00;
line-height: 40px;
text-align: center;
color: #fff;
font-size: 20px;
position: absolute;
top: 0;
right: 0;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
cursor: pointer;
}
.menu-mobile-close:hover {
background-color: #b50d1c;
color: #fff;
}
.header-mobile-search {
margin-bottom: 15px;
position: relative;
display: block;
}
.header-mobile-search .search-submit {
position: absolute;
width: 45px;
height: 100%;
right: 0;
line-height: 100%;
padding: 0;
border: none;
background-color: transparent;
color: #999;
top: 0;
}
.header-mobile-search .search-submit:hover {
color: #f00;
}
.header-mobile-search .search-field {
background-color: #fff;
border: 1px solid #e0e0e0;
}
.header-mobile-search .search-field:focus {
border-color: #f00;
}
.menu-mobile-button {
display: block;
margin-bottom: 15px;
text-align: center;
}
.menu-mobile-button .h-btn {
line-height: 42px;
background-color: #f00;
padding: 0 26px;
display: block;
color: #fff;
font-size: 15px;
font-weight: 500;
}
.menu-mobile-button .h-btn.h-btn-call {
padding-left: 62px;
background-image: url(//www.4cine.it/wp-content/themes/nimmo/assets/images/icon-call.png);
background-repeat: no-repeat;
background-position: left 23px center;
}
.menu-mobile-button .h-btn:hover {
background-color: #b50d1c;
color: #fff;
}
.menu-mobile-overlay {
position: fixed;
height: 100%;
width: 100%;
z-index: 998;
background-color: rgba(0, 0, 0, 0.4);
left: 0;
top: 0;
visibility: hidden;
opacity: 0;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
cursor: url(//www.4cine.it/wp-content/themes/nimmo/assets/images/close-icon-white.png), auto;
}
.menu-mobile-overlay.active {
opacity: 1;
visibility: visible;
}
.header-navigation {
position: absolute;
height: 100vh;
width: 280px;
top: 0;
bottom: 0;
margin: 0 !important;
overflow: hidden;
visibility: hidden;
z-index: 999;
}
.header-navigation .main-navigation {
overflow: hidden;
width: 280px;
padding: 58px 0 16px 0;
background-color: #fff;
position: fixed;
z-index: 1001;
top: 0;
height: 100%;
left: 0;
right: 0;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
-webkit-transform: translateX(-100%);
-khtml-transform: translateX(-100%);
-moz-transform: translateX(-100%);
-ms-transform: translateX(-100%);
-o-transform: translateX(-100%);
transform: translateX(-100%);
-webkit-box-shadow: 0 6px 18px rgba(12, 12, 12, 0.1);
-khtml-box-shadow: 0 6px 18px rgba(12, 12, 12, 0.1);
-moz-box-shadow: 0 6px 18px rgba(12, 12, 12, 0.1);
-ms-box-shadow: 0 6px 18px rgba(12, 12, 12, 0.1);
-o-box-shadow: 0 6px 18px rgba(12, 12, 12, 0.1);
box-shadow: 0 6px 18px rgba(12, 12, 12, 0.1);
}
.header-navigation .main-navigation .main-navigation-inner {
height: 100%;
overflow-y: scroll;
padding: 0 26px 0 16px;
margin-right: -10px;
}
.header-navigation.navigation-open {
z-index: 999;
visibility: visible;
}
.header-navigation.navigation-open .main-navigation {
-webkit-transform: translateX(0%);
-khtml-transform: translateX(0%);
-moz-transform: translateX(0%);
-ms-transform: translateX(0%);
-o-transform: translateX(0%);
transform: translateX(0%);
}
.primary-menu {
list-style: none;
margin: 0;
padding: 0;
}
.primary-menu li {
position: relative;
list-style: none;
}
.primary-menu li a {
display: block;
padding: 12px 16px;
color: #1e2331;
font-size: 14px;
font-weight: 600;
font-family: 'Poppins', sans-serif;
}
.primary-menu > li > a:hover, .primary-menu > li > a.current {
background-color: #f5f5f5;
}
.primary-menu .sub-menu {
position: relative;
padding-left: 20px;
display: none;
}
.primary-menu .sub-menu.submenu-open + .main-menu-toggle:before {
content: '\f2fc';
}
.primary-menu li.focus > .sub-menu {
visibility: visible;
opacity: 1;
max-height: none;
overflow: visible;
}
#main-menu-mobile .btn-nav-mobile {
color: #fff;
display: inline-block;
font-size: 16px;
height: 32px;
line-height: 32px;
text-align: center;
vertical-align: middle;
width: 30px;
cursor: pointer;
position: relative;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
}
#main-menu-mobile .btn-nav-mobile:before, #main-menu-mobile .btn-nav-mobile:after, #main-menu-mobile .btn-nav-mobile span {
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
content: "";
background-color: #fff;
display: block;
height: 2px;
left: 0;
margin: auto;
position: absolute;
right: 0;
width: 22px;
top: 21px;
}
#main-menu-mobile .btn-nav-mobile:before {
top: 9px;
}
#main-menu-mobile .btn-nav-mobile span {
top: 15px;
}
#main-menu-mobile .btn-nav-mobile.opened:before {
top: 15px;
-webkit-transform: rotate(45deg);
-khtml-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}
#main-menu-mobile .btn-nav-mobile.opened:after {
-webkit-transform: rotate(-45deg);
-khtml-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
top: 15px;
}
#main-menu-mobile .btn-nav-mobile.opened span {
display: none;
}
.main-menu-toggle {
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
cursor: pointer;
display: inline-block;
height: 19px;
line-height: 19px;
position: absolute;
right: 12px;
text-align: center;
top: 14px;
width: 19px;
}
.main-menu-toggle:before {
content: "\f2f9";
font-family: 'Material-Design-Iconic-Font';
font-size: 18px;
color: #1e2331;
}
.main-menu-toggle + .main-menu-toggle {
display: none;
}
}
.comment-navigation, .posts-navigation, .post-navigation { }
.site-main .comment-navigation, .site-main .posts-navigation, .site-main .post-navigation {
margin: 0 0 1.5em;
overflow: hidden;
}
.comment-navigation .nav-previous, .posts-navigation .nav-previous, .post-navigation .nav-previous {
float: left;
width: 50%;
}
.comment-navigation .nav-next, .posts-navigation .nav-next, .post-navigation .nav-next {
float: right;
text-align: right;
width: 50%;
}
ul.back {
right: 100%;
left: auto !important;
}
#pagetitle {
padding: 200px 0 93px;
background-color: #f00;
background-position: top center;
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
text-align: center;
}
@media screen and (max-width: 1199px) {
#pagetitle {
background-attachment: inherit;
}
}
@media screen and (max-width: 991px) {
#pagetitle {
padding: 60px 0;
}
}
#pagetitle:before {
background-color: rgba(0, 0, 0, 0.7);
}
#pagetitle .container {
position: relative;
z-index: 99;
}
#pagetitle h1.page-title {
font-size: 36px;
color: #fff;
margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
#pagetitle h1.page-title {
font-size: 28px;
}
}
@media screen and (max-width: 575px) {
#pagetitle h1.page-title {
font-size: 24px;
}
}
#pagetitle .ct-breadcrumb {
margin: 0;
list-style: none;
}
#pagetitle .ct-breadcrumb li {
font-size: 18px;
color: #fff;
display: inline-block;
margin-right: 10px;
font-family: 'Poppins', sans-serif;
}
@media screen and (max-width: 767px) {
#pagetitle .ct-breadcrumb li {
font-size: 16px;
}
}
#pagetitle .ct-breadcrumb li:after {
content: "/";
margin-left: 11px;
}
#pagetitle .ct-breadcrumb li a {
color: #fff;
}
#pagetitle .ct-breadcrumb li:last-child:after {
display: none;
}
.entry-readmore .btn, .item-readmore .btn {
padding: 0 43px;
text-transform: none;
line-height: 48px;
font-size: 16px;
font-family: "Heebo";
}
.entry-video iframe {
width: 100%;
margin-bottom: -8px;
}
.entry-video .wp-video {
width: 100% !important;
}
.entry-video .wp-video .mejs-container {
height: inherit !important;
}
.entry-video .entry-video-intro {
position: absolute;
top: 0;
left: 0;
z-index: 99;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
}
.entry-video .entry-video-intro.offintro {
opacity: 0;
visibility: hidden;
z-index: -999;
}
.entry-video .entry-video-intro .button-video {
height: 70px;
line-height: 70px;
font-size: 16px;
text-align: center;
background-color: #fff;
color: #f00;
display: block;
width: 70px;
-webkit-border-radius: 70px;
-khtml-border-radius: 70px;
-moz-border-radius: 70px;
-ms-border-radius: 70px;
-o-border-radius: 70px;
border-radius: 70px;
cursor: pointer;
z-index: 999;
position: absolute;
top: 50%;
left: 0;
right: 0;
margin: auto;
-webkit-transform: translate(0, -50%);
-khtml-transform: translate(0, -50%);
-moz-transform: translate(0, -50%);
-ms-transform: translate(0, -50%);
-o-transform: translate(0, -50%);
transform: translate(0, -50%);
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
}
.entry-video .entry-video-intro .button-video:hover {
background-color: #f00;
color: #fff;
}
.entry-video .entry-video-intro + .wp-video {
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
opacity: 0;
visibility: hidden;
}
.entry-video .entry-video-intro + .wp-video.onvideo {
opacity: 1;
visibility: visible;
}
.entry-gallery {
position: relative;
overflow: hidden;
margin-bottom: -35px;
}
.entry-gallery .owl-nav .owl-next, .entry-gallery .owl-nav .owl-prev {
width: 34px;
height: 34px;
line-height: 34px;
text-align: center;
position: absolute;
color: #b50d1c;
font-size: 18px;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
opacity: 0;
margin: 0;
background: #f00;
}
.entry-gallery .owl-nav .owl-next:hover, .entry-gallery .owl-nav .owl-prev:hover {
background: #b50d1c;
color: #f00;
}
.entry-gallery .owl-nav .owl-next {
right: 30px;
top: 50%;
-webkit-transform: translate(0, -50%);
-khtml-transform: translate(0, -50%);
-moz-transform: translate(0, -50%);
-ms-transform: translate(0, -50%);
-o-transform: translate(0, -50%);
transform: translate(0, -50%);
}
.entry-gallery .owl-nav .owl-prev {
left: 30px;
top: 50%;
-webkit-transform: translate(0, -50%);
-khtml-transform: translate(0, -50%);
-moz-transform: translate(0, -50%);
-ms-transform: translate(0, -50%);
-o-transform: translate(0, -50%);
transform: translate(0, -50%);
}
.entry-gallery:hover .owl-nav .owl-next, .entry-gallery:hover .owl-nav .owl-prev {
opacity: 1;
}
.entry-gallery:hover .owl-nav .owl-next.disabled, .entry-gallery:hover .owl-nav .owl-prev.disabled {
opacity: 0.76;
}
.posts-pagination .posts-page-links {
display: flex;
flex-wrap: nowrap;
}
.posts-pagination .page-numbers {
text-align: center;
height: 42px;
width: 42px;
line-height: 42px;
color: #180b36;
background-color: #f4f7fc;
font-size: 18px;
font-weight: 600;
display: inline-block;
margin-right: 10px;
-webkit-border-radius: 42px;
-khtml-border-radius: 42px;
-moz-border-radius: 42px;
-ms-border-radius: 42px;
-o-border-radius: 42px;
border-radius: 42px;
font-family: 'Poppins', sans-serif;
}
.posts-pagination .page-numbers.current, .posts-pagination .page-numbers:hover {
background-color: #f00;
color: #fff;
}
.posts-pagination .page-numbers i {
font-size: 20px;
}
.entry-title a {
color: inherit;
}
.entry-title a:hover {
color: #f00;
}
.entry-featured {
position: relative;
}
@media screen and (max-width: 991px) {
.entry-featured {
width: 100%;
}
}
.entry-featured:not(.entry-gallery) {
display: inline-block;
}
.entry-featured .post-image {
position: relative;
}
.entry-featured .post-image a {
display: block;
}
.entry-featured .post-image img {
-webkit-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
-khtml-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
-moz-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
-ms-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
-o-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
}
.entry-featured .post-image .entry-more {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
font-size: 20px;
color: #f00;
background-color: rgba(181, 13, 28, 0.8);
opacity: 0;
}
.entry-featured .post-image .entry-more i {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-khtml-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.entry-featured .bg-overlay:before {
background-color: rgba(181, 13, 28, 0.85);
opacity: 0;
}
.reduxon .entry-featured .post-image img {
width: 100%;
}
.entry-meta, .item-meta {
display: flex;
flex-wrap: wrap;
align-items: center;
margin: 0 0 17px;
padding-bottom: 15px;
border-bottom: 1px solid #ececf0;
position: relative;
}
.entry-meta:before, .item-meta:before {
content: '';
width: 40px;
height: 3px;
background-color: #f00;
position: absolute;
bottom: -1px;
left: 0;
}
.entry-meta li, .item-meta li {
position: relative;
display: inline-block;
color: #333;
font-size: 14px;
padding: 0 24px 0 0;
text-transform: capitalize;
}
.entry-meta li a, .item-meta li a {
color: inherit;
}
.entry-meta li a:hover, .item-meta li a:hover {
color: #f00;
}
.entry-meta li i, .item-meta li i {
margin-right: 6px;
color: #f00;
}
.entry-meta li:last-child, .item-meta li:last-child {
padding-right: 0;
}
.single-hentry .entry-blog {
display: flex;
flex-wrap: wrap;
-webkit-border-radius: 7px;
-khtml-border-radius: 7px;
-moz-border-radius: 7px;
-ms-border-radius: 7px;
-o-border-radius: 7px;
border-radius: 7px;
-webkit-box-shadow: 0 2px 29px rgba(34, 34, 34, 0.14);
-khtml-box-shadow: 0 2px 29px rgba(34, 34, 34, 0.14);
-moz-box-shadow: 0 2px 29px rgba(34, 34, 34, 0.14);
-ms-box-shadow: 0 2px 29px rgba(34, 34, 34, 0.14);
-o-box-shadow: 0 2px 29px rgba(34, 34, 34, 0.14);
box-shadow: 0 2px 29px rgba(34, 34, 34, 0.14);
background-color: #fff;
}
.single-hentry .entry-featured {
-webkit-border-radius: 7px 7px 0 0;
-khtml-border-radius: 7px 7px 0 0;
-moz-border-radius: 7px 7px 0 0;
-ms-border-radius: 7px 7px 0 0;
-o-border-radius: 7px 7px 0 0;
border-radius: 7px 7px 0 0;
overflow: hidden;
}
.single-hentry .entry-content .underline {
font-weight: 700;
text-decoration: underline;
}
.single-hentry .entry-title {
font-size: 26px;
color: #180b36;
margin-bottom: 20px;
}
.single-hentry .post-image {
position: relative;
overflow: hidden;
}
.single-hentry .post-image img {
-webkit-transition: all 10s;
-khtml-transition: all 10s;
-moz-transition: all 10s;
-ms-transition: all 10s;
-o-transition: all 10s;
transition: all 10s;
}
.single-hentry .post-image img:hover {
-webkit-transform: scale(1);
-khtml-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.single-hentry .entry-body {
padding: 27px 33px 56px 33px;
width: 100%;
position: relative;
-webkit-border-radius: 0 0 7px 7px;
-khtml-border-radius: 0 0 7px 7px;
-moz-border-radius: 0 0 7px 7px;
-ms-border-radius: 0 0 7px 7px;
-o-border-radius: 0 0 7px 7px;
border-radius: 0 0 7px 7px;
}
.single-hentry.archive {
margin-bottom: 50px;
}
.single-hentry.archive .entry-readmore {
position: absolute;
bottom: 0px;
left: 0;
right: 0;
text-align: center;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
opacity: 0;
visibility: hidden;
}
.single-hentry.archive:hover .entry-readmore {
-webkit-animation: bounceReadMore 0.6s ease-in-out both;
-moz-animation: bounceReadMore 0.6s ease-in-out both;
-o-animation: bounceReadMore 0.6s ease-in-out both;
animation: bounceReadMore 0.6s ease-in-out both;
bottom: -24px;
opacity: 1;
visibility: visible;
}
.single-hentry.archive:last-child {
margin-bottom: 75px;
}
@media screen and (max-width: 991px) {
body .single-hentry.archive .entry-readmore {
bottom: -24px;
opacity: 1;
visibility: visible;
margin: 0 !important;
}
}
.single-post .post-h4 {
color: #170b35;
font-size: 18px;
font-weight: 500;
margin-bottom: 28px;
}
.single-post .blog-side-img {
max-width: 300px;
margin-top: 15px;
}
@media screen and (max-width: 767px) {
.single-post .blog-side-img {
max-width: 150px;
}
}
.single-post .blog-side-img.alignright {
margin-top: 8px;
}
.single-post .entry-meta {
margin-bottom: 23px;
}
.single-post .content-area .entry-body {
padding-bottom: 46px;
}
.single-post .content-area .entry-content h1, .single-post .content-area .entry-content h2, .single-post .content-area .entry-content h3, .single-post .content-area .entry-content h4, .single-post .content-area .entry-content h5, .single-post .content-area .entry-content h6 {
font-weight: 500;
margin-bottom: 23px;
}
.single-post .content-area .entry-content p {
margin-bottom: 28px;
}
.single-post .content-area .entry-content p:last-child {
margin-bottom: 0;
}
.single-post .content-area .post-previous-next {
display: flex;
align-items: center;
flex-wrap: wrap;
width: 100%;
border-bottom: 1px solid #ececf0;
padding: 20px 0;
}
.single-post .content-area .post-previous-next .post-previous {
flex-grow: 1;
margin-right: 20px;
}
.single-post .content-area .post-previous-next a {
color: #524b48;
font-weight: 600;
font-family: 'Poppins', sans-serif;
}
.single-post .content-area .post-previous-next a:hover {
color: #f00;
}
.single-post .content-area .post-previous-next a .fa-angle-double-left {
margin-right: 4px;
}
.single-post .content-area .post-previous-next a .fa-angle-double-right {
margin-left: 4px;
}
.single-post .content-area .entry-footer {
padding: 0 50px;
}
@media screen and (max-width: 767px) {
.single-post .content-area .entry-footer {
padding: 0 15px;
}
}
.single-post .content-area .entry-content-bottom {
display: flex;
align-items: center;
flex-wrap: wrap;
width: 100%;
padding: 50px 0 26px 0;
border-bottom: 1px solid #ececf0;
}
.single-post .content-area .entry-content-bottom .entry-tags {
margin-right: 30px;
flex-grow: 1;
}
.single-post .content-area .entry-content-bottom .entry-tags label {
margin-right: 17px;
font-weight: 500;
color: #180b36;
font-family: 'Poppins', sans-serif;
}
.single-post .content-area .entry-content-bottom .entry-social {
display: flex;
margin: 15px 0;
}
.single-post .content-area .entry-content-bottom .entry-social a {
margin-right: 5px;
display: inline-block;
height: 32px;
width: 32px;
-webkit-border-radius: 32px;
-khtml-border-radius: 32px;
-moz-border-radius: 32px;
-ms-border-radius: 32px;
-o-border-radius: 32px;
border-radius: 32px;
background-color: #f00;
color: #fff;
font-size: 18px;
text-align: center;
line-height: 32px;
}
.single-post .content-area .entry-content-bottom .entry-social a.fb-social {
background-color: #3b5998;
}
.single-post .content-area .entry-content-bottom .entry-social a.tw-social {
background-color: #1da1f2;
}
.single-post .content-area .entry-content-bottom .entry-social a.g-social {
background-color: #d73d32;
}
.single-post .content-area .entry-content-bottom .entry-social a.pin-social {
background-color: #bd081c;
}
.single-post .content-area .entry-content-bottom .entry-social a:last-child {
margin-right: 0;
}
.single-post.single-related-post #content {
padding-bottom: 0 !important;
}
.entry-content .page-links {
clear: left;
padding-top: 10px;
}
.entry-content .page-links span {
text-align: center;
display: inline-block;
height: 26px;
width: 26px;
line-height: 26px;
color: #fff;
background-color: #b50d1c;
font-size: 14px;
margin: 0 3px;
font-family: 'Poppins', sans-serif;
-webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
-khtml-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
-moz-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
-ms-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
-o-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
}
.entry-content .page-links a span {
background-color: #e0e3e8;
color: #000;
}
.entry-content .page-links a span:hover {
background-color: #b50d1c;
color: #fff;
}
.ct-related-post-wrap {
margin-top: 120px;
padding: 82px 0 90px;
background-color: #f7fbff;
}
.ct-related-post .ct-related-post-inner {
justify-content: center;
-webkit-justify-content: center;
}
.ct-related-post .section-title {
font-size: 36px;
margin-bottom: 55px;
text-align: center;
}
.ct-related-post .grid-item-inner {
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
-khtml-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
-ms-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
-o-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
-webkit-border-radius: 5px;
-khtml-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
border-radius: 5px;
}
.ct-related-post .grid-item-inner .item-featured img {
-webkit-border-radius: 5px 5px 0 0;
-khtml-border-radius: 5px 5px 0 0;
-moz-border-radius: 5px 5px 0 0;
-ms-border-radius: 5px 5px 0 0;
-o-border-radius: 5px 5px 0 0;
border-radius: 5px 5px 0 0;
}
.ct-related-post .item-holder {
padding: 24px;
-webkit-border-radius: 0 0 5px 5px;
-khtml-border-radius: 0 0 5px 5px;
-moz-border-radius: 0 0 5px 5px;
-ms-border-radius: 0 0 5px 5px;
-o-border-radius: 0 0 5px 5px;
border-radius: 0 0 5px 5px;
background-color: #fff;
}
.ct-related-post .item-holder .item-title {
font-size: 18px;
margin-bottom: 10px;
}
.ct-related-post .item-holder .item-title a {
color: inherit;
}
.ct-related-post .item-holder .item-title a:hover {
color: #f00;
}
.ct-related-post .item-holder .item-content {
color: #393e42;
}
.ct-related-post .item-readmore {
padding-top: 10px;
}
.ct-related-post .item-readmore a {
font-family: 'Poppins', sans-serif;
color: #f00;
}
.ct-related-post .item-readmore a:hover {
color: #b50d1c;
}
.ct-related-post .item-readmore a i {
margin-left: 9px;
}
@media screen and (max-width: 767px) {
.ct-related-post .grid-item {
margin-bottom: 30px;
}
.ct-related-post .grid-item:last-child {
margin-bottom: 0;
}
}
.no-results .searchform-wrap {
position: relative;
}
.no-results .searchform-wrap .search-field {
padding-right: 50px;
}
.no-results .searchform-wrap .search-submit {
position: absolute;
right: 0;
top: 0;
line-height: 48px;
-webkit-border-radius: 0 3px 3px 0;
-khtml-border-radius: 0 3px 3px 0;
-moz-border-radius: 0 3px 3px 0;
-ms-border-radius: 0 3px 3px 0;
-o-border-radius: 0 3px 3px 0;
border-radius: 0 3px 3px 0;
}
.content-dark .site-content {
background-color: #000;
}
.content-dark .single-hentry .entry-blog {
background-color: #000;
color: #fff;
}
.content-dark .single-hentry .entry-blog h1, .content-dark .single-hentry .entry-blog h2, .content-dark .single-hentry .entry-blog h3, .content-dark .single-hentry .entry-blog h4, .content-dark .single-hentry .entry-blog h5, .content-dark .single-hentry .entry-blog h6, .content-dark .single-hentry .entry-blog .h1, .content-dark .single-hentry .entry-blog .h2, .content-dark .single-hentry .entry-blog .h3, .content-dark .single-hentry .entry-blog .h4, .content-dark .single-hentry .entry-blog .h5, .content-dark .single-hentry .entry-blog .h6 {
color: #fff;
}
.content-dark .single-hentry .entry-blog .entry-meta li, .content-dark .single-hentry .entry-blog .item-meta li {
color: #fff;
}
.content-dark .widget-title, .content-dark .comments-title, .content-dark .comment-reply-title, .content-dark .widget_ct_recent_posts .entry-title, .content-dark .entry-tags a {
color: #fff;
}
.content-dark #content .widget_categories ul li a, .content-dark #content .widget_nav_menu ul li a, .content-dark #content .widget_pages ul li a, .content-dark #content .widget_archive ul li a, .content-dark #content .widget_meta ul li a, .content-dark #content .widget_recent_entries ul li a {
color: #fff;
border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.content-dark #secondary .entry-meta li, .content-dark #secondary .item-meta li {
color: rgba(255, 255, 255, 0.8);
}
.content-dark.single-post .content-area .post-previous-next, .content-dark.single-post .content-area .entry-content-bottom, .content-dark .widget_ct_recent_posts .entry-brief + .entry-brief {
border-color: rgba(255, 255, 255, 0.16);
}
.content-dark.single-post .content-area .entry-content-bottom .entry-tags label {
color: #fff;
}
.content-dark .home_main_post_right_list .image-post-title a, .content-dark .jelly-feature-post-list .jelly-item-details h3 a, .content-dark .home_main_post_below_list_small .image-post-title a, .content-dark .home_main_post_bellow_list2 .image-post-title a {
color: #fff;
}
.content-dark .ct-related-post-wrap {
background-color: #111;
}
.content-dark .ct-related-post-wrap .ct-related-post .section-title {
color: #fff;
}
.content-dark .ct-related-post-wrap .ct-related-post .item-holder {
background-color: #222;
}
.content-dark .ct-related-post-wrap .ct-related-post .item-holder .item-title a, .content-dark .ct-related-post-wrap .ct-related-post .item-holder .item-readmore a {
color: #fff;
}
.content-dark .ct-related-post-wrap .ct-related-post .item-holder .item-title a:hover, .content-dark .ct-related-post-wrap .ct-related-post .item-holder .item-readmore a:hover {
color: #f00;
}
.content-dark h1, .content-dark h2, .content-dark h3, .content-dark h4, .content-dark h5, .content-dark h6, .content-dark .h1, .content-dark .h2, .content-dark .h3, .content-dark .h4, .content-dark .h5, .content-dark .h6 {
color: #fff;
}
.widget {
margin-bottom: 45px;
}
.widget:last-child {
margin-bottom: 0;
}
.widget select {
max-width: 100%;
}
.logged-in .hide-logged {
display: none;
}
ul.menu {
list-style: none;
margin: 0;
}
.widget_nav_menu.column3 ul.menu {
margin: 0 -15px;
overflow: hidden;
}
.widget_nav_menu.column3 ul.menu li {
width: 33.33%;
padding: 0 15px;
float: left;
}
@media screen and (max-width: 767px) {
.widget_nav_menu.column3 ul.menu li {
width: 50%;
}
}
@media screen and (max-width: 575px) {
.widget_nav_menu.column3 ul.menu li {
width: 100%;
}
}
.widget_nav_menu.column2 ul.menu {
margin: 0 -15px;
overflow: hidden;
}
.widget_nav_menu.column2 ul.menu li {
width: 50%;
padding: 0 15px;
float: left;
}
@media screen and (max-width: 575px) {
.widget_nav_menu.column2 ul.menu li {
width: 100%;
}
}
.widget_categories ul, .widget_nav_menu ul, .widget_pages ul, .widget_archive ul, .widget_meta ul, .widget_recent_entries ul {
list-style: none;
margin-bottom: 0;
}
#content .widget_categories ul ul ul ul ul, #content .widget_pages ul ul ul ul ul, #content .widget_nav_menu ul ul ul ul ul, #content .widget_meta ul ul ul ul ul, #content .widget_recent_entries ul ul ul ul ul {
padding-left: 0;
}
#content .widget_product_categories ul li, #content .widget_categories ul li, #content .widget_nav_menu ul li, #content .widget_pages ul li, #content .widget_archive ul li, #content .widget_meta ul li, #content .widget_recent_entries ul li {
font-size: 0px;
}
#content .widget_product_categories ul li a, #content .widget_categories ul li a, #content .widget_nav_menu ul li a, #content .widget_pages ul li a, #content .widget_archive ul li a, #content .widget_meta ul li a, #content .widget_recent_entries ul li a {
color: #333;
display: block;
font-size: 15px;
padding: 12px 0;
position: relative;
border-bottom: 1px solid #ececf0;
font-family: 'Poppins', sans-serif;
font-weight: 500;
position: relative;
}
#content .widget_product_categories ul li a:before, #content .widget_categories ul li a:before, #content .widget_nav_menu ul li a:before, #content .widget_pages ul li a:before, #content .widget_archive ul li a:before, #content .widget_meta ul li a:before, #content .widget_recent_entries ul li a:before {
content: '';
height: 7px;
width: 7px;
-webkit-border-radius: 7px;
-khtml-border-radius: 7px;
-moz-border-radius: 7px;
-ms-border-radius: 7px;
-o-border-radius: 7px;
border-radius: 7px;
background-color: #f00;
position: absolute;
left: 0;
top: 50%;
-webkit-transform: translate(0, -50%);
-khtml-transform: translate(0, -50%);
-moz-transform: translate(0, -50%);
-ms-transform: translate(0, -50%);
-o-transform: translate(0, -50%);
transform: translate(0, -50%);
opacity: 0;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
}
#content .widget_product_categories ul li:last-child > a, #content .widget_categories ul li:last-child > a, #content .widget_nav_menu ul li:last-child > a, #content .widget_pages ul li:last-child > a, #content .widget_archive ul li:last-child > a, #content .widget_meta ul li:last-child > a, #content .widget_recent_entries ul li:last-child > a {
border-bottom: none;
}
#content .widget_product_categories ul li.current-menu-item > a, #content .widget_categories ul li.current-menu-item > a, #content .widget_nav_menu ul li.current-menu-item > a, #content .widget_pages ul li.current-menu-item > a, #content .widget_archive ul li.current-menu-item > a, #content .widget_meta ul li.current-menu-item > a, #content .widget_recent_entries ul li.current-menu-item > a, #content .widget_product_categories ul li.current-cat > a, #content .widget_categories ul li.current-cat > a, #content .widget_nav_menu ul li.current-cat > a, #content .widget_pages ul li.current-cat > a, #content .widget_archive ul li.current-cat > a, #content .widget_meta ul li.current-cat > a, #content .widget_recent_entries ul li.current-cat > a, #content .widget_product_categories ul li.current-cat-parent > a, #content .widget_categories ul li.current-cat-parent > a, #content .widget_nav_menu ul li.current-cat-parent > a, #content .widget_pages ul li.current-cat-parent > a, #content .widget_archive ul li.current-cat-parent > a, #content .widget_meta ul li.current-cat-parent > a, #content .widget_recent_entries ul li.current-cat-parent > a, #content .widget_product_categories ul li > a:hover, #content .widget_categories ul li > a:hover, #content .widget_nav_menu ul li > a:hover, #content .widget_pages ul li > a:hover, #content .widget_archive ul li > a:hover, #content .widget_meta ul li > a:hover, #content .widget_recent_entries ul li > a:hover {
color: #f00;
padding-left: 30px;
}
#content .widget_product_categories ul li.current-menu-item > a:before, #content .widget_categories ul li.current-menu-item > a:before, #content .widget_nav_menu ul li.current-menu-item > a:before, #content .widget_pages ul li.current-menu-item > a:before, #content .widget_archive ul li.current-menu-item > a:before, #content .widget_meta ul li.current-menu-item > a:before, #content .widget_recent_entries ul li.current-menu-item > a:before, #content .widget_product_categories ul li.current-cat > a:before, #content .widget_categories ul li.current-cat > a:before, #content .widget_nav_menu ul li.current-cat > a:before, #content .widget_pages ul li.current-cat > a:before, #content .widget_archive ul li.current-cat > a:before, #content .widget_meta ul li.current-cat > a:before, #content .widget_recent_entries ul li.current-cat > a:before, #content .widget_product_categories ul li.current-cat-parent > a:before, #content .widget_categories ul li.current-cat-parent > a:before, #content .widget_nav_menu ul li.current-cat-parent > a:before, #content .widget_pages ul li.current-cat-parent > a:before, #content .widget_archive ul li.current-cat-parent > a:before, #content .widget_meta ul li.current-cat-parent > a:before, #content .widget_recent_entries ul li.current-cat-parent > a:before, #content .widget_product_categories ul li > a:hover:before, #content .widget_categories ul li > a:hover:before, #content .widget_nav_menu ul li > a:hover:before, #content .widget_pages ul li > a:hover:before, #content .widget_archive ul li > a:hover:before, #content .widget_meta ul li > a:hover:before, #content .widget_recent_entries ul li > a:hover:before {
left: 15px;
opacity: 1;
}
#content .widget_product_categories ul li.menu-item-has-children > a, #content .widget_categories ul li.menu-item-has-children > a, #content .widget_nav_menu ul li.menu-item-has-children > a, #content .widget_pages ul li.menu-item-has-children > a, #content .widget_archive ul li.menu-item-has-children > a, #content .widget_meta ul li.menu-item-has-children > a, #content .widget_recent_entries ul li.menu-item-has-children > a {
border-bottom: 1px solid rgba(102, 102, 102, 0.11);
}
#content .widget_product_categories ul li .children, #content .widget_categories ul li .children, #content .widget_nav_menu ul li .children, #content .widget_pages ul li .children, #content .widget_archive ul li .children, #content .widget_meta ul li .children, #content .widget_recent_entries ul li .children, #content .widget_product_categories ul li .sub-menu, #content .widget_categories ul li .sub-menu, #content .widget_nav_menu ul li .sub-menu, #content .widget_pages ul li .sub-menu, #content .widget_archive ul li .sub-menu, #content .widget_meta ul li .sub-menu, #content .widget_recent_entries ul li .sub-menu {
padding-left: 12px;
}
#content .widget_product_categories ul li .children li a, #content .widget_categories ul li .children li a, #content .widget_nav_menu ul li .children li a, #content .widget_pages ul li .children li a, #content .widget_archive ul li .children li a, #content .widget_meta ul li .children li a, #content .widget_recent_entries ul li .children li a, #content .widget_product_categories ul li .sub-menu li a, #content .widget_categories ul li .sub-menu li a, #content .widget_nav_menu ul li .sub-menu li a, #content .widget_pages ul li .sub-menu li a, #content .widget_archive ul li .sub-menu li a, #content .widget_meta ul li .sub-menu li a, #content .widget_recent_entries ul li .sub-menu li a {
border-bottom: 1px solid rgba(102, 102, 102, 0.11);
}
#content .widget_product_categories ul li .children li:last-child > a, #content .widget_categories ul li .children li:last-child > a, #content .widget_nav_menu ul li .children li:last-child > a, #content .widget_pages ul li .children li:last-child > a, #content .widget_archive ul li .children li:last-child > a, #content .widget_meta ul li .children li:last-child > a, #content .widget_recent_entries ul li .children li:last-child > a, #content .widget_product_categories ul li .sub-menu li:last-child > a, #content .widget_categories ul li .sub-menu li:last-child > a, #content .widget_nav_menu ul li .sub-menu li:last-child > a, #content .widget_pages ul li .sub-menu li:last-child > a, #content .widget_archive ul li .sub-menu li:last-child > a, #content .widget_meta ul li .sub-menu li:last-child > a, #content .widget_recent_entries ul li .sub-menu li:last-child > a {
border-bottom: 1px solid rgba(102, 102, 102, 0.11);
}
#content .widget_product_categories .nice-select ul li, #content .widget_categories .nice-select ul li, #content .widget_nav_menu .nice-select ul li, #content .widget_pages .nice-select ul li, #content .widget_archive .nice-select ul li, #content .widget_meta .nice-select ul li, #content .widget_recent_entries .nice-select ul li {
border: none;
font-size: 14px;
line-height: normal;
padding: 8px 24px;
font-weight: 500;
}
#content .widget_recent_entries ul li a {
padding: 13px 0;
}
#content .vc_wp_custommenu {
margin-bottom: 0;
}
#content .vc_wp_custommenu .widget_nav_menu ul li {
margin-bottom: 3px;
}
#content .vc_wp_custommenu .widget_nav_menu ul li a {
padding: 15px 20px;
border-left: 3px solid transparent;
border-bottom: none;
background-color: rgba(255, 0, 0, 0.08);
color: #000;
}
#content .vc_wp_custommenu .widget_nav_menu ul li a:before {
display: none;
}
#content .vc_wp_custommenu .widget_nav_menu ul li.current-menu-item > a, #content .vc_wp_custommenu .widget_nav_menu ul li a:hover {
border-color: #f00;
}
.widget_recent_comments li {
font-size: 16px;
line-height: 24px;
color: #6a6a6a;
}
.widget_recent_comments li + li {
padding-top: 26px;
margin-top: 8px;
border-top: 1px solid rgba(0, 0, 0, 0.085);
}
.widget_recent_comments li span {
color: #4c4c4c;
}
.widget_recent_comments li a {
color: #000001;
}
.widget_recent_comments li a:hover {
color: #f00;
}
.widget_rss ul {
list-style: none;
padding: 0;
}
.widget_rss li {
margin-bottom: 16px;
}
.widget_rss li:last-child {
margin-bottom: 0;
}
.widget_rss .rsswidget {
display: inline-block;
color: #111;
}
.widget_rss .rsswidget .rss-widget-icon {
margin-top: -2px;
}
.widget_rss .rss-date {
font-size: 0.875em;
font-style: italic;
display: block;
}
.widget_rss cite {
font-size: 0.875em;
}
.widget_calendar th, .widget_calendar td {
text-align: center;
}
.contact-info {
max-width: 250px;
}
.contact-info ul {
list-style: none;
margin: 0;
}
.contact-info ul li {
padding-left: 27px;
position: relative;
}
.contact-info ul li + li {
margin-top: 14px;
}
.contact-info ul li i {
position: absolute;
top: 6px;
left: 0;
font-size: 14px;
color: #f00;
}
.widget_text p {
margin-bottom: 0;
}
.widget_text .wpb_image_grid {
margin: 0 -5px;
}
.widget_text .wpb_image_grid .isotope-item {
width: 32.6%;
margin-bottom: 10px;
}
.widget_text .wpb_image_grid .isotope-item a {
display: block;
margin-bottom: 10px;
padding: 0 5px;
}
.widget_text .wpb_image_grid .isotope-item a img {
-webkit-border-radius: 9px;
-khtml-border-radius: 9px;
-moz-border-radius: 9px;
-ms-border-radius: 9px;
-o-border-radius: 9px;
border-radius: 9px;
}
.widget_cms_check_availability {
background-color: #fff;
border: 1px solid #e5e5e5 !important;
-webkit-border-radius: 6px;
-khtml-border-radius: 6px;
-moz-border-radius: 6px;
-ms-border-radius: 6px;
-o-border-radius: 6px;
border-radius: 6px;
margin-bottom: 55px !important;
padding: 30px !important;
}
.widget_cms_check_availability .select2-selection__arrow {
display: none !important;
}
.widget_newsletterwidget {
line-height: 1.714;
}
.widget_newsletterwidget form {
margin-top: 20px;
position: relative;
display: flex;
flex-wrap: nowrap;
}
.widget_newsletterwidget form .tnp-field-email {
flex-grow: 1;
margin-bottom: 0;
}
.widget_newsletterwidget form .tnp-field-email .tnp-email {
-webkit-border-radius: 25px;
-khtml-border-radius: 25px;
-moz-border-radius: 25px;
-ms-border-radius: 25px;
-o-border-radius: 25px;
border-radius: 25px;
border: 2px solid rgba(0, 0, 0, 0.1);
height: 50px;
padding: 10px 20px;
background-color: transparent;
font-size: 15px;
color: #6c757d;
}
.widget_newsletterwidget form .tnp-field-email .tnp-email:focus {
border-color: #f00;
}
.widget_newsletterwidget form .tnp-field-button {
margin-bottom: 0;
}
.widget_newsletterwidget form .tnp-field-button .tnp-submit {
background-color: #f00;
border: none;
line-height: 50px;
padding: 0 20px;
font-size: 15px;
width: inherit;
-webkit-border-radius: 30px;
-khtml-border-radius: 30px;
-moz-border-radius: 30px;
-ms-border-radius: 30px;
-o-border-radius: 30px;
border-radius: 30px;
}
.widget_newsletterwidget form .tnp-field-button .tnp-submit:hover {
background-color: #b50d1c;
}
.widget_newsletterwidget form .tnp-field {
margin-right: 15px;
}
.widget_newsletterwidget form .tnp-field:last-child {
margin-right: 0;
}
.widget_ct_recent_posts .widget-title {
margin-bottom: 30px;
}
.widget_ct_recent_posts .entry-brief {
display: flex;
flex-wrap: nowrap;
}
.widget_ct_recent_posts .entry-brief + .entry-brief {
margin-top: 24px;
padding-top: 24px;
border-top: 1px solid #e2e2e7;
}
.widget_ct_recent_posts .entry-media {
width: 65px;
margin-right: 25px;
min-width: 65px;
}
.widget_ct_recent_posts .entry-media img {
-webkit-border-radius: 65px;
-khtml-border-radius: 65px;
-moz-border-radius: 65px;
-ms-border-radius: 65px;
-o-border-radius: 65px;
border-radius: 65px;
}
.widget_ct_recent_posts .entry-title {
font-size: 15px;
line-height: 26px;
margin-bottom: 10px;
}
.widget_ct_recent_posts .entry-title a {
color: inherit;
}
.widget_ct_recent_posts .entry-title a:hover {
color: #f00;
}
.widget_ct_recent_posts .entry-meta {
line-height: 1;
margin: 0;
border: none;
padding: 0;
}
.widget_ct_recent_posts .entry-meta:before {
display: none;
}
.widget_ct_recent_posts .entry-meta li {
margin: 0;
}
.tagcloud {
display: flex;
flex-wrap: wrap;
}
.tagcloud a {
background-color: #f4f7fc;
padding: 0 22px;
color: #333335;
display: inline-block;
font-size: 15px !important;
line-height: 32px;
margin-right: 5px;
margin-bottom: 10px;
-webkit-border-radius: 32px;
-khtml-border-radius: 32px;
-moz-border-radius: 32px;
-ms-border-radius: 32px;
-o-border-radius: 32px;
border-radius: 32px;
}
.tagcloud a:hover {
background-color: #f00;
color: #fff;
}
.entry-tags {
display: flex;
flex-wrap: wrap;
align-items: center;
}
.entry-tags a {
border: 1px solid #f00;
padding: 0 22px;
color: #524b48;
display: inline-block;
font-size: 15px !important;
line-height: 38px;
margin-right: 5px;
margin-bottom: 5px;
margin-top: 5px;
-webkit-border-radius: 40px;
-khtml-border-radius: 40px;
-moz-border-radius: 40px;
-ms-border-radius: 40px;
-o-border-radius: 40px;
border-radius: 40px;
position: relative;
z-index: 1;
}
.entry-tags a:hover {
color: #fff;
background-color: #f00;
border-color: #f00;
}
.widget_search .search-form {
position: relative;
}
.widget_search .search-form .search-field {
background-color: #fff;
height: 51px;
padding-left: 20px;
padding-right: 51px;
-webkit-border-radius: 51px;
-khtml-border-radius: 51px;
-moz-border-radius: 51px;
-ms-border-radius: 51px;
-o-border-radius: 51px;
border-radius: 51px;
}
.widget_search .search-form .search-field:focus {
border-color: #f00;
}
.widget_search .search-form .search-field:focus + .search-submit {
border-color: #f00;
}
.widget_search .search-form .search-submit {
padding: 0;
border: none;
line-height: 50px;
width: 51px;
border-left: 1px solid #ececf0;
position: absolute;
top: 0;
right: 0;
color: #333;
font-size: 15px;
background-image: none;
background-color: transparent;
-webkit-box-shadow: none;
-khtml-box-shadow: none;
-moz-box-shadow: none;
-ms-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
-webkit-border-radius: 0px;
-khtml-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
}
.widget_search .search-form .search-submit:before, .widget_search .search-form .search-submit:after {
display: none;
}
.widget_search .search-form .search-submit:hover {
color: #f00;
}
.ct-social {
margin: 0;
list-style: none;
}
.ct-social li {
display: inline-block;
margin-right: 8px;
}
.ct-social li a {
font-size: 16px;
color: #fff !important;
background-color: #f00;
height: 40px;
width: 40px;
line-height: 40px;
-webkit-border-radius: 40px;
-khtml-border-radius: 40px;
-moz-border-radius: 40px;
-ms-border-radius: 40px;
-o-border-radius: 40px;
border-radius: 40px;
text-align: center;
display: block;
}
.ct-social li a span {
display: none;
}
.ct-social li a.social-facebook {
background-color: #3b5999;
}
.ct-social li a.social-rss {
background-color: #f57d00;
}
.ct-social li a.social-youtube {
background-color: #cd201f;
}
.ct-social li a.social-twitter {
background-color: #55acee;
}
.ct-social li a.social-google {
background-color: #dd4b39;
}
.ct-social li a.social-skype {
background-color: #00aff0;
}
.ct-social li a.social-dribbble {
background-color: #ea4c89;
}
.ct-social li a.social-flickr {
background-color: #ff0084;
}
.ct-social li a.social-linkedin {
background-color: #0077b5;
}
.ct-social li a.social-vimeo {
background-color: #1ab7ea;
}
.ct-social li a.social-pinterest {
background-color: #bd081c;
}
.ct-social li a.social-instagram {
background-color: #e4405f;
}
.ct-newsletter.widget .ct-newsletter-inner {
background-color: #f5f6f7;
padding: 20px;
position: relative;
overflow: hidden;
}
.ct-newsletter.widget .ct-newsletter-inner:before {
font-family: 'themify';
content: "\e75a";
font-size: 50px;
font-weight: 700;
position: absolute;
right: 0;
top: 0;
opacity: 0.05;
}
.ct-newsletter.widget .ct-newsletter-inner .newsletter {
position: relative;
}
.ct-newsletter.widget .ct-newsletter-inner .newsletter:after {
color: #000;
content: "Newslatter";
font-family: "Montserrat";
font-size: 50px;
font-weight: 700;
opacity: 0.05;
position: absolute;
top: -40px;
}
.ct-newsletter.widget .ct-newsletter-inner .ct-newsletter-introduction {
font-size: 15px;
font-style: italic;
margin-bottom: 24px;
}
.ct-newsletter.widget .ct-newsletter-inner .tnp-field {
position: relative;
z-index: 1;
}
.ct-newsletter.widget .ct-newsletter-inner .tnp-field-email {
margin-bottom: 15px;
}
.ct-newsletter.widget .ct-newsletter-inner .tnp-field-email .tnp-email {
border: 1px solid #d0d0d0;
-webkit-border-radius: 0px;
-khtml-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
height: 45px;
padding: 5px 20px;
}
.ct-newsletter.widget .ct-newsletter-inner .tnp-field-email .tnp-email:focus {
border-color: #f00;
}
.ct-newsletter.widget .ct-newsletter-inner .tnp-field-button .tnp-button {
line-height: 45px;
-webkit-border-radius: 0px;
-khtml-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
width: 100%;
}
.wpb_wrapper .contact-info {
font-size: 21px;
color: #797979;
line-height: 1.363;
font-weight: 500;
max-width: 300px;
}
.wpb_wrapper .contact-info span {
color: #333;
}
.wpb_wrapper .contact-info.color-white {
color: #fff;
}
.wpb_wrapper .contact-info.color-white span {
color: rgba(255, 255, 255, 0.85);
}
.gallery {
margin: -16px -12px 43px -12px;
display: flex;
flex-wrap: wrap;
}
.gallery .gallery-item {
padding: 0 12px;
margin-top: 24px;
margin-bottom: 0;
}
.gallery.gallery-columns-2 .gallery-item {
width: 50%;
}
.gallery.gallery-columns-3 .gallery-item {
width: 33.33%;
}
.gallery.gallery-columns-4 .gallery-item {
width: 25%;
}
.gallery.gallery-columns-5 .gallery-item {
width: 20%;
}
.widget_media_gallery .gallery-item {
padding: 0 5px;
margin-top: 10px;
margin-bottom: 0;
}
.widget_media_gallery .gallery {
margin: -10px -5px 0 -5px;
}
.page-content .wp-smiley, .entry-content .wp-smiley, .comment-content .wp-smiley {
border: none;
margin-bottom: 0;
margin-top: 0;
padding: 0;
}
embed, iframe, object {
max-width: 100%;
}
.custom-logo-link {
display: inline-block;
}
.wp-caption {
margin-bottom: 1.5em;
max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
display: block;
margin-left: auto;
margin-right: auto;
}
.wp-caption .wp-caption-text {
padding: 0.8075em 0;
font-size: 0.875em;
font-style: italic;
}
.wp-caption-text {
text-align: center;
}
.gallery {
margin-bottom: 1.5em;
}
.gallery-item {
display: inline-block;
text-align: center;
vertical-align: top;
width: 100%;
}
.gallery-caption {
display: block;
}
.wp-video .mejs-container {
min-width: inherit !important;
}
.wp-video .mejs-controls.mejs-offscreen {
opacity: 1 !important;
display: block !important;
}
.wp-video .mejs-controls .mejs-time-rail .mejs-time-current {
background-color: #f00;
}
.comment-content a {
word-wrap: break-word;
}
.bypostauthor {
display: block;
}
.comments-area {
padding: 0 50px;
}
@media screen and (max-width: 767px) {
.comments-area {
padding: 0 15px;
}
}
.comments-area .comment-list-wrap {
padding: 55px 0 0;
}
.comments-area .comment-respond {
margin-top: 51px;
}
.comments-area .comment-respond #cancel-comment-reply-link {
color: #888;
}
.comments-area .comment-respond #cancel-comment-reply-link:hover {
color: #b50d1c;
}
.comments-area .comment-respond .logged-in-as {
margin-bottom: 25px;
}
.comments-area .comment-respond .logged-in-as a {
color: #888;
}
.comments-area .comment-respond .logged-in-as a:hover {
color: #b50d1c;
}
.comments-area .no-comments {
display: none;
}
.comment-title {
font-size: 18px;
color: #333;
text-transform: capitalize;
margin-bottom: 0;
}
.comment-list {
padding: 0;
list-style: none;
}
.comment-list li .children {
padding-left: 35px;
}
.comment-list li .children li {
list-style: none;
margin-top: 37px;
}
.comment-list li .comment-respond {
margin-top: 30px;
margin-left: 84px;
}
@media screen and (max-width: 767px) {
.comment-list li .comment-respond {
margin-left: 0;
}
}
.comment-list > li {
margin-bottom: 37px;
}
.comment-list > li:last-child {
margin-bottom: 0;
}
.comment-inner {
display: flex;
flex-wrap: nowrap;
}
.comment-inner img.avatar {
width: 90px;
height: 90px;
min-width: 90px;
margin-right: 30px;
float: left;
-webkit-border-radius: 90px;
-khtml-border-radius: 90px;
-moz-border-radius: 90px;
-ms-border-radius: 90px;
-o-border-radius: 90px;
border-radius: 90px;
}
@media screen and (max-width: 767px) {
.comment-inner {
display: block;
}
.comment-inner img.avatar {
margin: 0 0 25px;
}
.comment-inner .comment-reply {
position: static;
padding-top: 20px;
}
}
.comment-date {
color: #524b48;
display: inline-block;
font-size: 14px;
margin-bottom: 22px;
font-family: 'Poppins', sans-serif;
}
.comment-content {
position: relative;
flex-grow: 1;
padding: 20px 25px 32px 25px;
background: #f4f7fc;
}
.comment-content .comment-text p {
margin-bottom: 0;
font-size: 15px;
line-height: 27px;
font-family: 'Poppins', sans-serif;
}
.comment-reply {
position: absolute;
right: 23px;
top: 20px;
}
.comment-reply a {
font-size: 14px;
font-weight: 500;
line-height: 1;
display: inline-block;
font-family: 'Poppins', sans-serif;
color: #fff;
padding: 0 16px;
line-height: 35px;
-webkit-border-radius: 35px;
-khtml-border-radius: 35px;
-moz-border-radius: 35px;
-ms-border-radius: 35px;
-o-border-radius: 35px;
border-radius: 35px;
background-color: #191919;
}
.comment-reply a:after {
content: "\f105";
font-family: FontAwesome;
margin-left: 4px;
font-weight: normal;
}
.comment-reply a:hover {
background-color: #f00;
color: #fff;
}
.comment-form .form-submit {
margin-bottom: 0;
}
.comment-form .comment-notes {
display: none;
}
.comment-form .col-lg-4 {
margin-bottom: 30px;
}
.comment-form .comment-form-comment {
margin-bottom: 27px;
}
@media screen and (max-width: 767px) {
.comment-inner, .comments-title {
text-align: center;
}
.comment-inner:before, .comments-title:before {
left: 0;
right: 0;
margin: auto;
}
.comment-inner img.avatar {
float: none;
display: inline-block;
}
.comment-content {
display: block;
}
.comment-content ul, .comment-content ol {
text-align: left;
}
.comment-content:before, .comment-content:after {
border-color: transparent transparent #fff;
border-width: 10px;
left: 0;
top: -19px;
right: 0;
margin: auto;
}
.comment-content:after {
border-color: transparent transparent #e9e9e9;
top: -21px;
}
.comment-list li .children {
padding-left: 0;
}
}
.site-footer {
font-size: 14px;
color: #fff;
}
.site-footer .top-footer {
background-color: #1d1d1d;
background-image: url(//www.4cine.it/wp-content/themes/nimmo/assets/images/bg-footer.png);
background-repeat: repeat;
background-position: bottom center;
padding: 105px 0 82px;
}
@media screen and (max-width: 991px) {
.site-footer .top-footer {
padding-top: 82px;
padding-bottom: 37px;
}
}
.site-footer .top-footer .footer-widget-title {
font-size: 24px;
color: #fff;
text-transform: uppercase;
margin-bottom: 24px;
}
.site-footer .top-footer .footer-logo {
margin-top: 7px;
margin-bottom: 30px;
}
.site-footer .top-footer .footer-logo.custom-height-logo img {
max-height: 26px;
width: auto;
}
.site-footer .top-footer ul.menu li + li, .site-footer .top-footer .widget_pages ul li + li, .site-footer .top-footer .widget_meta ul li + li, .site-footer .top-footer .widget_categories ul li + li, .site-footer .top-footer .widget_archive ul li + li {
margin-top: 15px;
}
.site-footer .top-footer ul.menu li a, .site-footer .top-footer .widget_pages ul li a, .site-footer .top-footer .widget_meta ul li a, .site-footer .top-footer .widget_categories ul li a, .site-footer .top-footer .widget_archive ul li a {
color: #fff;
position: relative;
padding-left: 14px;
}
.site-footer .top-footer ul.menu li a:before, .site-footer .top-footer .widget_pages ul li a:before, .site-footer .top-footer .widget_meta ul li a:before, .site-footer .top-footer .widget_categories ul li a:before, .site-footer .top-footer .widget_archive ul li a:before {
font-family: FontAwesome;
content: '\f105';
position: absolute;
top: 50%;
left: 0;
-webkit-transform: translate(0, -50%);
-khtml-transform: translate(0, -50%);
-moz-transform: translate(0, -50%);
-ms-transform: translate(0, -50%);
-o-transform: translate(0, -50%);
transform: translate(0, -50%);
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
}
.site-footer .top-footer ul.menu li > a:hover, .site-footer .top-footer .widget_pages ul li > a:hover, .site-footer .top-footer .widget_meta ul li > a:hover, .site-footer .top-footer .widget_categories ul li > a:hover, .site-footer .top-footer .widget_archive ul li > a:hover, .site-footer .top-footer ul.menu li.current_page_item > a, .site-footer .top-footer .widget_pages ul li.current_page_item > a, .site-footer .top-footer .widget_meta ul li.current_page_item > a, .site-footer .top-footer .widget_categories ul li.current_page_item > a, .site-footer .top-footer .widget_archive ul li.current_page_item > a, .site-footer .top-footer ul.menu li.current-menu-item > a, .site-footer .top-footer .widget_pages ul li.current-menu-item > a, .site-footer .top-footer .widget_meta ul li.current-menu-item > a, .site-footer .top-footer .widget_categories ul li.current-menu-item > a, .site-footer .top-footer .widget_archive ul li.current-menu-item > a, .site-footer .top-footer ul.menu li.current_page_ancestor > a, .site-footer .top-footer .widget_pages ul li.current_page_ancestor > a, .site-footer .top-footer .widget_meta ul li.current_page_ancestor > a, .site-footer .top-footer .widget_categories ul li.current_page_ancestor > a, .site-footer .top-footer .widget_archive ul li.current_page_ancestor > a, .site-footer .top-footer ul.menu li.current-menu-ancestor > a, .site-footer .top-footer .widget_pages ul li.current-menu-ancestor > a, .site-footer .top-footer .widget_meta ul li.current-menu-ancestor > a, .site-footer .top-footer .widget_categories ul li.current-menu-ancestor > a, .site-footer .top-footer .widget_archive ul li.current-menu-ancestor > a {
padding-left: 21px;
color: #f00;
}
.site-footer .top-footer ul.menu li > a:hover:before, .site-footer .top-footer .widget_pages ul li > a:hover:before, .site-footer .top-footer .widget_meta ul li > a:hover:before, .site-footer .top-footer .widget_categories ul li > a:hover:before, .site-footer .top-footer .widget_archive ul li > a:hover:before, .site-footer .top-footer ul.menu li.current_page_item > a:before, .site-footer .top-footer .widget_pages ul li.current_page_item > a:before, .site-footer .top-footer .widget_meta ul li.current_page_item > a:before, .site-footer .top-footer .widget_categories ul li.current_page_item > a:before, .site-footer .top-footer .widget_archive ul li.current_page_item > a:before, .site-footer .top-footer ul.menu li.current-menu-item > a:before, .site-footer .top-footer .widget_pages ul li.current-menu-item > a:before, .site-footer .top-footer .widget_meta ul li.current-menu-item > a:before, .site-footer .top-footer .widget_categories ul li.current-menu-item > a:before, .site-footer .top-footer .widget_archive ul li.current-menu-item > a:before, .site-footer .top-footer ul.menu li.current_page_ancestor > a:before, .site-footer .top-footer .widget_pages ul li.current_page_ancestor > a:before, .site-footer .top-footer .widget_meta ul li.current_page_ancestor > a:before, .site-footer .top-footer .widget_categories ul li.current_page_ancestor > a:before, .site-footer .top-footer .widget_archive ul li.current_page_ancestor > a:before, .site-footer .top-footer ul.menu li.current-menu-ancestor > a:before, .site-footer .top-footer .widget_pages ul li.current-menu-ancestor > a:before, .site-footer .top-footer .widget_meta ul li.current-menu-ancestor > a:before, .site-footer .top-footer .widget_categories ul li.current-menu-ancestor > a:before, .site-footer .top-footer .widget_archive ul li.current-menu-ancestor > a:before {
left: 8px;
}
.site-footer .top-footer ul.menu .sub-menu, .site-footer .top-footer .widget_pages ul .sub-menu, .site-footer .top-footer .widget_meta ul .sub-menu, .site-footer .top-footer .widget_categories ul .sub-menu, .site-footer .top-footer .widget_archive ul .sub-menu {
margin-top: 15px;
}
.site-footer .top-footer .widget_recent_comments {
color: #fff;
}
.site-footer .top-footer .widget_recent_comments ul {
list-style: none;
}
.site-footer .top-footer .widget_recent_comments ul li span {
color: #fff;
}
.site-footer .top-footer .widget_recent_comments ul a {
color: #fff;
}
.site-footer .top-footer .widget_recent_comments ul a:hover {
color: #f00;
}
.site-footer .top-footer .widget_rss .rsswidget, .site-footer .top-footer table th {
color: #fff;
}
.site-footer .top-footer .remove-arrow ul.menu li a {
padding-left: 0;
}
.site-footer .top-footer .remove-arrow ul.menu li a:before {
display: none;
}
.site-footer .top-footer .widget_ct_recent_posts .entry-title a {
color: #fff;
}
.site-footer .top-footer .widget_ct_recent_posts .entry-title a:hover {
color: #f00;
}
.site-footer .top-footer .widget_ct_recent_posts .entry-brief + .entry-brief {
border-color: rgba(255, 255, 255, 0.1);
}
.site-footer .top-footer .widget_ct_recent_posts .entry-meta li {
color: #f9f9f9;
}
@media screen and (min-width: 1200px) {
.site-footer .top-footer.top-width-custom .ct-footer-item.col-xl-3:nth-child(1) {
flex: 0 0 35.8%;
max-width: 35.8%;
padding-right: 60px;
}
.site-footer .top-footer.top-width-custom .ct-footer-item.col-xl-3:nth-child(2) {
flex: 0 0 20.2%;
max-width: 20.2%;
}
.site-footer .top-footer.top-width-custom .ct-footer-item.col-xl-3:nth-child(3) {
flex: 0 0 20%;
max-width: 20%;
}
.site-footer .top-footer.top-width-custom .ct-footer-item.col-xl-3:nth-child(4) {
flex: 0 0 24%;
max-width: 24%;
}
}
@media screen and (max-width: 991px) {
.site-footer .top-footer .ct-footer-item {
margin-bottom: 45px;
}
}
.site-footer .top-footer .wpb_gallery {
margin-bottom: 0 !important;
}
.site-footer .top-footer .wpb_gallery_slides.wpb_image_grid {
margin-top: 8px;
}
.site-footer .top-footer .wpb_gallery_slides.wpb_image_grid .isotope-item a img {
-webkit-border-radius: 0px;
-khtml-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
}
.site-footer .top-footer .wpb_gallery_slides.wpb_image_grid .isotope-item a img:hover {
opacity: 0.75;
}
.site-footer .bottom-footer {
background-color: #000;
padding: 12px 0;
}
.site-footer .bottom-footer .row {
align-items: center;
}
.site-footer .bottom-footer .bottom-social {
padding: 0 15px;
}
.site-footer .bottom-footer .bottom-social label {
font-family: "Open Sans";
font-weight: 600;
}
.site-footer .bottom-footer .bottom-social a {
display: inline-block;
font-size: 18px;
color: inherit;
margin-left: 9px;
}
.site-footer .bottom-footer .bottom-social a:hover {
color: #f00;
}
@media screen and (max-width: 767px) {
.site-footer .bottom-footer .bottom-social {
width: 100%;
text-align: center;
}
}
.site-footer .bottom-footer .bottom-copyright {
padding: 0 15px;
flex-grow: 1;
font-family: 'Poppins', sans-serif;
}
.site-footer .bottom-footer .bottom-copyright a {
color: #f00;
}
.site-footer .bottom-footer .bottom-copyright a:hover {
color: #fff;
}
@media screen and (max-width: 767px) {
.site-footer .bottom-footer .bottom-copyright {
width: 100%;
text-align: center;
}
}
.ct-scroll-top.fixed-bottom {
display: none;
}
.ct-scroll-top:not(.fixed-bottom) {
background-color: #f00;
background-image: -webkit-gradient(linear, left top, right top, from(#f00), to(#b50d1c));
background-image: -webkit-linear-gradient(left, #f00, #b50d1c);
background-image: -moz-linear-gradient(left, #f00, #b50d1c);
background-image: -ms-linear-gradient(left, #f00, #b50d1c);
background-image: -o-linear-gradient(left, #f00, #b50d1c);
background-image: linear-gradient(left, #f00, #b50d1c);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f00', endColorStr='#b50d1c', gradientType='1');
bottom: 0;
opacity: 0;
visibility: hidden;
color: #fff;
height: 45px;
position: fixed;
right: 30px;
text-align: center;
width: 45px;
font-size: 18px;
z-index: 1002;
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
-khtml-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
-ms-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
-o-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
-webkit-border-radius: 45px;
-khtml-border-radius: 45px;
-moz-border-radius: 45px;
-ms-border-radius: 45px;
-o-border-radius: 45px;
border-radius: 45px;
overflow: hidden;
line-height: 45px;
}
.ct-scroll-top:not(.fixed-bottom):hover {
-webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
-khtml-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
-ms-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
-o-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.ct-scroll-top:not(.fixed-bottom).on {
visibility: visible;
opacity: 1;
bottom: 30px;
}
.hidden-sidebar {
width: 270px;
position: fixed;
top: 0;
right: 0;
background-color: #222223;
height: 100%;
padding: 65px 0;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
-webkit-transform: translateX(270px);
-khtml-transform: translateX(270px);
-moz-transform: translateX(270px);
-ms-transform: translateX(270px);
-o-transform: translateX(270px);
transform: translateX(270px);
visibility: hidden;
z-index: 999;
opacity: 0;
}
.hidden-sidebar.open {
-webkit-transform: translateX(0px);
-khtml-transform: translateX(0px);
-moz-transform: translateX(0px);
-ms-transform: translateX(0px);
-o-transform: translateX(0px);
transform: translateX(0px);
opacity: 1;
visibility: visible;
}
.hidden-sidebar .hidden-sidebar-body {
display: flex;
align-items: center;
padding: 40px 0;
}
.hidden-sidebar .hidden-sidebar-body .hidden-menu {
list-style: none;
margin: 0;
}
.hidden-sidebar .hidden-sidebar-body .hidden-menu li a {
padding: 10px 0;
display: block;
color: #fff;
font-weight: 500;
}
.hidden-sidebar .hidden-sidebar-body .hidden-menu li:hover > a, .hidden-sidebar .hidden-sidebar-body .hidden-menu li.current_page_item > a, .hidden-sidebar .hidden-sidebar-body .hidden-menu li.current-menu-item > a, .hidden-sidebar .hidden-sidebar-body .hidden-menu li.current_page_ancestor > a, .hidden-sidebar .hidden-sidebar-body .hidden-menu li.current-menu-ancestor > a {
color: #f00;
}
.hidden-sidebar .hidden-sidebar-body .hidden-menu .sub-menu {
list-style: none;
margin: 0;
padding-left: 18px;
}
.hidden-sidebar .hidden-sidebar-body .hidden-menu > li.menu-item-has-children > a:after {
content: "\f078";
font-family: 'FontAwesome';
font-size: 9px;
margin-left: 5px;
font-weight: normal;
vertical-align: middle;
margin-top: -3px;
display: inline-block;
}
.hidden-sidebar .hidden-sidebar-social {
display: flex;
align-items: flex-end;
}
.hidden-sidebar .hidden-sidebar-social a {
font-size: 16px;
color: #fff;
margin-right: 14px;
margin-bottom: 10px;
}
.hidden-sidebar .hidden-sidebar-social a:hover {
color: #f00;
}
.hidden-sidebar .hidden-sidebar-inner {
display: flex;
flex-wrap: wrap;
height: 100%;
overflow: auto;
padding: 0 40px;
}
.hidden-sidebar .hidden-sidebar-inner .hidden-sidebar-logo img {
max-height: 26px;
}
.hidden-sidebar .hidden-sidebar-inner > div {
width: 100%;
}
.hidden-sidebar .hidden-sidebar-close {
cursor: pointer;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
font-size: 18px;
position: absolute;
top: 22px;
right: 22px;
}
.hidden-sidebar .hidden-sidebar-close:before, .hidden-sidebar .hidden-sidebar-close:after {
background-color: #fff;
}
.hidden-sidebar .hidden-sidebar-close:hover:before, .hidden-sidebar .hidden-sidebar-close:hover:after {
background-color: #f00;
}
.bottom-menu ul {
list-style: none;
margin-bottom: 0;
border-right: 1px solid rgba(255, 255, 255, 0.2);
padding-right: 10px;
margin-right: 5px;
}
.bottom-menu ul li {
display: inline-block;
margin: 0 10px;
}
.bottom-menu ul a {
font-size: 14px;
color: #fff;
font-family: "Open Sans";
font-weight: 600;
}
.bottom-menu ul a:hover {
color: #f00;
}
.admin-bar .hidden-sidebar {
top: 32px;
}
@media screen and (min-width: 1200px) {
#footer-custom-layout1 > .vc_col-sm-4:nth-child(1) {
width: 27.5%;
}
#footer-custom-layout1 > .vc_col-sm-4:nth-child(2) {
width: 38.5%;
}
#footer-custom-layout1 > .vc_col-sm-4:nth-child(3) {
width: 34%;
}
}
.hover-effect {
position: relative;
overflow: hidden;
z-index: 1;
}
.hover-effect:before, .hover-effect:after {
background-color: #000;
content: "";
height: 100%;
left: -110%;
opacity: 0.1;
position: absolute;
top: 0;
-webkit-transition: all 0.5s ease 0s;
-khtml-transition: all 0.5s ease 0s;
-moz-transition: all 0.5s ease 0s;
-ms-transition: all 0.5s ease 0s;
-o-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s;
-webkit-transform: skewX(25deg);
-khtml-transform: skewX(25deg);
-moz-transform: skewX(25deg);
-ms-transform: skewX(25deg);
-o-transform: skewX(25deg);
transform: skewX(25deg);
width: 100%;
z-index: -1;
}
.hover-effect:hover:before, .hover-effect:focus:before, .hover-effect:active:before {
left: -10%;
-webkit-transition: all 0.3s ease 0s;
-khtml-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.hover-effect:hover:after, .hover-effect:focus:after, .hover-effect:active:after {
left: -20%;
}
.hover-effect.hover-light:before, .hover-effect.hover-light:after {
background-color: #fff;
}
.item-featured img {
width: 100%;
-webkit-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
-khtml-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
-moz-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
-ms-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
-o-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
}
.item-featured a.no-thumnail {
min-height: 280px;
background-color: #f00;
}
.ct-carousel .item-title a {
color: inherit;
}
.ct-carousel .item-title a:hover {
color: #f00;
}
.ct-grid .ct-grid-inner, .ct-grid .grid-item-inner {
position: relative;
}
.ct-grid .grid-item.ct-animated .grid-item-inner {
animation: 0.65s ease 0s normal forwards 1 running moveUp;
-webkit-animation: 0.65s ease 0s normal forwards 1 running moveUp;
-webkit-transform: translateY(200px);
-khtml-transform: translateY(200px);
-moz-transform: translateY(200px);
-ms-transform: translateY(200px);
-o-transform: translateY(200px);
transform: translateY(200px);
}
.ct-grid .ct-load-more {
margin-top: 30px;
}
.ct-grid .ct-load-more i {
margin-right: 5px;
}
.ct-grid .ct-load-more .loadmore-style2 {
padding-left: 22px;
padding-right: 22px;
-webkit-border-radius: 4px;
-khtml-border-radius: 4px;
-moz-border-radius: 4px;
-ms-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
background-color: #b50d1c;
border-color: #b50d1c;
}
.ct-grid .ct-load-more .loadmore-style2 i {
margin-right: 0;
margin-left: 16px;
}
.ct-grid .ct-load-more .loadmore-style2:hover {
background-color: #f00;
border-color: #f00;
}
.ct-grid .item-title {
font-size: 20px;
line-height: 1.5;
}
.ct-grid .item-title a {
color: inherit;
}
.ct-grid .item-title a:hover {
color: #f00;
}
.ct-grid .ct-grid-pagination {
margin-top: 20px;
}
.ct-grid .item-featured a {
display: block;
}
.grid-filter-wrap {
text-align: center;
margin-bottom: 43px;
}
.grid-filter-wrap .filter-item {
cursor: pointer;
display: inline-block;
font-size: 16px;
line-height: 30px;
font-weight: 600;
margin: 0 0 10px;
padding: 0 16px;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
text-transform: capitalize;
color: #383838;
position: relative;
font-family: 'Poppins', sans-serif;
}
.grid-filter-wrap .filter-item:before {
content: '';
width: 100%;
height: 100%;
z-index: -1;
background-color: #f90244;
background-image: -webkit-gradient(linear, left top, right top, from(#f90244), to(#b50d1c));
background-image: -webkit-linear-gradient(left, #f90244, #b50d1c);
background-image: -moz-linear-gradient(left, #f90244, #b50d1c);
background-image: -ms-linear-gradient(left, #f90244, #b50d1c);
background-image: -o-linear-gradient(left, #f90244, #b50d1c);
background-image: linear-gradient(left, #f90244, #b50d1c);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f90244', endColorStr='#b50d1c', gradientType='1');
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
position: absolute;
top: 0;
left: 0;
opacity: 0;
-webkit-border-radius: 5px;
-khtml-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
border-radius: 5px;
-webkit-box-shadow: 0 8px 10px rgba(12, 12, 12, 0.1);
-khtml-box-shadow: 0 8px 10px rgba(12, 12, 12, 0.1);
-moz-box-shadow: 0 8px 10px rgba(12, 12, 12, 0.1);
-ms-box-shadow: 0 8px 10px rgba(12, 12, 12, 0.1);
-o-box-shadow: 0 8px 10px rgba(12, 12, 12, 0.1);
box-shadow: 0 8px 10px rgba(12, 12, 12, 0.1);
}
.grid-filter-wrap .filter-item.active, .grid-filter-wrap .filter-item:hover {
color: #fff;
}
.grid-filter-wrap .filter-item.active:before, .grid-filter-wrap .filter-item:hover:before {
opacity: 1;
}
.select-filter-wrap.nice-select, .select-order-wrap.nice-select {
min-width: 160px;
height: 40px;
line-height: 40px;
padding: 0 40px 0 21px;
display: inline-block;
width: inherit;
border: none;
-webkit-border-radius: 4px;
-khtml-border-radius: 4px;
-moz-border-radius: 4px;
-ms-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.24);
-khtml-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.24);
-moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.24);
-ms-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.24);
-o-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.24);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.24);
font-size: 15px;
}
.select-filter-wrap.nice-select:after, .select-order-wrap.nice-select:after {
content: "\f2f9";
right: 15px;
font-size: 15px;
}
.select-order-wrap {
margin-left: 15px;
}
.ct-grid-header {
align-items: center;
display: flex;
display: -webkit-flex;
display: -ms-flex;
flex-wrap: nowrap;
margin-bottom: 45px;
}
.ct-grid-header > h3 {
margin: 0;
font-size: 40px;
letter-spacing: 0.03em;
flex-grow: 1;
-webkit-flex-grow: 1;
-ms-flex-grow: 1;
-o-flex-grow: 1;
}
@media screen and (max-width: 991px) {
.ct-grid-header {
display: block;
}
.ct-grid-header > h3 {
margin-bottom: 25px;
}
}
@media screen and (max-width: 991px) {
.ct-grid-header .nice-select {
margin: 15px 0 0;
}
}
.item-order {
position: absolute;
opacity: 0;
visibility: hidden;
}
.owl-nav {
text-align: center;
margin-top: 36px;
}
.owl-nav .owl-prev, .owl-nav .owl-next {
color: #fff;
background-color: #b50d1c;
display: inline-block;
font-size: 14px;
height: 36px;
line-height: 36px;
-webkit-border-radius: 36px;
-khtml-border-radius: 36px;
-moz-border-radius: 36px;
-ms-border-radius: 36px;
-o-border-radius: 36px;
border-radius: 36px;
text-align: center;
width: 35px;
margin: 6px 8px;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
padding: 0;
border: none;
letter-spacing: 0px;
}
.owl-nav .owl-prev:hover, .owl-nav .owl-next:hover {
background-color: #b50d1c;
color: #fff !important;
}
.owl-nav .owl-prev i, .owl-nav .owl-next i {
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
}
.owl-dots {
text-align: center;
margin-top: 30px;
display: flex;
justify-content: center;
padding: 0 4px;
}
.owl-dots .owl-dot {
-webkit-border-radius: 10px;
-khtml-border-radius: 10px;
-moz-border-radius: 10px;
-ms-border-radius: 10px;
-o-border-radius: 10px;
border-radius: 10px;
background-color: rgba(255, 0, 0, 0.5);
display: inline-block;
height: 11px;
margin: 5px;
padding: 0;
border: none;
width: 11px;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
position: relative;
}
.owl-dots .owl-dot.active {
background-color: #f00;
background-color: #f00;
background-image: -webkit-gradient(linear, left top, right top, from(#f00), to(#b50d1c));
background-image: -webkit-linear-gradient(left, #f00, #b50d1c);
background-image: -moz-linear-gradient(left, #f00, #b50d1c);
background-image: -ms-linear-gradient(left, #f00, #b50d1c);
background-image: -o-linear-gradient(left, #f00, #b50d1c);
background-image: linear-gradient(left, #f00, #b50d1c);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f00', endColorStr='#b50d1c', gradientType='1');
}
.owl-dots .owl-dot:before, .owl-dots .owl-dot:after {
display: none;
}
.ct-carousel-filter {
margin-bottom: 25px; }
.ct-carousel-filter .ct-filter-item {
font-size: 24px;
line-height: normal;
color: rgba(0, 0, 0, 0.33);
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
margin: 0 38px 10px 0;
display: inline-block;
}
.ct-carousel-filter .ct-filter-item.ct-filter-active, .ct-carousel-filter .ct-filter-item:hover {
color: #f00;
cursor: pointer;
}
#ct-loadding {
height: 100%;
position: fixed;
width: 100%;
z-index: 999999;
top: 0;
left: 0;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
background-color: #f00;
background-image: -webkit-gradient(linear, left top, right top, from(#f00), to(#b50d1c));
background-image: -webkit-linear-gradient(left, #f00, #b50d1c);
background-image: -moz-linear-gradient(left, #f00, #b50d1c);
background-image: -ms-linear-gradient(left, #f00, #b50d1c);
background-image: -o-linear-gradient(left, #f00, #b50d1c);
background-image: linear-gradient(left, #f00, #b50d1c);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f00', endColorStr='#b50d1c', gradientType='1');
}
#ct-loadding .loading-spin {
display: block;
height: 65px;
margin: -32px auto 0;
position: relative;
top: 50%;
width: 65px;
}
#ct-loadding .loading-spin .spinner {
width: 60px;
height: 60px;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
-webkit-animation: spin-rotate-all 1s linear infinite;
animation: spin-rotate-all 1s linear infinite;
}
#ct-loadding .loading-spin .spinner .right-side, #ct-loadding .loading-spin .spinner .left-side {
width: 50%;
height: 100%;
position: absolute;
top: 0;
overflow: hidden;
-webkit-animation: spin-fade-in-first 1.2s linear infinite alternate;
animation: spin-fade-in-first 1.2s linear infinite alternate;
}
#ct-loadding .loading-spin .spinner .left-side {
left: 0;
}
#ct-loadding .loading-spin .spinner .right-side {
right: 0;
}
#ct-loadding .loading-spin .spinner.color-2 .right-side, #ct-loadding .loading-spin .spinner.color-2 .left-side {
-webkit-animation: spin-fade-in-second 1.2s linear infinite alternate;
animation: spin-fade-in-second 1.2s linear infinite alternate;
}
#ct-loadding .loading-spin .spinner .bar {
width: 100%;
height: 100%;
-webkit-border-radius: 200px 0 0 200px;
-khtml-border-radius: 200px 0 0 200px;
-moz-border-radius: 200px 0 0 200px;
-ms-border-radius: 200px 0 0 200px;
-o-border-radius: 200px 0 0 200px;
border-radius: 200px 0 0 200px;
border: 6px solid #fff;
position: relative;
}
#ct-loadding .loading-spin .spinner .bar:after {
content: "";
width: 6px;
height: 6px;
display: block;
background: #f00;
position: absolute;
-webkit-border-radius: 6px;
-khtml-border-radius: 6px;
-moz-border-radius: 6px;
-ms-border-radius: 6px;
-o-border-radius: 6px;
border-radius: 6px;
}
#ct-loadding .loading-spin .spinner .right-side .bar {
-webkit-border-radius: 0 200px 200px 0;
-khtml-border-radius: 0 200px 200px 0;
-moz-border-radius: 0 200px 200px 0;
-ms-border-radius: 0 200px 200px 0;
-o-border-radius: 0 200px 200px 0;
border-radius: 0 200px 200px 0;
border-left: none;
-webkit-transform: rotate(-10deg);
-webkit-transform-origin: left center;
transform: rotate(-10deg);
transform-origin: left center;
-webkit-animation: spin-rotate-right 0.75s linear infinite alternate;
animation: spin-rotate-right 0.75s linear infinite alternate;
}
#ct-loadding .loading-spin .spinner .right-side .bar:after {
bottom: -6px;
left: -3px;
}
#ct-loadding .loading-spin .spinner .left-side .bar {
border-right: none;
-webkit-transform: rotate(10deg);
transform: rotate(10deg);
-webkit-transform-origin: right center;
transform-origin: right center;
-webkit-animation: spin-rotate-left 0.75s linear infinite alternate;
animation: spin-rotate-left 0.75s linear infinite alternate;
}
#ct-loadding .loading-spin .spinner .left-side .bar:after {
bottom: -6px;
right: -3px;
}
.ct-spinner2 {
width: 45px;
height: 45px;
background-color: #fff;
margin: 100px auto;
-webkit-animation: rotateplane 1.2s infinite ease-in-out;
animation: rotateplane 1.2s infinite ease-in-out;
position: absolute;
left: 0;
right: 0;
margin: auto;
top: 0;
bottom: 0;
}
.ct-spinner3 {
width: 45px;
height: 45px;
position: absolute;
left: 0;
right: 0;
margin: auto;
top: 0;
bottom: 0;
}
.ct-spinner3 .double-bounce1, .ct-spinner3 .double-bounce2 {
width: 100%;
height: 100%;
-webkit-border-radius: 50%;
-khtml-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
background-color: #fff;
opacity: 0.6;
position: absolute;
top: 0;
left: 0;
-webkit-animation: ct-bounce 2s infinite ease-in-out;
animation: ct-bounce 2s infinite ease-in-out;
}
.ct-spinner3 .double-bounce2 {
-webkit-animation-delay: -1s;
animation-delay: -1s;
}
.ct-spinner4 {
position: absolute;
left: 0;
right: 0;
margin: auto;
top: 0;
bottom: 0;
width: 70px;
height: 40px;
text-align: center;
font-size: 10px;
}
.ct-spinner4 > div {
background-color: #fff;
height: 100%;
width: 6px;
display: inline-block;
-webkit-animation: ct-stretchdelay 1.2s infinite ease-in-out;
animation: ct-stretchdelay 1.2s infinite ease-in-out;
}
.ct-spinner4 .rect2 {
-webkit-animation-delay: -1.1s;
animation-delay: -1.1s;
}
.ct-spinner4 .rect3 {
-webkit-animation-delay: -1s;
animation-delay: -1s;
}
.ct-spinner4 .rect4 {
-webkit-animation-delay: -0.9s;
animation-delay: -0.9s;
}
.ct-spinner4 .rect5 {
-webkit-animation-delay: -0.8s;
animation-delay: -0.8s;
}
.ct-spinner5 {
position: absolute;
left: 0;
right: 0;
margin: auto;
top: 50%;
-webkit-transform: translate(0, -50%);
-khtml-transform: translate(0, -50%);
-moz-transform: translate(0, -50%);
-ms-transform: translate(0, -50%);
-o-transform: translate(0, -50%);
transform: translate(0, -50%);
width: 70px;
text-align: center;
}
.ct-spinner5 > div {
width: 18px;
height: 18px;
background-color: #fff;
-webkit-border-radius: 100%;
-khtml-border-radius: 100%;
-moz-border-radius: 100%;
-ms-border-radius: 100%;
-o-border-radius: 100%;
border-radius: 100%;
display: inline-block;
-webkit-animation: ct-bouncedelay 1.4s infinite ease-in-out both;
animation: ct-bouncedelay 1.4s infinite ease-in-out both;
}
.ct-spinner5 .bounce1 {
-webkit-animation-delay: -0.32s;
animation-delay: -0.32s;
}
.ct-spinner5 .bounce2 {
-webkit-animation-delay: -0.16s;
animation-delay: -0.16s;
}
.ct-cube-grid {
width: 40px;
height: 40px;
position: absolute;
left: 0;
right: 0;
margin: auto;
top: 0;
bottom: 0;
}
.ct-cube-grid .ct-cube {
width: 33%;
height: 33%;
background-color: #fff;
float: left;
-webkit-animation: ct-cubeGridScaleDelay 1.3s infinite ease-in-out;
animation: ct-cubeGridScaleDelay 1.3s infinite ease-in-out;
}
.ct-cube-grid .ct-cube1 {
-webkit-animation-delay: 0.2s;
animation-delay: 0.2s;
}
.ct-cube-grid .ct-cube2 {
-webkit-animation-delay: 0.3s;
animation-delay: 0.3s;
}
.ct-cube-grid .ct-cube3 {
-webkit-animation-delay: 0.4s;
animation-delay: 0.4s;
}
.ct-cube-grid .ct-cube4 {
-webkit-animation-delay: 0.1s;
animation-delay: 0.1s;
}
.ct-cube-grid .ct-cube5 {
-webkit-animation-delay: 0.2s;
animation-delay: 0.2s;
}
.ct-cube-grid .ct-cube6 {
-webkit-animation-delay: 0.3s;
animation-delay: 0.3s;
}
.ct-cube-grid .ct-cube7 {
-webkit-animation-delay: 0s;
animation-delay: 0s;
}
.ct-cube-grid .ct-cube8 {
-webkit-animation-delay: 0.1s;
animation-delay: 0.1s;
}
.ct-cube-grid .ct-cube9 {
-webkit-animation-delay: 0.2s;
animation-delay: 0.2s;
}
.ct-folding-cube {
position: absolute;
left: 0;
right: 0;
margin: auto;
top: 0;
bottom: 0;
width: 40px;
height: 40px;
-webkit-transform: rotateZ(45deg);
transform: rotateZ(45deg);
}
.ct-folding-cube .ct-cube {
float: left;
width: 50%;
height: 50%;
position: relative;
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1);
}
.ct-folding-cube .ct-cube:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #fff;
-webkit-animation: ct-foldCubeAngle 2.4s infinite linear both;
animation: ct-foldCubeAngle 2.4s infinite linear both;
-webkit-transform-origin: 100% 100%;
-ms-transform-origin: 100% 100%;
transform-origin: 100% 100%;
}
.ct-folding-cube .ct-cube2 {
-webkit-transform: scale(1.1) rotateZ(90deg);
transform: scale(1.1) rotateZ(90deg);
}
.ct-folding-cube .ct-cube2:before {
-webkit-animation-delay: 0.3s;
animation-delay: 0.3s;
}
.ct-folding-cube .ct-cube3 {
-webkit-transform: scale(1.1) rotateZ(180deg);
transform: scale(1.1) rotateZ(180deg);
}
.ct-folding-cube .ct-cube3:before {
-webkit-animation-delay: 0.6s;
animation-delay: 0.6s;
}
.ct-folding-cube .ct-cube4 {
-webkit-transform: scale(1.1) rotateZ(270deg);
transform: scale(1.1) rotateZ(270deg);
}
.ct-folding-cube .ct-cube4:before {
-webkit-animation-delay: 0.9s;
animation-delay: 0.9s;
}
.ct-loading-stairs {
height: 100px;
left: 0;
margin: auto;
position: absolute;
right: 0;
top: 50%;
-webkit-transform: translate(0px, -50%);
-khtml-transform: translate(0px, -50%);
-moz-transform: translate(0px, -50%);
-ms-transform: translate(0px, -50%);
-o-transform: translate(0px, -50%);
transform: translate(0px, -50%);
width: 75px;
margin-top: -25px;
}
.ct-loading-stairs .loader-bar {
position: absolute;
bottom: 0;
width: 10px;
height: 50%;
background: #fff;
transform-origin: center bottom;
-webkit-box-shadow: 1px 1px 0 rgba(0, 0, 0, .2);
-khtml-box-shadow: 1px 1px 0 rgba(0, 0, 0, .2);
-moz-box-shadow: 1px 1px 0 rgba(0, 0, 0, .2);
-ms-box-shadow: 1px 1px 0 rgba(0, 0, 0, .2);
-o-box-shadow: 1px 1px 0 rgba(0, 0, 0, .2);
box-shadow: 1px 1px 0 rgba(0, 0, 0, .2);
}
.ct-loading-stairs .loader-bar:nth-child(1) {
left: 0px;
-webkit-transform: scale(1, 0.2);
-khtml-transform: scale(1, 0.2);
-moz-transform: scale(1, 0.2);
-ms-transform: scale(1, 0.2);
-o-transform: scale(1, 0.2);
transform: scale(1, 0.2);
animation: barUp1 4s infinite;
-webkit-animation: barUp1 4s infinite;
-ms-animation: barUp1 4s infinite;
}
.ct-loading-stairs .loader-bar:nth-child(2) {
left: 15px;
-webkit-transform: scale(1, 0.4);
-khtml-transform: scale(1, 0.4);
-moz-transform: scale(1, 0.4);
-ms-transform: scale(1, 0.4);
-o-transform: scale(1, 0.4);
transform: scale(1, 0.4);
animation: barUp2 4s infinite;
-webkit-animation: barUp2 4s infinite;
-ms-animation: barUp2 4s infinite;
}
.ct-loading-stairs .loader-bar:nth-child(3) {
left: 30px;
-webkit-transform: scale(1, 0.6);
-khtml-transform: scale(1, 0.6);
-moz-transform: scale(1, 0.6);
-ms-transform: scale(1, 0.6);
-o-transform: scale(1, 0.6);
transform: scale(1, 0.6);
animation: barUp3 4s infinite;
-webkit-animation: barUp3 4s infinite;
-ms-animation: barUp3 4s infinite;
}
.ct-loading-stairs .loader-bar:nth-child(4) {
left: 45px;
-webkit-transform: scale(1, 0.8);
-khtml-transform: scale(1, 0.8);
-moz-transform: scale(1, 0.8);
-ms-transform: scale(1, 0.8);
-o-transform: scale(1, 0.8);
transform: scale(1, 0.8);
animation: barUp4 4s infinite;
-webkit-animation: barUp4 4s infinite;
-ms-animation: barUp4 4s infinite;
}
.ct-loading-stairs .loader-bar:nth-child(5) {
left: 60px;
-webkit-transform: scale(1, 1);
-khtml-transform: scale(1, 1);
-moz-transform: scale(1, 1);
-ms-transform: scale(1, 1);
-o-transform: scale(1, 1);
transform: scale(1, 1);
animation: barUp5 4s infinite;
-webkit-animation: barUp5 4s infinite;
-ms-animation: barUp5 4s infinite;
}
.ct-loading-stairs .loader-ball {
position: absolute;
bottom: 10px;
left: 0;
width: 10px;
height: 10px;
background: #fff;
-webkit-border-radius: 50%;
-khtml-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
animation: ball 4s infinite;
-webkit-animation: ball 4s infinite;
-ms-animation: ball 4s infinite;
}
.ct-spinner9-wrap {
position: absolute;
top: 50%;
-webkit-transform: translate(0px, -50%);
-khtml-transform: translate(0px, -50%);
-moz-transform: translate(0px, -50%);
-ms-transform: translate(0px, -50%);
-o-transform: translate(0px, -50%);
transform: translate(0px, -50%);
left: 0;
right: 0;
width: 45px;
height: 45px;
margin: auto;
}
.ct-spinner9 {
margin: 0 auto;
width: 45px;
height: 45px;
position: relative;
text-align: center;
-webkit-animation: ct-rotate 2s infinite linear;
animation: ct-rotate 2s infinite linear;
}
.ct-spinner9 .dot1, .ct-spinner9 .dot2 {
width: 60%;
height: 60%;
display: inline-block;
position: absolute;
top: 0;
background-color: ;
background-image: -webkit-gradient(linear, left top, right top, from(), to());
background-image: -webkit-linear-gradient(left, , );
background-image: -moz-linear-gradient(left, , );
background-image: -ms-linear-gradient(left, , );
background-image: -o-linear-gradient(left, , );
background-image: linear-gradient(left, , );
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='', endColorStr='', gradientType='1');
-webkit-border-radius: 100%;
-khtml-border-radius: 100%;
-moz-border-radius: 100%;
-ms-border-radius: 100%;
-o-border-radius: 100%;
border-radius: 100%;
-webkit-animation: ct-bounce 2s infinite ease-in-out;
animation: ct-bounce 2s infinite ease-in-out;
}
.ct-spinner9 .dot2 {
top: auto;
bottom: 0;
-webkit-animation-delay: -1s;
animation-delay: -1s;
}
.nav-tabs.ct-tabs {
border: none;
margin-bottom: 10px;
}
.nav-tabs.ct-tabs .nav-item {
margin: 0 0 10px 26px;
}
.nav-tabs.ct-tabs .nav-item:first-child {
margin-left: 0;
}
.nav-tabs.ct-tabs .nav-item a {
margin: 0;
border: none;
padding: 0;
font-size: 13px;
color: rgba(30, 35, 49, 0.33);
}
.nav-tabs.ct-tabs .nav-item a.active {
color: #1e2331;
}
.entry-footer .entry-edit-link {
display: none;
}
div.pp_overlay {
z-index: 9999 !important;
opacity: 0.85 !important;
}
.nav-tabs-none {
border: none;
}
.nav-tabs-none li.nav-item {
margin: 0;
}
.nav-tabs-none li.nav-item a.nav-link {
border: none;
padding: 0;
}
.owl-carousel[data-arrows="false"] .owl-nav, .owl-carousel[data-bullets="false"] .owl-dots {
display: none;
}
.ct-modal {
background-color: rgba(0, 0, 0, 0.95);
height: 100%;
left: 0;
position: fixed;
top: 0;
width: 100%;
z-index: 9999;
-webkit-transform: translateY(-100%);
-khtml-transform: translateY(-100%);
-moz-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%);
opacity: 0;
-webkit-transition: all 500ms ease-in-out;
-khtml-transition: all 500ms ease-in-out;
-moz-transition: all 500ms ease-in-out;
-ms-transition: all 500ms ease-in-out;
-o-transition: all 500ms ease-in-out;
transition: all 500ms ease-in-out;
}
.ct-modal .ct-modal-content {
left: 0;
margin: auto;
max-width: 570px;
position: absolute;
right: 0;
top: 50%;
-webkit-transform: translate(0px, -50%) scaleX(0);
-khtml-transform: translate(0px, -50%) scaleX(0);
-moz-transform: translate(0px, -50%) scaleX(0);
-ms-transform: translate(0px, -50%) scaleX(0);
-o-transform: translate(0px, -50%) scaleX(0);
transform: translate(0px, -50%) scaleX(0);
position: relative;
-webkit-transition: all 500ms ease-in-out;
-khtml-transition: all 500ms ease-in-out;
-moz-transition: all 500ms ease-in-out;
-ms-transition: all 500ms ease-in-out;
-o-transition: all 500ms ease-in-out;
transition: all 500ms ease-in-out;
transition-delay: 500ms;
}
.ct-modal.open {
-webkit-transform: translateY(0%);
-khtml-transform: translateY(0%);
-moz-transform: translateY(0%);
-ms-transform: translateY(0%);
-o-transform: translateY(0%);
transform: translateY(0%);
opacity: 1;
}
.ct-modal.open .ct-modal-content {
-webkit-transform: translate(0px, -50%) scaleX(1);
-khtml-transform: translate(0px, -50%) scaleX(1);
-moz-transform: translate(0px, -50%) scaleX(1);
-ms-transform: translate(0px, -50%) scaleX(1);
-o-transform: translate(0px, -50%) scaleX(1);
transform: translate(0px, -50%) scaleX(1);
}
.ct-modal.remove {
-webkit-transform: translateY(-100%);
-khtml-transform: translateY(-100%);
-moz-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%);
opacity: 0;
transition-delay: 500ms;
}
.ct-modal.remove .ct-modal-content {
-webkit-transform: translate(0px, -50%) scaleX(0);
-khtml-transform: translate(0px, -50%) scaleX(0);
-moz-transform: translate(0px, -50%) scaleX(0);
-ms-transform: translate(0px, -50%) scaleX(0);
-o-transform: translate(0px, -50%) scaleX(0);
transform: translate(0px, -50%) scaleX(0);
transition-delay: 0ms;
}
.ct-modal .ct-close {
position: absolute;
top: 30px;
right: 30px;
}
.ct-modal .ct-close:before, .ct-modal .ct-close:after {
background-color: #fff;
}
.ct-modal .ct-close:hover:before, .ct-modal .ct-close:hover:after {
background-color: #f00;
}
@media screen and (max-width: 991px) {
.ct-modal .ct-close {
display: block;
}
}
@media screen and (max-width: 575px) {
.ct-modal .ct-modal-content {
max-width: 300px;
}
}
.vc_row .ct-row-overlay {
position: absolute;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
}
.vc_row .ct-row-overlay.position-left {
left: 0;
}
.vc_row .ct-row-overlay.position-right {
right: 0;
}
.vc_row .ct-row-overlay span {
font-size: 278px;
font-weight: 600;
color: rgba(255, 255, 255, 0.05);
position: absolute;
top: 0;
left: 0;
line-height: 1;
}
@media screen and (max-width: 991px) {
.vc_row .ct-row-overlay span {
font-size: 150px;
}
}
@media screen and (max-width: 767px) {
.vc_row .ct-row-overlay span {
font-size: 80px;
}
}
.vc_row .ct-row-overlay + .vc_column-inner {
position: relative;
z-index: inherit;
}
.vc_row .ct-row-overlay + .ct-image-section {
z-index: 99 !important;
}
.slider-nav .thumbs {
display: flex;
flex-wrap: nowrap;
margin: 0 -2px;
}
.slider-nav .thumb {
text-align: center;
width: 20%;
padding: 0 2px;
margin-top: 4px;
-webkit-transition: all 400ms ease-in-out;
-khtml-transition: all 400ms ease-in-out;
-moz-transition: all 400ms ease-in-out;
-ms-transition: all 400ms ease-in-out;
-o-transition: all 400ms ease-in-out;
transition: all 400ms ease-in-out;
cursor: pointer;
}
.slider-nav .thumb img {
max-width: 300px;
-webkit-border-radius: 300px;
-khtml-border-radius: 300px;
-moz-border-radius: 300px;
-ms-border-radius: 300px;
-o-border-radius: 300px;
border-radius: 300px;
border: 4px solid transparent;
-webkit-transform: scale(0.8);
-khtml-transform: scale(0.8);
-moz-transform: scale(0.8);
-ms-transform: scale(0.8);
-o-transform: scale(0.8);
transform: scale(0.8);
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
margin: auto;
}
.slider-nav .thumb.active img {
border-color: #b50d1c;
-webkit-transform: scale(1);
-khtml-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.vc_row.bg-image-ps-top {
background-position: top !important;
}
.vc_row.bg-image-ps-center {
background-position: center !important;
}
.vc_row.bg-image-ps-bottom {
background-position: bottom !important;
}
.ct-demo-bar {
position: fixed;
top: 0;
right: 0;
width: 300px;
background: #fff;
z-index: 99999;
height: 100%;
text-align: center;
-webkit-transform: translate(301px, 0px);
-khtml-transform: translate(301px, 0px);
-moz-transform: translate(301px, 0px);
-ms-transform: translate(301px, 0px);
-o-transform: translate(301px, 0px);
transform: translate(301px, 0px);
-webkit-transition: transform 0.6s ease;
-khtml-transition: transform 0.6s ease;
-moz-transition: transform 0.6s ease;
-ms-transition: transform 0.6s ease;
-o-transition: transform 0.6s ease;
transition: transform 0.6s ease;
}
@media screen and (max-width: 575px) {
.ct-demo-bar {
width: 260px;
-webkit-transform: translate(260px, 0px);
-khtml-transform: translate(260px, 0px);
-moz-transform: translate(260px, 0px);
-ms-transform: translate(260px, 0px);
-o-transform: translate(260px, 0px);
transform: translate(260px, 0px);
display: none;
}
}
.ct-demo-bar.active {
-webkit-transform: translate(0px, 0px);
-khtml-transform: translate(0px, 0px);
-moz-transform: translate(0px, 0px);
-ms-transform: translate(0px, 0px);
-o-transform: translate(0px, 0px);
transform: translate(0px, 0px);
}
.ct-demo-bar .ct-demo-option {
position: absolute;
top: 150px;
left: -40px;
height: 110px;
padding: 10px 0;
width: 40px;
background-color: #fff;
-webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, .1);
-khtml-box-shadow: 0 3px 15px rgba(0, 0, 0, .1);
-moz-box-shadow: 0 3px 15px rgba(0, 0, 0, .1);
-ms-box-shadow: 0 3px 15px rgba(0, 0, 0, .1);
-o-box-shadow: 0 3px 15px rgba(0, 0, 0, .1);
box-shadow: 0 3px 15px rgba(0, 0, 0, .1);
-webkit-border-radius: 5px 0 0 5px;
-khtml-border-radius: 5px 0 0 5px;
-moz-border-radius: 5px 0 0 5px;
-ms-border-radius: 5px 0 0 5px;
-o-border-radius: 5px 0 0 5px;
border-radius: 5px 0 0 5px;
}
.ct-demo-bar .ct-demo-option span {
position: absolute;
background-color: #222;
color: #fff;
white-space: nowrap;
padding: 0 12px;
font-size: 13px;
top: 0;
right: 100%;
margin-right: 12px;
opacity: 0;
visibility: hidden;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
}
.ct-demo-bar .ct-demo-option span:before {
content: '';
border-color: #222;
border-style: solid;
border-color: transparent transparent transparent #222;
border-width: 6px;
position: absolute;
top: 50%;
right: -12px;
-webkit-transform: translate(0, -50%);
-khtml-transform: translate(0, -50%);
-moz-transform: translate(0, -50%);
-ms-transform: translate(0, -50%);
-o-transform: translate(0, -50%);
transform: translate(0, -50%);
}
.ct-demo-bar .ct-demo-option a {
display: block;
color: #222;
font-size: 15px;
height: 30px;
line-height: 30px;
position: relative;
}
.ct-demo-bar .ct-demo-option a:first-child {
font-size: 16px;
}
.ct-demo-bar .ct-demo-option a:hover span {
opacity: 1;
visibility: visible;
}
.ct-demo-bar .ct-demo-bar-meta {
padding: 40px 20px 0 20px;
}
.ct-demo-bar .ct-demo-bar-meta h4 {
font-size: 18px;
}
.ct-demo-bar .ct-demo-bar-inner {
position: absolute;
top: 0;
right: 0;
width: 100%;
height: 100%;
-webkit-box-shadow: -1px 1px 10px rgba(0, 0, 0, .1);
-khtml-box-shadow: -1px 1px 10px rgba(0, 0, 0, .1);
-moz-box-shadow: -1px 1px 10px rgba(0, 0, 0, .1);
-ms-box-shadow: -1px 1px 10px rgba(0, 0, 0, .1);
-o-box-shadow: -1px 1px 10px rgba(0, 0, 0, .1);
box-shadow: -1px 1px 10px rgba(0, 0, 0, .1);
overflow: auto;
height: 100%;
color: #222;
line-height: 1.5;
font-size: 14px;
}
.ct-demo-bar .ct-demo-bar-inner:hover {
overflow-y: auto;
}
.ct-demo-bar .ct-demo-bar-list {
list-style: none;
margin: 0;
padding: 20px;
}
.ct-demo-bar .ct-demo-bar-item {
position: relative;
}
.ct-demo-bar .ct-demo-bar-item:before {
z-index: 1;
content: '';
background-color: rgba(0, 0, 0, 0.78);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
opacity: 0;
}
.ct-demo-bar .ct-demo-bar-item .ct-demo-bar-holder {
position: absolute;
top: 50%;
padding: 20px;
left: 0;
right: 0;
-webkit-transform: translate(0, -50%);
-khtml-transform: translate(0, -50%);
-moz-transform: translate(0, -50%);
-ms-transform: translate(0, -50%);
-o-transform: translate(0, -50%);
transform: translate(0, -50%);
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
opacity: 0;
z-index: 2;
}
.ct-demo-bar .ct-demo-bar-item .ct-demo-bar-holder h6 {
color: #fff;
margin-bottom: 18px;
}
.ct-demo-bar .ct-demo-bar-item .ct-demo-bar-holder .btn {
line-height: 40px;
font-size: 14px;
padding: 0 20px;
}
.ct-demo-bar .ct-demo-bar-item + .ct-demo-bar-item {
margin-top: 20px;
}
.ct-demo-bar .ct-demo-bar-item:hover:before, .ct-demo-bar .ct-demo-bar-item:hover .ct-demo-bar-holder {
opacity: 1;
}
@media screen and (max-width: 575px) { .col-xs-1 {
width: 8.33333%;
}
.col-xs-2 {
width: 16.66667%;
}
.col-xs-3 {
width: 25%;
}
.col-xs-4 {
width: 33.33333%;
}
.col-xs-5 {
width: 41.66667%;
}
.col-xs-6 {
width: 50%;
}
.col-xs-7 {
width: 58.33333%;
}
.col-xs-8 {
-width: 66.66667%;
}
.col-xs-9 {
width: 75%;
}
.col-xs-10 {
width: 83.33333%;
}
.col-xs-11 {
width: 91.66667%;
}
.col-xs-12 {
width: 100%;
}
}
#cookie-law-info-bar p {
display: inline-block;
margin-bottom: 0;
}
#cookie-law-info-bar.cli-bar-popup p {
margin-bottom: 10px;
}
@media only screen and (max-width: 767px) { #cookie-law-info-bar p {
font-size: 13px;
line-height: 20px;
}
}
body img.mfp-img {
padding: 0 !important;
}
body .mfp-fade.mfp-bg.mfp-ready {
opacity: 0.85;
background-color: #000;
}
body .mfp-container .mfp-content {
padding: 15px;
}
body .mfp-figure::after {
display: none;
}
body .mfp-bottom-bar {
margin-top: 0;
width: inherit;
left: 15px;
right: 15px;
}
body .mfp-image-holder .mfp-close, body .mfp-iframe-holder .mfp-close {
line-height: 30px;
height: 30px;
padding: 0;
right: 0px;
text-align: center;
top: 0;
width: 30px;
-webkit-border-radius: 30px;
-khtml-border-radius: 30px;
-moz-border-radius: 30px;
-ms-border-radius: 30px;
-o-border-radius: 30px;
border-radius: 30px;
letter-spacing: 0px;
font-weight: normal;
overflow: hidden;
background-color: #f00;
background-image: -webkit-gradient(linear, left top, right top, from(#f00), to(#b50d1c));
background-image: -webkit-linear-gradient(left, #f00, #b50d1c);
background-image: -moz-linear-gradient(left, #f00, #b50d1c);
background-image: -ms-linear-gradient(left, #f00, #b50d1c);
background-image: -o-linear-gradient(left, #f00, #b50d1c);
background-image: linear-gradient(left, #f00, #b50d1c);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f00', endColorStr='#b50d1c', gradientType='1');
opacity: 1;
}
body .mfp-image-holder .mfp-close:before, body .mfp-iframe-holder .mfp-close:before, body .mfp-image-holder .mfp-close:after, body .mfp-iframe-holder .mfp-close:after {
display: none;
background-color: #b50d1c;
}
.pp_pic_holder .ppt, .pp_pic_holder .pp_gallery {
display: none !important;
}
.mfp-wrap .mfp-container .mfp-arrow {
background-color: #f00;
background-image: -webkit-gradient(linear, left top, right top, from(#f00), to(#b50d1c));
background-image: -webkit-linear-gradient(left, #f00, #b50d1c);
background-image: -moz-linear-gradient(left, #f00, #b50d1c);
background-image: -ms-linear-gradient(left, #f00, #b50d1c);
background-image: -o-linear-gradient(left, #f00, #b50d1c);
background-image: linear-gradient(left, #f00, #b50d1c);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f00', endColorStr='#b50d1c', gradientType='1');
width: 50px;
height: 50px;
-webkit-border-radius: 50px !important;
-khtml-border-radius: 50px !important;
-moz-border-radius: 50px !important;
-ms-border-radius: 50px !important;
-o-border-radius: 50px !important;
border-radius: 50px !important;
opacity: 1;
}
.mfp-wrap .mfp-container .mfp-arrow:before, .mfp-wrap .mfp-container .mfp-arrow:after {
border: none;
}
.mfp-wrap .mfp-container .mfp-arrow:before {
font-family: "Material-Design-Iconic-Font";
font-size: 20px;
color: #fff;
margin: 0;
padding: 0;
line-height: normal;
position: absolute;
top: 50%;
display: block;
-webkit-transform: translate(-50%, -50%);
-khtml-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
opacity: 1;
left: 50%;
width: auto;
height: auto;
background-color: transparent;
}
.mfp-wrap .mfp-container .mfp-arrow.mfp-arrow-left {
margin: -25px 0 0 30px;
}
.mfp-wrap .mfp-container .mfp-arrow.mfp-arrow-left:before {
content: "\f2ea";
}
.mfp-wrap .mfp-container .mfp-arrow.mfp-arrow-right {
margin: -25px 30px 0 0;
}
.mfp-wrap .mfp-container .mfp-arrow.mfp-arrow-right:before {
content: "\f2ee";
}
.wpb_revslider_element {
margin-bottom: 0 !important;
}
.rev_slider, .revslider-initialised {
margin-bottom: 0 !important;
}
.rev_slider .tp-video-play-button, .revslider-initialised .tp-video-play-button {
display: none !important;
}
.rev_slider .cite, .revslider-initialised .cite {
font-style: normal !important;
color: #f00 !important;
}
.rev_slider .ct-countdown .countdown-period, .revslider-initialised .ct-countdown .countdown-period {
color: #fff;
}
.rev_slider .ct-countdown .countdown-amount, .revslider-initialised .ct-countdown .countdown-amount {
color: rgba(255, 175, 205, 0.9);
}
.rev_slider .title-box-shadow, .revslider-initialised .title-box-shadow {
text-shadow: 0px 3px 4px rgba(0, 0, 0, 0.29);
-webkit-text-shadow: 0px 3px 4px rgba(0, 0, 0, 0.29);
-ms-text-shadow: 0px 3px 4px rgba(0, 0, 0, 0.29);
-o-text-shadow: 0px 3px 4px rgba(0, 0, 0, 0.29);
}
.rev_slider .space-left, .revslider-initialised .space-left {
margin-left: 8px;
}
.rev_slider .space-right, .revslider-initialised .space-right {
margin-right: 12px;
}
.rev_slider .btn:not(.btn-gradient2), .revslider-initialised .btn:not(.btn-gradient2) {
font-weight: 500 !important;
padding: 15px 30px !important;
line-height: 1.375 !important;
font-size: 16px !important;
}
@media screen and (max-width: 1023px) {
.rev_slider .btn:not(.btn-gradient2), .revslider-initialised .btn:not(.btn-gradient2) {
padding: 10px 20px !important;
}
}
.rev_slider .btn:not(.btn-gradient2).btn-gradient1, .revslider-initialised .btn:not(.btn-gradient2).btn-gradient1, .rev_slider .btn:not(.btn-gradient2).btn-gray1, .revslider-initialised .btn:not(.btn-gradient2).btn-gray1 {
font-size: 16px !important;
font-weight: 700 !important;
padding: 0 50px !important;
line-height: 66px !important;
}
@media screen and (max-width: 991px) {
.rev_slider .btn.btn-gradient2, .revslider-initialised .btn.btn-gradient2 {
padding: 0 30px;
line-height: 51px;
}
}
.rev_slider .lt-2, .revslider-initialised .lt-2 {
letter-spacing: 0.2em;
}
.rev_slider .ft-display, .revslider-initialised .ft-display {
font-family: 'Playfair Display', serif !important;
}
.rev_slider .tp-leftarrow.custom:before, .revslider-initialised .tp-leftarrow.custom:before, .rev_slider .tp-rightarrow.custom:before, .revslider-initialised .tp-rightarrow.custom:before {
font-family: "FontAwesome";
font-size: 22px;
}
.rev_slider .tp-leftarrow.custom:before, .revslider-initialised .tp-leftarrow.custom:before {
content: "\f104";
}
.rev_slider .tp-rightarrow.custom:before, .revslider-initialised .tp-rightarrow.custom:before {
content: "\f105";
}
.rev_slider .tp-leftarrow.custom, .revslider-initialised .tp-leftarrow.custom, .rev_slider .tp-rightarrow.custom, .revslider-initialised .tp-rightarrow.custom {
width: 40px;
height: 40px;
-webkit-border-radius: 0px;
-khtml-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
background-color: #f00;
-webkit-transition: all 0.3s linear !important;
-khtml-transition: all 0.3s linear !important;
-moz-transition: all 0.3s linear !important;
-ms-transition: all 0.3s linear !important;
-o-transition: all 0.3s linear !important;
transition: all 0.3s linear !important;
}
.rev_slider .tp-leftarrow.custom:before, .revslider-initialised .tp-leftarrow.custom:before, .rev_slider .tp-rightarrow.custom:before, .revslider-initialised .tp-rightarrow.custom:before {
color: #fff;
line-height: 40px;
-webkit-transition: all 0.3s linear !important;
-khtml-transition: all 0.3s linear !important;
-moz-transition: all 0.3s linear !important;
-ms-transition: all 0.3s linear !important;
-o-transition: all 0.3s linear !important;
transition: all 0.3s linear !important;
}
.rev_slider .tp-leftarrow.custom:hover, .revslider-initialised .tp-leftarrow.custom:hover, .rev_slider .tp-rightarrow.custom:hover, .revslider-initialised .tp-rightarrow.custom:hover {
background-color: #b50d1c;
}
.rev_slider .tp-leftarrow.custom:hover:before, .revslider-initialised .tp-leftarrow.custom:hover:before, .rev_slider .tp-rightarrow.custom:hover:before, .revslider-initialised .tp-rightarrow.custom:hover:before {
color: #fff;
}
.rev_slider .tp-bullets.custom .tp-bullet, .revslider-initialised .tp-bullets.custom .tp-bullet {
height: 15px;
width: 15px;
-webkit-border-radius: 15px;
-khtml-border-radius: 15px;
-moz-border-radius: 15px;
-ms-border-radius: 15px;
-o-border-radius: 15px;
border-radius: 15px;
background: #fff;
}
.rev_slider .tp-bullets.custom .tp-bullet.selected, .revslider-initialised .tp-bullets.custom .tp-bullet.selected {
background-color: #f00;
}
.ct-heading {
position: relative;
z-index: 1;
}
.ct-heading .ct-text-below {
background-image: -webkit-gradient(linear, left top, left bottom, from(#b50d1c), to(#f00));
background-image: -webkit-linear-gradient(bottom, #b50d1c, #f00);
background-image: -moz-linear-gradient(bottom, #b50d1c, #f00);
background-image: -ms-linear-gradient(bottom, #b50d1c, #f00);
background-image: -o-linear-gradient(bottom, #b50d1c, #f00);
background-image: linear-gradient(bottom, #b50d1c, #f00);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#b50d1c', endColorStr='#f00');
background-color: transparent;
background-clip: text;
-moz-background-clip: text;
-webkit-background-clip: text;
text-fill-color: transparent;
-moz-text-fill-color: transparent;
-webkit-text-fill-color: transparent;
font-size: 116px;
line-height: normal;
font-weight: 700;
opacity: 0.1;
position: absolute;
top: -68px;
left: -6px;
z-index: -1;
}
@media screen and (max-width: 991px) {
.ct-heading .ct-text-below {
font-size: 80px;
top: -48px;
}
}
@media screen and (max-width: 767px) {
.ct-heading .ct-text-below {
font-size: 60px;
top: -38px;
}
}
.ct-heading h3.ct-heading-tag {
font-size: 44px;
line-height: 1.25;
margin-bottom: 24px;
position: relative;
}
.ct-heading h3.ct-heading-tag cite {
color: #f00;
font-family: 'Playfair Display', serif;
font-style: italic;
}
.ct-heading h3.ct-heading-tag.title-light cite {
background-color: #fff;
background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(#fff));
background-image: -webkit-linear-gradient(left, #fff, #fff);
background-image: -moz-linear-gradient(left, #fff, #fff);
background-image: -ms-linear-gradient(left, #fff, #fff);
background-image: -o-linear-gradient(left, #fff, #fff);
background-image: linear-gradient(left, #fff, #fff);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#fff', endColorStr='#fff', gradientType='1');
}
@media screen and (max-width: 991px) {
.ct-heading h3.ct-heading-tag br {
display: none;
}
}
.ct-heading .ct-heading-sub {
color: #f00;
font-size: 15px;
text-transform: uppercase;
margin-bottom: 10px;
letter-spacing: 0.2em;
font-weight: 500;
}
.ct-heading .ct-heading-sub.style2 {
font-family: 'Poppins', sans-serif;
font-weight: 600;
font-size: 17px;
text-transform: capitalize;
letter-spacing: 0.025em;
}
.ct-heading .ct-heading-sub.style2 + .ct-heading-tag cite {
background-color: #b50d1c;
background-image: -webkit-gradient(linear, left top, right top, from(#b50d1c), to(#f90244));
background-image: -webkit-linear-gradient(left, #b50d1c, #f90244);
background-image: -moz-linear-gradient(left, #b50d1c, #f90244);
background-image: -ms-linear-gradient(left, #b50d1c, #f90244);
background-image: -o-linear-gradient(left, #b50d1c, #f90244);
background-image: linear-gradient(left, #b50d1c, #f90244);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#b50d1c', endColorStr='#f90244', gradientType='1');
}
.ct-heading .ct-heading-sub.style3 {
font-size: 18px;
color: #666;
text-transform: capitalize;
font-weight: 400;
letter-spacing: 0.3em;
position: absolute;
top: 0;
left: 9px;
margin: 0;
padding-bottom: 6px;
-webkit-transform: rotate(-90deg) translateX(calc(-50% - 46px));
-khtml-transform: rotate(-90deg) translateX(calc(-50% - 46px));
-moz-transform: rotate(-90deg) translateX(calc(-50% - 46px));
-ms-transform: rotate(-90deg) translateX(calc(-50% - 46px));
-o-transform: rotate(-90deg) translateX(calc(-50% - 46px));
transform: rotate(-90deg) translateX(calc(-50% - 46px));
transform-origin: 0 50%;
-webkit-transform-origin: 0 50%;
}
.ct-heading .ct-heading-sub.style3:after {
content: '';
width: 100%;
height: 4px;
position: absolute;
bottom: 0;
left: 0;
background-image: -webkit-gradient(linear, left top, left bottom, from(#b50d1c), to(#f90244));
background-image: -webkit-linear-gradient(bottom, #b50d1c, #f90244);
background-image: -moz-linear-gradient(bottom, #b50d1c, #f90244);
background-image: -ms-linear-gradient(bottom, #b50d1c, #f90244);
background-image: -o-linear-gradient(bottom, #b50d1c, #f90244);
background-image: linear-gradient(bottom, #b50d1c, #f90244);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#b50d1c', endColorStr='#f90244');
}
.ct-heading .ct-heading-sub.style3 + .ct-heading-tag {
font-size: 36px;
line-height: 44px;
color: #0e0e0e;
font-weight: 700;
padding-left: 53px;
}
.ct-heading .ct-heading-sub.style3.sub-2-line {
letter-spacing: 0.12em;
-webkit-transform: rotate(-90deg) translateX(calc(-50% - 26px));
-khtml-transform: rotate(-90deg) translateX(calc(-50% - 26px));
-moz-transform: rotate(-90deg) translateX(calc(-50% - 26px));
-ms-transform: rotate(-90deg) translateX(calc(-50% - 26px));
-o-transform: rotate(-90deg) translateX(calc(-50% - 26px));
transform: rotate(-90deg) translateX(calc(-50% - 26px));
}
.ct-heading .h-gap {
line-height: 0;
margin-bottom: 23px;
}
.ct-heading .h-gap i {
display: inline-block;
width: 40px;
height: 4px;
background-color: #f00;
}
.ct-heading .ct-typingout-typed {
color: #f00;
font-family: 'Playfair Display', serif;
font-style: italic;
}
.ct-heading .ct-typingout-typed .ct-typingout-animation:after {
content: '|';
-webkit-animation: blink 0.7s infinite;
animation: blink 0.7s infinite;
}
.ct-heading .ct-heading-desc {
font-size: 18px;
line-height: 1.61;
letter-spacing: 0.005em;
max-width: 540px;
display: inline-block;
}
.ct-heading.align-center .ct-text-below {
left: 0;
right: 0;
}
.ct-progress-layout1 .ct-progress-title {
font-size: 14px;
text-transform: uppercase;
margin: 0 20px 0 0;
min-width: 50px;
font-family: inherit;
font-weight: 500;
}
.ct-progress-layout1 .ct-progress.progress {
-webkit-box-shadow: none;
-khtml-box-shadow: none;
-moz-box-shadow: none;
-ms-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
background-color: #f0f0f0;
-webkit-border-radius: 10px;
-khtml-border-radius: 10px;
-moz-border-radius: 10px;
-ms-border-radius: 10px;
-o-border-radius: 10px;
border-radius: 10px;
height: 10px;
overflow: visible;
margin: 0 68px 0 0;
flex-grow: 1;
}
.ct-progress-layout1 .ct-progress.progress .progress-bar {
background-color: #f00;
-webkit-border-radius: 10px;
-khtml-border-radius: 10px;
-moz-border-radius: 10px;
-ms-border-radius: 10px;
-o-border-radius: 10px;
border-radius: 10px;
overflow: visible;
-webkit-box-shadow: none;
-khtml-box-shadow: none;
-moz-box-shadow: none;
-ms-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
position: static;
}
.ct-progress-layout1 .ct-progress.progress .progress-bar span {
background-color: #333335;
color: #fff;
min-width: 44px;
margin-left: 20px;
padding: 0 5px;
line-height: 23px;
font-size: 14px;
-webkit-border-radius: 3px;
-khtml-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
position: absolute;
top: 50%;
-webkit-transform: translate(0, -50%);
-khtml-transform: translate(0, -50%);
-moz-transform: translate(0, -50%);
-ms-transform: translate(0, -50%);
-o-transform: translate(0, -50%);
transform: translate(0, -50%);
right: -68px;
font-family: inherit;
font-weight: 500;
}
.ct-progress-layout1 .ct-progress.progress .progress-bar.secondary {
background-color: #b50d1c;
}
.ct-progress-layout1 .ct-progress.progress .progress-bar.third {
background-color: #000;
}
.ct-progress-layout1 .ct-progress.progress .progress-bar.gradient {
background-color: #f00;
background-image: -webkit-gradient(linear, left top, right top, from(#f00), to(#b50d1c));
background-image: -webkit-linear-gradient(left, #f00, #b50d1c);
background-image: -moz-linear-gradient(left, #f00, #b50d1c);
background-image: -ms-linear-gradient(left, #f00, #b50d1c);
background-image: -o-linear-gradient(left, #f00, #b50d1c);
background-image: linear-gradient(left, #f00, #b50d1c);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f00', endColorStr='#b50d1c', gradientType='1');
}
.ct-progress-layout1 .ct-progress-item {
position: relative;
display: flex;
flex-wrap: nowrap;
width: 100%;
align-items: center;
}
.ct-progress-layout1 .ct-progress-item + .ct-progress-item {
margin-top: 30px;
}
.ct-progress-layout1.style2 .ct-progress-title {
font-weight: 600;
color: #2d3136;
font-family: 'Poppins', sans-serif;
}
.ct-progress-layout1.style2 .ct-progress.progress .progress-bar span {
font-weight: 600;
font-family: 'Poppins', sans-serif;
background-color: #162171;
-webkit-border-radius: 30px;
-khtml-border-radius: 30px;
-moz-border-radius: 30px;
-ms-border-radius: 30px;
-o-border-radius: 30px;
border-radius: 30px;
}
.ct-progress-layout1.style2 .ct-progress.progress {
background-color: #fff;
}
.ct-process-layout1 {
display: flex;
flex-wrap: wrap;
position: relative;
overflow: hidden;
padding-top: 15px;
}
@media screen and (max-width: 767px) {
.ct-process-layout1 {
flex-wrap: wrap;
}
}
.ct-process-layout1:before {
content: '';
width: 1099px;
height: 100px;
background-repeat: no-repeat;
background-position: center;
background-image: url(//www.4cine.it/wp-content/themes/nimmo/assets/images/line-process.png);
position: absolute;
top: 74px;
left: 0;
right: 0;
margin: auto;
}
@media screen and (max-width: 1290px) {
.ct-process-layout1:before {
width: 1000px;
}
}
@media screen and (max-width: 1199px) {
.ct-process-layout1:before {
display: none;
}
}
.ct-process-layout1 .ct-process-icon {
background-color: #d3dde8;
height: 136px;
width: 136px;
line-height: 136px;
-webkit-border-radius: 100%;
-khtml-border-radius: 100%;
-moz-border-radius: 100%;
-ms-border-radius: 100%;
-o-border-radius: 100%;
border-radius: 100%;
margin: 0 auto 39px auto;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
position: relative;
z-index: 1;
}
.ct-process-layout1 .ct-process-icon number {
top: -11px;
width: 24px;
height: 24px;
position: absolute;
background-color: #515251;
font-size: 14px;
color: #fff;
font-weight: 600;
line-height: 24px;
-webkit-border-radius: 24px;
-khtml-border-radius: 24px;
-moz-border-radius: 24px;
-ms-border-radius: 24px;
-o-border-radius: 24px;
border-radius: 24px;
left: 8px;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
}
.ct-process-layout1 .ct-process-icon span {
display: block;
width: 152px;
height: 152px;
z-index: -1;
position: absolute;
top: -8px;
right: -8px;
-webkit-border-radius: 100%;
-khtml-border-radius: 100%;
-moz-border-radius: 100%;
-ms-border-radius: 100%;
-o-border-radius: 100%;
border-radius: 100%;
-webkit-transform: rotate(33deg);
-khtml-transform: rotate(33deg);
-moz-transform: rotate(33deg);
-ms-transform: rotate(33deg);
-o-transform: rotate(33deg);
transform: rotate(33deg);
overflow: hidden;
}
.ct-process-layout1 .ct-process-icon span:before {
display: block;
content: '';
height: 152px;
width: 76px;
position: absolute;
top: 0;
right: 0;
background-color: #9499a6;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
}
.ct-process-layout1 .ct-process-icon i, .ct-process-layout1 .ct-process-icon img {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-khtml-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.ct-process-layout1 .ct-process-icon img {
max-width: 80px;
}
.ct-process-layout1 .ct-process-icon i {
font-size: 65px;
color: #f3f9ff;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
}
.ct-process-layout1 .ct-process-title {
font-size: 20px;
color: #252a37;
margin-bottom: 6px;
}
.ct-process-layout1 .ct-process-desc {
padding: 0 20px;
}
.ct-process-layout1 .ct-process-button {
padding-top: 18px;
}
.ct-process-layout1 .ct-process-button a {
font-size: 15px;
text-transform: uppercase;
font-weight: 500;
}
.ct-process-layout1 .ct-process-button a i {
margin-left: 4px;
}
.ct-process-layout1 .ct-process-item {
position: relative;
padding: 0 15px;
text-align: center;
margin-bottom: 35px;
width: 25%;
}
.ct-process-layout1 .ct-process-item:hover .ct-process-icon {
background-color: #b50d1c;
}
.ct-process-layout1 .ct-process-item:hover .ct-process-icon span:before {
background-color: #f00;
}
.ct-process-layout1 .ct-process-item:hover .ct-process-icon number {
background-color: #000;
}
.ct-process-layout1 .ct-process-item:nth-child(even) {
margin-top: 69px;
}
@media screen and (max-width: 1199px) {
.ct-process-layout1 .ct-process-item:nth-child(even) {
margin-top: 0;
}
}
@media screen and (max-width: 991px) {
.ct-process-layout1 .ct-process-item {
width: 50%;
min-width: 50%;
margin-bottom: 65px;
}
}
@media screen and (max-width: 575px) {
.ct-process-layout1 .ct-process-item {
width: 100%;
min-width: 100%;
}
}
@media screen and (max-width: 991px) {
.ct-process-layout1.ct-process-5-items:before {
display: none;
}
}
.ct-process-layout1.ct-process-5-items .ct-process-item {
width: 20%;
}
@media screen and (max-width: 991px) {
.ct-process-layout1.ct-process-5-items .ct-process-item {
width: 50%;
min-width: 50%;
margin-top: 0;
margin-bottom: 65px;
}
}
@media screen and (max-width: 575px) {
.ct-process-layout1.ct-process-5-items .ct-process-item {
width: 100%;
min-width: 100%;
}
}
.ct-process-layout1.active .ct-process-item .ct-process-icon {
background-color: #b50d1c;
}
.ct-process-layout1.active .ct-process-item .ct-process-icon span:before {
background-color: #f00;
}
.ct-process-layout1.active .ct-process-item .ct-process-icon number {
background-color: #000;
}
.ct-process-layout2 {
text-align: center;
display: flex;
flex-wrap: wrap;
position: relative;
z-index: 1;
}
.ct-process-layout2:before {
content: '';
position: absolute;
width: 1045px;
height: 64px;
background-image: url(//www.4cine.it/wp-content/themes/nimmo/assets/images/line-process2.png);
background-repeat: no-repeat;
background-position: center;
top: 35px;
left: 90px;
right: 0;
margin: auto;
}
@media screen and (max-width: 991px) {
.ct-process-layout2:before {
display: none;
}
}
.ct-process-layout2 .ct-process-icon {
background-color: #b50d1c;
background-image: -webkit-gradient(linear, left top, right top, from(#b50d1c), to(#f90244));
background-image: -webkit-linear-gradient(left, #b50d1c, #f90244);
background-image: -moz-linear-gradient(left, #b50d1c, #f90244);
background-image: -ms-linear-gradient(left, #b50d1c, #f90244);
background-image: -o-linear-gradient(left, #b50d1c, #f90244);
background-image: linear-gradient(left, #b50d1c, #f90244);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#b50d1c', endColorStr='#f90244', gradientType='1');
-webkit-box-shadow: 0 7px 18px rgba(249, 2, 68, 0.39);
-khtml-box-shadow: 0 7px 18px rgba(249, 2, 68, 0.39);
-moz-box-shadow: 0 7px 18px rgba(249, 2, 68, 0.39);
-ms-box-shadow: 0 7px 18px rgba(249, 2, 68, 0.39);
-o-box-shadow: 0 7px 18px rgba(249, 2, 68, 0.39);
box-shadow: 0 7px 18px rgba(249, 2, 68, 0.39);
height: 120px;
width: 120px;
-webkit-border-radius: 120px;
-khtml-border-radius: 120px;
-moz-border-radius: 120px;
-ms-border-radius: 120px;
-o-border-radius: 120px;
border-radius: 120px;
position: relative;
margin: 0 auto 36px auto;
}
.ct-process-layout2 .ct-process-icon i {
font-size: 46px;
color: #fff;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
display: block;
}
.ct-process-layout2 .ct-process-icon img, .ct-process-layout2 .ct-process-icon i {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-khtml-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.ct-process-layout2 .ct-process-title {
font-size: 20px;
color: #162171;
font-weight: 700;
}
.ct-process-layout2 .ct-process-desc {
font-size: 14px;
line-height: 24px;
color: #3a505f;
font-family: 'Poppins', sans-serif;
}
@media screen and (max-width: 991px) {
.ct-process-layout2 .ct-process-desc {
max-width: auto;
}
}
.ct-process-layout2 .ct-process-item {
width: 25%;
padding: 0 40px;
}
@media screen and (max-width: 991px) {
.ct-process-layout2 .ct-process-item {
width: 50%;
min-width: 50%;
margin-bottom: 65px;
}
}
@media screen and (max-width: 575px) {
.ct-process-layout2 .ct-process-item {
width: 100%;
min-width: 100%;
}
}
.ct-process-layout2 .ct-process-item:hover .ct-process-icon i {
-webkit-transform: translate(-50%, -50%) rotateY(360deg);
-khtml-transform: translate(-50%, -50%) rotateY(360deg);
-moz-transform: translate(-50%, -50%) rotateY(360deg);
-ms-transform: translate(-50%, -50%) rotateY(360deg);
-o-transform: translate(-50%, -50%) rotateY(360deg);
transform: translate(-50%, -50%) rotateY(360deg);
}
.ct-banner-layout1 .ct-banner-inner {
padding-top: 55px;
padding-left: 55px;
display: inline-block;
position: relative;
}
.ct-banner-layout1 .ct-banner-inner:before {
content: '';
background-color: #f00;
background-image: -webkit-gradient(linear, left top, right top, from(#f00), to(rgba(255, 0, 0, 0.01)));
background-image: -webkit-linear-gradient(left, #f00, rgba(255, 0, 0, 0.01));
background-image: -moz-linear-gradient(left, #f00, rgba(255, 0, 0, 0.01));
background-image: -ms-linear-gradient(left, #f00, rgba(255, 0, 0, 0.01));
background-image: -o-linear-gradient(left, #f00, rgba(255, 0, 0, 0.01));
background-image: linear-gradient(left, #f00, rgba(255, 0, 0, 0.01));
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f00', endColorStr='rgba(255, 0, 0, 0.01)', gradientType='1');
background-color: transparent;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 55px;
-webkit-border-radius: 10px 0 0 10px;
-khtml-border-radius: 10px 0 0 10px;
-moz-border-radius: 10px 0 0 10px;
-ms-border-radius: 10px 0 0 10px;
-o-border-radius: 10px 0 0 10px;
border-radius: 10px 0 0 10px;
}
.ct-banner-layout1 .ct-banner-image {
position: relative;
overflow: hidden;
}
.ct-banner-layout1 .ct-banner-image:before {
content: "";
position: absolute;
top: 0px;
left: 0px;
width: 0%;
height: 100%;
-webkit-transition: none;
-khtml-transition: none;
-moz-transition: none;
-ms-transition: none;
-o-transition: none;
transition: none;
background-color: rgba(255, 255, 255, 0.75);
-webkit-border-radius: 10px;
-khtml-border-radius: 10px;
-moz-border-radius: 10px;
-ms-border-radius: 10px;
-o-border-radius: 10px;
border-radius: 10px;
}
.ct-banner-layout1 .ct-banner-image img {
-webkit-border-radius: 10px;
-khtml-border-radius: 10px;
-moz-border-radius: 10px;
-ms-border-radius: 10px;
-o-border-radius: 10px;
border-radius: 10px;
}
.ct-banner-layout1:hover .ct-banner-image:before {
width: 120%;
background-color: rgba(255, 255, 255, 0);
-webkit-transition: all 0.5s ease-out;
-khtml-transition: all 0.5s ease-out;
-moz-transition: all 0.5s ease-out;
-ms-transition: all 0.5s ease-out;
-o-transition: all 0.5s ease-out;
transition: all 0.5s ease-out;
}
.ct-banner-layout1.secondary .ct-banner-inner:before {
background-color: #b50d1c;
background-image: -webkit-gradient(linear, left top, right top, from(#b50d1c), to(rgba(181, 13, 28, 0.01)));
background-image: -webkit-linear-gradient(left, #b50d1c, rgba(181, 13, 28, 0.01));
background-image: -moz-linear-gradient(left, #b50d1c, rgba(181, 13, 28, 0.01));
background-image: -ms-linear-gradient(left, #b50d1c, rgba(181, 13, 28, 0.01));
background-image: -o-linear-gradient(left, #b50d1c, rgba(181, 13, 28, 0.01));
background-image: linear-gradient(left, #b50d1c, rgba(181, 13, 28, 0.01));
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#b50d1c', endColorStr='rgba(181, 13, 28, 0.01)', gradientType='1');
background-color: transparent;
}
.ct-banner-layout1.third .ct-banner-inner:before {
background-color: #000;
background-image: -webkit-gradient(linear, left top, right top, from(#000), to(rgba(0, 0, 0, 0.01)));
background-image: -webkit-linear-gradient(left, #000, rgba(0, 0, 0, 0.01));
background-image: -moz-linear-gradient(left, #000, rgba(0, 0, 0, 0.01));
background-image: -ms-linear-gradient(left, #000, rgba(0, 0, 0, 0.01));
background-image: -o-linear-gradient(left, #000, rgba(0, 0, 0, 0.01));
background-image: linear-gradient(left, #000, rgba(0, 0, 0, 0.01));
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#000', endColorStr='rgba(0, 0, 0, 0.01)', gradientType='1');
background-color: transparent;
}
.ct-fancybox-default {
padding: 20px;
position: relative;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.ct-fancybox-default:before {
content: '';
background-color: #f4f7fc;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
}
.ct-fancybox-default .ct-fancybox-inner {
background-color: #f4f7fc;
text-align: center;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
padding: 56px 15px 65px;
position: relative;
z-index: 99;
}
.ct-fancybox-default .ct-fancybox-icon {
margin-bottom: 10px;
}
.ct-fancybox-default .ct-fancybox-icon i {
font-size: 54px;
background-image: -webkit-gradient(linear, left top, left bottom, from(#b50d1c), to(#f00));
background-image: -webkit-linear-gradient(bottom, #b50d1c, #f00);
background-image: -moz-linear-gradient(bottom, #b50d1c, #f00);
background-image: -ms-linear-gradient(bottom, #b50d1c, #f00);
background-image: -o-linear-gradient(bottom, #b50d1c, #f00);
background-image: linear-gradient(bottom, #b50d1c, #f00);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#b50d1c', endColorStr='#f00');
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
line-height: 1;
}
.ct-fancybox-default .ct-fancybox-icon img {
max-width: 100px;
}
.ct-fancybox-default .ct-fancybox-title {
font-size: 22px;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
margin-bottom: 8px;
}
.ct-fancybox-default .ct-fancybox-desc {
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
}
.ct-fancybox-default:hover:before {
background-color: transparent;
}
.ct-fancybox-default:hover .ct-fancybox-inner {
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(181, 13, 28, 0.9)), to(rgba(255, 0, 0, 0.9)));
background-image: -webkit-linear-gradient(bottom, rgba(181, 13, 28, 0.9), rgba(255, 0, 0, 0.9));
background-image: -moz-linear-gradient(bottom, rgba(181, 13, 28, 0.9), rgba(255, 0, 0, 0.9));
background-image: -ms-linear-gradient(bottom, rgba(181, 13, 28, 0.9), rgba(255, 0, 0, 0.9));
background-image: -o-linear-gradient(bottom, rgba(181, 13, 28, 0.9), rgba(255, 0, 0, 0.9));
background-image: linear-gradient(bottom, rgba(181, 13, 28, 0.9), rgba(255, 0, 0, 0.9));
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='rgba(181, 13, 28, 0.9)', endColorStr='rgba(255, 0, 0, 0.9)');
background-color: transparent;
}
.ct-fancybox-default:hover .ct-fancybox-title, .ct-fancybox-default:hover .ct-fancybox-desc {
color: #fff;
}
.ct-fancybox-default:hover .ct-fancybox-icon i {
color: #fff;
background-clip: transparent;
-moz-background-clip: transparent;
-webkit-background-clip: transparent;
text-fill-color: #fff;
-moz-text-fill-color: #fff;
-webkit-text-fill-color: #fff;
}
.ct-fancybox-default .ct-fancybox-link {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.ct-fancybox-layout2 {
text-align: center;
}
.ct-fancybox-layout2 .ct-fancybox-icon {
position: relative;
height: 93px;
width: 93px;
border: 3px solid #000;
background-color: #000;
line-height: 87px;
-webkit-border-radius: 93px;
-khtml-border-radius: 93px;
-moz-border-radius: 93px;
-ms-border-radius: 93px;
-o-border-radius: 93px;
border-radius: 93px;
margin: 0 auto 39px auto;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
}
.ct-fancybox-layout2 .ct-fancybox-icon img {
max-width: 80px;
}
.ct-fancybox-layout2 .ct-fancybox-icon i {
font-size: 42px;
color: #fff;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
position: absolute;
left: 0;
right: 0;
top: 50%;
-webkit-transform: translate(0, -50%);
-khtml-transform: translate(0, -50%);
-moz-transform: translate(0, -50%);
-ms-transform: translate(0, -50%);
-o-transform: translate(0, -50%);
transform: translate(0, -50%);
}
.ct-fancybox-layout2 .ct-fancybox-icon.icon-style2 {
border: none;
background-color: #f00;
background-image: -webkit-gradient(linear, left top, right top, from(#f00), to(#b50d1c));
background-image: -webkit-linear-gradient(left, #f00, #b50d1c);
background-image: -moz-linear-gradient(left, #f00, #b50d1c);
background-image: -ms-linear-gradient(left, #f00, #b50d1c);
background-image: -o-linear-gradient(left, #f00, #b50d1c);
background-image: linear-gradient(left, #f00, #b50d1c);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f00', endColorStr='#b50d1c', gradientType='1');
}
.ct-fancybox-layout2 .ct-fancybox-icon.icon-style2:before {
content: '';
position: absolute;
background-color: #fff;
top: 3px;
left: 3px;
right: 3px;
bottom: 3px;
-webkit-border-radius: 93px;
-khtml-border-radius: 93px;
-moz-border-radius: 93px;
-ms-border-radius: 93px;
-o-border-radius: 93px;
border-radius: 93px;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
opacity: 0;
}
.ct-fancybox-layout2 .ct-fancybox-title {
font-size: 18px;
margin-bottom: 10px;
}
.ct-fancybox-layout2 .ct-fancybox-desc {
padding: 0 20px;
}
.ct-fancybox-layout2 .ct-fancybox-inner:hover .ct-fancybox-icon {
background-color: #fff;
border-color: #f00;
}
.ct-fancybox-layout2 .ct-fancybox-inner:hover .ct-fancybox-icon i {
color: #2d3136;
}
.ct-fancybox-layout2 .ct-fancybox-inner:hover .ct-fancybox-icon.icon-style2:before {
opacity: 1;
}
.ct-fancybox-layout3 .ct-fancybox-icon {
color: #fff;
height: 44px;
width: 44px;
min-width: 44px;
-webkit-border-radius: 44px;
-khtml-border-radius: 44px;
-moz-border-radius: 44px;
-ms-border-radius: 44px;
-o-border-radius: 44px;
border-radius: 44px;
line-height: 44px;
background-color: #f00;
margin-right: 50px;
text-align: center;
}
.ct-fancybox-layout3 .ct-fancybox-icon i {
font-size: 18px;
}
.ct-fancybox-layout3 .ct-fancybox-title {
margin-bottom: 8px;
}
.ct-fancybox-layout3 .ct-fancybox-inner {
display: flex;
flex-wrap: nowrap;
align-items: center;
}
.ct-fancybox-layout3.icon-secondary .ct-fancybox-icon {
background-color: #b50d1c;
}
.ct-fancybox-layout4 {
position: relative;
}
.ct-fancybox-layout4 .ct-fancybox-icon {
line-height: 1;
margin-bottom: 18px;
}
@media screen and (max-width: 1199px) {
.ct-fancybox-layout4 .ct-fancybox-icon {
margin-bottom: 12px;
}
}
.ct-fancybox-layout4 .ct-fancybox-icon i {
font-size: 68px;
color: #fff;
}
@media screen and (max-width: 1199px) {
.ct-fancybox-layout4 .ct-fancybox-icon i {
font-size: 38px;
}
}
.ct-fancybox-layout4 .ct-fancybox-title {
font-size: 22px;
font-weight: 700;
color: #fff;
margin-bottom: 20px;
}
@media screen and (max-width: 1199px) {
.ct-fancybox-layout4 .ct-fancybox-title {
font-size: 18px;
margin-bottom: 10px;
}
}
.ct-fancybox-layout4 .ct-fancybox-desc {
font-size: 15px;
line-height: 26px;
color: #fff;
font-family: 'Poppins', sans-serif;
max-width: 250px;
margin: auto;
}
@media screen and (max-width: 1199px) {
.ct-fancybox-layout4 .ct-fancybox-desc {
font-size: 14px;
}
}
.ct-fancybox-layout4 .ct-fancybox-back {
position: absolute;
width: 334px;
height: 334px;
-webkit-border-radius: 334px;
-khtml-border-radius: 334px;
-moz-border-radius: 334px;
-ms-border-radius: 334px;
-o-border-radius: 334px;
border-radius: 334px;
background-color: #b50d1c;
background-image: -webkit-gradient(linear, left top, right top, from(#b50d1c), to(#f90244));
background-image: -webkit-linear-gradient(left, #b50d1c, #f90244);
background-image: -moz-linear-gradient(left, #b50d1c, #f90244);
background-image: -ms-linear-gradient(left, #b50d1c, #f90244);
background-image: -o-linear-gradient(left, #b50d1c, #f90244);
background-image: linear-gradient(left, #b50d1c, #f90244);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#b50d1c', endColorStr='#f90244', gradientType='1');
top: 0;
left: 0;
right: 0;
margin: auto;
-webkit-transform: translate(0, 0%) rotateY(90deg);
-khtml-transform: translate(0, 0%) rotateY(90deg);
-moz-transform: translate(0, 0%) rotateY(90deg);
-ms-transform: translate(0, 0%) rotateY(90deg);
-o-transform: translate(0, 0%) rotateY(90deg);
transform: translate(0, 0%) rotateY(90deg);
-o-transform-origin: 50% 0%;
-ms-transform-origin: 50% 0%;
-webkit-transform-origin: 50% 0%;
transform-origin: 50% 0%;
opacity: 0;
box-sizing: border-box;
-webkit-transition: all 0.35s ease;
-khtml-transition: all 0.35s ease;
-moz-transition: all 0.35s ease;
-ms-transition: all 0.35s ease;
-o-transition: all 0.35s ease;
transition: all 0.35s ease;
}
@media screen and (max-width: 1199px) {
.ct-fancybox-layout4 .ct-fancybox-back {
width: 230px;
height: 230px;
}
}
.ct-fancybox-layout4 .ct-fancybox-back a {
font-size: 18px;
color: #162171;
height: 63px;
width: 63px;
line-height: 63px;
-webkit-border-radius: 63px;
-khtml-border-radius: 63px;
-moz-border-radius: 63px;
-ms-border-radius: 63px;
-o-border-radius: 63px;
border-radius: 63px;
background-color: #fff;
-webkit-box-shadow: 0 6px 18px rgba(249, 2, 68, 0.39);
-khtml-box-shadow: 0 6px 18px rgba(249, 2, 68, 0.39);
-moz-box-shadow: 0 6px 18px rgba(249, 2, 68, 0.39);
-ms-box-shadow: 0 6px 18px rgba(249, 2, 68, 0.39);
-o-box-shadow: 0 6px 18px rgba(249, 2, 68, 0.39);
box-shadow: 0 6px 18px rgba(249, 2, 68, 0.39);
position: absolute;
bottom: -19px;
left: 0;
right: 0;
margin: auto;
text-align: center;
font-weight: 600;
-webkit-transition: all 200ms linear 0ms;
-khtml-transition: all 200ms linear 0ms;
-moz-transition: all 200ms linear 0ms;
-ms-transition: all 200ms linear 0ms;
-o-transition: all 200ms linear 0ms;
transition: all 200ms linear 0ms;
}
.ct-fancybox-layout4 .ct-fancybox-back a:hover {
bottom: -14px;
}
.ct-fancybox-layout4 .ct-fancybox-back .ct-fancybox-image {
position: absolute;
top: 25px;
right: 25px;
left: 25px;
bottom: 25px;
-webkit-border-radius: 100%;
-khtml-border-radius: 100%;
-moz-border-radius: 100%;
-ms-border-radius: 100%;
-o-border-radius: 100%;
border-radius: 100%;
}
.ct-fancybox-layout4 .ct-fancybox-front {
width: 334px;
height: 334px;
-webkit-border-radius: 334px;
-khtml-border-radius: 334px;
-moz-border-radius: 334px;
-ms-border-radius: 334px;
-o-border-radius: 334px;
border-radius: 334px;
text-align: center;
background-color: #b50d1c;
background-image: -webkit-gradient(linear, left top, right top, from(#b50d1c), to(#f90244));
background-image: -webkit-linear-gradient(left, #b50d1c, #f90244);
background-image: -moz-linear-gradient(left, #b50d1c, #f90244);
background-image: -ms-linear-gradient(left, #b50d1c, #f90244);
background-image: -o-linear-gradient(left, #b50d1c, #f90244);
background-image: linear-gradient(left, #b50d1c, #f90244);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#b50d1c', endColorStr='#f90244', gradientType='1');
-webkit-box-shadow: 0 7px 18px rgba(249, 2, 68, 0.39);
-khtml-box-shadow: 0 7px 18px rgba(249, 2, 68, 0.39);
-moz-box-shadow: 0 7px 18px rgba(249, 2, 68, 0.39);
-ms-box-shadow: 0 7px 18px rgba(249, 2, 68, 0.39);
-o-box-shadow: 0 7px 18px rgba(249, 2, 68, 0.39);
box-shadow: 0 7px 18px rgba(249, 2, 68, 0.39);
margin: auto;
backface-visibility: hidden;
box-sizing: border-box;
-webkit-transition: all 0.35s ease;
-khtml-transition: all 0.35s ease;
-moz-transition: all 0.35s ease;
-ms-transition: all 0.35s ease;
-o-transition: all 0.35s ease;
transition: all 0.35s ease;
position: relative;
}
@media screen and (max-width: 1199px) {
.ct-fancybox-layout4 .ct-fancybox-front {
width: 230px;
height: 230px;
}
}
.ct-fancybox-layout4 .ct-fancybox-front .ct-fancybox-inner {
padding: 30px;
position: absolute;
top: 50%;
left: 0;
right: 0;
-webkit-transform: translate(0, -50%);
-khtml-transform: translate(0, -50%);
-moz-transform: translate(0, -50%);
-ms-transform: translate(0, -50%);
-o-transform: translate(0, -50%);
transform: translate(0, -50%);
}
.ct-fancybox-layout4:hover .ct-fancybox-front {
-webkit-transform: rotateY(-180deg);
-khtml-transform: rotateY(-180deg);
-moz-transform: rotateY(-180deg);
-ms-transform: rotateY(-180deg);
-o-transform: rotateY(-180deg);
transform: rotateY(-180deg);
opacity: 0;
}
.ct-fancybox-layout4:hover .ct-fancybox-back {
opacity: 1;
-webkit-transition-delay: 0.14s;
-moz-transition-delay: 0.14s;
transition-delay: 0.14s;
-webkit-transform: translate(0, 0%) rotateY(0deg);
-khtml-transform: translate(0, 0%) rotateY(0deg);
-moz-transform: translate(0, 0%) rotateY(0deg);
-ms-transform: translate(0, 0%) rotateY(0deg);
-o-transform: translate(0, 0%) rotateY(0deg);
transform: translate(0, 0%) rotateY(0deg);
}
.ct-fancybox-layout5 .ct-fancybox-icon {
color: #fff;
height: 45px;
min-width: 45px;
width: 45px;
min-width: 45px;
-webkit-border-radius: 45px;
-khtml-border-radius: 45px;
-moz-border-radius: 45px;
-ms-border-radius: 45px;
-o-border-radius: 45px;
border-radius: 45px;
line-height: 45px;
background-image: -webkit-gradient(linear, left top, left bottom, from(#f90244), to(#b50d1c));
background-image: -webkit-linear-gradient(bottom, #f90244, #b50d1c);
background-image: -moz-linear-gradient(bottom, #f90244, #b50d1c);
background-image: -ms-linear-gradient(bottom, #f90244, #b50d1c);
background-image: -o-linear-gradient(bottom, #f90244, #b50d1c);
background-image: linear-gradient(bottom, #f90244, #b50d1c);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f90244', endColorStr='#b50d1c');
margin-right: 22px;
text-align: center;
margin-top: 6px;
position: relative;
}
.ct-fancybox-layout5 .ct-fancybox-icon i {
font-size: 16px;
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-khtml-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.ct-fancybox-layout5 .ct-fancybox-title {
margin-bottom: 8px;
font-size: 22px;
color: #383838;
font-weight: 700;
}
.ct-fancybox-layout5 .ct-fancybox-desc {
line-height: 1.625;
max-width: 310px;
}
@media screen and (max-width: 767px) {
.ct-fancybox-layout5 .ct-fancybox-desc {
max-width: 100%;
}
}
.ct-fancybox-layout5 .ct-fancybox-inner {
display: flex;
flex-wrap: nowrap;
}
.ct-fancybox-layout5.style2 .ct-fancybox-icon {
background-color: #b50d1c 50%;
background-image: -webkit-gradient(linear, left top, right top, from(#b50d1c 50%), to(#f90244));
background-image: -webkit-linear-gradient(left, #b50d1c 50%, #f90244);
background-image: -moz-linear-gradient(left, #b50d1c 50%, #f90244);
background-image: -ms-linear-gradient(left, #b50d1c 50%, #f90244);
background-image: -o-linear-gradient(left, #b50d1c 50%, #f90244);
background-image: linear-gradient(left, #b50d1c 50%, #f90244);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#b50d1c 50%', endColorStr='#f90244', gradientType='1');
width: 63px;
height: 63px;
line-height: 63px;
min-width: 63px;
margin-top: 0;
}
.ct-fancybox-layout5.style2 .ct-fancybox-icon i {
font-size: 24px;
}
.ct-fancybox-layout5.style2 .ct-fancybox-icon i.fa-phone {
-webkit-transform: translate(-50%, -50%) scaleX(-1);
-khtml-transform: translate(-50%, -50%) scaleX(-1);
-moz-transform: translate(-50%, -50%) scaleX(-1);
-ms-transform: translate(-50%, -50%) scaleX(-1);
-o-transform: translate(-50%, -50%) scaleX(-1);
transform: translate(-50%, -50%) scaleX(-1);
}
.ct-fancybox-layout5.style2 .ct-fancybox-title {
color: #000;
font-size: 24px;
font-weight: 600;
margin-top: 5px;
}
.ct-fancybox-layout5.style2 .ct-fancybox-desc {
font-size: 16px;
line-height: 26px;
color: #383838;
max-width: 260px;
}
@media screen and (max-width: 991px) {
.ct-fancybox-layout5.style2 .ct-fancybox-desc {
max-width: 100%;
}
}
.ct-fancybox-layout5.style2 .ct-fancybox-desc a {
color: inherit;
}
.ct-fancybox-layout5.style2 .ct-fancybox-desc a:hover {
color: inherit;
}
.ct-team-carousel-wrap .team-featured {
max-width: 190px;
margin: 0 auto 20px auto;
}
.ct-team-carousel-wrap .team-featured img {
-webkit-border-radius: 190px;
-khtml-border-radius: 190px;
-moz-border-radius: 190px;
-ms-border-radius: 190px;
-o-border-radius: 190px;
border-radius: 190px;
}
.ct-team-carousel-wrap .team-title {
font-size: 22px;
color: #252a37;
margin-bottom: 5px;
-webkit-transition: all 120ms linear 0ms;
-khtml-transition: all 120ms linear 0ms;
-moz-transition: all 120ms linear 0ms;
-ms-transition: all 120ms linear 0ms;
-o-transition: all 120ms linear 0ms;
transition: all 120ms linear 0ms;
}
.ct-team-carousel-wrap .team-position {
font-size: 16px;
color: #333;
-webkit-transition: all 120ms linear 0ms;
-khtml-transition: all 120ms linear 0ms;
-moz-transition: all 120ms linear 0ms;
-ms-transition: all 120ms linear 0ms;
-o-transition: all 120ms linear 0ms;
transition: all 120ms linear 0ms;
}
.ct-team-carousel-wrap .team-social {
display: flex;
align-items: center;
background-color: #f00;
background-image: -webkit-gradient(linear, left top, right top, from(#f00), to(#b50d1c));
background-image: -webkit-linear-gradient(left, #f00, #b50d1c);
background-image: -moz-linear-gradient(left, #f00, #b50d1c);
background-image: -ms-linear-gradient(left, #f00, #b50d1c);
background-image: -o-linear-gradient(left, #f00, #b50d1c);
background-image: linear-gradient(left, #f00, #b50d1c);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f00', endColorStr='#b50d1c', gradientType='1');
position: absolute;
left: 50%;
-webkit-transform: translate(-50%, 0);
-khtml-transform: translate(-50%, 0);
-moz-transform: translate(-50%, 0);
-ms-transform: translate(-50%, 0);
-o-transform: translate(-50%, 0);
transform: translate(-50%, 0);
bottom: 0;
-webkit-border-radius: 50px;
-khtml-border-radius: 50px;
-moz-border-radius: 50px;
-ms-border-radius: 50px;
-o-border-radius: 50px;
border-radius: 50px;
padding: 0 23px;
-webkit-transition: all 120ms linear 0ms;
-khtml-transition: all 120ms linear 0ms;
-moz-transition: all 120ms linear 0ms;
-ms-transition: all 120ms linear 0ms;
-o-transition: all 120ms linear 0ms;
transition: all 120ms linear 0ms;
line-height: 50px;
}
.ct-team-carousel-wrap .team-social a {
font-size: 16px;
color: #fff;
padding: 0 12px;
}
.ct-team-carousel-wrap .team-social a:hover {
color: #b50d1c;
}
.ct-team-carousel-wrap .ct-team-item-inner {
text-align: center;
padding: 40px 40px 45px 40px;
background-color: #f4f7fc;
-webkit-border-radius: 150px 150px 0 0;
-khtml-border-radius: 150px 150px 0 0;
-moz-border-radius: 150px 150px 0 0;
-ms-border-radius: 150px 150px 0 0;
-o-border-radius: 150px 150px 0 0;
border-radius: 150px 150px 0 0;
margin: 25px 0;
-webkit-transition: all 120ms linear 0ms;
-khtml-transition: all 120ms linear 0ms;
-moz-transition: all 120ms linear 0ms;
-ms-transition: all 120ms linear 0ms;
-o-transition: all 120ms linear 0ms;
transition: all 120ms linear 0ms;
}
.ct-team-carousel-wrap .owl-item.active .ct-team-item-inner:hover {
-webkit-box-shadow: 0 1px 15px rgba(0, 0, 0, 0.22);
-khtml-box-shadow: 0 1px 15px rgba(0, 0, 0, 0.22);
-moz-box-shadow: 0 1px 15px rgba(0, 0, 0, 0.22);
-ms-box-shadow: 0 1px 15px rgba(0, 0, 0, 0.22);
-o-box-shadow: 0 1px 15px rgba(0, 0, 0, 0.22);
box-shadow: 0 1px 15px rgba(0, 0, 0, 0.22);
background-color: #f00;
background-image: -webkit-gradient(linear, left top, right top, from(#f00), to(#b50d1c));
background-image: -webkit-linear-gradient(left, #f00, #b50d1c);
background-image: -moz-linear-gradient(left, #f00, #b50d1c);
background-image: -ms-linear-gradient(left, #f00, #b50d1c);
background-image: -o-linear-gradient(left, #f00, #b50d1c);
background-image: linear-gradient(left, #f00, #b50d1c);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f00', endColorStr='#b50d1c', gradientType='1');
background-color: #b50d1c;
}
.ct-team-carousel-wrap .owl-item.active .ct-team-item-inner:hover .team-title {
color: #fff;
}
.ct-team-carousel-wrap .owl-item.active .ct-team-item-inner:hover .team-position {
color: #fff;
}
.ct-team-carousel-wrap .owl-item.active .ct-team-item-inner:hover .team-social {
background-color: #252a37;
background-image: none;
}
.ct-team-carousel-wrap .owl-stage-outer {
padding: 0 30px;
margin: 0 -30px;
}
.ct-grid-portfolio-layout1 .item-holder {
position: absolute;
top: 15px;
left: 15px;
right: 15px;
bottom: 15px;
background-color: rgba(10, 10, 10, 0.9);
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
opacity: 0;
}
.ct-grid-portfolio-layout1 .item-holder .item-title {
font-size: 16px;
font-family: inherit;
margin-bottom: 3px;
color: #b50d1c;
font-weight: 500;
display: inline-block;
}
.ct-grid-portfolio-layout1 .item-holder p {
margin: 0px;
font-size: 18px;
font-weight: 600;
color: #fff;
font-family: 'Poppins', sans-serif;
}
.ct-grid-portfolio-layout1 .item-holder .item-holder-inner {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 20px 20px 25px 30px;
}
.ct-grid-portfolio-layout1 .item-holder .light-box, .ct-grid-portfolio-layout1 .item-holder .item-link {
width: 30px;
display: block;
position: absolute;
top: 30px;
right: 22px;
height: 30px;
line-height: 30px;
text-align: center;
color: #fff;
font-size: 17px;
}
.ct-grid-portfolio-layout1 .item-holder .light-box:hover, .ct-grid-portfolio-layout1 .item-holder .item-link:hover {
color: #f00;
}
.ct-grid-portfolio-layout1 .item-featured img {
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
}
.ct-grid-portfolio-layout1 .grid-item-inner {
position: relative;
overflow: hidden;
}
.ct-grid-portfolio-layout1 .grid-item-inner:hover .item-featured img {
-webkit-transform: scale(1.1);
-khtml-transform: scale(1.1);
-moz-transform: scale(1.1);
-ms-transform: scale(1.1);
-o-transform: scale(1.1);
transform: scale(1.1);
}
.ct-grid-portfolio-layout1 .grid-item-inner:hover .item-holder {
opacity: 1;
}
.shadow-style2 img {
-webkit-box-shadow: 0px 1px 18px rgba(34, 34, 34, 0.24);
-khtml-box-shadow: 0px 1px 18px rgba(34, 34, 34, 0.24);
-moz-box-shadow: 0px 1px 18px rgba(34, 34, 34, 0.24);
-ms-box-shadow: 0px 1px 18px rgba(34, 34, 34, 0.24);
-o-box-shadow: 0px 1px 18px rgba(34, 34, 34, 0.24);
box-shadow: 0px 1px 18px rgba(34, 34, 34, 0.24);
-webkit-border-radius: 50px;
-khtml-border-radius: 50px;
-moz-border-radius: 50px;
-ms-border-radius: 50px;
-o-border-radius: 50px;
border-radius: 50px;
}
.ct-grid-portfolio-layout2 .item--featured img {
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
}
.ct-grid-portfolio-layout2 .item--title {
font-size: 18px;
color: #fff;
margin-bottom: 6px;
}
.ct-grid-portfolio-layout2 .item--title a {
color: inherit;
}
.ct-grid-portfolio-layout2 .item--title a:hover {
color: inherit;
}
.ct-grid-portfolio-layout2 .item--category {
font-size: 14px;
color: #8d8d8d;
font-weight: 600;
font-family: 'Poppins', sans-serif;
}
.ct-grid-portfolio-layout2 .item--category a {
color: inherit;
}
.ct-grid-portfolio-layout2 .item--category a:hover {
color: inherit;
}
.ct-grid-portfolio-layout2 .item--readmore a {
display: inline-block;
font-size: 30px;
color: #fff;
font-family: 'Poppins', sans-serif;
height: 41px;
width: 41px;
line-height: 41px;
text-align: center;
background-image: -webkit-linear-gradient(90deg, #b50d1c 0%, #f90244 50%, #b50d1c);
background-image: -moz-linear-gradient(90deg, #b50d1c 0%, #f90244 50%, #b50d1c);
background-image: -ms-linear-gradient(90deg, #b50d1c 0%, #f90244 50%, #b50d1c);
background-image: -o-linear-gradient(90deg, #b50d1c 0%, #f90244 50%, #b50d1c);
background-image: linear-gradient(90deg, #b50d1c 0%, #f90244 50%, #b50d1c);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='', endColorStr='');
background-size: 300%, 1px;
background-position: 0%;
-webkit-border-radius: 100%;
-khtml-border-radius: 100%;
-moz-border-radius: 100%;
-ms-border-radius: 100%;
-o-border-radius: 100%;
border-radius: 100%;
}
.ct-grid-portfolio-layout2 .item--readmore a:hover {
background-position: 100%;
}
.ct-grid-portfolio-layout2 .item--holder {
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
opacity: 0;
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 30px 24px 28px 30px;
z-index: 1;
display: flex;
flex-wrap: nowrap;
align-items: center;
}
.ct-grid-portfolio-layout2 .item--holder:before {
content: '';
width: 100%;
left: 0;
bottom: 0;
height: calc(100% + 70px);
height: -webkit-calc(100% + 70px);
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 4, 9, 0.95)), to(rgba(0, 4, 9, 0)));
background-image: -webkit-linear-gradient(bottom, rgba(0, 4, 9, 0.95), rgba(0, 4, 9, 0));
background-image: -moz-linear-gradient(bottom, rgba(0, 4, 9, 0.95), rgba(0, 4, 9, 0));
background-image: -ms-linear-gradient(bottom, rgba(0, 4, 9, 0.95), rgba(0, 4, 9, 0));
background-image: -o-linear-gradient(bottom, rgba(0, 4, 9, 0.95), rgba(0, 4, 9, 0));
background-image: linear-gradient(bottom, rgba(0, 4, 9, 0.95), rgba(0, 4, 9, 0));
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='rgba(0, 4, 9, 0.95)', endColorStr='rgba(0, 4, 9, 0)');
position: absolute;
z-index: -1;
}
.ct-grid-portfolio-layout2 .item--holder .item--meta {
flex-grow: 1;
margin-right: 20px;
}
.ct-grid-portfolio-layout2 .grid-item-inner {
position: relative;
overflow: hidden;
-webkit-border-radius: 6px;
-khtml-border-radius: 6px;
-moz-border-radius: 6px;
-ms-border-radius: 6px;
-o-border-radius: 6px;
border-radius: 6px;
margin-bottom: 15px;
}
.ct-grid-portfolio-layout2 .grid-item-inner:hover .item--holder {
opacity: 1;
}
.ct-grid-portfolio-layout2 .grid-item-inner:hover .item--featured img {
-webkit-transform: scale(1.1) rotate(3deg);
-khtml-transform: scale(1.1) rotate(3deg);
-moz-transform: scale(1.1) rotate(3deg);
-ms-transform: scale(1.1) rotate(3deg);
-o-transform: scale(1.1) rotate(3deg);
transform: scale(1.1) rotate(3deg);
}
.ct-grid-portfolio-layout2 .ct-load-more {
margin-top: 15px;
}
.ct-grid-portfolio-layout2 .ct-load-more .btn {
padding: 0 42px;
-webkit-border-radius: 4px;
-khtml-border-radius: 4px;
-moz-border-radius: 4px;
-ms-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: none;
-khtml-box-shadow: none;
-moz-box-shadow: none;
-ms-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
font-family: 'Poppins', sans-serif;
font-weight: 700;
font-size: 15px;
text-transform: capitalize;
background-image: -webkit-linear-gradient(90deg, #f90244 0%, #b50d1c 50%, #f90244);
background-image: -moz-linear-gradient(90deg, #f90244 0%, #b50d1c 50%, #f90244);
background-image: -ms-linear-gradient(90deg, #f90244 0%, #b50d1c 50%, #f90244);
background-image: -o-linear-gradient(90deg, #f90244 0%, #b50d1c 50%, #f90244);
background-image: linear-gradient(90deg, #f90244 0%, #b50d1c 50%, #f90244);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='', endColorStr='');
background-size: 300%, 1px;
background-position: 0%;
}
.ct-grid-portfolio-layout2 .ct-load-more .btn:before, .ct-grid-portfolio-layout2 .ct-load-more .btn:after {
display: none;
}
.ct-grid-portfolio-layout2 .ct-load-more .btn:hover, .ct-grid-portfolio-layout2 .ct-load-more .btn:focus {
background-position: 100%;
}
.ct-counter-default .ct-counter-icon i {
font-size: 52px;
line-height: 1;
}
.ct-counter-default .ct-counter-icon + .ct-counter-holder {
padding-left: 40px;
}
.ct-counter-default .ct-counter-digit {
font-size: 28px;
color: #2d3136;
font-weight: 600;
font-family: 'Poppins', sans-serif;
}
.ct-counter-default .ct-counter-title {
margin: 0;
font-size: 18px;
margin-bottom: 0;
color: #333;
font-weight: 500;
font-family: inherit;
}
.ct-counter-default .ct-counter-inner {
display: flex;
align-items: center;
flex-wrap: nowrap;
}
.ct-counter-default.style2 .ct-counter-digit {
font-size: 40px;
color: #162171;
line-height: 1;
margin-bottom: 7px;
display: inline-block;
}
.ct-counter-default.style2 .ct-counter-title {
font-family: 'Poppins', sans-serif;
font-size: 20px;
line-height: 30px;
color: #6b8ba1;
font-weight: 400;
}
.ct-counter-layout2 {
background-color: #fff;
-webkit-border-radius: 28px;
-khtml-border-radius: 28px;
-moz-border-radius: 28px;
-ms-border-radius: 28px;
-o-border-radius: 28px;
border-radius: 28px;
-webkit-box-shadow: 0 7px 20px rgba(12, 12, 12, 0.08);
-khtml-box-shadow: 0 7px 20px rgba(12, 12, 12, 0.08);
-moz-box-shadow: 0 7px 20px rgba(12, 12, 12, 0.08);
-ms-box-shadow: 0 7px 20px rgba(12, 12, 12, 0.08);
-o-box-shadow: 0 7px 20px rgba(12, 12, 12, 0.08);
box-shadow: 0 7px 20px rgba(12, 12, 12, 0.08);
text-align: center;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
padding: 50px 30px;
position: relative;
overflow: hidden;
z-index: 1;
}
.ct-counter-layout2 .ct-counter-box-img {
z-index: -1;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-size: inherit;
background-position: top left;
-webkit-transition: all 200ms linear 0ms;
-khtml-transition: all 200ms linear 0ms;
-moz-transition: all 200ms linear 0ms;
-ms-transition: all 200ms linear 0ms;
-o-transition: all 200ms linear 0ms;
transition: all 200ms linear 0ms;
opacity: 0;
}
.ct-counter-layout2:hover {
-webkit-box-shadow: 0 19px 30px rgba(12, 12, 12, 0.15);
-khtml-box-shadow: 0 19px 30px rgba(12, 12, 12, 0.15);
-moz-box-shadow: 0 19px 30px rgba(12, 12, 12, 0.15);
-ms-box-shadow: 0 19px 30px rgba(12, 12, 12, 0.15);
-o-box-shadow: 0 19px 30px rgba(12, 12, 12, 0.15);
box-shadow: 0 19px 30px rgba(12, 12, 12, 0.15);
}
.ct-counter-layout2:hover .ct-counter-box-img {
opacity: 1;
}
.ct-counter-layout2 .ct-counter-icon {
line-height: 1;
margin-bottom: 18px;
}
.ct-counter-layout2 .ct-counter-icon i {
color: #f00;
font-size: 50px;
}
.ct-counter-layout2 .ct-counter-title {
font-size: 18px;
line-height: 26px;
color: #383838;
margin-bottom: 0;
font-weight: normal;
}
.ct-counter-layout2 .ct-counter-digit {
display: block;
font-weight: 700;
font-family: 'Poppins', sans-serif;
font-size: 36px;
color: #383838;
line-height: 1;
margin-bottom: 13px;
}
.vc_tta-container .vc_tta-tabs.vc_tta-style-default .vc_tta-tabs-container .vc_tta-tabs-list {
text-align: center;
}
.vc_tta-container .vc_tta-tabs.vc_tta-style-default .vc_tta-tabs-container .vc_tta-tabs-list li a {
border: none;
padding: 0 32px;
line-height: 52px;
color: #2d3136;
font-weight: 500;
background-color: #f4f7fc;
}
.vc_tta-container .vc_tta-tabs.vc_tta-style-default .vc_tta-tabs-container .vc_tta-tabs-list li.vc_active a {
background-color: #f00;
color: #fff;
}
.vc_tta-container .vc_tta-tabs.vc_tta-style-default .vc_tta-tabs-container .vc_tta-tabs-list li:first-child a {
-webkit-border-radius: 52px 0 0 52px;
-khtml-border-radius: 52px 0 0 52px;
-moz-border-radius: 52px 0 0 52px;
-ms-border-radius: 52px 0 0 52px;
-o-border-radius: 52px 0 0 52px;
border-radius: 52px 0 0 52px;
}
.vc_tta-container .vc_tta-tabs.vc_tta-style-default .vc_tta-tabs-container .vc_tta-tabs-list li:last-child a {
-webkit-border-radius: 0 52px 52px 0;
-khtml-border-radius: 0 52px 52px 0;
-moz-border-radius: 0 52px 52px 0;
-ms-border-radius: 0 52px 52px 0;
-o-border-radius: 0 52px 52px 0;
border-radius: 0 52px 52px 0;
}
.vc_tta-container .vc_tta-tabs.vc_tta-style-default .vc_tta-panels-container .vc_tta-panel-body {
padding: 45px 0 0;
border: none;
}
@media screen and (max-width: 767px) {
.vc_tta-container .vc_tta-tabs.vc_tta-style-default .vc_tta-panel-heading .vc_tta-panel-title a {
background-color: #f4f7fc;
padding: 18px 24px;
font-size: 18px;
cursor: pointer;
}
.vc_tta-container .vc_tta-tabs.vc_tta-style-default .vc_tta-panels-container .vc_tta-panel-body {
padding-top: 25px;
padding-bottom: 30px;
}
.vc_tta-container .vc_tta-tabs.vc_tta-style-default .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a {
color: #fff;
background-color: #f00;
background-image: -webkit-gradient(linear, left top, right top, from(#f00), to(#b50d1c));
background-image: -webkit-linear-gradient(left, #f00, #b50d1c);
background-image: -moz-linear-gradient(left, #f00, #b50d1c);
background-image: -ms-linear-gradient(left, #f00, #b50d1c);
background-image: -o-linear-gradient(left, #f00, #b50d1c);
background-image: linear-gradient(left, #f00, #b50d1c);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f00', endColorStr='#b50d1c', gradientType='1');
}
}
.ct-pricing-default {
background-color: #fff;
border: 1px solid #eee;
border-radius: 10px;
padding: 32px 20px 45px 20px;
text-align: center;
}
.ct-pricing-default.is-feature {
border: 3px solid rgba(255, 0, 0, 0.8);
-webkit-box-shadow: 0px 0px 15px rgba(34, 34, 34, 0.36);
-khtml-box-shadow: 0px 0px 15px rgba(34, 34, 34, 0.36);
-moz-box-shadow: 0px 0px 15px rgba(34, 34, 34, 0.36);
-ms-box-shadow: 0px 0px 15px rgba(34, 34, 34, 0.36);
-o-box-shadow: 0px 0px 15px rgba(34, 34, 34, 0.36);
box-shadow: 0px 0px 15px rgba(34, 34, 34, 0.36);
}
.ct-pricing-default .ct-pricing-title {
font-size: 22px;
margin-bottom: 37px;
font-weight: 600;
color: #272c31;
}
.ct-pricing-default .ct-pricing-price {
font-size: 48px;
line-height: 1;
font-weight: 600;
font-family: 'Poppins', sans-serif;
color: #f00;
margin-bottom: 20px;
}
.ct-pricing-default .ct-pricing-time {
font-size: 16px;
font-weight: 600;
color: #7c7e80;
}
.ct-pricing-default .ct-pricing-meta {
border-bottom: 1px solid #eee;
padding-bottom: 24px;
}
.ct-pricing-default .ct-pricing-holder {
padding-top: 27px;
}
.ct-pricing-default .ct-pricing-holder .ct-pricing-content {
list-style: none;
margin: 0;
font-size: 18px;
color: #333;
}
.ct-pricing-default .ct-pricing-holder .ct-pricing-content li {
padding: 4px 0;
}
.ct-pricing-default .ct-pricing-holder .ct-pricing-button {
margin-top: 32px;
}
.ct-pricing-default .ct-pricing-holder .ct-pricing-button .btn {
line-height: 47px;
}
.ct-pricing-default:not(.is-feature) .ct-pricing-holder .ct-pricing-button .btn {
background-color: #f00;
background-image: none;
}
.ct-video-button {
font-size: 12px;
line-height: 60px;
width: 60px;
height: 60px;
color: #fff;
background-color: #f00;
background-image: -webkit-gradient(linear, left top, right top, from(#f00), to(#b50d1c));
background-image: -webkit-linear-gradient(left, #f00, #b50d1c);
background-image: -moz-linear-gradient(left, #f00, #b50d1c);
background-image: -ms-linear-gradient(left, #f00, #b50d1c);
background-image: -o-linear-gradient(left, #f00, #b50d1c);
background-image: linear-gradient(left, #f00, #b50d1c);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f00', endColorStr='#b50d1c', gradientType='1');
-webkit-border-radius: 60px;
-khtml-border-radius: 60px;
-moz-border-radius: 60px;
-ms-border-radius: 60px;
-o-border-radius: 60px;
border-radius: 60px;
text-align: center;
display: inline-block;
vertical-align: middle;
position: relative;
z-index: 1;
}
.ct-video-button:before, .ct-video-button:after {
content: '';
-webkit-border-radius: 100%;
-khtml-border-radius: 100%;
-moz-border-radius: 100%;
-ms-border-radius: 100%;
-o-border-radius: 100%;
border-radius: 100%;
position: absolute;
z-index: -1;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
}
.ct-video-button:before {
height: 88px;
width: 88px;
background-color: rgba(255, 0, 0, 0.17);
background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 0, 0, 0.17)), to(rgba(181, 13, 28, 0.17)));
background-image: -webkit-linear-gradient(left, rgba(255, 0, 0, 0.17), rgba(181, 13, 28, 0.17));
background-image: -moz-linear-gradient(left, rgba(255, 0, 0, 0.17), rgba(181, 13, 28, 0.17));
background-image: -ms-linear-gradient(left, rgba(255, 0, 0, 0.17), rgba(181, 13, 28, 0.17));
background-image: -o-linear-gradient(left, rgba(255, 0, 0, 0.17), rgba(181, 13, 28, 0.17));
background-image: linear-gradient(left, rgba(255, 0, 0, 0.17), rgba(181, 13, 28, 0.17));
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='rgba(255, 0, 0, 0.17)', endColorStr='rgba(181, 13, 28, 0.17)', gradientType='1');
background-color: transparent;
top: -14px;
left: -14px;
}
.ct-video-button:after {
height: 110px;
width: 110px;
background-color: rgba(255, 0, 0, 0.15);
background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 0, 0, 0.15)), to(rgba(181, 13, 28, 0.15)));
background-image: -webkit-linear-gradient(left, rgba(255, 0, 0, 0.15), rgba(181, 13, 28, 0.15));
background-image: -moz-linear-gradient(left, rgba(255, 0, 0, 0.15), rgba(181, 13, 28, 0.15));
background-image: -ms-linear-gradient(left, rgba(255, 0, 0, 0.15), rgba(181, 13, 28, 0.15));
background-image: -o-linear-gradient(left, rgba(255, 0, 0, 0.15), rgba(181, 13, 28, 0.15));
background-image: linear-gradient(left, rgba(255, 0, 0, 0.15), rgba(181, 13, 28, 0.15));
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='rgba(255, 0, 0, 0.15)', endColorStr='rgba(181, 13, 28, 0.15)', gradientType='1');
background-color: transparent;
top: -25px;
left: -25px;
}
.ct-video-button:hover, .ct-video-button:focus, .ct-video-button:active {
color: #fff;
}
.ct-video-button:hover:before, .ct-video-button:focus:before, .ct-video-button:active:before, .ct-video-button:hover:after, .ct-video-button:focus:after, .ct-video-button:active:after {
width: 60px;
height: 60px;
left: 0;
top: 0;
opacity: 0;
}
.rev_slider_wrapper .ct-video-button {
line-height: 70px;
width: 70px;
height: 70px;
font-size: 15px !important;
color: #f00;
background-color: #fff;
background-image: none;
text-align: center !important;
}
.rev_slider_wrapper .ct-video-button:before {
display: none;
}
.rev_slider_wrapper .ct-video-button:after {
top: -10px;
left: -10px;
width: 90px;
height: 90px;
background-color: rgba(255, 255, 255, 0.35);
background-image: none;
}
.ct-testimonial-carousel1 .testimonial-featured {
position: relative;
display: inline-block;
border: 11px solid #fff;
-webkit-border-radius: 165px;
-khtml-border-radius: 165px;
-moz-border-radius: 165px;
-ms-border-radius: 165px;
-o-border-radius: 165px;
border-radius: 165px;
margin-bottom: 40px;
max-width: 176px;
}
.ct-testimonial-carousel1 .testimonial-featured:before {
content: '';
position: absolute;
top: -7px;
left: -7px;
width: calc(100% + 14px);
width: -webkit-calc(100% + 14px);
height: calc(100% + 14px);
height: -webkit-calc(100% + 14px);
-webkit-border-radius: 165px;
-khtml-border-radius: 165px;
-moz-border-radius: 165px;
-ms-border-radius: 165px;
-o-border-radius: 165px;
border-radius: 165px;
border: 3px solid #f00;
}
.ct-testimonial-carousel1 .testimonial-description {
font-size: 18px;
line-height: 2;
color: #efefef;
margin-bottom: 20px;
}
.ct-testimonial-carousel1 .testimonial-title {
font-size: 28px;
color: #fff;
margin-bottom: 4px;
}
.ct-testimonial-carousel1 .testimonial-position {
color: #b50d1c;
font-size: 18px;
}
.ct-testimonial-carousel1 .grid-item-inner {
text-align: center;
}
.ct-testimonial-carousel1 .owl-dots .owl-dot {
background-color: #f00;
background-image: -webkit-gradient(linear, left top, right top, from(#f00), to(#b50d1c));
background-image: -webkit-linear-gradient(left, #f00, #b50d1c);
background-image: -moz-linear-gradient(left, #f00, #b50d1c);
background-image: -ms-linear-gradient(left, #f00, #b50d1c);
background-image: -o-linear-gradient(left, #f00, #b50d1c);
background-image: linear-gradient(left, #f00, #b50d1c);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f00', endColorStr='#b50d1c', gradientType='1');
}
.ct-testimonial-carousel1 .owl-dots .owl-dot.active {
background-color: #fff;
background-image: none;
}
.ct-testimonial-carousel2 .testimonial-featured {
height: 116px;
width: 116px;
-webkit-border-radius: 116px;
-khtml-border-radius: 116px;
-moz-border-radius: 116px;
-ms-border-radius: 116px;
-o-border-radius: 116px;
border-radius: 116px;
border: 4px solid #fff;
-webkit-box-shadow: 0 9px 10px rgba(255, 51, 179, 0.41);
-khtml-box-shadow: 0 9px 10px rgba(255, 51, 179, 0.41);
-moz-box-shadow: 0 9px 10px rgba(255, 51, 179, 0.41);
-ms-box-shadow: 0 9px 10px rgba(255, 51, 179, 0.41);
-o-box-shadow: 0 9px 10px rgba(255, 51, 179, 0.41);
box-shadow: 0 9px 10px rgba(255, 51, 179, 0.41);
margin: 0 auto 34px auto;
position: relative;
}
.ct-testimonial-carousel2 .testimonial-featured img {
-webkit-border-radius: 116px;
-khtml-border-radius: 116px;
-moz-border-radius: 116px;
-ms-border-radius: 116px;
-o-border-radius: 116px;
border-radius: 116px;
}
.ct-testimonial-carousel2 .testimonial-featured a i {
height: 37px;
position: absolute;
top: 3px;
right: -13px;
background-color: #f00;
width: 37px;
line-height: 37px;
border-radius: 37px;
font-size: 16px;
color: #fff;
}
.ct-testimonial-carousel2 .testimonial-featured a i.fa-dribbble {
background-color: #fd226a;
}
.ct-testimonial-carousel2 .testimonial-featured a i.fa-facebook {
background-color: #0060ff;
}
.ct-testimonial-carousel2 .testimonial-featured a i.fa-twitter {
background-color: #019cff;
}
.ct-testimonial-carousel2 .testimonial-title {
font-size: 22px;
color: #162171;
font-weight: 700;
margin-bottom: 0px;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
}
.ct-testimonial-carousel2 .testimonial-position {
font-family: 'Poppins', sans-serif;
font-size: 16px;
color: #999;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
}
.ct-testimonial-carousel2 .testimonial-description {
font-size: 16px;
line-height: 32px;
color: #3a505f;
font-family: 'Poppins', sans-serif;
margin-bottom: 23px;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
}
.ct-testimonial-carousel2 .testimonial-icon {
font-size: 232px;
color: #fff;
font-family: "Playfair Display";
text-shadow: 0 2px 18px rgba(61, 61, 61, 0.21);
-webkit-text-shadow: 0 2px 18px rgba(61, 61, 61, 0.21);
position: absolute;
top: -78px;
left: 14px;
line-height: 1;
}
.ct-testimonial-carousel2 .grid-item-inner {
overflow: hidden;
position: relative;
padding: 63px 50px 55px;
}
.ct-testimonial-carousel2 .grid-item-inner:before {
content: '';
z-index: -1;
height: 150px;
width: 255px;
background-image: -webkit-linear-gradient(120deg, #b50d1c, #f90244);
background-image: -moz-linear-gradient(120deg, #b50d1c, #f90244);
background-image: -ms-linear-gradient(120deg, #b50d1c, #f90244);
background-image: -o-linear-gradient(120deg, #b50d1c, #f90244);
background-image: linear-gradient(120deg, #b50d1c, #f90244);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#b50d1c', endColorStr='#f90244');
position: absolute;
-webkit-border-radius: 38px;
-khtml-border-radius: 38px;
-moz-border-radius: 38px;
-ms-border-radius: 38px;
-o-border-radius: 38px;
border-radius: 38px;
top: -55px;
left: -62px;
-webkit-transform: rotate(-44deg);
-khtml-transform: rotate(-44deg);
-moz-transform: rotate(-44deg);
-ms-transform: rotate(-44deg);
-o-transform: rotate(-44deg);
transform: rotate(-44deg);
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
opacity: 0.1;
}
.ct-testimonial-carousel2 .ct-testimonial-item {
background-color: #fff;
margin: 60px 0 40px;
-webkit-box-shadow: 0 2px 32px rgba(61, 61, 61, 0.1);
-khtml-box-shadow: 0 2px 32px rgba(61, 61, 61, 0.1);
-moz-box-shadow: 0 2px 32px rgba(61, 61, 61, 0.1);
-ms-box-shadow: 0 2px 32px rgba(61, 61, 61, 0.1);
-o-box-shadow: 0 2px 32px rgba(61, 61, 61, 0.1);
box-shadow: 0 2px 32px rgba(61, 61, 61, 0.1);
position: relative;
text-align: center;
z-index: 1;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
}
.ct-testimonial-carousel2 .ct-testimonial-item:before {
content: '';
z-index: -1;
height: 10px;
width: 100%;
background-color: #b50d1c;
background-image: -webkit-gradient(linear, left top, right top, from(#b50d1c), to(#f90244));
background-image: -webkit-linear-gradient(left, #b50d1c, #f90244);
background-image: -moz-linear-gradient(left, #b50d1c, #f90244);
background-image: -ms-linear-gradient(left, #b50d1c, #f90244);
background-image: -o-linear-gradient(left, #b50d1c, #f90244);
background-image: linear-gradient(left, #b50d1c, #f90244);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#b50d1c', endColorStr='#f90244', gradientType='1');
-webkit-box-shadow: 0 0px 9px rgba(249, 2, 68, 0.21);
-khtml-box-shadow: 0 0px 9px rgba(249, 2, 68, 0.21);
-moz-box-shadow: 0 0px 9px rgba(249, 2, 68, 0.21);
-ms-box-shadow: 0 0px 9px rgba(249, 2, 68, 0.21);
-o-box-shadow: 0 0px 9px rgba(249, 2, 68, 0.21);
box-shadow: 0 0px 9px rgba(249, 2, 68, 0.21);
position: absolute;
bottom: 0;
left: 0;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
}
.ct-testimonial-carousel2 .ct-testimonial-item:hover {
background-color: #162171;
-webkit-transform: translateY(-20px);
-khtml-transform: translateY(-20px);
-moz-transform: translateY(-20px);
-ms-transform: translateY(-20px);
-o-transform: translateY(-20px);
transform: translateY(-20px);
-webkit-box-shadow: 0 7px 18px rgba(249, 2, 68, 0.39);
-khtml-box-shadow: 0 7px 18px rgba(249, 2, 68, 0.39);
-moz-box-shadow: 0 7px 18px rgba(249, 2, 68, 0.39);
-ms-box-shadow: 0 7px 18px rgba(249, 2, 68, 0.39);
-o-box-shadow: 0 7px 18px rgba(249, 2, 68, 0.39);
box-shadow: 0 7px 18px rgba(249, 2, 68, 0.39);
}
.ct-testimonial-carousel2 .ct-testimonial-item:hover:before {
opacity: 0;
}
.ct-testimonial-carousel2 .ct-testimonial-item:hover .grid-item-inner:before {
opacity: 1;
}
.ct-testimonial-carousel2 .ct-testimonial-item:hover .testimonial-title, .ct-testimonial-carousel2 .ct-testimonial-item:hover .testimonial-description, .ct-testimonial-carousel2 .ct-testimonial-item:hover .testimonial-position {
color: #fff;
}
.ct-testimonial-carousel2 .owl-stage-outer {
padding: 0px 30px;
margin: 0 -30px;
}
.ct-testimonial-carousel2 .owl-stage-outer .owl-item {
opacity: 0;
-webkit-transition: all 180ms linear 0ms;
-khtml-transition: all 180ms linear 0ms;
-moz-transition: all 180ms linear 0ms;
-ms-transition: all 180ms linear 0ms;
-o-transition: all 180ms linear 0ms;
transition: all 180ms linear 0ms;
}
.ct-testimonial-carousel2 .owl-stage-outer .owl-item.active {
opacity: 1;
}
.ct-testimonial-carousel3 .ct-testimonial-nav {
text-align: center;
position: relative;
padding: 0 40px;
margin-bottom: 21px;
}
.ct-testimonial-carousel3 .ct-testimonial-nav:before {
content: '';
height: 1px;
width: 100%;
background-color: #dadcde;
position: absolute;
top: 50%;
-webkit-transform: translate(0, -50%);
-khtml-transform: translate(0, -50%);
-moz-transform: translate(0, -50%);
-ms-transform: translate(0, -50%);
-o-transform: translate(0, -50%);
transform: translate(0, -50%);
left: 0;
}
.ct-testimonial-carousel3 .ct-testimonial-nav .owl-nav {
display: block;
margin: 0;
}
.ct-testimonial-carousel3 .ct-testimonial-nav .owl-nav .owl-prev, .ct-testimonial-carousel3 .ct-testimonial-nav .owl-nav .owl-next {
margin: 0;
position: absolute;
height: 40px;
width: 40px;
line-height: 40px;
border: none;
background-color: #d6d8d9;
color: #0e0e0e;
font-size: 16px;
top: 50%;
-webkit-transform: translate(0, -50%);
-khtml-transform: translate(0, -50%);
-moz-transform: translate(0, -50%);
-ms-transform: translate(0, -50%);
-o-transform: translate(0, -50%);
transform: translate(0, -50%);
}
.ct-testimonial-carousel3 .ct-testimonial-nav .owl-nav .owl-prev:hover, .ct-testimonial-carousel3 .ct-testimonial-nav .owl-nav .owl-next:hover {
background-color: #f90244;
color: #fff;
}
.ct-testimonial-carousel3 .ct-testimonial-nav .owl-nav .owl-prev {
left: -40px;
}
@media screen and (max-width: 1400px) {
.ct-testimonial-carousel3 .ct-testimonial-nav .owl-nav .owl-prev {
left: 0;
}
}
.ct-testimonial-carousel3 .ct-testimonial-nav .owl-nav .owl-next {
right: -40px;
}
@media screen and (max-width: 1400px) {
.ct-testimonial-carousel3 .ct-testimonial-nav .owl-nav .owl-next {
right: 0;
}
}
.ct-testimonial-carousel3 .ct-testimonial-nav .testimonial-shape {
position: absolute;
top: -20px;
left: -20px;
-webkit-border-radius: 165px;
-khtml-border-radius: 165px;
-moz-border-radius: 165px;
-ms-border-radius: 165px;
-o-border-radius: 165px;
border-radius: 165px;
border: 3px solid #e3e3e3;
background-color: #eff4f7;
z-index: -1;
width: calc(100% + 40px);
width: -webkit-calc(100% + 40px);
height: calc(100% + 40px);
height: -webkit-calc(100% + 40px);
-webkit-transition: all 240ms linear 0ms;
-khtml-transition: all 240ms linear 0ms;
-moz-transition: all 240ms linear 0ms;
-ms-transition: all 240ms linear 0ms;
-o-transition: all 240ms linear 0ms;
transition: all 240ms linear 0ms;
opacity: 0;
-webkit-animation: item_hexagon 2s infinite linear;
-moz-animation: item_hexagon 2s infinite linear;
-o-animation: item_hexagon 2s infinite linear;
animation: item_hexagon 2s infinite linear;
-webkit-animation-play-state: paused;
-moz-animation-play-state: paused;
-o-animation-play-state: paused;
animation-play-state: paused;
}
.ct-testimonial-carousel3 .ct-testimonial-nav .testimonial-shape:before {
content: '';
position: absolute;
width: 33px;
height: 33px;
top: -5px;
left: 32px;
background-image: -webkit-gradient(linear, left top, left bottom, from(#f90244), to(#b50d1c));
background-image: -webkit-linear-gradient(bottom, #f90244, #b50d1c);
background-image: -moz-linear-gradient(bottom, #f90244, #b50d1c);
background-image: -ms-linear-gradient(bottom, #f90244, #b50d1c);
background-image: -o-linear-gradient(bottom, #f90244, #b50d1c);
background-image: linear-gradient(bottom, #f90244, #b50d1c);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f90244', endColorStr='#b50d1c');
-webkit-border-radius: 100%;
-khtml-border-radius: 100%;
-moz-border-radius: 100%;
-ms-border-radius: 100%;
-o-border-radius: 100%;
border-radius: 100%;
-webkit-box-shadow: 0 7px 16px rgba(12, 12, 12, 0.22);
-khtml-box-shadow: 0 7px 16px rgba(12, 12, 12, 0.22);
-moz-box-shadow: 0 7px 16px rgba(12, 12, 12, 0.22);
-ms-box-shadow: 0 7px 16px rgba(12, 12, 12, 0.22);
-o-box-shadow: 0 7px 16px rgba(12, 12, 12, 0.22);
box-shadow: 0 7px 16px rgba(12, 12, 12, 0.22);
}
@media screen and (max-width: 991px) {
.ct-testimonial-carousel3 .ct-testimonial-nav .testimonial-shape:before {
display: none;
}
}
.ct-testimonial-carousel3 .ct-testimonial-nav .testimonial-shape:after {
content: '';
position: absolute;
width: 18px;
height: 18px;
bottom: 13px;
right: 26px;
background-color: #f90244;
background-image: -webkit-gradient(linear, left top, right top, from(#f90244), to(#b50d1c));
background-image: -webkit-linear-gradient(left, #f90244, #b50d1c);
background-image: -moz-linear-gradient(left, #f90244, #b50d1c);
background-image: -ms-linear-gradient(left, #f90244, #b50d1c);
background-image: -o-linear-gradient(left, #f90244, #b50d1c);
background-image: linear-gradient(left, #f90244, #b50d1c);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f90244', endColorStr='#b50d1c', gradientType='1');
-webkit-border-radius: 100%;
-khtml-border-radius: 100%;
-moz-border-radius: 100%;
-ms-border-radius: 100%;
-o-border-radius: 100%;
border-radius: 100%;
-webkit-box-shadow: 0 8px 8px rgba(12, 12, 12, 0.19);
-khtml-box-shadow: 0 8px 8px rgba(12, 12, 12, 0.19);
-moz-box-shadow: 0 8px 8px rgba(12, 12, 12, 0.19);
-ms-box-shadow: 0 8px 8px rgba(12, 12, 12, 0.19);
-o-box-shadow: 0 8px 8px rgba(12, 12, 12, 0.19);
box-shadow: 0 8px 8px rgba(12, 12, 12, 0.19);
}
@media screen and (max-width: 991px) {
.ct-testimonial-carousel3 .ct-testimonial-nav .testimonial-shape:after {
display: none;
}
}
.ct-testimonial-carousel3 .ct-testimonial-nav .testimonial-image {
margin-top: 50px;
margin-bottom: 30px;
position: relative;
z-index: 1;
display: inline-block;
max-width: 165px;
}
.ct-testimonial-carousel3 .ct-testimonial-nav .testimonial-image img {
-webkit-border-radius: 165px;
-khtml-border-radius: 165px;
-moz-border-radius: 165px;
-ms-border-radius: 165px;
-o-border-radius: 165px;
border-radius: 165px;
max-width: 165px;
width: 100%;
margin: auto;
-webkit-box-shadow: 0 7px 8px rgba(224, 224, 224, 0.13);
-khtml-box-shadow: 0 7px 8px rgba(224, 224, 224, 0.13);
-moz-box-shadow: 0 7px 8px rgba(224, 224, 224, 0.13);
-ms-box-shadow: 0 7px 8px rgba(224, 224, 224, 0.13);
-o-box-shadow: 0 7px 8px rgba(224, 224, 224, 0.13);
box-shadow: 0 7px 8px rgba(224, 224, 224, 0.13);
-webkit-transform: scale(0.73);
-khtml-transform: scale(0.73);
-moz-transform: scale(0.73);
-ms-transform: scale(0.73);
-o-transform: scale(0.73);
transform: scale(0.73);
-webkit-transition: all 240ms linear 0ms;
-khtml-transition: all 240ms linear 0ms;
-moz-transition: all 240ms linear 0ms;
-ms-transition: all 240ms linear 0ms;
-o-transition: all 240ms linear 0ms;
transition: all 240ms linear 0ms;
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
}
@media screen and (max-width: 991px) {
.ct-testimonial-carousel3 .ct-testimonial-nav .testimonial-image img {
-webkit-transform: scale(0.6);
-khtml-transform: scale(0.6);
-moz-transform: scale(0.6);
-ms-transform: scale(0.6);
-o-transform: scale(0.6);
transform: scale(0.6);
}
}
.ct-testimonial-carousel3 .ct-testimonial-nav .testimonial-image:hover .testimonial-shape {
-webkit-animation-play-state: running;
-moz-animation-play-state: running;
-o-animation-play-state: running;
animation-play-state: running;
}
.ct-testimonial-carousel3 .ct-testimonial-nav .owl-item.active.center .testimonial-image img {
-webkit-transform: scale(1);
-khtml-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
-webkit-filter: grayscale(0%);
filter: grayscale(0%);
}
.ct-testimonial-carousel3 .ct-testimonial-nav .owl-item.active.center .testimonial-shape {
opacity: 1;
}
.ct-testimonial-carousel3 .ct-testimonial-main {
text-align: center;
}
.ct-testimonial-carousel3 .ct-testimonial-main .testimonial-description {
font-size: 16px;
line-height: 30px;
font-family: 'Poppins', sans-serif;
margin-bottom: 15px;
}
.ct-testimonial-carousel3 .ct-testimonial-main .testimonial-title {
font-size: 18px;
line-height: 30px;
color: #0e0e0e;
margin-bottom: 4px;
}
.ct-testimonial-carousel3 .ct-testimonial-main .testimonial-position {
font-size: 15px;
}
.ct-testimonial-carousel3 .ct-testimonial-main .grid-item-inner {
max-width: 360px;
margin: 0 auto;
}
.ct-testimonial-carousel3 .ct-testimonial-main .owl-nav {
margin: 0;
position: absolute;
opacity: 0;
visibility: hidden;
}
.ct-client-carousel .ct-client-item {
text-align: center;
}
.ct-client-carousel .ct-client-item img {
display: inline-block;
width: inherit;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
}
.ct-client-carousel.style2 .ct-client-item a {
display: block;
background-color: #fff;
padding: 30px;
-webkit-border-radius: 14px;
-khtml-border-radius: 14px;
-moz-border-radius: 14px;
-ms-border-radius: 14px;
-o-border-radius: 14px;
border-radius: 14px;
-webkit-box-shadow: 0 0 40px rgba(115, 115, 115, 0.19);
-khtml-box-shadow: 0 0 40px rgba(115, 115, 115, 0.19);
-moz-box-shadow: 0 0 40px rgba(115, 115, 115, 0.19);
-ms-box-shadow: 0 0 40px rgba(115, 115, 115, 0.19);
-o-box-shadow: 0 0 40px rgba(115, 115, 115, 0.19);
box-shadow: 0 0 40px rgba(115, 115, 115, 0.19);
}
.ct-client-carousel.style2 .ct-client-item a:hover {
-webkit-transform: translate(0, -5px);
-khtml-transform: translate(0, -5px);
-moz-transform: translate(0, -5px);
-ms-transform: translate(0, -5px);
-o-transform: translate(0, -5px);
transform: translate(0, -5px);
}
.ct-client-carousel.style2 .owl-stage-outer {
padding: 50px 40px;
margin: 0 -40px;
}
.ct-client-carousel.style2 .owl-stage-outer .owl-item {
opacity: 0;
-webkit-transition: all 180ms linear 0ms;
-khtml-transition: all 180ms linear 0ms;
-moz-transition: all 180ms linear 0ms;
-ms-transition: all 180ms linear 0ms;
-o-transition: all 180ms linear 0ms;
transition: all 180ms linear 0ms;
}
.ct-client-carousel.style2 .owl-stage-outer .owl-item.active {
opacity: 1;
}
.ct-client-carousel .owl-stage {
display: flex;
align-items: center;
flex-wrap: wrap;
}
.ct-contact-form-default p {
margin-bottom: 0;
}
.ct-contact-form-default .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-textarea {
height: 100px;
}
.ct-contact-form-default .wpcf7-form-control.wpcf7-submit {
width: 100%;
margin-bottom: 0;
}
.ct-contact-form-default .wpcf7-form-control.wpcf7-submit:hover {
background-color: #b50d1c;
background-image: -webkit-gradient(linear, left top, right top, from(#b50d1c), to(#f00));
background-image: -webkit-linear-gradient(left, #b50d1c, #f00);
background-image: -moz-linear-gradient(left, #b50d1c, #f00);
background-image: -ms-linear-gradient(left, #b50d1c, #f00);
background-image: -o-linear-gradient(left, #b50d1c, #f00);
background-image: linear-gradient(left, #b50d1c, #f00);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#b50d1c', endColorStr='#f00', gradientType='1');
}
.ct-contact-form-default.style-light .wpcf7-form-control:not(.wpcf7-submit) {
background-color: transparent;
color: #f9f8fc;
padding-left: 0;
padding-right: 0;
-webkit-border-radius: 0px;
-khtml-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
border-width: 0 0 1px 0px;
border-color: rgba(255, 255, 255, 0.6);
font-size: 15px;
font-family: 'Poppins', sans-serif;
}
.ct-contact-form-default.style-light .wpcf7-form-control:not(.wpcf7-submit):focus {
border-color: #fff;
}
.ct-contact-form-default.style-light .wpcf7-form-control.wpcf7-textarea {
height: 122px;
}
.ct-contact-form-default.style-light .wpcf7-form-control.wpcf7-submit {
margin-top: 12px;
}
.ct-contact-form-default.style-light .wpcf7-submit {
margin-top: 12px;
}
.ct-contact-form-default.style-light .wpcf7-form-control-wrap {
margin-bottom: 27px;
}
.ct-contact-form-default.style-light .nice-select:after {
color: #fff;
right: 0;
}
.ct-contact-form-default.style-startup .input-filled {
margin-bottom: 20px;
}
.ct-contact-form-default.style-startup .input-filled > label {
font-size: 17px;
color: #000;
font-family: 'Poppins', sans-serif;
margin-bottom: 6px;
display: inline-block;
}
@media screen and (max-width: 991px) {
.ct-contact-form-default.style-startup .input-filled > label {
font-size: 13px;
}
}
.ct-contact-form-default.style-startup .input-filled > label i {
font-style: normal;
background-color: #f90244;
background-image: -webkit-gradient(linear, left top, right top, from(#f90244), to(#b50d1c));
background-image: -webkit-linear-gradient(left, #f90244, #b50d1c);
background-image: -moz-linear-gradient(left, #f90244, #b50d1c);
background-image: -ms-linear-gradient(left, #f90244, #b50d1c);
background-image: -o-linear-gradient(left, #f90244, #b50d1c);
background-image: linear-gradient(left, #f90244, #b50d1c);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f90244', endColorStr='#b50d1c', gradientType='1');
margin-left: 8px;
}
.ct-contact-form-default.style-startup .wpcf7-form-control:not(.wpcf7-submit) {
color: #6f6f6f;
font-family: 'Poppins', sans-serif;
border-color: #d5dce8;
height: 51px;
}
.ct-contact-form-default.style-startup .wpcf7-form-control:not(.wpcf7-submit):focus {
border-color: #b50d1c;
}
.ct-contact-form-default.style-startup .wpcf7-form-control.wpcf7-textarea {
height: 175px;
}
.ct-contact-form-default.style-startup .wpcf7-submit {
line-height: 52px;
padding: 0 48px;
-webkit-box-shadow: 0 8px 10px rgba(12, 12, 12, 0.19) !important;
-khtml-box-shadow: 0 8px 10px rgba(12, 12, 12, 0.19) !important;
-moz-box-shadow: 0 8px 10px rgba(12, 12, 12, 0.19) !important;
-ms-box-shadow: 0 8px 10px rgba(12, 12, 12, 0.19) !important;
-o-box-shadow: 0 8px 10px rgba(12, 12, 12, 0.19) !important;
box-shadow: 0 8px 10px rgba(12, 12, 12, 0.19) !important;
}
.ct-contact-form-default.style-startup .nice-select span.current {
line-height: 49px;
}
.ct-contact-form-default.style-startup .nice-select .list .selected, .ct-contact-form-default.style-startup .nice-select .option:hover {
color: #b50d1c;
}
.ct-blog-carousel .item-featured, .ct-grid-blog-layout1 .item-featured {
-webkit-border-radius: 7px 7px 0 0;
-khtml-border-radius: 7px 7px 0 0;
-moz-border-radius: 7px 7px 0 0;
-ms-border-radius: 7px 7px 0 0;
-o-border-radius: 7px 7px 0 0;
border-radius: 7px 7px 0 0;
position: relative;
overflow: hidden;
}
.ct-blog-carousel .item-featured img, .ct-grid-blog-layout1 .item-featured img {
-webkit-border-radius: 7px 7px 0 0;
-khtml-border-radius: 7px 7px 0 0;
-moz-border-radius: 7px 7px 0 0;
-ms-border-radius: 7px 7px 0 0;
-o-border-radius: 7px 7px 0 0;
border-radius: 7px 7px 0 0;
}
.ct-blog-carousel .item-featured a.overlay:before, .ct-grid-blog-layout1 .item-featured a.overlay:before, .ct-blog-carousel .item-featured a.overlay:after, .ct-grid-blog-layout1 .item-featured a.overlay:after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
}
.ct-blog-carousel .item-featured a.overlay:before, .ct-grid-blog-layout1 .item-featured a.overlay:before {
z-index: 1;
background-color: rgba(0, 0, 0, 0.2);
}
.ct-blog-carousel .item-featured a.overlay:after, .ct-grid-blog-layout1 .item-featured a.overlay:after {
z-index: 2;
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0)));
background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
background-image: -ms-linear-gradient(bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
background-image: linear-gradient(bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='rgba(0, 0, 0, 0.6)', endColorStr='rgba(0, 0, 0, 0)');
}
.ct-blog-carousel .item-body, .ct-grid-blog-layout1 .item-body {
padding: 29px 32px 38px 29px;
}
.ct-blog-carousel .item-meta, .ct-grid-blog-layout1 .item-meta {
margin-bottom: 10px;
}
.ct-blog-carousel .item-title, .ct-grid-blog-layout1 .item-title {
font-size: 24px;
line-height: 1.5;
color: #252a37;
}
.ct-blog-carousel .item-title a, .ct-grid-blog-layout1 .item-title a {
color: inherit;
}
.ct-blog-carousel .item-title a:hover, .ct-grid-blog-layout1 .item-title a:hover {
color: #f00;
}
.ct-blog-carousel .item-readmore, .ct-grid-blog-layout1 .item-readmore {
position: absolute;
bottom: 0px;
left: 0;
right: 0;
text-align: center;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
opacity: 0;
visibility: hidden;
}
.ct-blog-carousel .ct-carousel-item, .ct-grid-blog-layout1 .ct-carousel-item {
height: 100%;
padding: 30px 0 50px 0;
}
.ct-blog-carousel .ct-carousel-item .grid-item-inner, .ct-grid-blog-layout1 .ct-carousel-item .grid-item-inner {
background-color: #fff;
-webkit-border-radius: 7px;
-khtml-border-radius: 7px;
-moz-border-radius: 7px;
-ms-border-radius: 7px;
-o-border-radius: 7px;
border-radius: 7px;
height: 100%;
position: relative;
}
.ct-blog-carousel .ct-video-button, .ct-grid-blog-layout1 .ct-video-button {
position: absolute;
top: 0;
z-index: 99;
left: 0;
right: 0;
bottom: 0;
margin: auto;
background-color: #f00;
color: #fff;
}
.ct-blog-carousel .owl-stage-outer, .ct-grid-blog-layout1 .owl-stage-outer {
margin: 0 -20px;
padding: 0 20px;
}
.ct-blog-carousel .owl-stage-outer .owl-item.active .ct-carousel-item .grid-item-inner, .ct-grid-blog-layout1 .owl-stage-outer .owl-item.active .ct-carousel-item .grid-item-inner {
-webkit-box-shadow: 0 2px 15px rgba(34, 34, 34, 0.17);
-khtml-box-shadow: 0 2px 15px rgba(34, 34, 34, 0.17);
-moz-box-shadow: 0 2px 15px rgba(34, 34, 34, 0.17);
-ms-box-shadow: 0 2px 15px rgba(34, 34, 34, 0.17);
-o-box-shadow: 0 2px 15px rgba(34, 34, 34, 0.17);
box-shadow: 0 2px 15px rgba(34, 34, 34, 0.17);
}
.ct-blog-carousel .owl-stage-outer .owl-stage, .ct-grid-blog-layout1 .owl-stage-outer .owl-stage {
display: flex;
}
.ct-blog-carousel .grid-item-inner:hover .item-title a, .ct-grid-blog-layout1 .grid-item-inner:hover .item-title a {
color: #f00;
}
.ct-blog-carousel .grid-item-inner:hover .item-readmore, .ct-grid-blog-layout1 .grid-item-inner:hover .item-readmore {
-webkit-animation: bounceReadMore 0.6s ease-in-out both;
-moz-animation: bounceReadMore 0.6s ease-in-out both;
-o-animation: bounceReadMore 0.6s ease-in-out both;
animation: bounceReadMore 0.6s ease-in-out both;
bottom: -24px;
opacity: 1;
visibility: visible;
}
.ct-blog-carousel .grid-item-inner:hover .item-featured a.ct-video-button, .ct-grid-blog-layout1 .grid-item-inner:hover .item-featured a.ct-video-button, .ct-blog-carousel .grid-item-inner:hover .item-featured a:before, .ct-grid-blog-layout1 .grid-item-inner:hover .item-featured a:before, .ct-blog-carousel .grid-item-inner:hover .item-featured a:after, .ct-grid-blog-layout1 .grid-item-inner:hover .item-featured a:after {
opacity: 1;
}
@media screen and (max-width: 991px) {
body .ct-blog-carousel .grid-item-inner .item-readmore, body .ct-grid-blog-layout1 .grid-item-inner .item-readmore {
bottom: -24px;
opacity: 1;
visibility: visible;
margin: 0 !important;
}
}
.ct-grid-blog-layout1 .grid-item-inner {
-webkit-box-shadow: 0 2px 15px rgba(34, 34, 34, 0.17);
-khtml-box-shadow: 0 2px 15px rgba(34, 34, 34, 0.17);
-moz-box-shadow: 0 2px 15px rgba(34, 34, 34, 0.17);
-ms-box-shadow: 0 2px 15px rgba(34, 34, 34, 0.17);
-o-box-shadow: 0 2px 15px rgba(34, 34, 34, 0.17);
box-shadow: 0 2px 15px rgba(34, 34, 34, 0.17);
-webkit-border-radius: 7px;
-khtml-border-radius: 7px;
-moz-border-radius: 7px;
-ms-border-radius: 7px;
-o-border-radius: 7px;
border-radius: 7px;
margin-bottom: 44px;
}
.ct-showcase .ct-showcase-image {
position: relative;
-webkit-border-radius: 14px;
-khtml-border-radius: 14px;
-moz-border-radius: 14px;
-ms-border-radius: 14px;
-o-border-radius: 14px;
border-radius: 14px;
-webkit-box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
-khtml-box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
-ms-box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
-o-box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
}
.ct-showcase .ct-showcase-image img {
width: 100%;
}
.ct-showcase .ct-showcase-image a {
display: block;
-webkit-border-radius: 14px;
-khtml-border-radius: 14px;
-moz-border-radius: 14px;
-ms-border-radius: 14px;
-o-border-radius: 14px;
border-radius: 14px;
position: relative;
overflow: hidden;
}
.ct-showcase .ct-showcase-image a:before, .ct-showcase .ct-showcase-image a:after {
content: "";
background: #fff;
height: 0;
width: 0;
z-index: 1;
position: absolute;
-webkit-transition-duration: 1.1s;
-o-transition-duration: 1.1s;
transition-duration: 1.1s;
}
.ct-showcase .ct-showcase-image a:before {
right: 0;
opacity: 1;
top: 0;
}
.ct-showcase .ct-showcase-image a:after {
bottom: 0;
opacity: 0.7;
left: 0;
}
.ct-showcase .ct-showcase-image a:hover:before, .ct-showcase .ct-showcase-image a:hover:after {
height: 100%;
opacity: 0;
width: 100%;
}
.ct-showcase .ct-showcase-title {
font-size: 18px;
font-weight: 600;
text-align: center;
margin: 37px 0 0;
}
.ct-showcase .ct-showcase-title a {
color: inherit;
}
.ct-showcase .ct-showcase-title span {
font-size: 10px;
background-color: #f00;
background-image: -webkit-gradient(linear, left top, right top, from(#f00), to(#b50d1c));
background-image: -webkit-linear-gradient(left, #f00, #b50d1c);
background-image: -moz-linear-gradient(left, #f00, #b50d1c);
background-image: -ms-linear-gradient(left, #f00, #b50d1c);
background-image: -o-linear-gradient(left, #f00, #b50d1c);
background-image: linear-gradient(left, #f00, #b50d1c);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f00', endColorStr='#b50d1c', gradientType='1');
border-radius: 22px;
color: #fff;
padding: 0 8px;
line-height: 22px;
display: inline-block;
font-weight: 500;
margin-left: 2px;
vertical-align: middle;
}
.ct-textbox-carousel {
max-width: 580px;
background-color: rgba(0, 0, 0, 0.7);
padding: 40px;
}
@media screen and (max-width: 767px) {
.ct-textbox-carousel {
padding: 30px;
max-width: 480px;
}
}
.ct-textbox-carousel .ct-textbox-title {
font-size: 60px;
line-height: 1.2;
font-weight: 300;
color: #fff;
margin-bottom: 19px;
}
.ct-textbox-carousel .ct-textbox-title cite {
font-weight: 500;
font-style: normal;
}
@media screen and (max-width: 767px) {
.ct-textbox-carousel .ct-textbox-title {
font-size: 42px;
}
}
@media screen and (max-width: 575px) {
.ct-textbox-carousel .ct-textbox-title {
font-size: 30px;
}
.ct-textbox-carousel .ct-textbox-title br {
display: none;
}
}
.ct-textbox-carousel .ct-textbox-description {
font-size: 19px;
color: #fff;
}
@media screen and (max-width: 575px) {
.ct-textbox-carousel .ct-textbox-description {
font-size: 16px;
}
}
.ct-textbox-carousel .ct-textbox-button {
padding-top: 40px;
}
.ct-textbox-carousel .owl-dots {
justify-content: left;
margin-top: 35px;
padding: 0;
}
.ct-textbox-carousel .owl-dots .owl-dot {
height: 15px;
width: 15px;
background-color: #fff;
background-image: none;
-webkit-border-radius: 15px;
-khtml-border-radius: 15px;
-moz-border-radius: 15px;
-ms-border-radius: 15px;
-o-border-radius: 15px;
border-radius: 15px;
margin: 0 5px;
}
.ct-textbox-carousel .owl-dots .owl-dot.active {
background-color: #f00;
}
.ct-angled-wrapper {
left: 0;
position: absolute !important;
right: 0;
width: 100%;
z-index: 99 !important;
}
.ct-angled-wrapper svg {
position: absolute;
left: 0;
right: 0;
}
.ct-angled-wrapper svg.angle-style1 {
-webkit-transform: scaleX(-1);
-khtml-transform: scaleX(-1);
-moz-transform: scaleX(-1);
-ms-transform: scaleX(-1);
-o-transform: scaleX(-1);
transform: scaleX(-1);
}
.ct-angled-wrapper.angled-top {
top: 0;
}
.ct-angled-wrapper.angled-top svg {
-webkit-transform: rotate(180deg) scaleX(-1);
-khtml-transform: rotate(180deg) scaleX(-1);
-moz-transform: rotate(180deg) scaleX(-1);
-ms-transform: rotate(180deg) scaleX(-1);
-o-transform: rotate(180deg) scaleX(-1);
transform: rotate(180deg) scaleX(-1);
top: 0;
}
.ct-angled-wrapper.angled-bottom {
bottom: 0;
}
.ct-angled-wrapper.angled-bottom svg {
bottom: -1px;
}
@media screen and (max-width: 767px) {
.ct-angled-wrapper.angled-top {
top: -1px;
}
.ct-angled-wrapper.angled-bottom {
bottom: -1px;
}
}
.ct-image-section {
position: absolute !important;
z-index: -1;
}
.ct-image-section.slide-based {
z-index: inherit;
}
@media (min-width: 768px) and (max-width: 991px) {
.ct-image-section.hidde-md {
display: none;
}
}
@media screen and (max-width: 767px) {
.ct-image-section.hidde-sm {
display: none;
}
}
.ct-single-image {
overflow: hidden;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
}
.ct-single-image .block-revealer-content {
position: relative;
}
.ct-single-image .block-revealer-content a {
display: block;
}
.ct-single-image .block-revealer-content img, .ct-single-image .block-revealer-content .bg-image {
width: 100%;
-webkit-border-radius: 2px;
-khtml-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
}
.ct-single-image.image-border img {
border: 1px solid #e9f0fb;
}
.ct-single-image .bg-image {
width: 100%;
height: 300px;
}
.ct-single-image.img-style2 img {
border: 11px solid #fff;
-webkit-border-radius: 115px 0px 50px 0px;
-khtml-border-radius: 115px 0px 50px 0px;
-moz-border-radius: 115px 0px 50px 0px;
-ms-border-radius: 115px 0px 50px 0px;
-o-border-radius: 115px 0px 50px 0px;
border-radius: 115px 0px 50px 0px;
}
@media screen and (min-width: 1200px) {
.ct-single-image.image-contact {
margin-left: -50px;
}
}
.image-block-revealers {
display: inline-block;
vertical-align: top;
position: relative;
overflow: hidden;
width: 100%;
}
.image-block-revealers .block-revealer-element {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
opacity: 0;
}
.ct-carousel-portfolio1 .portfolio-title {
font-size: 30px;
color: #162171;
font-weight: 700;
margin-bottom: 6px;
}
@media screen and (max-width: 1400px) {
.ct-carousel-portfolio1 .portfolio-title {
font-size: 24px;
}
}
.ct-carousel-portfolio1 .portfolio-title a {
color: inherit;
}
.ct-carousel-portfolio1 .portfolio-title a:hover {
color: #f00;
}
.ct-carousel-portfolio1 .portfolio-subtitle {
font-family: 'Poppins', sans-serif;
color: #3a505f;
}
.ct-carousel-portfolio1 .portfolio-more a {
display: inline-block;
font-family: 'Poppins', sans-serif;
font-size: 30px;
font-weight: 600;
color: #fff;
background-color: #b50d1c;
background-image: -webkit-gradient(linear, left top, right top, from(#b50d1c), to(#f90244));
background-image: -webkit-linear-gradient(left, #b50d1c, #f90244);
background-image: -moz-linear-gradient(left, #b50d1c, #f90244);
background-image: -ms-linear-gradient(left, #b50d1c, #f90244);
background-image: -o-linear-gradient(left, #b50d1c, #f90244);
background-image: linear-gradient(left, #b50d1c, #f90244);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#b50d1c', endColorStr='#f90244', gradientType='1');
-webkit-box-shadow: 0 7px 18px rgba(249, 2, 68, 0.39);
-khtml-box-shadow: 0 7px 18px rgba(249, 2, 68, 0.39);
-moz-box-shadow: 0 7px 18px rgba(249, 2, 68, 0.39);
-ms-box-shadow: 0 7px 18px rgba(249, 2, 68, 0.39);
-o-box-shadow: 0 7px 18px rgba(249, 2, 68, 0.39);
box-shadow: 0 7px 18px rgba(249, 2, 68, 0.39);
height: 60px;
width: 60px;
line-height: 60px;
text-align: center;
-webkit-border-radius: 60px;
-khtml-border-radius: 60px;
-moz-border-radius: 60px;
-ms-border-radius: 60px;
-o-border-radius: 60px;
border-radius: 60px;
}
.ct-carousel-portfolio1 .portfolio-meta {
margin-right: 20px;
flex-grow: 1;
padding: 17px 0;
}
.ct-carousel-portfolio1 .portfolio-holder {
padding: 16px 38px;
background-color: #fff;
position: absolute;
bottom: 32px;
left: 32px;
right: 32px;
display: flex;
flex-wrap: wrap;
align-items: center;
opacity: 0;
-webkit-transform: translateY(-60px);
-khtml-transform: translateY(-60px);
-moz-transform: translateY(-60px);
-ms-transform: translateY(-60px);
-o-transform: translateY(-60px);
transform: translateY(-60px);
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
}
@media screen and (max-width: 1400px) {
.ct-carousel-portfolio1 .portfolio-holder {
padding-left: 30px;
padding-right: 30px;
}
}
@media  {
.ct-carousel-portfolio1 .portfolio-holder {
padding: 30px 20px;
}
}
.ct-carousel-portfolio1 .ct-portfolio-item-inner {
position: relative;
overflow: hidden;
}
.ct-carousel-portfolio1 .ct-portfolio-item-inner:hover .portfolio-holder {
opacity: 1;
-webkit-transform: translateY(0px);
-khtml-transform: translateY(0px);
-moz-transform: translateY(0px);
-ms-transform: translateY(0px);
-o-transform: translateY(0px);
transform: translateY(0px);
}
.ct-contact-info {
background-color: #fff;
position: absolute;
right: 85px;
bottom: 100px;
padding: 41px 45px 20px 45px;
width: 425px;
-webkit-box-shadow: 0 6px 18px rgba(22, 33, 113, 0.39);
-khtml-box-shadow: 0 6px 18px rgba(22, 33, 113, 0.39);
-moz-box-shadow: 0 6px 18px rgba(22, 33, 113, 0.39);
-ms-box-shadow: 0 6px 18px rgba(22, 33, 113, 0.39);
-o-box-shadow: 0 6px 18px rgba(22, 33, 113, 0.39);
box-shadow: 0 6px 18px rgba(22, 33, 113, 0.39);
font-size: 16px;
line-height: 29px;
color: #3a505f;
font-family: 'Poppins', sans-serif;
}
@media screen and (max-width: 991px) {
.ct-contact-info {
right: 20px;
bottom: 40px;
font-size: 15px;
line-height: 28px;
padding: 31px 30px 20px 30px;
width: 290px;
}
}
@media screen and (max-width: 767px) {
.ct-contact-info {
right: auto;
left: 20px;
}
}
.ct-contact-info h3 {
font-size: 28px;
margin-bottom: 19px;
color: #162171;
font-weight: 700;
}
@media screen and (max-width: 991px) {
.ct-contact-info h3 {
font-size: 24px;
}
}
.ct-contact-info ul {
list-style: none;
margin: 0 0 20px;
}
.ct-contact-info ul li {
padding: 0;
display: block;
}
.ct-contact-info ul li label {
font-weight: 600;
color: #162171;
}
.ct-contact-info ul li a {
color: inherit;
word-break: break-all;
}
.ct-contact-info ul li a:hover {
color: #f00;
}
.el-inline {
display: inline-block;
vertical-align: top;
}
.ct-text-block1.copyright a {
color: inherit;
}
.ct-text-block1.copyright a:hover {
color: #f00;
}
.ct-text-block1 p:last-child {
margin-bottom: 0;
}
.ct-logo-footer img {
max-height: 39px;
}
.ct-icon1 a {
position: relative;
font-size: 17px;
color: #fff;
height: 33px;
width: 33px;
line-height: 33px;
display: inline-block;
z-index: 1;
margin: 10px 3px;
text-align: center;
}
.ct-icon1 a:before, .ct-icon1 a:after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
-webkit-border-radius: 33px;
-khtml-border-radius: 33px;
-moz-border-radius: 33px;
-ms-border-radius: 33px;
-o-border-radius: 33px;
border-radius: 33px;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
z-index: -1;
}
.ct-icon1 a:before {
background-color: #3e3e42;
}
.ct-icon1 a:after {
background-color: #b50d1c;
background-image: -webkit-gradient(linear, left top, right top, from(#b50d1c), to(#f90244));
background-image: -webkit-linear-gradient(left, #b50d1c, #f90244);
background-image: -moz-linear-gradient(left, #b50d1c, #f90244);
background-image: -ms-linear-gradient(left, #b50d1c, #f90244);
background-image: -o-linear-gradient(left, #b50d1c, #f90244);
background-image: linear-gradient(left, #b50d1c, #f90244);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#b50d1c', endColorStr='#f90244', gradientType='1');
opacity: 0;
}
.ct-icon1 a:hover {
color: #fff;
}
.ct-icon1 a:hover:before {
opacity: 0;
}
.ct-icon1 a:hover:after {
opacity: 1;
}
.ct-icon2 {
margin: 0;
list-style: none;
}
.ct-icon2 a {
display: inline-block;
}
.ct-icon2 a i {
height: 29px;
width: 29px;
line-height: 29px;
display: inline-block;
-webkit-border-radius: 29px;
-khtml-border-radius: 29px;
-moz-border-radius: 29px;
-ms-border-radius: 29px;
-o-border-radius: 29px;
border-radius: 29px;
font-size: 17px;
color: #f00;
background-color: #fff;
text-align: center;
margin-right: 4px;
margin-bottom: 8px;
}
.ct-icon2 a i.fa-facebook-f {
color: #16599b;
}
.ct-icon2 a i.fa-dribbble {
color: #eb568f;
}
.ct-icon2 a i.fa-twitter {
color: #03a9f4;
}
.ct-icon2 a i.fa-behance {
color: #0d6fff;
}
.ct-icon2 a:hover {
-webkit-transform: translateY(-4px);
-khtml-transform: translateY(-4px);
-moz-transform: translateY(-4px);
-ms-transform: translateY(-4px);
-o-transform: translateY(-4px);
transform: translateY(-4px);
}
.ct-wg-title {
font-size: 24px;
font-weight: 600;
margin-bottom: 28px;
display: flex;
flex-wrap: nowrap;
align-items: center;
}
.ct-wg-title span {
display: inline-block;
margin-right: 20px;
}
.ct-wg-title i {
width: 100%;
height: 1px;
background-color: rgba(233, 234, 238, 0.15);
display: inline-block;
}
.vc_wp_custommenu, #content .vc_wp_custommenu {
margin-bottom: 0 !important;
}
.vc_wp_custommenu.style-default .widget_nav_menu ul.menu li a, #content .vc_wp_custommenu.style-default .widget_nav_menu ul.menu li a {
border: none;
-webkit-border-radius: 1px;
-khtml-border-radius: 1px;
-moz-border-radius: 1px;
-ms-border-radius: 1px;
-o-border-radius: 1px;
border-radius: 1px;
margin-bottom: 12px;
z-index: 1;
font-size: 18px;
font-weight: 600;
color: #1d2f3c;
padding: 18px 35px;
}
.vc_wp_custommenu.style-default .widget_nav_menu ul.menu li a:before, #content .vc_wp_custommenu.style-default .widget_nav_menu ul.menu li a:before, .vc_wp_custommenu.style-default .widget_nav_menu ul.menu li a:after, #content .vc_wp_custommenu.style-default .widget_nav_menu ul.menu li a:after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
}
.vc_wp_custommenu.style-default .widget_nav_menu ul.menu li a:before, #content .vc_wp_custommenu.style-default .widget_nav_menu ul.menu li a:before {
background-color: #fff;
border: 1px solid #d7d7d7;
}
.vc_wp_custommenu.style-default .widget_nav_menu ul.menu li a:after, #content .vc_wp_custommenu.style-default .widget_nav_menu ul.menu li a:after {
background-color: #b50d1c;
background-image: -webkit-gradient(linear, left top, right top, from(#b50d1c), to(#f90244));
background-image: -webkit-linear-gradient(left, #b50d1c, #f90244);
background-image: -moz-linear-gradient(left, #b50d1c, #f90244);
background-image: -ms-linear-gradient(left, #b50d1c, #f90244);
background-image: -o-linear-gradient(left, #b50d1c, #f90244);
background-image: linear-gradient(left, #b50d1c, #f90244);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#b50d1c', endColorStr='#f90244', gradientType='1');
opacity: 0;
}
.vc_wp_custommenu.style-default .widget_nav_menu ul.menu li a i, #content .vc_wp_custommenu.style-default .widget_nav_menu ul.menu li a i {
position: absolute;
top: 50%;
right: 32px;
-webkit-transform: translate(0, -50%);
-khtml-transform: translate(0, -50%);
-moz-transform: translate(0, -50%);
-ms-transform: translate(0, -50%);
-o-transform: translate(0, -50%);
transform: translate(0, -50%);
}
.vc_wp_custommenu.style-default .widget_nav_menu ul.menu li.current-menu-item > a, #content .vc_wp_custommenu.style-default .widget_nav_menu ul.menu li.current-menu-item > a, .vc_wp_custommenu.style-default .widget_nav_menu ul.menu li.current-cat > a, #content .vc_wp_custommenu.style-default .widget_nav_menu ul.menu li.current-cat > a, .vc_wp_custommenu.style-default .widget_nav_menu ul.menu li.current-cat-parent > a, #content .vc_wp_custommenu.style-default .widget_nav_menu ul.menu li.current-cat-parent > a, .vc_wp_custommenu.style-default .widget_nav_menu ul.menu li > a:hover, #content .vc_wp_custommenu.style-default .widget_nav_menu ul.menu li > a:hover {
background-color: transparent;
background-image: none;
color: #fff;
text-fill-color: #fff;
-o-text-fill-color: #fff;
-ms-text-fill-color: #fff;
-moz-text-fill-color: #fff;
-webkit-text-fill-color: #fff;
background-clip: initial;
-o-background-clip: initial;
-ms-background-clip: initial;
-moz-background-clip: initial;
-webkit-background-clip: initial;
}
.vc_wp_custommenu.style-default .widget_nav_menu ul.menu li.current-menu-item > a:before, #content .vc_wp_custommenu.style-default .widget_nav_menu ul.menu li.current-menu-item > a:before, .vc_wp_custommenu.style-default .widget_nav_menu ul.menu li.current-cat > a:before, #content .vc_wp_custommenu.style-default .widget_nav_menu ul.menu li.current-cat > a:before, .vc_wp_custommenu.style-default .widget_nav_menu ul.menu li.current-cat-parent > a:before, #content .vc_wp_custommenu.style-default .widget_nav_menu ul.menu li.current-cat-parent > a:before, .vc_wp_custommenu.style-default .widget_nav_menu ul.menu li > a:hover:before, #content .vc_wp_custommenu.style-default .widget_nav_menu ul.menu li > a:hover:before {
opacity: 1;
}
.vc_wp_custommenu.style-default .widget_nav_menu ul.menu li.current-menu-item > a:after, #content .vc_wp_custommenu.style-default .widget_nav_menu ul.menu li.current-menu-item > a:after, .vc_wp_custommenu.style-default .widget_nav_menu ul.menu li.current-cat > a:after, #content .vc_wp_custommenu.style-default .widget_nav_menu ul.menu li.current-cat > a:after, .vc_wp_custommenu.style-default .widget_nav_menu ul.menu li.current-cat-parent > a:after, #content .vc_wp_custommenu.style-default .widget_nav_menu ul.menu li.current-cat-parent > a:after, .vc_wp_custommenu.style-default .widget_nav_menu ul.menu li > a:hover:after, #content .vc_wp_custommenu.style-default .widget_nav_menu ul.menu li > a:hover:after {
opacity: 1;
}
.vc_wp_custommenu.tow-col-light ul.menu, #content .vc_wp_custommenu.tow-col-light ul.menu {
display: flex;
flex-wrap: wrap;
align-items: center;
}
.vc_wp_custommenu.tow-col-light ul.menu li, #content .vc_wp_custommenu.tow-col-light ul.menu li {
margin-bottom: 12px;
}
.vc_wp_custommenu.tow-col-light ul.menu li a, #content .vc_wp_custommenu.tow-col-light ul.menu li a {
color: #9d9d9d;
position: relative;
font-size: 14px;
padding-left: 16px;
font-family: 'Poppins', sans-serif;
}
.vc_wp_custommenu.tow-col-light ul.menu li a:before, #content .vc_wp_custommenu.tow-col-light ul.menu li a:before {
content: "\f105";
font-family: "Font Awesome 5 Pro";
font-weight: 900;
margin-right: 8px;
position: absolute;
top: 50%;
left: 0;
-webkit-transform: translate(0, -50%);
-khtml-transform: translate(0, -50%);
-moz-transform: translate(0, -50%);
-ms-transform: translate(0, -50%);
-o-transform: translate(0, -50%);
transform: translate(0, -50%);
}
.vc_wp_custommenu.tow-col-light ul.menu li a:after, #content .vc_wp_custommenu.tow-col-light ul.menu li a:after {
content: '';
position: absolute;
bottom: 0;
right: 0;
left: 15px;
height: 1px;
background-color: #fff;
transform-origin: right center;
-webkit-transform-origin: right center;
-webkit-transform: scale(0, 1);
-khtml-transform: scale(0, 1);
-moz-transform: scale(0, 1);
-ms-transform: scale(0, 1);
-o-transform: scale(0, 1);
transform: scale(0, 1);
-webkit-transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
-khtml-transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
-moz-transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
-ms-transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
-o-transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
}
.vc_wp_custommenu.tow-col-light ul.menu li:hover > a, #content .vc_wp_custommenu.tow-col-light ul.menu li:hover > a, .vc_wp_custommenu.tow-col-light ul.menu li.current_page_item > a, #content .vc_wp_custommenu.tow-col-light ul.menu li.current_page_item > a, .vc_wp_custommenu.tow-col-light ul.menu li.current-menu-item > a, #content .vc_wp_custommenu.tow-col-light ul.menu li.current-menu-item > a, .vc_wp_custommenu.tow-col-light ul.menu li.current_page_ancestor > a, #content .vc_wp_custommenu.tow-col-light ul.menu li.current_page_ancestor > a, .vc_wp_custommenu.tow-col-light ul.menu li.current-menu-ancestor > a, #content .vc_wp_custommenu.tow-col-light ul.menu li.current-menu-ancestor > a {
margin-left: 8px;
color: #fff;
}
.vc_wp_custommenu.tow-col-light ul.menu li:hover > a:after, #content .vc_wp_custommenu.tow-col-light ul.menu li:hover > a:after, .vc_wp_custommenu.tow-col-light ul.menu li.current_page_item > a:after, #content .vc_wp_custommenu.tow-col-light ul.menu li.current_page_item > a:after, .vc_wp_custommenu.tow-col-light ul.menu li.current-menu-item > a:after, #content .vc_wp_custommenu.tow-col-light ul.menu li.current-menu-item > a:after, .vc_wp_custommenu.tow-col-light ul.menu li.current_page_ancestor > a:after, #content .vc_wp_custommenu.tow-col-light ul.menu li.current_page_ancestor > a:after, .vc_wp_custommenu.tow-col-light ul.menu li.current-menu-ancestor > a:after, #content .vc_wp_custommenu.tow-col-light ul.menu li.current-menu-ancestor > a:after {
transform-origin: left center;
-webkit-transform-origin: left center;
-webkit-transform: scale(1, 1);
-khtml-transform: scale(1, 1);
-moz-transform: scale(1, 1);
-ms-transform: scale(1, 1);
-o-transform: scale(1, 1);
transform: scale(1, 1);
}
.vc_wp_custommenu.tow-col-light ul.menu li:last-child, #content .vc_wp_custommenu.tow-col-light ul.menu li:last-child {
margin-bottom: 0;
}
.vc_wp_custommenu.tow-col-light ul.menu > li, #content .vc_wp_custommenu.tow-col-light ul.menu > li {
width: 50%;
}
@media screen and (max-width: 575px) {
.vc_wp_custommenu.tow-col-light ul.menu > li, #content .vc_wp_custommenu.tow-col-light ul.menu > li {
width: 100%;
}
}
.ct-newsletter-layout1 form.newsletter {
position: relative;
}
.ct-newsletter-layout1 .tnp-field-email .tnp-email {
border: none;
background-color: rgba(255, 255, 255, 0.23);
-webkit-border-radius: 0px;
-khtml-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
height: 46px;
font-size: 12px;
font-style: italic;
font-weight: 400;
color: #fff;
font-family: 'Poppins', sans-serif;
}
.ct-newsletter-layout1 .tnp-field-button {
margin-bottom: 0;
height: 46px;
width: 62px;
position: absolute;
bottom: 0;
right: 0;
overflow: hidden;
}
.ct-newsletter-layout1 .tnp-field-button:before, .ct-newsletter-layout1 .tnp-field-button:after {
font-weight: 400;
font-family: "Font Awesome 5 Pro";
height: 46px;
width: 62px;
font-size: 14px;
position: absolute;
bottom: 0;
right: 0;
color: #fff;
text-align: center;
line-height: 46px;
z-index: 1;
}
.ct-newsletter-layout1 .tnp-field-button:before {
content: '';
background-color: #b50d1c 50%;
background-image: -webkit-gradient(linear, left top, right top, from(#b50d1c 50%), to(#f90244));
background-image: -webkit-linear-gradient(left, #b50d1c 50%, #f90244);
background-image: -moz-linear-gradient(left, #b50d1c 50%, #f90244);
background-image: -ms-linear-gradient(left, #b50d1c 50%, #f90244);
background-image: -o-linear-gradient(left, #b50d1c 50%, #f90244);
background-image: linear-gradient(left, #b50d1c 50%, #f90244);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#b50d1c 50%', endColorStr='#f90244', gradientType='1');
}
.ct-newsletter-layout1 .tnp-field-button:after {
z-index: 2;
content: '\f1d8';
}
.ct-newsletter-layout1 .tnp-field-button .tnp-button {
-webkit-border-radius: 0px;
-khtml-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
position: absolute;
bottom: 0;
right: 0;
height: 46px;
width: 62px;
padding: 0;
opacity: 0;
z-index: 3;
}
.ct-newsletter-layout1 .tnp-field-button:hover:after {
-o-animation: toRightFromLeft 0.3s forwards;
-ms-animation: toRightFromLeft 0.3s forwards;
-webkit-animation: toRightFromLeft 0.3s forwards;
animation: toRightFromLeft 0.3s forwards;
}
.ct-contact-info1 {
margin-bottom: 0;
list-style: none;
font-size: 14px;
line-height: 24px;
color: #fff;
font-family: 'Poppins', sans-serif;
}
.ct-contact-info1 li {
padding-left: 23px;
position: relative;
}
.ct-contact-info1 li i {
position: absolute;
top: 3px;
left: 0;
}
.ct-contact-info1 li i.fa-phone {
-webkit-transform: scaleX(-1);
-khtml-transform: scaleX(-1);
-moz-transform: scaleX(-1);
-ms-transform: scaleX(-1);
-o-transform: scaleX(-1);
transform: scaleX(-1);
}
.ct-contact-info1 li + li {
margin-top: 10px;
}
.ct-contact-info1.style2 li {
padding-left: 39px;
}
.ct-contact-info1.style2 li + li {
margin-top: 15px;
}
.ct-contact-info1.style2 i {
font-size: 25px;
}
.ct-contact-info1.style2 span {
font-size: 18px;
line-height: 30px;
color: #636363;
}
.ct-contact-info1.style2 a {
color: #636363;
}
.ct-contact-info1.style2 a:hover {
color: #f00;
}
.ct-fancy-box-carousel1 {
background-color: #fff;
}
.ct-fancy-box-carousel1 .fancy-box-icon {
line-height: 1;
margin-right: 16px;
}
.ct-fancy-box-carousel1 .fancy-box-icon i {
background-color: #f90244;
background-image: -webkit-gradient(linear, left top, right top, from(#f90244), to(#b50d1c));
background-image: -webkit-linear-gradient(left, #f90244, #b50d1c);
background-image: -moz-linear-gradient(left, #f90244, #b50d1c);
background-image: -ms-linear-gradient(left, #f90244, #b50d1c);
background-image: -o-linear-gradient(left, #f90244, #b50d1c);
background-image: linear-gradient(left, #f90244, #b50d1c);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f90244', endColorStr='#b50d1c', gradientType='1');
font-size: 40px;
}
.ct-fancy-box-carousel1 .fancy-box-title {
margin-top: -4px;
margin-bottom: 6px;
font-size: 18px;
color: #0e0e0e;
font-weight: 700;
}
.ct-fancy-box-carousel1 .fancy-box-description {
font-size: 15px;
line-height: 28px;
margin-bottom: 3px;
}
.ct-fancy-box-carousel1 .fancy-box-button a {
font-size: 14px;
font-weight: 600;
color: #383838;
font-family: 'Poppins', sans-serif;
}
.ct-fancy-box-carousel1 .fancy-box-button a i {
margin-left: 6px;
color: #b50d1c;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
}
.ct-fancy-box-carousel1 .fancy-box-button a:hover {
color: #b50d1c;
}
.ct-fancy-box-carousel1 .fancy-box-button a:hover i {
margin-left: 12px;
}
.ct-fancy-box-carousel1 .grid-item-inner {
display: flex;
flex-wrap: nowrap;
padding: 52px 20px 40px 22px;
position: relative;
}
.ct-fancy-box-carousel1 .grid-item-inner:before {
content: '';
height: 5px;
background-color: #b50d1c;
background-image: -webkit-gradient(linear, left top, right top, from(#b50d1c), to(#f90244));
background-image: -webkit-linear-gradient(left, #b50d1c, #f90244);
background-image: -moz-linear-gradient(left, #b50d1c, #f90244);
background-image: -ms-linear-gradient(left, #b50d1c, #f90244);
background-image: -o-linear-gradient(left, #b50d1c, #f90244);
background-image: linear-gradient(left, #b50d1c, #f90244);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#b50d1c', endColorStr='#f90244', gradientType='1');
width: 0;
position: absolute;
bottom: 0;
left: 0;
-webkit-transition: all 200ms linear 0ms;
-khtml-transition: all 200ms linear 0ms;
-moz-transition: all 200ms linear 0ms;
-ms-transition: all 200ms linear 0ms;
-o-transition: all 200ms linear 0ms;
transition: all 200ms linear 0ms;
}
.ct-fancy-box-carousel1 .grid-item-inner:after {
content: '';
height: 54px;
width: 1px;
background-color: #e4eaee;
position: absolute;
right: -1px;
top: 50%;
-webkit-transform: translate(0, -50%);
-khtml-transform: translate(0, -50%);
-moz-transform: translate(0, -50%);
-ms-transform: translate(0, -50%);
-o-transform: translate(0, -50%);
transform: translate(0, -50%);
opacity: 0;
}
.ct-fancy-box-carousel1 .grid-item-inner:hover:before {
width: 100%;
}
.ct-fancy-box-carousel1 .owl-item.active .grid-item-inner:after {
opacity: 1;
}
.ct-piechart-layout1 {
text-align: center;
}
.ct-piechart-layout1 .item--value {
position: relative;
display: flex;
margin: 0 auto 15px auto;
justify-content: center;
}
.ct-piechart-layout1 .item--value span {
font-size: 30px;
color: #000;
font-weight: 700;
font-family: 'Poppins', sans-serif;
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-khtml-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
@media screen and (max-width: 991px) {
.ct-piechart-layout1 .item--value span {
font-size: 26px;
}
}
.ct-piechart-layout1 .item--value i {
position: absolute;
top: 6px;
left: 6px;
right: 6px;
bottom: 6px;
border-width: 4px;
border-style: solid;
-webkit-border-radius: 100%;
-khtml-border-radius: 100%;
-moz-border-radius: 100%;
-ms-border-radius: 100%;
-o-border-radius: 100%;
border-radius: 100%;
z-index: -1;
}
.ct-piechart-layout1 .item--title {
font-size: 18px;
line-height: 30px;
color: #383838;
font-weight: 400;
margin-bottom: 0;
}
.ct-piechart-layout1 .item--desc {
font-size: 15px;
line-height: 26px;
}
@media screen and (min-width: 992px) {
.startup-section-01 > .vc_col-sm-6:nth-child(1) {
width: 40%;
}
.startup-section-01 > .vc_col-sm-6:nth-child(2) {
width: 60%;
}
}
@media screen and (min-width: 1200px) {
.startup-section-01 > .vc_col-sm-6:nth-child(1) {
width: 44%;
}
.startup-section-01 > .vc_col-sm-6:nth-child(2) {
width: 56%;
}
.startup-section-portfolio > .vc_col-sm-6:nth-child(1) {
width: 54%;
}
.startup-section-portfolio > .vc_col-sm-6:nth-child(2) {
width: 46%;
}
}
.ct-history1 {
position: relative;
padding-left: 50px;
padding-right: 150px;
}
@media screen and (max-width: 767px) {
.ct-history1 {
padding-left: 0;
padding-right: 0;
padding-bottom: 80px;
}
}
.ct-history1:before {
content: '';
width: 10000px;
height: 1px;
background-color: rgba(255, 255, 255, 0.63);
position: absolute;
top: 10px;
left: -5000px;
}
.ct-history1 .history-title {
font-size: 18px;
color: #fff;
margin-bottom: 8px;
}
@media screen and (max-width: 575px) {
.ct-history1 .history-title {
font-size: 17px;
}
}
.ct-history1 .history-description {
color: #fff;
font-size: 16px;
line-height: 26px;
}
@media screen and (max-width: 767px) {
.ct-history1 .history-description {
font-size: 14px;
line-height: 24px;
}
}
.ct-history1 .history-meta {
padding-top: 44px;
position: relative;
padding-right: 10%;
}
@media screen and (max-width: 1199px) {
.ct-history1 .history-meta {
padding-right: 0;
}
}
.ct-history1 .history-meta:before, .ct-history1 .history-meta:after {
content: '';
width: 21px;
height: 21px;
background-color: #f8f6f9;
position: absolute;
-webkit-border-radius: 20px;
-khtml-border-radius: 20px;
-moz-border-radius: 20px;
-ms-border-radius: 20px;
-o-border-radius: 20px;
border-radius: 20px;
top: 0;
left: 0;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
}
.ct-history1 .history-meta:after {
opacity: 0;
background-color: #f90244;
background-image: -webkit-gradient(linear, left top, right top, from(#f90244), to(#b50d1c));
background-image: -webkit-linear-gradient(left, #f90244, #b50d1c);
background-image: -moz-linear-gradient(left, #f90244, #b50d1c);
background-image: -ms-linear-gradient(left, #f90244, #b50d1c);
background-image: -o-linear-gradient(left, #f90244, #b50d1c);
background-image: linear-gradient(left, #f90244, #b50d1c);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f90244', endColorStr='#b50d1c', gradientType='1');
}
.ct-history1 .history-meta:hover:before {
-webkit-transform: scale(0.9);
-khtml-transform: scale(0.9);
-moz-transform: scale(0.9);
-ms-transform: scale(0.9);
-o-transform: scale(0.9);
transform: scale(0.9);
}
.ct-history1 .history-meta:hover:after {
opacity: 1;
}
.ct-history-wrap {
position: relative;
}
.ct-history-wrap .owl-nav {
position: absolute;
bottom: 0;
visibility: hidden;
opacity: 0;
}
.ct-history-wrap .ct-history-more {
position: absolute;
cursor: pointer;
font-size: 16px;
font-weight: 600;
color: #fff;
font-family: 'Poppins', sans-serif;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
top: 38px;
right: 0;
z-index: 99;
}
@media screen and (max-width: 767px) {
.ct-history-wrap .ct-history-more {
top: auto;
bottom: 0px;
right: auto;
left: 50%;
-webkit-transform: translate(-50%, 0);
-khtml-transform: translate(-50%, 0);
-moz-transform: translate(-50%, 0);
-ms-transform: translate(-50%, 0);
-o-transform: translate(-50%, 0);
transform: translate(-50%, 0);
text-align: center;
}
}
.ct-history-wrap .ct-history-more i {
margin-left: 4px;
color: #b50d1c;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
}
.ct-history-wrap .ct-history-more:hover {
color: #b50d1c;
}
.ct-history-wrap .ct-history-more:hover i {
margin-left: 8px;
}
.ct-service-carousel1 .service-icon {
line-height: 1;
margin: 0 auto 22px auto;
display: inline-block;
vertical-align: top;
}
.ct-service-carousel1 .service-icon img {
width: auto;
}
.ct-service-carousel1 .service-icon i {
font-size: 70px;
color: #f00;
}
.ct-service-carousel1 .service-title {
margin-bottom: 18px;
font-size: 22px;
color: #0e0e0e;
font-weight: 700;
}
.ct-service-carousel1 .service-description {
font-size: 16px;
line-height: 28px;
margin-bottom: 20px;
}
.ct-service-carousel1 .service-button {
position: relative;
line-height: 1;
overflow: hidden;
}
.ct-service-carousel1 .service-button a {
font-size: 15px;
font-weight: 700;
color: #0e0e0e;
font-family: 'Poppins', sans-serif;
display: inline-block;
}
.ct-service-carousel1 .service-button a i {
margin-left: 4px;
display: initial;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
}
.ct-service-carousel1 .service-button a.text-gradient, .ct-service-carousel1 .service-button .ct-heading h3.ct-heading-tag a, .ct-heading h3.ct-heading-tag .ct-service-carousel1 .service-button a, .ct-service-carousel1 .service-button .ct-heading a.ct-typingout-typed, .ct-heading .ct-service-carousel1 .service-button a.ct-typingout-typed, .ct-service-carousel1 .service-button .ct-fancybox-default .ct-fancybox-icon a, .ct-fancybox-default .ct-fancybox-icon .ct-service-carousel1 .service-button a, .ct-service-carousel1 .service-button .ct-counter-default .ct-counter-icon a, .ct-counter-default .ct-counter-icon .ct-service-carousel1 .service-button a, .ct-service-carousel1 .service-button .ct-contact-form-default.style-startup .input-filled > label a, .ct-contact-form-default.style-startup .input-filled > label .ct-service-carousel1 .service-button a, .ct-service-carousel1 .service-button .ct-contact-info1.style2 a, .ct-contact-info1.style2 .ct-service-carousel1 .service-button a, .ct-service-carousel1 .service-button .ct-fancy-box-carousel1 .fancy-box-icon a, .ct-fancy-box-carousel1 .fancy-box-icon .ct-service-carousel1 .service-button a, .ct-service-carousel1 .service-button .ct-grid-blog-layout2 .entry-readmore a, .ct-grid-blog-layout2 .entry-readmore .ct-service-carousel1 .service-button a, .ct-service-carousel1 .service-button .ct-list.style1 .ct-list-icon a, .ct-list.style1 .ct-list-icon .ct-service-carousel1 .service-button a {
background-color: #b50d1c;
background-image: -webkit-gradient(linear, left top, right top, from(#b50d1c), to(#f90244));
background-image: -webkit-linear-gradient(left, #b50d1c, #f90244);
background-image: -moz-linear-gradient(left, #b50d1c, #f90244);
background-image: -ms-linear-gradient(left, #b50d1c, #f90244);
background-image: -o-linear-gradient(left, #b50d1c, #f90244);
background-image: linear-gradient(left, #b50d1c, #f90244);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#b50d1c', endColorStr='#f90244', gradientType='1');
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-khtml-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
margin-top: 30px;
}
.ct-service-carousel1 .service-button a:hover i {
margin-left: 10px;
}
.ct-service-carousel1 .ct-service-item {
padding-top: 30px;
}
.ct-service-carousel1 .grid-item-inner {
background-color: #fff;
-webkit-border-radius: 28px;
-khtml-border-radius: 28px;
-moz-border-radius: 28px;
-ms-border-radius: 28px;
-o-border-radius: 28px;
border-radius: 28px;
position: relative;
overflow: hidden;
padding: 45px 40px 40px;
text-align: center;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
-webkit-box-shadow: 0 7px 20px rgba(12, 12, 12, 0.08);
-khtml-box-shadow: 0 7px 20px rgba(12, 12, 12, 0.08);
-moz-box-shadow: 0 7px 20px rgba(12, 12, 12, 0.08);
-ms-box-shadow: 0 7px 20px rgba(12, 12, 12, 0.08);
-o-box-shadow: 0 7px 20px rgba(12, 12, 12, 0.08);
box-shadow: 0 7px 20px rgba(12, 12, 12, 0.08);
margin-bottom: 30px;
}
@media screen and (max-width: 991px) {
.ct-service-carousel1 .grid-item-inner {
padding-left: 30px;
padding-right: 30px;
}
}
.ct-service-carousel1 .grid-item-inner:before {
content: '';
height: 9px;
width: 0;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
margin: auto;
bottom: 0;
left: 0;
right: 0;
opacity: 0;
position: absolute;
background-color: #f90244;
background-image: -webkit-gradient(linear, left top, right top, from(#f90244), to(#b50d1c));
background-image: -webkit-linear-gradient(left, #f90244, #b50d1c);
background-image: -moz-linear-gradient(left, #f90244, #b50d1c);
background-image: -ms-linear-gradient(left, #f90244, #b50d1c);
background-image: -o-linear-gradient(left, #f90244, #b50d1c);
background-image: linear-gradient(left, #f90244, #b50d1c);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f90244', endColorStr='#b50d1c', gradientType='1');
}
.ct-service-carousel1 .grid-item-inner:hover {
-webkit-transform: translateY(-25px);
-khtml-transform: translateY(-25px);
-moz-transform: translateY(-25px);
-ms-transform: translateY(-25px);
-o-transform: translateY(-25px);
transform: translateY(-25px);
-webkit-box-shadow: 0 19px 30px rgba(12, 12, 12, 0.15);
-khtml-box-shadow: 0 19px 30px rgba(12, 12, 12, 0.15);
-moz-box-shadow: 0 19px 30px rgba(12, 12, 12, 0.15);
-ms-box-shadow: 0 19px 30px rgba(12, 12, 12, 0.15);
-o-box-shadow: 0 19px 30px rgba(12, 12, 12, 0.15);
box-shadow: 0 19px 30px rgba(12, 12, 12, 0.15);
}
.ct-service-carousel1 .grid-item-inner:hover:before {
width: 100%;
opacity: 1;
}
.ct-service-carousel1 .grid-item-inner:hover .service-button a:not(.text-gradient) {
-webkit-transform: translateY(-30px);
-khtml-transform: translateY(-30px);
-moz-transform: translateY(-30px);
-ms-transform: translateY(-30px);
-o-transform: translateY(-30px);
transform: translateY(-30px);
}
.ct-service-carousel1 .grid-item-inner:hover .service-button a.text-gradient, .ct-service-carousel1 .grid-item-inner:hover .service-button .ct-heading h3.ct-heading-tag a, .ct-heading h3.ct-heading-tag .ct-service-carousel1 .grid-item-inner:hover .service-button a, .ct-service-carousel1 .grid-item-inner:hover .service-button .ct-heading a.ct-typingout-typed, .ct-heading .ct-service-carousel1 .grid-item-inner:hover .service-button a.ct-typingout-typed, .ct-service-carousel1 .grid-item-inner:hover .service-button .ct-fancybox-default .ct-fancybox-icon a, .ct-fancybox-default .ct-fancybox-icon .ct-service-carousel1 .grid-item-inner:hover .service-button a, .ct-service-carousel1 .grid-item-inner:hover .service-button .ct-counter-default .ct-counter-icon a, .ct-counter-default .ct-counter-icon .ct-service-carousel1 .grid-item-inner:hover .service-button a, .ct-service-carousel1 .grid-item-inner:hover .service-button .ct-contact-form-default.style-startup .input-filled > label a, .ct-contact-form-default.style-startup .input-filled > label .ct-service-carousel1 .grid-item-inner:hover .service-button a, .ct-service-carousel1 .grid-item-inner:hover .service-button .ct-contact-info1.style2 a, .ct-contact-info1.style2 .ct-service-carousel1 .grid-item-inner:hover .service-button a, .ct-service-carousel1 .grid-item-inner:hover .service-button .ct-fancy-box-carousel1 .fancy-box-icon a, .ct-fancy-box-carousel1 .fancy-box-icon .ct-service-carousel1 .grid-item-inner:hover .service-button a, .ct-service-carousel1 .grid-item-inner:hover .service-button .ct-grid-blog-layout2 .entry-readmore a, .ct-grid-blog-layout2 .entry-readmore .ct-service-carousel1 .grid-item-inner:hover .service-button a, .ct-service-carousel1 .grid-item-inner:hover .service-button .ct-list.style1 .ct-list-icon a, .ct-list.style1 .ct-list-icon .ct-service-carousel1 .grid-item-inner:hover .service-button a {
margin-top: 0px;
}
.ct-service-carousel1 .owl-dots {
max-width: 495px;
margin-top: 40px;
margin-left: auto;
margin-right: auto;
background-color: #434343;
height: 10px;
-webkit-border-radius: 10px;
-khtml-border-radius: 10px;
-moz-border-radius: 10px;
-ms-border-radius: 10px;
-o-border-radius: 10px;
border-radius: 10px;
padding: 0 40px;
flex-wrap: nowrap;
}
.ct-service-carousel1 .owl-dots div {
margin: 0;
width: 50%;
background-image: none;
background-color: transparent;
}
.ct-service-carousel1 .owl-dots div span {
-webkit-transform: scale(1);
-khtml-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
height: 10px;
width: 100%;
-webkit-border-radius: 10px;
-khtml-border-radius: 10px;
-moz-border-radius: 10px;
-ms-border-radius: 10px;
-o-border-radius: 10px;
border-radius: 10px;
background-color: #f90244;
background-image: -webkit-gradient(linear, left top, right top, from(#f90244), to(#b50d1c));
background-image: -webkit-linear-gradient(left, #f90244, #b50d1c);
background-image: -moz-linear-gradient(left, #f90244, #b50d1c);
background-image: -ms-linear-gradient(left, #f90244, #b50d1c);
background-image: -o-linear-gradient(left, #f90244, #b50d1c);
background-image: linear-gradient(left, #f90244, #b50d1c);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f90244', endColorStr='#b50d1c', gradientType='1');
opacity: 0;
}
.ct-service-carousel1 .owl-dots div span:hover, .ct-service-carousel1 .owl-dots div span:focus {
background-color: #f90244;
background-image: -webkit-gradient(linear, left top, right top, from(#f90244), to(#b50d1c));
background-image: -webkit-linear-gradient(left, #f90244, #b50d1c);
background-image: -moz-linear-gradient(left, #f90244, #b50d1c);
background-image: -ms-linear-gradient(left, #f90244, #b50d1c);
background-image: -o-linear-gradient(left, #f90244, #b50d1c);
background-image: linear-gradient(left, #f90244, #b50d1c);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f90244', endColorStr='#b50d1c', gradientType='1');
background-position: inherit;
}
.ct-service-carousel1 .owl-dots div.slick-active span {
opacity: 1;
}
.ct-service-carousel1 .owl-stage-outer {
padding: 0px 30px;
margin: 0 -30px;
}
.ct-service-carousel1 .owl-stage-outer .owl-item {
opacity: 0;
-webkit-transition: all 180ms linear 0ms;
-khtml-transition: all 180ms linear 0ms;
-moz-transition: all 180ms linear 0ms;
-ms-transition: all 180ms linear 0ms;
-o-transition: all 180ms linear 0ms;
transition: all 180ms linear 0ms;
}
.ct-service-carousel1 .owl-stage-outer .owl-item.active {
opacity: 1;
}
.ct-grid-team1 .team-featured {
position: relative;
max-width: 230px;
margin: 0 auto 35px auto;
z-index: 1;
}
.ct-grid-team1 .team-featured .team-featured-link {
display: inline-block;
-webkit-border-radius: 230px;
-khtml-border-radius: 230px;
-moz-border-radius: 230px;
-ms-border-radius: 230px;
-o-border-radius: 230px;
border-radius: 230px;
position: relative;
width: 100%;
overflow: hidden;
}
.ct-grid-team1 .team-featured .team-featured-link:before {
content: '';
background-color: rgba(14, 14, 14, 0.2);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
}
.ct-grid-team1 .team-social {
position: absolute;
bottom: 0px;
left: 0;
right: 0;
z-index: 2;
padding: 28px 0 18px;
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(249, 2, 68, 0.67)), to(rgba(0, 0, 0, 0)));
background-image: -webkit-linear-gradient(bottom, rgba(249, 2, 68, 0.67), rgba(0, 0, 0, 0));
background-image: -moz-linear-gradient(bottom, rgba(249, 2, 68, 0.67), rgba(0, 0, 0, 0));
background-image: -ms-linear-gradient(bottom, rgba(249, 2, 68, 0.67), rgba(0, 0, 0, 0));
background-image: -o-linear-gradient(bottom, rgba(249, 2, 68, 0.67), rgba(0, 0, 0, 0));
background-image: linear-gradient(bottom, rgba(249, 2, 68, 0.67), rgba(0, 0, 0, 0));
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='rgba(249, 2, 68, 0.67)', endColorStr='rgba(0, 0, 0, 0)');
opacity: 0;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
}
.ct-grid-team1 .team-social a {
color: #fff;
font-size: 16px;
padding: 6px;
display: inline-block;
-webkit-transform: translateY(40px);
-khtml-transform: translateY(40px);
-moz-transform: translateY(40px);
-ms-transform: translateY(40px);
-o-transform: translateY(40px);
transform: translateY(40px);
opacity: 0;
}
.ct-grid-team1 .team-social a:hover {
-webkit-transform: translateY(-4px) !important;
-khtml-transform: translateY(-4px) !important;
-moz-transform: translateY(-4px) !important;
-ms-transform: translateY(-4px) !important;
-o-transform: translateY(-4px) !important;
transform: translateY(-4px) !important;
}
.ct-grid-team1 .team-shape {
position: absolute;
width: 330px;
height: 30px;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%) rotate(-45deg) scale(0);
-khtml-transform: translate(-50%, -50%) rotate(-45deg) scale(0);
-moz-transform: translate(-50%, -50%) rotate(-45deg) scale(0);
-ms-transform: translate(-50%, -50%) rotate(-45deg) scale(0);
-o-transform: translate(-50%, -50%) rotate(-45deg) scale(0);
transform: translate(-50%, -50%) rotate(-45deg) scale(0);
-webkit-transition: all 200ms linear 0ms;
-khtml-transition: all 200ms linear 0ms;
-moz-transition: all 200ms linear 0ms;
-ms-transition: all 200ms linear 0ms;
-o-transition: all 200ms linear 0ms;
transition: all 200ms linear 0ms;
right: 0;
z-index: -1;
}
.ct-grid-team1 .team-shape:before, .ct-grid-team1 .team-shape:after {
content: '';
position: absolute;
background-color: #b50d1c;
background-image: -webkit-gradient(linear, left top, right top, from(#b50d1c), to(#f90244));
background-image: -webkit-linear-gradient(left, #b50d1c, #f90244);
background-image: -moz-linear-gradient(left, #b50d1c, #f90244);
background-image: -ms-linear-gradient(left, #b50d1c, #f90244);
background-image: -o-linear-gradient(left, #b50d1c, #f90244);
background-image: linear-gradient(left, #b50d1c, #f90244);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#b50d1c', endColorStr='#f90244', gradientType='1');
left: 0;
right: 0;
margin: auto;
height: 5px;
}
.ct-grid-team1 .team-shape:before {
width: 285px;
top: 0;
}
.ct-grid-team1 .team-shape:after {
width: 100%;
bottom: 0;
}
.ct-grid-team1 .team-title {
font-size: 20px;
color: #0e0e0e;
margin-bottom: 6px;
font-weight: 700;
}
.ct-grid-team1 .team-title a {
color: inherit;
}
.ct-grid-team1 .team-title a:hover {
color: inherit;
}
.ct-grid-team1 .team-position {
font-size: 15px;
}
.ct-grid-team1 .grid-item-inner {
text-align: center;
margin-bottom: 50px;
}
.ct-grid-team1 .grid-item-inner:hover .team-social {
opacity: 1;
}
.ct-grid-team1 .grid-item-inner:hover .team-social a {
-webkit-transform: translateY(0px);
-khtml-transform: translateY(0px);
-moz-transform: translateY(0px);
-ms-transform: translateY(0px);
-o-transform: translateY(0px);
transform: translateY(0px);
opacity: 1;
}
.ct-grid-team1 .grid-item-inner:hover .team-shape {
-webkit-transform: translate(-50%, -50%) rotate(-45deg) scale(1);
-khtml-transform: translate(-50%, -50%) rotate(-45deg) scale(1);
-moz-transform: translate(-50%, -50%) rotate(-45deg) scale(1);
-ms-transform: translate(-50%, -50%) rotate(-45deg) scale(1);
-o-transform: translate(-50%, -50%) rotate(-45deg) scale(1);
transform: translate(-50%, -50%) rotate(-45deg) scale(1);
}
.ct-grid-blog-layout2 .ct-video-overlay {
background-color: rgba(14, 14, 14, 0.66);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
opacity: 0;
}
.ct-grid-blog-layout2 .ct-video-overlay .ct-video-button {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-khtml-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
font-size: 14px;
height: 77px;
width: 77px;
line-height: 77px;
background-color: #f90244;
background-image: -webkit-gradient(linear, left top, right top, from(#f90244), to(#b50d1c));
background-image: -webkit-linear-gradient(left, #f90244, #b50d1c);
background-image: -moz-linear-gradient(left, #f90244, #b50d1c);
background-image: -ms-linear-gradient(left, #f90244, #b50d1c);
background-image: -o-linear-gradient(left, #f90244, #b50d1c);
background-image: linear-gradient(left, #f90244, #b50d1c);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f90244', endColorStr='#b50d1c', gradientType='1');
}
.ct-grid-blog-layout2 .ct-video-overlay .ct-video-button:before, .ct-grid-blog-layout2 .ct-video-overlay .ct-video-button:after {
display: none;
}
.ct-grid-blog-layout2 .entry-featured {
margin-bottom: 12px;
position: relative;
overflow: hidden;
-webkit-border-radius: 5px;
-khtml-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
border-radius: 5px;
background-color: #0e0e0e;
}
.ct-grid-blog-layout2 .entry-featured img {
-webkit-border-radius: 5px;
-khtml-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
border-radius: 5px;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
}
.ct-grid-blog-layout2 .entry-title {
margin-bottom: 3px;
font-size: 20px;
line-height: 26px;
color: #fff;
font-weight: 700;
}
.ct-grid-blog-layout2 .entry-title:hover a {
text-decoration: underline;
color: inherit;
}
.ct-grid-blog-layout2 .entry-meta {
margin: 0 0 5px;
padding: 0;
border: none;
}
.ct-grid-blog-layout2 .entry-meta:before, .ct-grid-blog-layout2 .entry-meta:after {
display: none;
border-bottom: none;
}
.ct-grid-blog-layout2 .entry-meta li {
position: relative;
margin-right: 8px;
padding-right: 8px;
font-size: 15px;
color: #b8b8b8;
}
.ct-grid-blog-layout2 .entry-meta li:before {
content: '';
width: 1px;
height: 15px;
background-color: #b8b8b8;
position: absolute;
top: 50%;
right: 0;
-webkit-transform: translate(0, -50%);
-khtml-transform: translate(0, -50%);
-moz-transform: translate(0, -50%);
-ms-transform: translate(0, -50%);
-o-transform: translate(0, -50%);
transform: translate(0, -50%);
}
.ct-grid-blog-layout2 .entry-meta li:last-child {
margin-right: 0;
padding-right: 0;
}
.ct-grid-blog-layout2 .entry-meta li:last-child:before {
display: none;
}
.ct-grid-blog-layout2 .entry-readmore {
display: flex;
flex-wrap: wrap;
align-items: center;
}
.ct-grid-blog-layout2 .entry-readmore a {
font-size: 15px;
font-weight: 600;
font-family: 'Poppins', sans-serif;
background-color: #b50d1c;
background-image: -webkit-gradient(linear, left top, right top, from(#b50d1c), to(#f90244));
background-image: -webkit-linear-gradient(left, #b50d1c, #f90244);
background-image: -moz-linear-gradient(left, #b50d1c, #f90244);
background-image: -ms-linear-gradient(left, #b50d1c, #f90244);
background-image: -o-linear-gradient(left, #b50d1c, #f90244);
background-image: linear-gradient(left, #b50d1c, #f90244);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#b50d1c', endColorStr='#f90244', gradientType='1');
position: relative;
}
.ct-grid-blog-layout2 .entry-readmore a:before {
content: '';
position: absolute;
bottom: 4px;
left: 0;
width: 0;
height: 1px;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
background-color: #b50d1c;
background-image: -webkit-gradient(linear, left top, right top, from(#b50d1c), to(#f90244));
background-image: -webkit-linear-gradient(left, #b50d1c, #f90244);
background-image: -moz-linear-gradient(left, #b50d1c, #f90244);
background-image: -ms-linear-gradient(left, #b50d1c, #f90244);
background-image: -o-linear-gradient(left, #b50d1c, #f90244);
background-image: linear-gradient(left, #b50d1c, #f90244);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#b50d1c', endColorStr='#f90244', gradientType='1');
}
.ct-grid-blog-layout2 .entry-readmore a i {
display: initial;
margin-left: 4px;
}
.ct-grid-blog-layout2 .entry-readmore a:hover:before {
width: 100%;
}
.ct-grid-blog-layout2 .item--content {
font-size: 18px;
line-height: 32px;
color: #fff;
}
.ct-grid-blog-layout2 .grid-item-inner {
margin-bottom: 13px;
}
.ct-grid-blog-layout2 .grid-item-inner:hover .entry-featured img {
-webkit-transform: scale(1.1);
-khtml-transform: scale(1.1);
-moz-transform: scale(1.1);
-ms-transform: scale(1.1);
-o-transform: scale(1.1);
transform: scale(1.1);
opacity: 0.35;
}
.ct-grid-blog-layout2 .grid-item-inner:hover .ct-video-overlay {
opacity: 1;
}
.ct-grid-blog-layout2 .grid-item-inner.item-lg .entry-featured {
margin-bottom: 21px;
}
.ct-grid-blog-layout2 .grid-item-inner.item-lg .entry-title {
font-size: 30px;
line-height: 37px;
color: #fff;
margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
.ct-grid-blog-layout2 .grid-item-inner.item-lg .entry-title {
font-size: 20px;
line-height: 26px;
}
}
.ct-grid-blog-layout2 .grid-item-inner.item-lg .entry-title a:hover {
color: #fff;
}
.ct-grid-blog-layout2 .grid-item-inner.item-lg .entry-meta {
margin-bottom: 25px;
}
.ct-grid-blog-layout2 .grid-item-inner.item-lg:hover .entry-featured img {
opacity: 1;
}
.ct-portfolio-details {
font-size: 15px;
margin: 0;
list-style: none;
font-family: 'Poppins', sans-serif;
}
.ct-portfolio-details span, .ct-portfolio-details a {
color: #666;
}
.ct-portfolio-details a:hover {
color: #f00;
}
.ct-portfolio-details i {
color: #f00;
min-width: 19px;
margin-right: 4px;
}
.ct-portfolio-details li + li {
margin-top: 12px;
}
.ct-list {
margin-left: 15px;
margin-bottom: 0;
list-style: none;
}
.ct-list .ct-list-item {
position: relative;
display: flex;
flex-wrap: nowrap;
}
.ct-list .ct-list-item h3 {
display: block;
font-size: 24px;
line-height: 1.2;
padding-bottom: 18px;
margin-bottom: 0;
}
@media screen and (max-width: 991px) {
.ct-list .ct-list-item h3 {
font-size: 20px;
}
}
.ct-list .ct-list-item + .ct-list-item {
margin-top: 12px;
}
.ct-list.style1 .ct-list-icon {
line-height: 1;
padding-bottom: 2px;
margin-right: 18px;
}
.ct-list.style1 .ct-list-icon i {
font-size: 22px;
}
.ct-list.style1 .ct-list-desc {
font-size: 15px;
color: #636363;
}
.ct-download-layout1 a {
display: flex;
flex-wrap: nowrap;
align-items: center;
padding: 8px 30px;
color: inherit;
position: relative;
overflow: hidden;
z-index: 1;
}
.ct-download-layout1 a:before, .ct-download-layout1 a:after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
-webkit-border-radius: inherit;
-khtml-border-radius: inherit;
-moz-border-radius: inherit;
-ms-border-radius: inherit;
-o-border-radius: inherit;
border-radius: inherit;
z-index: -1;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
}
.ct-download-layout1 a:before {
border: 1px solid #cdcbcb;
background-color: #fff;
-webkit-border-radius: 1px;
-khtml-border-radius: 1px;
-moz-border-radius: 1px;
-ms-border-radius: 1px;
-o-border-radius: 1px;
border-radius: 1px;
}
.ct-download-layout1 a:after {
-webkit-border-radius: 1px;
-khtml-border-radius: 1px;
-moz-border-radius: 1px;
-ms-border-radius: 1px;
-o-border-radius: 1px;
border-radius: 1px;
background-color: #f00;
background-image: -webkit-gradient(linear, left top, right top, from(#f00), to(#b50d1c));
background-image: -webkit-linear-gradient(left, #f00, #b50d1c);
background-image: -moz-linear-gradient(left, #f00, #b50d1c);
background-image: -ms-linear-gradient(left, #f00, #b50d1c);
background-image: -o-linear-gradient(left, #f00, #b50d1c);
background-image: linear-gradient(left, #f00, #b50d1c);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f00', endColorStr='#b50d1c', gradientType='1');
opacity: 0;
}
.ct-download-layout1 a span {
font-size: 25px;
width: 42px;
min-width: 42px;
display: inline-block;
position: relative;
}
.ct-download-layout1 a i {
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
color: #f00;
}
.ct-download-layout1 a:hover {
color: #fff;
}
.ct-download-layout1 a:hover i {
color: inherit;
}
.ct-download-layout1 a:hover:after {
opacity: 1;
}
.ct-download-layout1 + .ct-download-layout1 {
margin-top: 17px;
}
.ct-list-icon1 {
display: flex;
flex-wrap: nowrap;
align-items: center;
margin-left: 15px;
}
@media screen and (max-width: 767px) {
.ct-list-icon1 {
margin-left: 0px;
}
}
.ct-list-icon1 .list-icon {
font-size: 21px;
margin-right: 14px;
}
.ct-list-icon1 .list-content {
font-size: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
body .text-gradient, body .ct-heading h3.ct-heading-tag cite, .ct-heading h3.ct-heading-tag body cite, body .ct-heading .ct-typingout-typed, .ct-heading body .ct-typingout-typed, body .ct-fancybox-default .ct-fancybox-icon i, .ct-fancybox-default .ct-fancybox-icon body i, body .ct-counter-default .ct-counter-icon i, .ct-counter-default .ct-counter-icon body i, body .ct-contact-form-default.style-startup .input-filled > label i, .ct-contact-form-default.style-startup .input-filled > label body i, body .ct-contact-info1.style2 i, .ct-contact-info1.style2 body i, body .ct-fancy-box-carousel1 .fancy-box-icon i, .ct-fancy-box-carousel1 .fancy-box-icon body i, body .ct-grid-blog-layout2 .entry-readmore a, .ct-grid-blog-layout2 .entry-readmore body a, body .ct-list.style1 .ct-list-icon i, .ct-list.style1 .ct-list-icon body i, body .text-gradient2, body .ct-heading h3.ct-heading-tag cite, body .ct-heading .ct-typingout-typed, body .ct-fancybox-default .ct-fancybox-icon i, body .ct-counter-default .ct-counter-icon i, body .ct-heading .ct-text-below {
text-fill-color: #f00;
-o-text-fill-color: #f00;
-ms-text-fill-color: #f00;
-moz-text-fill-color: #f00;
-webkit-text-fill-color: #f00;
background-clip: inherit;
-o-background-clip: inherit;
-ms-background-clip: inherit;
-webkit-background-clip: inherit;
background-image: none;
}
}
@media screen and (min-width: 1200px) {
.sidebar-fixed-inner, .col-sidebar-fixed > .vc_column-inner {
position: -webkit-sticky;
position: sticky;
top: 30px;
}
.admin-bar .sidebar-fixed-inner, .admin-bar .col-sidebar-fixed > .vc_column-inner {
top: 62px;
}
.header-sticky .sidebar-fixed-inner, .header-sticky .col-sidebar-fixed > .vc_column-inner {
top: 110px;
}
.admin-bar.header-sticky .sidebar-fixed-inner, .admin-bar.header-sticky .col-sidebar-fixed > .vc_column-inner {
top: 142px;
}
}
.widget-title, .comments-title, .comment-reply-title {
font-size: 22px;
color: #180b36;
position: relative;
padding-bottom: 10px;
margin-bottom: 23px;
}
.widget-title:before, .comments-title:before, .comment-reply-title:before {
content: '';
width: 40px;
height: 3px;
background-color: #f00;
position: absolute;
bottom: 0;
left: 0;
}
.comments-title, .comment-reply-title {
margin-bottom: 38px;
}
#secondary, .secondary-inner {
position: sticky;
position: -webkit-sticky;
top: 100px;
}
#secondary .widget {
margin-bottom: 44px;
}
#secondary .widget:last-child {
margin-bottom: 0;
}
.row-max-width {
max-width: 1170px;
margin-left: auto !important;
margin-right: auto !important;
}
.vc_row.row-boxed {
max-width: 1356px;
margin-left: auto !important;
margin-right: auto !important;
}
.vc_row.row-border-box {
background-color: #fff;
padding: 15px 0 15px 15px;
margin: 0;
-webkit-border-radius: 9px;
-khtml-border-radius: 9px;
-moz-border-radius: 9px;
-ms-border-radius: 9px;
-o-border-radius: 9px;
border-radius: 9px;
-webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.11);
-khtml-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.11);
-moz-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.11);
-ms-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.11);
-o-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.11);
box-shadow: 0 4px 5px rgba(0, 0, 0, 0.11);
}
@media screen and (max-width: 991px) {
.vc_row.row-border-box {
padding: 15px;
text-align: center;
}
.vc_row.row-border-box .ct-counter-default {
display: inline-block;
}
.vc_row.row-border-box .ct-counter-default .ct-counter-inner {
display: block;
}
.vc_row.row-border-box .ct-counter-default .ct-counter-inner .ct-counter-icon {
margin-bottom: 20px;
}
}
.vc_row.row-border-box-lg:not(.no-padding) {
background-color: #fff;
padding: 65px 60px 100px;
margin: 0;
-webkit-box-shadow: 0 50px 90px rgba(0, 0, 0, 0.12);
-khtml-box-shadow: 0 50px 90px rgba(0, 0, 0, 0.12);
-moz-box-shadow: 0 50px 90px rgba(0, 0, 0, 0.12);
-ms-box-shadow: 0 50px 90px rgba(0, 0, 0, 0.12);
-o-box-shadow: 0 50px 90px rgba(0, 0, 0, 0.12);
box-shadow: 0 50px 90px rgba(0, 0, 0, 0.12);
}
.vc_row.row-border-box-lg:not(.no-padding) > .wpb_column {
margin-top: 35px;
}
.vc_row.row-border-box-lg:not(.no-padding) > .wpb_column:first-child {
margin-top: 0;
}
@media screen and (max-width: 991px) {
.vc_row.row-border-box-lg:not(.no-padding) {
padding: 50px;
}
}
@media screen and (max-width: 767px) {
.vc_row.row-border-box-lg:not(.no-padding) {
padding: 30px 15px;
}
}
.vc_row.row-border-box-lg.no-padding {
margin: 0;
-webkit-box-shadow: 0 50px 90px rgba(0, 0, 0, 0.12);
-khtml-box-shadow: 0 50px 90px rgba(0, 0, 0, 0.12);
-moz-box-shadow: 0 50px 90px rgba(0, 0, 0, 0.12);
-ms-box-shadow: 0 50px 90px rgba(0, 0, 0, 0.12);
-o-box-shadow: 0 50px 90px rgba(0, 0, 0, 0.12);
box-shadow: 0 50px 90px rgba(0, 0, 0, 0.12);
}
@media screen and (min-width: 1200px) {
body .container {
max-width: 1170px;
width: 100%;
}
body .content-row #primary.content-has-sidebar {
-ms-flex: 0 0 74%;
flex: 0 0 74%;
max-width: 74%;
}
body .content-row #secondary.widget-has-sidebar {
-ms-flex: 0 0 26%;
flex: 0 0 26%;
max-width: 26%;
}
.layout-boxed {
max-width: 1270px;
margin: auto;
-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
-khtml-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
-ms-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
-o-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.layout-boxed #header-wrap #header-main {
max-width: 1270px;
margin: auto;
}
.layout-boxed #header-wrap #header-main:not(.h-fixed) .header-navigation {
margin-left: 30px;
margin-right: 30px;
}
.layout-boxed .site-footer.footer-fixed {
max-width: 1270px;
margin: auto;
}
.page-template-default #primary.content-has-sidebar {
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%;
}
.page-template-default .widget-has-sidebar {
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
}
.page-template-default .widget-has-sidebar .ct-newsletter.widget .ct-newsletter-inner .newsletter::after {
font-size: 36px;
top: -30px;
}
}
@media screen and (max-width: 1199px) {
body .container {
max-width: 100%;
}
}
@media (min-width: 992px) and (max-width: 1280px) {
.col-offset-left > .vc_column-inner {
padding-left: 30px !important;
}
.col-offset-right > .vc_column-inner {
padding-right: 30px !important;
}
}
@media screen and (max-width: 991px) {
#primary + #secondary {
margin-top: 60px;
}
}
.site-content {
padding: 120px 0;
background-color: #fff;
}
@media screen and (max-width: 1199px) {
.site-content {
overflow: hidden;
}
}
.widget .widget-content ul:not(.entry-meta) {
margin: 0;
list-style: none;
}
.page-template-default .entry-footer {
text-align: center;
}
.page-template-default .entry-footer i {
padding-right: 8px;
}
.vc_column_container > .theiaStickySidebar > .vc_column-inner {
box-sizing: border-box;
padding-left: 15px;
padding-right: 15px;
width: 100%;
}
.vc-row-overlay {
position: relative;
overflow: hidden;
}
.row-overlay {
position: relative;
}
.row-overlay:after {
background-color: inherit;
bottom: 0;
content: "";
display: block !important;
height: 100% !important;
left: 0;
position: absolute;
right: 0;
top: 0;
visibility: visible !important;
}
.row-overlay .vc_column-inner {
position: relative;
z-index: 1;
}
.row-overlay.dotted-overlay:after {
background-image: url(//www.4cine.it/wp-content/themes/nimmo/assets/images/dot-overlay.png);
background-repeat: repeat;
}
.col-overlay .vc_column-inner {
position: relative;
}
.col-overlay .vc_column-inner:after {
background-color: inherit;
bottom: 0;
content: "";
display: block !important;
height: 100% !important;
left: 0;
position: absolute;
right: 0;
top: 0;
visibility: visible !important;
}
.col-overlay .vc_column-inner .wpb_wrapper {
position: relative;
z-index: 1;
}
.vc_row.vc_row-fluid > .wpb_column {
z-index: 2;
}
.vc_row .ct-row-overlay {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
}
.vc_row .ct-row-overlay.ct-row-overlay-skew {
right: 0;
-webkit-transform: skew(-20deg);
-khtml-transform: skew(-20deg);
-moz-transform: skew(-20deg);
-ms-transform: skew(-20deg);
-o-transform: skew(-20deg);
transform: skew(-20deg);
left: -1000px;
border-right: 10px solid #f00;
}
@media screen and (max-width: 767px) {
.vc_row .ct-row-overlay.ct-row-overlay-skew {
opacity: 0;
display: none;
}
}
.error404 .site-content {
background-position: center;
background-repeat: no-repeat;
background-size: cover;
text-align: center;
}
.error404 .error-404 > .container > .row {
justify-content: flex-end;
}
.error404 .error-404-content {
max-width: 460px;
margin: auto;
display: inline-block;
}
.error404 .error-404-content h2 {
font-size: 144px;
line-height: 1;
}
.error404 .error-404-content h2 span {
color: #f00;
}
.error404 .error-404-content p {
font-size: 20px;
line-height: 32px;
margin-bottom: 51px;
}
@media (min-width: 768px) and (max-width: 991px) {
.wpb_single_image.image_align_sm_left {
text-align: left !important;
}
.wpb_single_image.image_align_sm_center {
text-align: center !important;
}
.wpb_single_image.image_align_sm_right {
text-align: right !important;
}
}
@media screen and (min-width: 992px) {
.content-has-sidebar.float-right {
order: 2;
-webkit-order: 2;
-ms-order: 2;
}
.content-has-sidebar.float-right + #secondary {
order: 1;
-webkit-order: 1;
-ms-order: 1;
}
}
@media screen and (max-width: 1400px) {
.rm-padding-xlg > .vc_column-inner, .rm-padding-xlg > .theiaStickySidebar > .vc_column-inner {
padding-left: 30px !important;
padding-right: 30px !important;
}
}
@media screen and (max-width: 1199px) {
.rm-padding-lg > .vc_column-inner, .rm-padding-lg > .theiaStickySidebar > .vc_column-inner {
padding-left: 15px !important;
padding-right: 15px !important;
}
.rm-padding-lg30 > .vc_column-inner, .rm-padding-lg30 > .theiaStickySidebar > .vc_column-inner {
padding-left: 30px !important;
padding-right: 30px !important;
}
.vc_row.row-rm-padding-lg {
margin-left: -15px !important;
margin-right: -15px !important;
}
}
@media screen and (max-width: 991px) {
.rm-padding-md > .vc_column-inner, .rm-padding-md > .theiaStickySidebar > .vc_column-inner {
padding-left: 15px !important;
padding-right: 15px !important;
}
.vc_row.row-rm-padding-md {
margin-left: -15px !important;
margin-right: -15px !important;
}
#primary .vc_row.rm-margin-md {
margin-left: -15px !important;
margin-right: -15px !important;
}
.rm-margin-top-md > .vc_column-inner {
margin-top: 0 !important;
}
.add-margin-bottom-md > .vc_column-inner {
margin-bottom: 45px;
}
}
@media screen and (max-width: 767px) {
.sm-col-to {
flex-direction: column-reverse;
display: flex;
}
.rm-padding-xs > .vc_column-inner, .rm-padding-sm > .vc_column-inner, .rm-padding-xs > .theiaStickySidebar > .vc_column-inner, .rm-padding-sm > .theiaStickySidebar > .vc_column-inner {
padding-left: 15px !important;
padding-right: 15px !important;
}
.vc_row.row-rm-padding-sm {
margin-left: -15px !important;
margin-right: -15px !important;
}
.rm-margin-sm > .vc_column-inner {
margin: 0 !important;
}
.wpb_single_image.image_align_xs_left {
text-align: left !important;
}
.wpb_single_image.image_align_xs_center {
text-align: center !important;
}
.wpb_single_image.image_align_xs_right {
text-align: right !important;
}
}
@media screen and (max-width: 575px) { .rm-padding-xs > .vc_column-inner, .rm-padding-xs > .theiaStickySidebar > .vc_column-inner {
padding-left: 15px !important;
padding-right: 15px !important;
}
.vc_row.row-rm-padding-xs {
margin-left: -15px !important;
margin-right: -15px !important;
}
}
.site-h7 #ct-loadding {
background-color: #f90244;
background-image: -webkit-gradient(linear, left top, right top, from(#f90244), to(#b50d1c));
background-image: -webkit-linear-gradient(left, #f90244, #b50d1c);
background-image: -moz-linear-gradient(left, #f90244, #b50d1c);
background-image: -ms-linear-gradient(left, #f90244, #b50d1c);
background-image: -o-linear-gradient(left, #f90244, #b50d1c);
background-image: linear-gradient(left, #f90244, #b50d1c);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f90244', endColorStr='#b50d1c', gradientType='1');
}
.widget_shopping_cart {
position: absolute;
background-color: #fff;
right: 0;
top: 100%;
-webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
-khtml-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
-ms-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
-o-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
width: 280px;
padding: 30px 20px;
-webkit-border-radius: 0px;
-khtml-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
text-align: left;
color: #3a505f;
z-index: -99;
visibility: hidden;
opacity: 0;
margin-top: 25px;
line-height: 1.875;
}
.widget_shopping_cart.open {
z-index: 99;
margin-top: 11px;
visibility: visible;
opacity: 1;
margin-top: 0px;
}
.widget_shopping_cart:before {
content: '';
width: 21px;
height: 11px;
position: absolute;
top: -11px;
left: 0;
right: 0;
margin: auto;
}
.widget_shopping_cart .widget_shopping_title {
font-size: 20px;
border-bottom: 1px solid #ebebeb;
line-height: 1;
padding-bottom: 20px;
margin-bottom: 30px;
color: #152136;
font-family: 'Poppins', sans-serif;
font-weight: 500;
}
.widget_shopping_cart .product_list_widget {
list-style: none;
margin: 0;
}
.widget_shopping_cart .product_list_widget li {
padding: 0 40px 0 0 !important;
position: relative;
margin-bottom: 30px !important;
}
.widget_shopping_cart .product_list_widget li:last-child {
margin-bottom: 0 !important;
}
.widget_shopping_cart .product_list_widget li.empty {
font-size: 16px;
padding: 0 !important;
text-align: center;
}
.widget_shopping_cart .product_list_widget li.empty span {
text-align: center;
margin-bottom: 20px;
display: block;
margin-top: 20px;
}
.widget_shopping_cart .product_list_widget li.empty i {
font-size: 60px;
color: #0d2335;
}
.widget_shopping_cart .product_list_widget li.empty .btn {
line-height: 50px;
width: 100%;
}
.widget_shopping_cart .product_list_widget li.empty .btn:hover {
color: #fff;
}
.widget_shopping_cart .product_list_widget .cart-product-image {
width: 50px;
min-width: 50px;
position: absolute;
top: 0;
left: 0;
}
.widget_shopping_cart .product_list_widget .cart-product-image img {
float: none;
margin: 0;
width: 100%;
}
.widget_shopping_cart .product_list_widget .cart-product-image + .cart-product-meta {
padding-left: 70px;
}
.widget_shopping_cart .product_list_widget .cart-product-meta h3 {
font-size: 16px;
color: #1e2331;
line-height: 22px;
margin-top: -5px;
margin-bottom: 2px;
}
.widget_shopping_cart .product_list_widget .cart-product-meta h3 a {
display: inline-block;
color: inherit;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
width: 100%;
font-weight: normal;
}
.widget_shopping_cart .product_list_widget .cart-product-meta h3 a:hover {
color: #f00;
}
.widget_shopping_cart .product_list_widget .cart-product-meta .quantity {
font-weight: 600;
font-size: 14px;
color: #f00;
border: none;
}
.widget_shopping_cart .product_list_widget .cart-product-meta .remove_from_cart_button {
font-size: 17px;
color: #d9d9d9;
position: absolute;
width: 16px;
height: 16px;
line-height: 16px;
top: 50%;
right: 0;
-webkit-transform: translate(0, -50%);
-khtml-transform: translate(0, -50%);
-moz-transform: translate(0, -50%);
-ms-transform: translate(0, -50%);
-o-transform: translate(0, -50%);
transform: translate(0, -50%);
}
.widget_shopping_cart .product_list_widget .cart-product-meta .remove_from_cart_button:hover {
color: #de3b36;
}
.widget_shopping_cart .widget_shopping_cart_footer {
border-top: 1px solid #ebebeb;
margin-top: 30px;
padding-top: 20px;
}
.widget_shopping_cart .widget_shopping_cart_footer .total {
margin-bottom: 18px;
padding-top: 0;
border: none;
}
.widget_shopping_cart .widget_shopping_cart_footer .total strong {
font-size: 18px;
line-height: 28px;
color: #152136;
font-weight: 700;
}
.widget_shopping_cart .widget_shopping_cart_footer .total span.amount {
color: #152136;
float: right;
font-size: 18px;
line-height: 1;
font-weight: 700;
}
.widget_shopping_cart .widget_shopping_cart_footer .buttons {
margin-bottom: 0;
display: flex;
flex-wrap: nowrap;
margin-left: -10px;
margin-right: -10px;
}
.widget_shopping_cart .widget_shopping_cart_footer .buttons .btn {
padding-left: 20px;
padding-right: 20px;
margin: 0 10px;
width: 50%;
line-height: 50px;
font-size: 13px;
}
.widget_shopping_cart .widget_shopping_cart_footer .buttons .btn:hover {
color: #fff;
}
.entry-content > .woocommerce .cart-empty, .entry-content > .woocommerce .return-to-shop {
text-align: center;
}
.woocommerce .widget-title {
margin-bottom: 30px;
}
.woocommerce ins {
background-color: transparent;
color: #f00;
}
.woocommerce .content-row #secondary.widget-has-sidebar:before {
display: none;
}
.woocommerce #secondary .widget {
padding: 0;
border: none;
margin-bottom: 52px;
}
.woocommerce #secondary .widget:last-child {
margin-bottom: 0;
}
.woocommerce #secondary .widget span.count {
background-color: #f6f6f6;
display: inline-block;
width: 24px;
height: 24px;
-webkit-border-radius: 24px;
-khtml-border-radius: 24px;
-moz-border-radius: 24px;
-ms-border-radius: 24px;
-o-border-radius: 24px;
border-radius: 24px;
line-height: 24px;
text-align: center;
font-size: 13px;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
}
.woocommerce #secondary .widget a:hover > span.count {
background-color: #f00;
color: #fff;
}
.woocommerce #secondary .widget_product_search .search-field {
height: 50px;
border-color: #eaedf4;
-webkit-border-radius: 4px;
-khtml-border-radius: 4px;
-moz-border-radius: 4px;
-ms-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
font-size: 16px;
}
.woocommerce #secondary .widget_product_search .search-field:focus {
border-color: #f00;
}
.woocommerce #secondary .widget_product_search button {
padding: 0;
width: 50px;
height: 50px;
text-indent: -9999px;
position: absolute;
top: 0;
right: 0;
-webkit-border-radius: 0px;
-khtml-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
opacity: 0;
z-index: 3;
}
.woocommerce #secondary .widget_product_search .woocommerce-product-search {
position: relative;
}
.woocommerce #secondary .widget_product_search .woocommerce-product-search:before {
font-weight: 400;
color: #fff;
font-size: 16px;
content: '\f002';
font-family: "Font Awesome 5 Pro";
position: absolute;
top: 50%;
right: 23px;
-webkit-transform: translate(0, -50%);
-khtml-transform: translate(0, -50%);
-moz-transform: translate(0, -50%);
-ms-transform: translate(0, -50%);
-o-transform: translate(0, -50%);
transform: translate(0, -50%);
z-index: 2;
}
.woocommerce #secondary .widget_product_search .woocommerce-product-search:after {
content: '';
z-index: 1;
height: 50px;
width: 50px;
-webkit-border-radius: 3px;
-khtml-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
position: absolute;
top: 0;
right: 0;
background-image: -webkit-linear-gradient(21deg, #b50d1c 0%, #f90244 100%);
background-image: -moz-linear-gradient(21deg, #b50d1c 0%, #f90244 100%);
background-image: -ms-linear-gradient(21deg, #b50d1c 0%, #f90244 100%);
background-image: -o-linear-gradient(21deg, #b50d1c 0%, #f90244 100%);
background-image: linear-gradient(21deg, #b50d1c 0%, #f90244 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#b50d1c 0%', endColorStr='#f90244 100%');
}
.woocommerce #secondary .widget_products ul li {
position: relative;
padding: 0 0 0 95px;
margin-bottom: 15px;
min-height: 80px;
}
.woocommerce #secondary .widget_products ul li img {
margin: 0;
width: 100%;
max-width: 80px;
position: absolute;
top: 0;
left: 0;
}
.woocommerce #secondary .widget_products ul li a {
font-size: 15px;
color: #222;
font-weight: 800;
line-height: 1.25;
margin-top: 8px;
margin-bottom: 6px;
font-family: 'Poppins', sans-serif;
}
.woocommerce #secondary .widget_products ul li a:hover {
color: #f00;
}
@media screen and (max-width: 769px) {
body.woocommerce .coupon #coupon_code, body.woocommerce-page .coupon #coupon_code {
width: 100% !important;
margin-bottom: 10px;
border: none;
-webkit-border-radius: 50px;
-khtml-border-radius: 50px;
-moz-border-radius: 50px;
-ms-border-radius: 50px;
-o-border-radius: 50px;
border-radius: 50px;
}
body.woocommerce .coupon .button, body.woocommerce-page .coupon .button {
width: 100% !important;
}
}
body.woocommerce form .form-row, body.woocommerce-page form .form-row {
padding: 0 0 10px;
}
body.woocommerce table.cart td.actions .coupon .input-text, body.woocommerce-page table.cart td.actions .coupon .input-text {
margin-right: 15px;
}
body.woocommerce textarea, body.woocommerce-page textarea {
padding-top: 24px;
padding-bottom: 24px;
min-height: 140px;
}
body.woocommerce .nice-select, body.woocommerce-page .nice-select {
text-align: left;
-webkit-border-radius: 3px;
-khtml-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
height: 50px;
}
body.woocommerce .nice-select:after, body.woocommerce-page .nice-select:after {
color: inherit;
}
body.woocommerce .nice-select ul.list, body.woocommerce-page .nice-select ul.list {
border: 2px solid #ececec;
}
body.woocommerce form .select2-container--default .select2-selection, body.woocommerce-page form .select2-container--default .select2-selection {
border: 1px solid #e7e8e9;
-webkit-border-radius: 3px;
-khtml-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
height: 50px;
}
body.woocommerce form .select2-container--default .select2-selection .select2-selection__rendered, body.woocommerce-page form .select2-container--default .select2-selection .select2-selection__rendered {
line-height: 48px;
color: #3a505f;
font-size: 16px;
padding-left: 14px;
}
body.woocommerce #respond input#submit, body.woocommerce-page #respond input#submit, body.woocommerce a.button, body.woocommerce-page a.button, body.woocommerce a.wc-forward, body.woocommerce-page a.wc-forward, body.woocommerce button.button, body.woocommerce-page button.button, body.woocommerce input.button, body.woocommerce-page input.button, body.woocommerce .cart button.button, body.woocommerce-page .cart button.button, body.woocommerce a.button.alt, body.woocommerce-page a.button.alt {
border: none;
color: #fff;
font-size: 16px;
padding: 0 37px;
line-height: 50px;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
-webkit-border-radius: 50px;
-khtml-border-radius: 50px;
-moz-border-radius: 50px;
-ms-border-radius: 50px;
-o-border-radius: 50px;
border-radius: 50px;
position: relative;
display: inline-block;
text-align: center;
cursor: pointer;
position: relative;
overflow: hidden;
z-index: 1;
font-weight: 600;
outline: none;
white-space: nowrap;
text-transform: inherit;
background-image: -webkit-linear-gradient(90deg, #b50d1c 0%, #f90244 50%, #b50d1c 100%);
background-image: -moz-linear-gradient(90deg, #b50d1c 0%, #f90244 50%, #b50d1c 100%);
background-image: -ms-linear-gradient(90deg, #b50d1c 0%, #f90244 50%, #b50d1c 100%);
background-image: -o-linear-gradient(90deg, #b50d1c 0%, #f90244 50%, #b50d1c 100%);
background-image: linear-gradient(90deg, #b50d1c 0%, #f90244 50%, #b50d1c 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='', endColorStr='');
background-size: 300%, 1px;
background-position: 0%;
}
body.woocommerce #respond input#submit:hover, body.woocommerce-page #respond input#submit:hover, body.woocommerce a.button:hover, body.woocommerce-page a.button:hover, body.woocommerce a.wc-forward:hover, body.woocommerce-page a.wc-forward:hover, body.woocommerce button.button:hover, body.woocommerce-page button.button:hover, body.woocommerce input.button:hover, body.woocommerce-page input.button:hover, body.woocommerce .cart button.button:hover, body.woocommerce-page .cart button.button:hover, body.woocommerce a.button.alt:hover, body.woocommerce-page a.button.alt:hover, body.woocommerce #respond input#submit:focus, body.woocommerce-page #respond input#submit:focus, body.woocommerce a.button:focus, body.woocommerce-page a.button:focus, body.woocommerce a.wc-forward:focus, body.woocommerce-page a.wc-forward:focus, body.woocommerce button.button:focus, body.woocommerce-page button.button:focus, body.woocommerce input.button:focus, body.woocommerce-page input.button:focus, body.woocommerce .cart button.button:focus, body.woocommerce-page .cart button.button:focus, body.woocommerce a.button.alt:focus, body.woocommerce-page a.button.alt:focus, body.woocommerce #respond input#submit:active, body.woocommerce-page #respond input#submit:active, body.woocommerce a.button:active, body.woocommerce-page a.button:active, body.woocommerce a.wc-forward:active, body.woocommerce-page a.wc-forward:active, body.woocommerce button.button:active, body.woocommerce-page button.button:active, body.woocommerce input.button:active, body.woocommerce-page input.button:active, body.woocommerce .cart button.button:active, body.woocommerce-page .cart button.button:active, body.woocommerce a.button.alt:active, body.woocommerce-page a.button.alt:active {
-webkit-box-shadow: none;
-khtml-box-shadow: none;
-moz-box-shadow: none;
-ms-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
outline: none;
text-decoration: none;
background-color: transparent;
background-position: 100% !important;
background-image: -webkit-linear-gradient(90deg, #b50d1c 0%, #f90244 50%, #b50d1c 100%);
background-image: -moz-linear-gradient(90deg, #b50d1c 0%, #f90244 50%, #b50d1c 100%);
background-image: -ms-linear-gradient(90deg, #b50d1c 0%, #f90244 50%, #b50d1c 100%);
background-image: -o-linear-gradient(90deg, #b50d1c 0%, #f90244 50%, #b50d1c 100%);
background-image: linear-gradient(90deg, #b50d1c 0%, #f90244 50%, #b50d1c 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='', endColorStr='');
color: #fff;
}
.woocommerce .comment-form, .woocommerce-page .comment-form {
max-width: 100%;
}
.woocommerce .woocommerce-message, .woocommerce-page .woocommerce-message, .woocommerce .woocommerce-info, .woocommerce-page .woocommerce-info {
color: inherit;
border-color: #f00;
}
.woocommerce .woocommerce-message:before, .woocommerce-page .woocommerce-message:before, .woocommerce .woocommerce-info:before, .woocommerce-page .woocommerce-info:before {
color: #f00;
}
.woocommerce #content .quantity, .woocommerce-page #content .quantity {
position: relative;
display: inline-block;
-webkit-border-radius: 50px;
-khtml-border-radius: 50px;
-moz-border-radius: 50px;
-ms-border-radius: 50px;
-o-border-radius: 50px;
border-radius: 50px;
}
.woocommerce #content .quantity .qty, .woocommerce-page #content .quantity .qty {
padding: 0 33px 0 22px;
border: none;
background-color: #222;
color: #fff;
font-weight: 700;
-webkit-border-radius: 50px;
-khtml-border-radius: 50px;
-moz-border-radius: 50px;
-ms-border-radius: 50px;
-o-border-radius: 50px;
border-radius: 50px;
font-size: 16px;
-moz-appearance: textfield;
height: 50px;
width: 104px;
}
.woocommerce #content .quantity .qty:-webkit-outer-spin-button, .woocommerce-page #content .quantity .qty:-webkit-outer-spin-button, .woocommerce #content .quantity .qty:-webkit-inner-spin-button, .woocommerce-page #content .quantity .qty:-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
.woocommerce #content .quantity-icon i, .woocommerce-page #content .quantity-icon i {
height: 12px;
width: 12px;
line-height: 12px;
text-align: center;
position: absolute;
color: #fff;
font-size: 12px;
right: 36px;
cursor: pointer;
}
.woocommerce #content .quantity-icon i.quantity-up, .woocommerce-page #content .quantity-icon i.quantity-up {
top: 17px;
}
.woocommerce #content .quantity-icon i.quantity-down, .woocommerce-page #content .quantity-icon i.quantity-down {
bottom: 17px;
}
.woocommerce table.shop_table, .woocommerce-page table.shop_table {
-webkit-border-radius: 0px;
-khtml-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
}
.woocommerce table.shop_table td, .woocommerce-page table.shop_table td {
padding: 12px 15px;
}
.woocommerce table.shop_table th, .woocommerce-page table.shop_table th, .woocommerce table.shop_table tbody th, .woocommerce-page table.shop_table tbody th, .woocommerce table.shop_table tfoot td, .woocommerce-page table.shop_table tfoot td, .woocommerce table.shop_table tfoot th, .woocommerce-page table.shop_table tfoot th {
font-weight: 500;
}
.woocommerce-page #add_payment_method table.cart img, .woocommerce-page.woocommerce-cart table.cart img, .woocommerce-page.woocommerce-checkout table.cart img {
width: 50px;
}
@media screen and (min-width: 992px) {
.woocommerce .content-row {
margin: 0 -15px;
}
.woocommerce #primary.content-has-sidebar {
padding-left: 15px;
padding-right: 15px;
flex: 0 0 75%;
-webkit-flex: 0 0 75%;
-ms-flex: 0 0 75%;
-o-flex: 0 0 75%;
max-width: 75%;
}
.woocommerce #primary.content-has-sidebar > .site-main {
margin-top: -15px;
}
.woocommerce #secondary.widget-has-sidebar {
padding-left: 15px;
padding-right: 15px;
flex: 0 0 25%;
-webkit-flex: 0 0 25%;
-ms-flex: 0 0 25%;
-o-flex: 0 0 25%;
max-width: 25%;
}
}
.woocommerce #secondary .widget_price_filter .ui-slider-horizontal {
height: 4px;
background-color: #e6e6e6;
-webkit-border-radius: 0px;
-khtml-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
}
.woocommerce #secondary .widget_price_filter .ui-slider .ui-slider-range {
background-color: #f00;
}
.woocommerce #secondary .widget_price_filter .ui-slider .ui-slider-handle {
height: 10px;
width: 10px;
background-color: #f00;
-webkit-border-radius: 0px;
-khtml-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
top: -3px;
}
.woocommerce #secondary .widget_price_filter .price_slider_amount {
display: flex;
align-items: center;
flex-wrap: nowrap;
justify-content: center;
padding-top: 10px;
}
.woocommerce #secondary .widget_price_filter .price_slider_amount .button {
line-height: 36px;
font-size: 14px;
margin-right: 20px;
letter-spacing: 0.05em;
padding-left: 18px;
padding-right: 18px;
}
.woocommerce #secondary .widget_price_filter .price_label {
font-size: 14px;
color: #252525;
font-family: 'Poppins', sans-serif;
}
.widget_products .amount {
font-size: 14px;
font-weight: 700;
color: #f00;
}
.widget_products del {
color: #8f8f8f;
}
.widget_products del .amount {
font-weight: 400;
color: #8f8f8f;
}
.widget_products .star-rating-wrap {
display: none !important;
}
.widget_rating_filter .wc-layered-nav-rating a {
font-size: 0px;
display: block;
padding-left: 28px !important;
position: relative;
}
.widget_rating_filter .wc-layered-nav-rating a:before {
content: "";
height: 18px;
width: 18px;
border: 1px solid #e6e6e6;
-webkit-border-radius: 18px;
-khtml-border-radius: 18px;
-moz-border-radius: 18px;
-ms-border-radius: 18px;
-o-border-radius: 18px;
border-radius: 18px;
position: absolute;
top: 1px;
left: 0;
-webkit-transition: all 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
-khtml-transition: all 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
-moz-transition: all 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
-ms-transition: all 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
-o-transition: all 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
transition: all 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
}
.widget_rating_filter .wc-layered-nav-rating a .star-rating {
font-size: 18px;
}
.widget_rating_filter .wc-layered-nav-rating a:hover:before {
border-color: #f00;
background-color: #f00;
}
.widget_rating_filter .wc-layered-nav-rating.chosen a:before {
border-color: #f00;
background-color: #f00;
}
#shop-topbar {
border-bottom: 1px solid #e5e5e5;
background-color: #f7f7f7;
}
#shop-topbar .shop-topbar-item {
margin: 11px 0;
position: relative;
padding-left: 76px;
color: #000;
font-size: 16px;
min-height: 56px;
display: flex;
flex-wrap: nowrap;
align-items: center;
}
#shop-topbar .shop-topbar-item i {
height: 56px;
width: 56px;
-webkit-border-radius: 56px;
-khtml-border-radius: 56px;
-moz-border-radius: 56px;
-ms-border-radius: 56px;
-o-border-radius: 56px;
border-radius: 56px;
border: 1px solid #e5e5e5;
line-height: 54px;
text-align: center;
font-size: 24px;
position: absolute;
top: 0;
left: 0;
}
#shop-topbar .shop-topbar-item span {
font-weight: 500;
}
#shop-breadcrumb {
padding: 23px 0;
}
#shop-breadcrumb ul {
list-style: none;
margin: 0;
}
#shop-breadcrumb ul li {
display: inline-block;
font-size: 16px;
font-weight: 500;
color: #f00;
margin: 10px 0;
padding: 0 12px;
position: relative;
}
#shop-breadcrumb ul li::after {
content: '/';
color: #e9e9e9;
position: absolute;
top: 0;
right: -4px;
}
#shop-breadcrumb ul li:first-child {
padding-left: 0;
}
#shop-breadcrumb ul li:last-child:after {
display: none;
}
#shop-breadcrumb ul li a {
color: #1e2331;
}
#shop-breadcrumb ul li a:hover {
color: #f00;
}
.woocommerce .star-rating-wrap {
display: flex;
align-items: center;
flex-wrap: nowrap;
}
.woocommerce .star-rating-wrap .star-rating {
margin: 0;
}
.woocommerce .star-rating-wrap .count-rating {
font-size: 14px;
margin-left: 8px;
color: #758ca0;
text-transform: capitalize;
}
.woocommerce span.onsale {
height: 45px;
width: 45px;
min-width: inherit;
min-height: inherit;
font-size: 16px;
color: #fff;
padding: 0;
text-align: center;
line-height: 45px;
background-color: #f00;
font-family: 'Poppins', sans-serif;
-webkit-border-radius: 50px;
-khtml-border-radius: 50px;
-moz-border-radius: 50px;
-ms-border-radius: 50px;
-o-border-radius: 50px;
border-radius: 50px;
margin: 0 !important;
top: 14px !important;
left: 29px !important;
right: auto !important;
font-weight: normal;
z-index: 1;
}
.woocommerce .star-rating {
margin: 0;
letter-spacing: 0.2em;
width: 90px;
height: 18px;
}
.woocommerce .star-rating span::before, .woocommerce .star-rating:before {
content: "\f27d\f27d\f27d\f27d\f27d";
font-family: 'Material-Design-Iconic-Font';
font-size: 18px;
}
.woocommerce .star-rating span::before {
color: #f00;
}
.woocommerce .star-rating:before {
color: #d4d4d4;
}
.woocommerce ul.products {
display: flex;
flex-wrap: wrap;
margin: 0 -15px;
}
.woocommerce ul.products li.product {
margin-bottom: 44px;
margin-right: 0;
padding: 0 15px;
}
.woocommerce ul.products li.product.last {
margin-right: 0;
}
@media screen and (min-width: 992px) {
.woocommerce ul.products.columns-4 li.product {
width: calc(25% - 1px);
width: -webkit-calc(25% - 1px);
width: -ms-calc(25% - 1px);
width: -o-calc(25% - 1px);
}
}
@media screen and (max-width: 991px) {
.woocommerce ul.products.columns-4 li.product {
width: calc(33.33% - 1px);
width: -webkit-calc(33.33% - 1px);
width: -ms-calc(33.33% - 1px);
width: -o-calc(33.33% - 1px);
}
}
@media screen and (min-width: 768px) {
.woocommerce ul.products.columns-3 li.product {
width: calc(33.33% - 1px);
width: -webkit-calc(33.33% - 1px);
width: -ms-calc(33.33% - 1px);
width: -o-calc(33.33% - 1px);
}
}
@media (min-width: 576px) and (max-width: 767px) {
.woocommerce ul.products li.product {
width: 50% !important;
}
}
@media screen and (max-width: 575px) {
.woocommerce ul.products li.product {
width: 100% !important;
}
}
@media screen and (min-width: 992px) {
.woocommerce #primary.content-has-sidebar ul.products.columns-4 li.product {
width: calc(33.33% - 1px);
width: -webkit-calc(33.33% - 1px);
width: -ms-calc(33.33% - 1px);
width: -o-calc(33.33% - 1px);
}
}
.woocommerce ul.products li.product .woocommerce-product-title, .woocommerce .woocommerce-product-title {
font-size: 18px;
line-height: 26px;
margin-bottom: 7px;
font-weight: 800;
}
.woocommerce ul.products li.product .woocommerce-product-title a, .woocommerce .woocommerce-product-title a {
color: inherit;
}
.woocommerce ul.products li.product .woocommerce-product-title a:hover, .woocommerce .woocommerce-product-title a:hover {
color: #f00;
}
.woocommerce .woocommerce-product-category {
font-size: 14px;
color: inherit;
margin-bottom: 3px;
}
.woocommerce .woocommerce-product-category a {
color: inherit;
}
.woocommerce .woocommerce-product-category a:hover {
color: #f00;
}
.woocommerce ul.products li.product .price {
font-size: 16px;
line-height: 26px;
font-weight: 700;
color: #f00;
margin-bottom: 0;
}
.woocommerce ul.products li.product .price del {
color: #8f8f8f;
font-weight: 400;
opacity: 1;
}
.woocommerce ul.products li.product .price ins {
color: #f00;
font-weight: inherit;
}
.woocommerce .woocommerce-topbar {
display: flex;
align-items: center;
flex-wrap: wrap;
margin-bottom: 10px;
position: relative;
z-index: 101;
}
.woocommerce .woocommerce-topbar div.woocommerce-result-count {
margin: 0 30px 30px 0px;
flex-grow: 1;
}
.woocommerce .woocommerce-topbar .woocommerce-topbar-ordering {
margin-bottom: 30px;
}
.woocommerce .woocommerce-topbar .woocommerce-result-count, .woocommerce .woocommerce-topbar .woocommerce-topbar-ordering .woocommerce-ordering {
float: none;
margin: 0;
font-size: 16px;
}
.woocommerce .woocommerce-topbar .woocommerce-ordering {
min-width: 220px;
}
.woocommerce .woocommerce-topbar .woocommerce-ordering .nice-select {
background-color: #fff;
}
.woocommerce .woocommerce-product-inner {
background-color: #fff;
-webkit-box-shadow: 0 2px 27px rgba(54, 54, 54, 0.13);
-khtml-box-shadow: 0 2px 27px rgba(54, 54, 54, 0.13);
-moz-box-shadow: 0 2px 27px rgba(54, 54, 54, 0.13);
-ms-box-shadow: 0 2px 27px rgba(54, 54, 54, 0.13);
-o-box-shadow: 0 2px 27px rgba(54, 54, 54, 0.13);
box-shadow: 0 2px 27px rgba(54, 54, 54, 0.13);
padding-bottom: 22px;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header {
position: relative;
overflow: hidden;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header img {
width: auto;
display: inline-block;
margin-bottom: 0 !important;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 99;
display: flex;
flex-wrap: nowrap;
align-items: center;
justify-content: center;
padding: 20px;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
-webkit-transition: all 0.2s ease 0s;
-khtml-transition: all 0.2s ease 0s;
-moz-transition: all 0.2s ease 0s;
-ms-transition: all 0.2s ease 0s;
-o-transition: all 0.2s ease 0s;
transition: all 0.2s ease 0s;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-add-to-cart, .woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-wishlist, .woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-quick-view {
width: 40px;
height: 40px;
margin: 0px;
position: relative;
-webkit-transition: all 0.2s ease 0s;
-khtml-transition: all 0.2s ease 0s;
-moz-transition: all 0.2s ease 0s;
-ms-transition: all 0.2s ease 0s;
-o-transition: all 0.2s ease 0s;
transition: all 0.2s ease 0s;
white-space: nowrap;
-webkit-transform: translateY(-100%) rotate(0);
-khtml-transform: translateY(-100%) rotate(0);
-moz-transform: translateY(-100%) rotate(0);
-ms-transform: translateY(-100%) rotate(0);
-o-transform: translateY(-100%) rotate(0);
transform: translateY(-100%) rotate(0);
opacity: 0;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-add-to-cart .button, .woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-wishlist .button, .woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-quick-view .button {
overflow: visible;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-add-to-cart .view-tooltip, .woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-wishlist .view-tooltip, .woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-quick-view .view-tooltip {
display: none;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-add-to-cart .view-tooltip:first-child, .woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-wishlist .view-tooltip:first-child, .woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-quick-view .view-tooltip:first-child {
display: block;
position: absolute;
top: 50%;
background-color: #f00;
color: #fff;
text-indent: 0px;
right: 65px;
-webkit-transform: translate(0, -50%);
-khtml-transform: translate(0, -50%);
-moz-transform: translate(0, -50%);
-ms-transform: translate(0, -50%);
-o-transform: translate(0, -50%);
transform: translate(0, -50%);
font-size: 12px;
padding: 0 10px;
line-height: 30px;
-webkit-border-radius: 4px;
-khtml-border-radius: 4px;
-moz-border-radius: 4px;
-ms-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
-webkit-transition: all 200ms linear 0ms;
-khtml-transition: all 200ms linear 0ms;
-moz-transition: all 200ms linear 0ms;
-ms-transition: all 200ms linear 0ms;
-o-transition: all 200ms linear 0ms;
transition: all 200ms linear 0ms;
opacity: 0;
visibility: hidden;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-add-to-cart .view-tooltip:first-child:before, .woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-wishlist .view-tooltip:first-child:before, .woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-quick-view .view-tooltip:first-child:before {
content: '';
border-width: 6px;
border-style: solid;
border-color: transparent transparent transparent #f00;
position: absolute;
top: 50%;
right: -11px;
-webkit-transform: translate(0, -50%);
-khtml-transform: translate(0, -50%);
-moz-transform: translate(0, -50%);
-ms-transform: translate(0, -50%);
-o-transform: translate(0, -50%);
transform: translate(0, -50%);
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-add-to-cart:hover .view-tooltip:first-child, .woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-wishlist:hover .view-tooltip:first-child, .woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-quick-view:hover .view-tooltip:first-child {
opacity: 1;
right: 50px;
visibility: visible;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-wishlist {
position: absolute;
top: 70px;
right: 20px;
-webkit-transition-delay: 0.1s;
transition-delay: 0.1s;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-quick-view {
position: absolute;
right: 20px;
top: 120px;
-webkit-transition-delay: 0.2s;
transition-delay: 0.2s;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-add-to-cart {
position: absolute;
top: 20px;
right: 20px;
-webkit-transition-delay: 0;
transition-delay: 0;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-add-to-cart a {
margin-top: 0;
width: 40px;
height: 40px;
border: none;
padding: 0;
text-indent: -9999px;
background-color: #f00;
background-image: none;
-webkit-border-radius: 50px;
-khtml-border-radius: 50px;
-moz-border-radius: 50px;
-ms-border-radius: 50px;
-o-border-radius: 50px;
border-radius: 50px;
-webkit-box-shadow: 0 4px 8px rgba(255, 0, 0, 0.23);
-khtml-box-shadow: 0 4px 8px rgba(255, 0, 0, 0.23);
-moz-box-shadow: 0 4px 8px rgba(255, 0, 0, 0.23);
-ms-box-shadow: 0 4px 8px rgba(255, 0, 0, 0.23);
-o-box-shadow: 0 4px 8px rgba(255, 0, 0, 0.23);
box-shadow: 0 4px 8px rgba(255, 0, 0, 0.23);
color: #fff;
opacity: 1;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-add-to-cart a.loading:before {
opacity: 0;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-add-to-cart a.loading:after {
top: 0 !important;
right: 0px !important;
text-indent: 0px;
height: 40px !important;
width: 40px !important;
line-height: 40px !important;
text-align: center !important;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-add-to-cart a.added {
display: none;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-add-to-cart a:before {
content: '\f07a';
font-size: 13px;
font-family: "Font Awesome 5 Pro";
font-weight: 400;
position: absolute;
top: 50%;
left: 50%;
text-indent: 0px;
transform: translate(-50%, -50%);
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-add-to-cart a.wc-forward:before {
content: '\f00c';
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .yith-wcwl-add-to-wishlist {
margin-top: 0;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .yith-wcwl-add-button, .woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .yith-wcwl-wishlistexistsbrowse, .woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .yith-wcwl-wishlistaddedbrowse {
width: 40px;
height: 40px;
position: relative;
text-indent: -9999px;
color: #222;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .yith-wcwl-add-button .add_to_wishlist, .woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .yith-wcwl-wishlistexistsbrowse .add_to_wishlist, .woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .yith-wcwl-wishlistaddedbrowse .add_to_wishlist, .woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .yith-wcwl-add-button a, .woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .yith-wcwl-wishlistexistsbrowse a, .woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .yith-wcwl-wishlistaddedbrowse a {
height: 40px;
width: 40px;
background-color: #f00;
-webkit-border-radius: 50px;
-khtml-border-radius: 50px;
-moz-border-radius: 50px;
-ms-border-radius: 50px;
-o-border-radius: 50px;
border-radius: 50px;
position: absolute;
top: 0;
left: 0;
color: #fff;
background-image: none;
-webkit-box-shadow: 0 4px 8px rgba(255, 0, 0, 0.23);
-khtml-box-shadow: 0 4px 8px rgba(255, 0, 0, 0.23);
-moz-box-shadow: 0 4px 8px rgba(255, 0, 0, 0.23);
-ms-box-shadow: 0 4px 8px rgba(255, 0, 0, 0.23);
-o-box-shadow: 0 4px 8px rgba(255, 0, 0, 0.23);
box-shadow: 0 4px 8px rgba(255, 0, 0, 0.23);
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .yith-wcwl-add-button .add_to_wishlist i, .woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .yith-wcwl-wishlistexistsbrowse .add_to_wishlist i, .woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .yith-wcwl-wishlistaddedbrowse .add_to_wishlist i, .woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .yith-wcwl-add-button a i, .woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .yith-wcwl-wishlistexistsbrowse a i, .woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .yith-wcwl-wishlistaddedbrowse a i {
font-size: 13px;
position: absolute;
top: 50%;
left: 50%;
text-indent: 0px;
transform: translate(-50%, -50%);
margin: 0;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .yith-wcwl-wishlistexistsbrowse a:before, .woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .yith-wcwl-wishlistaddedbrowse a:before {
content: "\f004";
font-family: "Font Awesome 5 Pro";
font-size: 13px;
color: #fff;
position: absolute;
top: 50%;
left: 50%;
text-indent: 0px;
transform: translate(-50%, -50%);
font-weight: 900;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .yith-wcqv-button {
width: 40px;
height: 40px;
position: relative;
background-color: #f00;
-webkit-box-shadow: 0 4px 8px rgba(255, 0, 0, 0.23);
-khtml-box-shadow: 0 4px 8px rgba(255, 0, 0, 0.23);
-moz-box-shadow: 0 4px 8px rgba(255, 0, 0, 0.23);
-ms-box-shadow: 0 4px 8px rgba(255, 0, 0, 0.23);
-o-box-shadow: 0 4px 8px rgba(255, 0, 0, 0.23);
box-shadow: 0 4px 8px rgba(255, 0, 0, 0.23);
background-image: none;
-webkit-border-radius: 50px;
-khtml-border-radius: 50px;
-moz-border-radius: 50px;
-ms-border-radius: 50px;
-o-border-radius: 50px;
border-radius: 50px;
display: inline-block;
overflow: hidden;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .yith-wcqv-button i {
font-size: 13px;
color: #fff;
position: absolute;
top: 50%;
left: 50%;
text-indent: 0px;
transform: translate(-50%, -50%);
margin: 0;
}
.woocommerce .woocommerce-product-inner:hover .woocommerce-product-header .woocommerce-product-meta {
opacity: 1;
}
.woocommerce .woocommerce-product-inner:hover .woocommerce-product-header .woocommerce-product-meta:before {
opacity: 1;
}
.woocommerce .woocommerce-product-inner:hover .woocommerce-product-header .woocommerce-product-meta .woocommerce-add-to-cart, .woocommerce .woocommerce-product-inner:hover .woocommerce-product-header .woocommerce-product-meta .woocommerce-wishlist, .woocommerce .woocommerce-product-inner:hover .woocommerce-product-header .woocommerce-product-meta .woocommerce-quick-view {
opacity: 1;
-webkit-transform: translateY(0) rotate(360deg);
-khtml-transform: translateY(0) rotate(360deg);
-moz-transform: translateY(0) rotate(360deg);
-ms-transform: translateY(0) rotate(360deg);
-o-transform: translateY(0) rotate(360deg);
transform: translateY(0) rotate(360deg);
}
.woocommerce .woocommerce-product-inner .woocommerce-product-content {
margin-top: 24px;
text-align: center;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-holder .price {
line-height: 1;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-holder .star-rating {
float: none;
margin: 0 auto 8px auto;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-holder .count-rating {
font-size: 14px;
color: rgba(0, 0, 0, 0.5);
margin-left: 8px;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-holder .woocommerce-product-title {
padding: 0px !important;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-holder .woocommerce-product-title a {
color: inherit;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-holder .woocommerce-product-title a:hover {
color: #f00;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-holder .woocommerce-product-subtitle {
color: rgba(51, 51, 51, 0.66);
font-size: 14px;
margin-bottom: 12px;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-holder .woocommerce-product-attr {
margin-bottom: 12px;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-holder .woocommerce-product-attr img {
width: auto !important;
margin: 0 !important;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-holder .star-rating-wrap {
margin-bottom: 3px;
}
.woocommerce .woocommerce-product-inner .woocommerce-product-holder .star-rating-wrap .count-rating {
display: none;
}
.woocommerce .woocommerce-product-inner + .button.yith-wcqv-button {
display: none !important;
}
.woocommerce .product-type-grouped .woocommerce-product-header .woocommerce-product-meta {
display: none !important;
}
.woocommerce nav.woocommerce-pagination {
text-align: center;
}
.woocommerce nav.woocommerce-pagination ul.page-numbers {
border: none;
}
.woocommerce nav.woocommerce-pagination ul.page-numbers li {
border: none;
}
.woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers {
padding: 0;
text-align: center;
height: 56px;
width: 56px;
line-height: 56px;
font-size: 15px;
font-weight: 700;
color: #72839a;
background-color: #fff;
display: inline-block;
margin: 0 6px 10px 6px;
-webkit-border-radius: 56px;
-khtml-border-radius: 56px;
-moz-border-radius: 56px;
-ms-border-radius: 56px;
-o-border-radius: 56px;
border-radius: 56px;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
position: relative;
z-index: 1;
}
.woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers:before, .woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers:after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
}
.woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers:before {
border: 2px solid #edf3fc;
-webkit-border-radius: 56px;
-khtml-border-radius: 56px;
-moz-border-radius: 56px;
-ms-border-radius: 56px;
-o-border-radius: 56px;
border-radius: 56px;
z-index: -2;
}
.woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers:after {
background-image: -webkit-linear-gradient(21deg, #b50d1c 0%, #f90244 100%);
background-image: -moz-linear-gradient(21deg, #b50d1c 0%, #f90244 100%);
background-image: -ms-linear-gradient(21deg, #b50d1c 0%, #f90244 100%);
background-image: -o-linear-gradient(21deg, #b50d1c 0%, #f90244 100%);
background-image: linear-gradient(21deg, #b50d1c 0%, #f90244 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#b50d1c 0%', endColorStr='#f90244 100%');
-webkit-border-radius: 56px;
-khtml-border-radius: 56px;
-moz-border-radius: 56px;
-ms-border-radius: 56px;
-o-border-radius: 56px;
border-radius: 56px;
z-index: -1;
opacity: 0;
}
.woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers.next, .woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers.prev {
font-size: 0;
}
.woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers.next:before, .woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers.next:after {
font-size: 16px;
content: '\f105';
font-weight: 400;
font-family: "Font Awesome 5 Pro";
}
.woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers.prev:before, .woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers.prev:after {
font-size: 16px;
font-weight: 400;
content: '\f104';
font-family: "Font Awesome 5 Pro";
}
.woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers.current, .woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers:hover {
color: #fff;
}
.woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers.current:before, .woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers:hover:before {
opacity: 0;
}
.woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers.current:after, .woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers:hover:after {
opacity: 1;
}
.single-product .woocommerce-social-share {
padding-top: 30px;
}
.single-product .woocommerce-social-share label {
font-size: 14px;
color: #42495b;
font-family: 'Poppins', sans-serif;
margin-right: 20px;
}
.single-product .woocommerce-social-share a {
color: #6a6a6a;
font-size: 16px;
margin-right: 12px;
}
.single-product .woocommerce-social-share a:hover {
color: #f00;
}
.single-product .woocommerce-summary-wrap {
margin: 0 -25px;
}
.single-product .woocommerce-summary-wrap > .col-xl-6 {
padding: 0 25px;
}
.single-product #shop-breadcrumb {
padding-bottom: 46px;
}
.single-product #shop-newsletter {
margin-top: 30px;
}
.single-product .woocommerce-sg-product-price {
margin-bottom: 36px;
}
.single-product section.related {
padding-top: 105px;
}
.single-product section.related h2 {
font-size: 30px;
text-align: center;
margin-bottom: 0;
}
@media screen and (max-width: 991px) {
.single-product section.related h2 {
font-size: 36px;
}
}
.single-product section.related ul.products {
margin-bottom: 0;
}
.single-product section.related ul.products li.product {
margin-bottom: 0 !important;
margin-top: 65px;
}
.single-product #primary div.product .woocommerce-product-details__short-description {
margin-bottom: 32px;
font-size: 14px;
line-height: 24px;
}
.single-product #primary div.product .woocommerce-product-details__short-description p:last-child {
margin-bottom: 0;
}
.single-product #primary div.product form.cart {
margin-bottom: 24px;
}
.single-product #primary div.product form.cart label {
font-size: 18px;
line-height: 30px;
margin-bottom: 0;
font-weight: 700;
color: #232323;
font-family: 'Poppins', sans-serif;
}
@media screen and (max-width: 767px) {
.single-product #primary div.product form.cart label {
font-size: 15px;
line-height: normal;
}
}
.single-product #primary div.product form.cart .reset_variations {
display: none !important;
}
.single-product #primary div.product form.cart .variations {
margin-bottom: 10px;
}
.single-product #primary div.product form.cart .variations td {
padding-bottom: 20px;
}
.single-product #primary div.product form.cart .button-variable-wrapper .button-variable-item {
background-color: #f3f3f3;
border: none;
line-height: 40px;
color: #152136;
text-transform: uppercase;
-webkit-border-radius: 0px;
-khtml-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
-webkit-box-shadow: none;
-khtml-box-shadow: none;
-moz-box-shadow: none;
-ms-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
-webkit-transition: all 0.3s ease 0s;
-khtml-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
margin: 0 5px 5px 0;
width: 40px;
height: 40px;
}
.single-product #primary div.product form.cart .button-variable-wrapper .button-variable-item span {
font-size: 14px;
}
.single-product #primary div.product form.cart .button-variable-wrapper .button-variable-item.selected, .single-product #primary div.product form.cart .button-variable-wrapper .button-variable-item:hover {
background-color: #f00;
color: #fff;
}
.single-product #primary div.product form.cart .color-variable-wrapper .color-variable-item {
padding: 0;
border: none;
-webkit-box-shadow: none;
-khtml-box-shadow: none;
-moz-box-shadow: none;
-ms-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
margin: 0 5px 5px 0;
opacity: 0.5;
}
.single-product #primary div.product form.cart .color-variable-wrapper .color-variable-item span {
border: 2px solid rgba(0, 0, 0, 0.2);
}
.single-product #primary div.product form.cart .color-variable-wrapper .color-variable-item.selected {
opacity: 1;
}
.single-product #primary div.product form.cart.variations_form .woocommerce-variation-add-to-cart {
display: flex;
flex-wrap: wrap;
align-items: center;
}
.single-product #primary div.product form.cart.variations_form .woocommerce-variation-add-to-cart .single_add_to_cart_button, .single-product #primary div.product form.cart.variations_form .woocommerce-variation-add-to-cart .quantity {
margin-top: 20px;
}
.single-product #primary div.product form.cart.variations_form .woocommerce-variation-price {
margin: 25px 0;
}
.single-product #primary div.product form.cart.variations_form button.single_add_to_cart_button {
background-color: #f00;
}
.single-product #primary div.product form.cart.variations_form button.single_add_to_cart_button:hover {
background-color: transparent;
}
.single-product #primary div.product form.cart:not(.variations_form), .single-product #primary div.product form.cart:not(.grouped_form) {
display: flex;
margin: 0;
align-items: center;
flex-wrap: wrap;
}
.single-product #primary div.product form.cart:not(.variations_form) .quantity, .single-product #primary div.product form.cart:not(.grouped_form) .quantity, .single-product #primary div.product form.cart:not(.variations_form) .single_add_to_cart_button, .single-product #primary div.product form.cart:not(.grouped_form) .single_add_to_cart_button {
margin-top: 10px;
}
.single-product #primary div.product .woocommerce-gallery span.onsale {
display: none;
}
.single-product #primary div.product .woocommerce-product-gallery {
width: 100% !important;
margin-bottom: 80px;
}
@media screen and (max-width: 991px) {
.single-product #primary div.product .woocommerce-product-gallery {
margin-bottom: 50px;
}
}
.single-product #primary div.product .woocommerce-product-gallery .flex-control-nav {
margin-top: 20px;
margin-left: -10px;
margin-right: -10px;
}
@media screen and (max-width: 575px) {
.single-product #primary div.product .woocommerce-product-gallery .flex-control-nav {
margin-top: 10px;
margin-left: -5px;
margin-right: -5px;
}
}
.single-product #primary div.product .woocommerce-product-gallery .flex-control-nav li {
padding: 0 10px;
width: 25%;
margin-bottom: 20px;
}
@media screen and (max-width: 575px) {
.single-product #primary div.product .woocommerce-product-gallery .flex-control-nav li {
padding: 0 5px;
}
}
.single-product #primary div.product .woocommerce-product-gallery .flex-control-nav img {
opacity: 1;
}
.single-product #primary div.product .woocommerce-product-gallery .flex-control-nav img.flex-active {
outline: 5px solid rgba(255, 0, 0, 0.1);
outline-offset: -9px;
}
.single-product #primary div.product .woocommerce-product-gallery .woocommerce-product-gallery__image a {
position: relative;
display: block;
}
.single-product #primary div.product .woocommerce-product-gallery .woocommerce-product-gallery__image a:before {
content: '';
background-color: rgba(255, 0, 0, 0.85);
position: absolute;
top: 0;
right: 0;
width: 100%;
height: 100%;
display: block;
opacity: 0;
-webkit-transition: all 0.3s linear;
-khtml-transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-ms-transition: all 0.3s linear;
-o-transition: all 0.3s linear;
transition: all 0.3s linear;
}
.single-product #primary div.product .woocommerce-product-gallery .woocommerce-product-gallery__image a:after {
content: "\f06e";
font-family: "Font Awesome 5 Pro";
font-size: 16px;
height: 40px;
width: 40px;
line-height: 40px;
-webkit-border-radius: 40px;
-khtml-border-radius: 40px;
-moz-border-radius: 40px;
-ms-border-radius: 40px;
-o-border-radius: 40px;
border-radius: 40px;
background-color: #fff;
text-align: center;
color: #f00;
position: absolute;
top: 50%;
-webkit-transform: translate(0%, -50%);
-khtml-transform: translate(0%, -50%);
-moz-transform: translate(0%, -50%);
-ms-transform: translate(0%, -50%);
-o-transform: translate(0%, -50%);
transform: translate(0%, -50%);
left: 0;
right: 0;
margin: auto;
-webkit-transition: all 0.3s linear;
-khtml-transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-ms-transition: all 0.3s linear;
-o-transition: all 0.3s linear;
transition: all 0.3s linear;
opacity: 0;
}
.single-product #primary div.product .woocommerce-product-gallery .woocommerce-product-gallery__image a:hover:before {
opacity: 0.8;
}
.single-product #primary div.product .woocommerce-product-gallery .woocommerce-product-gallery__image a:hover:after {
opacity: 1;
}
.single-product #primary div.product .entry-summary {
width: 100% !important;
margin-bottom: 80px;
}
@media screen and (min-width: 768px) {
.single-product #primary div.product .entry-summary {
position: sticky;
top: 62px;
}
}
.single-product #primary div.product .entry-summary .yith-wcwl-add-to-wishlist {
display: none;
}
.single-product #primary div.product .entry-summary .woocommerce-product-rating {
margin-bottom: 0;
}
.single-product #primary div.product .entry-summary .woocommerce-product-rating .woocommerce-review-link {
display: none;
}
.single-product #primary div.product .entry-summary .woocommerce-product-rating .star-rating-wrap {
margin-bottom: 19px;
}
.single-product #primary div.product .entry-summary .entry-title {
font-size: 30px;
margin-bottom: 9px;
}
.single-product #primary div.product .entry-summary .price {
font-size: 30px;
line-height: 1;
color: #222;
font-family: 'Poppins', sans-serif;
font-weight: 800;
}
.single-product #primary div.product .entry-summary .price ins {
margin-right: 22px;
}
.single-product #primary div.product .entry-summary .price del {
color: #bfc7d3;
}
.single-product #primary div.product .entry-summary .price del .amount {
color: #bfc7d3;
}
.single-product #primary div.product .entry-summary .woocommerce-sg-product-excerpt {
border-top: 1px solid #ddd;
padding-top: 31px;
}
.single-product #primary div.product .entry-summary .woocommerce-sg-product-excerpt > h3 {
font-size: 30px;
margin-bottom: 11px;
}
.single-product #primary div.product .entry-summary .single_add_to_cart_button {
clear: left;
margin-top: 30px;
}
.single-product #primary div.product .woocommerce-tabs ul.wc-tabs {
overflow: visible;
padding: 0;
margin-bottom: 0;
border-bottom: 2px solid #ddd;
display: inline-block;
}
.single-product #primary div.product .woocommerce-tabs ul.wc-tabs:before, .single-product #primary div.product .woocommerce-tabs ul.wc-tabs:after {
display: none !important;
}
@media screen and (max-width: 575px) {
.single-product #primary div.product .woocommerce-tabs ul.wc-tabs {
display: block;
}
}
.single-product #primary div.product .woocommerce-tabs ul.wc-tabs li {
margin: 0 50px 0 0;
padding: 0;
border: none;
background-color: transparent;
position: relative;
z-index: 99;
}
.single-product #primary div.product .woocommerce-tabs ul.wc-tabs li:before, .single-product #primary div.product .woocommerce-tabs ul.wc-tabs li:after {
display: none !important;
}
@media screen and (max-width: 575px) {
.single-product #primary div.product .woocommerce-tabs ul.wc-tabs li {
display: block;
padding: 0;
margin-bottom: 5px;
}
.single-product #primary div.product .woocommerce-tabs ul.wc-tabs li a {
display: block;
}
}
.single-product #primary div.product .woocommerce-tabs ul.wc-tabs li a {
padding: 0 0 17px;
font-size: 24px;
line-height: 1;
color: #696969;
letter-spacing: -0.03em;
font-weight: 400;
font-family: 'Poppins', sans-serif;
position: relative;
}
.single-product #primary div.product .woocommerce-tabs ul.wc-tabs li a:before {
content: '';
width: 0;
left: 0;
right: 0;
margin: auto;
bottom: -2px;
background-color: #f00;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
opacity: 0;
position: absolute;
height: 2px;
}
.single-product #primary div.product .woocommerce-tabs ul.wc-tabs li a:after {
display: none !important;
}
.single-product #primary div.product .woocommerce-tabs ul.wc-tabs li.active > a {
color: #f00;
font-family: 'Poppins', sans-serif;
font-weight: 700;
}
.single-product #primary div.product .woocommerce-tabs ul.wc-tabs li.active > a:before {
opacity: 1;
width: 100%;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel {
font-size: 14px;
line-height: 30px;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel p:last-child {
margin-bottom: 0;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel > h2 {
display: none;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel.panel {
padding-top: 32px;
margin-bottom: 0;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel .shop_attributes {
border: 1px solid #dee2e6;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel .shop_attributes th, .single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel .shop_attributes td {
border-bottom: 1px solid #dee2e6;
font-family: inherit;
color: #152136;
font-weight: normal;
font-style: normal;
padding: 10px;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel .shop_attributes td {
border-left: 1px solid #dee2e6;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel .woocommerce-noreviews {
margin-bottom: 10px !important;
}
.single-product #primary div.product .woocommerce-tabs .tab-product-feature-list {
font-size: 18px;
line-height: 34px;
}
.single-product #primary div.product .woocommerce-tabs .tab-product-feature-list .col-xl-4 {
font-weight: 600;
}
.single-product #primary div.product .woocommerce-tabs .tab-product-feature-list .line-gap {
margin: 0;
width: 100%;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form-rating {
margin-bottom: 15px;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form-rating label {
margin-bottom: 10px;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form-comment label {
margin-bottom: 8px;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .woocommerce-Reviews-title {
font-size: 30px;
margin-bottom: 22px;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-reply-title, .single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .nice-select {
display: none;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form #comment {
height: 140px;
min-height: 140px;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form {
padding: 30px;
border: 1px solid #e9e9e9;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form #commentform {
padding: 0;
background-color: inherit;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist {
padding: 0;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review {
position: relative;
margin-bottom: 20px;
padding: 20px;
border: 1px solid #eee;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .star-rating-wrap {
position: absolute;
right: 10px;
top: 0;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .star-rating-wrap .count-rating {
display: none;
}
@media screen and (max-width: 991px) {
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .star-rating-wrap {
position: static;
margin-bottom: 6px;
}
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .comment_container {
position: relative;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review img.avatar {
padding: 0;
width: 80px;
-webkit-border-radius: 80px;
-khtml-border-radius: 80px;
-moz-border-radius: 80px;
-ms-border-radius: 80px;
-o-border-radius: 80px;
border-radius: 80px;
border: 5px solid #fff;
}
@media screen and (max-width: 575px) {
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review img.avatar {
width: 40px;
border: none;
}
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .comment-text {
border: none;
margin: 0;
padding: 0 0 0 100px;
}
@media screen and (max-width: 767px) {
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .comment-text .star-rating {
float: none;
}
}
@media screen and (max-width: 575px) {
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .comment-text {
padding-left: 60px;
}
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .meta {
display: flex;
align-items: center;
margin: 0 0 8px;
font-size: 16px;
}
@media screen and (max-width: 575px) {
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .meta {
display: block;
}
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .meta .woocommerce-review__published-date {
display: block;
font-size: 14px;
font-weight: 500;
color: #f00;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .meta .woocommerce-review__author {
color: #222;
font-family: 'Poppins', sans-serif;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .meta .woocommerce-review__dash {
display: none;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .meta .woocommerce-review__published-date:before {
content: "\f017";
font-family: FontAwesome;
margin: 0 4px;
}
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .description p {
margin: 0;
}
.single-product #primary div.product .quantity {
margin-right: 30px;
}
.single-product #primary div.product .product_meta {
margin-top: 35px;
display: flex;
flex-wrap: wrap;
font-size: 14px;
color: #758ca0;
}
.single-product #primary div.product .product_meta > span {
margin-right: 34px;
}
.single-product #primary div.product .product_meta a {
color: inherit;
}
.single-product #primary div.product .product_meta a:hover {
color: #f00;
}
@media screen and (min-width: 768px) {
.single-product.header-sticky #primary div.product .entry-summary {
top: 120px;
}
.single-product.header-sticky.admin-bar #primary div.product .entry-summary {
top: 150px;
}
}
body.woocommerce-cart .woocommerce-cart-form .actions .button, body.woocommerce-wishlist .woocommerce-cart-form .actions .button, body.woocommerce-cart #yith-wcwl-form .actions .button, body.woocommerce-wishlist #yith-wcwl-form .actions .button {
padding: 0 20px !important;
}
body.woocommerce-cart .woocommerce-cart-form table.cart td.actions .input-text, body.woocommerce-wishlist .woocommerce-cart-form table.cart td.actions .input-text, body.woocommerce-cart #yith-wcwl-form table.cart td.actions .input-text, body.woocommerce-wishlist #yith-wcwl-form table.cart td.actions .input-text {
width: 180px !important;
height: 50px;
padding: 0 25px;
}
body.woocommerce-cart .woocommerce-cart-form .shop_table, body.woocommerce-wishlist .woocommerce-cart-form .shop_table, body.woocommerce-cart #yith-wcwl-form .shop_table, body.woocommerce-wishlist #yith-wcwl-form .shop_table {
border: none;
border-left: 1px solid #e7e7e7;
border-bottom: 1px solid #e7e7e7;
}
body.woocommerce-cart .woocommerce-cart-form .shop_table thead th, body.woocommerce-wishlist .woocommerce-cart-form .shop_table thead th, body.woocommerce-cart #yith-wcwl-form .shop_table thead th, body.woocommerce-wishlist #yith-wcwl-form .shop_table thead th {
font-size: 15px;
font-weight: 700;
color: #333;
padding: 10px;
border-top: 1px solid #dee2e6;
border-bottom: 2px solid #dee2e6;
}
body.woocommerce-cart .woocommerce-cart-form .shop_table tbody td, body.woocommerce-wishlist .woocommerce-cart-form .shop_table tbody td, body.woocommerce-cart #yith-wcwl-form .shop_table tbody td, body.woocommerce-wishlist #yith-wcwl-form .shop_table tbody td {
text-align: left;
}
body.woocommerce-cart .woocommerce-cart-form tbody .product-name a, body.woocommerce-wishlist .woocommerce-cart-form tbody .product-name a, body.woocommerce-cart #yith-wcwl-form tbody .product-name a, body.woocommerce-wishlist #yith-wcwl-form tbody .product-name a {
color: #152136;
font-size: 16px;
font-weight: 600;
}
body.woocommerce-cart .woocommerce-cart-form tbody .product-name a:hover, body.woocommerce-wishlist .woocommerce-cart-form tbody .product-name a:hover, body.woocommerce-cart #yith-wcwl-form tbody .product-name a:hover, body.woocommerce-wishlist #yith-wcwl-form tbody .product-name a:hover {
color: #f00;
}
body.woocommerce-cart .woocommerce-cart-form tbody .product-name .yith-wcqv-button, body.woocommerce-wishlist .woocommerce-cart-form tbody .product-name .yith-wcqv-button, body.woocommerce-cart #yith-wcwl-form tbody .product-name .yith-wcqv-button, body.woocommerce-wishlist #yith-wcwl-form tbody .product-name .yith-wcqv-button {
display: none;
}
body.woocommerce-cart .woocommerce-cart-form tbody .product-name dl.variation, body.woocommerce-wishlist .woocommerce-cart-form tbody .product-name dl.variation, body.woocommerce-cart #yith-wcwl-form tbody .product-name dl.variation, body.woocommerce-wishlist #yith-wcwl-form tbody .product-name dl.variation {
display: none;
}
body.woocommerce-cart .woocommerce-cart-form tbody .product-price, body.woocommerce-wishlist .woocommerce-cart-form tbody .product-price, body.woocommerce-cart #yith-wcwl-form tbody .product-price, body.woocommerce-wishlist #yith-wcwl-form tbody .product-price, body.woocommerce-cart .woocommerce-cart-form tbody .product-subtotal, body.woocommerce-wishlist .woocommerce-cart-form tbody .product-subtotal, body.woocommerce-cart #yith-wcwl-form tbody .product-subtotal, body.woocommerce-wishlist #yith-wcwl-form tbody .product-subtotal {
color: #152136;
font-size: 16px;
font-weight: 600;
}
body.woocommerce-cart .woocommerce-cart-form tbody .product-price ins, body.woocommerce-wishlist .woocommerce-cart-form tbody .product-price ins, body.woocommerce-cart #yith-wcwl-form tbody .product-price ins, body.woocommerce-wishlist #yith-wcwl-form tbody .product-price ins, body.woocommerce-cart .woocommerce-cart-form tbody .product-subtotal ins, body.woocommerce-wishlist .woocommerce-cart-form tbody .product-subtotal ins, body.woocommerce-cart #yith-wcwl-form tbody .product-subtotal ins, body.woocommerce-wishlist #yith-wcwl-form tbody .product-subtotal ins {
color: #152136;
background-color: transparent;
}
body.woocommerce-cart .woocommerce-cart-form tbody .product-thumbnail, body.woocommerce-wishlist .woocommerce-cart-form tbody .product-thumbnail, body.woocommerce-cart #yith-wcwl-form tbody .product-thumbnail, body.woocommerce-wishlist #yith-wcwl-form tbody .product-thumbnail {
text-align: center !important;
min-width: 120px;
}
body.woocommerce-cart .woocommerce-cart-form tbody .product-thumbnail a, body.woocommerce-wishlist .woocommerce-cart-form tbody .product-thumbnail a, body.woocommerce-cart #yith-wcwl-form tbody .product-thumbnail a, body.woocommerce-wishlist #yith-wcwl-form tbody .product-thumbnail a {
display: block;
}
body.woocommerce-cart .woocommerce-cart-form tbody .product-thumbnail a img, body.woocommerce-wishlist .woocommerce-cart-form tbody .product-thumbnail a img, body.woocommerce-cart #yith-wcwl-form tbody .product-thumbnail a img, body.woocommerce-wishlist #yith-wcwl-form tbody .product-thumbnail a img {
width: 100%;
max-width: 80px;
}
body.woocommerce-cart .woocommerce-cart-form .product-remove, body.woocommerce-wishlist .woocommerce-cart-form .product-remove, body.woocommerce-cart #yith-wcwl-form .product-remove, body.woocommerce-wishlist #yith-wcwl-form .product-remove {
position: relative;
min-width: 50px;
}
body.woocommerce-cart .woocommerce-cart-form .product-remove a.remove, body.woocommerce-wishlist .woocommerce-cart-form .product-remove a.remove, body.woocommerce-cart #yith-wcwl-form .product-remove a.remove, body.woocommerce-wishlist #yith-wcwl-form .product-remove a.remove {
font-size: 0px;
}
body.woocommerce-cart .woocommerce-cart-form .product-remove a.remove:before, body.woocommerce-wishlist .woocommerce-cart-form .product-remove a.remove:before, body.woocommerce-cart #yith-wcwl-form .product-remove a.remove:before, body.woocommerce-wishlist #yith-wcwl-form .product-remove a.remove:before {
content: "\f136";
font-family: "Material-Design-Iconic-Font";
font-size: 18px;
height: 32px;
width: 32px;
line-height: 32px;
background-color: #f00;
color: #fff;
-webkit-border-radius: 32px;
-khtml-border-radius: 32px;
-moz-border-radius: 32px;
-ms-border-radius: 32px;
-o-border-radius: 32px;
border-radius: 32px;
font-weight: normal;
position: absolute;
top: 50%;
-webkit-transform: translate(0, -50%);
-khtml-transform: translate(0, -50%);
-moz-transform: translate(0, -50%);
-ms-transform: translate(0, -50%);
-o-transform: translate(0, -50%);
transform: translate(0, -50%);
left: 0;
right: 0;
margin: auto;
}
body.woocommerce-cart .woocommerce-cart-form .product-remove a.remove:hover:before, body.woocommerce-wishlist .woocommerce-cart-form .product-remove a.remove:hover:before, body.woocommerce-cart #yith-wcwl-form .product-remove a.remove:hover:before, body.woocommerce-wishlist #yith-wcwl-form .product-remove a.remove:hover:before {
color: #fff;
background-color: rgba(255, 0, 0, 0.85);
}
@media screen and (max-width: 769px) {
body.woocommerce-cart .woocommerce-cart-form .product-remove, body.woocommerce-wishlist .woocommerce-cart-form .product-remove, body.woocommerce-cart #yith-wcwl-form .product-remove, body.woocommerce-wishlist #yith-wcwl-form .product-remove {
min-height: 57px;
}
}
body.woocommerce-cart .woocommerce-cart-form table.shop_table, body.woocommerce-wishlist .woocommerce-cart-form table.shop_table, body.woocommerce-cart #yith-wcwl-form table.shop_table, body.woocommerce-wishlist #yith-wcwl-form table.shop_table {
margin-bottom: 40px;
-webkit-border-radius: 0px;
-khtml-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
}
@media screen and (max-width: 769px) {
body.woocommerce-cart .woocommerce-cart-form table.shop_table td, body.woocommerce-wishlist .woocommerce-cart-form table.shop_table td, body.woocommerce-cart #yith-wcwl-form table.shop_table td, body.woocommerce-wishlist #yith-wcwl-form table.shop_table td {
background-color: #fff !important;
}
}
body.woocommerce-cart .cart-collaterals .cart_totals > h2, body.woocommerce-wishlist .cart-collaterals .cart_totals > h2 {
font-size: 28px;
text-transform: capitalize;
margin-bottom: 18px;
font-weight: 800;
}
body.woocommerce-cart .cart-collaterals .cart_totals th, body.woocommerce-wishlist .cart-collaterals .cart_totals th {
color: #222;
font-weight: 800;
vertical-align: middle !important;
}
body.woocommerce-cart .cart-collaterals .cart_totals th + td, body.woocommerce-wishlist .cart-collaterals .cart_totals th + td {
border-left: 1px solid #ebebeb;
}
body.woocommerce-cart .cart-collaterals .cart_totals .cart-subtotal td, body.woocommerce-wishlist .cart-collaterals .cart_totals .cart-subtotal td, body.woocommerce-cart .cart-collaterals .cart_totals .order-total td, body.woocommerce-wishlist .cart-collaterals .cart_totals .order-total td, body.woocommerce-cart .cart-collaterals .cart_totals .cart-subtotal strong, body.woocommerce-wishlist .cart-collaterals .cart_totals .cart-subtotal strong, body.woocommerce-cart .cart-collaterals .cart_totals .order-total strong, body.woocommerce-wishlist .cart-collaterals .cart_totals .order-total strong {
font-weight: 700;
color: #f00;
}
body.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-calculator p, body.woocommerce-wishlist .cart-collaterals .cart_totals .woocommerce-shipping-calculator p {
margin-bottom: 0;
}
body.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-calculator .shipping-calculator-button, body.woocommerce-wishlist .cart-collaterals .cart_totals .woocommerce-shipping-calculator .shipping-calculator-button {
color: #f00;
}
body.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-calculator .shipping-calculator-button:after, body.woocommerce-wishlist .cart-collaterals .cart_totals .woocommerce-shipping-calculator .shipping-calculator-button:after {
content: '\f2f9';
margin-left: 9px;
font-family: "Material-Design-Iconic-Font";
position: relative;
top: 1px;
}
body.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-calculator .shipping-calculator-button:hover, body.woocommerce-wishlist .cart-collaterals .cart_totals .woocommerce-shipping-calculator .shipping-calculator-button:hover {
color: #f00;
}
body.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-calculator .shipping-calculator-form, body.woocommerce-wishlist .cart-collaterals .cart_totals .woocommerce-shipping-calculator .shipping-calculator-form {
padding-top: 10px;
}
body.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout, body.woocommerce-wishlist .cart-collaterals .cart_totals .wc-proceed-to-checkout {
padding-bottom: 0;
}
body.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button, body.woocommerce-wishlist .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button {
margin-bottom: 0;
padding-top: 0;
padding-bottom: 0;
font-size: 16px;
}
body.woocommerce-cart .cart-collaterals .wc-proceed-to-checkout, body.woocommerce-wishlist .cart-collaterals .wc-proceed-to-checkout {
text-align: right;
}
.woocommerce-checkout form.checkout_coupon {
border: 1px solid #eee;
-webkit-border-radius: 0px;
-khtml-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
background-color: #f7f8fa;
}
.woocommerce-checkout form.checkout_coupon .form-row-first {
width: 50%;
padding-right: 30px;
}
.woocommerce-checkout form.checkout_coupon .form-row-last {
width: 50%;
}
.woocommerce-checkout #add_payment_method #payment, .woocommerce-checkout #payment {
-webkit-border-radius: 0px;
-khtml-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
}
.woocommerce-checkout #customer_details {
margin: 0 -15px;
width: inherit;
}
.woocommerce-checkout #customer_details .col-1, .woocommerce-checkout #customer_details .col-2 {
width: 50%;
flex: inherit;
max-width: 100%;
}
@media screen and (max-width: 767px) {
.woocommerce-checkout #customer_details {
margin: 0;
}
.woocommerce-checkout #customer_details .col-1, .woocommerce-checkout #customer_details .col-2 {
width: 100%;
}
}
.woocommerce-checkout #customer_details span.woocommerce-input-wrapper {
width: 100%;
display: block;
}
.woocommerce-checkout #customer_details .woocommerce-billing-fields {
margin-bottom: 36px;
}
.woocommerce-checkout #customer_details .woocommerce-billing-fields > h3 {
font-size: 28px;
font-weight: 800;
margin-bottom: 18px;
text-transform: capitalize;
}
.woocommerce-checkout #customer_details .woocommerce-additional-fields {
margin-bottom: 36px;
}
.woocommerce-checkout #customer_details .woocommerce-additional-fields > h3 {
font-size: 28px;
font-weight: 800;
margin-bottom: 18px;
text-transform: capitalize;
}
.woocommerce-checkout #customer_details .woocommerce-shipping-fields #ship-to-different-address {
font-size: 28px;
cursor: pointer;
-webkit-transition: all 0.3s linear;
-khtml-transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-ms-transition: all 0.3s linear;
-o-transition: all 0.3s linear;
transition: all 0.3s linear;
}
.woocommerce-checkout #customer_details .woocommerce-shipping-fields #ship-to-different-address:hover {
color: #f00;
}
.woocommerce-checkout #customer_details .woocommerce-shipping-fields #ship-to-different-address #ship-to-different-address-checkbox {
position: absolute;
opacity: 0;
}
.woocommerce-checkout #customer_details .woocommerce-shipping-fields #ship-to-different-address .woocommerce-form__label span:after {
content: "\f01a";
font-family: FontAwesome;
margin-left: 14px;
font-weight: normal;
}
.woocommerce-checkout #customer_details #billing_country_field label, .woocommerce-checkout #customer_details #shipping_country_field label, .woocommerce-checkout #customer_details #billing_address_1_field label, .woocommerce-checkout #customer_details #shipping_address_1_field label, .woocommerce-checkout #customer_details #order_comments_field label {
display: none !important;
}
.woocommerce-checkout #customer_details #billing_country_field textarea, .woocommerce-checkout #customer_details #shipping_country_field textarea, .woocommerce-checkout #customer_details #billing_address_1_field textarea, .woocommerce-checkout #customer_details #shipping_address_1_field textarea, .woocommerce-checkout #customer_details #order_comments_field textarea {
padding: 18px 30px;
}
.woocommerce-checkout form.woocommerce-checkout #order_review_heading {
font-size: 28px;
font-weight: 800;
margin-bottom: 18px;
text-transform: capitalize;
}
.woocommerce-checkout form.woocommerce-checkout #order_review th {
font-weight: 500;
vertical-align: middle !important;
}
.woocommerce-checkout form.woocommerce-checkout #order_review th + td {
border-left: 1px solid #ebebeb;
}
.woocommerce-checkout form.woocommerce-checkout #order_review .product-total {
border-left: 1px solid #ebebeb;
}
.woocommerce-checkout form.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table {
margin-bottom: 60px;
border-right: none;
border-top: none;
}
.woocommerce-checkout form.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table th {
font-weight: 700;
}
.woocommerce-checkout form.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table th, .woocommerce-checkout form.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table td {
border-left: none;
}
.woocommerce-checkout form.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table td.product-total, .woocommerce-checkout form.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table .cart-subtotal td, .woocommerce-checkout form.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table .order-total td {
font-size: 14px;
font-weight: 700;
color: #f00;
}
.woocommerce-checkout form.woocommerce-checkout #order_review #payment {
background-color: #f7f8fa;
border: 1px solid #eee;
}
.woocommerce-checkout form.woocommerce-checkout #order_review #payment .about_paypal {
margin-left: 10px;
}
.woocommerce-checkout form.woocommerce-checkout #order_review #payment .wc_payment_methods {
padding: 20px;
border-bottom: 1px solid #eee;
}
.woocommerce-checkout form.woocommerce-checkout #order_review #payment .place-order {
padding: 20px;
margin: 0;
}
.woocommerce-checkout form.woocommerce-checkout #order_review #payment #place_order {
float: none;
margin-top: 10px;
}
.woocommerce-checkout #payment label {
font-size: 16px;
color: rgba(0, 0, 0, 0.87);
font-weight: 600;
}
.woocommerce-account .site-content #primary .woocommerce-form__label.woocommerce-form__label-for-checkbox.woocommerce-form-login__rememberme {
display: block;
width: 100%;
}
.woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation {
margin-bottom: 30px;
width: 30%;
float: left;
padding: 0 15px;
}
@media screen and (max-width: 767px) {
.woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation {
width: 100%;
margin-bottom: 60px;
}
}
.woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation ul {
margin: 0;
list-style: none;
}
.woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation ul li {
border-bottom: 1px solid #eaeaea;
}
.woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation ul li a {
font-size: 16px;
padding: 10px 0;
color: #42495b;
position: relative;
display: block;
}
.woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation ul li a:hover {
color: #f00;
}
.woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation ul li a:before {
content: "\f178";
position: absolute;
left: 0;
top: 50%;
-webkit-transform: translate(0, -50%);
-khtml-transform: translate(0, -50%);
-moz-transform: translate(0, -50%);
-ms-transform: translate(0, -50%);
-o-transform: translate(0, -50%);
transform: translate(0, -50%);
display: block;
font-family: "FontAwesome";
color: #f00;
margin-left: -16px;
opacity: 0;
-webkit-transition: all 300ms linear 0ms;
-khtml-transition: all 300ms linear 0ms;
-moz-transition: all 300ms linear 0ms;
-ms-transition: all 300ms linear 0ms;
-o-transition: all 300ms linear 0ms;
transition: all 300ms linear 0ms;
}
.woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation ul li.is-active > a, .woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation ul li a:hover {
color: inherit;
padding-left: 26px;
}
.woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation ul li.is-active > a:before, .woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation ul li a:hover:before {
margin-left: 0;
opacity: 1;
}
.woocommerce-account .site-content #primary .woocommerce-MyAccount-content {
margin-bottom: 30px;
padding: 0 15px;
width: 70%;
float: left;
}
@media screen and (max-width: 767px) {
.woocommerce-account .site-content #primary .woocommerce-MyAccount-content {
width: 100%;
margin-bottom: 0;
}
}
.woocommerce-account .site-content #primary .woocommerce-MyAccount-content .col-1, .woocommerce-account .site-content #primary .woocommerce-MyAccount-content .col-2 {
flex: inherit;
max-width: inherit;
}
.woocommerce-account .site-content #primary .woocommerce-MyAccount-content .form-row label {
width: 100%;
}
.woocommerce-account .site-content #primary .woocommerce-MyAccount-content .form-row .woocommerce-input-wrapper {
width: 100%;
}
.woocommerce-account .site-content #primary .woocommerce-form {
background-color: #f7f8fa;
border: 1px solid #eee;
padding: 30px;
-webkit-border-radius: 0px;
-khtml-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
max-width: 670px;
margin: 0px auto 30px auto;
}
.woocommerce-account .site-content #primary .woocommerce-form label {
font-weight: 500;
margin-bottom: 2px;
}
.woocommerce-account .site-content #primary .woocommerce-form .woocommerce-Button.button {
margin-right: 16px;
height: auto;
}
.woocommerce-account .site-content #primary .woocommerce-form .woocommerce-LostPassword {
margin-bottom: 0;
}
.woocommerce-account .site-content #primary .woocommerce-form .woocommerce-LostPassword a {
color: #f00;
}
.woocommerce-account .site-content #primary .woocommerce-form .woocommerce-LostPassword a:hover {
color: #f00;
}
.woocommerce-account .site-content #primary .woocommerce-form .woocommerce-form__label-for-checkbox {
padding: 0;
line-height: 50px;
}
.woocommerce-account .site-content #primary .woocommerce-form .woocommerce-form__label-for-checkbox span {
font-size: 15px;
}
.woocommerce-account .site-content #primary .woocommerce-form .woocommerce-form__label-for-checkbox .woocommerce-form__input-checkbox {
position: relative;
top: -1px;
}
.woocommerce-account .site-content #primary .woocommerce-form .woocommerce-Button {
height: 42px;
}
.woocommerce-account .site-content #primary .woocommerce-notices-wrapper + h2 {
text-align: center;
font-size: 24px;
}
.woocommerce-account .site-content #primary #customer_login {
margin: 0 -15px;
width: inherit;
display: flex;
flex-wrap: wrap;
}
.woocommerce-account .site-content #primary #customer_login h2 {
font-size: 24px;
}
.woocommerce-account .site-content #primary #customer_login .u-column1.col-1, .woocommerce-account .site-content #primary #customer_login .u-column2.col-2 {
width: 50%;
flex: inherit;
max-width: 100%;
}
@media screen and (max-width: 767px) {
.woocommerce-account .site-content #primary #customer_login {
margin: 0;
}
.woocommerce-account .site-content #primary #customer_login .u-column1.col-1, .woocommerce-account .site-content #primary #customer_login .u-column2.col-2 {
width: 100%;
padding: 0;
}
}
.woocommerce-account .site-content #primary .woocommerce-password-strength.bad {
background-color: transparent;
padding: 8px 0;
}
body #yith-wcwl-popup-message {
margin-left: -108px;
display: none;
bottom: 30px;
top: auto;
right: 30px;
left: auto;
background-color: #f00;
border-radius: 3px;
border: none;
color: #fff;
padding: 0 20px;
}
body #yith-quick-view-modal .yith-quick-view-overlay {
background-color: rgba(0, 0, 0, 0.85);
}
body #yith-quick-view-modal .yith-wcqv-main {
-webkit-box-shadow: none;
-khtml-box-shadow: none;
-moz-box-shadow: none;
-ms-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
-webkit-border-radius: 4px;
-khtml-border-radius: 4px;
-moz-border-radius: 4px;
-ms-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
}
body #yith-quick-view-modal .yith-wcqv-head #yith-quick-view-close {
color: rgba(0, 0, 0, 0.2);
opacity: 1;
border: 1px solid rgba(0, 0, 0, 0.2);
-webkit-border-radius: 3px;
-khtml-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
font-size: 0px;
}
body #yith-quick-view-modal .yith-wcqv-head #yith-quick-view-close:before {
content: "\e646";
font-family: 'themify';
font-size: 13px;
}
body #yith-quick-view-modal .yith-wcqv-head #yith-quick-view-close:hover {
border-color: #f00;
color: #fff;
background-color: #f00;
}
body #yith-quick-view-modal .onsale {
top: 29px !important;
}
body #yith-quick-view-modal #yith-quick-view-content div.images {
padding: 15px;
margin-bottom: 0;
width: 50%;
}
@media screen and (max-width: 575px) {
body #yith-quick-view-modal #yith-quick-view-content div.images {
width: 100%;
margin-bottom: 30px;
}
}
body #yith-quick-view-modal #yith-quick-view-content .entry-summary {
padding: 30px 30px 15px 15px;
width: 50%;
}
@media screen and (max-width: 575px) {
body #yith-quick-view-modal #yith-quick-view-content .entry-summary {
width: 100%;
}
}
body #yith-quick-view-modal #yith-quick-view-content .entry-summary h1.product_title {
font-size: 30px;
margin-bottom: 5px;
}
body #yith-quick-view-modal #yith-quick-view-content .entry-summary .woocommerce-product-rating {
margin-bottom: 10px;
}
body #yith-quick-view-modal #yith-quick-view-content .entry-summary .price {
font-weight: 600;
color: #f00;
}
body #yith-quick-view-modal #yith-quick-view-content .entry-summary .price del {
color: #666;
}
body #yith-quick-view-modal #yith-quick-view-content .entry-summary form.cart {
border-top: 1px solid #f7f9fb;
border-bottom: 1px solid #f7f9fb;
padding: 18px 0;
margin-bottom: 30px;
}
body #yith-quick-view-modal #yith-quick-view-content .entry-summary form.cart label {
font-size: 18px;
line-height: 30px;
margin-bottom: 0;
font-weight: 700;
color: #232323;
font-family: 'Poppins', sans-serif;
}
body #yith-quick-view-modal #yith-quick-view-content .entry-summary form.cart .reset_variations {
display: none !important;
}
body #yith-quick-view-modal #yith-quick-view-content .entry-summary form.cart .button-variable-wrapper .button-variable-item {
background-color: #f3f3f3;
border: none;
line-height: 40px;
color: #6f6f6f;
text-transform: uppercase;
-webkit-border-radius: 0px;
-khtml-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
-webkit-box-shadow: none;
-khtml-box-shadow: none;
-moz-box-shadow: none;
-ms-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
-webkit-transition: all 0.3s ease 0s;
-khtml-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
margin: 0 5px 5px 0;
width: 40px;
height: 40px;
}
body #yith-quick-view-modal #yith-quick-view-content .entry-summary form.cart .button-variable-wrapper .button-variable-item span {
font-size: 14px;
}
body #yith-quick-view-modal #yith-quick-view-content .entry-summary form.cart .button-variable-wrapper .button-variable-item.selected, body #yith-quick-view-modal #yith-quick-view-content .entry-summary form.cart .button-variable-wrapper .button-variable-item:hover {
background-color: #f00;
color: #fff;
}
body #yith-quick-view-modal #yith-quick-view-content .entry-summary form.cart .color-variable-wrapper .color-variable-item {
padding: 0;
border: none;
-webkit-box-shadow: none;
-khtml-box-shadow: none;
-moz-box-shadow: none;
-ms-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
margin: 0 5px 5px 0;
opacity: 0.5;
}
body #yith-quick-view-modal #yith-quick-view-content .entry-summary form.cart .color-variable-wrapper .color-variable-item span {
border: 2px solid rgba(0, 0, 0, 0.2);
}
body #yith-quick-view-modal #yith-quick-view-content .entry-summary form.cart .color-variable-wrapper .color-variable-item.selected {
opacity: 1;
}
body #yith-quick-view-modal #yith-quick-view-content .entry-summary .woocommerce-product-details__short-description p {
margin-bottom: 24px;
}
body #yith-quick-view-modal #yith-quick-view-content .entry-summary .product_meta .sku_wrapper, body #yith-quick-view-modal #yith-quick-view-content .entry-summary .product_meta .posted_in, body #yith-quick-view-modal #yith-quick-view-content .entry-summary .product_meta .tagged_as {
display: block;
font-weight: 600;
font-size: 15px;
}
body #yith-quick-view-modal #yith-quick-view-content .entry-summary .product_meta .sku_wrapper span, body #yith-quick-view-modal #yith-quick-view-content .entry-summary .product_meta .posted_in span, body #yith-quick-view-modal #yith-quick-view-content .entry-summary .product_meta .tagged_as span, body #yith-quick-view-modal #yith-quick-view-content .entry-summary .product_meta .sku_wrapper a, body #yith-quick-view-modal #yith-quick-view-content .entry-summary .product_meta .posted_in a, body #yith-quick-view-modal #yith-quick-view-content .entry-summary .product_meta .tagged_as a {
color: #f00;
margin-left: 7px;
}
body #yith-quick-view-modal #yith-quick-view-content .entry-summary .product_meta .sku_wrapper a:hover, body #yith-quick-view-modal #yith-quick-view-content .entry-summary .product_meta .posted_in a:hover, body #yith-quick-view-modal #yith-quick-view-content .entry-summary .product_meta .tagged_as a:hover {
color: #b50d1c;
}
body #yith-quick-view-modal #yith-quick-view-content .entry-summary .product_meta .posted_in {
display: none;
}
body #yith-quick-view-modal #yith-quick-view-content .entry-summary .quantity .qty {
margin: 0 20px 0 0;
padding: 0 12px;
width: 70px;
height: 50px;
}
.wishlist-title {
width: 100%;
text-align: center;
margin: 0 0 45px;
}
.shop_table.cart.wishlist_table {
margin-bottom: 0 !important;
}
#yith-wcwl-form tfoot td {
display: none;
}
#yith-wcwl-form .product-stock-status {
font-size: 16px;
font-weight: 600;
}
#yith-wcwl-form .product-stock-status .wishlist-in-stock {
color: #b50d1c !important;
}
#yith-wcwl-form .wishlist-empty {
text-align: center !important;
}
#yith-wcwl-form .product-add-to-cart {
text-align: center !important;
}
#yith-wcwl-form .product-add-to-cart a.button {
padding: 0 20px;
background-color: #f00;
color: #fff;
line-height: 50px;
display: inline-block !important;
}
#yith-wcwl-form .product-add-to-cart a.button:hover {
background-color: #b50d1c;
}
#yith-wcwl-form .product-add-to-cart a.button.loading {
padding-right: 30px;
}
#yith-wcwl-form .product-add-to-cart a.button.loading:after {
top: 0 !important;
right: 0px !important;
text-indent: 0px;
height: 50px !important;
width: 50px !important;
line-height: 50px !important;
text-align: center !important;
}
#yith-wcwl-form .yith-wcwl-share {
display: none;
}
@media screen and (max-width: 767px) {
#yith-wcwl-form {
overflow-x: scroll;
}
#yith-wcwl-form .cart.wishlist_table {
min-width: 767px;
}
}
body.rtl {
direction: rtl;
unicode-bidi: embed;
text-align: right;
}
body.rtl .vc_col-lg-1, body.rtl .vc_col-lg-10, body.rtl .vc_col-lg-11, body.rtl .vc_col-lg-12, body.rtl .vc_col-lg-2, body.rtl .vc_col-lg-3, body.rtl .vc_col-lg-4, body.rtl .vc_col-lg-5, body.rtl .vc_col-lg-6, body.rtl .vc_col-lg-7, body.rtl .vc_col-lg-8, body.rtl .vc_col-lg-9, body.rtl .vc_col-md-1, body.rtl .vc_col-md-10, body.rtl .vc_col-md-11, body.rtl .vc_col-md-12, body.rtl .vc_col-md-2, body.rtl .vc_col-md-3, body.rtl .vc_col-md-4, body.rtl .vc_col-md-5, body.rtl .vc_col-md-6, body.rtl .vc_col-md-7, body.rtl .vc_col-md-8, body.rtl .vc_col-md-9, body.rtl .vc_col-sm-1, body.rtl .vc_col-sm-10, body.rtl .vc_col-sm-11, body.rtl .vc_col-sm-12, body.rtl .vc_col-sm-2, body.rtl .vc_col-sm-3, body.rtl .vc_col-sm-4, body.rtl .vc_col-sm-5, body.rtl .vc_col-sm-6, body.rtl .vc_col-sm-7, body.rtl .vc_col-sm-8, body.rtl .vc_col-sm-9, body.rtl .vc_col-xs-1, body.rtl .vc_col-xs-10, body.rtl .vc_col-xs-11, body.rtl .vc_col-xs-12, body.rtl .vc_col-xs-2, body.rtl .vc_col-xs-3, body.rtl .vc_col-xs-4, body.rtl .vc_col-xs-5, body.rtl .vc_col-xs-6, body.rtl .vc_col-xs-7, body.rtl .vc_col-xs-8, body.rtl .vc_col-xs-9 {
float: right;
}
body.rtl .text-left, body.rtl .align-left {
text-align: right;
}
body.rtl .owl-dots .owl-dot {
margin: 0 8px;
}
body.rtl .owl-nav {
direction: ltr;
}
body.rtl input[type="text"], body.rtl input[type="email"], body.rtl input[type="url"], body.rtl input[type="password"], body.rtl input[type="search"], body.rtl input[type="tel"], body.rtl input[type="number"], body.rtl input[type="range"], body.rtl input[type="date"], body.rtl input[type="month"], body.rtl input[type="week"], body.rtl input[type="time"], body.rtl input[type="datetime"], body.rtl input[type="datetime-local"], body.rtl input[type="color"], body.rtl textarea, body.rtl select, body.rtl .nice-select {
text-align: right;
}
body.rtl .nice-select:after {
right: auto;
left: 18px;
}
body.rtl .nice-select {
padding-left: 40px;
padding-right: 18px;
}
body.rtl .nice-select .option {
text-align: right;
}
body.rtl #pagetitle h1.page-title {
margin-right: 0;
margin-left: 30px;
}
body.rtl .wpcf7-form .input-filled > i {
right: auto;
left: 38px;
}
body.rtl .wpcf7-form .input-filled > i + .wpcf7-form-control-wrap .wpcf7-form-control:not(.wpcf7-submit) {
padding-right: 40px;
padding-left: 70px;
}
body.rtl #pagetitle .page-title-search .search-field {
padding-right: 30px;
padding-left: 86px;
}
body.rtl #pagetitle .page-title-search .search-submit {
right: auto;
left: 0;
}
@media screen and (min-width: 1200px) {
.rtl .content-row #primary.content-has-sidebar.float-left + .widget-has-sidebar {
border-left: none;
border-right: 1px solid #e5e5e5;
}
}
@media screen and (min-width: 992px) {
.rtl .text-left-lg {
text-align: right !important;
}
.rtl .text-right-lg {
text-align: left !important;
}
}
@media screen and (max-width: 1199px) {
.rtl .align-left-md {
text-align: right;
}
.rtl .align-right-md {
text-align: left;
}
}
@media screen and (max-width: 991px) {
.rtl .text-left-md {
text-align: right !important;
}
.rtl .text-right-md {
text-align: left !important;
}
.rtl .align-left-sm {
text-align: right;
}
.rtl .align-right-sm {
text-align: left;
}
}
@media screen and (max-width: 767px) {
.rtl { }
.rtl .text-left-sm {
text-align: right !important;
}
.rtl .text-right-sm {
text-align: left !important;
}
.rtl .align-left-xs {
text-align: right;
}
.rtl .align-right-xs {
text-align: left;
}
}
@media screen and (min-width: 992px) {
.rtl #header-wrap .btn-header {
margin-left: 0;
margin-right: 30px;
}
.rtl #header-wrap.header-layout2 #header-main .header-branding a {
left: 0;
}
.rtl .primary-menu .sub-menu li a:before {
left: auto;
right: 0;
}
.rtl .primary-menu .sub-menu li a:hover {
padding-left: 0;
padding-right: 20px;
}
.rtl #header-wrap .primary-menu > li {
float: right;
margin-left: 40px;
}
.rtl #header-wrap .primary-menu > li.menu-item-has-children > a::after {
margin-left: 0;
margin-right: 5px;
}
.rtl #header-wrap .primary-menu .sub-menu {
left: auto;
right: 0;
}
.rtl #header-wrap .header-menu-right {
margin-left: 0;
margin-right: 22px;
}
}
@media screen and (max-width: 991px) {
.rtl #header-wrap .site-branding {
text-align: right;
}
.rtl #header-wrap .site-branding .logo-dark {
left: auto;
right: 0;
}
.rtl #header-wrap .primary-menu li {
text-align: right;
}
.rtl #header-wrap .primary-menu .sub-menu {
left: auto;
right: 0;
}
.rtl #header-wrap .menu-mobile-close {
right: auto;
left: 0;
}
.rtl #header-wrap #main-menu-mobile {
right: auto;
left: 15px;
}
.rtl #header-wrap .main-menu-toggle {
right: auto;
left: 12px;
}
.rtl #header-wrap .header-navigation {
right: 0;
}
.rtl #header-wrap .header-navigation .main-navigation {
-webkit-transform: translateX(100%);
-khtml-transform: translateX(100%);
-moz-transform: translateX(100%);
-ms-transform: translateX(100%);
-o-transform: translateX(100%);
transform: translateX(100%);
left: auto;
}
.rtl #header-wrap .header-navigation.navigation-open .main-navigation {
-webkit-transform: translateX(0%);
-khtml-transform: translateX(0%);
-moz-transform: translateX(0%);
-ms-transform: translateX(0%);
-o-transform: translateX(0%);
transform: translateX(0%);
}
.rtl #header-wrap .header-mobile-search .search-submit {
right: auto;
left: 0px;
}
}
.rtl #header-wrap .header-branding .logo-sticky, .rtl #header-wrap .header-branding .logo-mobile, .rtl #header-wrap .header-branding .logo-dark {
left: auto;
right: 0; }
.rtl .ct-heading .ct-typingout-typed .ct-typingout-animation:after {
display: none;
}
.rtl .ct-process-layout1::before {
-webkit-transform: scaleX(-1);
-khtml-transform: scaleX(-1);
-moz-transform: scaleX(-1);
-ms-transform: scaleX(-1);
-o-transform: scaleX(-1);
transform: scaleX(-1);
}
.rtl .ct-process-layout1 .ct-process-button a i {
margin-left: 0;
margin-right: 4px;
}
.rtl .ct-process-layout1 .ct-process-button a i:before {
content: '\f104';
}
.rtl .ct-counter-default .ct-counter-icon + .ct-counter-holder {
padding-left: 0;
padding-right: 40px;
}
.rtl .vc_tta-container .vc_tta-tabs.vc_tta-style-default .vc_tta-tabs-container .vc_tta-tabs-list li:first-child a {
-webkit-border-radius: 0 52px 52px 0;
-khtml-border-radius: 0 52px 52px 0;
-moz-border-radius: 0 52px 52px 0;
-ms-border-radius: 0 52px 52px 0;
-o-border-radius: 0 52px 52px 0;
border-radius: 0 52px 52px 0;
}
.rtl .vc_tta-container .vc_tta-tabs.vc_tta-style-default .vc_tta-tabs-container .vc_tta-tabs-list li:last-child a {
-webkit-border-radius: 52px 0 0 52px;
-khtml-border-radius: 52px 0 0 52px;
-moz-border-radius: 52px 0 0 52px;
-ms-border-radius: 52px 0 0 52px;
-o-border-radius: 52px 0 0 52px;
border-radius: 52px 0 0 52px;
}
.rtl .ct-progress-layout1 { }
.rtl .ct-progress-layout1 .ct-progress-title {
margin-right: 0;
margin-left: 20px;
}
.rtl .ct-progress-layout1 .ct-progress.progress {
margin-right: 0;
margin-left: 68px;
}
.rtl .ct-progress-layout1 .ct-progress.progress .progress-bar span {
margin-left: 0;
margin-right: 20px;
right: auto;
left: -68px;
}
.rtl .entry-meta::before, .rtl .item-meta::before {
left: auto;
right: 0;
}
.rtl .entry-meta li, .rtl .item-meta li {
padding-right: 0;
padding-left: 24px;
}
.rtl .entry-meta li i, .rtl .item-meta li i {
margin-right: 0;
margin-left: 6px;
}
.rtl .widget_search .search-form .search-submit {
right: auto;
left: 0;
border-left: none;
border-right: 1px solid #ececf0;
}
.rtl .widget-title::before, .rtl .comments-title::before, .rtl .comment-reply-title::before {
left: auto;
right: 0;
}
.rtl .widget_ct_recent_posts .entry-media {
margin-right: 0;
margin-left: 25px;
}
.rtl.single-post .content-area .entry-content-bottom .entry-tags {
margin-right: 0;
margin-left: 30px;
}
.rtl.single-post .content-area .entry-content-bottom .entry-social a {
margin-right: 0;
margin-left: 5px;
}
.rtl .comment-inner img.avatar {
margin-right: 0;
margin-left: 30px;
}
@media screen and (max-width: 767px) {
.rtl .comment-inner img.avatar {
margin-left: 0;
}
}
.rtl .comment-reply {
right: auto;
left: 23px; }
.rtl .site-footer .bottom-footer .bottom-social a {
margin-left: 0;
margin-right: 9px;
}
.rtl .contact-info ul li {
padding-left: 0;
padding-right: 27px;
}
.rtl .contact-info ul li i {
left: auto;
right: 0;
}
@media screen and (min-width: 1200px) {
.rtl .site-footer .top-footer .ct-footer-item.col-xl-3:nth-child(1) {
padding-right: 0px;
padding-left: 60px;
}
}
.rtl .site-footer .top-footer ul.menu li > a {
padding-left: 0;
padding-right: 14px;
}
.rtl .site-footer .top-footer ul.menu li > a:before {
left: auto;
right: 0;
content: '\f104';
}
.rtl .site-footer .top-footer ul.menu li > a:hover, .rtl .site-footer .top-footer ul.menu li.current_page_item > a, .rtl .site-footer .top-footer ul.menu li.current-menu-item > a, .rtl .site-footer .top-footer ul.menu li.current_page_ancestor > a, .rtl .site-footer .top-footer ul.menu li.current-menu-ancestor > a {
padding-left: 0;
padding-right: 21px;
}
.rtl .site-footer .top-footer ul.menu li > a:hover:before, .rtl .site-footer .top-footer ul.menu li.current_page_item > a:before, .rtl .site-footer .top-footer ul.menu li.current-menu-item > a:before, .rtl .site-footer .top-footer ul.menu li.current_page_ancestor > a:before, .rtl .site-footer .top-footer ul.menu li.current-menu-ancestor > a:before {
right: 8px;
}