.animated {
animation-duration: 1s;
animation-fill-mode: both;
}
.animated.infinite {
animation-iteration-count: infinite;
}
.animated.hinge {
animation-duration: 2s;
}
.animated.bounceIn,
.animated.bounceOut {
animation-duration: 0.75s;
}
.animated.flipOutX,
.animated.flipOutY {
animation-duration: 0.75s;
}
@keyframes bounce {
from, 20%, 53%, 80%, to {
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
transform: translate3d(0, 0, 0);
}
40%, 43% {
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
transform: translate3d(0, -30px, 0);
}
70% {
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
transform: translate3d(0, -15px, 0);
}
90% {
transform: translate3d(0, -4px, 0);
}
}
.bounce {
animation-name: bounce;
transform-origin: center bottom;
} @keyframes jump-1 {
0% {
transform: translate3d(0, 0, 0);
}
40% {
transform: translate3d(0, 20px, 0);
}
100% {
transform: translate3d(0, 0, 0);
}
}
@keyframes jump-2 {
0% {
transform: translate3d(0, 0, 0);
}
50% {
transform: translate3d(0, 30px, 0);
}
100% {
transform: translate3d(0, 0, 0);
}
}
@keyframes jump-3 {
0% {
transform: translate3d(0, 0, 0);
}
40% {
transform: translate3d(0, 50px, 0) scale(0.7);
}
100% {
transform: translate3d(0, 0, 0);
}
}
@keyframes jump-4 {
0% {
transform: translate3d(0, 0, 0);
}
40% {
transform: translate3d(0, 20px, 0) scale(0.8);
}
100% {
transform: translate3d(0, 0, 0);
}
}
@keyframes jump-5 {
0% {
transform: translate3d(0, 0, 0);
}
40% {
transform: translate3d(0, 10px, 0);
}
100% {
transform: translate3d(0, 0, 0);
}
}
@keyframes flash {
from, 50%, to {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
.flash {
animation-name: flash;
}
@keyframes pulse {
from {
transform: scale3d(1, 1, 1);
}
50% {
transform: scale3d(1.05, 1.05, 1.05);
}
to {
transform: scale3d(1, 1, 1);
}
}
@keyframes pulse-border {
0% {
transform: scale(100%);
opacity: 1;
}
100% {
transform: scale(350%);
opacity: 0;
}
}
.pulse {
animation-name: pulse;
}
@keyframes rubberBand {
from {
transform: scale3d(1, 1, 1);
}
30% {
transform: scale3d(1.25, 0.75, 1);
}
40% {
transform: scale3d(0.75, 1.25, 1);
}
50% {
transform: scale3d(1.15, 0.85, 1);
}
65% {
transform: scale3d(0.95, 1.05, 1);
}
75% {
transform: scale3d(1.05, 0.95, 1);
}
to {
transform: scale3d(1, 1, 1);
}
}
.rubberBand {
animation-name: rubberBand;
}
@keyframes shake {
from, to {
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
transform: translate3d(10px, 0, 0);
}
}
.shake {
animation-name: shake;
}
@keyframes swing {
20% {
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
transform: rotate3d(0, 0, 1, -5deg);
}
to {
transform: rotate3d(0, 0, 1, 0deg);
}
}
.swing {
transform-origin: top center;
animation-name: swing;
}
@keyframes tada {
from {
transform: scale3d(1, 1, 1);
}
10%, 20% {
transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%, 60%, 80% {
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
to {
transform: scale3d(1, 1, 1);
}
}
.tada {
animation-name: tada;
} @keyframes wobble {
from {
transform: none;
}
15% {
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
to {
transform: none;
}
}
.wobble {
animation-name: wobble;
}
@keyframes jello {
from, 11.1%, to {
transform: none;
}
22.2% {
transform: skewX(-12.5deg) skewY(-12.5deg);
}
33.3% {
transform: skewX(6.25deg) skewY(6.25deg);
}
44.4% {
transform: skewX(-3.125deg) skewY(-3.125deg);
}
55.5% {
transform: skewX(1.5625deg) skewY(1.5625deg);
}
66.6% {
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
.jello {
animation-name: jello;
transform-origin: center;
}
@keyframes bounceIn {
from, 20%, 40%, 60%, 80%, to {
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
transform: scale3d(0.3, 0.3, 0.3);
}
20% {
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
transform: scale3d(0.9, 0.9, 0.9);
}
60% {
opacity: 1;
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
transform: scale3d(0.97, 0.97, 0.97);
}
to {
opacity: 1;
transform: scale3d(1, 1, 1);
}
}
.bounceIn {
animation-name: bounceIn;
}
@keyframes bounceInDown {
from, 60%, 75%, 90%, to {
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
transform: translate3d(0, 25px, 0);
}
75% {
transform: translate3d(0, -10px, 0);
}
90% {
transform: translate3d(0, 5px, 0);
}
to {
transform: none;
}
}
.bounceInDown {
animation-name: bounceInDown;
}
@keyframes bounceInLeft {
from, 60%, 75%, 90%, to {
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
transform: translate3d(25px, 0, 0);
}
75% {
transform: translate3d(-10px, 0, 0);
}
90% {
transform: translate3d(5px, 0, 0);
}
to {
transform: none;
}
}
.bounceInLeft {
animation-name: bounceInLeft;
}
@keyframes bounceInRight {
from, 60%, 75%, 90%, to {
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
from {
opacity: 0;
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
transform: translate3d(-25px, 0, 0);
}
75% {
transform: translate3d(10px, 0, 0);
}
90% {
transform: translate3d(-5px, 0, 0);
}
to {
transform: none;
}
}
.bounceInRight {
animation-name: bounceInRight;
}
@keyframes bounceInUp {
from, 60%, 75%, 90%, to {
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
from {
opacity: 0;
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
transform: translate3d(0, -20px, 0);
}
75% {
transform: translate3d(0, 10px, 0);
}
90% {
transform: translate3d(0, -5px, 0);
}
to {
transform: translate3d(0, 0, 0);
}
}
.bounceInUp {
animation-name: bounceInUp;
}
@keyframes bounceOut {
20% {
transform: scale3d(0.9, 0.9, 0.9);
}
50%, 55% {
opacity: 1;
transform: scale3d(1.1, 1.1, 1.1);
}
to {
opacity: 0;
transform: scale3d(0.3, 0.3, 0.3);
}
}
.bounceOut {
animation-name: bounceOut;
}
@keyframes bounceOutDown {
20% {
transform: translate3d(0, 10px, 0);
}
40%, 45% {
opacity: 1;
transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
transform: translate3d(0, 2000px, 0);
}
}
.bounceOutDown {
animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
20% {
opacity: 1;
transform: translate3d(20px, 0, 0);
}
to {
opacity: 0;
transform: translate3d(-2000px, 0, 0);
}
}
.bounceOutLeft {
animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
20% {
opacity: 1;
transform: translate3d(-20px, 0, 0);
}
to {
opacity: 0;
transform: translate3d(2000px, 0, 0);
}
}
.bounceOutRight {
animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
20% {
transform: translate3d(0, -10px, 0);
}
40%, 45% {
opacity: 1;
transform: translate3d(0, 20px, 0);
}
to {
opacity: 0;
transform: translate3d(0, -2000px, 0);
}
}
.bounceOutUp {
animation-name: bounceOutUp;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.fadeIn {
animation-name: fadeIn;
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translate3d(0, -100%, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInDown {
animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
from {
opacity: 0;
transform: translate3d(0, -2000px, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInDownBig {
animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
from {
opacity: 0;
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInLeft {
animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
from {
opacity: 0;
transform: translate3d(-2000px, 0, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInLeftBig {
animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
from {
opacity: 0;
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInRight {
animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
from {
opacity: 0;
transform: translate3d(2000px, 0, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInRightBig {
animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
transform: none;
}
}
@keyframes fadeInUp2 {
from {
opacity: 0;
transform: translate3d(0, 40%, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInUp {
animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
from {
opacity: 0;
transform: translate3d(0, 2000px, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInUpBig {
animation-name: fadeInUpBig;
}
@keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
.fadeOut {
animation-name: fadeOut;
}
@keyframes fadeOutDown {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(0, 100%, 0);
}
}
.fadeOutDown {
animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(0, 2000px, 0);
}
}
.fadeOutDownBig {
animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(-100%, 0, 0);
}
}
.fadeOutLeft {
animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(-2000px, 0, 0);
}
}
.fadeOutLeftBig {
animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(100%, 0, 0);
}
}
.fadeOutRight {
animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(2000px, 0, 0);
}
}
.fadeOutRightBig {
animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(0, -100%, 0);
}
}
.fadeOutUp {
animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(0, -2000px, 0);
}
}
.fadeOutUpBig {
animation-name: fadeOutUpBig;
}
@keyframes flip {
from {
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
animation-timing-function: ease-out;
}
40% {
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
animation-timing-function: ease-out;
}
50% {
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
animation-timing-function: ease-in;
}
80% {
transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
animation-timing-function: ease-in;
}
to {
transform: perspective(400px);
animation-timing-function: ease-in;
}
}
.animated.flip {
backface-visibility: visible;
animation-name: flip;
}
@keyframes flipInX {
from {
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
animation-timing-function: ease-in;
opacity: 0;
}
40% {
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
animation-timing-function: ease-in;
}
60% {
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
transform: perspective(400px);
}
}
.flipInX {
backface-visibility: visible !important;
animation-name: flipInX;
}
@keyframes flipInY {
from {
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
animation-timing-function: ease-in;
opacity: 0;
}
40% {
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
animation-timing-function: ease-in;
}
60% {
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
to {
transform: perspective(400px);
}
}
.flipInY {
backface-visibility: visible !important;
animation-name: flipInY;
}
@keyframes flipOutX {
from {
transform: perspective(400px);
}
30% {
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
to {
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
.flipOutX {
animation-name: flipOutX;
backface-visibility: visible !important;
}
@keyframes flipOutY {
from {
transform: perspective(400px);
}
30% {
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
to {
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
.flipOutY {
backface-visibility: visible !important;
animation-name: flipOutY;
}
@keyframes lightSpeedIn {
from {
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
transform: skewX(20deg);
opacity: 1;
}
80% {
transform: skewX(-5deg);
opacity: 1;
}
to {
transform: none;
opacity: 1;
}
}
.lightSpeedIn {
animation-name: lightSpeedIn;
animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
from {
opacity: 1;
}
to {
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
.lightSpeedOut {
animation-name: lightSpeedOut;
animation-timing-function: ease-in;
}
@keyframes rotateIn {
from {
transform-origin: center;
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
to {
transform-origin: center;
transform: none;
opacity: 1;
}
}
.rotateIn {
animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
from {
transform-origin: left bottom;
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
to {
transform-origin: left bottom;
transform: none;
opacity: 1;
}
}
.rotateInDownLeft {
animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
from {
transform-origin: right bottom;
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
transform-origin: right bottom;
transform: none;
opacity: 1;
}
}
.rotateInDownRight {
animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
from {
transform-origin: left bottom;
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
transform-origin: left bottom;
transform: none;
opacity: 1;
}
}
.rotateInUpLeft {
animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
from {
transform-origin: right bottom;
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
to {
transform-origin: right bottom;
transform: none;
opacity: 1;
}
}
.rotateInUpRight {
animation-name: rotateInUpRight;
}
@keyframes rotateOut {
from {
transform-origin: center;
opacity: 1;
}
to {
transform-origin: center;
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
.rotateOut {
animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
from {
transform-origin: left bottom;
opacity: 1;
}
to {
transform-origin: left bottom;
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
.rotateOutDownLeft {
animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
from {
transform-origin: right bottom;
opacity: 1;
}
to {
transform-origin: right bottom;
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutDownRight {
animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
from {
transform-origin: left bottom;
opacity: 1;
}
to {
transform-origin: left bottom;
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutUpLeft {
animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
from {
transform-origin: right bottom;
opacity: 1;
}
to {
transform-origin: right bottom;
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
.rotateOutUpRight {
animation-name: rotateOutUpRight;
}
@keyframes hinge {
0% {
transform-origin: top left;
animation-timing-function: ease-in-out;
}
20%, 60% {
transform: rotate3d(0, 0, 1, 80deg);
transform-origin: top left;
animation-timing-function: ease-in-out;
}
40%, 80% {
transform: rotate3d(0, 0, 1, 60deg);
transform-origin: top left;
animation-timing-function: ease-in-out;
opacity: 1;
}
to {
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
.hinge {
animation-name: hinge;
} @keyframes rollIn {
from {
opacity: 0;
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
transform: none;
}
}
.rollIn {
animation-name: rollIn;
} @keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
.rollOut {
animation-name: rollOut;
}
@keyframes zoomIn {
from {
opacity: 0;
transform: scale3d(0.3, 0.3, 0.3);
}
50% {
opacity: 1;
}
}
.zoomIn {
animation-name: zoomIn;
}
@keyframes zoomInDown {
from {
opacity: 0;
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomInDown {
animation-name: zoomInDown;
}
@keyframes zoomInLeft {
from {
opacity: 0;
transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomInLeft {
animation-name: zoomInLeft;
}
@keyframes zoomInRight {
from {
opacity: 0;
transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomInRight {
animation-name: zoomInRight;
}
@keyframes zoomInUp {
from {
opacity: 0;
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomInUp {
animation-name: zoomInUp;
}
@keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
transform: scale3d(0.3, 0.3, 0.3);
}
to {
opacity: 0;
}
}
.zoomOut {
animation-name: zoomOut;
}
@keyframes zoomOutDown {
40% {
opacity: 1;
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
to {
opacity: 0;
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
transform-origin: center bottom;
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomOutDown {
animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
40% {
opacity: 1;
transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
transform: scale(0.1) translate3d(-2000px, 0, 0);
transform-origin: left center;
}
}
.zoomOutLeft {
animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
40% {
opacity: 1;
transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
transform: scale(0.1) translate3d(2000px, 0, 0);
transform-origin: right center;
}
}
.zoomOutRight {
animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
40% {
opacity: 1;
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
to {
opacity: 0;
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
transform-origin: center bottom;
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomOutUp {
animation-name: zoomOutUp;
}
@keyframes slideInDown {
from {
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
transform: translate3d(0, 0, 0);
}
}
.slideInDown {
animation-name: slideInDown;
}
@keyframes slideInLeft {
from {
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInLeft2 {
from {
transform: translate3d(-10%, 0, 0);
visibility: visible;
}
to {
transform: translate3d(0, 0, 0);
}
}
.slideInLeft {
animation-name: slideInLeft;
}
@keyframes slideInRight {
from {
transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
transform: translate3d(0, 0, 0);
}
}
.slideInRight {
animation-name: slideInRight;
}
@keyframes slideInUp {
from {
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInUp2 {
from {
transform: translate3d(0, 20%, 0);
visibility: hidden;
}
to {
transform: translate3d(0, 0, 0);
visibility: visible;
}
}
@keyframes slideInUp3 {
from {
transform: translate3d(0, 20px, 0);
visibility: hidden;
}
to {
transform: translate3d(0, 0, 0);
visibility: visible;
}
}
[data-aos=slideInUp2] {
opacity: 0;
transition-property: transform, opacity;
}
[data-aos=slideInUp2].aos-animate {
opacity: 1;
}
@media screen and (min-width: 768px) {
[data-aos=slideInUp2] {
transform: translateY(30px);
}
[data-aos=slideInUp2].aos-animate {
transform: translateY(0);
}
}
.slideInUp {
animation-name: slideInUp;
}
@keyframes slideOutDown {
from {
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
transform: translate3d(0, 100%, 0);
}
}
.slideOutDown {
animation-name: slideOutDown;
}
@keyframes slideOutLeft {
from {
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
transform: translate3d(-100%, 0, 0);
}
}
.slideOutLeft {
animation-name: slideOutLeft;
}
@keyframes slideOutRight {
from {
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
transform: translate3d(100%, 0, 0);
}
}
.slideOutRight {
animation-name: slideOutRight;
}
@keyframes slideOutUp {
from {
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
transform: translate3d(0, -100%, 0);
}
}
.slideOutUp {
animation-name: slideOutUp;
}
@keyframes jump-1 {
0% {
transform: translate3d(0, 0, 0);
}
40% {
transform: translate3d(0, 20px, 0);
}
100% {
transform: translate3d(0, 0, 0);
}
}
@keyframes jump-2 {
0% {
transform: translate3d(0, 0, 0);
}
50% {
transform: translate3d(0, 30px, 0);
}
100% {
transform: translate3d(0, 0, 0);
}
}
@keyframes rotateIt {
to {
transform: rotate(-360deg);
}
}
@keyframes rotateIt2 {
to {
transform: rotate(360deg);
}
}
@keyframes shape-service-1 {
0% {
right: -40%;
top: 30%;
}
100% {
right: -23%;
top: 0;
}
}
@keyframes animate-floting {
0% {
transform: translateX(50%);
}
50% {
transform: translateX(-40%);
}
100% {
transform: translateX(40%);
}
}
@keyframes animate-floting-2 {
0% {
transform: translateX(-50%);
}
50% {
transform: translateX(40%);
}
100% {
transform: translateX(-40%);
}
}
@keyframes animate-floting-3 {
0% {
transform: translateX(-20%);
}
50% {
transform: translateX(0%);
}
100% {
transform: translateX(-20%);
}
}
.floting-line {
animation: animate-floting 15s linear infinite;
}
.floting-line:hover {
animation-play-state: paused;
}
.floting-line-2 {
animation: animate-floting-2 15s linear infinite;
}
.floting-line-2:hover {
animation-play-state: paused;
}
@keyframes waves {
0% {
transform: scale(0.2, 0.2);
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
50% {
opacity: 0.9;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
}
100% {
transform: scale(0.9, 0.9);
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
}
@keyframes stickyanimations {
0% {
transform: translateY(-100px);
}
100% {
transform: translateY(0px);
}
}
@keyframes vsmorph {
0% {
border-radius: var(--morp-value);
}
50% {
border-radius: var(--morp-md-value);
}
100% {
border-radius: 40% 60%;
}
}
@keyframes morpspin {
to {
transform: rotate(1turn);
}
}
@keyframes shake-br {
0%, 100% {
transform: rotate(0deg);
transform-origin: 100% 100%;
}
10% {
transform: rotate(2deg);
}
20%, 40%, 60% {
transform: rotate(-4deg);
}
30%, 50%, 70% {
transform: rotate(4deg);
}
80% {
transform: rotate(-2deg);
}
90% {
transform: rotate(2deg);
}
}
@keyframes shake-tl {
0%, 100% {
transform: rotate(0deg);
transform-origin: 0 0;
}
10% {
transform: rotate(2deg);
}
20%, 40%, 60% {
transform: rotate(-4deg);
}
30%, 50%, 70% {
transform: rotate(4deg);
}
80% {
transform: rotate(-2deg);
}
90% {
transform: rotate(2deg);
}
}
@keyframes shake-tl {
0%, 100% {
transform: rotate(0deg);
transform-origin: 0 0;
}
10% {
transform: rotate(2deg);
}
20%, 40%, 60% {
transform: rotate(-4deg);
}
30%, 50%, 70% {
transform: rotate(4deg);
}
80% {
transform: rotate(-2deg);
}
90% {
transform: rotate(2deg);
}
}
@keyframes shake-lr {
0%, 100% {
transform: rotate(0deg);
transform-origin: 50% 50%;
}
10% {
transform: rotate(8deg);
}
20%, 40%, 60% {
transform: rotate(-10deg);
}
30%, 50%, 70% {
transform: rotate(10deg);
}
80% {
transform: rotate(-8deg);
}
90% {
transform: rotate(8deg);
}
}
.reveal-item {
position: relative;
display: block;
overflow: hidden;
}
.reveal-item .reveal-animation {
position: absolute;
top: 0;
width: 100%;
height: 101%;
background: var(--color-primary);
}
.reveal-item .reveal-animation::before {
position: absolute;
content: "";
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: var(--bs-gray-400);
transition-property: transform;
transition-duration: 1s;
}
.reveal-animation.reveal-primary::before {
background: #0c0c0a;
}
.reveal-animation.reveal-dark::before {
background: #000;
}
.reveal-animation.reveal-white::before {
background: #000;
}
@keyframes moveLeftToRight {
from {
transform: translateX(-50px);
}
50% {
transform: translateX(50px);
}
to {
transform: translateX(-50px);
}
}
@keyframes moveLeftToRight2 {
from {
transform: translateX(-20px);
}
50% {
transform: translateX(20px);
}
to {
transform: translateX(-20px);
}
}
@keyframes moveTopToBottom {
from {
transform: translateY(-20%);
}
50% {
transform: translateY(20%);
}
to {
transform: translateY(-20%);
}
}
@keyframes moveTopToBottom2 {
from {
transform: translateY(-2%);
}
50% {
transform: translateY(2%);
}
to {
transform: translateY(-2%);
}
}
@keyframes moveBottomToTop {
from {
transform: translateY(20%);
}
50% {
transform: translateY(-20%);
}
to {
transform: translateY(20%);
}
}
@keyframes moveRightToLeft {
from {
transform: translateX(0);
}
50% {
transform: translateX(-40px);
}
to {
transform: translateX(0);
}
}
@keyframes moveRightTopToLeftBottom {
0% {
transform: translate(0, 0);
}
25% {
transform: translate(-30px, -10px);
}
50% {
transform: translate(-15px, 0px);
}
75% {
transform: translate(0px, 0);
}
100% {
transform: translate(0, 0);
}
}
@keyframes showHideAnimation {
0% {
opacity: 1;
}
50% {
opacity: 0.5;
}
100% {
opacity: 1;
}
}
@keyframes zoom-shake {
0% {
transform: scale(100%) rotate(0deg);
}
20% {
transform: scale(105%) rotate(0deg);
}
40% {
transform: scale(105%) rotate(20deg);
}
60% {
transform: scale(105%) rotate(0deg);
}
80% {
transform: scale(105%) rotate(-20deg);
}
100% {
transform: scale(100%) rotate(0deg);
}
}
@keyframes pulsing {
0% {
transform: scale(1);
}
50% {
transform: scale(0.8);
}
100% {
transform: scale(1);
}
}
@keyframes rotateAnimation {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes earth-move {
0% {
background-position: 0 0;
}
100% {
background-position: 355px 0;
}
}
@keyframes bottom-top2 {
0% {
transform: translateY(0);
}
30% {
transform: translateY(3px);
}
40% {
transform: translateY(5px);
}
50% {
transform: translateY(7px);
}
65% {
transform: translateY(5px);
}
75% {
transform: translateY(3px);
}
100% {
transform: ranslateY(0);
}
}
@keyframes ping-pong {
0% {
transform: scale(1, 1, 1);
}
30% {
transform: scale(1.05);
}
40% {
transform: scale(1);
}
50% {
transform: scale(0.95);
}
65% {
transform: scale(1);
}
75% {
transform: scale(1.05);
}
100% {
transform: scale(1);
}
}
.show-hide {
animation: showHideAnimation 4s linear infinite;
}
.top-bottom {
animation: moveTopToBottom 15s linear infinite;
}
.right-left {
animation: moveRightToLeft 10s linear infinite;
}
.top-bottom2 {
animation: moveTopToBottom2 8s linear infinite;
}
.bottom-top {
animation: moveBottomToTop 15s linear infinite;
}
.left-right {
animation: moveLeftToRight 15s linear infinite;
}
.left-right-top-bottom {
animation: moveRightTopToLeftBottom 15s linear infinite;
}
.left-right2 {
animation: moveLeftToRight2 15s linear infinite;
}
.pulsing {
animation: pulsing 3s linear infinite;
}
.earth-move {
animation: earth-move 5s linear 0s infinite;
}
.rotate-animation {
animation: rotateAnimation 4s linear infinite;
}
.rotate-animation2 {
animation: rotateAnimation 12s linear infinite;
}
.shake-br {
animation: shake-br 20s linear infinite;
}
.shake-tl {
animation: shake-tl 20s linear infinite;
}   [data-sal] {
transition-duration: 0.2s;
transition-delay: 0s;
transition-duration: var(--sal-duration, 0.2s);
transition-delay: var(--sal-delay, 0s);
transition-timing-function: var(--sal-easing, ease);
}
[data-sal][data-sal-duration="200"] {
transition-duration: 0.2s;
}
[data-sal][data-sal-duration="250"] {
transition-duration: 0.25s;
}
[data-sal][data-sal-duration="300"] {
transition-duration: 0.3s;
}
[data-sal][data-sal-duration="350"] {
transition-duration: 0.35s;
}
[data-sal][data-sal-duration="400"] {
transition-duration: 0.4s;
}
[data-sal][data-sal-duration="450"] {
transition-duration: 0.45s;
}
[data-sal][data-sal-duration="500"] {
transition-duration: 0.5s;
}
[data-sal][data-sal-duration="550"] {
transition-duration: 0.55s;
}
[data-sal][data-sal-duration="600"] {
transition-duration: 0.6s;
}
[data-sal][data-sal-duration="650"] {
transition-duration: 0.65s;
}
[data-sal][data-sal-duration="700"] {
transition-duration: 0.7s;
}
[data-sal][data-sal-duration="750"] {
transition-duration: 0.75s;
}
[data-sal][data-sal-duration="800"] {
transition-duration: 0.8s;
}
[data-sal][data-sal-duration="850"] {
transition-duration: 0.85s;
}
[data-sal][data-sal-duration="900"] {
transition-duration: 0.9s;
}
[data-sal][data-sal-duration="950"] {
transition-duration: 0.95s;
}
[data-sal][data-sal-duration="1000"] {
transition-duration: 1s;
}
[data-sal][data-sal-duration="1050"] {
transition-duration: 1.05s;
}
[data-sal][data-sal-duration="1100"] {
transition-duration: 1.1s;
}
[data-sal][data-sal-duration="1150"] {
transition-duration: 1.15s;
}
[data-sal][data-sal-duration="1200"] {
transition-duration: 1.2s;
}
[data-sal][data-sal-duration="1250"] {
transition-duration: 1.25s;
}
[data-sal][data-sal-duration="1300"] {
transition-duration: 1.3s;
}
[data-sal][data-sal-duration="1350"] {
transition-duration: 1.35s;
}
[data-sal][data-sal-duration="1400"] {
transition-duration: 1.4s;
}
[data-sal][data-sal-duration="1450"] {
transition-duration: 1.45s;
}
[data-sal][data-sal-duration="1500"] {
transition-duration: 1.5s;
}
[data-sal][data-sal-duration="1550"] {
transition-duration: 1.55s;
}
[data-sal][data-sal-duration="1600"] {
transition-duration: 1.6s;
}
[data-sal][data-sal-duration="1650"] {
transition-duration: 1.65s;
}
[data-sal][data-sal-duration="1700"] {
transition-duration: 1.7s;
}
[data-sal][data-sal-duration="1750"] {
transition-duration: 1.75s;
}
[data-sal][data-sal-duration="1800"] {
transition-duration: 1.8s;
}
[data-sal][data-sal-duration="1850"] {
transition-duration: 1.85s;
}
[data-sal][data-sal-duration="1900"] {
transition-duration: 1.9s;
}
[data-sal][data-sal-duration="1950"] {
transition-duration: 1.95s;
}
[data-sal][data-sal-duration="2000"] {
transition-duration: 2s;
}
[data-sal][data-sal-delay="50"] {
transition-delay: 0.05s;
}
[data-sal][data-sal-delay="100"] {
transition-delay: 0.1s;
}
[data-sal][data-sal-delay="150"] {
transition-delay: 0.15s;
}
[data-sal][data-sal-delay="200"] {
transition-delay: 0.2s;
}
[data-sal][data-sal-delay="250"] {
transition-delay: 0.25s;
}
[data-sal][data-sal-delay="300"] {
transition-delay: 0.3s;
}
[data-sal][data-sal-delay="350"] {
transition-delay: 0.35s;
}
[data-sal][data-sal-delay="400"] {
transition-delay: 0.4s;
}
[data-sal][data-sal-delay="450"] {
transition-delay: 0.45s;
}
[data-sal][data-sal-delay="500"] {
transition-delay: 0.5s;
}
[data-sal][data-sal-delay="550"] {
transition-delay: 0.55s;
}
[data-sal][data-sal-delay="600"] {
transition-delay: 0.6s;
}
[data-sal][data-sal-delay="650"] {
transition-delay: 0.65s;
}
[data-sal][data-sal-delay="700"] {
transition-delay: 0.7s;
}
[data-sal][data-sal-delay="750"] {
transition-delay: 0.75s;
}
[data-sal][data-sal-delay="800"] {
transition-delay: 0.8s;
}
[data-sal][data-sal-delay="850"] {
transition-delay: 0.85s;
}
[data-sal][data-sal-delay="900"] {
transition-delay: 0.9s;
}
[data-sal][data-sal-delay="950"] {
transition-delay: 0.95s;
}
[data-sal][data-sal-delay="1000"] {
transition-delay: 1s;
}
[data-sal][data-sal-easing=linear] {
transition-timing-function: linear;
}
[data-sal][data-sal-easing=ease] {
transition-timing-function: ease;
}
[data-sal][data-sal-easing=ease-in] {
transition-timing-function: ease-in;
}
[data-sal][data-sal-easing=ease-out] {
transition-timing-function: ease-out;
}
[data-sal][data-sal-easing=ease-in-out] {
transition-timing-function: ease-in-out;
}
[data-sal][data-sal-easing=ease-in-cubic] {
transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
[data-sal][data-sal-easing=ease-out-cubic] {
transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
[data-sal][data-sal-easing=ease-in-out-cubic] {
transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
[data-sal][data-sal-easing=ease-in-circ] {
transition-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.335);
}
[data-sal][data-sal-easing=ease-out-circ] {
transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}
[data-sal][data-sal-easing=ease-in-out-circ] {
transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
[data-sal][data-sal-easing=ease-in-expo] {
transition-timing-function: cubic-bezier(0.95, 0.05, 0.795, 0.035);
}
[data-sal][data-sal-easing=ease-out-expo] {
transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
[data-sal][data-sal-easing=ease-in-out-expo] {
transition-timing-function: cubic-bezier(1, 0, 0, 1);
}
[data-sal][data-sal-easing=ease-in-quad] {
transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
[data-sal][data-sal-easing=ease-out-quad] {
transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[data-sal][data-sal-easing=ease-in-out-quad] {
transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
[data-sal][data-sal-easing=ease-in-quart] {
transition-timing-function: cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
[data-sal][data-sal-easing=ease-out-quart] {
transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}
[data-sal][data-sal-easing=ease-in-out-quart] {
transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}
[data-sal][data-sal-easing=ease-in-quint] {
transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}
[data-sal][data-sal-easing=ease-out-quint] {
transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
[data-sal][data-sal-easing=ease-in-out-quint] {
transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
[data-sal][data-sal-easing=ease-in-sine] {
transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}
[data-sal][data-sal-easing=ease-out-sine] {
transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}
[data-sal][data-sal-easing=ease-in-out-sine] {
transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
[data-sal][data-sal-easing=ease-in-back] {
transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}
[data-sal][data-sal-easing=ease-out-back] {
transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
[data-sal][data-sal-easing=ease-in-out-back] {
transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
} [data-sal|=fade] {
opacity: 0;
transition-property: opacity;
}
[data-sal|=fade].sal-animate,
body.sal-disabled [data-sal|=fade] {
opacity: 1;
}
[data-sal|=slide] {
opacity: 0;
transition-property: opacity, transform;
}
[data-sal=slide-up] {
transform: translateY(20%);
}
[data-sal=slide-down] {
transform: translateY(-20%);
}
[data-sal=slide-left] {
transform: translateX(20%);
}
[data-sal=slide-right] {
transform: translateX(-20%);
}
[data-sal|=slide].sal-animate,
body.sal-disabled [data-sal|=slide] {
opacity: 1;
transform: none;
}
[data-sal|=zoom] {
opacity: 0;
transition-property: opacity, transform;
}
[data-sal=zoom-in] {
transform: scale(0.5);
}
[data-sal=zoom-out] {
transform: scale(1.3);
}
[data-sal|=zoom].sal-animate,
body.sal-disabled [data-sal|=zoom] {
opacity: 1;
transform: none;
}
[data-sal|=flip] {
backface-visibility: hidden;
transition-property: transform;
}
[data-sal=flip-left] {
transform: perspective(2000px) rotateY(-91deg);
}
[data-sal=flip-right] {
transform: perspective(2000px) rotateY(91deg);
}
[data-sal=flip-up] {
transform: perspective(2000px) rotateX(-91deg);
}
[data-sal=flip-down] {
transform: perspective(2000px) rotateX(91deg);
}
[data-sal|=flip].sal-animate,
body.sal-disabled [data-sal|=flip] {
transform: none;
}
@keyframes customOne {
0% {
transform: translateY(-50%) scale(0);
opacity: 1;
}
100% {
transform: translateY(-50%) scale(1.3);
opacity: 0;
}
}
@keyframes liveAuction {
0% {
background: var(--color-white);
}
100% {
background: var(--color-danger);
}
}
.cd-intro {
margin: 4em auto;
}
@media only screen and (min-width: 768px) {
.cd-intro {
margin: 5em auto;
}
}
@media only screen and (min-width: 1170px) {
.cd-intro {
margin: 6em auto;
}
}
.cd-headline {
font-size: 3rem;
line-height: 1.2;
}
@media only screen and (min-width: 768px) {
.cd-headline {
font-size: 4.4rem;
font-weight: 300;
}
}
@media only screen and (min-width: 1170px) {
.cd-headline {
font-size: 48px;
}
}
@media only screen and (max-width: 768px) {
.cd-headline {
font-size: 40px;
}
}
@media only screen and (max-width: 479px) {
.cd-headline {
font-size: 26px;
}
}
.cd-words-wrapper {
display: inline-block;
position: relative;
text-align: left;
}
.cd-words-wrapper b {
display: inline-block;
position: absolute;
white-space: nowrap;
left: 0;
top: 0;
}
.cd-words-wrapper b.is-visible {
position: relative;
}
.no-js .cd-words-wrapper b {
opacity: 0;
}
.no-js .cd-words-wrapper b.is-visible {
opacity: 1;
} .cd-headline.clip span {
display: inline-block;
padding: 0;
}
.cd-headline.clip .cd-words-wrapper {
overflow: hidden;
vertical-align: middle;
position: relative;
margin-top: -20px;
}
.cd-headline.clip .cd-words-wrapper b {
font-weight: 700;
}
.cd-headline.clip .cd-words-wrapper::after {
content: "";
position: absolute;
top: 50%;
right: 0;
width: 4px;
height: 100%;
background-color: var(--color-primary-3);
transform: translateY(-50%);
}
.cd-headline.clip b {
opacity: 0;
}
.cd-headline.clip b.is-visible {
opacity: 1;
} input,
button,
select,
textarea {
background: transparent;
border: 1px solid var(--color-border);
transition: all 0.4s ease-out 0s;
color: var(--color-body);
width: 100%;
border-radius: 12px;
}
input:focus, input:active,
button:focus,
button:active,
select:focus,
select:active,
textarea:focus,
textarea:active {
outline: none;
border-color: var(--color-primary);
}
button,
[type=button],
[type=reset],
[type=submit] {
-webkit-appearance: button;
}
input {
padding: 15 20px;
}
input[type=text],
input[type=password],
input[type=email],
input[type=number],
input[type=tel],
input[type=url],
textarea {
font-size: var(--font-size-b2);
font-weight: 400;
height: auto;
line-height: 28px;
background: transparent;
box-shadow: none;
padding: 0 15px;
outline: none; }
input[type=text]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=url]::-moz-placeholder, textarea::-moz-placeholder {
color: var(--body-color); opacity: 1;
}
input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=email]::placeholder,
input[type=number]::placeholder,
input[type=tel]::placeholder,
input[type=url]::placeholder,
textarea::placeholder {
color: var(--body-color); opacity: 1;
}
input[type=text]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder,
textarea:-ms-input-placeholder { color: var(--body-color);
}
input[type=text]::-ms-input-placeholder,
input[type=password]::-ms-input-placeholder,
input[type=email]::-ms-input-placeholder,
input[type=number]::-ms-input-placeholder,
input[type=tel]::-ms-input-placeholder,
input[type=url]::-ms-input-placeholder,
textarea::-ms-input-placeholder { color: var(--body-color);
}
input[type=text].p-holder__active, .input-active input[type=text], input[type=text].input-active,
input[type=password].p-holder__active,
.input-active input[type=password],
input[type=password].input-active,
input[type=email].p-holder__active,
.input-active input[type=email],
input[type=email].input-active,
input[type=number].p-holder__active,
.input-active input[type=number],
input[type=number].input-active,
input[type=tel].p-holder__active,
.input-active input[type=tel],
input[type=tel].input-active,
input[type=url].p-holder__active,
.input-active input[type=url],
input[type=url].input-active,
textarea.p-holder__active,
textarea.input-active {
border-color: var(--color-primary); }
input[type=text].p-holder__active::-moz-placeholder, .input-active input[type=text]::-moz-placeholder, input[type=text].input-active::-moz-placeholder, input[type=password].p-holder__active::-moz-placeholder, .input-active input[type=password]::-moz-placeholder, input[type=password].input-active::-moz-placeholder, input[type=email].p-holder__active::-moz-placeholder, .input-active input[type=email]::-moz-placeholder, input[type=email].input-active::-moz-placeholder, input[type=number].p-holder__active::-moz-placeholder, .input-active input[type=number]::-moz-placeholder, input[type=number].input-active::-moz-placeholder, input[type=tel].p-holder__active::-moz-placeholder, .input-active input[type=tel]::-moz-placeholder, input[type=tel].input-active::-moz-placeholder, input[type=url].p-holder__active::-moz-placeholder, .input-active input[type=url]::-moz-placeholder, input[type=url].input-active::-moz-placeholder, textarea.p-holder__active::-moz-placeholder, textarea.input-active::-moz-placeholder {
color: var(--color-primary); opacity: 1;
}
input[type=text].p-holder__active::placeholder, .input-active input[type=text]::placeholder, input[type=text].input-active::placeholder,
input[type=password].p-holder__active::placeholder,
.input-active input[type=password]::placeholder,
input[type=password].input-active::placeholder,
input[type=email].p-holder__active::placeholder,
.input-active input[type=email]::placeholder,
input[type=email].input-active::placeholder,
input[type=number].p-holder__active::placeholder,
.input-active input[type=number]::placeholder,
input[type=number].input-active::placeholder,
input[type=tel].p-holder__active::placeholder,
.input-active input[type=tel]::placeholder,
input[type=tel].input-active::placeholder,
input[type=url].p-holder__active::placeholder,
.input-active input[type=url]::placeholder,
input[type=url].input-active::placeholder,
textarea.p-holder__active::placeholder,
textarea.input-active::placeholder {
color: var(--color-primary); opacity: 1;
}
input[type=text].p-holder__active:-ms-input-placeholder, .input-active input[type=text]:-ms-input-placeholder, input[type=text].input-active:-ms-input-placeholder,
input[type=password].p-holder__active:-ms-input-placeholder,
.input-active input[type=password]:-ms-input-placeholder,
input[type=password].input-active:-ms-input-placeholder,
input[type=email].p-holder__active:-ms-input-placeholder,
.input-active input[type=email]:-ms-input-placeholder,
input[type=email].input-active:-ms-input-placeholder,
input[type=number].p-holder__active:-ms-input-placeholder,
.input-active input[type=number]:-ms-input-placeholder,
input[type=number].input-active:-ms-input-placeholder,
input[type=tel].p-holder__active:-ms-input-placeholder,
.input-active input[type=tel]:-ms-input-placeholder,
input[type=tel].input-active:-ms-input-placeholder,
input[type=url].p-holder__active:-ms-input-placeholder,
.input-active input[type=url]:-ms-input-placeholder,
input[type=url].input-active:-ms-input-placeholder,
textarea.p-holder__active:-ms-input-placeholder,
textarea.input-active:-ms-input-placeholder { color: var(--color-primary);
}
input[type=text].p-holder__active::-ms-input-placeholder, .input-active input[type=text]::-ms-input-placeholder, input[type=text].input-active::-ms-input-placeholder,
input[type=password].p-holder__active::-ms-input-placeholder,
.input-active input[type=password]::-ms-input-placeholder,
input[type=password].input-active::-ms-input-placeholder,
input[type=email].p-holder__active::-ms-input-placeholder,
.input-active input[type=email]::-ms-input-placeholder,
input[type=email].input-active::-ms-input-placeholder,
input[type=number].p-holder__active::-ms-input-placeholder,
.input-active input[type=number]::-ms-input-placeholder,
input[type=number].input-active::-ms-input-placeholder,
input[type=tel].p-holder__active::-ms-input-placeholder,
.input-active input[type=tel]::-ms-input-placeholder,
input[type=tel].input-active::-ms-input-placeholder,
input[type=url].p-holder__active::-ms-input-placeholder,
.input-active input[type=url]::-ms-input-placeholder,
input[type=url].input-active::-ms-input-placeholder,
textarea.p-holder__active::-ms-input-placeholder,
textarea.input-active::-ms-input-placeholder { color: var(--color-primary);
}
input[type=text].p-holder__error, .input-error input[type=text], input[type=text].input-error,
input[type=password].p-holder__error,
.input-error input[type=password],
input[type=password].input-error,
input[type=email].p-holder__error,
.input-error input[type=email],
input[type=email].input-error,
input[type=number].p-holder__error,
.input-error input[type=number],
input[type=number].input-error,
input[type=tel].p-holder__error,
.input-error input[type=tel],
input[type=tel].input-error,
input[type=url].p-holder__error,
.input-error input[type=url],
input[type=url].input-error,
textarea.p-holder__error,
textarea.input-error {
border-color: #f4282d; }
input[type=text].p-holder__error::-moz-placeholder, .input-error input[type=text]::-moz-placeholder, input[type=text].input-error::-moz-placeholder, input[type=password].p-holder__error::-moz-placeholder, .input-error input[type=password]::-moz-placeholder, input[type=password].input-error::-moz-placeholder, input[type=email].p-holder__error::-moz-placeholder, .input-error input[type=email]::-moz-placeholder, input[type=email].input-error::-moz-placeholder, input[type=number].p-holder__error::-moz-placeholder, .input-error input[type=number]::-moz-placeholder, input[type=number].input-error::-moz-placeholder, input[type=tel].p-holder__error::-moz-placeholder, .input-error input[type=tel]::-moz-placeholder, input[type=tel].input-error::-moz-placeholder, input[type=url].p-holder__error::-moz-placeholder, .input-error input[type=url]::-moz-placeholder, input[type=url].input-error::-moz-placeholder, textarea.p-holder__error::-moz-placeholder, textarea.input-error::-moz-placeholder {
color: #f4282d; opacity: 1;
}
input[type=text].p-holder__error::placeholder, .input-error input[type=text]::placeholder, input[type=text].input-error::placeholder,
input[type=password].p-holder__error::placeholder,
.input-error input[type=password]::placeholder,
input[type=password].input-error::placeholder,
input[type=email].p-holder__error::placeholder,
.input-error input[type=email]::placeholder,
input[type=email].input-error::placeholder,
input[type=number].p-holder__error::placeholder,
.input-error input[type=number]::placeholder,
input[type=number].input-error::placeholder,
input[type=tel].p-holder__error::placeholder,
.input-error input[type=tel]::placeholder,
input[type=tel].input-error::placeholder,
input[type=url].p-holder__error::placeholder,
.input-error input[type=url]::placeholder,
input[type=url].input-error::placeholder,
textarea.p-holder__error::placeholder,
textarea.input-error::placeholder {
color: #f4282d; opacity: 1;
}
input[type=text].p-holder__error:-ms-input-placeholder, .input-error input[type=text]:-ms-input-placeholder, input[type=text].input-error:-ms-input-placeholder,
input[type=password].p-holder__error:-ms-input-placeholder,
.input-error input[type=password]:-ms-input-placeholder,
input[type=password].input-error:-ms-input-placeholder,
input[type=email].p-holder__error:-ms-input-placeholder,
.input-error input[type=email]:-ms-input-placeholder,
input[type=email].input-error:-ms-input-placeholder,
input[type=number].p-holder__error:-ms-input-placeholder,
.input-error input[type=number]:-ms-input-placeholder,
input[type=number].input-error:-ms-input-placeholder,
input[type=tel].p-holder__error:-ms-input-placeholder,
.input-error input[type=tel]:-ms-input-placeholder,
input[type=tel].input-error:-ms-input-placeholder,
input[type=url].p-holder__error:-ms-input-placeholder,
.input-error input[type=url]:-ms-input-placeholder,
input[type=url].input-error:-ms-input-placeholder,
textarea.p-holder__error:-ms-input-placeholder,
textarea.input-error:-ms-input-placeholder { color: #f4282d;
}
input[type=text].p-holder__error::-ms-input-placeholder, .input-error input[type=text]::-ms-input-placeholder, input[type=text].input-error::-ms-input-placeholder,
input[type=password].p-holder__error::-ms-input-placeholder,
.input-error input[type=password]::-ms-input-placeholder,
input[type=password].input-error::-ms-input-placeholder,
input[type=email].p-holder__error::-ms-input-placeholder,
.input-error input[type=email]::-ms-input-placeholder,
input[type=email].input-error::-ms-input-placeholder,
input[type=number].p-holder__error::-ms-input-placeholder,
.input-error input[type=number]::-ms-input-placeholder,
input[type=number].input-error::-ms-input-placeholder,
input[type=tel].p-holder__error::-ms-input-placeholder,
.input-error input[type=tel]::-ms-input-placeholder,
input[type=tel].input-error::-ms-input-placeholder,
input[type=url].p-holder__error::-ms-input-placeholder,
.input-error input[type=url]::-ms-input-placeholder,
input[type=url].input-error::-ms-input-placeholder,
textarea.p-holder__error::-ms-input-placeholder,
textarea.input-error::-ms-input-placeholder { color: #f4282d;
}
input[type=text].p-holder__error:focus, .input-error input[type=text]:focus, input[type=text].input-error:focus,
input[type=password].p-holder__error:focus,
.input-error input[type=password]:focus,
input[type=password].input-error:focus,
input[type=email].p-holder__error:focus,
.input-error input[type=email]:focus,
input[type=email].input-error:focus,
input[type=number].p-holder__error:focus,
.input-error input[type=number]:focus,
input[type=number].input-error:focus,
input[type=tel].p-holder__error:focus,
.input-error input[type=tel]:focus,
input[type=tel].input-error:focus,
input[type=url].p-holder__error:focus,
.input-error input[type=url]:focus,
input[type=url].input-error:focus,
textarea.p-holder__error:focus,
textarea.input-error:focus {
border-color: #f4282d;
}
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=url]:focus,
textarea:focus {
border-color: var(--color-primary);
}
input[type=checkbox],
input[type=radio] {
opacity: 0;
position: absolute;
}
input[type=checkbox] ~ label,
input[type=radio] ~ label {
position: relative;
font-size: 12px;
line-height: 17px;
color: var(--color-body);
font-weight: 400;
padding-left: 25px;
cursor: pointer;
}
input[type=checkbox] ~ label::before,
input[type=radio] ~ label::before {
content: " ";
position: absolute;
top: 5px;
left: 0;
width: 15px;
height: 15px;
background-color: #5d5d7e;
border-radius: 2px;
transition: all 0.3s;
border-radius: 2px;
}
input[type=checkbox] ~ label::after,
input[type=radio] ~ label::after {
content: " ";
position: absolute;
top: 16%;
left: 2px;
width: 10px;
height: 6px;
background-color: transparent;
border-bottom: 2px solid #ffffff;
border-left: 2px solid #ffffff;
border-radius: 2px;
transform: rotate(-45deg);
opacity: 0;
transition: all 0.3s;
}
input[type=checkbox]:checked ~ label::after,
input[type=radio]:checked ~ label::after {
opacity: 1;
}
input:checked ~ .rn-check-box-label::before {
background: var(--color-primary) !important;
}
input[type=radio] ~ label::before {
border-radius: 50%;
}
input[type=radio] ~ label::after {
width: 8px;
height: 8px;
left: 3px;
background: #fff;
border-radius: 50%;
}
.form-group {
margin-bottom: 20px;
}
.form-group label {
margin-bottom: 6px;
font-size: 14px;
line-height: 22px;
font-weight: 500;
}
.form-group input {
border: 0 none;
border-radius: 4px;
height: 50px;
font-size: var(--font-size-b2);
transition: var(--transition);
padding: 0 20px;
background-color: var(--color-lightest);
border: 1px solid transparent;
transition: var(--transition);
}
.form-group input:focus {
border-color: var(--color-primary);
box-shadow: none;
}
.form-group textarea {
min-height: 160px;
border: 0 none;
border-radius: 4px;
resize: none;
padding: 15px;
font-size: var(--font-size-b2);
transition: var(--transition);
background-color: var(--color-lightest);
border: 1px solid transparent;
}
.form-group textarea:focus {
border-color: var(--color-primary);
}
input[type=submit] {
width: auto;
padding: 0 30px;
border-radius: 500px;
display: inline-block;
font-weight: 500;
transition: 0.3s;
height: 60px;
background: var(--color-primary);
color: var(--color-white);
font-weight: var(--p-medium);
font-size: var(--font-size-b2);
line-height: var(--line-height-b3);
height: 50px;
border: 2px solid var(--color-primary);
transition: var(--transition);
}
input[type=submit]:hover {
background: transparent;
color: var(--color-primary);
}
.rts-accordion.style1 .accordion-item {
background: transparent;
border: none;
padding-bottom: 30px;
position: relative;
padding-left: 60px;
}
@media only screen and (max-width: 575px) {
.rts-accordion.style1 .accordion-item {
padding-left: 45px;
}
}
.rts-accordion.style1 .accordion-item:last-child {
padding-bottom: 0;
}
.rts-accordion.style1 .accordion-item .accordion-header button {
background: transparent;
border: none;
font-weight: 700;
font-size: 18px;
line-height: 23px;
box-shadow: none;
padding: 0;
position: relative;
color: #1C2539;
}
.rts-accordion.style1 .accordion-item .accordion-header button:before {
content: "";
position: absolute;
left: 0;
background: var(--color-white);
border: 5px solid var(--color-primary);
height: 20px;
width: 20px;
left: -11.4%;
background-repeat: no-repeat;
background-size: cover;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
line-height: 30px;
background-color: var(--color-white);
z-index: 5;
transition: 0.3s;
}
.rts-accordion.style1 .accordion-item .accordion-body {
padding: 15px 0 0;
}
.rts-accordion.style1 .accordion-item:after {
content: "";
display: block;
width: 1px;
height: 100%;
border-left: 2px dashed #DF0A0A;
top: 3px;
left: 18px;
position: absolute;
}
@media only screen and (max-width: 767px) {
.rts-accordion.style1 .accordion-item:after {
left: 5px;
}
}
.rts-accordion.style2 .accordion-item .accordion-header .accordion-button:not(.collapsed) {
box-shadow: none;
}
.rts-accordion.style2 .accordion-item {
border-bottom: 1px solid var(--light-border);
}
.rts-accordion.style2 .accordion-item .accordion-header button {
background: transparent;
font-weight: 400;
font-size: 20px;
font-weight: var(--semibold);
align-items: center;
display: flex;
padding: 25px;
}
@media only screen and (max-width: 767px) {
.rts-accordion.style2 .accordion-item .accordion-header button {
padding-right: 20px !important;
}
}
.rts-accordion.style2 .accordion-item .accordion-header button span {
color: var(--color-primary);
margin-right: 4px;
}
.rts-accordion.style2 .accordion-item .accordion-header button .accordion-icon {
font-size: 14px;
display: block;
margin-left: 8px;
margin-right: 0;
}
.rts-accordion.style2 .accordion-item .accordion-header button .accordion-icon i {
background: #EAEAEA;
width: 25px;
height: 25px;
line-height: 25px;
text-align: center;
display: inline-flex;
align-items: center;
justify-content: center;
color: var(--color-primary);
border-radius: 50%;
}
.rts-accordion.style2 .accordion-item .accordion-header button .accordion-icon-active {
font-size: 14px;
display: block;
margin-left: 8px;
margin-right: 0;
}
.rts-accordion.style2 .accordion-item .accordion-header button .accordion-icon-active i {
background: #EAEAEA;
width: 25px;
height: 25px;
line-height: 25px;
text-align: center;
display: inline-flex;
align-items: center;
justify-content: center;
color: var(--color-primary);
border-radius: 50%;
}
.rts-accordion.style2 .accordion-item .accordion-header button .accordion-icon,
.rts-accordion.style2 .accordion-item .accordion-header button .accordion-icon-active {
position: absolute;
right: 20px;
top: 50%;
transform: translate(0px, -50%);
}
@media only screen and (max-width: 767px) {
.rts-accordion.style2 .accordion-item .accordion-header button .accordion-icon,
.rts-accordion.style2 .accordion-item .accordion-header button .accordion-icon-active {
right: 0px !important;
}
}
.rts-accordion.style2 .accordion-item .accordion-header button:hover {
color: var(--color-secondary);
}
.rts-accordion.style2 .accordion-item .accordion-header button[aria-expanded=true] {
color: var(--color-secondary);
}
.rts-accordion.style2 .accordion-item .accordion-header button[aria-expanded=true] .accordion-icon {
display: none;
}
.rts-accordion.style2 .accordion-item .accordion-header button[aria-expanded=true] .accordion-icon-active {
display: block;
font-size: 16px;
}
.rts-accordion.style2 .accordion-item .accordion-body {
padding: 0 20px 25px;
}
.rts-accordion.style2 .accordion-item.show {
background: var(--accordion-active);
border-radius: 10px;
}
.rts-accordion.style1 .accordion-item .accordion-header button[aria-expanded=true]::before {
content: "";
position: absolute;
left: 0;
background-image: none;
height: 50px;
width: 50px;
left: -14.6%;
background: var(--color-primary);
background-repeat: no-repeat;
background-size: cover;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
line-height: 30px;
z-index: 5;
}
@media only screen and (max-width: 767px) {
.rts-accordion.style1 .accordion-item .accordion-header button[aria-expanded=true]::before {
width: 35px;
height: 35px;
left: -13%;
}
}
@media only screen and (max-width: 575px) {
.rts-accordion.style1 .accordion-item .accordion-header button[aria-expanded=true]::before {
left: -18%;
}
}
.engineer_accordion .rts-accordion.style2 .accordion-item .accordion-header button {
padding: 20px !important;
}
.engineer_accordion .rts-accordion.style2 .accordion-item .accordion-body {
background: var(--color-white) !important;
padding: 0px 20px 10px 20px !important;
}
.rts-tab-advance .nav {
margin: 0;
width: -moz-max-content;
width: max-content;
}
.title-process-stock-text {
text-align: center;
}
.title-process-stock-text .stock-text-1 {
text-align: center;
font-size: 80px;
font-style: normal;
font-weight: 700;
line-height: 90px;
-webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: #E3E3E3;
color: transparent;
font-family: var(--);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.title-process-stock-text .stock-text-1 {
font-size: 55px;
}
}
@media only screen and (max-width: 767px) {
.title-process-stock-text .stock-text-1 {
font-size: 36px;
line-height: 48px;
}
}
.rts-hero {
position: relative;
}
.rts-hero__blur-area {
width: 348px;
height: 458px;
background: var(--color-primary);
border-radius: 458px;
filter: blur(200px);
position: absolute;
left: 5%;
top: 50%;
transform: translateY(-50%);
z-index: -1;
}
.rts-hero__content h6 {
border: 1px solid var(--body-bg);
border-radius: 20px;
padding: 8px 12px;
display: inline-flex;
align-items: center;
gap: 10px;
color: var(--body-bg);
font-size: 18px;
font-family: var(--font-secondary);
margin-bottom: 30px;
}
@media (max-width: 991px) {
.rts-hero__content h6 {
display: flex;
max-width: -moz-max-content;
max-width: max-content;
}
}
@media (max-width: 450px) {
.rts-hero__content h6 {
font-size: 14px;
margin-bottom: 25px;
}
}
.rts-hero__content h1 {
font-size: 66px;
font-weight: var(--bold);
color: var(--body-bg);
display: inline-block;
text-transform: capitalize;
line-height: var(--lh-h1);
margin-bottom: 35px;
margin-top: 0px;
position: relative;
z-index: 1;
}
@media (max-width: 1200px) and (min-width: 991px) {
.rts-hero__content h1 {
font-size: 54px;
}
}
@media (max-width: 991px) {
.rts-hero__content h1 {
max-width: 550px;
}
}
@media (max-width: 576px) {
.rts-hero__content h1 {
font-size: 50px;
line-height: 1.12;
}
}
@media (max-width: 450px) {
.rts-hero__content h1 {
font-size: 34px;
line-height: 1.2;
margin-bottom: 25px;
}
}
.rts-hero__content h1.has-underline::before {
content: "";
position: absolute;
bottom: 0;
right: 35%;
height: 16px;
width: 200px;
background: var(--color-third);
z-index: -1;
}
@media (max-width: 500px) {
.rts-hero__content h1.has-underline::before {
display: none;
}
}
.rts-hero__content .description {
color: var(--body-bg);
font-weight: 500;
border: none;
line-height: 28px;
margin-bottom: 50px;
max-width: 525px;
display: block;
}
@media (max-width: 450px) {
.rts-hero__content .description {
margin-bottom: 30px;
}
}
.rts-hero__content--group {
display: flex;
gap: 40px;
flex-wrap: wrap;
align-items: center;
margin-bottom: 30px;
}
@media (max-width: 500px) {
.rts-hero__content--group {
gap: 30px;
}
}
.rts-hero__content--group .large__btn {
padding: 22px 35px;
font-family: var(--font-secondary);
font-weight: 600;
color: var(--color-secondary);
}
@media (max-width: 500px) {
.rts-hero__content--group .large__btn {
padding: 14px 20px;
}
}
.rts-hero__content--group .plan__btn {
color: var(--body-bg);
font-weight: var(--semibold);
}
.rts-hero__content p {
color: var(--body-bg);
margin-bottom: 0;
display: flex;
align-items: center;
gap: 10px;
font-weight: var(--medium);
}
@media screen and (max-width: 576px) {
.rts-hero__content p {
flex-wrap: wrap;
justify-content: center;
}
}
.rts-hero__content p span {
color: var(--color-third);
font-weight: var(--semibold);
}
.rts-hero__content p a {
color: var(--color-third);
transition: var(--transition);
text-decoration: underline;
text-decoration-color: transparent;
font-weight: 600;
font-family: var(--font-secondary);
font-size: 18px;
}
.rts-hero__content p a:hover {
text-decoration-color: var(--color-third);
}
.rts-hero__images {
margin-bottom: -10%;
z-index: 1;
}
@media (max-width: 991px) {
.rts-hero__images {
margin-bottom: 0;
margin-top: 100px;
}
}
.rts-hero__images .rts-hero-main {
text-align: center;
}
@media (max-width: 768px) {
.rts-hero__images .rts-hero-main .image-main {
width: 70%;
margin: auto;
}
}
.rts-hero__images .rts-hero-main .hero-shape {
position: absolute;
}
.rts-hero__images .rts-hero-main .hero-shape.one {
bottom: -7%;
left: 0;
z-index: -1;
}
@media (max-width: 991px) {
.rts-hero__images .rts-hero-main .hero-shape.one {
left: 50%;
transform: translateX(-50%);
}
}
.rts-hero__images--shape .one {
top: 0%;
position: absolute;
left: 0%;
}
.rts-hero__images--shape .two {
position: absolute;
bottom: 10%;
left: 10%;
}
@media (max-width: 576px) {
.rts-hero__images--shape .two {
left: 5%;
}
}
.rts-hero__images--shape .three {
position: absolute;
right: 8%;
top: 0%;
}
@media (max-width: 576px) {
.rts-hero__images--shape .three {
right: 5%;
}
}
.rts-hero__images--shape .four {
position: absolute;
right: -2%;
bottom: 25%;
}
@media (max-width: 991px) {
.rts-hero__images--shape .four {
right: 0;
}
}
@media (max-width: 576px) {
.rts-hero__images--shape .four {
bottom: 10%;
}
}
@media (max-width: 576px) {
.rts-hero__images--shape .one,
.rts-hero__images--shape .two,
.rts-hero__images--shape .three,
.rts-hero__images--shape .four {
animation: none;
}
}
.rts-hero.rts-hero-one .overlay-bg {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
content: "";
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
content: "";
background-position: center;
opacity: 0.6;
background-repeat: repeat;
z-index: 1;
}
.rts-hero.rts-hero-one .banner-contents {
position: relative;
z-index: 2;
}
.rts-hero.rts-hero-two {
position: relative;
overflow: hidden;
padding: 270px 0 250px;
}
@media screen and (max-width: 576px) {
.rts-hero.rts-hero-two {
padding: 210px 0 215px;
}
}
.rts-hero.rts-hero-two .shape6 .shape {
position: absolute;
top: 10px;
left: 0;
}
.rts-hero.rts-hero-two .shape7 {
position: absolute;
left: 0;
height: 100%;
width: 100%;
bottom: 0;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
.rts-hero.rts-hero-two .rts-hero-two__content {
position: relative;
z-index: 1;
}
.rts-hero.rts-hero-two .rts-hero-two__content .title {
position: relative;
font-size: 66px;
font-weight: var(--bold);
color: var(--body-bg);
line-height: 76px;
}
@media screen and (max-width: 576px) {
.rts-hero.rts-hero-two .rts-hero-two__content .title {
font-size: 45px;
line-height: 1.12;
}
}
.rts-hero.rts-hero-two .rts-hero-two__content .title span {
font-weight: var(--semibold);
color: var(--color-third);
}
.rts-hero.rts-hero-two .rts-hero-two__content .title .stroke__line {
position: absolute;
bottom: -15%;
right: 38%;
}
.rts-hero.rts-hero-two .rts-hero-two__content--btn {
margin-top: 60px;
display: flex;
gap: 20px;
flex-wrap: wrap;
}
.rts-hero.rts-hero-two .rts-hero-two__content--btn .rts-btn {
padding: 18px 33px;
border-radius: 6px;
}
.rts-hero.rts-hero-two .rts-hero-two__content .description {
color: var(--body-bg);
font-weight: 500;
border: none;
line-height: 28px;
margin-bottom: 50px;
max-width: 525px;
display: block;
}
@media (max-width: 450px) {
.rts-hero.rts-hero-two .rts-hero-two__content .description {
margin-bottom: 30px;
}
}
.rts-hero.rts-hero-two .rts-hero-two__content .subtitle {
border: 1px solid var(--body-bg);
border-radius: 20px;
padding: 8px 12px;
display: inline-flex;
align-items: center;
gap: 10px;
color: var(--body-bg);
font-size: 18px;
font-family: var(--font-secondary);
margin-bottom: 40px;
}
@media (max-width: 991px) {
.rts-hero.rts-hero-two .rts-hero-two__content .subtitle {
display: flex;
max-width: -moz-max-content;
max-width: max-content;
}
}
@media (max-width: 450px) {
.rts-hero.rts-hero-two .rts-hero-two__content .subtitle {
font-size: 14px;
margin-bottom: 25px;
}
}
.rts-hero.rts-hero-two .rts-hero-two__content .offer-text {
margin-top: 25px;
color: var(--body-bg);
}
.rts-hero.rts-hero-two .rts-hero-two__content .offer-text svg {
margin-right: 5px;
}
.rts-hero.rts-hero-two .rts-hero-two__images {
position: relative;
z-index: 3;
}
@media screen and (max-width: 768px) {
.rts-hero.rts-hero-two .rts-hero-two__images.mobile-margin-top-100 {
margin-top: 130px;
}
}
.rts-hero.rts-hero-two .rts-hero-two__images .shape-image {
position: absolute;
}
.rts-hero.rts-hero-two .rts-hero-two__images .shape-image.one {
top: -15%;
right: 35%;
}
.rts-hero.rts-hero-two .rts-hero-two__images .shape-image.two {
top: 44.5%;
left: 1px;
animation: ping-pong 8s linear infinite;
}
.rts-hero.rts-hero-two .rts-hero-two__images .shape-image.three {
bottom: 0;
right: 33.2%;
animation: ping-pong 8s linear infinite;
}
.rts-hero.rts-hero-two .rts-hero-two__images .shape-image.four {
bottom: 10.4%;
right: 11.6%;
animation: bottom-top2 3s linear infinite;
}
.rts-hero.rts-hero-two .rts-hero-two__images .shape-image.five {
bottom: 30%;
right: 1%;
animation: ping-pong 8s linear infinite;
}
.rts-hero-three {
background: linear-gradient(259deg, #006CF5 7.09%, #0559D9 71.14%);
padding: 290px 0 250px;
position: relative;
overflow: hidden;
z-index: 1;
}
.rts-hero-three.domain-checker-padding {
padding: 255px 0 170px;
}
@media screen and (max-width: 576px) {
.rts-hero-three {
padding: 150px 0;
}
}
.rts-hero-three .rts-hero__content {
text-align: center;
}
.rts-hero-three .rts-hero__content h1 {
font-size: 55px;
line-height: 1.15;
margin-bottom: 25px;
}
@media screen and (max-width: 576px) {
.rts-hero-three .rts-hero__content h1 {
font-size: 35px;
}
}
.rts-hero-three .rts-hero__content h1::before {
display: none;
}
.rts-hero-three .rts-hero__content .description {
display: block;
margin-bottom: 40px;
max-width: 100%;
}
.rts-hero-three .rts-hero__content form {
width: 830px;
margin: auto;
position: relative;
}
@media screen and (max-width: 992px) {
.rts-hero-three .rts-hero__content form {
width: 600px;
}
}
@media screen and (max-width: 768px) {
.rts-hero-three .rts-hero__content form {
width: 100%;
}
}
.rts-hero-three .rts-hero__content form input {
background: var(--color-white);
height: 56px;
border-radius: 6px;
}
.rts-hero-three .rts-hero__content form input::-moz-placeholder {
color: #787878;
font-size: 14px;
font-weight: 400;
line-height: 46px;
}
.rts-hero-three .rts-hero__content form input::placeholder {
color: #787878;
font-size: 14px;
font-weight: 400;
line-height: 46px;
}
.rts-hero-three .rts-hero__content form .select-button-area {
display: flex;
align-items: center;
width: -moz-max-content;
width: max-content;
position: absolute;
top: 0;
right: 0;
}
.rts-hero-three .rts-hero__content form .select-button-area .nice-select {
background: #F4F4F4;
height: 56px;
line-height: 53px;
border-radius: 0;
border: none;
}
.rts-hero-three .rts-hero__content form .select-button-area .nice-select:focus {
border: none;
}
.rts-hero-three .rts-hero__content form .select-button-area button {
background: #FFC107;
height: 56px;
line-height: 56px;
padding: 0 40px;
border-radius: 0 6px 6px 0;
}
@media screen and (max-width: 576px) {
.rts-hero-three .rts-hero__content form .select-button-area button {
padding: 0 25px;
}
}
.rts-hero-three .rts-hero__content .banner-content-tag {
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
margin-top: 30px;
flex-wrap: wrap;
}
.rts-hero-three .rts-hero__content .banner-content-tag .tag-list {
display: flex;
padding: 0;
margin: 0;
gap: 10px;
flex-wrap: wrap;
}
.rts-hero-three .rts-hero__content .banner-content-tag .tag-list li {
list-style: none;
border-radius: 3px;
background: rgba(255, 255, 255, 0.1);
padding: 4px 9px;
display: flex;
align-items: center;
gap: 7px;
}
.rts-hero-three .rts-hero__content .banner-content-tag .tag-list li span {
color: var(--color-white);
}
.rts-hero-three .rts-hero__content.domain .description {
margin: auto;
margin-bottom: 40px;
}
.rts-hero-three .hero-image-big {
position: absolute;
bottom: -50%;
right: 80px;
z-index: -1;
}
@media (max-width: 768px) {
.rts-hero-three .hero-image-big {
display: none;
}
}
.rts-hero-three .banner-shape-area img {
position: absolute;
z-index: -2;
}
.rts-hero-three .banner-shape-area img.one {
top: 20%;
left: 6%;
}
@media screen and (max-width: 992px) {
.rts-hero-three .banner-shape-area img.one {
left: 50%;
transform: translate(-50%);
}
}
@media (max-width: 768px) {
.rts-hero-three .banner-shape-area img.one {
display: none;
}
}
.rts-hero-three .banner-shape-area img.two {
bottom: 20%;
left: 6%;
}
@media screen and (max-width: 1200px) {
.rts-hero-three .banner-shape-area img.two {
bottom: 10%;
}
}
@media (max-width: 768px) {
.rts-hero-three .banner-shape-area img.two {
display: none;
}
}
.rts-hero-three .banner-shape-area img.three {
top: 0;
left: 0;
}
.rts-hero-four {
padding: 220px 0;
}
@media screen and (max-width: 768px) {
.rts-hero-four {
padding: 100px 0;
}
}
.rts-hero-four.rts-hero__four {
background-position: center;
background-size: cover;
background-repeat: no-repeat;
position: relative;
z-index: 2;
}
.rts-hero-four.rts-hero__four::after {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
content: "";
background-image: url(//inext.ph/wp-content/plugins/rt-elements/assets/images/banner/banner-hero-four-bg.svg);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
z-index: -1;
}
.rts-hero-four.rts-hero__four::before {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
content: "";
background: var(--banner-four-gradient);
z-index: -1;
}
.rts-hero-four__content {
color: var(--color-white);
}
.rts-hero-four__content .offer {
text-transform: capitalize;
font-size: 18px;
font-family: var(--font-secondary);
font-weight: var(--semibold);
}
.rts-hero-four__content .offer .off {
color: var(--color-third);
}
.rts-hero-four__content .banner__title {
font-size: 60px;
font-weight: var(--bold);
line-height: 70px;
font-family: var(--font-primary);
display: inline-block;
margin-bottom: 30px;
}
@media screen and (max-width: 576px) {
.rts-hero-four__content .banner__title {
font-size: 35px;
line-height: 50px;
}
}
.rts-hero-four__content .description {
max-width: 460px;
}
.rts-hero-four__content .banner-buttons {
display: flex;
gap: 15px;
flex-wrap: wrap;
}
.rts-hero-four__content .feature {
margin-top: 40px;
margin-bottom: 50px;
}
.rts-hero-four__content .feature__list {
display: flex;
flex-direction: column;
gap: 15px;
padding: 0;
margin: 0;
list-style: none;
}
.rts-hero-four__content .feature__list .feature__item {
position: relative;
margin-left: 25px;
color: #fff;
font-family: var(--font-secondary);
font-weight: var(--medium);
}
.rts-hero-four__content .feature__list .feature__item::before {
position: absolute;
left: -25px;
top: 50%;
transform: translateY(-50%);
content: "\f00c";
font-family: var(--fontawesome);
height: 16px;
width: 16px;
font-size: 10px;
font-weight: 800;
display: inline-flex;
justify-content: center;
align-items: center;
border-radius: 50%;
background: var(--color-third);
color: var(--color-primary);
}
.rts-banner-slider-wrapper p {
margin-bottom: 0;
}
.rts-banner-slider-style1, .rts-banner-slider-style6 {
position: relative;
}
.rts-banner-slider-style1 .rts-banner-area-start-one, .rts-banner-slider-style6 .rts-banner-area-start-one {
padding-bottom: 100px;
}
@media only screen and (max-width: 767px) {
.rts-banner-slider-style1 .rts-banner-area-start-one, .rts-banner-slider-style6 .rts-banner-area-start-one {
margin-left: -10px !important;
}
}
.rts-banner-slider-style1 .float-right-content, .rts-banner-slider-style6 .float-right-content {
width: 121.3%;
}
@media only screen and (max-width: 767px) {
.rts-banner-slider-style1 .float-right-content .thumbnail-banner-one, .rts-banner-slider-style6 .float-right-content .thumbnail-banner-one {
height: 100vh;
}
.rts-banner-slider-style1 .float-right-content .thumbnail-banner-one img, .rts-banner-slider-style6 .float-right-content .thumbnail-banner-one img {
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
}
.rts-banner-slider-style1 .slider-content-area, .rts-banner-slider-style6 .slider-content-area {
position: relative;
max-width: 1920px;
margin: auto;
padding-bottom: 100px;
}
.rts-banner-slider-style1 .left-swiper-area-start, .rts-banner-slider-style6 .left-swiper-area-start {
position: absolute;
top: 45%;
transform: translateY(-50%);
z-index: 1;
left: 80px;
width: 354px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.rts-banner-slider-style1 .left-swiper-area-start, .rts-banner-slider-style6 .left-swiper-area-start {
top: 38%;
left: 42px;
}
}
@media only screen and (max-width: 767px) {
.rts-banner-slider-style1 .left-swiper-area-start, .rts-banner-slider-style6 .left-swiper-area-start {
top: 50%;
left: 40px;
width: 271px;
}
}
@media only screen and (max-width: 479px) {
.rts-banner-slider-style1 .left-swiper-area-start, .rts-banner-slider-style6 .left-swiper-area-start {
left: 27px;
}
}
.rts-banner-slider-style1 .left-swiper-area-start .right-shape, .rts-banner-slider-style6 .left-swiper-area-start .right-shape {
position: absolute;
right: 20px;
top: 20px;
z-index: 5;
}
@media only screen and (max-width: 767px) {
.rts-banner-slider-style1 .left-swiper-area-start .right-shape, .rts-banner-slider-style6 .left-swiper-area-start .right-shape {
right: 20px;
top: 20px;
}
}
.rts-banner-slider-style1 .left-swiper-area-start .single-left-banner-swiper-start, .rts-banner-slider-style6 .left-swiper-area-start .single-left-banner-swiper-start {
background: #30373e;
width: 354px;
padding: 40px 30px 40px 40px;
}
.rts-banner-slider-style1 .left-swiper-area-start .single-left-banner-swiper-start .swiper-slide, .rts-banner-slider-style6 .left-swiper-area-start .single-left-banner-swiper-start .swiper-slide {
background: #30373e;
}
@media only screen and (max-width: 767px) {
.rts-banner-slider-style1 .left-swiper-area-start .single-left-banner-swiper-start, .rts-banner-slider-style6 .left-swiper-area-start .single-left-banner-swiper-start {
width: 271px;
padding: 30px 25px;
}
}
.rts-banner-slider-style1 .left-swiper-area-start .single-left-banner-swiper-start .pre, .rts-banner-slider-style6 .left-swiper-area-start .single-left-banner-swiper-start .pre {
color: var(--color-primary);
padding-left: 80px;
position: relative;
}
.rts-banner-slider-style1 .left-swiper-area-start .single-left-banner-swiper-start .pre::after, .rts-banner-slider-style6 .left-swiper-area-start .single-left-banner-swiper-start .pre::after {
position: absolute;
left: 0;
content: "";
height: 1px;
width: 60px;
background: var(--color-primary);
top: 50%;
}
.rts-banner-slider-style1 .left-swiper-area-start .single-left-banner-swiper-start .pre::before, .rts-banner-slider-style6 .left-swiper-area-start .single-left-banner-swiper-start .pre::before {
position: absolute;
content: "";
height: 7px;
width: 7px;
background: var(--color-primary);
border-radius: 50%;
left: 0;
top: 50%;
transform: translateY(-50%);
}
.rts-banner-slider-style1 .left-swiper-area-start .single-left-banner-swiper-start .title, .rts-banner-slider-style6 .left-swiper-area-start .single-left-banner-swiper-start .title {
color: #fff;
line-height: 1.3;
font-size: 32px;
margin-top: 50px;
}
@media only screen and (max-width: 767px) {
.rts-banner-slider-style1 .left-swiper-area-start .single-left-banner-swiper-start .title, .rts-banner-slider-style6 .left-swiper-area-start .single-left-banner-swiper-start .title {
font-size: 22px;
margin-top: 25px;
}
}
.rts-banner-slider-style1 .left-swiper-area-start .single-left-banner-swiper-start div.disc p, .rts-banner-slider-style6 .left-swiper-area-start .single-left-banner-swiper-start div.disc p {
color: #fff;
margin: 0 0 20px;
}
@media only screen and (max-width: 767px) {
.rts-banner-slider-style1 .left-swiper-area-start .single-left-banner-swiper-start div.disc p, .rts-banner-slider-style6 .left-swiper-area-start .single-left-banner-swiper-start div.disc p {
font-size: 14px;
line-height: 21px;
}
}
.rts-banner-slider-style1 .left-swiper-area-start .single-left-banner-swiper-start .rts-btn, .rts-banner-slider-style6 .left-swiper-area-start .single-left-banner-swiper-start .rts-btn {
padding: 9px 36px;
min-width: -moz-max-content;
min-width: max-content;
font-size: 16px;
display: inline-block;
max-width: -moz-max-content;
max-width: max-content;
transition: 0.3s;
border-radius: 0px;
border: 1px solid;
color: #fff;
transition: 0.3s;
}
.rts-banner-slider-style1 .left-swiper-area-start .single-left-banner-swiper-start .rts-btn:hover, .rts-banner-slider-style6 .left-swiper-area-start .single-left-banner-swiper-start .rts-btn:hover {
transform: translateY(-3px) scale(1.02);
background: var(--color-primary);
border: 1px solid transparent;
}
.rts-banner-slider-style1 .left-swiper-area-start .swiper-wrapper .swiper-slide.swiper-slide-active .pre, .rts-banner-slider-style6 .left-swiper-area-start .swiper-wrapper .swiper-slide.swiper-slide-active .pre {
animation: fadeInUp2 1.5s;
animation-delay: 0s;
display: block;
}
.rts-banner-slider-style1 .left-swiper-area-start .swiper-wrapper .swiper-slide.swiper-slide-active .title, .rts-banner-slider-style6 .left-swiper-area-start .swiper-wrapper .swiper-slide.swiper-slide-active .title {
animation: fadeInUp2 1.5s;
animation-delay: 0s;
}
.rts-banner-slider-style1 .left-swiper-area-start .swiper-wrapper .swiper-slide.swiper-slide-active .disc, .rts-banner-slider-style6 .left-swiper-area-start .swiper-wrapper .swiper-slide.swiper-slide-active .disc {
animation: fadeInUp2 2.5s;
animation-delay: 0s;
}
.rts-banner-slider-style1 .left-swiper-area-start .swiper-wrapper .swiper-slide.swiper-slide-active .animation-55, .rts-banner-slider-style6 .left-swiper-area-start .swiper-wrapper .swiper-slide.swiper-slide-active .animation-55 {
animation: fadeInUp2 2.5s;
animation-delay: 0s;
}
.rts-banner-slider-style1 .swiper-slide.swiper-slide-active .pre, .rts-banner-slider-style6 .swiper-slide.swiper-slide-active .pre {
animation: fadeInUp 1s;
animation-delay: 0s;
display: block;
}
.rts-banner-slider-style1 .swiper-slide.swiper-slide-active .title, .rts-banner-slider-style6 .swiper-slide.swiper-slide-active .title {
animation: fadeInUp 1.5s;
animation-delay: 0s;
}
.rts-banner-slider-style1 .swiper-slide.swiper-slide-active .disc, .rts-banner-slider-style6 .swiper-slide.swiper-slide-active .disc {
animation: fadeInUp 2.5s;
animation-delay: 0s;
}
.rts-banner-slider-style1 .swiper-slide.swiper-slide-active .rts-btn, .rts-banner-slider-style6 .swiper-slide.swiper-slide-active .rts-btn {
animation: fadeInUp 2.5s;
animation-delay: 0s;
}
.rts-banner-slider-style1 .swiper-pagination, .rts-banner-slider-style6 .swiper-pagination {
display: flex;
align-items: center;
justify-content: center;
bottom: 55px !important;
}
@media only screen and (max-width: 575px) {
.rts-banner-slider-style1 .swiper-pagination, .rts-banner-slider-style6 .swiper-pagination {
bottom: 20px;
}
}
.rts-banner-slider-style1 .swiper-pagination-bullet, .rts-banner-slider-style6 .swiper-pagination-bullet {
opacity: 1;
background: var(--color-primary);
height: 8px;
width: 8px;
}
.rts-banner-slider-style1 .swiper-pagination-bullet.swiper-pagination-bullet-active, .rts-banner-slider-style6 .swiper-pagination-bullet.swiper-pagination-bullet-active {
background: url(//inext.ph/wp-content/plugins/rt-elements/assets/img/icon/dot.png) !important;
height: 16px;
width: 16px;
background-color: transparent;
background-size: contain;
}
.pagination-left-banner-one {
position: absolute;
bottom: 105px;
left: 90px;
display: flex;
align-items: center;
justify-content: space-between;
width: 138px;
gap: 10px;
z-index: 10;
}
@media only screen and (min-width: 1600px) and (max-width: 1919px) {
.pagination-left-banner-one {
bottom: 70px;
}
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
.pagination-left-banner-one {
bottom: 70px;
}
}
@media only screen and (max-width: 767px) {
.pagination-left-banner-one {
right: 50px;
left: auto;
}
}
@media only screen and (max-width: 1199px) {
.pagination-left-banner-one {
bottom: 70px;
}
}
.pagination-left-banner-one .swiper-pagination-progressbar {
width: 90px;
background: #e3e3e3;
height: 2px;
left: 23px;
position: relative;
}
.pagination-left-banner-one .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
height: 2px;
background: var(--color-primary);
}
.rt--slider.rts-banner-slider-style6 {
height: 85vh;
overflow: hidden;
}
@media only screen and (max-width: 575px) {
.rt--slider.rts-banner-slider-style6 .slider-content-area {
padding: 0px !important;
}
}
@media only screen and (max-width: 767px) {
.rt--slider.rts-banner-slider-style6 .swiper-pagination {
bottom: 10px !important;
}
}
.rt--slider.rts-banner-slider-style6 .slider-content-area,
.rt--slider.rts-banner-slider-style6 .slider-content-area .container,
.rt--slider.rts-banner-slider-style6 .slider-content-area .container .row,
.rt--slider.rts-banner-slider-style6 .slider-content-area .container .row .float-right-content,
.rt--slider.rts-banner-slider-style6 .slider-content-area .container .row .float-right-content .signle-swiper-start,
.rt--slider.rts-banner-slider-style6 .slider-content-area .container .row .float-right-content .signle-swiper-start .thumbnail-banner-one,
.rt--slider.rts-banner-slider-style6 .slider-content-area .container .row .float-right-content .signle-swiper-start .thumbnail-banner-one {
height: 100%;
}
.rt--slider.rts-banner-slider-style6 .slider-content-area img,
.rt--slider.rts-banner-slider-style6 .slider-content-area .container img,
.rt--slider.rts-banner-slider-style6 .slider-content-area .container .row img,
.rt--slider.rts-banner-slider-style6 .slider-content-area .container .row .float-right-content img,
.rt--slider.rts-banner-slider-style6 .slider-content-area .container .row .float-right-content .signle-swiper-start img,
.rt--slider.rts-banner-slider-style6 .slider-content-area .container .row .float-right-content .signle-swiper-start .thumbnail-banner-one img,
.rt--slider.rts-banner-slider-style6 .slider-content-area .container .row .float-right-content .signle-swiper-start .thumbnail-banner-one img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.rt--slider.rts-banner-slider-style6 .swiper-pagination-bullet {
background: #000;
}
@media only screen and (max-width: 767px) {
.rt--slider.rts-banner-slider-style6 .signle-swiper-start, .rt--slider.rts-banner-slider-style6 .thumbnail-banner-one {
height: 100vh;
}
.rt--slider.rts-banner-slider-style6 .signle-swiper-start img, .rt--slider.rts-banner-slider-style6 .thumbnail-banner-one img {
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
}
.rt--slider.rts-banner-slider-style6 .swiper-pagination-progressbar {
width: 90px !important;
background: #e3e3e3;
height: 2px !important;
left: 23px;
}
.rt--slider.rts-banner-slider-style6 .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
height: 2px;
background: var(--color-primary);
}
.bg-white-para {
background: #fff;
position: relative;
z-index: 10;
}
.rts-banner-slider-style2, .rts-banner-slider-style7 {
overflow: hidden;
position: relative;
}
.rts-banner-slider-style2 .banner-twoa-rea-start, .rts-banner-slider-style7 .banner-twoa-rea-start {
height: 100vh;
position: relative;
overflow: hidden;
}
.rts-banner-slider-style2 .banner-twoa-rea-start .banner-inner-content-wrapper, .rts-banner-slider-style7 .banner-twoa-rea-start .banner-inner-content-wrapper {
position: absolute;
top: 45%;
left: 15%;
transform: translateY(-50%);
}
@media only screen and (max-width: 1199px) {
.rts-banner-slider-style2 .banner-twoa-rea-start .banner-inner-content-wrapper, .rts-banner-slider-style7 .banner-twoa-rea-start .banner-inner-content-wrapper {
left: 6%;
}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.rts-banner-slider-style2 .banner-twoa-rea-start .banner-inner-content-wrapper, .rts-banner-slider-style7 .banner-twoa-rea-start .banner-inner-content-wrapper {
top: 44%;
}
}
@media only screen and (max-width: 767px) {
.rts-banner-slider-style2 .banner-twoa-rea-start .banner-inner-content-wrapper, .rts-banner-slider-style7 .banner-twoa-rea-start .banner-inner-content-wrapper {
left: 15px;
top: 45%;
}
}
.rts-banner-slider-style2 .banner-twoa-rea-start .banner-inner-content-wrapper span.pre-title, .rts-banner-slider-style7 .banner-twoa-rea-start .banner-inner-content-wrapper span.pre-title {
color: #e3e3e3;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 26px;
letter-spacing: -0.36px;
opacity: 1;
}
.rts-banner-slider-style2 .banner-twoa-rea-start .banner-inner-content-wrapper .title, .rts-banner-slider-style7 .banner-twoa-rea-start .banner-inner-content-wrapper .title {
margin-top: 0;
margin-bottom: 20px;
margin-left: -3px;
color: var(--color-white);
}
.rts-banner-slider-style2 .banner-twoa-rea-start .banner-inner-content-wrapper .title p, .rts-banner-slider-style7 .banner-twoa-rea-start .banner-inner-content-wrapper .title p {
color: #e3e3e3;
font-size: 80px;
line-height: 95px;
font-style: normal;
font-weight: 600;
text-transform: capitalize;
margin-bottom: 0px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.rts-banner-slider-style2 .banner-twoa-rea-start .banner-inner-content-wrapper .title p, .rts-banner-slider-style7 .banner-twoa-rea-start .banner-inner-content-wrapper .title p {
font-size: 60px;
line-height: 75px;
}
}
@media only screen and (max-width: 767px) {
.rts-banner-slider-style2 .banner-twoa-rea-start .banner-inner-content-wrapper .title p, .rts-banner-slider-style7 .banner-twoa-rea-start .banner-inner-content-wrapper .title p {
font-size: 50px;
line-height: 65px;
}
}
@media only screen and (max-width: 575px) {
.rts-banner-slider-style2 .banner-twoa-rea-start .banner-inner-content-wrapper .title p, .rts-banner-slider-style7 .banner-twoa-rea-start .banner-inner-content-wrapper .title p {
font-size: 30px;
line-height: 55px;
}
}
.rts-banner-slider-style2 .banner-twoa-rea-start .banner-inner-content-wrapper .title p em, .rts-banner-slider-style7 .banner-twoa-rea-start .banner-inner-content-wrapper .title p em {
font-style: italic;
font-weight: 400;
}
.rts-banner-slider-style2 .banner-twoa-rea-start .banner-inner-content-wrapper .title span, .rts-banner-slider-style7 .banner-twoa-rea-start .banner-inner-content-wrapper .title span {
color: #e3e3e3;
font-size: 80px;
font-style: italic;
font-weight: 300;
line-height: 95px;
text-transform: capitalize;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.rts-banner-slider-style2 .banner-twoa-rea-start .banner-inner-content-wrapper .title span, .rts-banner-slider-style7 .banner-twoa-rea-start .banner-inner-content-wrapper .title span {
font-size: 60px;
line-height: 75px;
}
}
@media only screen and (max-width: 767px) {
.rts-banner-slider-style2 .banner-twoa-rea-start .banner-inner-content-wrapper .title span, .rts-banner-slider-style7 .banner-twoa-rea-start .banner-inner-content-wrapper .title span {
font-size: 50px;
line-height: 65px;
}
}
@media only screen and (max-width: 575px) {
.rts-banner-slider-style2 .banner-twoa-rea-start .banner-inner-content-wrapper .title span, .rts-banner-slider-style7 .banner-twoa-rea-start .banner-inner-content-wrapper .title span {
font-size: 30px;
line-height: 55px;
}
}
.rts-banner-slider-style2 .banner-twoa-rea-start .banner-inner-content-wrapper .disc, .rts-banner-slider-style7 .banner-twoa-rea-start .banner-inner-content-wrapper .disc {
width: 55%;
color: #e3e3e3;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 26px;
letter-spacing: -0.32px;
opacity: 1;
margin-bottom: 40px;
}
@media only screen and (max-width: 575px) {
.rts-banner-slider-style2 .banner-twoa-rea-start .banner-inner-content-wrapper .disc, .rts-banner-slider-style7 .banner-twoa-rea-start .banner-inner-content-wrapper .disc {
width: 80%;
}
}
@media only screen and (max-width: 479px) {
.rts-banner-slider-style2 .banner-twoa-rea-start .banner-inner-content-wrapper .disc, .rts-banner-slider-style7 .banner-twoa-rea-start .banner-inner-content-wrapper .disc {
width: 100%;
}
}
.rts-banner-slider-style2 .banner-twoa-rea-start .banner-inner-content-wrapper .rts-btn-wrapper a.rts-btn, .rts-banner-slider-style7 .banner-twoa-rea-start .banner-inner-content-wrapper .rts-btn-wrapper a.rts-btn {
color: #fff;
padding: 12px 32px;
opacity: 1;
border: 1px solid #88919B;
border-radius: 4px;
}
.rts-banner-slider-style2 .banner-twoa-rea-start .banner-inner-content-wrapper .rts-btn-wrapper a.rts-btn i, .rts-banner-slider-style7 .banner-twoa-rea-start .banner-inner-content-wrapper .rts-btn-wrapper a.rts-btn i {
margin-left: 8px;
}
.rts-banner-slider-style2 .banner-twoa-rea-start .banner-inner-content-wrapper .rts-btn-wrapper a.rts-btn:hover, .rts-banner-slider-style7 .banner-twoa-rea-start .banner-inner-content-wrapper .rts-btn-wrapper a.rts-btn:hover {
background: var(--color-primary);
color: #fff;
border: 1px solid transparent;
}
.rts-banner-slider-style2 .swiper-slide-active .pre-title, .rts-banner-slider-style7 .swiper-slide-active .pre-title {
animation: fadeInUp2 1.5s;
animation-delay: 0s;
display: block;
opacity: 1;
}
.rts-banner-slider-style2 .swiper-slide-active .title, .rts-banner-slider-style7 .swiper-slide-active .title {
animation: fadeInUp2 1.5s;
animation-delay: 0s;
opacity: 1;
}
.rts-banner-slider-style2 .swiper-slide-active div.disc, .rts-banner-slider-style7 .swiper-slide-active div.disc {
animation: fadeInUp2 2.5s;
animation-delay: 0s;
opacity: 1;
}
.rts-banner-slider-style2 .swiper-slide-active .rts-btn, .rts-banner-slider-style7 .swiper-slide-active .rts-btn {
animation: fadeInUp2 3s;
animation-delay: 0s;
opacity: 1;
}
.rts-banner-slider-style2 .thumbs-swiper-main-wrapper-two, .rts-banner-slider-style7 .thumbs-swiper-main-wrapper-two {
width: 900px;
bottom: 0;
position: absolute;
right: 0;
left: auto;
}
@media only screen and (max-width: 1199px) {
.rts-banner-slider-style2 .thumbs-swiper-main-wrapper-two, .rts-banner-slider-style7 .thumbs-swiper-main-wrapper-two {
width: 650px;
}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.rts-banner-slider-style2 .thumbs-swiper-main-wrapper-two, .rts-banner-slider-style7 .thumbs-swiper-main-wrapper-two {
width: 650px;
}
}
@media only screen and (max-width: 767px) {
.rts-banner-slider-style2 .thumbs-swiper-main-wrapper-two, .rts-banner-slider-style7 .thumbs-swiper-main-wrapper-two {
display: none;
}
}
.rts-banner-slider-style2 .thumbs-swiper-main-wrapper-two .swiper-banner-thumb-2, .rts-banner-slider-style7 .thumbs-swiper-main-wrapper-two .swiper-banner-thumb-2 {
width: 100%;
}
.rts-banner-slider-style2 .thumbs-swiper-main-wrapper-two .swiper-banner-thumb-2 .swiper-wrapper, .rts-banner-slider-style7 .thumbs-swiper-main-wrapper-two .swiper-banner-thumb-2 .swiper-wrapper {
display: flex;
align-items: center;
justify-content: space-between;
}
.rts-banner-slider-style2 .thumbs-swiper-main-wrapper-two .swiper-banner-thumb-2 .swiper-wrapper .swiper-slide, .rts-banner-slider-style7 .thumbs-swiper-main-wrapper-two .swiper-banner-thumb-2 .swiper-wrapper .swiper-slide {
width: 300px;
}
.rts-banner-slider-style2 .thumbs-swiper-main-wrapper-two .swiper-banner-thumb-2 .swiper-wrapper .single-item, .rts-banner-slider-style7 .thumbs-swiper-main-wrapper-two .swiper-banner-thumb-2 .swiper-wrapper .single-item {
width: 300px;
padding: 30px;
background: #fff;
position: relative;
height: 180px;
cursor: pointer;
}
.rts-banner-slider-style2 .thumbs-swiper-main-wrapper-two .swiper-banner-thumb-2 .swiper-wrapper .single-item .slider-overlay, .rts-banner-slider-style7 .thumbs-swiper-main-wrapper-two .swiper-banner-thumb-2 .swiper-wrapper .single-item .slider-overlay {
background: #fff;
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
.rts-banner-slider-style2 .thumbs-swiper-main-wrapper-two .swiper-banner-thumb-2 .swiper-wrapper .single-item, .rts-banner-slider-style7 .thumbs-swiper-main-wrapper-two .swiper-banner-thumb-2 .swiper-wrapper .single-item {
height: 131px;
}
}
@media only screen and (max-width: 1199px) {
.rts-banner-slider-style2 .thumbs-swiper-main-wrapper-two .swiper-banner-thumb-2 .swiper-wrapper .single-item, .rts-banner-slider-style7 .thumbs-swiper-main-wrapper-two .swiper-banner-thumb-2 .swiper-wrapper .single-item {
width: 217px;
height: 131px;
}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.rts-banner-slider-style2 .thumbs-swiper-main-wrapper-two .swiper-banner-thumb-2 .swiper-wrapper .single-item, .rts-banner-slider-style7 .thumbs-swiper-main-wrapper-two .swiper-banner-thumb-2 .swiper-wrapper .single-item {
width: 217px;
height: 131px;
}
}
.rts-banner-slider-style2 .thumbs-swiper-main-wrapper-two .swiper-banner-thumb-2 .swiper-wrapper .single-item .number, .rts-banner-slider-style7 .thumbs-swiper-main-wrapper-two .swiper-banner-thumb-2 .swiper-wrapper .single-item .number {
position: absolute;
right: 30px;
font-size: 60px;
-webkit-text-stroke: 1px;
-webkit-text-stroke-color: #30373e;
color: transparent;
font-weight: 700;
}
@media only screen and (max-width: 1199px) {
.rts-banner-slider-style2 .thumbs-swiper-main-wrapper-two .swiper-banner-thumb-2 .swiper-wrapper .single-item .number, .rts-banner-slider-style7 .thumbs-swiper-main-wrapper-two .swiper-banner-thumb-2 .swiper-wrapper .single-item .number {
display: none;
}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.rts-banner-slider-style2 .thumbs-swiper-main-wrapper-two .swiper-banner-thumb-2 .swiper-wrapper .single-item .number, .rts-banner-slider-style7 .thumbs-swiper-main-wrapper-two .swiper-banner-thumb-2 .swiper-wrapper .single-item .number {
display: none;
}
}
.rts-banner-slider-style2 .thumbs-swiper-main-wrapper-two .swiper-banner-thumb-2 .swiper-wrapper .single-item .inner, .rts-banner-slider-style7 .thumbs-swiper-main-wrapper-two .swiper-banner-thumb-2 .swiper-wrapper .single-item .inner {
position: absolute;
bottom: 30px;
left: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.rts-banner-slider-style2 .thumbs-swiper-main-wrapper-two .swiper-banner-thumb-2 .swiper-wrapper .single-item .inner, .rts-banner-slider-style7 .thumbs-swiper-main-wrapper-two .swiper-banner-thumb-2 .swiper-wrapper .single-item .inner {
left: 15px;
}
}
.rts-banner-slider-style2 .thumbs-swiper-main-wrapper-two .swiper-banner-thumb-2 .swiper-wrapper .single-item .pre, .rts-banner-slider-style7 .thumbs-swiper-main-wrapper-two .swiper-banner-thumb-2 .swiper-wrapper .single-item .pre {
color: #b19777;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 26px;
text-transform: capitalize;
display: block;
}
.rts-banner-slider-style2 .thumbs-swiper-main-wrapper-two .swiper-banner-thumb-2 .swiper-wrapper .single-item .title, .rts-banner-slider-style7 .thumbs-swiper-main-wrapper-two .swiper-banner-thumb-2 .swiper-wrapper .single-item .title {
color: #30373e;
font-size: 26px;
font-style: normal;
font-weight: 600;
line-height: 36px; text-transform: capitalize;
margin-bottom: 0;
}
.rts-banner-slider-style2 .thumbs-swiper-main-wrapper-two .swiper-banner-thumb-2 .swiper-wrapper .single-item .title p, .rts-banner-slider-style7 .thumbs-swiper-main-wrapper-two .swiper-banner-thumb-2 .swiper-wrapper .single-item .title p {
margin-bottom: 0;
}
.rts-banner-slider-style2 .thumbs-swiper-main-wrapper-two .swiper-banner-thumb-2 .swiper-wrapper .swiper-slide-thumb-active .single-item, .rts-banner-slider-style7 .thumbs-swiper-main-wrapper-two .swiper-banner-thumb-2 .swiper-wrapper .swiper-slide-thumb-active .single-item {
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.rts-banner-slider-style2 .thumbs-swiper-main-wrapper-two .swiper-banner-thumb-2 .swiper-wrapper .swiper-slide-thumb-active .single-item .slider-overlay, .rts-banner-slider-style7 .thumbs-swiper-main-wrapper-two .swiper-banner-thumb-2 .swiper-wrapper .swiper-slide-thumb-active .single-item .slider-overlay {
display: none;
}
.rts-banner-slider-style2 .thumbs-swiper-main-wrapper-two .swiper-banner-thumb-2 .swiper-wrapper .swiper-slide-thumb-active .single-item .number, .rts-banner-slider-style7 .thumbs-swiper-main-wrapper-two .swiper-banner-thumb-2 .swiper-wrapper .swiper-slide-thumb-active .single-item .number {
-webkit-text-stroke-color: #ffffff;
}
.rts-banner-slider-style2 .thumbs-swiper-main-wrapper-two .swiper-banner-thumb-2 .swiper-wrapper .swiper-slide-thumb-active .single-item .pre, .rts-banner-slider-style7 .thumbs-swiper-main-wrapper-two .swiper-banner-thumb-2 .swiper-wrapper .swiper-slide-thumb-active .single-item .pre {
color: #fff;
}
.rts-banner-slider-style2 .thumbs-swiper-main-wrapper-two .swiper-banner-thumb-2 .swiper-wrapper .swiper-slide-thumb-active .single-item .title, .rts-banner-slider-style7 .thumbs-swiper-main-wrapper-two .swiper-banner-thumb-2 .swiper-wrapper .swiper-slide-thumb-active .single-item .title {
color: #fff;
}
.rts-banner-slider-style2 .rt-slider-navigation, .rts-banner-slider-style7 .rt-slider-navigation {
position: static;
}
.rts-banner-slider-style2 .rt-slider-navigation .swiper-button-next,
.rts-banner-slider-style2 .rt-slider-navigation .swiper-button-prev, .rts-banner-slider-style7 .rt-slider-navigation .swiper-button-next,
.rts-banner-slider-style7 .rt-slider-navigation .swiper-button-prev {
background-image: none;
position: absolute;
z-index: 1;
bottom: 80px;
left: 80px;
}
@media only screen and (max-width: 1199px) {
.rts-banner-slider-style2 .rt-slider-navigation .swiper-button-next,
.rts-banner-slider-style2 .rt-slider-navigation .swiper-button-prev, .rts-banner-slider-style7 .rt-slider-navigation .swiper-button-next,
.rts-banner-slider-style7 .rt-slider-navigation .swiper-button-prev {
display: none;
}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.rts-banner-slider-style2 .rt-slider-navigation .swiper-button-next,
.rts-banner-slider-style2 .rt-slider-navigation .swiper-button-prev, .rts-banner-slider-style7 .rt-slider-navigation .swiper-button-next,
.rts-banner-slider-style7 .rt-slider-navigation .swiper-button-prev {
left: 52px;
display: block;
}
}
@media only screen and (max-width: 767px) {
.rts-banner-slider-style2 .rt-slider-navigation .swiper-button-next,
.rts-banner-slider-style2 .rt-slider-navigation .swiper-button-prev, .rts-banner-slider-style7 .rt-slider-navigation .swiper-button-next,
.rts-banner-slider-style7 .rt-slider-navigation .swiper-button-prev {
left: 25px;
}
}
.rts-banner-slider-style2 .rt-slider-navigation .swiper-button-next i,
.rts-banner-slider-style2 .rt-slider-navigation .swiper-button-prev i, .rts-banner-slider-style7 .rt-slider-navigation .swiper-button-next i,
.rts-banner-slider-style7 .rt-slider-navigation .swiper-button-prev i {
position: absolute;
height: 45px;
width: 45px;
content: "";
border-radius: 50%;
border: 1px solid #d9d9d9;
color: #7d7d7d;
z-index: 2;
display: flex;
align-items: center;
justify-content: center;
transition: 0.3s;
background: transparent;
}
.rts-banner-slider-style2 .rt-slider-navigation .swiper-button-next:hover i,
.rts-banner-slider-style2 .rt-slider-navigation .swiper-button-prev:hover i, .rts-banner-slider-style7 .rt-slider-navigation .swiper-button-next:hover i,
.rts-banner-slider-style7 .rt-slider-navigation .swiper-button-prev:hover i {
background: var(--color-primary);
color: #fff;
border: 1px solid transparent;
transform: scale(1.2);
}
.rts-banner-slider-style2 .rt-slider-navigation .swiper-button-prev, .rts-banner-slider-style7 .rt-slider-navigation .swiper-button-prev {
top: 84%;
}
@media only screen and (max-width: 767px) {
.rts-banner-slider-style2 .rt-slider-navigation .swiper-button-prev, .rts-banner-slider-style7 .rt-slider-navigation .swiper-button-prev {
top: 82%;
}
}
.rts-banner-slider-style2 .rt-slider-navigation .swiper-button-prev::after, .rts-banner-slider-style7 .rt-slider-navigation .swiper-button-prev::after {
content: "\f053";
font-family: var(--font-3);
}
.rts-banner-slider-style2 .rt-slider-navigation .swiper-button-next, .rts-banner-slider-style7 .rt-slider-navigation .swiper-button-next {
top: 90%;
}
.rts-banner-slider-style2 .rt-slider-navigation .swiper-button-next::after, .rts-banner-slider-style7 .rt-slider-navigation .swiper-button-next::after {
content: "\f054";
font-family: var(--font-3);
}
.rts-banner-slider-style2 span.swiper-pagination-bullet, .rts-banner-slider-style7 span.swiper-pagination-bullet {
height: 8px;
width: 8px;
background: white;
}
.rts-banner-slider-style7 .slider-content-area::before {
display: block;
content: "";
height: 100%;
width: 100%;
position: absolute;
z-index: 1;
}
.rts-banner-slider-style7 .banner-twoa-rea-start .banner-inner-content-wrapper {
top: 50%;
z-index: 2;
}
.rts-banner-slider-style7 .banner-twoa-rea-start .banner-inner-content-wrapper span.pre-title {
margin-bottom: 10px;
}
.rts-banner-slider-style7 .banner-twoa-rea-start .banner-inner-content-wrapper span.pre-title .subtitle-icon {
margin-right: 10px;
}
.rts-banner-slider-style7 .banner-twoa-rea-start .banner-inner-content-wrapper .title {
font-size: 80px;
line-height: 90px;
}
.rts-banner-slider-style7 .banner-twoa-rea-start .banner-inner-content-wrapper .title span {
color: var(--color-third);
font-weight: bold;
font-style: normal;
}
.rts-banner-slider-style7 .banner-twoa-rea-start .banner-inner-content-wrapper .disc {
font-size: 20px;
line-height: 30px;
}
.rts-banner-slider-style7 .banner-twoa-rea-start .banner-inner-content-wrapper .rts-btn-wrapper {
gap: 20px;
}
.rts-banner-slider-style7 .banner-twoa-rea-start .banner-inner-content-wrapper .rts-btn-wrapper a.rts-btn {
padding: 16px;
border-radius: 6px;
display: inline-block;
}
.rts-banner-slider-style7 .banner-twoa-rea-start .banner-inner-content-wrapper .rts-btn-wrapper a.rts-btn.white__btn {
color: var(--color-secondary);
}
.rts-banner-slider-style7 .banner-twoa-rea-start .banner-inner-content-wrapper .rts-btn-wrapper a.rts-btn i, .rts-banner-slider-style7 .banner-twoa-rea-start .banner-inner-content-wrapper .rts-btn-wrapper a.rts-btn svg {
margin-left: 5px;
fill: currentColor;
}
.rts-banner-slider-style7 .banner-twoa-rea-start .banner-inner-content-wrapper .rts-btn-wrapper a.rts-btn:hover {
background-color: var(--color-third);
}
.rts-banner-slider-style7 .banner-twoa-rea-start .banner-inner-content-wrapper .rts-btn-wrapper a.rts-btn.white__btn__outline {
border: 1px solid var(--color-white);
}
.rts-banner-slider-style7 .banner-twoa-rea-start .banner-inner-content-wrapper .rts-btn-wrapper a.rts-btn.white__btn__outline:hover {
border-color: var(--color-third);
color: var(--color-secondary);
}
.rts-banner-slider-style7 .banner-twoa-rea-start .banner-inner-content-wrapper .rts-btn-wrapper a.rts-btn.white__btn__outline:hover i, .rts-banner-slider-style7 .banner-twoa-rea-start .banner-inner-content-wrapper .rts-btn-wrapper a.rts-btn.white__btn__outline:hover svg {
fill: currentColor;
}
.rts-banner-slider-style7 .rt-slider-navigation {
display: none;
}
.rts-banner-slider-style7 .rt-slider-navigation .swiper-button-next,
.rts-banner-slider-style7 .rt-slider-navigation .swiper-button-prev {
background-image: none;
position: absolute;
z-index: 1;
bottom: 80px;
left: 60px;
}
@media only screen and (max-width: 1199px) {
.rts-banner-slider-style7 .rt-slider-navigation .swiper-button-next,
.rts-banner-slider-style7 .rt-slider-navigation .swiper-button-prev {
display: none;
}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.rts-banner-slider-style7 .rt-slider-navigation .swiper-button-next,
.rts-banner-slider-style7 .rt-slider-navigation .swiper-button-prev {
left: 52px;
display: block;
}
}
@media only screen and (max-width: 767px) {
.rts-banner-slider-style7 .rt-slider-navigation .swiper-button-next,
.rts-banner-slider-style7 .rt-slider-navigation .swiper-button-prev {
left: 25px;
}
}
.rts-banner-slider-style7 .rt-slider-navigation .swiper-button-next i,
.rts-banner-slider-style7 .rt-slider-navigation .swiper-button-prev i {
position: absolute;
height: 80px;
width: 80px;
content: "";
border-radius: 50%;
border: 1px solid #6D6D6D;
color: var(--color-white);
z-index: 2;
display: flex;
align-items: center;
justify-content: center;
transition: 0.3s;
background: transparent;
}
.rts-banner-slider-style7 .rt-slider-navigation .swiper-button-next:hover i,
.rts-banner-slider-style7 .rt-slider-navigation .swiper-button-prev:hover i {
background: var(--color-third);
border-color: var(--color-third);
color: var(--color-secondary);
transform: unset;
}
.rts-banner-slider-style7 .rt-slider-navigation .swiper-button-prev {
top: 50%;
left: 60px;
}
.rts-banner-slider-style7 .rt-slider-navigation .swiper-button-prev::after {
content: "\f053";
font-family: var(--font-3);
}
.rts-banner-slider-style7 .rt-slider-navigation .swiper-button-next {
top: 50%;
left: auto;
right: 60px;
}
.rts-banner-slider-style7 .rt-slider-navigation .swiper-button-next::after {
content: "\f054";
font-family: var(--font-3);
}
.rts-banner-slider-style7:hover .rt-slider-navigation {
display: inline;
}
.swiper-banner-two-wrapper .swiper-slide {
pointer-events: painted !important;
}
@media only screen and (max-width: 767px) {
.swiper-banner-two-wrapper .swiper-wrapper .swiper-slide > div {
height: 670px;
}
.banner-twoa-rea-start .banner-inner-content-wrapper {
top: 50%;
}
}
@media only screen and (max-width: 575px) {
.swiper-banner-two-wrapper .swiper-wrapper .swiper-slide > div {
height: 570px;
}
}
.banner-three-bg {
height: auto;
}
@media only screen and (max-width: 575px) {
.banner-three-bg {
height: 620px;
}
}
.index-three {
background: #1e1f22;
}
.banner-wrapper-main-three {
position: relative;
position: relative;
}
.banner-wrapper-main-three p {
margin-bottom: 0;
}
.banner-wrapper-main-three .banner-left-img {
position: absolute;
top: 50%;
transform: translateY(-50%);
}
@media only screen and (max-width: 1199px) {
.banner-wrapper-main-three .banner-left-img img {
height: 520px;
}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.banner-wrapper-main-three .banner-left-img {
display: none;
}
.banner-wrapper-main-three .banner-left-img img {
height: 470px;
}
}
@media only screen and (max-width: 767px) {
.banner-wrapper-main-three .banner-left-img {
display: none;
}
.banner-wrapper-main-three .banner-left-img img {
height: 470px;
}
}
.banner-wrapper-main-three .left-banner-three {
position: absolute;
padding-left: 150px;
top: 50%;
transform: translateY(-50%);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.banner-wrapper-main-three .left-banner-three {
padding-left: 20px;
}
}
@media only screen and (max-width: 767px) {
.banner-wrapper-main-three .left-banner-three {
padding-left: 20px;
}
}
.banner-wrapper-main-three .left-banner-three .rts-btn {
padding: 13px 30px;
}
.banner-wrapper-main-three .mySwiper-banner-three {
margin-left: auto;
height: calc(100vh - 100px);
}
.banner-wrapper-main-three .mySwiper-banner-three .swiper-wrapper div.disc {
max-width: 60%;
}
@media only screen and (max-width: 575px) {
.banner-wrapper-main-three .mySwiper-banner-three .swiper-wrapper div.disc {
max-width: 100%;
}
}
.banner-wrapper-main-three .mySwiper-banner-three .swiper-wrapper .thumbnail {
width: 100%;
display: flex;
justify-content: flex-end;
}
@media only screen and (max-width: 575px) {
.banner-wrapper-main-three .mySwiper-banner-three .swiper-wrapper .thumbnail {
display: none;
}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.banner-wrapper-main-three .mySwiper-banner-three .swiper-wrapper .thumbnail img {
min-width: 100%;
}
}
.banner-wrapper-main-three .mySwiper-banner-three .swiper-wrapper .rts-btn.btn-border.radious {
border-radius: 30px;
color: #d9d9d9;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 26px;
border: 1px solid #1e1f22;
display: flex;
align-items: center;
transition: 0.3s;
}
.banner-wrapper-main-three .mySwiper-banner-three .swiper-wrapper .rts-btn.btn-border.radious:hover {
background: var(--color-primary);
}
.banner-wrapper-main-three .mySwiper-banner-three .swiper-wrapper .rts-btn.btn-border.radious i {
margin-left: 5px;
}
.banner-wrapper-main-three .mySwiper-banner-three .swiper-slide-active {
display: block !important;
}
.banner-wrapper-main-three .single-banner-wrapper-three {
height: calc(100vh - 100px);
}
.banner-wrapper-main-three .single-banner-wrapper-three span.pre-title {
color: #b19777;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px;
letter-spacing: 1.6px;
text-transform: capitalize;
margin-bottom: 0;
}
.banner-wrapper-main-three .single-banner-wrapper-three .title {
color: #d9d9d9;
font-size: 60px;
font-style: normal;
font-weight: 600;
line-height: 70px;
text-transform: capitalize;
margin-bottom: 40px;
margin-top: 15px;
}
.banner-wrapper-main-three .single-banner-wrapper-three .title p {
margin-bottom: 0;
}
.banner-wrapper-main-three .single-banner-wrapper-three .title span {
color: #b19777;
font-size: 60px;
font-style: normal;
font-weight: 600;
line-height: 70px;
text-transform: capitalize;
}
.banner-wrapper-main-three .single-banner-wrapper-three .rts-btn {
border-radius: 2px !important;
border-color: #26272b !important;
}
.banner-wrapper-main-three .mySwiper-banner-three .swiper-wrapper .swiper-slide.swiper-slide-active .left-banner-three .pre-title {
animation: fadeInUp 1.5s;
animation-delay: 0s;
display: block;
}
.banner-wrapper-main-three .mySwiper-banner-three .swiper-wrapper .swiper-slide.swiper-slide-active .left-banner-three .title {
animation: fadeInUp 1.9s;
animation-delay: 0s;
}
.banner-wrapper-main-three .mySwiper-banner-three .swiper-wrapper .swiper-slide.swiper-slide-active .left-banner-three .title p {
margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
.banner-wrapper-main-three .mySwiper-banner-three .swiper-wrapper .swiper-slide.swiper-slide-active .left-banner-three .title {
font-size: 40px;
line-height: 50px;
}
}
@media only screen and (max-width: 575px) {
.banner-wrapper-main-three .mySwiper-banner-three .swiper-wrapper .swiper-slide.swiper-slide-active .left-banner-three .title {
font-size: 30px;
}
.banner-wrapper-main-three .mySwiper-banner-three .swiper-wrapper .swiper-slide.swiper-slide-active .left-banner-three .title br {
display: none;
}
}
@media only screen and (max-width: 767px) {
.banner-wrapper-main-three .mySwiper-banner-three .swiper-wrapper .swiper-slide.swiper-slide-active .left-banner-three .title span {
font-size: 40px;
line-height: 50px;
}
}
@media only screen and (max-width: 575px) {
.banner-wrapper-main-three .mySwiper-banner-three .swiper-wrapper .swiper-slide.swiper-slide-active .left-banner-three .title span {
font-size: 30px;
}
.banner-wrapper-main-three .mySwiper-banner-three .swiper-wrapper .swiper-slide.swiper-slide-active .left-banner-three .title span br {
display: none;
}
}
.banner-wrapper-main-three .mySwiper-banner-three .swiper-wrapper .swiper-slide.swiper-slide-active .left-banner-three .disc {
animation: fadeInUp 2s;
animation-delay: 0s;
margin-bottom: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.banner-wrapper-main-three .mySwiper-banner-three .swiper-wrapper .swiper-slide.swiper-slide-active .left-banner-three .disc {
color: #fff;
}
}
@media only screen and (max-width: 767px) {
.banner-wrapper-main-three .mySwiper-banner-three .swiper-wrapper .swiper-slide.swiper-slide-active .left-banner-three .disc {
color: #fff;
}
}
.banner-wrapper-main-three .mySwiper-banner-three .swiper-wrapper .swiper-slide.swiper-slide-active .left-banner-three .rts-btn {
color: #d9d9d9;
animation: fadeInUp 3.5s;
animation-delay: 0s;
border-style: solid;
border-width: 1px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.banner-wrapper-main-three .mySwiper-banner-three .swiper-wrapper .swiper-slide.swiper-slide-active .left-banner-three .rts-btn {
border-color: #fff !important;
}
}
@media only screen and (max-width: 767px) {
.banner-wrapper-main-three .mySwiper-banner-three .swiper-wrapper .swiper-slide.swiper-slide-active .left-banner-three .rts-btn {
border-color: #fff !important;
}
}
.banner-wrapper-main-three .swiper-pagination {
bottom: 70px !important;
display: flex;
align-items: center;
justify-content: center;
}
@media only screen and (max-width: 575px) {
.banner-wrapper-main-three .swiper-pagination {
bottom: 42px;
}
}
.banner-wrapper-main-three .swiper-pagination-bullet {
background: var(--color-primary);
margin: 0 10px !important;
opacity: 0.5;
}
.banner-wrapper-main-three .swiper-pagination-bullet-active {
opacity: 1;
background: transparent;
position: relative;
margin: 0;
}
.banner-wrapper-main-three .swiper-pagination-bullet-active::after {
position: absolute;
content: "";
left: -10px;
right: 0;
top: -10px;
bottom: 0;
background-image: url(//inext.ph/wp-content/plugins/rt-elements/assets/img/icon/01.png);
height: 30px;
width: 30px;
background-size: contain;
}
.duel-swiper-wrapper-five-parent {
position: relative;
}
.duel-swiper-wrapper-five-parent .bg-image-one {
background-image: url(//inext.ph/wp-content/plugins/rt-elements/assets/images/banner/08.jpg);
height: 700px;
}
.duel-swiper-wrapper-five-parent .title {
position: absolute;
left: 20%;
top: 40px;
padding: 22px 38px;
border: 1px solid #fff;
border-radius: 80px;
color: #fff;
font-size: 80px;
font-style: italic;
font-weight: 300;
line-height: 100px;
text-transform: capitalize;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.duel-swiper-wrapper-five-parent .title {
font-size: 65px;
line-height: 60px;
padding: 15px 25px;
}
}
@media only screen and (max-width: 767px) {
.duel-swiper-wrapper-five-parent .title {
font-size: 45px;
line-height: 50px;
padding: 15px 25px;
}
}
@media only screen and (max-width: 575px) {
.duel-swiper-wrapper-five-parent .title {
font-size: 25px;
line-height: 29px;
}
}
.duel-swiper-wrapper-five-parent .thumbs-swiper-main-wrapper-five {
position: relative;
position: absolute;
z-index: 10;
left: 0;
bottom: 0;
max-width: 600px !important;
}
.duel-swiper-wrapper-five-parent .thumbs-swiper-main-wrapper-five .swiper-slide-thumb-active .single-item img {
opacity: 1;
}
@media only screen and (max-width: 575px) {
.duel-swiper-wrapper-five-parent .thumbs-swiper-main-wrapper-five {
display: none;
}
}
.duel-swiper-wrapper-five-parent .thumbs-swiper-main-wrapper-five .single-item {
max-width: 200px;
background: #fff;
padding: 34px 23px;
cursor: pointer;
position: relative;
z-index: 10;
}
.duel-swiper-wrapper-five-parent .thumbs-swiper-main-wrapper-five .single-item span {
display: block;
margin-bottom: 15px;
color: #30373e;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 26px;
text-transform: capitalize;
}
.duel-swiper-wrapper-five-parent .thumbs-swiper-main-wrapper-five .single-item p {
color: #30373e;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 26px;
text-transform: capitalize;
}
.duel-swiper-wrapper-five-parent .thumbs-swiper-main-wrapper-five .single-item img {
opacity: 0;
position: absolute;
top: 50%;
left: 50%;
z-index: -1;
transform: translate(-50%, -50%);
}
.rts-banner-slider-style5 .rt-slider-navigation {
right: 100px;
bottom: 100px;
}
.rts-banner-slider-style5 .banner-area-six {
height: 100%;
}
.rts-banner-slider-style5 .banner-area-six .banner-content-inner-six {
padding-top: 250px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
.rts-banner-slider-style5 .banner-area-six .banner-content-inner-six {
padding-top: 250px;
}
}
@media only screen and (max-width: 767px) {
.rts-banner-slider-style5 .banner-area-six .banner-content-inner-six {
padding-top: 150px;
}
}
.rts-banner-slider-style5 .banner-area-six .banner-content-inner-six span.pre-title {
color: #fff;
border-radius: 60.5px;
border: 1px solid #fff;
padding: 6px 16px;
font-size: 24px;
font-style: italic;
font-weight: 600;
}
.rts-banner-slider-style5 .banner-area-six .banner-content-inner-six .title {
margin-bottom: 30px;
margin-top: 30px;
}
.rts-banner-slider-style5 .banner-area-six .banner-content-inner-six .title p {
color: #fff;
font-size: 100px;
font-style: normal;
font-weight: 800;
line-height: 110px;
text-transform: uppercase;
margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
.rts-banner-slider-style5 .banner-area-six .banner-content-inner-six .title p {
font-size: 48px !important;
font-style: normal;
font-weight: 800;
line-height: 77px;
}
}
.rts-banner-slider-style5 .banner-area-six .banner-content-inner-six .disc p {
max-width: 43%;
color: #a1a1a1;
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: 26px;
letter-spacing: -0.32px;
text-transform: uppercase;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.rts-banner-slider-style5 .banner-area-six .banner-content-inner-six .disc p {
max-width: 80%;
}
}
@media only screen and (max-width: 767px) {
.rts-banner-slider-style5 .banner-area-six .banner-content-inner-six .disc p {
max-width: 100%;
}
}
.rts-banner-slider-style5 .pafination-area-main-home-6 {
position: relative;
bottom: 100px;
display: flex;
align-items: center;
-moz-column-gap: 50px;
column-gap: 50px;
}
.rts-banner-slider-style5 .pafination-area-main-home-6 .social-text-follow {
display: flex;
align-items: center;
gap: 30px;
z-index: 10;
position: relative;
color: #fff;
}
.rts-banner-slider-style5 .pafination-area-main-home-6 .social-text-follow ul {
padding: 0;
display: flex;
align-items: center;
gap: 19px;
list-style: none;
margin: 0;
}
.rts-banner-slider-style5 .pafination-area-main-home-6 .social-text-follow ul a {
color: #fff;
}
.rts-banner-slider-style5 .pafination-area-main-home-6 .social-text-follow ul svg {
width: 16px;
height: 16px;
fill: #fff;
}
.rts-banner-slider-style5 .pafination-area-main-home-6 .social-text-follow ul svg path {
fill: #fff;
}
@media only screen and (max-width: 767px) {
.rts-banner-slider-style5 .pafination-area-main-home-6 .social-text-follow {
left: 0;
bottom: 170px;
}
}
@media only screen and (max-width: 575px) {
.rts-banner-slider-style5 .pafination-area-main-home-6 .social-text-follow {
bottom: 50px;
}
}
.rts-banner-slider-style5 .pafination-area-main-home-6 .pagination-left-banner-one {
display: flex;
align-items: center;
justify-content: space-between;
width: 138px;
gap: 10px;
z-index: 10;
position: relative;
top: 0;
left: 0;
}
@media only screen and (min-width: 1600px) and (max-width: 1919px) {
.rts-banner-slider-style5 .pafination-area-main-home-6 .pagination-left-banner-one {
bottom: 70px;
}
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
.rts-banner-slider-style5 .pafination-area-main-home-6 .pagination-left-banner-one {
bottom: 70px;
}
}
@media only screen and (max-width: 767px) {
.rts-banner-slider-style5 .pafination-area-main-home-6 .pagination-left-banner-one {
right: 50px;
left: auto;
display: none;
}
}
@media only screen and (max-width: 1199px) {
.rts-banner-slider-style5 .pafination-area-main-home-6 .pagination-left-banner-one {
bottom: 70px;
}
}
.rts-banner-slider-style5 .pafination-area-main-home-6 .pagination-left-banner-one .activeslide {
color: #fff;
}
.rts-banner-slider-style5 .pafination-area-main-home-6 .pagination-left-banner-one .swiper-pagination-progressbar {
position: relative;
width: 90px;
background: #30373e;
height: 2px;
left: 0;
}
.rts-banner-slider-style5 .pafination-area-main-home-6 .pagination-left-banner-one .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
height: 2px;
background: #ffffff;
}
.swiper-banner-seven-main-wrapper {
position: relative;
z-index: 0;
}
.swiper-banner-seven-main-wrapper .pagination-left-banner-one {
z-index: 10;
position: relative;
left: 0;
width: 160px;
}
@media only screen and (min-width: 1600px) and (max-width: 1919px) {
.swiper-banner-seven-main-wrapper .pagination-left-banner-one {
top: -104px;
}
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
.swiper-banner-seven-main-wrapper .pagination-left-banner-one {
top: -104px;
}
}
@media only screen and (max-width: 1199px) {
.swiper-banner-seven-main-wrapper .pagination-left-banner-one {
top: -104px;
}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.swiper-banner-seven-main-wrapper .pagination-left-banner-one {
top: -104px;
}
}
.swiper-banner-seven-main-wrapper .pagination-left-banner-one .swiper-pagination-progressbar {
left: 32px;
background: #30373e;
}
.swiper-banner-seven-main-wrapper .pagination-left-banner-one .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
background: #ffffff;
}
.swiper-banner-seven-main-wrapper .pagination-left-banner-one .activeslide {
color: #fff;
}
.swiper-banner-seven-main-wrapper .pagination-left-banner-one .totalslide {
color: #a1a1a1;
}
.rt-blog-slider .rts-read-more {
color: #fff;
font-weight: 600;
}
.rt-blog-slider .rts-read-more i {
width: 40px;
height: 40px;
line-height: 40px;
text-align: center;
background: #fff;
border-radius: 50%;
margin-right: 12px;
color: #fff;
background: #2B2F39;
font-size: 14px;
transition: 0.3s;
display: inline-block;
box-shadow: 0px 9px 18px rgba(24, 16, 16, 0.0005);
}
.rt-blog-slider .rts-read-more:hover i {
background: var(--color-primary);
}
.rt-blog-slider.slider-style-1 .blog-item .col-top {
background: linear-gradient(0deg, #F7F7F7 80%, rgba(0, 0, 0, 0) 80%);
padding: 0 10px;
}
.rt-blog-slider.slider-style-1 .blog-item .col-top .image-part {
overflow: hidden;
}
.rt-blog-slider.slider-style-1 .blog-item .col-top .image-part a img {
transition: all 0.5s;
}
.rt-blog-slider.slider-style-1 .blog-item .col-top .image-part a img:hover {
transform: scale(1.15);
}
.rt-blog-slider.slider-style-1 .blog-item .blog-meta {
margin: 0;
list-style: none;
padding: 15px 15px;
border-right: 10px solid var(--color-primary);
border-left: 10px solid var(--color-primary);
display: flex;
align-items: center;
}
.rt-blog-slider.slider-style-1 .blog-item .blog-meta li {
margin-right: 30px;
}
.rt-blog-slider.slider-style-1 .blog-item .blog-meta li i {
font-size: 16px;
line-height: 16px;
color: var(--color-primary);
margin-right: 2px;
}
.rt-blog-slider.slider-style-1 .blog-item .blog-meta li a {
font-size: 16px;
color: #6E777D;
}
.rt-blog-slider.slider-style-1 .blog-item .blog_content {
padding: 23px 30px 30px 30px;
background: #F7F7F7;
text-align: left;
}
.rt-blog-slider.slider-style-1 .blog-item .blog_content .title a {
font-size: 24px;
font-weight: 700;
line-height: 30px;
color: var(--color-secondary);
}
.rt-blog-slider.slider-style-1 .blog-item .blog_content .title a:hover {
color: var(--color-primary);
}
.rt-blog-slider.slider-style-1 .blog-item .blog_content .blog-btn a {
color: var(--color-secondary);
border-radius: 0;
border: 1px solid rgba(31, 31, 37, 0.1);
padding: 15px 43px;
}
.rt-blog-slider.slider-style-1 .blog-item .blog_content .blog-btn a::before {
border-radius: 0;
}
.rt-blog-slider.slider-style-1 .blog-item .blog_content .blog-btn a:hover {
color: var(--color-white);
} .reactheme-blog-grid .image-part.yes:hover img {
filter: grayscale(100%);
}
.reactheme-blog-grid .pagination-area {
margin-top: 60px;
}
.reactheme-blog-grid .blog-item:nth-last-child(1) .blog-item-inner {
border: none !important;
}
.reactheme-blog-grid .blog-item .blog-item-inner {
height: 100%;
}
.reactheme-blog-grid .blog-item .blog-content .title {
margin-bottom: 0;
line-height: inherit;
margin-top: 20px;
margin-bottom: 30px;
}
.reactheme-blog-grid .blog-item .blog-content .title a {
font-size: 24px;
font-weight: 700;
color: var(--color-secondary);
}
.reactheme-blog-grid .blog-item .blog-content .title a:hover {
color: var(--color-primary);
}
.reactheme-blog-grid .blog-item .meta-wrapper {
display: flex;
-moz-column-gap: 20px;
column-gap: 20px;
flex-wrap: wrap;
}
.reactheme-blog-grid .blog-item .meta-wrapper .meta, .reactheme-blog-grid .blog-item .meta-wrapper .cat_list {
display: flex;
align-items: center;
flex-wrap: wrap;
-moz-column-gap: 5px;
column-gap: 5px;
}
.reactheme-blog-grid.blog--style1 .blog-item .col-top {
background: linear-gradient(0deg, #F7F7F7 80%, #000000 80%);
padding: 0 10px;
}
.reactheme-blog-grid.blog--style1 .blog-item .col-top .image-part {
overflow: hidden;
}
.reactheme-blog-grid.blog--style1 .blog-item .col-top .image-part a img {
transition: all 0.5s;
}
.reactheme-blog-grid.blog--style1 .blog-item .col-top .image-part a img:hover {
transform: scale(1.15);
}
.reactheme-blog-grid.blog--style1 .blog-item .meta-wrapper {
margin: 0;
list-style: none;
padding: 0px 15px;
border-right: 10px solid var(--color-primary);
border-left: 10px solid var(--color-primary);
display: flex;
align-items: center;
}
.reactheme-blog-grid.blog--style1 .blog-item .meta-wrapper .meta {
margin-right: 30px;
}
.reactheme-blog-grid.blog--style1 .blog-item .meta-wrapper .meta i {
font-size: 16px;
line-height: 16px;
color: var(--color-primary);
margin-right: 2px;
}
.reactheme-blog-grid.blog--style1 .blog-item .meta-wrapper .meta a {
font-size: 16px;
color: #6E777D;
}
.reactheme-blog-grid.blog--style1 .blog-item .blog-content {
padding: 23px 30px 30px 30px;
background: #F7F7F7;
}
.reactheme-blog-grid.blog--style1 .blog-item .blog-content .blog-btn a {
color: var(--color-secondary);
border-radius: 0;
border: 1px solid rgba(31, 31, 37, 0.1);
padding: 15px 43px;
}
.reactheme-blog-grid.blog--style1 .blog-item .blog-content .blog-btn a::before {
border-radius: 0;
}
.reactheme-blog-grid.blog--style1 .blog-item .blog-content .blog-btn a:hover {
color: var(--color-white);
}
.reactheme-blog-grid.blog--style3 .blog-item .blog-item-inner {
background: var(--color-white);
box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
border-radius: 6px;
overflow: hidden;
}
.reactheme-blog-grid.blog--style3 .blog-item .blog-content {
padding: 25px 30px;
}
.reactheme-blog-grid.blog--style3 .blog-item .blog-content .meta-wrapper .meta {
font-size: 14px;
color: var(--color-secondary);
font-weight: var(--medium);
color: #A9A9A9;
}
.reactheme-blog-grid.blog--style3 .blog-item .blog-content .meta-wrapper .meta.date {
position: relative;
}
.reactheme-blog-grid.blog--style3 .blog-item .blog-content .meta-wrapper .meta.date::before {
position: absolute;
content: "";
height: 6px;
width: 6px;
background: #A9A9A9;
border-radius: 50%;
left: -10px;
top: 58%;
transform: translateY(-50%);
}
.reactheme-blog-grid.blog--style3 .blog-item .blog-content .meta-wrapper .cat_list a {
font-size: 14px;
color: var(--color-secondary);
font-weight: var(--medium);
}
.reactheme-blog-grid.blog--style3 .blog-item .blog-content .title {
margin-top: 10px;
margin-bottom: 10px;
}
.reactheme-blog-grid.blog--style3 .blog-item .blog-content .title a {
font-size: 20px;
line-height: 30px;
}
.reactheme-blog-grid.blog--style3 .blog-item .blog-content .author-info {
margin-top: 20px;
padding-top: 20px;
border-top: 1px solid #EDEDED;
}
.reactheme-blog-grid.blog--style3 .blog-item .blog-content .author-info .author-avater img {
border-radius: 50%;
}
.reactheme-blog-grid.blog--style3 .blog-item .blog-content .author-info .info {
margin-left: 15px;
font-size: 14px;
}
.reactheme-blog-grid.blog--style3 .blog-item .blog-content .author-info .info .author-name {
text-transform: capitalize;
margin: 0;
margin-left: 0 !important;
color: var(--color-secondary);
font-weight: var(--bold);
transition: var(--transition);
font-size: 16px;
}
.reactheme-blog-grid.blog--style3 .blog-item .blog-content .author-info .info .author-designation {
color: #858585;
margin-left: 0 !important;
}
.reactheme-blog-grid.blog--style4 .blog-item .image-part {
position: relative;
overflow: hidden;
}
.reactheme-blog-grid.blog--style4 .blog-item .image-part a img {
transition: all 0.5s;
width: 100% !important;
}
.reactheme-blog-grid.blog--style4 .blog-item .image-part a img:hover {
transform: scale(1.15);
}
.reactheme-blog-grid.blog--style4 .blog-item .image-part .meta-wrapper {
position: absolute;
bottom: 0;
background-color: #fff;
margin: 0;
list-style: none;
display: flex;
align-items: center;
}
.reactheme-blog-grid.blog--style4 .blog-item .image-part .meta-wrapper .meta {
display: flex;
align-items: center;
margin-bottom: 0;
padding: 10;
padding: 10px;
}
.reactheme-blog-grid.blog--style4 .blog-item .image-part .meta-wrapper .meta p {
margin-bottom: 0;
}
.reactheme-blog-grid.blog--style4 .blog-item .image-part .meta-wrapper .meta i {
font-size: 16px;
line-height: 16px;
color: var(--color-primary);
margin-right: 2px;
}
.reactheme-blog-grid.blog--style4 .blog-item .image-part .meta-wrapper .meta a {
font-size: 16px;
color: #6E777D;
}
.reactheme-blog-grid.blog--style4 .blog-item .image-part .meta-wrapper .meta .cat_list {
display: flex;
-moz-column-gap: 5px;
column-gap: 5px;
}
.reactheme-blog-grid.blog--style4 .blog-item .image-part .meta-wrapper .meta .cat_list a {
font-size: 16px;
color: #6E777D;
}
.reactheme-blog-grid.blog--style4 .blog-item .blog-content {
padding: 30px 0 0 0;
}
.reactheme-blog-grid.blog--style4 .blog-item .blog-content .title {
border-bottom: 1px solid #E3E3E3;
padding-bottom: 40px;
}
.reactheme-blog-grid.blog--style4 .blog-item .blog-content .desc {
padding-top: 15px;
}
.reactheme-blog-grid.blog--style4 .blog-item .blog-content .footer-meta {
display: flex;
align-items: center;
-moz-column-gap: 10px;
column-gap: 10px;
margin-top: 10px;
font-size: 14px;
}
.reactheme-blog-grid.blog--style4 .blog-item .blog-content .footer-meta p {
margin-bottom: 0;
}
.reactheme-blog-grid.blog--style4 .blog-item .blog-content .btn-part {
display: flex;
justify-content: flex-end;
}
.reactheme-blog-grid.blog--style4 .blog-item .blog-content .btn-part a {
color: var(--color-secondary);
outline: none;
border-radius: 0;
border: none;
padding: 5px 0;
}
.reactheme-blog-grid.blog--style4 .blog-item .blog-content .btn-part a::before {
border-radius: 0;
}
.reactheme-blog-grid.blog--style4 .blog-item .blog-content .btn-part a:hover {
color: var(--color-primary);
}
.reactheme-blog-grid.blog--style5 .blog-style-three .blog-item-inner .blog-content .title {
font-size: 20px;
line-height: 32px;
}
@media only screen and (max-width: 767px) {
.reactheme-blog-grid.blog--style5 .blog-style-three .blog-item-inner .blog-content .title {
line-height: 25px;
}
}
.reactheme-blog-grid.blog--style5 .blog-style-three .blog-item-inner, .reactheme-blog-grid.blog--style8 .blog-style-three .blog-item-inner {
display: flex;
position: relative;
z-index: 1;
gap: 30px;
}
@media only screen and (max-width: 767px) {
.reactheme-blog-grid.blog--style5 .blog-style-three .blog-item-inner, .reactheme-blog-grid.blog--style8 .blog-style-three .blog-item-inner {
flex-direction: column;
gap: 20px;
}
}
.reactheme-blog-grid.blog--style5 .blog-style-three .blog-item-inner a.thumbnail, .reactheme-blog-grid.blog--style8 .blog-style-three .blog-item-inner a.thumbnail {
display: block;
min-width: -moz-max-content;
min-width: max-content;
}
@media only screen and (max-width: 575px) {
.reactheme-blog-grid.blog--style5 .blog-style-three .blog-item-inner a.thumbnail, .reactheme-blog-grid.blog--style8 .blog-style-three .blog-item-inner a.thumbnail {
min-width: 100%;
}
}
.reactheme-blog-grid.blog--style5 .blog-style-three .blog-item-inner a.thumbnail img, .reactheme-blog-grid.blog--style8 .blog-style-three .blog-item-inner a.thumbnail img {
min-width: -moz-max-content;
min-width: max-content;
}
@media only screen and (max-width: 575px) {
.reactheme-blog-grid.blog--style5 .blog-style-three .blog-item-inner a.thumbnail img, .reactheme-blog-grid.blog--style8 .blog-style-three .blog-item-inner a.thumbnail img {
min-width: 100%;
}
}
.reactheme-blog-grid.blog--style5 .blog-style-three .blog-item-inner .blog-content, .reactheme-blog-grid.blog--style8 .blog-style-three .blog-item-inner .blog-content {
padding: 30px 30px 30px 30px;
border: 1px solid #E3E3E3;
border-left: 0;
}
@media only screen and (max-width: 1199px) {
.reactheme-blog-grid.blog--style5 .blog-style-three .blog-item-inner .blog-content, .reactheme-blog-grid.blog--style8 .blog-style-three .blog-item-inner .blog-content {
border-left: 1px solid #E3E3E3;
}
}
.reactheme-blog-grid.blog--style5 .blog-style-three .blog-item-inner .blog-content .blog-top, .reactheme-blog-grid.blog--style8 .blog-style-three .blog-item-inner .blog-content .blog-top {
margin-bottom: 0;
-moz-column-gap: 38px;
column-gap: 38px;
display: flex;
align-items: center;
}
.reactheme-blog-grid.blog--style5 .blog-style-three .blog-item-inner .blog-content .blog-top .cat_list, .reactheme-blog-grid.blog--style8 .blog-style-three .blog-item-inner .blog-content .blog-top .cat_list {
position: relative;
-moz-column-gap: 15px;
column-gap: 15px;
}
.reactheme-blog-grid.blog--style5 .blog-style-three .blog-item-inner .blog-content .blog-top .cat_list a, .reactheme-blog-grid.blog--style8 .blog-style-three .blog-item-inner .blog-content .blog-top .cat_list a {
color: var(--color-primary);
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 26px;
letter-spacing: -0.32px;
position: relative;
text-transform: capitalize;
}
.reactheme-blog-grid.blog--style5 .blog-style-three .blog-item-inner .blog-content .blog-top .cat_list .round, .reactheme-blog-grid.blog--style8 .blog-style-three .blog-item-inner .blog-content .blog-top .cat_list .round {
width: 6px;
height: 6px;
border-radius: 50%;
background: #969696;
display: block;
}
.reactheme-blog-grid.blog--style5 .blog-style-three .blog-item-inner .blog-content .blog-top span, .reactheme-blog-grid.blog--style8 .blog-style-three .blog-item-inner .blog-content .blog-top span {
color: #88919B;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 26px;
letter-spacing: -0.32px;
position: relative;
}
@media only screen and (max-width: 767px) {
.reactheme-blog-grid.blog--style5 .blog-style-three .blog-item-inner .blog-content .title, .reactheme-blog-grid.blog--style8 .blog-style-three .blog-item-inner .blog-content .title {
line-height: 25px;
}
}
.reactheme-blog-grid.blog--style5 .blog-style-three .blog-item-inner .blog-content .title a, .reactheme-blog-grid.blog--style8 .blog-style-three .blog-item-inner .blog-content .title a {
color: var(--title-primary);
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: 1;
text-transform: capitalize;
margin-bottom: 0;
text-transform: capitalize;
position: relative;
display: inline;
background-image: linear-gradient(to right, var(--color-white) 0%, var(--color-white) 100%);
background-size: 0px 1px;
background-position: 0px 95%;
transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
padding: 0.1% 0px;
background-repeat: no-repeat;
}
.reactheme-blog-grid.blog--style5 .blog-style-three .blog-item-inner .blog-content .title:hover .title, .reactheme-blog-grid.blog--style8 .blog-style-three .blog-item-inner .blog-content .title:hover .title {
background-size: 100% 1px !important;
}
.reactheme-blog-grid.blog--style5 .blog-style-three .blog-item-inner .blog-content .desc, .reactheme-blog-grid.blog--style8 .blog-style-three .blog-item-inner .blog-content .desc {
margin-bottom: 20px;
margin-top: 18px;
}
.reactheme-blog-grid.blog--style5 .blog-style-three .blog-item-inner .blog-content a.btn-read-more-blog, .reactheme-blog-grid.blog--style8 .blog-style-three .blog-item-inner .blog-content a.btn-read-more-blog {
color: var(--color-primary);
display: flex;
align-items: center;
gap: 5px;
}
.reactheme-blog-grid.blog--style8 .blog-style-three .blog-item-inner .blog-content .title {
font-size: 24px;
line-height: 34px;
}
.reactheme-blog-grid.blog--style6 .row.blog-gird-item {
row-gap: 15px;
}
.reactheme-blog-grid.blog--style6 .rts-blog-area-start-six {
position: relative;
z-index: 1;
display: block;
width: 100%;
}
.reactheme-blog-grid.blog--style6 .rts-blog-area-start-six .thumbnail {
position: relative;
display: block;
}
.reactheme-blog-grid.blog--style6 .rts-blog-area-start-six .thumbnail::after {
content: "";
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
}
.reactheme-blog-grid.blog--style6 .rts-blog-area-start-six .thumbnail img {
min-width: 100%;
}
.reactheme-blog-grid.blog--style6 .rts-blog-area-start-six::after {
position: absolute;
content: "";
left: 0;
top: 0;
width: 100%;
height: 100%;
background: #F6F6F6;
z-index: 1;
pointer-events: none;
transition: 0.3s;
}
.reactheme-blog-grid.blog--style6 .rts-blog-area-start-six .blog-content {
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 30px;
z-index: 2;
}
.reactheme-blog-grid.blog--style6 .rts-blog-area-start-six .blog-content .top {
display: flex;
align-items: center;
gap: 38px;
}
.reactheme-blog-grid.blog--style6 .rts-blog-area-start-six .blog-content .top span a {
color: #30373E;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 26px;
letter-spacing: -0.32px;
transition: 0.3s;
text-transform: capitalize;
}
.reactheme-blog-grid.blog--style6 .rts-blog-area-start-six .blog-content .title {
color: #30373E;
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: 34px;
margin-top: 20px;
margin-bottom: 20px;
}
@media only screen and (max-width: 575px) {
.reactheme-blog-grid.blog--style6 .rts-blog-area-start-six .blog-content .title {
font-size: 16px;
line-height: 30px;
}
}
.reactheme-blog-grid.blog--style6 .rts-blog-area-start-six .blog-content .rts-read-more {
color: #30373E;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 26px;
letter-spacing: -0.32px;
transition: 0.3s;
display: flex;
align-items: center;
gap: 12px;
}
.reactheme-blog-grid.blog--style6 .rts-blog-area-start-six:hover::after {
height: 0;
}
.reactheme-blog-grid.blog--style6 .rts-blog-area-start-six:hover .blog-content .meta-wrapper .meta {
color: #fff;
}
.reactheme-blog-grid.blog--style6 .rts-blog-area-start-six:hover .blog-content .meta-wrapper .meta a {
color: #fff;
}
.reactheme-blog-grid.blog--style6 .rts-blog-area-start-six:hover .blog-content .title {
color: #FFF;
}
.reactheme-blog-grid.blog--style6 .rts-blog-area-start-six:hover .blog-content .rts-read-more {
color: #fff;
}
.reactheme-blog-grid.blog--style7 .blog-style-three .blog-item-inner {
display: flex;
align-items: flex-end;
align-items: center;
gap: 30px;
position: relative;
z-index: 1;
padding-right: 10px;
}
@media only screen and (max-width: 1199px) {
.reactheme-blog-grid.blog--style7 .blog-style-three .blog-item-inner {
flex-direction: column;
align-items: flex-start;
}
}
@media only screen and (max-width: 767px) {
.reactheme-blog-grid.blog--style7 .blog-style-three .blog-item-inner {
flex-direction: column;
align-items: flex-start;
}
}
.reactheme-blog-grid.blog--style7 .blog-style-three .blog-item-inner a.thumbnail {
display: block;
min-width: -moz-max-content;
min-width: max-content;
flex-basis: 38%;
}
@media only screen and (max-width: 575px) {
.reactheme-blog-grid.blog--style7 .blog-style-three .blog-item-inner a.thumbnail {
min-width: 100%;
}
}
.reactheme-blog-grid.blog--style7 .blog-style-three .blog-item-inner a.thumbnail img {
min-width: -moz-max-content;
min-width: max-content;
width: 100%;
border-radius: 7px;
}
@media only screen and (max-width: 575px) {
.reactheme-blog-grid.blog--style7 .blog-style-three .blog-item-inner a.thumbnail img {
min-width: 100%;
}
}
.reactheme-blog-grid.blog--style7 .blog-style-three .blog-item-inner .blog-content {
flex-basis: 65%;
}
.reactheme-blog-grid.blog--style7 .blog-style-three .blog-item-inner .blog-content .blog-top {
margin-bottom: 0;
gap: 38px;
display: flex;
align-items: center;
}
.reactheme-blog-grid.blog--style7 .blog-style-three .blog-item-inner .blog-content .blog-top .cat_list {
position: relative;
border-radius: 3px;
background: var(--color-white);
box-shadow: 0px 4px 10px 3px rgba(0, 0, 0, 0.06);
padding: 8px 8px;
}
.reactheme-blog-grid.blog--style7 .blog-style-three .blog-item-inner .blog-content .blog-top .cat_list a, .reactheme-blog-grid.blog--style7 .blog-style-three .blog-item-inner .blog-content .blog-top .cat_list .meta {
padding: 0 7px;
color: var(--color-secondary);
font-size: 14px;
font-style: normal;
font-family: var(--font-secondary);
font-weight: 700;
line-height: 100%;
letter-spacing: -0.32px;
position: relative;
text-transform: capitalize;
}
.reactheme-blog-grid.blog--style7 .blog-style-three .blog-item-inner .blog-content .blog-top .cat_list .meta {
color: #88919B;
font-weight: var(--medium);
}
.reactheme-blog-grid.blog--style7 .blog-style-three .blog-item-inner .blog-content .blog-top .cat_list span.round {
width: 6px;
height: 6px;
border-radius: 50%;
background: #D9D9D9;
}
.reactheme-blog-grid.blog--style7 .blog-style-three .blog-item-inner .blog-content .title {
line-height: 32px;
margin-top: 14px;
margin-bottom: 22px;
}
.reactheme-blog-grid.blog--style7 .blog-style-three .blog-item-inner .blog-content .title a {
color: var(--color-secondary);
font-size: 20px;
font-weight: 700;
text-transform: capitalize;
margin-bottom: 0;
text-transform: capitalize;
position: relative;
display: inline;
background-image: linear-gradient(to right, var(--color-white) 0%, var(--color-white) 100%);
background-size: 0px 1px;
background-position: 0px 95%;
transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
padding: 0.1% 0px;
background-repeat: no-repeat;
}
.reactheme-blog-grid.blog--style7 .blog-style-three .blog-item-inner .blog-content .title:hover .title {
background-size: 100% 1px !important;
}
.reactheme-blog-grid.blog--style7 .blog-style-three .blog-item-inner .blog-content .desc {
margin-bottom: 10px;
margin-top: 18px;
}
.reactheme-blog-grid.blog--style7 .blog-style-three .blog-item-inner .blog-content a.btn-read-more-blog {
display: flex;
align-items: center;
gap: 10px;
color: var(--color-secondary);
font-size: 16px;
font-weight: 600;
line-height: 26px;
}
.reactheme-blog-grid.blog--style8 .blog-style-three .blog-item-inner {
flex-direction: column;
align-items: flex-start;
}
.reactheme-blog-grid.blog--style8 .blog-style-three .blog-item-inner a.thumbnail img {
border-radius: 10px;
}
.reactheme-blog-grid.blog--style8 .blog-style-three .blog-item-inner .blog-content {
padding: 30px 0 0 0;
border: none;
}
.reactheme-blog-grid.blog--style8 .blog-style-three .blog-item-inner .blog-content .author-info {
margin-top: 10px;
border: none;
}
.reactheme-blog-grid.blog--style8 .blog-style-three .blog-item-inner .blog-content .author-info .author-avater img {
border-radius: 50%;
}
.reactheme-blog-grid.blog--style8 .blog-style-three .blog-item-inner .blog-content .author-info .info {
margin-left: 15px;
font-size: 14px;
}
.reactheme-blog-grid.blog--style8 .blog-style-three .blog-item-inner .blog-content .author-info .info .author-name {
text-transform: capitalize;
margin: 0;
margin-left: 0 !important;
color: var(--color-secondary);
font-weight: var(--bold);
transition: var(--transition);
font-size: 16px;
}
.reactheme-blog-grid.blog--style8 .blog-style-three .blog-item-inner .blog-content .author-info .info .author-designation {
color: #858585;
margin-left: 0 !important;
}
.reactheme-blog-grid.blog--style8 .blog-style-three .blog-item-inner .blog-content .title {
margin-bottom: 20px;
}
.reactheme-blog-grid.blog--style8 .blog-style-three .blog-item-inner .blog-content .meta-wrapper .meta {
color: #969696;
font-size: 14px;
}
.reactheme-blog-grid.blog--style8 .blog-style-three .blog-item-inner .blog-content .meta-wrapper .cat_list {
-moz-column-gap: 15px;
column-gap: 15px;
}
.reactheme-blog-grid.blog--style8 .blog-style-three .blog-item-inner .blog-content .meta-wrapper .cat_list a {
color: var(--color-secondary);
}
.hide, #reactheme-header .menu-sticky.sticky .hide-sticky {
display: none;
}
#reactheme-header .menu-sticky.sticky .show-sticky {
display: block;
}
.rts-btn-wrapper {
cursor: pointer;
}
.rts-btn-wrapper .rts-btn {
padding: 13px 35px;
border-radius: 30px;
display: inline-flex;
align-items: center;
line-height: 100%;
font-size: var(--size-default);
font-weight: 600;
font-family: var(--font-secondary);
cursor: pointer;
border: 1px solid transparent;
transition: var(--transition);
text-transform: capitalize;
text-align: center;
max-width: -moz-max-content;
max-width: max-content;
}
.rts-btn-wrapper .rts-btn.lg__btn {
padding: 22px 35px;
}
.rts-btn-wrapper .rts-btn.md__btn {
padding: 16px 32px;
}
.rts-btn-wrapper .rts-btn.sm__btn {
padding: 8px 20px;
}
.rts-btn-wrapper .rts-btn.border__btn {
border-color: #E9EDFF !important;
}
.rts-btn-wrapper .rts-btn svg, .rts-btn-wrapper .rts-btn i {
transition: var(--transition);
}
.rts-btn-wrapper .rts-btn:hover {
color: var(--color-primary);
background-color: transparent;
font-size: var(--size-default);
font-weight: 600;
font-family: var(--font-secondary);
transition: var(--transition);
}
.rts-btn-wrapper .rts-btn:hover svg, .rts-btn-wrapper .rts-btn:hover i {
transition: var(--transition);
}
.rts-btn-wrapper .rts-btn.primary__btn {
background-color: var(--color-primary);
color: var(--color-white);
border-color: var(--color-primary);
}
.rts-btn-wrapper .rts-btn.primary__btn svg {
fill: currentColor;
}
.rts-btn-wrapper .rts-btn.primary__btn i {
color: currentColor;
}
.rts-btn-wrapper .rts-btn.primary__btn:hover {
background-color: var(--color-third);
color: var(--color-secondary);
border-color: var(--color-third);
}
.rts-btn-wrapper .rts-btn.primary__btn:hover svg {
fill: currentColor;
}
.rts-btn-wrapper .rts-btn.primary__btn:hover i {
color: currentColor;
}
.rts-btn-wrapper .rts-btn.primary__btn__outline {
background-color: transparent;
color: var(--color-primary);
border-color: var(--color-primary);
}
.rts-btn-wrapper .rts-btn.primary__btn__outline svg {
fill: currentColor;
}
.rts-btn-wrapper .rts-btn.primary__btn__outline i {
color: currentColor;
}
.rts-btn-wrapper .rts-btn.primary__btn__outline:hover {
background-color: var(--color-primary);
color: var(--color-white);
border-color: var(--color-primary);
}
.rts-btn-wrapper .rts-btn.primary__btn__outline:hover svg {
fill: currentColor;
}
.rts-btn-wrapper .rts-btn.primary__btn__outline:hover i {
color: currentColor;
}
.rts-btn-wrapper .rts-btn.secondary__btn {
background-color: var(--color-secondary);
color: var(--color-white);
border-color: var(--color-secondary);
}
.rts-btn-wrapper .rts-btn.secondary__btn svg {
fill: currentColor;
}
.rts-btn-wrapper .rts-btn.secondary__btn i {
color: currentColor;
}
.rts-btn-wrapper .rts-btn.secondary__btn:hover {
background-color: var(--color-third);
color: var(--color-secondary);
border-color: var(--color-third);
}
.rts-btn-wrapper .rts-btn.secondary__btn:hover svg {
fill: currentColor;
}
.rts-btn-wrapper .rts-btn.secondary__btn:hover i {
color: currentColor;
}
.rts-btn-wrapper .rts-btn.secondary__btn__outline {
background-color: transparent;
color: var(--color-secondary);
border-color: var(--color-secondary);
}
.rts-btn-wrapper .rts-btn.secondary__btn__outline svg {
fill: currentColor;
}
.rts-btn-wrapper .rts-btn.secondary__btn__outline i {
color: currentColor;
}
.rts-btn-wrapper .rts-btn.secondary__btn__outline:hover {
background-color: var(--color-secondary);
color: var(--color-white);
border-color: var(--color-secondary);
}
.rts-btn-wrapper .rts-btn.secondary__btn__outline:hover svg {
fill: currentColor;
}
.rts-btn-wrapper .rts-btn.secondary__btn__outline:hover i {
color: currentColor;
}
.rts-btn-wrapper .rts-btn.third__btn {
background-color: var(--color-third);
color: var(--color-secondary);
border-color: var(--color-third);
}
.rts-btn-wrapper .rts-btn.third__btn svg {
fill: currentColor;
}
.rts-btn-wrapper .rts-btn.third__btn i {
color: currentColor;
}
.rts-btn-wrapper .rts-btn.third__btn:hover {
background-color: var(--color-secondary);
color: var(--color-white);
border-color: var(--color-secondary);
}
.rts-btn-wrapper .rts-btn.third__btn:hover svg {
fill: currentColor;
}
.rts-btn-wrapper .rts-btn.third__btn:hover i {
color: currentColor;
}
.rts-btn-wrapper .rts-btn.third__btn__outline {
background-color: transparent;
color: var(--color-third);
border-color: var(--color-third);
}
.rts-btn-wrapper .rts-btn.third__btn__outline svg {
fill: currentColor;
}
.rts-btn-wrapper .rts-btn.third__btn__outline i {
color: currentColor;
}
.rts-btn-wrapper .rts-btn.third__btn__outline:hover {
background-color: var(--color-third);
color: var(--color-secondary);
border-color: var(--color-third);
}
.rts-btn-wrapper .rts-btn.third__btn__outline:hover svg {
fill: currentColor;
}
.rts-btn-wrapper .rts-btn.third__btn__outline:hover i {
color: currentColor;
}
.rts-btn-wrapper .rts-btn.white__btn {
background-color: var(--color-white);
color: var(--btc);
border-color: var(--color-secondary);
}
.rts-btn-wrapper .rts-btn.white__btn svg {
fill: currentColor;
}
.rts-btn-wrapper .rts-btn.white__btn i {
color: currentColor;
}
.rts-btn-wrapper .rts-btn.white__btn:hover {
background-color: var(--color-third);
color: var(--color-secondary);
border-color: var(--color-third);
}
.rts-btn-wrapper .rts-btn.white__btn:hover svg {
fill: currentColor;
}
.rts-btn-wrapper .rts-btn.white__btn:hover i {
color: currentColor;
}
.rts-btn-wrapper .rts-btn.white__btn__outline {
background-color: transparent;
color: var(--color-white);
border-color: var(--color-white);
}
.rts-btn-wrapper .rts-btn.white__btn__outline svg {
fill: currentColor;
}
.rts-btn-wrapper .rts-btn.white__btn__outline i {
color: currentColor;
}
.rts-btn-wrapper .rts-btn.white__btn__outline:hover {
background-color: var(--color-third);
color: var(--color-secondary);
border-color: var(--color-third);
}
.rts-btn-wrapper .rts-btn.white__btn__outline:hover svg {
fill: currentColor;
}
.rts-btn-wrapper .rts-btn.white__btn__outline:hover i {
color: currentColor;
}
.rts-btn-wrapper .rts-btn.link__btn {
border: none !important;
color: var(--btc);
}
.rts-btn-wrapper .rts-btn.link__btn svg {
fill: currentColor;
}
.rts-btn-wrapper .rts-btn.link__btn i {
color: currentColor;
}
.rts-btn-wrapper .rts-btn.link__btn:hover {
color: var(--color-primary);
border-color: var(--color-primary);
}
.rts-btn-wrapper .rts-btn.link__btn:hover svg {
fill: currentColor;
}
.rts-btn-wrapper .rts-btn.link__btn:hover i {
color: currentColor;
}
.rts-btn-wrapper .rts-btn.circle__btn .btn_text {
color: var(--color-secondary);
}
.rts-btn-wrapper .rts-btn.circle__btn svg, .rts-btn-wrapper .rts-btn.circle__btn i {
border-style: solid;
border-width: 1px 1px 1px 1px;
border-color: var(--color-secondary);
height: 49px;
width: 49px;
margin: 0px 10px 0px 0px;
fill: var(--color-secondary);
padding: 12px;
border-radius: 50% 50% 50% 50%;
}
.rts-btn-wrapper .rts-btn.circle__btn i {
color: var(--color-secondary);
}
.rts-btn-wrapper .rts-btn.circle__btn:hover .btn_text {
color: var(--color-primary);
}
.rts-btn-wrapper .rts-btn.circle__btn:hover svg, .rts-btn-wrapper .rts-btn.circle__btn:hover i {
background-color: var(--color-primary);
border-color: var(--color-primary);
color: var(--color-white);
fill: var(--color-white);
}
.rts-btn-wrapper svg {
width: 20px;
position: relative;
}
.rts-btn-wrapper svg {
display: inline-flex;
align-items: center;
justify-content: center;
} .rs-timecounter .time_circles {
position: relative;
width: 100%;
height: 100%;
}
.rs-timecounter .time_circles canvas {
opacity: 0;
}
.rs-timecounter .time_circles div {
position: absolute;
padding-right: 0;
text-align: center;
margin-top: -10px;
}
.rs-timecounter .time_circles div span {
line-height: 1.2;
font-size: 55px;
}
.rs-timecounter .time_circles div h4 {
margin: 0;
}
.rs-timecounter.circle_border_on .time_circles canvas {
opacity: 1;
}
.rs-timecounter.separator .time_circles > div:after {
content: ":";
position: absolute;
top: 50%;
right: 0;
transform: translateY(-50%);
font-size: 30px;
}
.rs-timecounter.separator .time_circles > div:last-child:after {
display: none;
}
.rs-timecounter.background_style .time_circles > div {
padding: 20px 0 35px;
}
.rs-timecounter.background_style .time_circles > div span {
background: transparent;
}
.rs-timecounter.background_style .time_circles > div span,
.rs-timecounter.background_style .time_circles > div h4 {
position: relative;
z-index: 1;
}
.rs-timecounter.background_style .time_circles > div:after {
content: "";
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
border-radius: 10px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
width: 90%;
height: 100%;
}
.rs-timecounter.number_border .time_circles > div span {
border: 4px solid #4a4a4a;
padding: 0 15px;
}
.rs-timecounter.number_border .time_circles > div h4 {
margin-top: 30px;
}
.rs-timecounter.number_border .time_circles > div span,
.rs-timecounter.number_border .time_circles > div h4 {
position: relative;
z-index: 1;
} .counter-top-area.yes .rs-counter-list .count-text .rs-counter {
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.counter-top-area {
position: relative;
}
.counter-top-area .rts-counter-list .counter-icon {
display: inline-block;
}
.counter-top-area .rts-counter-list .counter-icon i {
font-size: 50px;
color: #dcdcdc;
line-height: 60px;
transition: all 0.3s ease 0s;
}
.counter-top-area .rts-counter-list .count-text .rs-counter {
font-size: 50px;
color: var(--color-primary);
line-height: 60px;
display: inline-block;
transition: all 0.3s ease 0s;
}
.counter-top-area .rts-counter-list .count-text .title {
font-size: 18px;
color: #666;
line-height: 18px;
transition: all 0.3s ease 0s;
display: inline-block;
}
.counter-top-area.style1 {
text-align: center;
}
.counter-top-area.style1 .count-number span {
padding: 10px 0px 10px 0px;
}
.counter-top-area.style2 {
padding: 50px;
border: 1px solid #E9E9E9;
position: relative;
display: block;
overflow: hidden;
z-index: 1;
transition: 0.3s;
height: 100%;
}
.counter-top-area.style2 .rts-counter-list {
display: flex;
align-items: center;
}
.counter-top-area.style2 .rts-counter-list .counter-icon {
position: absolute;
}
.counter-top-area.style2 .rts-counter-list .count-text {
width: 100%;
}
.counter-top-area.style2 .rts-counter-list .count-text .count-number {
border-bottom: 1px solid #E9E9E9;
transition: 0.3s;
}
.counter-top-area.style2:after {
position: absolute;
content: "";
top: 0;
left: 0;
height: 250px;
width: 250px;
background: var(--color-primary);
border-radius: 50%;
filter: blur(50px);
z-index: -1;
top: -30%;
left: -10%;
transition: 0.3s;
opacity: 0;
}
.counter-top-area.style2:hover {
border-color: var(--color-primary);
}
.counter-top-area.style2:hover .rts-counter-list .count-text .count-number {
border-color: var(--color-primary);
}
.counter-top-area.style2:hover:after {
opacity: 0.5;
}
.counter-top-area.style3 .rts-counter-list .rts-counter-list-inner {
display: flex;
align-items: center;
}
.counter-top-area.style3 .rts-counter-list .rts-counter-list-inner .counter-icon img {
width: 80px;
height: 80px;
padding: 20px;
overflow: visible;
border-radius: 50%;
}
.counter-top-area.style3 .rts-counter-list .text {
font-weight: 400;
line-height: 26px;
margin-top: 17px;
}
.index-shop .rts-btn {
border-radius: 6px;
}
.index-shop .rts-btn::before {
border-radius: 6px;
}
.banner-shop-content-wrapper .pre {
font-size: 16px;
}
.shop-container-featuer {
max-width: 1760px;
margin: auto;
}
.single-featue-item {
display: flex;
align-items: center;
justify-content: space-between;
padding: 30px 40px 30px 30px;
background: #E3FAEA;
border-radius: 10px;
}
@media only screen and (max-width: 575px) {
.single-featue-item {
padding: 15px;
}
}
.single-featue-item .right-img-area img {
transition: 0.6s;
}
.single-featue-item:hover .right-img-area img {
transform: scale(1.05);
}
.single-featue-item .left-content-inner span.offer {
color: #D01010;
font-weight: 600;
line-height: 26px;
font-size: 16px;
}
.single-featue-item .left-content-inner .title {
font-weight: 600;
line-height: 32px;
font-size: 24px;
color: #1F1F25;
margin-top: 12px;
}
@media only screen and (max-width: 1199px) {
.single-featue-item .left-content-inner .title {
line-height: 30px;
font-size: 18px;
}
}
.single-featue-item .left-content-inner a.rts-btn {
padding: 11px 28px;
}
.category-title-left-area a.rts-btn {
padding: 15px 45px;
}
.title-shop-main-center {
text-align: center;
}
.rt_affiliate_tabs .commision-calculation {
background: var(--calculation-bg);
padding: 40px 50px 55px 40px;
color: var(--color-white);
border-radius: 6px;
}
@media screen and (max-width: 576px) {
.rt_affiliate_tabs .commision-calculation {
padding: 30px;
}
}
.rt_affiliate_tabs .commision-calculation .commision-tab {
display: flex;
gap: 10px;
flex-wrap: wrap;
margin-bottom: 50px;
}
.rt_affiliate_tabs .commision-calculation .commision-tab .tab__button {
padding: 10px 14px;
line-height: 100%;
border-radius: 4px;
font-size: 14px;
font-weight: 600;
border: 1px solid #0D5EFF;
cursor: pointer;
}
.rt_affiliate_tabs .commision-calculation .commision-tab .tab__button.active {
background: var(--color-white);
color: var(--btc);
}
.rt_affiliate_tabs .commision-calculation .tab__content {
display: none;
}
.rt_affiliate_tabs .commision-calculation .tab__content.open {
display: block;
}
.rt_affiliate_tabs .commision-calculation .commision-content .commision-type {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.rt_affiliate_tabs .commision-calculation .commision-content .commision-type .item {
padding: 12px 14px;
border-radius: 4px;
border: 1px solid #0D5EFF;
display: inline-block;
line-height: 100%;
}
.rt_affiliate_tabs .services_tab .earning__tab {
text-align: center;
margin-bottom: 50px;
}
.rt_affiliate_tabs .services_tab .earning__tab__width {
padding: 5px;
border: 1px solid #D4DCFF;
border-radius: 4px;
display: inline-flex;
background: #F4F9FF;
align-items: center;
}
.rt_affiliate_tabs .services_tab .earning__tab__width .tab__button {
font-weight: 600;
font-family: var(--font-secondary);
padding: 5px 28px;
border-radius: 4px;
color: var(--color-primary);
cursor: pointer;
transition: var(--transition);
}
.rt_affiliate_tabs .services_tab .earning__tab__width .tab__button.active {
background: var(--color-primary);
color: var(--color-white);
}
.rt_affiliate_tabs .services_tab .affiliate__content {
display: none;
}
.rt_affiliate_tabs .services_tab .affiliate__content.open {
display: block;
}
.rt_affiliate_tabs .services_tab .affiliate__content .card-feature {
background: #F4F9FF;
border-radius: 10px;
padding: 35px;
transition: var(--transition);
position: relative;
z-index: 1;
}
@media screen and (min-width: 992px) and (max-width: 1140px) {
.rt_affiliate_tabs .services_tab .affiliate__content .card-feature {
padding: 35px 15px;
}
}
@media screen and (min-width: 768px) and (max-width: 855px) {
.rt_affiliate_tabs .services_tab .affiliate__content .card-feature {
padding: 35px 20px;
}
}
.rt_affiliate_tabs .services_tab .affiliate__content .card-feature:before {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
content: "";
background: var(--banner-most-used-bg);
opacity: 0;
transition: var(--transition);
border-radius: inherit;
z-index: -1;
}
.rt_affiliate_tabs .services_tab .affiliate__content .card-feature:hover {
color: var(--color-white);
}
.rt_affiliate_tabs .services_tab .affiliate__content .card-feature:hover::before {
opacity: 1;
}
.rt_affiliate_tabs .services_tab .affiliate__content .card-feature:hover .card-feature__single--icon {
background: #0755F0;
}
.rt_affiliate_tabs .services_tab .affiliate__content .card-feature:hover .card-feature__single--icon svg path {
fill: var(--color-white);
}
.rt_affiliate_tabs .services_tab .affiliate__content .card-feature:hover .card-feature__single--title {
color: var(--color-white);
}
.rt_affiliate_tabs .services_tab .affiliate__content .card-feature:hover .card-feature__single--description {
color: var(--color-white);
}
.rt_affiliate_tabs .services_tab .affiliate__content .card-feature__single--icon {
height: 80px;
width: 80px;
background: #EAF1FF;
border-radius: 50%;
display: grid;
place-items: center;
margin-bottom: 30px;
transition: var(--transition);
}
.rt_affiliate_tabs .services_tab .affiliate__content .card-feature__single--icon svg path {
fill: var(--color-secondary);
transition: var(--transition);
}
.rt_affiliate_tabs .services_tab .affiliate__content .card-feature__single--title {
font-size: 19px;
font-weight: 700;
color: var(--color-secondary);
transition: var(--transition);
margin-bottom: 15px;
}
@media screen and (min-width: 992px) and (max-width: 1140px) {
.rt_affiliate_tabs .services_tab .affiliate__content .card-feature__single--title {
font-size: 18px;
}
}
@media screen and (min-width: 768px) and (max-width: 855px) {
.rt_affiliate_tabs .services_tab .affiliate__content .card-feature__single--title {
font-size: 18px;
}
}
.rt_affiliate_tabs .services_tab .affiliate__content .card-feature__single--description {
font-family: var(--font-secondary);
font-weight: 400;
color: var(--btc);
margin-bottom: 0;
transition: var(--transition);
}
.elementor-widget .elementor-icon-list-icon svg {
margin-right: 0px !important;
}
.rs-features-list-content ul.rs-features-list {
margin-left: 0;
margin-bottom: 0;
list-style: none;
}
.rs-features-list-content ul.rs-features-list li {
width: -moz-max-content;
width: max-content;
font-size: var(--size-default);
}
.rs-features-list-content ul.rs-features-list li .title-desc {
display: flex;
flex-direction: column;
justify-content: center;
}
.rs-features-list-content ul.rs-features-list li .icon {
display: flex;
justify-content: center;
align-items: center;
margin-right: 30px;
}
.react-heading,
.rs-dual-heading {
position: relative;
}
.react-heading.title-border-yes .title,
.rs-dual-heading.title-border-yes .title {
border-bottom: 1px solid #F1F1F1;
padding-bottom: 20px;
}
.react-heading .title-inner,
.rs-dual-heading .title-inner {
position: relative;
z-index: 1;
}
.react-heading .title-inner > span,
.rs-dual-heading .title-inner > span {
text-transform: uppercase;
letter-spacing: 0.1em;
}
.react-heading .title-inner .sub-text,
.rs-dual-heading .title-inner .sub-text {
margin: 0 0 16px;
padding: 8px 14px;
border-radius: 3px;
z-index: 1;
display: inline-block;
}
.react-heading .title-inner .sub-text.title-upper,
.rs-dual-heading .title-inner .sub-text.title-upper {
text-transform: uppercase;
}
.react-heading .title-inner.yes .title,
.rs-dual-heading .title-inner.yes .title {
-webkit-text-stroke: 1px white;
-webkit-text-fill-color: transparent;
}
.react-heading .title-inner .title,
.rs-dual-heading .title-inner .title {
margin-top: 8px;
margin-bottom: 5px;
z-index: 1;
}
.react-heading .title-inner .title.title-upper,
.rs-dual-heading .title-inner .title.title-upper {
text-transform: uppercase;
}
.react-heading .title-inner .title span,
.rs-dual-heading .title-inner .title span {
position: relative;
z-index: 1;
}
.react-heading span.watermark,
.rs-dual-heading span.watermark {
position: absolute;
left: 0;
top: 0;
z-index: -1;
text-transform: uppercase;
background: linear-gradient(180deg, #0C0A0A 0%, rgba(12, 10, 10, 0) 100%);
opacity: 0.06;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
display: flex;
align-items: center;
-webkit-text-stroke: 1px #000000;
}
.react-heading .rts-btn a,
.rs-dual-heading .rts-btn a {
color: var(--color-white);
display: inline-block;
transition: all 0.3s ease 0s;
}
.react-heading .rts-btn a:hover,
.rs-dual-heading .rts-btn a:hover {
color: var(--color-primary);
}
.react-heading .rts-btn a i,
.rs-dual-heading .rts-btn a i {
display: inline-block;
margin-left: 10px;
color: var(--color-white);
height: 27px;
width: 27px;
background: var(--color-primary);
text-align: center;
border-radius: 5px;
font-size: 14px;
}
.react-heading.style4 .title-inner .title,
.rs-dual-heading.style4 .title-inner .title {
margin-bottom: 8px;
}
.react-heading.style4 .title-inner .title-img,
.rs-dual-heading.style4 .title-inner .title-img {
margin-bottom: 12px;
}
.react-heading.style5 .sub-text,
.rs-dual-heading.style5 .sub-text {
display: inline-block;
}
.react-heading.style2,
.rs-dual-heading.style2 {
position: relative;
padding-bottom: 15px;
}
.react-heading.style2:after,
.rs-dual-heading.style2:after {
content: "";
position: absolute;
background: var(--color-secondary);
width: 60px;
height: 2px;
left: 0;
bottom: 0;
z-index: 1;
transition: all 0.3s ease 0s;
}
.react-heading.style2.center:after,
.rs-dual-heading.style2.center:after {
transform: translateX(-50%);
left: 50%;
}
.react-heading.style2.right:after,
.rs-dual-heading.style2.right:after {
left: auto;
right: 0;
}
.react-heading.style2 h2,
.rs-dual-heading.style2 h2 {
margin-bottom: 12px;
}
.react-heading.style2 .description p,
.rs-dual-heading.style2 .description p {
margin-bottom: 12px;
}
.react-heading.style2.Lite:after,
.rs-dual-heading.style2.Lite:after {
background: #fff !important;
}
.react-heading.style3,
.rs-dual-heading.style3 {
position: relative;
padding-bottom: 12px;
}
.react-heading.style3 h2,
.rs-dual-heading.style3 h2 {
margin-bottom: 12px;
}
.react-heading.style3 .description,
.rs-dual-heading.style3 .description {
position: relative;
padding-left: 80px;
}
.react-heading.style3 .description:after,
.rs-dual-heading.style3 .description:after {
content: "";
position: absolute;
border: 0;
background: var(--color-primary);
z-index: 9;
margin-left: 0;
left: 0;
top: 14px;
}
.react-heading.style3 .description p,
.rs-dual-heading.style3 .description p {
margin-bottom: 12px;
}
.react-heading.style3.Lite .description:after,
.rs-dual-heading.style3.Lite .description:after {
background: #fff !important;
}
.react-heading.style1,
.rs-dual-heading.style1 {
position: relative;
padding-bottom: 12px;
}
.react-heading.style1 h2,
.rs-dual-heading.style1 h2 {
margin-bottom: 12px;
}
.react-heading.style1 .description,
.rs-dual-heading.style1 .description {
position: relative;
padding-right: 80px;
}
.react-heading.style1 .description:after,
.rs-dual-heading.style1 .description:after {
content: "";
position: absolute;
border: 0;
background: var(--color-primary);
z-index: 9;
margin-left: 0;
right: 0;
top: 14px;
}
.react-heading.style1 .description p,
.rs-dual-heading.style1 .description p {
margin-bottom: 12px;
font-weight: 500;
}
.react-heading.style1.Lite .description:after,
.rs-dual-heading.style1.Lite .description:after {
background: #fff !important;
}
.react-heading.style8,
.rs-dual-heading.style8 {
position: relative;
padding-bottom: 12px;
margin-bottom: 10px;
}
.react-heading.style8 .title-inner,
.rs-dual-heading.style8 .title-inner {
padding-left: 25px;
position: relative;
display: inline-block;
}
.react-heading.style8 .title-inner .sub-text,
.rs-dual-heading.style8 .title-inner .sub-text {
margin-bottom: 5px;
}
.react-heading.style8 .title-inner:after,
.rs-dual-heading.style8 .title-inner:after {
content: "";
position: absolute;
border: 0;
width: 2px;
height: 100%;
background: var(--color-primary);
z-index: 9;
margin-left: 0;
left: 0;
top: 0;
}
.react-heading.style8 .description,
.rs-dual-heading.style8 .description {
padding-left: 25px;
position: relative;
}
.react-heading.style8 .description:after,
.rs-dual-heading.style8 .description:after {
content: "";
position: absolute;
border: 0;
width: 2px;
height: 100%;
background: var(--color-primary);
z-index: 9;
margin-left: 0;
left: 0;
top: 0;
}
.react-heading.style8 h2,
.rs-dual-heading.style8 h2 {
margin-bottom: 5px;
}
.react-heading.style8.text-center .description,
.rs-dual-heading.style8.text-center .description {
padding-top: 15px;
padding-left: 0px;
}
.react-heading.style8.text-center .description:after,
.rs-dual-heading.style8.text-center .description:after {
display: none;
}
.react-heading.style8.Lite .title-inner:after,
.rs-dual-heading.style8.Lite .title-inner:after {
background: #fff;
}
.react-heading.style8.Lite .description:after,
.rs-dual-heading.style8.Lite .description:after {
background: #fff !important;
}
.react-heading.style6 .title-inner,
.rs-dual-heading.style6 .title-inner {
position: relative;
padding-bottom: 12px;
}
.react-heading.style6 .title-inner h2,
.rs-dual-heading.style6 .title-inner h2 {
margin-bottom: 12px;
}
.react-heading.style6 .title-inner .sub-text,
.rs-dual-heading.style6 .title-inner .sub-text {
position: relative;
padding-left: 14px;
}
.react-heading.style6 .title-inner .sub-text:after,
.rs-dual-heading.style6 .title-inner .sub-text:after {
content: "";
position: absolute;
background: var(--color-primary);
width: 2px;
left: 0;
top: 1px;
z-index: 1;
}
.react-heading.style6 .title-inner .sub-text p,
.rs-dual-heading.style6 .title-inner .sub-text p {
margin-bottom: 12px;
}
.react-heading.style6.text-center .title-inner .sub-text, .react-heading.style6.text-right .title-inner .sub-text,
.rs-dual-heading.style6.text-center .title-inner .sub-text,
.rs-dual-heading.style6.text-right .title-inner .sub-text {
display: inline-block;
}
.react-heading.style6.text-center .sub-text,
.rs-dual-heading.style6.text-center .sub-text {
position: relative;
padding-left: 0px;
padding-top: 60px;
color: var(--color-secondary);
}
.react-heading.style6.text-center .sub-text:after,
.rs-dual-heading.style6.text-center .sub-text:after {
content: "";
width: 77px;
height: 2px;
position: absolute;
left: 50%;
top: 0;
margin-top: -1px;
width: 2px;
height: 50px;
}
.react-heading.style6.Lite .sub-text:after,
.rs-dual-heading.style6.Lite .sub-text:after {
background: #fff !important;
}
.react-heading.style6.dark .sub-text:after,
.rs-dual-heading.style6.dark .sub-text:after {
background: #232023 !important;
}
.react-heading.style4.left .title-inner .sub-text,
.rs-dual-heading.style4.left .title-inner .sub-text {
padding-left: 43px;
}
.react-heading.style4.left .title-inner .sub-text:before,
.rs-dual-heading.style4.left .title-inner .sub-text:before {
left: 0;
}
.react-heading.style4.right .title-inner .sub-text,
.rs-dual-heading.style4.right .title-inner .sub-text {
padding-right: 43px;
}
.react-heading.style4.right .title-inner .sub-text:after,
.rs-dual-heading.style4.right .title-inner .sub-text:after {
right: 0;
}
.react-heading.style4 .title-inner,
.rs-dual-heading.style4 .title-inner {
position: relative;
padding-bottom: 12px;
}
.react-heading.style4 .title-inner h2,
.rs-dual-heading.style4 .title-inner h2 {
margin-bottom: 12px;
display: block;
}
.react-heading.style4 .title-inner .sub-text,
.rs-dual-heading.style4 .title-inner .sub-text {
position: relative;
color: var(--color-secondary);
display: inline-block;
}
.react-heading.style4 .title-inner .sub-text:before, .react-heading.style4 .title-inner .sub-text:after,
.rs-dual-heading.style4 .title-inner .sub-text:before,
.rs-dual-heading.style4 .title-inner .sub-text:after {
content: "";
position: absolute;
border: 0;
width: 35px;
height: 2px;
background: var(--color-primary);
z-index: 9;
margin-left: 0;
left: -20px;
top: 12px;
}
.react-heading.style4 .title-inner .sub-text:before,
.rs-dual-heading.style4 .title-inner .sub-text:before {
left: -40px;
}
.react-heading.style4 .title-inner .sub-text:after,
.rs-dual-heading.style4 .title-inner .sub-text:after {
left: auto;
right: -40px;
}
.react-heading.style4 .title-inner .sub-text p,
.rs-dual-heading.style4 .title-inner .sub-text p {
margin-bottom: 12px;
font-weight: 500;
}
.react-heading.style4.Lite .sub-text:before, .react-heading.style4.Lite .sub-text:after,
.rs-dual-heading.style4.Lite .sub-text:before,
.rs-dual-heading.style4.Lite .sub-text:after {
background: #fff !important;
}
.react-heading.style4.text-center .title-inner .sub-text, .react-heading.style4.text-right .title-inner .sub-text,
.rs-dual-heading.style4.text-center .title-inner .sub-text,
.rs-dual-heading.style4.text-right .title-inner .sub-text {
display: inline-block;
}
.react-heading.style7 .title-inner,
.rs-dual-heading.style7 .title-inner {
position: relative;
padding-bottom: 12px;
}
.react-heading.style7 .title-inner h2,
.rs-dual-heading.style7 .title-inner h2 {
margin-bottom: 12px;
}
.react-heading.style7 .title-inner .sub-text,
.rs-dual-heading.style7 .title-inner .sub-text {
position: relative;
padding-right: 65px;
display: inline-block;
color: var(--color-secondary);
}
.react-heading.style7 .title-inner .sub-text:after,
.rs-dual-heading.style7 .title-inner .sub-text:after {
content: "";
position: absolute;
border: 0;
width: 50px;
height: 2px;
background: var(--color-primary);
z-index: 9;
margin-left: 0;
right: 0;
top: 12px;
}
.react-heading.style7 .title-inner .sub-text p,
.rs-dual-heading.style7 .title-inner .sub-text p {
margin-bottom: 12px;
}
.react-heading.style7 .title-inner.Lite .sub-text:after,
.rs-dual-heading.style7 .title-inner.Lite .sub-text:after {
background: #fff !important;
}
.react-heading.style7 .title-inner.text-center .title-inner .sub-text, .react-heading.style7 .title-inner.text-right .title-inner .sub-text,
.rs-dual-heading.style7 .title-inner.text-center .title-inner .sub-text,
.rs-dual-heading.style7 .title-inner.text-right .title-inner .sub-text {
display: inline-block;
}
.react-heading.style9 .title-img img,
.rs-dual-heading.style9 .title-img img {
position: relative;
}
.react-heading.style9 .title-inner .title-img.top,
.rs-dual-heading.style9 .title-inner .title-img.top {
margin-bottom: 15px;
}
.react-heading.style9 .title-upper,
.rs-dual-heading.style9 .title-upper {
margin-bottom: 5px;
}
.react-heading.style9 .bottom-line .title,
.rs-dual-heading.style9 .bottom-line .title {
margin-bottom: 8px;
position: relative;
padding-bottom: 20px;
}
.react-heading.style9 .bottom-line .title:after,
.rs-dual-heading.style9 .bottom-line .title:after {
content: "";
position: absolute;
border: 0;
width: 80px;
height: 2px;
background: var(--color-primary);
z-index: 9;
margin-left: 0;
bottom: 0;
left: 0;
}
.react-heading.style9.text-center .bottom-line .title:after,
.rs-dual-heading.style9.text-center .bottom-line .title:after {
transform: translateX(-50%);
left: 50%;
}
.react-heading.style10,
.rs-dual-heading.style10 {
transform: rotate(-90deg) translatex(-50%);
}
.react-heading.style10.text-center,
.rs-dual-heading.style10.text-center {
text-align: left !important;
}
.react-heading.style10.text-center .title-inner,
.rs-dual-heading.style10.text-center .title-inner {
text-align: center;
}
.react-heading.style10.text-right,
.rs-dual-heading.style10.text-right {
text-align: left !important;
}
.react-heading.style10.text-right .title-inner,
.rs-dual-heading.style10.text-right .title-inner {
text-align: right;
}
.react-heading.style10 .title-inner,
.rs-dual-heading.style10 .title-inner {
display: inline-block;
}
.react-heading.style10 .title-inner .title,
.rs-dual-heading.style10 .title-inner .title {
white-space: nowrap;
position: relative;
}
.react-heading.style10 .description,
.rs-dual-heading.style10 .description {
display: inline-block;
}
.react-heading.style11,
.rs-dual-heading.style11 {
text-align: right !important;
}
.react-heading.style11.text-center,
.rs-dual-heading.style11.text-center {
text-align: right !important;
}
.react-heading.style11.text-center .title-inner,
.rs-dual-heading.style11.text-center .title-inner {
text-align: center;
}
.react-heading.style11.text-right,
.rs-dual-heading.style11.text-right {
text-align: right !important;
}
.react-heading.style11.text-right .title-inner,
.rs-dual-heading.style11.text-right .title-inner {
text-align: right;
}
.react-heading.style11 .title-inner,
.rs-dual-heading.style11 .title-inner {
transform: rotate(90deg);
display: inline-block;
}
.react-heading.style11 .description,
.rs-dual-heading.style11 .description {
transform: rotate(90deg);
display: inline-block;
}
.react-heading.style12 .sub-text,
.rs-dual-heading.style12 .sub-text {
display: inline-block;
position: relative;
}
.react-heading.style12 .sub-text:before,
.rs-dual-heading.style12 .sub-text:before {
content: "";
position: absolute;
background: #086ad8;
left: -15px;
top: 0px;
z-index: 1;
width: 2px;
height: 14px;
}
.react-heading.style12 .sub-text:after,
.rs-dual-heading.style12 .sub-text:after {
content: "";
position: absolute;
background: #086ad8;
right: -15px;
top: 0px;
z-index: 1;
width: 2px;
height: 14px;
}
.react-heading.style13 .title-inner .sub-content,
.rs-dual-heading.style13 .title-inner .sub-content {
display: flex;
align-items: center;
gap: 10px;
}
.react-heading.style13 .title-inner .sub-text,
.rs-dual-heading.style13 .title-inner .sub-text {
position: relative;
display: unset;
padding: 0 10px;
}
.react-heading.style13 .title-inner .title span.watermark,
.rs-dual-heading.style13 .title-inner .title span.watermark {
-webkit-text-fill-color: transparent;
-webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: #777777;
opacity: 0.1;
}
.react-heading.style15 .title.word-line:before,
.rs-dual-heading.style15 .title.word-line:before {
position: absolute;
content: "";
height: 7px;
width: 7px;
background: var(--color-primary);
border-radius: 50%;
left: 0;
top: 50%;
transform: translateY(-50%);
}
.react-heading.style17, .react-heading.style18,
.rs-dual-heading.style17,
.rs-dual-heading.style18 {
display: inline-flex;
justify-content: space-between;
align-items: center;
width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.react-heading.style17, .react-heading.style18,
.rs-dual-heading.style17,
.rs-dual-heading.style18 {
display: block !important;
}
}
@media only screen and (max-width: 767px) {
.react-heading.style17, .react-heading.style18,
.rs-dual-heading.style17,
.rs-dual-heading.style18 {
display: block !important;
}
}
.rs-animated-heading .title span,
.rs-dual-heading .title span {
display: inline-block;
}
.rs-animated-heading .title-inner .title,
.rs-animated-heading .title-inner .title .cd-headline {
color: var(--color-secondary);
line-height: 52px;
}
.rs-animated-heading .title-inner .title {
margin-bottom: 10px;
}
.rs-animated-heading .title-inner .title.title-upper {
text-transform: uppercase;
}
.rs-animated-heading .title-inner .title .cd-headline {
font-weight: 700;
margin-left: 10px;
color: var(--color-secondary);
}
.rs-animated-heading .title-inner .title .cd-headline p {
margin-bottom: 0;
}
.rs-animated-heading .cd-words-wrapper {
text-align: center;
}
.title-no-margin h4.title {
margin-bottom: 5px;
}
.title-no-margin h3.title {
margin-bottom: 3px !important;
font-size: 20px;
}
.list-style {
padding: 0;
margin: 0;
list-style: none;
}
.list-style li {
position: relative;
padding-left: 32px;
margin-bottom: 5px;
}
.list-style li:before {
content: "\f0a9";
font-family: FontAwesome;
position: absolute;
left: 0;
top: 0;
font-size: 20px;
}
.no-padding {
padding: 0 !important;
}
.rt-features-list.separator_yes {
position: relative;
}
.rt-features-list.separator_yes:after {
position: absolute;
content: "";
width: 1px;
height: 14px;
background: #F36464;
right: 0px;
top: 50%;
transform: translateY(-50%);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.react-heading .title-inner .title {
font-size: 36px;
line-height: 56px;
}
}
@media only screen and (max-width: 767px) {
.react-heading .title-inner .title {
font-size: 30px;
line-height: 45px;
}
} .icon-box .rt-iconbox-area {
overflow: hidden;
}
.icon-box .rt-iconbox-area .overlay-image {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%) scale(0);
width: 100%;
background-size: cover;
background-repeat: no-repeat;
height: 100%;
z-index: 1;
transition: 0.4s;
}
.icon-box .rt-iconbox-area:hover .overlay-image {
transform: translate(-50%, -50%) scale(1);
}
.icon-box .rt-iconbox-area .box-inner {
position: relative;
padding: 40px 25px 20px;
box-shadow: 0 0 38px 0 rgba(0, 0, 0, 0.12);
transition: 0.4s;
overflow: hidden;
z-index: 2;
}
.icon-box .rt-iconbox-area .box-inner:hover {
box-shadow: 0 8px 38px 0 rgba(0, 0, 0, 0.2);
}
.icon-box .rt-iconbox-area .box-inner .rs-badge {
position: absolute;
background: var(--color-primary);
width: 60px;
height: 60px;
border-radius: 50%;
color: #ffffff;
left: -4%;
top: -10%;
z-index: 1;
transform: rotate(0deg);
padding-top: 18px;
padding-left: 10px;
font-size: 22px;
}
.icon-box .rt-iconbox-area .box-inner .rs-badge small {
font-size: 12px;
color: #fff;
padding-left: 2px;
}
.icon-box .rt-iconbox-area .box-inner .icon-area {
display: inline-block;
color: var(--color-primary);
transition: all ease 0.3s;
}
.icon-box .rt-iconbox-area .box-inner .icon-area i {
transition: all ease 0.3s;
font-size: 50px;
}
.icon-box .rt-iconbox-area .box-inner .text-area {
padding: 10px 0 0;
position: relative;
}
.icon-box .rt-iconbox-area .box-inner .text-area .iconbox-title {
position: relative;
}
.icon-box .rt-iconbox-area .box-inner .text-area .iconbox-title .title {
font-size: 20px;
margin: 0;
color: var(--color-secondary);
font-weight: 500;
line-height: 1.5;
}
.icon-box .rt-iconbox-area .box-inner .text-area .iconbox-title .title a {
text-decoration: none !important;
color: var(--color-secondary);
}
.icon-box .rt-iconbox-area .box-inner .text-area .iconbox-title .title a:hover {
color: var(--color-primary) !important;
}
.icon-box .rt-iconbox-area .box-inner .text-area .iconbox-title .title:before {
content: "01.";
font-size: 50px;
font-weight: bold;
color: var(--color-primary);
position: absolute;
transition: all 0.3s ease 0s;
top: 0;
left: 0;
z-index: 9;
}
.icon-box .rt-iconbox-area .box-inner .text-area .services-txt {
font-size: 15px;
margin: 0;
}
.icon-box .rt-iconbox-area .box-inner .services-btn-part {
margin: 15px 0 0;
}
.icon-box .rt-iconbox-area .box-inner .services-btn-part .services-btn {
position: relative;
display: inline-block;
color: var(--color-secondary);
transition: all ease 0.3s;
}
.icon-box .rt-iconbox-area .box-inner .services-btn-part .services-btn i {
transition: all ease 0.3s;
}
.icon-box .rt-iconbox-area .box-inner .services-btn-part .services-btn:hover {
color: var(--color-primary) !important;
}
.icon-box .rt-iconbox-area .box-inner .services-btn-part .services-btn.icon-after span {
float: left;
}
.icon-box .rt-iconbox-area .box-inner .services-btn-part .services-btn.icon-after i {
margin-left: 10px;
transition: 0.4s;
}
.icon-box .rt-iconbox-area .box-inner .services-btn-part .services-btn.icon-before span {
float: right;
}
.icon-box .rt-iconbox-area .box-inner .services-btn-part .services-btn.icon-before i {
margin-right: 10px;
}
.icon-box .rt-iconbox-area.iconbox-after-arrow-image .box-inner {
box-shadow: none;
overflow: visible;
}
.icon-box .rt-iconbox-area.iconbox-after-arrow-image .box-inner .icon-area {
position: relative;
}
.icon-box .rt-iconbox-area.iconbox-after-arrow-image .box-inner .icon-area .after-arrow-image {
position: absolute;
width: 100px;
height: 21px;
right: -150px;
top: 68px;
z-index: 1;
}
.icon-box.style2 {
margin-bottom: 120px;
}
.icon-box.style2 .bg-image {
width: 100%;
}
.icon-box.style2 .box-inner {
position: absolute !important;
bottom: 0;
background: #fff;
position: relative;
z-index: 5;
padding: 10px 30px;
padding-bottom: 0;
width: 85%;
left: 50%;
transform: translateX(-50%);
}
.icon-box.style2 .box-inner .icon-area {
display: flex;
justify-content: space-between;
align-items: center;
}
.icon-box.style2 .box-inner .icon-area .item-number {
font-size: 48px;
font-weight: 600;
color: transparent;
-webkit-text-stroke: 1px;
-webkit-text-stroke-color: #88919B;
}
.icon-box.style3 .icon-area {
display: flex !important;
}
.icon-box.style3 .icon-area .item-number {
position: absolute;
font-size: 60px;
line-height: 60px;
font-weight: 700;
right: 60px;
top: 0;
color: transparent;
-webkit-text-stroke: 1px;
-webkit-text-stroke-color: #88919B;
opacity: 0;
transition: 0.4s;
}
.icon-box.style3:hover .item-number {
right: 30px;
opacity: 1;
}
.icon-box.style4 .rt-iconbox-area .overlay-image {
position: absolute;
height: 100%;
width: 0%;
left: 0;
top: 0;
z-index: 1;
background-repeat: no-repeat;
transition: 0.3s;
transform: unset !important;
background-size: auto;
}
.icon-box.style4 .rt-iconbox-area .box-inner .text-area .iconbox-title {
display: flex;
}
.icon-box.style4 .rt-iconbox-area .box-inner .text-area .iconbox-title span {
height: 2px;
width: 60px;
background: #88919B;
display: inline-block;
margin-right: 20px;
margin-top: 7%;
}
.icon-box.style4 .rt-iconbox-area .box-inner .text-area .iconbox-title .title {
color: #E3E3E3;
font-size: 34px !important;
font-style: normal;
font-weight: 600;
line-height: 46px !important;
margin-bottom: 20px;
display: flex;
align-items: center;
}
.icon-box.style4:hover .overlay-image {
width: 100%;
} .rt-grid-figure .logo-img {
text-align: center;
}
.rt-grid-figure .logo-img a {
transition: all 0.5s;
}
.rt-grid-figure .logo-img img {
margin: 0 auto;
transition: all 0.5s;
box-shadow: 0px 10px 30px rgba(33, 5, 5, 0.05);
}
.rt-grid-figure .logo-img:hover img {
opacity: 1;
}
.rt-grid-figure .logo-img:hover a.back {
display: block;
}
.rt-grid-figure .logo-img:hover a.back-exists {
display: none;
}
.rs-image-hover-effect {
overflow: hidden;
position: relative;
}
.rs-image-hover-effect .image-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
border-radius: 5px;
transition: var(--transition);
}
.rs-image-hover-effect .image-part {
overflow: hidden;
border-radius: 5px;
}
.rs-image-hover-effect .image-part img {
border-radius: 5px;
transition: var(--transition);
}
.rs-image-hover-effect .image-content {
display: flex;
align-items: flex-start;
justify-content: flex-start;
flex-direction: column;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
color: #fff;
padding: 20px;
transition: var(--transition);
z-index: 2;
}
.rs-image-hover-effect .image-content .title-part .prefix-part .title-prefix {
text-align: left;
color: var(--color-secondary);
margin-bottom: 0;
}
.rs-image-hover-effect .image-content .title-part .image-title-part .image-title {
margin-bottom: 10px;
}
.rs-image-hover-effect .image-content .title-part .image-title-part .image-title a {
color: var(--color-secondary);
}
.rs-image-hover-effect .image-content .description-part .description-text {
text-align: left;
color: var(--btc);
margin-bottom: 10px;
}
.rs-image-hover-effect .image-content .button-part .image-btn {
display: inline-block;
color: var(--color-white);
background: var(--color-primary);
font-size: 15px;
line-height: 1;
padding: 10px 25px;
border-radius: 5px;
transition: var(--transition);
}
.rs-image-hover-effect .image-content .button-part .image-btn.icon-before span {
float: right;
}
.rs-image-hover-effect .image-content .button-part .image-btn.icon-before i {
position: absolute;
transition: var(--transition);
}
.rs-image-hover-effect .image-content .button-part .image-btn.icon-after span {
float: left;
}
.rs-image-hover-effect .image-content .button-part .image-btn.icon-after i {
margin-left: 10px;
transition: var(--transition);
}
.rs-image-hover-effect .image-content .button-part .image-btn:hover {
background: var(--color-secondary);
}
.rs-image-hover-effect .image-content .button-part .image-btn:hover i {
margin-left: 10px;
}
.rs-image-hover-effect:hover .image-overlay {
background-color: rgba(0, 0, 0, 0.65);
}
.rs-image-hover-effect:hover .image-part img {
transform: scale(1.15);
}
.rs-image-hover-effect:hover .image-content .title-part .prefix-part .title-prefix {
color: var(--color-white);
}
.rs-image-hover-effect:hover .image-content .title-part .image-title-part .image-title a {
color: var(--color-white);
}
.rs-image-hover-effect:hover .image-content .description-part .description-text {
color: var(--color-white);
} .rs-image-hover-effect {                                                           }
.rs-image-hover-effect [class^=rs-image-fade] .image-content,
.rs-image-hover-effect [class*=" rs-image-fade"] .image-content {
opacity: 0;
}
.rs-image-hover-effect [class^=rs-image-fade]:hover .image-content,
.rs-image-hover-effect [class*=" rs-image-fade"]:hover .image-content {
opacity: 1;
}
.rs-image-hover-effect [class^=rs-image-fade]:hover .image-part img,
.rs-image-hover-effect [class^=rs-image-fade]:hover .image-content,
.rs-image-hover-effect [class*=" rs-image-fade"]:hover .image-part img,
.rs-image-hover-effect [class*=" rs-image-fade"]:hover .image-content {
transform: translate(0, 0);
}
.rs-image-hover-effect .rs-image-fade-in-up .image-content {
transform: translate(0, 15%);
}
.rs-image-hover-effect .rs-image-fade-in-down .image-content {
transform: translate(0, -15%);
}
.rs-image-hover-effect .rs-image-fade-in-left .image-content {
transform: translate(-15%, 0);
}
.rs-image-hover-effect .rs-image-fade-in-right .image-content {
transform: translate(15%, 0);
}
.rs-image-hover-effect [class^=rs-image-push-]:hover .image-content,
.rs-image-hover-effect [class*=" rs-image-push-"]:hover .image-content {
transform: translate(0, 0);
}
.rs-image-hover-effect .rs-image-push-up .image-content {
transform: translateY(100%);
}
.rs-image-hover-effect .rs-image-push-up:hover .image-part img {
transform: translateY(-100%);
}
.rs-image-hover-effect .rs-image-push-down .image-content {
transform: translateY(-100%);
}
.rs-image-hover-effect .rs-image-push-down:hover .image-part img {
transform: translateY(100%);
}
.rs-image-hover-effect .rs-image-push-left .image-content {
transform: translateX(100%);
}
.rs-image-hover-effect .rs-image-push-left:hover .image-part img {
transform: translateX(-100%);
}
.rs-image-hover-effect .rs-image-push-right .image-content {
transform: translateX(-100%);
}
.rs-image-hover-effect .rs-image-push-right:hover .image-part img {
transform: translateX(100%);
}
.rs-image-hover-effect [class^=rs-image-slide-]:hover .image-content,
.rs-image-hover-effect [class*=" rs-image-slide-"]:hover .image-content {
transform: translate(0, 0);
}
.rs-image-hover-effect .rs-image-slide-up .image-content {
transform: translateY(100%);
}
.rs-image-hover-effect .rs-image-slide-down .image-content {
transform: translateY(-100%);
}
.rs-image-hover-effect .rs-image-slide-left .image-content {
transform: translateX(100%);
}
.rs-image-hover-effect .rs-image-slide-right .image-content {
transform: translateX(-100%);
}
.rs-image-hover-effect [class^=rs-image-reveal-]:before,
.rs-image-hover-effect [class*=" rs-image-reveal-"]:before {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
content: "";
}
.rs-image-hover-effect [class^=rs-image-reveal-] .image-content,
.rs-image-hover-effect [class*=" rs-image-reveal-"] .image-content {
opacity: 0;
}
.rs-image-hover-effect [class^=rs-image-reveal-]:hover:before,
.rs-image-hover-effect [class*=" rs-image-reveal-"]:hover:before {
transform: translate(0, 0);
}
.rs-image-hover-effect [class^=rs-image-reveal-]:hover .image-content,
.rs-image-hover-effect [class*=" rs-image-reveal-"]:hover .image-content {
opacity: 1;
transition-delay: 0.21s;
}
.rs-image-hover-effect .rs-image-reveal-up:before {
transform: translateY(100%);
}
.rs-image-hover-effect .rs-image-reveal-down:before {
transform: translateY(-100%);
}
.rs-image-hover-effect .rs-image-reveal-left:before {
transform: translateX(100%);
}
.rs-image-hover-effect .rs-image-reveal-right:before {
transform: translateX(-100%);
}
.rs-image-hover-effect [class^=rs-image-hinge-],
.rs-image-hover-effect [class*=" rs-image-hinge-"] {
perspective: 50em;
}
.rs-image-hover-effect [class^=rs-image-hinge-] .image-content,
.rs-image-hover-effect [class*=" rs-image-hinge-"] .image-content {
opacity: 0;
z-index: 1;
}
.rs-image-hover-effect [class^=rs-image-hinge-]:hover img,
.rs-image-hover-effect [class*=" rs-image-hinge-"]:hover img {
opacity: 0;
}
.rs-image-hover-effect [class^=rs-image-hinge-]:hover .image-content,
.rs-image-hover-effect [class*=" rs-image-hinge-"]:hover .image-content {
opacity: 1;
transition-delay: 0.21s;
}
.rs-image-hover-effect .rs-image-hinge-up img {
transform-origin: 50% 0%;
}
.rs-image-hover-effect .rs-image-hinge-up .image-content {
transform: rotateX(90deg);
transform-origin: 50% 100%;
}
.rs-image-hover-effect .rs-image-hinge-up:hover .image-part img {
transform: rotateX(-90deg);
}
.rs-image-hover-effect .rs-image-hinge-up:hover .image-content {
transform: rotateX(0);
}
.rs-image-hover-effect .rs-image-hinge-down img {
transform-origin: 50% 100%;
}
.rs-image-hover-effect .rs-image-hinge-down .image-content {
transform: rotateX(-90deg);
transform-origin: 50% -50%;
}
.rs-image-hover-effect .rs-image-hinge-down:hover .image-part img {
transform: rotateX(90deg);
opacity: 0;
}
.rs-image-hover-effect .rs-image-hinge-down:hover .image-content {
transform: rotateX(0);
}
.rs-image-hover-effect .rs-image-hinge-left img {
transform-origin: 0% 50%;
}
.rs-image-hover-effect .rs-image-hinge-left .image-content {
transform: rotateY(-90deg);
transform-origin: 100% 50%;
}
.rs-image-hover-effect .rs-image-hinge-left:hover .image-part img {
transform: rotateY(90deg);
}
.rs-image-hover-effect .rs-image-hinge-left:hover .image-content {
transform: rotateY(0);
}
.rs-image-hover-effect .rs-image-hinge-right img {
transform-origin: 100% 50%;
}
.rs-image-hover-effect .rs-image-hinge-right .image-content {
transform: rotateY(90deg);
transform-origin: 0 50%;
}
.rs-image-hover-effect .rs-image-hinge-right:hover .image-part img {
transform: rotateY(-90deg);
}
.rs-image-hover-effect .rs-image-hinge-right:hover .image-content {
transform: rotateY(0);
}
.rs-image-hover-effect [class^=rs-image-flip-],
.rs-image-hover-effect [class*=" rs-image-flip-"] {
perspective: 50em;
}
.rs-image-hover-effect [class^=rs-image-flip-] img,
.rs-image-hover-effect [class*=" rs-image-flip-"] img {
backface-visibility: hidden;
}
.rs-image-hover-effect [class^=rs-image-flip-] .image-content,
.rs-image-hover-effect [class*=" rs-image-flip-"] .image-content {
opacity: 0;
}
.rs-image-hover-effect [class^=rs-image-flip-]:hover .image-part img,
.rs-image-hover-effect [class*=" rs-image-flip-"]:hover .image-part img {
opacity: 0;
}
.rs-image-hover-effect [class^=rs-image-flip-]:hover .image-content,
.rs-image-hover-effect [class*=" rs-image-flip-"]:hover .image-content {
opacity: 1;
transition-delay: 0.14s;
}
.rs-image-hover-effect .rs-image-flip-horiz .image-content {
transform: rotateX(90deg);
transform-origin: 0% 50%;
}
.rs-image-hover-effect .rs-image-flip-horiz:hover img {
transform: rotateX(-180deg);
}
.rs-image-hover-effect .rs-image-flip-horiz:hover .image-content {
transform: rotateX(0deg);
}
.rs-image-hover-effect .rs-image-flip-vert .image-content {
transform: rotateY(90deg);
transform-origin: 50% 0%;
}
.rs-image-hover-effect .rs-image-flip-vert:hover .image-part img {
transform: rotateY(-180deg);
}
.rs-image-hover-effect .rs-image-flip-vert:hover .image-content {
transform: rotateY(0deg);
}
.rs-image-hover-effect .rs-image-flip-diag-1 .image-content {
transform: rotate3d(1, -1, 0, 100deg);
}
.rs-image-hover-effect .rs-image-flip-diag-1:hover .image-part img {
transform: rotate3d(-1, 1, 0, 100deg);
}
.rs-image-hover-effect .rs-image-flip-diag-1:hover .image-content {
transform: rotate3d(0, 0, 0, 0deg);
}
.rs-image-hover-effect .rs-image-flip-diag-2 .image-content {
transform: rotate3d(1, 1, 0, 100deg);
}
.rs-image-hover-effect .rs-image-flip-diag-2:hover .image-part img {
transform: rotate3d(-1, -1, 0, 100deg);
}
.rs-image-hover-effect .rs-image-flip-diag-2:hover .image-content {
transform: rotate3d(0, 0, 0, 0deg);
}
.rs-image-hover-effect [class^=rs-image-shutter-out-]:before,
.rs-image-hover-effect [class*=" rs-image-shutter-out-"]:before {
position: absolute;
content: "";
transition-delay: 0.105s;
}
.rs-image-hover-effect [class^=rs-image-shutter-out-] .image-content,
.rs-image-hover-effect [class*=" rs-image-shutter-out-"] .image-content {
opacity: 0;
transition-delay: 0s;
}
.rs-image-hover-effect [class^=rs-image-shutter-out-]:hover:before,
.rs-image-hover-effect [class*=" rs-image-shutter-out-"]:hover:before {
transition-delay: 0s;
}
.rs-image-hover-effect [class^=rs-image-shutter-out-]:hover .image-content,
.rs-image-hover-effect [class*=" rs-image-shutter-out-"]:hover .image-content {
opacity: 1;
transition-delay: 0.105s;
}
.rs-image-hover-effect .rs-image-shutter-out-horiz:before {
left: 50%;
right: 50%;
top: 0;
bottom: 0;
}
.rs-image-hover-effect .rs-image-shutter-out-horiz:hover:before {
left: 0;
right: 0;
}
.rs-image-hover-effect .rs-image-shutter-out-vert:before {
top: 50%;
bottom: 50%;
left: 0;
right: 0;
}
.rs-image-hover-effect .rs-image-shutter-out-vert:hover:before {
top: 0;
bottom: 0;
}
.rs-image-hover-effect .rs-image-shutter-out-diag-1:before {
top: 50%;
bottom: 50%;
left: -35%;
right: -35%;
transform: rotate(45deg);
}
.rs-image-hover-effect .rs-image-shutter-out-diag-1:hover:before {
top: -35%;
bottom: -35%;
}
.rs-image-hover-effect .rs-image-shutter-out-diag-2:before {
top: 50%;
bottom: 50%;
left: -35%;
right: -35%;
transform: rotate(-45deg);
}
.rs-image-hover-effect .rs-image-shutter-out-diag-2:hover:before {
top: -35%;
bottom: -35%;
}
.rs-image-hover-effect [class^=rs-image-shutter-in-]:after,
.rs-image-hover-effect [class^=rs-image-shutter-in-]:before,
.rs-image-hover-effect [class*=" rs-image-shutter-in-"]:after,
.rs-image-hover-effect [class*=" rs-image-shutter-in-"]:before {
position: absolute;
content: "";
}
.rs-image-hover-effect [class^=rs-image-shutter-in-]:after,
.rs-image-hover-effect [class*=" rs-image-shutter-in-"]:after {
top: 0;
left: 0;
}
.rs-image-hover-effect [class^=rs-image-shutter-in-]:before,
.rs-image-hover-effect [class*=" rs-image-shutter-in-"]:before {
right: 0;
bottom: 0;
}
.rs-image-hover-effect [class^=rs-image-shutter-in-] .image-content,
.rs-image-hover-effect [class*=" rs-image-shutter-in-"] .image-content {
opacity: 0;
z-index: 1;
}
.rs-image-hover-effect [class^=rs-image-shutter-in-]:hover .image-content,
.rs-image-hover-effect [class*=" rs-image-shutter-in-"]:hover .image-content {
opacity: 1;
transition-delay: 0.21s;
}
.rs-image-hover-effect .rs-image-shutter-in-horiz:after,
.rs-image-hover-effect .rs-image-shutter-in-horiz:before {
width: 0;
height: 100%;
}
.rs-image-hover-effect .rs-image-shutter-in-horiz:hover:after,
.rs-image-hover-effect .rs-image-shutter-in-horiz:hover:before {
width: 50%;
}
.rs-image-hover-effect .rs-image-shutter-in-vert:after,
.rs-image-hover-effect .rs-image-shutter-in-vert:before {
height: 0;
width: 100%;
}
.rs-image-hover-effect .rs-image-shutter-in-vert:hover:after,
.rs-image-hover-effect .rs-image-shutter-in-vert:hover:before {
height: 50%;
}
.rs-image-hover-effect .rs-image-shutter-in-out-horiz:after,
.rs-image-hover-effect .rs-image-shutter-in-out-horiz:before {
width: 0;
height: 100%;
opacity: 0.75;
}
.rs-image-hover-effect .rs-image-shutter-in-out-horiz:hover:after,
.rs-image-hover-effect .rs-image-shutter-in-out-horiz:hover:before {
width: 100%;
}
.rs-image-hover-effect .rs-image-shutter-in-out-vert:after,
.rs-image-hover-effect .rs-image-shutter-in-out-vert:before {
height: 0;
width: 100%;
opacity: 0.75;
}
.rs-image-hover-effect .rs-image-shutter-in-out-vert:hover:after,
.rs-image-hover-effect .rs-image-shutter-in-out-vert:hover:before {
height: 100%;
}
.rs-image-hover-effect .rs-image-shutter-in-out-diag-1:after,
.rs-image-hover-effect .rs-image-shutter-in-out-diag-1:before {
width: 200%;
height: 200%;
transition: all 0.6s ease;
opacity: 0.75;
}
.rs-image-hover-effect .rs-image-shutter-in-out-diag-1:after {
transform: skew(-45deg) translateX(-150%);
}
.rs-image-hover-effect .rs-image-shutter-in-out-diag-1:before {
transform: skew(-45deg) translateX(150%);
}
.rs-image-hover-effect .rs-image-shutter-in-out-diag-1:hover:after {
transform: skew(-45deg) translateX(-50%);
}
.rs-image-hover-effect .rs-image-shutter-in-out-diag-1:hover:before {
transform: skew(-45deg) translateX(50%);
}
.rs-image-hover-effect .rs-image-shutter-in-out-diag-2:after,
.rs-image-hover-effect .rs-image-shutter-in-out-diag-2:before {
width: 200%;
height: 200%;
transition: all 0.6s ease;
opacity: 0.75;
}
.rs-image-hover-effect .rs-image-shutter-in-out-diag-2:after {
transform: skew(45deg) translateX(-100%);
}
.rs-image-hover-effect .rs-image-shutter-in-out-diag-2:before {
transform: skew(45deg) translateX(100%);
}
.rs-image-hover-effect .rs-image-shutter-in-out-diag-2:hover:after {
transform: skew(45deg) translateX(0%);
}
.rs-image-hover-effect .rs-image-shutter-in-out-diag-2:hover:before {
transform: skew(45deg) translateX(0%);
}
.rs-image-hover-effect [class^=rs-image-fold],
.rs-image-hover-effect [class*=" rs-image-fold"] {
perspective: 50em;
}
.rs-image-hover-effect [class^=rs-image-fold] img,
.rs-image-hover-effect [class*=" rs-image-fold"] img {
transform-origin: 50% 0%;
}
.rs-image-hover-effect [class^=rs-image-fold] .image-content,
.rs-image-hover-effect [class*=" rs-image-fold"] .image-content {
z-index: 1;
opacity: 0;
}
.rs-image-hover-effect [class^=rs-image-fold]:hover .image-part img,
.rs-image-hover-effect [class*=" rs-image-fold"]:hover .image-part img {
opacity: 0;
transition-delay: 0;
}
.rs-image-hover-effect [class^=rs-image-fold]:hover .image-content,
.rs-image-hover-effect [class*=" rs-image-fold"]:hover .image-content {
transform: rotateX(0) translate3d(0, 0%, 0) scale(1);
opacity: 1;
transition-delay: 0.21s;
}
.rs-image-hover-effect .rs-image-fold-up .image-part img {
transform-origin: 50% 0%;
}
.rs-image-hover-effect .rs-image-fold-up .image-content {
transform: rotateX(-90deg) translate3d(0%, -50%, 0) scale(0.6);
transform-origin: 50% 100%;
}
.rs-image-hover-effect .rs-image-fold-up:hover .image-part img {
transform: rotateX(90deg) scale(0.6) translateY(50%);
}
.rs-image-hover-effect .rs-image-fold-down .image-part img {
transform-origin: 50% 100%;
}
.rs-image-hover-effect .rs-image-fold-down .image-content {
transform: rotateX(90deg) translate3d(0%, 50%, 0) scale(0.6);
transform-origin: 50% 0%;
}
.rs-image-hover-effect .rs-image-fold-down:hover .image-part img {
transform: rotateX(-90deg) scale(0.6) translateY(-50%);
}
.rs-image-hover-effect .rs-image-fold-left .image-part img {
transform-origin: 0% 50%;
}
.rs-image-hover-effect .rs-image-fold-left .image-content {
transform: rotateY(90deg) translate3d(-50%, 0%, 0) scale(0.6);
transform-origin: 100% 50%;
}
.rs-image-hover-effect .rs-image-fold-left:hover .image-part img {
transform: rotateY(-90deg) scale(0.6) translateX(50%);
}
.rs-image-hover-effect .rs-image-fold-right .image-part img {
transform-origin: 100% 50%;
}
.rs-image-hover-effect .rs-image-fold-right .image-content {
transform: rotateY(-90deg) translate3d(50%, 0%, 0) scale(0.6);
transform-origin: 0 50%;
}
.rs-image-hover-effect .rs-image-fold-right:hover .image-part img {
transform: rotateY(90deg) scale(0.6) translateX(-50%);
}
.rs-image-hover-effect .rs-image-zoom-in .image-content {
opacity: 0;
transform: scale(0.5);
}
.rs-image-hover-effect .rs-image-zoom-in:hover .image-content {
transform: scale(1);
opacity: 1;
}
.rs-image-hover-effect [class^=rs-image-zoom-out] .image-content,
.rs-image-hover-effect [class*=" rs-image-zoom-out"] .image-content {
transform: scale(0.5);
transform-origin: 50% 50%;
opacity: 0;
}
.rs-image-hover-effect [class^=rs-image-zoom-out]:hover .image-content,
.rs-image-hover-effect [class^=rs-image-zoom-out].hover .image-content,
.rs-image-hover-effect [class*=" rs-image-zoom-out"]:hover .image-content,
.rs-image-hover-effect [class*=" rs-image-zoom-out"].hover .image-content {
transform: scale(1);
opacity: 1;
transition-delay: 0.35s;
}
.rs-image-hover-effect .rs-image-zoom-out:hover .image-part img {
transform: scale(0.5);
opacity: 0;
}
.rs-image-hover-effect .rs-image-zoom-out-up:hover .image-part img,
.rs-image-hover-effect .rs-image-zoom-out-up.hover .image-part img {
animation: rs-image-zoom-out-up 0.4025s linear;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}
@keyframes rs-image-zoom-out-up {
50% {
transform: scale(0.8) translateY(0%);
opacity: 0.5;
}
100% {
transform: scale(0.8) translateY(-150%);
opacity: 0.5;
}
}
.rs-image-hover-effect .rs-image-zoom-out-down:hover .image-part img,
.rs-image-hover-effect .rs-image-zoom-out-down.hover .image-part img {
animation: rs-image-zoom-out-down 0.4025s linear;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}
@keyframes rs-image-zoom-out-down {
50% {
transform: scale(0.8) translateY(0%);
opacity: 0.5;
}
100% {
transform: scale(0.8) translateY(150%);
opacity: 0.5;
}
}
.rs-image-hover-effect .rs-image-zoom-out-left:hover .image-part img,
.rs-image-hover-effect .rs-image-zoom-out-left.hover .image-part img {
animation: rs-image-zoom-out-left 0.4025s linear;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}
@keyframes rs-image-zoom-out-left {
50% {
transform: scale(0.8) translateX(0%);
opacity: 0.5;
}
100% {
transform: scale(0.8) translateX(-150%);
opacity: 0.5;
}
}
.rs-image-hover-effect .rs-image-zoom-out-right:hover .image-part img,
.rs-image-hover-effect .rs-image-zoom-out-right.hover .image-part img {
animation: rs-image-zoom-out-right 0.4025s linear;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}
@keyframes rs-image-zoom-out-right {
50% {
transform: scale(0.8) translateX(0%);
opacity: 0.5;
}
100% {
transform: scale(0.8) translateX(150%);
opacity: 0.5;
}
}
.rs-image-hover-effect .rs-image-zoom-out-flip-horiz {
perspective: 50em;
}
.rs-image-hover-effect .rs-image-zoom-out-flip-horiz .image-content {
opacity: 0;
transform: rotateX(90deg) translateY(-100%) scale(0.5);
}
.rs-image-hover-effect .rs-image-zoom-out-flip-horiz:hover .image-part img,
.rs-image-hover-effect .rs-image-zoom-out-flip-horiz.hover .image-part img {
transform: rotateX(-100deg) translateY(50%) scale(0.5);
opacity: 0;
transition-delay: 0;
}
.rs-image-hover-effect .rs-image-zoom-out-flip-horiz:hover .image-content,
.rs-image-hover-effect .rs-image-zoom-out-flip-horiz.hover .image-content {
transform: rotateX(0) translateY(0%) scale(1);
opacity: 1;
transition-delay: 0.35s;
}
.rs-image-hover-effect .rs-image-zoom-out-flip-vert {
perspective: 50em;
}
.rs-image-hover-effect .rs-image-zoom-out-flip-vert .image-content {
opacity: 0;
transform: rotateY(90deg) translate(50%, 0) scale(0.5);
}
.rs-image-hover-effect .rs-image-zoom-out-flip-vert:hover .image-part img,
.rs-image-hover-effect .rs-image-zoom-out-flip-vert.hover .image-part img {
transform: rotateY(-100deg) translateX(50%) scale(0.5);
opacity: 0;
transition-delay: 0;
}
.rs-image-hover-effect .rs-image-zoom-out-flip-vert:hover .image-content,
.rs-image-hover-effect .rs-image-zoom-out-flip-vert.hover .image-content {
transform: rotateY(0) translate(0, 0) scale(1);
opacity: 1;
transition-delay: 0.35s;
}
.rs-image-hover-effect .rs-image-blur .image-content {
opacity: 0;
}
.rs-image-hover-effect .rs-image-blur:hover .image-part img {
filter: blur(30px);
transform: scale(1.2);
opacity: 0;
}
.rs-image-hover-effect .rs-image-blur:hover .image-content {
opacity: 1;
transition-delay: 0.21s;
}
.rs-image-hover-effect .rs-image-move-left .image-part img,
.rs-image-hover-effect .rs-image-move-right .image-part img,
.rs-image-hover-effect .rs-image-move-top .image-part img,
.rs-image-hover-effect .rs-image-move-bottom .image-part img {
transform: scale(1.1);
}
.rs-image-hover-effect .rs-image-move-left .image-part img,
.rs-image-hover-effect .rs-image-move-right:hover .image-part img {
transform-origin: left;
}
.rs-image-hover-effect .rs-image-move-right .image-part img,
.rs-image-hover-effect .rs-image-move-left:hover .image-part img {
transform-origin: right;
}
.rs-image-hover-effect .rs-image-move-top .image-part img,
.rs-image-hover-effect .rs-image-move-bottom:hover .image-part img {
transform-origin: top;
}
.rs-image-hover-effect .rs-image-move-bottom .image-part img,
.rs-image-hover-effect .rs-image-move-top:hover .image-part img {
transform-origin: bottom;
}
.rs-image-hover-effect .rs-image-top-down .image-part {
max-height: 400px;
transition: 3s;
}
.rs-image-hover-effect .rs-image-top-down:hover .image-part {
padding-top: 400px;
}
.rs-image-hover-effect .rs-image-top-down .image-part img {
margin: 0;
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
-o-object-position: center;
object-position: center;
vertical-align: bottom;
transition: 3s;
}
.rs-image-hover-effect .rs-image-top-down:hover .image-part img {
transform: translateY(-100%);
}
.rt-image-wrapper {
position: relative;
visibility: visible;
}
.image-rotate {
animation: rotation infinite 14s linear;
} @keyframes rotation {
to {
transform: rotate(360deg);
}
} .rt-grid-figure .logo-img {
text-align: center;
}
.rt-grid-figure .logo-img a {
transition: all 0.5s;
}
.rt-grid-figure .logo-img img {
margin: 0 auto;
transition: all 0.5s;
}
.rt-grid-figure .logo-img:hover img {
opacity: 1;
}
.rt-grid-figure .logo-img:hover a.back {
display: block;
}
.rt-grid-figure .logo-img:hover a.back-exists {
display: none;
}
.rt-grid-figure .logo-img.logo-gray a:hover img {
opacity: 80%;
}
.rt-portfolio-style1 .portfolio-item {
position: relative;
overflow: hidden;
background: #fff;
z-index: 1;
}
.rt-portfolio-style1 .portfolio-item .portfolio-img {
position: relative;
}
.rt-portfolio-style1 .portfolio-item .portfolio-img a img {
width: 100%;
transition: 0.6s;
}
.rt-portfolio-style1 .portfolio-item .portfolio-img::before {
content: "";
border-top: 65px solid var(--color-primary);
border-right: 65px solid var(--color-primary);
border-bottom: 65px solid transparent;
border-left: 65px solid transparent;
position: absolute;
right: -25%;
top: -25%;
z-index: 5;
transition: 0.6s;
}
.rt-portfolio-style1 .portfolio-item .portfolio-img::after {
content: "";
width: 100%;
height: 10px;
background: var(--color-primary);
position: absolute;
left: 0;
bottom: -15px;
z-index: 5;
transition: 0.6s;
}
.rt-portfolio-style1 .portfolio-item .portfolio-content {
padding: 25px;
position: absolute;
bottom: 30px;
left: 15px;
transform: scaleY(0);
transition: 0.3s;
z-index: 5;
}
.rt-portfolio-style1 .portfolio-item .portfolio-content .vertical-middle {
position: relative;
z-index: 9;
}
.rt-portfolio-style1 .portfolio-item .portfolio-content .p-category {
color: #fff;
margin-bottom: 5px;
}
.rt-portfolio-style1 .portfolio-item .portfolio-content .p-category a {
color: #fff;
}
.rt-portfolio-style1 .portfolio-item .portfolio-content .vertical-middle {
display: table;
height: 100%;
width: 100%;
}
.rt-portfolio-style1 .portfolio-item .portfolio-content .vertical-middle-cell {
display: table-cell;
vertical-align: middle;
}
.rt-portfolio-style1 .portfolio-item .portfolio-content .porfolio_icon {
width: 50px;
height: 50px;
line-height: 50px;
text-align: center;
background: var(--color-white);
border-radius: 50px;
color: var(--color-secondary);
margin-top: 34px;
}
.rt-portfolio-style1 .portfolio-item .portfolio-text {
padding-top: 15px;
}
.rt-portfolio-style1 .portfolio-item .p-link {
transition: all 0.3s ease 0s;
display: inline-block;
font-size: 19px;
width: 52px;
line-height: 54px;
height: 52px;
text-align: center;
border-radius: 50%;
background: #fff;
}
.rt-portfolio-style1 .portfolio-item .p-link i {
margin-left: 2px;
}
.rt-portfolio-style1 .portfolio-item .p-link:hover {
background-color: var(--color-primary);
color: #fff;
}
.rt-portfolio-style1 .portfolio-item .p-title {
font-size: 24px;
line-height: normal;
margin-bottom: 0;
font-weight: 700;
line-height: 27px;
}
.rt-portfolio-style1 .portfolio-item .p-title a {
font-family: var(--font-primary);
color: var(--color-white);
font-size: 24px;
margin-bottom: 0;
font-weight: 700;
line-height: 27px;
}
.rt-portfolio-style1 .portfolio-item .p-desc {
font-size: 15px;
color: rgba(255, 255, 255, 0.7);
margin-bottom: 0;
margin-top: 10px;
}
.rt-portfolio-style1 .portfolio-item::after {
position: absolute;
content: "";
left: 0;
top: 0;
height: 100%;
width: 100%;
background: rgba(0, 0, 0, 0.8901960784);
z-index: 1;
transition: 0.6s;
opacity: 0;
}
.rt-portfolio-style1 .portfolio-item:hover .portfolio-content {
transform: scaleY(1);
}
.rt-portfolio-style1 .portfolio-item:hover::after {
opacity: 1;
}
.rt-portfolio-style1 .portfolio-item:hover .portfolio-img::after {
bottom: 0;
}
.rt-portfolio-style1 .portfolio-item:hover .portfolio-img::before {
right: 0;
top: 0;
}
.rt-portfolio-style1 .portfolio-item:hover .portfolio-img a img {
transform: scale(1.15);
}
.rt-portfolio-style1 .grid-item:hover .read-btn {
color: #fff;
}
.rt-portfolio-style1 .grid-item:hover .read-btn:before {
height: 100%;
bottom: 0;
}
.rt-portfolio-style1 .slick-slider .slick-arrow {
width: 60px;
height: 55px;
border-radius: 0;
line-height: 60px;
bottom: -172px;
top: -84px;
}
.rt-portfolio-style1 .slick-slider .slick-arrow:before {
color: #fff;
}
.rt-portfolio-style1 .slick-slider .slick-prev {
left: 88.5%;
}
.rt-portfolio-style1 .slick-slider .slick-prev:hover {
background: #fff;
}
.rt-portfolio-style1 .slick-slider .slick-prev:hover:before {
color: var(--color-primary);
}
.rt-portfolio-style1 .slick-slider .slick-next {
right: 1%;
background: #fff;
box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
}
.rt-portfolio-style1 .slick-slider .slick-next:before {
color: var(--color-primary);
}
.rt-portfolio-style1 .slick-slider .slick-next:hover {
background: var(--color-primary);
}
.rt-portfolio-style1 .slick-slider .slick-next:hover:before {
color: #fff;
}
.rt-portfolio-style4 .project-area-main-wrapper-four {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
}
.rt-portfolio-style4 .project-area-main-wrapper-four > div {
flex-basis: 33%;
}
@media only screen and (max-width: 767px) {
.rt-portfolio-style4 .project-area-main-wrapper-four > div {
flex-basis: 50%;
}
}
@media only screen and (max-width: 575px) {
.rt-portfolio-style4 .project-area-main-wrapper-four > div {
flex-basis: 100%;
}
.rt-portfolio-style4 .project-area-main-wrapper-four > div:nth-child(5) {
margin-bottom: 100px;
}
}
@media only screen and (max-width: 479px) {
.rt-portfolio-style4 .project-area-main-wrapper-four > div {
flex-basis: 100%;
}
.rt-portfolio-style4 .project-area-main-wrapper-four > div:nth-child(5) {
margin-bottom: 100px;
}
}
.rt-portfolio-style4 .project-area-main-wrapper-four .project-single-four {
padding-left: 80px;
position: relative;
z-index: 1;
}
.rt-portfolio-style4 .project-area-main-wrapper-four .project-single-four::after {
position: absolute;
content: "";
left: 0;
width: 60px;
height: 1px;
top: 40%;
transform: translateY(-50%);
background: #30373e;
}
.rt-portfolio-style4 .project-area-main-wrapper-four .project-single-four a {
max-width: -moz-max-content;
max-width: max-content;
display: inline-block;
position: relative;
}
.rt-portfolio-style4 .project-area-main-wrapper-four .project-single-four a img {
position: absolute;
top: 0px;
z-index: -1;
pointer-events: none;
opacity: 0;
transition: 0.5s;
min-width: -moz-max-content;
min-width: max-content;
}
.rt-portfolio-style4 .project-area-main-wrapper-four .project-single-four a .title {
transition: 0.3s;
color: #fff;
max-width: -moz-max-content;
max-width: max-content;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.rt-portfolio-style4 .project-area-main-wrapper-four .project-single-four a .title {
font-size: 22px;
}
}
@media only screen and (max-width: 767px) {
.rt-portfolio-style4 .project-area-main-wrapper-four .project-single-four a .title {
font-size: 22px;
}
}
.rt-portfolio-style4 .project-area-main-wrapper-four .project-single-four a .number {
position: absolute;
top: -30px;
right: 0;
color: #d9d9d9;
font-size: 24px;
font-style: italic;
font-weight: 600;
line-height: 34px;
text-transform: capitalize;
}
.rt-portfolio-style4 .project-area-main-wrapper-four .project-single-four:hover a img {
opacity: 1;
top: -150px;
}
.rt-portfolio-style4 .project-area-main-wrapper-four .project-single-four:hover a .title {
color: #30373e;
}
.rt-portfolio-style5 .grid-item {
display: flex;
align-items: center;
}
.rt-portfolio-style5 .grid-item .project--style-six .thumbnail {
display: block;
max-width: -moz-max-content;
max-width: max-content;
overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.rt-portfolio-style5 .grid-item .project--style-six .thumbnail {
min-width: 100%;
}
}
@media only screen and (max-width: 767px) {
.rt-portfolio-style5 .grid-item .project--style-six .thumbnail {
min-width: 100%;
}
}
.rt-portfolio-style5 .grid-item .project--style-six .thumbnail img {
transition: 0.8s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.rt-portfolio-style5 .grid-item .project--style-six .thumbnail img {
min-width: 100%;
}
}
@media only screen and (max-width: 767px) {
.rt-portfolio-style5 .grid-item .project--style-six .thumbnail img {
min-width: 100%;
}
}
.rt-portfolio-style5 .grid-item .project--style-six .thumbnail:hover img {
transform: scale(1.09);
}
.rt-portfolio-style5 .grid-item .project--style-six .inner-content {
margin-top: 30px;
}
.rt-portfolio-style5 .grid-item .project--style-six .inner-content a .title {
transition: 0.3s;
margin-bottom: 13px;
}
.rt-portfolio-style5 .grid-item .project--style-six .inner-content a .title:hover {
color: var(--color-primary);
}
.rt-portfolio-style5 .grid-item .project--style-six .inner-content p.disc {
max-width: 75%;
}
@media only screen and (max-width: 575px) {
.rt-portfolio-style5 .grid-item .project--style-six .inner-content p.disc {
max-width: 100%;
}
}
.rt-portfolio-style1 .portfolio-item {
position: relative;
overflow: hidden;
background: #fff;
z-index: 1;
}
.rt-portfolio-style1 .portfolio-item .portfolio-img {
position: relative;
}
.rt-portfolio-style1 .portfolio-item .portfolio-img a img {
width: 100%;
transition: 0.6s;
}
.rt-portfolio-style1 .portfolio-item .portfolio-img::before {
content: "";
border-top: 65px solid var(--color-primary);
border-right: 65px solid var(--color-primary);
border-bottom: 65px solid transparent;
border-left: 65px solid transparent;
position: absolute;
right: -25%;
top: -25%;
z-index: 5;
transition: 0.6s;
}
.rt-portfolio-style1 .portfolio-item .portfolio-img::after {
content: "";
width: 100%;
height: 10px;
background: var(--color-primary);
position: absolute;
left: 0;
bottom: -15px;
z-index: 5;
transition: 0.6s;
}
.rt-portfolio-style1 .portfolio-item .portfolio-content {
padding: 25px;
position: absolute;
bottom: 30px;
left: 15px;
transform: scaleY(0);
transition: 0.3s;
z-index: 5;
}
.rt-portfolio-style1 .portfolio-item .portfolio-content .vertical-middle {
position: relative;
z-index: 9;
}
.rt-portfolio-style1 .portfolio-item .portfolio-content .p-category {
color: #fff;
margin-bottom: 5px;
}
.rt-portfolio-style1 .portfolio-item .portfolio-content .p-category a {
color: #fff;
}
.rt-portfolio-style1 .portfolio-item .portfolio-content .vertical-middle {
display: table;
height: 100%;
width: 100%;
}
.rt-portfolio-style1 .portfolio-item .portfolio-content .vertical-middle-cell {
display: table-cell;
vertical-align: middle;
}
.rt-portfolio-style1 .portfolio-item .portfolio-content .porfolio_icon {
width: 50px;
height: 50px;
line-height: 50px;
text-align: center;
background: var(--color-white);
border-radius: 50px;
color: var(--color-secondary);
margin-top: 34px;
}
.rt-portfolio-style1 .portfolio-item .portfolio-text {
padding-top: 15px;
}
.rt-portfolio-style1 .portfolio-item .p-link {
transition: all 0.3s ease 0s;
display: inline-block;
font-size: 19px;
width: 52px;
line-height: 54px;
height: 52px;
text-align: center;
border-radius: 50%;
background: #fff;
}
.rt-portfolio-style1 .portfolio-item .p-link i {
margin-left: 2px;
}
.rt-portfolio-style1 .portfolio-item .p-link:hover {
background-color: var(--color-primary);
color: #fff;
}
.rt-portfolio-style1 .portfolio-item .p-title {
font-size: 24px;
line-height: normal;
margin-bottom: 0;
font-weight: 700;
line-height: 27px;
}
.rt-portfolio-style1 .portfolio-item .p-title a {
font-family: var(--font-primary);
color: var(--color-white);
font-size: 24px;
margin-bottom: 0;
font-weight: 700;
line-height: 27px;
}
.rt-portfolio-style1 .portfolio-item .p-desc {
font-size: 15px;
color: rgba(255, 255, 255, 0.7);
margin-bottom: 0;
margin-top: 10px;
}
.rt-portfolio-style1 .portfolio-item::after {
position: absolute;
content: "";
left: 0;
top: 0;
height: 100%;
width: 100%;
background: rgba(0, 0, 0, 0.8901960784);
z-index: 1;
transition: 0.6s;
opacity: 0;
}
.rt-portfolio-style1 .portfolio-item:hover .portfolio-content {
transform: scaleY(1);
}
.rt-portfolio-style1 .portfolio-item:hover::after {
opacity: 1;
}
.rt-portfolio-style1 .portfolio-item:hover .portfolio-img::after {
bottom: 0;
}
.rt-portfolio-style1 .portfolio-item:hover .portfolio-img::before {
right: 0;
top: 0;
}
.rt-portfolio-style1 .portfolio-item:hover .portfolio-img a img {
transform: scale(1.15);
}
.rt-portfolio-style1 .grid-item:hover .read-btn {
color: #fff;
}
.rt-portfolio-style1 .grid-item:hover .read-btn:before {
height: 100%;
bottom: 0;
}
.rt-portfolio-style1 .slick-slider .slick-arrow {
width: 60px;
height: 55px;
border-radius: 0;
line-height: 60px;
bottom: -172px;
top: -84px;
}
.rt-portfolio-style1 .slick-slider .slick-arrow:before {
color: #fff;
}
.rt-portfolio-style1 .slick-slider .slick-prev {
left: 88.5%;
}
.rt-portfolio-style1 .slick-slider .slick-prev:hover {
background: #fff;
}
.rt-portfolio-style1 .slick-slider .slick-prev:hover:before {
color: var(--color-primary);
}
.rt-portfolio-style1 .slick-slider .slick-next {
right: 1%;
background: #fff;
box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
}
.rt-portfolio-style1 .slick-slider .slick-next:before {
color: var(--color-primary);
}
.rt-portfolio-style1 .slick-slider .slick-next:hover {
background: var(--color-primary);
}
.rt-portfolio-style1 .slick-slider .slick-next:hover:before {
color: #fff;
}
.portfolio-slider-nav {
max-width: 1320px;
position: relative;
margin: auto;
z-index: 1;
}
.portfolio-slider-nav .swiper-button-prev,
.portfolio-slider-nav .swiper-button-next {
position: relative;
font-size: 24px;
color: var(--color-secondary);
height: 80px !important;
width: 80px !important;
display: inline-block;
line-height: 80px;
text-align: center;
border-radius: 50%;
background: var(--color-white);
transition: 0.3s;
}
.portfolio-slider-nav .swiper-button-prev:hover,
.portfolio-slider-nav .swiper-button-next:hover {
background: var(--color-primary);
color: var(--color-white);
}
.portfolio-slider-nav .swiper-button-prev::before,
.portfolio-slider-nav .swiper-button-next::before {
font-size: 0;
}
.portfolio-slider-nav .swiper-button-prev {
left: 93%;
top: -80px;
transform: translateX(-93%);
}
.portfolio-slider-nav .swiper-button-prev:hover {
transform: translateX(-85px);
}
.portfolio-slider-nav .swiper-button-next {
position: absolute;
right: 0;
top: -80px;
}
.portfolio-slider-nav .swiper-button-next:hover {
transform: translateX(15px);
}
.rt-portfolio-style2 .portfolio-item {
position: relative;
overflow: hidden;
background: #fff;
z-index: 1;
}
.rt-portfolio-style2 .portfolio-item .portfolio-img {
position: relative;
}
.rt-portfolio-style2 .portfolio-item .portfolio-img a img {
width: 100%;
transition: 0.6s;
}
.rt-portfolio-style2 .portfolio-item .portfolio-img::before {
content: "";
border-top: 65px solid var(--color-primary);
border-right: 65px solid var(--color-primary);
border-bottom: 65px solid transparent;
border-left: 65px solid transparent;
position: absolute;
right: -25%;
top: -25%;
z-index: 5;
transition: 0.6s;
}
.rt-portfolio-style2 .portfolio-item .portfolio-img::after {
content: "";
width: 100%;
height: 10px;
background: var(--color-primary);
position: absolute;
left: 0;
bottom: -15px;
z-index: 5;
transition: 0.6s;
}
.rt-portfolio-style2 .portfolio-item .portfolio-content {
padding: 25px;
position: absolute;
bottom: 30px;
left: 15px;
transform: scaleY(0);
transition: 0.3s;
z-index: 5;
}
.rt-portfolio-style2 .portfolio-item .portfolio-content .vertical-middle {
position: relative;
z-index: 9;
}
.rt-portfolio-style2 .portfolio-item .portfolio-content .p-category {
color: #fff;
margin-bottom: 5px;
}
.rt-portfolio-style2 .portfolio-item .portfolio-content .p-category a {
color: #fff;
}
.rt-portfolio-style2 .portfolio-item .portfolio-content .vertical-middle {
display: table;
height: 100%;
width: 100%;
}
.rt-portfolio-style2 .portfolio-item .portfolio-content .vertical-middle-cell {
display: table-cell;
vertical-align: middle;
}
.rt-portfolio-style2 .portfolio-item .portfolio-content .porfolio_icon {
width: 50px;
height: 50px;
line-height: 50px;
text-align: center;
background: var(--color-white);
border-radius: 50px;
color: var(--color-secondary);
margin-top: 34px;
}
.rt-portfolio-style2 .portfolio-item .portfolio-text {
padding-top: 15px;
}
.rt-portfolio-style2 .portfolio-item .p-link {
transition: all 0.3s ease 0s;
display: inline-block;
font-size: 19px;
width: 52px;
line-height: 54px;
height: 52px;
text-align: center;
border-radius: 50%;
background: #fff;
}
.rt-portfolio-style2 .portfolio-item .p-link i {
margin-left: 2px;
}
.rt-portfolio-style2 .portfolio-item .p-link:hover {
background-color: var(--color-primary);
color: #fff;
}
.rt-portfolio-style2 .portfolio-item .p-title {
font-size: 24px;
line-height: normal;
margin-bottom: 0;
font-weight: 700;
line-height: 27px;
}
.rt-portfolio-style2 .portfolio-item .p-title a {
font-family: var(--font-primary);
color: var(--color-white);
font-size: 24px;
margin-bottom: 0;
font-weight: 700;
line-height: 27px;
}
.rt-portfolio-style2 .portfolio-item .p-desc {
font-size: 15px;
color: rgba(255, 255, 255, 0.7);
margin-bottom: 0;
margin-top: 10px;
}
.rt-portfolio-style2 .portfolio-item::after {
position: absolute;
content: "";
left: 0;
top: 0;
height: 100%;
width: 100%;
background: rgba(0, 0, 0, 0.8901960784);
z-index: 1;
transition: 0.6s;
opacity: 0;
}
.rt-portfolio-style2 .portfolio-item:hover .portfolio-content {
transform: scaleY(1);
}
.rt-portfolio-style2 .portfolio-item:hover::after {
opacity: 1;
}
.rt-portfolio-style2 .portfolio-item:hover .portfolio-img::after {
bottom: 0;
}
.rt-portfolio-style2 .portfolio-item:hover .portfolio-img::before {
right: 0;
top: 0;
}
.rt-portfolio-style2 .portfolio-item:hover .portfolio-img a img {
transform: scale(1.15);
}
.rt-portfolio-style2 .grid-item:hover .read-btn {
color: #fff;
}
.rt-portfolio-style2 .grid-item:hover .read-btn:before {
height: 100%;
bottom: 0;
}
.rt-portfolio-style2 .slick-slider .slick-arrow {
width: 60px;
height: 55px;
border-radius: 0;
line-height: 60px;
bottom: -172px;
top: -84px;
}
.rt-portfolio-style2 .slick-slider .slick-arrow:before {
color: #fff;
}
.rt-portfolio-style2 .slick-slider .slick-prev {
left: 88.5%;
}
.rt-portfolio-style2 .slick-slider .slick-prev:hover {
background: #fff;
}
.rt-portfolio-style2 .slick-slider .slick-prev:hover:before {
color: var(--color-primary);
}
.rt-portfolio-style2 .slick-slider .slick-next {
right: 1%;
background: #fff;
box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
}
.rt-portfolio-style2 .slick-slider .slick-next:before {
color: var(--color-primary);
}
.rt-portfolio-style2 .slick-slider .slick-next:hover {
background: var(--color-primary);
}
.rt-portfolio-style2 .slick-slider .slick-next:hover:before {
color: #fff;
}
.elementor-widget-rt-price-table .elementor-widget-container .rt-price-table.style1 .rt-pricing-table-badge {
padding: 10px 10px;
background-color: var(--color-primary);
color: #fff;
line-height: 1;
z-index: 1;
border-radius: 15px;
}
.elementor-widget-rt-price-table .elementor-widget-container .rt-price-table.style1 .rt-pricing-table-title {
margin-bottom: 12px;
color: var(--color-secondary);
font-size: 24px;
}
.elementor-widget-rt-price-table .elementor-widget-container .rt-price-table.style1 .rt-pricing-table-header p {
padding-bottom: 10px;
color: #777;
}
.elementor-widget-rt-price-table .elementor-widget-container .rt-price-table.style1 .rt-pricing-table-price .rt-pricing-table-price-tag {
margin-bottom: 0.5rem;
color: var(--color-secondary);
font-weight: 700;
font-size: 40px;
line-height: normal;
display: flex;
gap: 10px;
align-items: center;
}
.elementor-widget-rt-price-table .elementor-widget-container .rt-price-table.style1 .rt-pricing-table-price .rt-pricing-table-price-tag .rt-pricing-table-price-text {
font-weight: 700;
margin-left: -10px;
}
.elementor-widget-rt-price-table .elementor-widget-container .rt-price-table.style1 .rt-pricing-table-price .rt-pricing-table-period {
color: #777;
font-size: 16px;
display: block;
font-weight: 400;
padding-top: 5px;
}
.elementor-widget-rt-price-table .elementor-widget-container .rt-price-table.style1 .rt-pricing-table-price.display-inline .rt-pricing-table-period {
position: relative;
padding-left: 16px;
display: inline-block;
}
.elementor-widget-rt-price-table .elementor-widget-container .rt-price-table.style1 .rt-pricing-table-price.display-inline .rt-pricing-table-period:before {
position: absolute;
content: "";
height: 20px;
width: 2px;
position: absolute;
left: 0;
transform: rotate(20deg) translateY(-50%);
top: 50%;
background: #f2f2f2;
}
.elementor-widget-rt-price-table .elementor-widget-container .rt-price-table.style1 .rt-pricing-table-body .rt-pricing-table-features-title {
margin-top: 0;
margin-bottom: 20px;
font-weight: 400;
font-size: 16px;
line-height: 26px;
}
.elementor-widget-rt-price-table .elementor-widget-container .rt-price-table.style1 .rt-pricing-table-body .rt-pricing-table-features-list {
margin: 0 0 40px 0;
padding: 0;
list-style: none;
}
.elementor-widget-rt-price-table .elementor-widget-container .rt-price-table.style1 .rt-pricing-table-body .rt-pricing-table-features-list li {
margin-bottom: 15px;
font-size: 18px;
color: #30373E;
display: flex;
}
.elementor-widget-rt-price-table .elementor-widget-container .rt-price-table.style1 .rt-pricing-table-body .rt-pricing-table-features-list li.active i {
font-size: 18px;
}
.elementor-widget-rt-price-table .elementor-widget-container .rt-price-table.style1 .rt-pricing-table-body .rt-pricing-table-features-list li.deactive {
color: #5D666F;
}
.elementor-widget-rt-price-table .elementor-widget-container .rt-price-table.style1 .rt-pricing-table-body .rt-pricing-table-features-list li i {
margin-right: 10px;
min-width: 15px;
font-size: 16px;
}
.elementor-widget-rt-price-table .elementor-widget-container .rt-price-table.style1 .rt-pricing-icon {
position: relative;
}
.elementor-widget-rt-price-table .elementor-widget-container .rt-price-table.style1 .rt-pricing-icon i {
position: relative;
transition: var(--transition);
text-align: center;
}
.elementor-widget-rt-price-table .elementor-widget-container .rt-price-table.style2 {
text-align: center;
}
.elementor-widget-rt-price-table .elementor-widget-container .rt-price-table.style2 .rt-pricing-table-title {
font-size: 22px;
font-weight: var(--bold);
text-transform: capitalize;
margin-bottom: 20px;
display: inline-block;
color: var(--color-secondary);
}
.elementor-widget-rt-price-table .elementor-widget-container .rt-price-table.style2 .rt-pricing-table-title:hover {
color: var(--body-bg);
}
.elementor-widget-rt-price-table .elementor-widget-container .rt-price-table.style2 .rt-pricing-table-header p {
padding-bottom: 10px;
color: #777;
}
.elementor-widget-rt-price-table .elementor-widget-container .rt-price-table.style2 .rt-pricing-table-price .rt-pricing-table-price-tag {
display: flex;
gap: 5px;
flex-wrap: wrap;
align-items: center;
font-weight: var(--bold);
font-size: 16px;
margin-bottom: 40px;
}
.elementor-widget-rt-price-table .elementor-widget-container .rt-price-table.style2 .rt-pricing-table-price.display-inline .rt-pricing-table-period {
position: relative;
padding-left: 16px;
display: inline-block;
}
.elementor-widget-rt-price-table .elementor-widget-container .rt-price-table.style2 .rt-pricing-table-price.display-inline .rt-pricing-table-period:before {
position: absolute;
content: "";
height: 20px;
width: 2px;
position: absolute;
left: 0;
transform: rotate(20deg) translateY(-50%);
top: 50%;
background: #f2f2f2;
}
.elementor-widget-rt-price-table .elementor-widget-container .rt-price-table.style2 .rt-pricing-table-body .rt-pricing-table-features-title {
margin-top: 0;
margin-bottom: 20px;
font-weight: 400;
font-size: 16px;
line-height: 26px;
}
.elementor-widget-rt-price-table .elementor-widget-container .rt-price-table.style2 .rt-pricing-table-body .rt-pricing-table-features-list {
margin: 0 0 40px 0;
padding: 0;
list-style: none;
}
.elementor-widget-rt-price-table .elementor-widget-container .rt-price-table.style2 .rt-pricing-table-body .rt-pricing-table-features-list li {
margin-bottom: 15px;
font-size: 18px;
color: #30373E;
display: flex;
}
.elementor-widget-rt-price-table .elementor-widget-container .rt-price-table.style2 .rt-pricing-table-body .rt-pricing-table-features-list li.active i {
font-size: 18px;
}
.elementor-widget-rt-price-table .elementor-widget-container .rt-price-table.style2 .rt-pricing-table-body .rt-pricing-table-features-list li.deactive {
color: #5D666F;
}
.elementor-widget-rt-price-table .elementor-widget-container .rt-price-table.style2 .rt-pricing-table-body .rt-pricing-table-features-list li i {
margin-right: 10px;
min-width: 15px;
font-size: 16px;
}
.elementor-widget-rt-price-table .elementor-widget-container .rt-price-table.style2 .rt-pricing-icon {
position: relative;
}
.elementor-widget-rt-price-table .elementor-widget-container .rt-price-table.style2 .rt-pricing-icon i {
position: relative;
transition: var(--transition);
text-align: center;
}
.plan-feature.style1 .plan-feature__list {
list-style: none;
margin-left: 0;
margin-bottom: 0;
}
.plan-feature.style1 .plan-feature__list li {
display: flex;
justify-content: space-between;
align-items: center;
}
.plan-feature.style1 .plan-feature__list li .text-icon {
display: flex;
align-items: center;
gap: 10px;
line-height: 1.3;
font-size: 14px;
font-weight: 500;
}
.plan-feature.style1 .plan-feature__list li .text-icon svg {
width: 14px;
height: 10px;
}
.plan-feature.style1 .plan-feature__list li .text-icon i {
font-size: 14px;
}
.plan-feature.style1 .plan-feature__list li .tolltip {
font-size: 16px;
cursor: pointer;
}
.plan-feature.style2 .plan-feature__list {
list-style: none;
margin-left: 0;
margin-bottom: 0;
}
.plan-feature.style2 .plan-feature__list li {
display: flex;
justify-content: space-between;
align-items: center;
}
.plan-feature.style2 .plan-feature__list li .text-icon {
display: flex;
align-items: center;
gap: 10px;
line-height: 1.2;
font-weight: 600;
font-family: var(--font-secondary);
}
.plan-feature.style2 .plan-feature__list li .text-icon svg {
width: 16px;
height: 12px;
}
.plan-feature.style2 .plan-feature__list li .text-icon i {
font-size: 16px;
}
.plan-feature.style2 .plan-feature__list li .tolltip {
font-size: 16px;
cursor: pointer;
}
.rt-price-plan-features .plan-feature__list .plan-features-list-item:last-child {
margin-bottom: 0 !important;
}
.rts-pricing-plan {
position: relative;
}
.rts-pricing-plan .has-box-shadow {
box-shadow: 0px 4px 30px 0px rgba(159, 159, 159, 0.25);
}
.rts-pricing-plan .tab_content_row {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}
.rts-pricing-plan__tab {
display: flex;
gap: 40px;
align-items: center;
position: relative;
z-index: 1;
margin-bottom: 50px;
justify-content: center;
}
.rts-pricing-plan__tab .tab__button {
background: var(--color-white);
box-shadow: 0px 4px 30px 0px #EDF5FF;
padding: 5px;
border-radius: 6px;
}
.rts-pricing-plan__tab .tab__button__item {
display: flex;
gap: 5px;
}
.rts-pricing-plan__tab .tab__button__item button {
border-radius: 6px;
padding: 10px 20px;
text-transform: capitalize;
background-color: transparent;
color: var(--color-secondary);
}
.rts-pricing-plan__tab .tab__button__item button.active {
background: var(--color-primary);
color: var(--color-white);
}
.rts-pricing-plan__tab .discount {
position: relative;
}
@media screen and (max-width: 576px) {
.rts-pricing-plan__tab .discount {
display: none;
}
}
.rts-pricing-plan__tab .discount span.line {
position: absolute;
top: -22px;
right: 60%;
}
@media screen and (max-width: 768px) {
.rts-pricing-plan__tab .discount span.line {
position: relative;
top: -15px;
left: -50px;
z-index: -1;
}
}
.rts-pricing-plan__tab .discount p {
margin: 0;
}
.rts-pricing-plan .tab__content {
display: none;
}
.rts-pricing-plan .tab__content.open {
display: block;
}
.rts-pricing-plan .tab__content .single-plan {
position: relative;
height: 100%;
}
.rts-pricing-plan .tab__content .single-plan .popular-tag {
position: absolute;
top: -18px;
left: 50%;
transform: translate(-50%);
padding: 10px 30px;
background: var(--color-third);
font-size: 14px;
line-height: 100%;
border-radius: 30px;
color: var(--color-secondary);
text-transform: capitalize;
}
.rts-pricing-plan .tab__content .single-plan .plan-features .elementor-element {
padding: 0;
}
.rts-pricing-plan .tab__content .single-plan .plan-features .elementor-element .plan-feature {
padding-bottom: 40px;
}
.rts-pricing-plan.style1 .single-plan, .rts-pricing-plan.style2 .single-plan {
background: var(--color-white);
padding: 60px;
border-radius: 20px;
position: relative;
transition: all 0.3s ease;
z-index: 1;
}
@media screen and (max-width: 768px) {
.rts-pricing-plan.style1 .single-plan, .rts-pricing-plan.style2 .single-plan {
padding: 30px !important;
}
}
@media screen and (max-width: 1200px) {
.rts-pricing-plan.style1 .single-plan, .rts-pricing-plan.style2 .single-plan {
padding: 45px;
}
}
.rts-pricing-plan.style1 .single-plan .bg-overlay, .rts-pricing-plan.style2 .single-plan .bg-overlay {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
content: "";
z-index: -1;
transition: all 0.3s ease;
opacity: 0;
}
.rts-pricing-plan.style1 .single-plan:hover, .rts-pricing-plan.style1 .single-plan.active, .rts-pricing-plan.style2 .single-plan:hover, .rts-pricing-plan.style2 .single-plan.active {
color: var(--color-white);
background-image: var(--pricing-single-bg);
}
.rts-pricing-plan.style1 .single-plan:hover .single-plan__content .plan-icon svg path, .rts-pricing-plan.style1 .single-plan.active .single-plan__content .plan-icon svg path, .rts-pricing-plan.style2 .single-plan:hover .single-plan__content .plan-icon svg path, .rts-pricing-plan.style2 .single-plan.active .single-plan__content .plan-icon svg path {
fill: url(#paint0_linear_195_837);
}
.rts-pricing-plan.style1 .single-plan:hover .single-plan__content .plan-title, .rts-pricing-plan.style1 .single-plan:hover .single-plan__content .card-plan__price, .rts-pricing-plan.style1 .single-plan.active .single-plan__content .plan-title, .rts-pricing-plan.style1 .single-plan.active .single-plan__content .card-plan__price, .rts-pricing-plan.style2 .single-plan:hover .single-plan__content .plan-title, .rts-pricing-plan.style2 .single-plan:hover .single-plan__content .card-plan__price, .rts-pricing-plan.style2 .single-plan.active .single-plan__content .plan-title, .rts-pricing-plan.style2 .single-plan.active .single-plan__content .card-plan__price {
color: var(--color-white);
}
.rts-pricing-plan.style1 .single-plan:hover .single-plan__content .plan-feature li .text-icon svg path, .rts-pricing-plan.style1 .single-plan.active .single-plan__content .plan-feature li .text-icon svg path, .rts-pricing-plan.style2 .single-plan:hover .single-plan__content .plan-feature li .text-icon svg path, .rts-pricing-plan.style2 .single-plan.active .single-plan__content .plan-feature li .text-icon svg path {
fill: var(--color-white);
}
.rts-pricing-plan.style1 .single-plan:hover .single-plan__content .plan-feature li .text-icon i, .rts-pricing-plan.style1 .single-plan.active .single-plan__content .plan-feature li .text-icon i, .rts-pricing-plan.style2 .single-plan:hover .single-plan__content .plan-feature li .text-icon i, .rts-pricing-plan.style2 .single-plan.active .single-plan__content .plan-feature li .text-icon i {
color: var(--color-white);
}
.rts-pricing-plan.style1 .single-plan:hover .single-plan__content .plan-feature li .tolltip svg path, .rts-pricing-plan.style1 .single-plan.active .single-plan__content .plan-feature li .tolltip svg path, .rts-pricing-plan.style2 .single-plan:hover .single-plan__content .plan-feature li .tolltip svg path, .rts-pricing-plan.style2 .single-plan.active .single-plan__content .plan-feature li .tolltip svg path {
fill: var(--color-white);
}
.rts-pricing-plan.style1 .single-plan:hover .single-plan__content .plan-feature li .tolltip i, .rts-pricing-plan.style1 .single-plan.active .single-plan__content .plan-feature li .tolltip i, .rts-pricing-plan.style2 .single-plan:hover .single-plan__content .plan-feature li .tolltip i, .rts-pricing-plan.style2 .single-plan.active .single-plan__content .plan-feature li .tolltip i {
color: var(--color-white);
}
.rts-pricing-plan.style1 .single-plan:hover .single-plan__content .buy__plan, .rts-pricing-plan.style1 .single-plan.active .single-plan__content .buy__plan, .rts-pricing-plan.style2 .single-plan:hover .single-plan__content .buy__plan, .rts-pricing-plan.style2 .single-plan.active .single-plan__content .buy__plan {
background: var(--color-white);
color: var(--color-secondary);
}
.rts-pricing-plan.style1 .single-plan:hover .bg-overlay, .rts-pricing-plan.style1 .single-plan.active .bg-overlay, .rts-pricing-plan.style2 .single-plan:hover .bg-overlay, .rts-pricing-plan.style2 .single-plan.active .bg-overlay {
opacity: 1;
}
.rts-pricing-plan.style1 .single-plan:hover::before, .rts-pricing-plan.style1 .single-plan.active::before, .rts-pricing-plan.style2 .single-plan:hover::before, .rts-pricing-plan.style2 .single-plan.active::before {
opacity: 1;
}
.rts-pricing-plan.style1 .single-plan__content .plan-icon, .rts-pricing-plan.style2 .single-plan__content .plan-icon {
margin-bottom: 40px;
transition: all 0.3s ease;
}
.rts-pricing-plan.style1 .single-plan__content .plan-title, .rts-pricing-plan.style2 .single-plan__content .plan-title {
font-size: 24px;
font-weight: var(--bold);
color: var(--color-secondary);
margin-bottom: 15px;
display: inline-block;
transition: all 0.3s ease;
line-height: 1;
}
.rts-pricing-plan.style1 .single-plan__content .subtitle, .rts-pricing-plan.style2 .single-plan__content .subtitle {
font-size: 15px;
font-family: var(--font-secondary);
margin-bottom: 0;
}
@media screen and (max-width: 576px) {
.rts-pricing-plan.style1 .single-plan__content .subtitle, .rts-pricing-plan.style2 .single-plan__content .subtitle {
line-height: 1.4;
}
}
.rts-pricing-plan.style1 .single-plan__content .plan-feature__list, .rts-pricing-plan.style2 .single-plan__content .plan-feature__list {
border-top: 1px solid #D9D9D9;
padding-top: 40px;
margin-top: 30px;
}
.rts-pricing-plan.style1 .single-plan__content .plan-actions, .rts-pricing-plan.style2 .single-plan__content .plan-actions {
margin-top: 40px;
}
.rts-pricing-plan.style1 .single-plan__content .buy__plan, .rts-pricing-plan.style2 .single-plan__content .buy__plan {
background: var(--color-primary);
color: var(--color-white);
font-weight: var(--semibold);
transition: var(--transition);
display: block;
text-align: center;
}
.rts-pricing-plan.style1 .single-plan__content .buy__plan:hover, .rts-pricing-plan.style2 .single-plan__content .buy__plan:hover {
background: var(--color-third) !important;
}
.rts-pricing-plan.style1 .single-plan__content .buy__plan.btn__two, .rts-pricing-plan.style2 .single-plan__content .buy__plan.btn__two {
padding: 15px 0;
border-radius: 4px;
max-width: 260px;
position: relative;
left: 50%;
transform: translateX(-50%);
}
.rts-pricing-plan.style2 .rts-pricing-plan__tab .tab__button, .rts-pricing-plan.style3 .rts-pricing-plan__tab .tab__button {
background: var(--color-secondary);
border-radius: 40px;
}
.rts-pricing-plan.style2 .rts-pricing-plan__tab .tab__button .tab__button__item button, .rts-pricing-plan.style3 .rts-pricing-plan__tab .tab__button .tab__button__item button {
padding: 7px 15px;
border-radius: 40px;
line-height: 100%;
color: var(--color-white);
}
.rts-pricing-plan.style2 .single-plan, .rts-pricing-plan.style3 .single-plan {
padding: 40px 30px;
background: #F5FAFF;
}
.rts-pricing-plan.style2 .single-plan__content .plan-header, .rts-pricing-plan.style3 .single-plan__content .plan-header {
text-align: center;
}
.rts-pricing-plan.style2 .single-plan__content .plan-header .offer-text, .rts-pricing-plan.style3 .single-plan__content .plan-header .offer-text {
font-size: 14px;
}
.rts-pricing-plan.style2 .single-plan__content .plan-header .plan-icon, .rts-pricing-plan.style3 .single-plan__content .plan-header .plan-icon {
margin-bottom: 20px;
}
.rts-pricing-plan.style2 .single-plan__content .plan-header .plan-icon img, .rts-pricing-plan.style3 .single-plan__content .plan-header .plan-icon img {
height: 30px;
}
.rts-pricing-plan.style2 .single-plan__content .plan-header .card-plan__price, .rts-pricing-plan.style3 .single-plan__content .plan-header .card-plan__price {
font-size: 40px;
font-weight: 700;
margin-bottom: 30px;
margin-top: 25px;
color: var(--color-secondary);
}
.rts-pricing-plan.style2 .single-plan__content .plan-header .card-plan__price sup, .rts-pricing-plan.style3 .single-plan__content .plan-header .card-plan__price sup {
font-size: 16px;
font-weight: 500;
top: -1.5em;
}
.rts-pricing-plan.style2 .single-plan__content .plan-header .card-plan__price sub, .rts-pricing-plan.style3 .single-plan__content .plan-header .card-plan__price sub {
font-size: 16px;
font-weight: 500;
bottom: 0;
}
.rts-pricing-plan.style2 .single-plan__content .plan-actions, .rts-pricing-plan.style3 .single-plan__content .plan-actions {
margin-top: 0;
margin-bottom: 15px;
}
.rts-pricing-plan.style2 .single-plan__content .offer-text, .rts-pricing-plan.style3 .single-plan__content .offer-text {
margin-bottom: 5px;
}
.rts-pricing-plan.style2 .single-plan__content .buy__plan.btn__two, .rts-pricing-plan.style3 .single-plan__content .buy__plan.btn__two {
max-width: 100%;
padding: 15px 18px;
line-height: 100%;
transition: var(--transition);
font-size: 16px;
}
.rts-pricing-plan.style2 .single-plan__content .plan-feature__list, .rts-pricing-plan.style3 .single-plan__content .plan-feature__list {
border: none;
padding-top: 0;
margin-top: 0;
overflow: hidden;
}
.rts-pricing-plan.style2 .single-plan__content .plan-more-feature__list, .rts-pricing-plan.style3 .single-plan__content .plan-more-feature__list {
border: none;
padding-top: 0;
margin-top: 0;
height: 0px;
overflow: hidden;
transition: height var(--transition);
transform-origin: top center;
display: none;
}
.rts-pricing-plan.style2 .single-plan__content .plan-more-feature__list.expanded, .rts-pricing-plan.style3 .single-plan__content .plan-more-feature__list.expanded {
height: 100%;
transition: height var(--transition);
display: block;
margin-top: 20px;
}
.rts-pricing-plan.style2 .single-plan__content .card-plan__feature--list-trigered, .rts-pricing-plan.style3 .single-plan__content .card-plan__feature--list-trigered {
text-align: center;
font-size: 16px;
font-weight: 600;
cursor: pointer;
color: var(--btc);
position: absolute;
left: 50%;
transform: translateX(-50%);
padding: 10px 0;
width: -moz-max-content;
width: max-content;
margin-top: 20px;
}
.rts-pricing-plan.style2 .single-plan__content .card-plan__feature--list-trigered.active, .rts-pricing-plan.style2 .single-plan__content .card-plan__feature--list-trigered:hover, .rts-pricing-plan.style3 .single-plan__content .card-plan__feature--list-trigered.active, .rts-pricing-plan.style3 .single-plan__content .card-plan__feature--list-trigered:hover {
color: var(--color-third);
}
.rts-pricing-plan.style2 .single-plan:hover .single-plan__content .card-plan__price, .rts-pricing-plan.style3 .single-plan:hover .single-plan__content .card-plan__price {
color: var(--color-white);
}
.rts-pricing-plan.style2 .single-plan:hover .single-plan__content .card-plan__feature--list-trigered, .rts-pricing-plan.style3 .single-plan:hover .single-plan__content .card-plan__feature--list-trigered {
color: var(--color-third);
}
.rts-pricing-plan.style2 .single-plan:active .card-plan__feature--list-trigered, .rts-pricing-plan.style3 .single-plan:active .card-plan__feature--list-trigered {
color: var(--color-third);
}
.rts-pricing-plan.style3 .single-plan {
transition: var(--transition);
border-radius: 10px;
border: 1px solid transparent;
position: relative;
}
.rts-pricing-plan.style3 .single-plan__content .plan-header .card-plan__price {
font-size: 32px;
}
.rts-pricing-plan.style3 .single-plan__content .plan-header .plan-icon-container {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
}
.rts-pricing-plan.style3 .single-plan__content .plan-header .plan-title {
font-size: 20px;
font-weight: var(--bold);
color: var(--color-secondary);
margin-bottom: 15px;
display: inline-block;
transition: all 0.3s ease;
line-height: 1;
}
.rts-pricing-plan.style3 .single-plan__content .plan-header .subtitle {
font-size: 15px;
font-family: var(--font-secondary);
}
@media screen and (max-width: 576px) {
.rts-pricing-plan.style3 .single-plan__content .plan-header .subtitle {
line-height: 1.4;
}
}
.rts-pricing-plan.style3 .single-plan__content .plan-header .card-plan__offer {
display: flex;
gap: 10px;
margin-bottom: 20px;
align-items: center;
justify-content: center;
}
.rts-pricing-plan.style3 .single-plan__content .plan-header .card-plan__offer .past-price {
font-size: 16px;
font-weight: 600;
text-decoration: line-through;
}
.rts-pricing-plan.style3 .single-plan__content .plan-header .card-plan__offer .offer-given {
padding: 8px 15px;
border-radius: 30px;
background: #E7F1FF;
font-size: 14px;
font-weight: var(--semibold);
line-height: 100%;
transition: var(--transition);
}
.rts-pricing-plan.style3 .single-plan__content .plan-header .buy__plan.btn__two {
color: var(--color-white);
font-weight: var(--semibold);
display: block;
text-align: center;
background: var(--color-primary);
padding: 12px 0;
border-radius: 4px;
max-width: 260px;
position: relative;
transition: var(--transition);
left: 50%;
transform: translateX(-50%);
}
.rts-pricing-plan.style3 .single-plan__content .plan-header .buy__plan.btn__two.active, .rts-pricing-plan.style3 .single-plan__content .plan-header .buy__plan.btn__two:hover {
background: var(--color-third) !important;
}
.rts-pricing-plan.style3 .single-plan:hover, .rts-pricing-plan.style3 .single-plan.active {
border-color: var(--color-primary);
}
.rts-pricing-plan.style3 .single-plan:hover .single-plan__content .plan-icon svg path, .rts-pricing-plan.style3 .single-plan.active .single-plan__content .plan-icon svg path {
fill: url(#paint0_linear_195_837);
}
.rts-pricing-plan.style3 .single-plan:hover .single-plan__content .card-plan__price, .rts-pricing-plan.style3 .single-plan.active .single-plan__content .card-plan__price {
color: var(--color-secondary);
}
.rts-pricing-plan.style3 .single-plan:hover .bg-overlay, .rts-pricing-plan.style3 .single-plan.active .bg-overlay {
opacity: 1;
}
.rts-pricing-plan.style3 .single-plan:hover::before, .rts-pricing-plan.style3 .single-plan.active::before {
opacity: 1;
}
.rts-pricing-plan.style1 .single-plan__content .plan-feature {
padding-bottom: 0 !important;
}
.rts-pricing-plan.style1 .single-plan__content .plan-feature .plan-more-feature__list {
border: none;
padding-top: 0;
margin-top: 0;
height: 0px;
overflow: hidden;
transition: height var(--transition);
transform-origin: top center;
display: none;
}
.rts-pricing-plan.style1 .single-plan__content .plan-feature .plan-more-feature__list.expanded {
height: 100%;
transition: height var(--transition);
display: block;
}
.rts-pricing-plan.style1 .single-plan__content .plan-feature .card-plan__feature--list-trigered {
text-align: center;
font-size: 16px;
font-weight: 600;
cursor: pointer;
position: absolute;
left: 50%;
transform: translateX(-50%);
width: -moz-max-content;
width: max-content;
margin-top: 10px;
}
.rts-pricing-plan.style1 .single-plan__content .plan-feature .card-plan__feature--list-trigered.active, .rts-pricing-plan.style1 .single-plan__content .plan-feature .card-plan__feature--list-trigered:hover {
color: var(--color-third);
}
.rts-domain-pricing-plan {
position: relative;
}
.rts-domain-pricing-plan .tab_content_row {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}
.rts-domain-pricing-plan__tab {
display: flex;
gap: 40px;
align-items: center;
position: relative;
z-index: 1;
margin-bottom: 50px;
justify-content: center;
}
.rts-domain-pricing-plan__tab .tab__button__item {
display: flex;
gap: 5px;
flex-wrap: wrap;
}
.rts-domain-pricing-plan__tab .tab__button__item button {
width: -moz-max-content;
width: max-content;
border-radius: 30px;
font-size: 16px;
padding: 9px 20px;
color: var(--color-secondary);
background: transparent;
line-height: normal;
}
.rts-domain-pricing-plan__tab .tab__button__item button.active {
background: var(--color-primary);
color: var(--color-white);
}
.rts-domain-pricing-plan__tab .discount {
position: relative;
}
@media screen and (max-width: 576px) {
.rts-domain-pricing-plan__tab .discount {
display: none;
}
}
.rts-domain-pricing-plan__tab .discount span.line {
position: absolute;
top: -28px;
right: 70%;
}
@media screen and (max-width: 768px) {
.rts-domain-pricing-plan__tab .discount span.line {
position: relative;
top: -15px;
left: -50px;
z-index: -1;
}
}
.rts-domain-pricing-plan__tab .discount p {
margin: 0;
}
.rts-domain-pricing-plan .tab__content {
display: none;
overflow-x: auto;
}
.rts-domain-pricing-plan .tab__content.open {
display: block;
}
.rts-domain-pricing-plan.style1 table, .rts-domain-pricing-plan.style2 table, .rts-domain-pricing-plan.style3 table {
overflow-y: scroll;
}
.rts-domain-pricing-plan.style1 table .single-plan__header, .rts-domain-pricing-plan.style2 table .single-plan__header, .rts-domain-pricing-plan.style3 table .single-plan__header {
background: var(--color-primary);
}
.rts-domain-pricing-plan.style1 table th, .rts-domain-pricing-plan.style2 table th, .rts-domain-pricing-plan.style3 table th {
padding: 24px 40px 20px;
border: none;
color: var(--color-white);
font-size: 16px;
font-weight: 600;
line-height: 26px;
}
.rts-domain-pricing-plan.style1 table tbody, .rts-domain-pricing-plan.style2 table tbody, .rts-domain-pricing-plan.style3 table tbody {
border-width: 0 1px 1px;
border-color: #D4DCFF;
border-style: solid;
}
.rts-domain-pricing-plan.style1 table tbody tr, .rts-domain-pricing-plan.style2 table tbody tr, .rts-domain-pricing-plan.style3 table tbody tr {
border-bottom: 1px solid #D4DCFF;
font-weight: 500;
}
.rts-domain-pricing-plan.style1 table td, .rts-domain-pricing-plan.style2 table td, .rts-domain-pricing-plan.style3 table td {
border: none;
padding: 24px 40px 20px;
}
.rts-domain-pricing-plan.style1 th {
width: 28%;
}
.rts-domain-pricing-plan.style2 .tab__content table tr td, .rts-domain-pricing-plan.style3 .tab__content table tr td {
min-width: 200px;
max-width: 100%;
}
.rts-domain-pricing-plan.style2 .tab__content table tr td a.btn__two, .rts-domain-pricing-plan.style3 .tab__content table tr td a.btn__two {
padding: 8px 20px;
border-radius: 4px;
border: 1px solid #D4DCFF;
background: var(--color-white);
transition: var(--transition);
min-width: 105px;
font-weight: 600;
font-family: var(--font-secondary);
}
.rts-domain-pricing-plan.style2 .tab__content table tr td a.btn__two:hover, .rts-domain-pricing-plan.style3 .tab__content table tr td a.btn__two:hover {
background: var(--color-primary);
color: var(--color-white);
}
.rts-domain-pricing-plan.style3 .additional-content {
width: 100%;
min-width: 1220px;
}
.rts-domain-pricing-plan.style3 .table {
min-width: 1220px;
}
.rts-domain-pricing-plan.style3 table {
margin: 0;
}
.rts-domain-pricing-plan.style3 table .text i, .rts-domain-pricing-plan.style3 table .text svg {
margin-right: 5px;
}
.rts-domain-pricing-plan.style3 table .text svg {
width: 16px;
height: 16px;
}
.rts-domain-pricing-plan.style3 .plan-extra {
padding: 25px 0;
background: #F6F6F6;
border-left: 1px solid var(--light-border);
border-right: 1px solid var(--light-border);
}
.rts-domain-pricing-plan.style3 .plan-extra p {
margin-bottom: 0;
color: var(--color-secondary);
font-weight: 600;
}
.rts-domain-pricing-table {
position: relative;
overflow-x: auto;
}
.rts-domain-pricing-table.style1 table .single-plan__header {
background: var(--color-primary);
}
.rts-domain-pricing-table.style1 table th {
border: none;
padding: 20px 40px;
color: var(--color-white);
font-size: 16px;
font-weight: 600;
text-align: center;
vertical-align: middle;
}
.rts-domain-pricing-table.style1 table th:nth-of-type(1) {
text-align: left;
}
.rts-domain-pricing-table.style1 table tbody {
border-width: 0 1px 1px;
border-color: #D4DCFF;
border-style: solid;
}
.rts-domain-pricing-table.style1 table tbody tr {
border-bottom: 1px solid #D4DCFF;
font-weight: 500;
}
.rts-domain-pricing-table.style1 table td {
border: 1px solid var(--light-border);
padding: 17px 40px;
vertical-align: middle;
}
.rts-domain-pricing-table.style1 table td .price {
font-weight: 600;
color: var(--color-secondary);
font-size: 20px;
font-family: var(--font-secondary);
margin-bottom: 0;
}
.rts-domain-pricing-table.style1 table td .renew {
margin-bottom: 0;
color: var(--btc);
font-family: var(--font-secondary);
font-size: 15px;
}
.rts-plan {
background: var(--plan-bg);
}
@media (max-width: 450px) {
.rts-plan .rts-section__title {
font-size: 24px;
}
}
@media (max-width: 991px) {
.rts-plan__table {
overflow-x: scroll;
}
}
.rts-plan__table .table-bordered > :not(caption) > * {
border: none;
}
.rts-plan__table table {
margin: 0;
white-space: nowrap;
}
.rts-plan__table table th {
padding: 0px 30px;
}
.rts-plan__table table thead .package__left {
width: 450px;
max-width: 450px;
}
.rts-plan__table table thead .package__left:first-child {
border-left: 0;
border-top: 0;
}
.rts-plan__table table thead th {
text-transform: capitalize;
border-style: none;
}
.rts-plan__table table thead .package__item {
width: 290px;
max-width: 290px;
padding: 30px 30px;
border: 1px solid var(--rt-border-color);
}
.rts-plan__table table thead .package__item__info {
margin: 0 auto;
}
.rts-plan__table table thead .package__item__info form {
display: flex;
flex-direction: column;
}
.rts-plan__table table thead .package__item__info .price-info {
min-width: 180px;
width: 180px;
border-radius: 50px;
margin-bottom: 15px;
height: 35px;
text-align: center !important;
background: #fff;
border: 1px solid #e8e8e8;
align-items: center;
display: flex;
justify-content: center;
}
.rts-plan__table table thead .package__item__info .price-info span {
margin-bottom: 0 !important;
}
.rts-plan__table table thead .package__item__info .package__type {
font-weight: var(--bold);
font-size: 24px;
color: var(--color-secondary);
margin-bottom: 15px;
display: block;
}
.rts-plan__table table thead .package__item__info span {
font-family: var(--font-secondary);
margin-bottom: 25px;
display: inline-block;
text-transform: capitalize;
font-weight: var(--regular);
line-height: 100%;
}
.rts-plan__table table thead .package__item__info select {
border: 1px solid #4C5671;
padding: 12px;
border-radius: 50px;
margin-bottom: 10px;
width: 180px;
}
.rts-plan__table table thead .package__item__info .buy__now {
font-weight: var(--bold);
color: var(--body-bg);
display: block;
max-width: 100%;
width: 180px;
padding: 13px 0;
}
.rts-plan__table table thead .package__item__info .buy__now:hover {
color: var(--color-secondary);
}
.rts-plan__table table thead .package__item__info .nice-select.price__select {
min-width: 180px;
width: 180px;
border-radius: 50px;
margin-bottom: 15px;
height: 35px;
text-align: center !important;
}
.rts-plan__table table thead .package__item__info .nice-select.price__select span.current {
position: relative;
top: -5px;
text-transform: lowercase;
}
.rts-plan__table table thead .package__item__info .nice-select.price__select::after {
right: 25%;
}
.rts-plan__table table thead .package__item__info .nice-select.price__select ul.list {
width: 100%;
margin-left: 0;
}
.rts-plan__table table td.package__left {
padding: 10px 30px;
border: 1px solid var(--rt-border-color);
}
.rts-plan__table table td.feature__item {
text-align: center;
border: 1px solid var(--rt-border-color);
padding: 10px 30px;
}
.rts-plan__table table td.feature__item i {
color: #FF7D7D;
}
.vps-hosting .rts-pricing-plan {
background: #F4F9FF !important;
border-radius: 0;
margin: 0;
}
.wordpress-hosting .rts-pricing-plan,
.template-resell .rts-pricing-plan {
background: #F4F9FF;
border-radius: 0;
margin: 0;
}
.view-plan-btn {
text-align: center;
margin-top: 60px;
}
.view-plan-btn .btn__two {
border: 1px solid var(--light-border);
}
.rts-pricing-plan.table-pricing {
background: #fff;
margin: 0;
}
.rts-pricing-plan.table-pricing .tab__content {
overflow-y: scroll;
}
.rts-pricing-plan .pricing__tab .tab__button {
border-radius: 6px;
border: 1px solid var(--color-primary);
}
.rts-pricing-plan .pricing__tab .tab__button .tab__btn {
color: var(--color-primary);
font-weight: 600;
}
.rts-pricing-plan .pricing__tab .tab__button .tab__btn.active {
color: var(--color-white);
}
.rts-pricing-plan table.table .heading__bg {
background: var(--color-primary);
color: var(--color-white);
vertical-align: middle;
}
.rts-pricing-plan table.table .heading__bg tr .cell {
padding: 24px 30px;
}
.rts-pricing-plan table.table .table__content tr:nth-child(2n+1) {
background: #F6F6F6;
}
.rts-pricing-plan table.table .table__content tr {
vertical-align: middle;
transition: var(--transition);
}
.rts-pricing-plan table.table .table__content tr .package,
.rts-pricing-plan table.table .table__content tr .process,
.rts-pricing-plan table.table .table__content tr .ram,
.rts-pricing-plan table.table .table__content tr .storage,
.rts-pricing-plan table.table .table__content tr .price {
padding: 24px 30px;
min-width: 200px;
max-width: 100%;
line-height: 1;
}
.rts-pricing-plan table.table .table__content tr .process {
min-width: 300px;
}
.rts-pricing-plan table.table .table__content tr .btn__two {
padding: 10px 20px;
border-radius: 4px;
border: 1px solid #D4DCFF;
background: var(--color-white);
transition: var(--transition);
min-width: 105px;
}
.rts-pricing-plan table.table .table__content tr .btn__two:hover {
background: var(--color-primary);
color: var(--color-white);
}
.rts-pricing-plan.wordpress .rts-section {
margin: 0 auto 50px;
}
.single-pricing-solari-area {
padding: 40px;
border-radius: 10px;
box-shadow: 0px 4px 34px rgba(0, 0, 0, 0.1);
position: relative;
background: #fff;
transition: 0.3s;
}
@media only screen and (max-width: 575px) {
.single-pricing-solari-area {
padding: 20px;
}
}
.single-pricing-solari-area::after {
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: -1;
margin: -1px;
border-radius: inherit;
background: linear-gradient(to bottom, #4AAB3D, rgba(74, 171, 61, 0));
transition: 0.3s;
opacity: 0;
}
.single-pricing-solari-area .pre-title {
font-weight: 600;
font-size: 18px;
line-height: 28px;
color: #4AAB3D;
}
.single-pricing-solari-area .title-price {
font-weight: 700;
font-size: 34px;
color: #1F1F25;
line-height: 44px;
margin-top: 14px;
}
.single-pricing-solari-area .title-price span {
font-weight: 600;
font-size: 16px;
line-height: 44px;
}
.single-pricing-solari-area .pricing-oppertunity-wrapper {
margin-bottom: 30px;
}
.single-pricing-solari-area .pricing-oppertunity-wrapper .single {
position: relative;
padding-left: 20px;
margin-bottom: 5px;
}
.single-pricing-solari-area .pricing-oppertunity-wrapper .single::after {
position: absolute;
left: 0;
height: 8px;
width: 8px;
border-radius: 50%;
background: var(--color-primary);
content: "";
top: 50%;
transform: translateY(-50%);
}
.single-pricing-solari-area a.rts-btn {
text-align: center;
margin: auto;
display: flex;
align-items: center;
justify-content: center;
max-width: -moz-max-content;
max-width: max-content;
background: transparent;
color: var(--color-primary);
}
.single-pricing-solari-area a.rts-btn::before {
background: transparent;
border: 1px solid var(--color-primary);
}
.single-pricing-solari-area:hover {
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03);
}
.single-pricing-solari-area:hover::after {
opacity: 1;
}
.single-team-solari-h3 {
position: relative;
margin-bottom: 24px;
overflow: hidden;
display: block;
}
.single-team-solari-h3:last-child {
margin-bottom: 0;
}
.single-team-solari-h3 .name-social-area-wrapper {
position: absolute;
bottom: 0px;
left: 20px;
display: flex;
align-items: center;
justify-content: space-between;
width: 80%;
opacity: 0;
bottom: -50px;
transition: 0.3s;
}
.single-team-solari-h3 .name-social-area-wrapper .name-area p {
margin-bottom: 0;
background: var(--color-primary);
padding: 2px 8px;
color: #fff;
border-radius: 5px 5px 0 0;
max-width: -moz-max-content;
max-width: max-content;
}
.single-team-solari-h3 .name-social-area-wrapper .name-area .title {
border-radius: 0 0 5px 5px;
background: #fff;
padding: 5px 6px;
font-weight: 700;
font-size: 18px;
line-height: 24px;
}
.single-team-solari-h3 .name-social-area-wrapper .share-icon i {
width: 40px;
height: 40px;
background: var(--color-primary);
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
color: #fff;
cursor: pointer;
}
.single-team-solari-h3:hover .name-social-area-wrapper {
opacity: 1;
bottom: 0;
}
.single-project-solari-h3 {
position: relative;
margin-bottom: 24px;
overflow: hidden;
display: block;
}
.single-project-solari-h3 .thumbnail img {
width: 100%;
border-radius: 10px;
}
.single-project-solari-h3:last-child {
margin-bottom: 0;
}
.single-project-solari-h3 .name-social-area-wrapper {
position: absolute;
bottom: 0px;
left: 20px;
display: flex;
align-items: center;
justify-content: space-between;
width: 80%;
opacity: 0;
bottom: -50px;
transition: 0.3s;
}
.single-project-solari-h3 .name-social-area-wrapper .name-area p {
margin-bottom: 0;
background: var(--color-primary);
padding: 2px 8px;
color: #fff;
border-radius: 5px 5px 0 0;
max-width: -moz-max-content;
max-width: max-content;
}
.single-project-solari-h3 .name-social-area-wrapper .name-area .title {
border-radius: 0 0 5px 5px;
background: #fff;
padding: 5px 6px;
font-weight: 700;
font-size: 18px;
line-height: 24px;
}
.single-project-solari-h3 .name-social-area-wrapper .share-icon i {
width: 40px;
height: 40px;
background: var(--color-primary);
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
color: #fff;
cursor: pointer;
}
.single-project-solari-h3:hover .name-social-area-wrapper {
opacity: 1;
bottom: 0;
}
.mt-dec--200 {
margin-top: -330px;
}
.solari-title-area-three.text-left span.pre-title {
margin: 0;
margin-bottom: 16px;
}
.pt--210 {
padding-top: 210px;
} .rs-pie-content {
text-align: center;
}
.rs-pie-content .rspie-title-center {
display: inline-block;
position: relative;
text-align: center;
}
.rs-pie-content .rspie-value {
display: block;
position: absolute;
font-size: 14px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.rs-pie-content .number {
text-align: center;
display: block;
padding: 10px 0 0;
font-size: 20px;
}
.rs-skill-bar .skillbar {
background: #eeeeee;
display: inline-block;
height: 6px;
position: relative;
width: 100%;
}
.rs-skill-bar .skillbar .skillbar-bar {
background: var(--color-primary);
height: 8px;
width: 0;
margin-bottom: 0;
}
.rs-skill-bar .skillbar .skillbar-title,
.rs-skill-bar .skillbar .skill-bar-percent {
position: absolute;
}
.rs-skill-bar .skillbar .skillbar-title {
color: #212121;
font-size: 16px;
font-weight: 600;
}
.rs-skill-bar .skillbar .skill-bar-percent {
font-size: 16px;
font-weight: 700;
color: var(--color-secondary);
}
.rs-skill-bar.animation .skillbar .skillbar-bar, .rs-skill-bar.striped .skillbar .skillbar-bar {
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-size: 1rem 1rem;
}
.rs-skill-bar.animation .skillbar .skillbar-bar {
animation: rs-progress-pie-stripes 1s linear infinite;
}
.rs-skill-bar.style1 .skillbar .skillbar-title {
top: -20px;
}
.rs-skill-bar.style1 .skillbar .skill-bar-percent {
font-size: 18px;
right: 0;
top: -20px;
}
.rs-skill-bar.style2 .skillbar .skillbar-title {
left: 0;
padding: 2px 20px 0;
top: 0;
width: 160px;
background: #83b614;
}
.rs-skill-bar.style2 .skillbar .skill-bar-percent {
right: 10px;
top: 0;
}
.rt-service-slider-wrapper .has-slider-dots {
margin-bottom: 50px;
}
.rt-service-slider-wrapper .swiper-button {
color: var(--color-secondary);
top: -20%;
transform: translateY(20%);
height: 40px;
width: 40px;
border-radius: 10px;
border: 1px solid #E9EDFF;
display: flex;
justify-content: center;
align-items: center;
}
.rt-service-slider-wrapper .swiper-button.swiper-button-next {
right: 0;
}
.rt-service-slider-wrapper .swiper-button.swiper-button-prev {
right: 60px;
left: auto;
}
.rt-service-slider-wrapper .swiper-button:hover {
background: var(--color-primary);
border-color: var(--color-primary);
color: var(--body-bg);
}
.service-grid {
display: flex;
justify-content: space-between;
gap: 30px;
flex-wrap: wrap;
position: relative;
z-index: 2;
}
.service-grid .serive-info {
z-index: 5;
position: relative;
}
.service-grid .service-btn {
display: flex;
align-items: center;
justify-content: center;
}
.service-grid .service-icon {
display: inline-flex;
justify-content: flex-start;
align-items: center;
overflow: hidden;
transition: var(--transition);
}
.service-grid .service-icon img {
height: -moz-fit-content;
height: fit-content;
}
.service-grid .overlay-img-hover {
position: absolute;
z-index: 1;
}
.service-grid .title {
display: block;
}
.service-grid.style_one .thumbnail-serice-6-left .rts-img-hover {
position: absolute;
z-index: -1;
height: 100%;
}
.service-grid.style_one .thumbnail-serice-6-left .rts-img-hover img {
opacity: 0;
transition: 0.5s;
min-width: -moz-max-content;
min-width: max-content;
height: 100%;
}
.service-grid.style_one .thumbnail-serice-6-left .rts-img-hover.active {
z-index: 5;
}
.service-grid.style_one .thumbnail-serice-6-left .rts-img-hover.active img {
display: block;
opacity: 1;
transform: scale(1) rotateY(-180deg);
min-width: 100%;
}
@media only screen and (max-width: 1199px) {
.service-grid.style_one .thumbnail-serice-6-left .rts-img-hover.active img {
max-width: 100%;
}
}
.service-grid.style_one .thumbnail-serice-6-left {
position: relative;
height: 480px;
}
.service-grid.style_one .thumbnail-serice-6-left img {
max-width: -moz-max-content;
max-width: max-content;
}
.service-grid.style_one .service-list-one-wrapper .single-service {
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1px solid #E3E3E3;
padding-bottom: 25px;
padding-top: 25px;
}
.service-grid.style_one .service-list-one-wrapper .single-service:first-child {
margin-top: 0;
padding-top: 0;
}
.service-grid.style_one .service-list-one-wrapper .single-service .left-one {
flex-basis: 27%;
display: flex;
align-items: center;
gap: 30px;
}
.service-grid.style_one .service-list-one-wrapper .single-service .left-one span {
color: #30373E;
font-size: 24px;
font-style: normal;
font-weight: 700;
transition: 0.3s;
line-height: 34px;
}
.service-grid.style_one .service-list-one-wrapper .single-service .left-one .title {
color: var(--color-secondary);
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: 34px;
margin: 0;
transition: 0.3s;
}
.service-grid.style_one .service-list-one-wrapper .single-service .center-area {
flex-basis: 30%;
}
.service-grid.style_one .service-list-one-wrapper .single-service .rts-read-more-circle-btn {
display: flex;
align-items: center;
gap: 20px;
color: #30373E;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 26px;
transition: 0.3s;
}
.service-grid.style_one .service-list-one-wrapper .single-service .rts-read-more-circle-btn i {
display: flex;
align-items: center;
justify-content: center;
width: 60px;
height: 60px;
border-radius: 50%;
border: 1px solid #30373E;
transition: 0.3s;
}
.service-grid.style_one .service-list-one-wrapper .single-service .rts-read-more-circle-btn.under-line p {
text-decoration: underline;
}
.service-grid.style_one .service-list-one-wrapper .single-service .rts-read-more-circle-btn:hover i {
transform: scale(1.2);
background: var(--color-primary);
color: #fff;
border: transparent;
}
.service-grid.style_two .single-service {
display: flex;
align-items: center;
justify-content: space-between;
height: 200px;
background-repeat: no-repeat;
padding: 0 40px;
border-bottom: 1px solid #E3E3E3;
transition: 0.4s;
position: relative;
z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.service-grid.style_two .single-service {
flex-direction: column;
align-items: flex-start;
gap: 30px;
height: auto;
padding: 30px 40px;
}
}
@media only screen and (max-width: 767px) {
.service-grid.style_two .single-service {
flex-direction: column;
align-items: flex-start;
gap: 30px;
height: auto;
padding: 30px 10px;
}
}
.service-grid.style_two .single-service:first-child {
border-top: 1px solid #E3E3E3;
}
.service-grid.style_two .single-service .overlay-bg {
position: absolute;
content: "";
left: 0;
bottom: 0;
right: 0;
min-width: 100%;
max-height: 0%;
z-index: -1;
height: 200px;
background-image: url(//inext.ph/wp-content/plugins/rt-elements/assets/images/service/08.jpg);
background-size: cover;
transition: 0.3s;
width: 100%;
height: 100%;
}
.service-grid.style_two .single-service .left {
display: flex;
align-items: center;
gap: 60px;
flex-basis: 35%;
}
@media only screen and (max-width: 1199px) {
.service-grid.style_two .single-service .left {
gap: 25px;
}
}
@media only screen and (max-width: 767px) {
.service-grid.style_two .single-service .left {
flex-direction: column;
align-items: flex-start;
}
}
.service-grid.style_two .single-service .mid-center {
flex-basis: 40%;
}
.service-grid.style_two .single-service .number {
color: #30373E;
font-size: 48px;
font-style: italic;
font-weight: 600;
line-height: 46px;
text-transform: uppercase;
transition: 0.3s;
}
@media only screen and (max-width: 767px) {
.service-grid.style_two .single-service .number {
font-size: 24px;
line-height: 24px;
}
}
.service-grid.style_two .single-service .title {
color: var(--color-secondary);
font-size: 34px;
font-style: normal;
font-weight: 700;
line-height: 44px;
margin-bottom: 0;
text-transform: capitalize;
transition: 0.3s;
}
@media only screen and (max-width: 767px) {
.service-grid.style_two .single-service .title {
font-size: 24px;
line-height: 30px;
}
}
.service-grid.style_two .single-service .disc {
color: #7D7D7D;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 26px;
letter-spacing: -0.32px;
margin-bottom: 0;
transition: 0.3s;
}
.service-grid.style_two .single-service .service-btn .icon i {
height: 60px;
width: 60px;
border-radius: 50%;
border: 1px solid currentColor;
color: #30373E;
display: flex;
align-items: center;
justify-content: center;
transition: 0.3s;
}
.service-grid.style_two .single-service .service-btn .icon:hover i {
border: transparent;
background: var(--color-primary);
color: #fff;
transform: scale(1.2);
}
.service-grid.style_two .single-service:hover .overlay-bg {
min-width: 100%;
max-height: 100%;
}
.service-grid.style_two .single-service:hover .number {
color: #fff;
}
.service-grid.style_two .single-service:hover .title {
color: #fff;
}
.service-grid.style_two .single-service:hover .disc {
color: #fff;
}
.service-grid.style_two .single-service:hover .service-btn i {
border-color: currentColor;
color: #fff;
}
.service-grid.style_two .rts-read-more-circle-btn {
display: flex;
align-items: center;
gap: 20px;
color: #30373E;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 26px;
transition: 0.3s;
}
.service-grid.style_two .rts-read-more-circle-btn i {
display: flex;
align-items: center;
justify-content: center;
width: 60px;
height: 60px;
border-radius: 50%;
border: 1px solid #30373E;
transition: 0.3s;
}
.service-grid.style_two .rts-read-more-circle-btn.under-line p {
text-decoration: underline;
}
.service-grid.style_two .rts-read-more-circle-btn:hover i {
transform: scale(1.2);
background: var(--color-primary);
color: #fff;
border: transparent;
}
.service-grid.style_three {
display: flex;
}
.service-grid.style_three .single-service {
position: relative;
padding: 40px;
}
.service-grid.style_three .single-service .title {
font-size: 22px;
font-weight: var(--semibold);
display: block;
margin-bottom: 20px;
text-transform: capitalize;
transition: unset;
color: var(--color-secondary);
}
.service-grid.style_three .single-service .disc {
font-family: var(--font-secondary);
font-size: var(--size-small);
line-height: 24px;
margin-bottom: 20px;
}
.service-grid.style_three .single-service .service-icon {
border-radius: 10px;
margin-bottom: 20px;
}
.service-grid.style_three .single-service .service-icon img, .service-grid.style_three .single-service .service-icon svg {
width: 60px;
}
.service-grid.style_three .single-service .service-btn {
color: var(--color-secondary);
font-weight: var(--semibold);
transition: var(--transition);
display: inline-flex;
}
.service-grid.style_three .single-service::before {
position: absolute;
content: "";
border-radius: 10px;
transition: var(--transition);
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
overflow: hidden;
}
.service-grid.style_three .single-service::after {
position: absolute;
content: "";
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 10px;
z-index: -2;
opacity: 0;
transition: var(--transition);
overflow: hidden;
}
.service-grid.style_three .single-service:hover::before {
opacity: 0;
}
.service-grid.style_three .single-service:hover::after {
opacity: 1;
}
.service-grid.style_four, .service-grid.style_five {
display: flex;
}
.service-grid.style_four .top-dot-bar, .service-grid.style_five .top-dot-bar {
width: 100%;
height: 2px;
border-radius: 6px;
background: #D0E0FF;
margin-bottom: 29px;
}
@media screen and (max-width: 768px) {
.service-grid.style_four .top-dot-bar, .service-grid.style_five .top-dot-bar {
display: none;
}
}
.service-grid.style_four .single-service, .service-grid.style_five .single-service {
position: relative;
gap: 30px;
display: flex;
border-color: transparent;
padding: 46px 40px 36px 40px;
}
.service-grid.style_four .single-service::before, .service-grid.style_five .single-service::before {
position: absolute;
content: "";
background: linear-gradient(180deg, #D8EAFF 0%, #F6F6F6 100%);
border-bottom: 5px solid #CCE4FF;
border-radius: 10px;
transition: var(--transition);
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
overflow: hidden;
}
.service-grid.style_four .single-service::after, .service-grid.style_five .single-service::after {
position: absolute;
content: "";
background: linear-gradient(180deg, #187EFF 0%, #0445C5 100%, #044DDF 100%);
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 10px;
z-index: -2;
opacity: 0;
transition: var(--transition);
border-bottom: 5px solid #013396;
overflow: hidden;
}
.service-grid.style_four .single-service:hover::before, .service-grid.style_five .single-service:hover::before {
opacity: 0;
}
.service-grid.style_four .single-service:hover::after, .service-grid.style_five .single-service:hover::after {
opacity: 1;
}
.service-grid.style_four .single-service:hover .title, .service-grid.style_four .single-service:hover .disc, .service-grid.style_four .single-service:hover .service-btn, .service-grid.style_five .single-service:hover .title, .service-grid.style_five .single-service:hover .disc, .service-grid.style_five .single-service:hover .service-btn {
color: var(--color-white);
}
.service-grid.style_four .single-service .title, .service-grid.style_five .single-service .title {
font-size: 22px;
font-weight: 700;
line-height: 32px;
display: block;
margin-bottom: 15px;
text-transform: capitalize;
transition: unset;
color: var(--color-secondary);
}
.service-grid.style_four .single-service .service-icon, .service-grid.style_five .single-service .service-icon {
margin-bottom: 30px;
}
.service-grid.style_four .single-service .service-icon img, .service-grid.style_four .single-service .service-icon svg, .service-grid.style_five .single-service .service-icon img, .service-grid.style_five .single-service .service-icon svg {
width: 50px;
}
.service-grid.style_four .single-service .disc, .service-grid.style_five .single-service .disc {
font-size: var(--size-default);
line-height: var(--lh-default);
font-family: var(--font-primary);
font-weight: var(--regular);
margin-bottom: 15px;
}
.service-grid.style_four .single-service .service-btn, .service-grid.style_five .single-service .service-btn {
display: inline-flex;
background: transparent;
}
.service-grid.style_four .single-service .service-btn i, .service-grid.style_five .single-service .service-btn i {
margin-left: 6px;
}
.service-grid.style_four .service-icon {
min-width: 50px;
}
.service-grid.style_five .single-service, .service-grid.style_six .single-service {
flex-direction: column;
align-items: center;
gap: 0;
padding: 40px 27px;
}
.service-grid.style_five .single-service .top-dot, .service-grid.style_six .single-service .top-dot {
position: absolute;
content: "";
left: 50%;
transform: translateX(-50%);
top: -57px;
width: 16px;
height: 16px;
border-radius: 50%;
background: linear-gradient(180deg, #0774FF 0%, #033AA7 100%);
transition: 0.3s;
z-index: 2;
transition: all 0.4s;
display: flex;
align-items: center;
justify-content: center;
}
.service-grid.style_five .single-service .top-dot .top-dot-inner, .service-grid.style_six .single-service .top-dot .top-dot-inner {
width: 8px;
height: 8px;
background: var(--color-white);
border-radius: 50%;
}
@media screen and (max-width: 768px) {
.service-grid.style_five .single-service .top-dot, .service-grid.style_six .single-service .top-dot {
display: none;
}
}
.service-grid.style_five .single-service::before, .service-grid.style_six .single-service::before {
background: linear-gradient(180deg, #D8EAFF 0%, #F6F6F6 100%);
border: none;
}
.service-grid.style_five .single-service::after, .service-grid.style_six .single-service::after {
position: absolute;
content: "";
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 10px;
z-index: -2;
opacity: 0;
transition: var(--transition);
background: linear-gradient(180deg, #D8EAFF 0%, #F6F6F6 100%);
border-bottom: 7px solid #CCE4FF;
}
.service-grid.style_five .single-service:hover .title, .service-grid.style_five .single-service:hover .disc, .service-grid.style_five .single-service:hover .service-btn, .service-grid.style_six .single-service:hover .title, .service-grid.style_six .single-service:hover .disc, .service-grid.style_six .single-service:hover .service-btn {
color: var(--color-secondary);
}
.service-grid.style_five .single-service .serive-info, .service-grid.style_six .single-service .serive-info {
text-align: center;
}
.service-grid.style_five .single-service .title, .service-grid.style_six .single-service .title {
font-size: 20px;
}
.service-grid.style_five .single-service .service-icon, .service-grid.style_six .single-service .service-icon {
display: inline;
margin-bottom: 20px;
}
.service-grid.style_five .single-service .service-icon img, .service-grid.style_five .single-service .service-icon svg, .service-grid.style_six .single-service .service-icon img, .service-grid.style_six .single-service .service-icon svg {
height: 60px;
width: auto;
}
.service-grid.style_six .single-service {
background: linear-gradient(180deg, #187EFF 0%, #0445C5 100%, #044DDF 100%);
padding: 30px;
padding-bottom: 40px;
border-radius: 15px;
position: relative;
z-index: 1;
overflow: hidden;
transition: all 0.5s;
}
.service-grid.style_six .single-service .title {
font-size: 20px;
line-height: 30px;
font-weight: 700;
margin-bottom: 10px;
color: var(--color-white);
}
.service-grid.style_six .single-service .disc {
color: var(--color-white);
}
.service-grid.style_six .single-service .service-icon {
margin-bottom: 20px;
}
.service-grid.style_six .single-service .service-icon img {
height: 50px;
}
.service-grid.style_six .single-service .service-btn {
justify-content: flex-start;
color: var(--color-white);
font-size: 16px;
font-weight: 600;
line-height: 26px;
text-decoration-line: underline;
margin-bottom: 0;
}
.service-grid.style_six .single-service .serive-info {
text-align: left;
}
.service-grid.style_six .single-service .animated-shape-area svg {
position: absolute;
z-index: -1;
transition: all 0.5s;
}
.service-grid.style_six .single-service .animated-shape-area svg:nth-child(1) {
top: -60px;
right: -60px;
}
.service-grid.style_six .single-service .animated-shape-area svg:nth-child(2) {
top: -40px;
right: -40px;
}
.service-grid.style_six .single-service::after {
position: absolute;
content: "";
width: 100%;
height: 100%;
border-radius: 15px;
z-index: -1;
top: 0;
left: 0;
opacity: 1;
border-bottom: 7px solid #013396;
background: unset;
}
.service-grid.style_six .single-service:hover .animated-shape-area svg {
position: absolute;
}
.service-grid.style_six .single-service:hover .animated-shape-area svg:nth-child(1) {
top: 0;
right: 0;
}
.service-grid.style_six .single-service:hover .animated-shape-area svg:nth-child(2) {
top: 0;
right: 0;
}
.service-grid.style_six .single-service:hover .number {
color: var(--color-white);
}
.service-grid.style_six .single-service:hover .title {
color: var(--color-white);
}
.service-grid.style_six .single-service:hover .disc {
color: var(--color-white);
}
.service-grid.style_six .single-service:hover .service-btn {
color: var(--color-white);
}
.service-grid.style_six .single-service:hover .service-btn i {
border-color: currentColor;
color: var(--color-white);
}
.rt-service--slider .service-inner {
border-style: solid;
border-width: 1px 1px 1px 1px;
border-color: var(--rt-border-color);
border-radius: 15px 15px 15px 15px;
padding: 50px 40px 50px 40px;
background-color: transparent;
background-image: var(--secondary-gradient);
}
.rt-service--slider .service-inner .content {
text-align: center;
}
.rt-service--slider .service-inner .content img {
filter: brightness(25%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
margin: 0px 0px 37px 0px;
}
.rt-service--slider .service-inner .content .subtitle {
font-weight: 700;
}
.rt-service--slider .service-inner .content a.rts-btn {
margin: 40px 0px 0px 0px;
}
.rt-service--slider .service-inner:hover {
background-color: transparent;
background-image: var(--primary-gradient);
}
.rt-service--slider .service-inner:hover .content {
color: var(--color-white);
}
.rt-service--slider .service-inner:hover .content img {
filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
}
.rt-service--slider .service-inner:hover .content a.rts-btn {
background: var(--color-white);
}
.slider-inner-wrapper .trasted-client {
position: absolute;
left: 60px;
top: 60px;
z-index: 2;
max-width: 300px;
}
.slider-inner-wrapper .trasted-client span {
margin-bottom: 44px;
font-weight: 600;
font-size: 30px;
line-height: 40px;
font-family: var(--font-primary);
text-transform: uppercase;
color: var(--color-secondary);
background: var(--color-white);
}
.slider-inner-wrapper .rt--slider.slider-style2 .slider-subtitle {
font-size: 18px;
font-weight: 400;
line-height: 23px;
margin-top: 11px;
margin-bottom: 10px !important;
}
.slider-inner-wrapper .rt--slider.slider-style2 .rt-slider-navigation {
margin: 0;
position: absolute;
top: 50%;
right: 1%;
left: unset;
transform: translate(-50%, -50%);
z-index: 260;
width: 60px;
}
.slider-inner-wrapper .rt--slider.slider-style2 .rt-slider-navigation .rt-slider-next,
.slider-inner-wrapper .rt--slider.slider-style2 .rt-slider-navigation .rt-slider-prev {
padding-left: 0 !important;
width: 60px;
height: 60px;
border-radius: 6px 6px 0px 0px;
background-color: var(--color-white);
box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
text-align: center;
transition: all 0.5s;
}
.slider-inner-wrapper .rt--slider.slider-style2 .rt-slider-navigation .rt-slider-next i,
.slider-inner-wrapper .rt--slider.slider-style2 .rt-slider-navigation .rt-slider-prev i {
border-radius: 6px 6px 0px 0px;
}
.slider-inner-wrapper .rt--slider.slider-style2 .rt-slider-navigation .rt-slider-next:hover i,
.slider-inner-wrapper .rt--slider.slider-style2 .rt-slider-navigation .rt-slider-prev:hover i {
background: #ffbd27;
}
.slider-inner-wrapper .rt--slider.slider-style2 .rt-slider-navigation .rt-slider-next {
border-radius: 0px 0px 6px 6px;
}
.slider-inner-wrapper .rt--slider.slider-style2 .rt-slider-navigation .rt-slider-next i {
border-radius: 0px 0px 6px 6px;
}
.slider-inner-wrapper .rt--slider.slider-style2 .single--item {
position: relative;
padding: 60px 50px 60px 60px;
}
.slider-inner-wrapper .rt--slider.slider-style2 .single--item .content--box {
display: flex;
align-items: center;
}
.slider-inner-wrapper .rt--slider.slider-style2 .single--item .content--box .banner-image {
margin-top: 125px;
margin-left: 50px;
width: 90%;
}
.slider-inner-wrapper .rt--slider.slider-style2 .single--item .content--box .slider-subtitle {
margin: 0;
}
.slider-inner-wrapper .rt--slider.slider-style2 .single--item .content--box .slider-title {
font-size: 20px;
font-weight: 600;
color: var(--color-secondary);
line-height: 29px;
}
.slider-inner-wrapper .rt--slider.slider-style2 .single--item .content--box .slider-title .slider-subtitle {
margin-left: 2px;
color: var(--color-primary);
font-weight: 600;
font-size: 20px;
line-height: 30px;
}
.slider-inner-wrapper .rt--slider.slider-style2 .single--item .content--box .slider-btn {
margin-top: 40px;
}
.slider-inner-wrapper .rt--slider.slider-style2 .single--item .description {
margin-left: 30px;
}
.slider-inner-wrapper .rt--slider.slider-style2 .single--item .description .desc {
font-weight: 400;
font-size: 36px;
line-height: 46px;
font-family: var(--font-primary);
color: var(--color-secondary);
margin-bottom: 40px;
}
.slider-inner-wrapper .rt--slider.slider-style2 .single--item .review-body .desc {
margin: 30px 0;
padding-bottom: 5px;
}
.slider-inner-wrapper .rt--slider.slider-style2 .single--item .review-body .star-rating .star {
position: relative;
color: var(--color-primary);
display: inline-block;
font-family: rt-icons;
font-size: 20px;
font-style: normal;
font-weight: 400;
height: 16px;
line-height: 27px;
text-align: center;
text-decoration: inherit;
vertical-align: top;
width: 26px;
}
.slider-inner-wrapper .rt--slider.slider-style2 .single--item .banner-image {
position: relative;
}
.slider-inner-wrapper .rt--slider.slider-style2 .single--item .banner-image .quote {
position: absolute;
left: -30px;
bottom: -25px;
}
.slider-inner-wrapper .rt--slider.slider-style2 .single--item .review-end {
display: flex;
align-items: center;
justify-content: space-between;
}
.slider-inner-wrapper .rt--slider.slider-style1 .slider-subtitle {
font-weight: 500;
font-size: 14px;
line-height: 17px;
color: #74787C;
}
.slider-inner-wrapper .rt--slider.slider-style1 .rt-slider-navigation {
margin: 0;
position: absolute;
top: 50%;
right: 1%;
left: unset;
transform: translate(-50%, -50%);
z-index: 260;
width: 60px;
}
.slider-inner-wrapper .rt--slider.slider-style1 .rt-slider-navigation .rt-slider-next,
.slider-inner-wrapper .rt--slider.slider-style1 .rt-slider-navigation .rt-slider-prev {
padding-left: 0 !important;
width: 60px;
height: 60px;
border-radius: 6px 6px 0px 0px;
background-color: var(--color-white);
box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
text-align: center;
transition: all 0.5s;
}
.slider-inner-wrapper .rt--slider.slider-style1 .rt-slider-navigation .rt-slider-next i,
.slider-inner-wrapper .rt--slider.slider-style1 .rt-slider-navigation .rt-slider-prev i {
border-radius: 6px 6px 0px 0px;
}
.slider-inner-wrapper .rt--slider.slider-style1 .rt-slider-navigation .rt-slider-next:hover i,
.slider-inner-wrapper .rt--slider.slider-style1 .rt-slider-navigation .rt-slider-prev:hover i {
background: #ffbd27;
}
.slider-inner-wrapper .rt--slider.slider-style1 .rt-slider-navigation .rt-slider-next {
border-radius: 0px 0px 6px 6px;
}
.slider-inner-wrapper .rt--slider.slider-style1 .rt-slider-navigation .rt-slider-next i {
border-radius: 0px 0px 6px 6px;
}
.slider-inner-wrapper .rt--slider.slider-style1 .single--item {
position: relative;
background: var(--color-white);
padding: 35px 55px 40px 40px;
border: 1px solid #efefef;
border-radius: 5px;
}
.slider-inner-wrapper .rt--slider.slider-style1 .single--item .content--box {
display: flex;
align-items: center;
padding-top: 30px;
border-top: 1px solid #EFEFEF;
}
.slider-inner-wrapper .rt--slider.slider-style1 .single--item .content--box .slider-subtitle {
margin: 0;
}
.slider-inner-wrapper .rt--slider.slider-style1 .single--item .content--box .slider-title {
font-weight: 700;
font-size: 22px;
line-height: 26px;
margin-bottom: 5px;
}
.slider-inner-wrapper .rt--slider.slider-style1 .single--item .content--box .slider-btn {
margin-top: 40px;
}
.slider-inner-wrapper .rt--slider.slider-style1 .single--item .description {
margin-left: 20px;
}
.slider-inner-wrapper .rt--slider.slider-style1 .single--item .review-body .desc {
font-size: 18px;
font-weight: 600;
line-height: 29px;
color: #1F1F25;
padding-top: 25px;
}
.slider-inner-wrapper .rt--slider.slider-style1 .single--item .review-body .desc p {
margin: 0;
}
.slider-inner-wrapper .rt--slider.slider-style1 .single--item .review-body .star-rating .star {
position: relative;
color: var(--color-primary);
display: inline-block;
font-family: rt-icons;
font-size: 20px;
font-style: normal;
font-weight: 400;
height: 16px;
line-height: 27px;
text-align: center;
text-decoration: inherit;
vertical-align: top;
width: 26px;
}
.slider-inner-wrapper .rt--slider.slider-style1 .single--item .banner-image {
position: relative;
}
.slider-inner-wrapper .rt--slider.slider-style1 .single--item .banner-image .quote {
position: absolute;
top: 0px;
right: -17px;
top: 16px;
}
.slider-inner-wrapper .rt--slider.slider-style1 .single--item .review-end {
display: flex;
align-items: center;
justify-content: space-between;
}
.slider-inner-wrapper .rt--slider.slider-style3 .about-inner-wrapper-inner {
padding-left: 65px;
max-width: 530px;
}
.slider-inner-wrapper .rt--slider.slider-style3 .about-inner-wrapper-inner .slider-title {
font-size: 42px;
font-weight: 600;
}
.slider-inner-wrapper .rt--slider.slider-style3 .swiper-pagination {
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 1;
display: grid;
background: #fff;
border-radius: 20px;
left: 96%;
width: 32px;
height: 65px;
padding: 17px 6px 12px;
}
.slider-inner-wrapper .rt--slider.slider-style3 .swiper-pagination .swiper-pagination-bullet {
width: 8px;
height: 8px;
}
.rt-slider-navigation {
display: flex;
align-items: center;
justify-content: end;
position: absolute;
right: 30px;
bottom: 27px;
z-index: 1;
}
.rt-slider-navigation .rt-slider-prev i,
.rt-slider-navigation .rt-slider-next i {
font-size: 26px;
padding: 15px 18px;
background: var(--color-primary);
color: var(--color-white);
font-weight: 200;
transition: 0.3s;
}
.rt-slider-navigation .rt-slider-prev i:hover {
background: #0C0A0A;
}
.rt-slider-navigation .rt-slider-next i:hover {
background: #0C0A0A;
}
.testimonial_slider_wraper .swiper-pagination-bullets {
bottom: -40px !important;
text-align: left;
}
.testimonial_slider_wraper .swiper-pagination-bullets span.swiper-pagination-bullet {
width: 8px;
height: 8px;
}
.testimonial_slider_wraper .swiper-pagination-bullets .swiper-pagination-bullet-active {
background: var(--color-primary);
}
.rts-tab-style-one .button-area {
padding: 30px;
border: 1px solid #EDEFF3;
border-radius: 20px;
background: #fff;
text-align: left;
min-width: -moz-max-content;
min-width: max-content;
}
.rts-tab-style-one .button-area button {
background: transparent !important;
color: #5D666F;
padding-bottom: 20px;
border-bottom: 1px solid #EDEFF3;
margin-bottom: 15px;
font-size: 18px;
font-weight: 600;
text-align: left;
padding-left: 0;
}
.rts-tab-style-one .button-area button:last-child {
border-bottom: none;
margin-bottom: 0;
padding-bottom: 0;
}
.rts-tab-style-one .button-area button.active {
color: #0B4DF5;
}
.rts-tab-style-one .tab-content {
margin-left: 25px;
}
.rts-tab-style-one .tab-content .rts-tab-content-one {
margin-right: -8px;
font-size: 16px;
font-weight: 500;
color: #1C2539;
line-height: 26px;
margin-top: -4px;
margin-bottom: 24px;
animation: slide-down 2s ease-out;
}
.rts-tab-style-one .tab-content .rts-tab-content-one ul {
list-style: none;
margin: 20px 0 0;
}
.rts-tab-style-one .tab-content .rts-tab-content-one ul li {
margin-bottom: 10px;
font-size: 16px;
color: #5D666F;
font-weight: 400;
position: relative;
padding-left: 28px;
}
.rts-tab-style-one .tab-content .rts-tab-content-one ul li:before {
content: "\e853";
position: absolute;
font-family: "rt-icons";
left: 0;
top: 0;
font-size: 20px;
color: #0B4DF5;
}
.rts-tab-style-one .tab-content .rts-tab-content-one a.rts-btn {
margin-top: 40px;
display: block;
max-width: -moz-max-content;
max-width: max-content;
}
@media only screen and (max-width: 1024px) {
.rstab-main.vertical ul.nav {
margin-right: 0;
}
.rts-tab-content-one {
animation: slide-down 2.5s ease-out;
}
.rstab-main.vertical ul.nav.bubble li a.active:after {
display: none;
}
}
.swiper.team-slider-style1 {
position: inherit;
}
.swiper.team-slider-style1 .team-item {
overflow: visible;
}
.swiper.team-slider-style1 .team-item .team-inner-wrap {
overflow: hidden;
}
.swiper.team-slider-style1 .team-item .social-icons1 {
text-align: center;
margin-top: 14px;
}
.swiper.team-slider-style1 .team-item .social-icons1 a i {
color: #fff;
font-size: 15px;
width: 35px;
height: 35px;
line-height: 35px;
text-align: center;
transition: 0.3s all ease;
border-radius: 50%;
margin: 0;
}
.swiper.team-slider-style1 .team-item .image-wrap {
position: relative;
overflow: hidden;
}
.swiper.team-slider-style1 .team-item .image-wrap .social-icons1 {
position: absolute;
right: -50px;
bottom: 0;
width: 50px;
background: var(--color-primary);
padding: 12px 0;
opacity: 0;
visibility: hidden;
transition: 0.8s;
}
.swiper.team-slider-style1 .team-item .image-wrap .social-icons1 a {
padding: 0;
background: transparent;
}
.swiper.team-slider-style1 .team-item .image-wrap .social-icons1 a i {
background: transparent;
}
.swiper.team-slider-style1 .team-item .image-wrap .social-icons1 a:hover i {
color: var(--color-white);
background: transparent;
}
.swiper.team-slider-style1 .team-item :hover .image-wrap .social-icons1 {
right: 0;
width: 50px;
opacity: 1;
visibility: visible;
}
.swiper.team-slider-style1 .team-item .team-content {
text-align: left;
margin: 0;
padding: 30px 30px 25px;
background: var(--color-primary);
margin-bottom: 20px;
position: unset;
opacity: 1;
}
.swiper.team-slider-style1 .team-item .team-content h3.team-name {
font-weight: 600;
font-size: 24px;
line-height: 30px;
margin-bottom: 0px;
text-transform: capitalize;
}
.swiper.team-slider-style1 .team-item .team-content h3.team-name a {
text-decoration: none;
color: #ffffff;
}
.swiper.team-slider-style1 .team-item .team-content h3.team-name a:hover {
color: #c4c4c4;
}
.swiper.team-slider-style1 .team-item .team-content p.team-title {
text-transform: uppercase;
font-size: 14px;
color: var(--color-white);
font-weight: 700;
margin-bottom: 0;
margin-top: 5px;
}
.swiper.team-slider-style1 .team-item .social-icons {
display: none;
}
.swiper.team-slider-style1 .rt-slider-navigation.team {
position: absolute;
right: 0;
top: -172px;
z-index: 2;
}
.team-slider-style1 .team-item .team-content {
margin: 0;
}
#team-slider-img-shadow .team-item {
padding-bottom: 30px;
}
#team-slider-img-shadow .team-inner-wrap {
box-shadow: 0px 2px 20px rgba(24, 16, 16, 0.09);
}
.team-slider-style2 {
padding-bottom: 110px !important;
}
.team-slider-style2 .team-inner-wrap {
position: relative;
margin-bottom: 35px;
padding-top: 20px;
}
.team-slider-style2 .team-inner-wrap .image-wrap {
border-radius: 15px;
overflow: hidden;
}
.team-slider-style2 .team-inner-wrap a {
text-decoration: none;
}
.team-slider-style2 .team-inner-wrap .team-img-sec {
position: relative;
}
.team-slider-style2 .team-inner-wrap .wrap-text {
box-shadow: 0 5px 20px rgba(34, 34, 34, 0.1);
padding: 0 40px 12px;
background: #fff;
}
.team-slider-style2 .team-inner-wrap .wrap-text .team-desc {
margin-bottom: 0;
}
.team-slider-style2 .team-content {
position: absolute;
left: 0;
bottom: -20%;
background: #fff;
border-radius: 0 15px 15px 15px;
box-shadow: 0px 4px 27px rgba(0, 0, 0, 0.0705882353);
text-align: center;
}
.team-slider-style2 .team-content .header {
padding: 30px 82px 22px 82px;
border-bottom: 1px solid #F0F0F0;
}
.team-slider-style2 .team-content .header .team-name {
margin-bottom: 3px;
}
.team-slider-style2 .team-content .header .team-name a {
color: #1C2539;
}
.team-slider-style2 .team-content .header .team-title {
color: #F64A00;
}
.team-slider-style2 .team-content .social-icons {
padding: 27px 0 36px 0;
display: flex;
justify-content: center;
}
.team-slider-style2 .team-content .social-icons a {
position: relative;
z-index: 1;
transition: 0.3s;
width: 40px;
height: 40px;
background-color: #f6f6f6;
border-radius: 50%;
display: block;
line-height: 40px;
margin-right: 7px;
}
.team-slider-style2 .team-content .social-icons a:last-child {
margin-right: 0;
}
.team-slider-style2 .team-content .social-icons a i {
font-size: 14px;
color: #1C2539;
transition: 0.3s;
}
.team-slider-style2 .team-content .social-icons a:hover {
background: #F64A00;
}
.team-slider-style2 .team-content .social-icons a:hover i {
color: #fff;
}
.team-slider-style3 .style3 {
margin-bottom: 60px;
}
.team-slider-style3 .team-item {
padding: 25px;
position: relative;
}
.team-slider-style3 .team-item:after {
position: absolute;
content: "";
width: 0;
height: 0;
border-top: 200px solid var(--color-secondary);
border-right: 200px solid transparent;
left: 0px;
top: -10px;
}
.team-slider-style3 .team-item:before {
position: absolute;
content: "";
width: 0;
height: 0;
border-bottom: 200px solid var(--color-secondary);
border-left: 200px solid transparent;
right: 0px;
bottom: -10px;
}
.team-slider-style3 .team-item img {
position: relative;
z-index: 99;
}
.team-slider-style3 .team-item .team-inner-wrap {
position: relative;
}
.team-slider-style3 .team-item .team-inner-wrap:before {
position: absolute;
content: "";
width: 100%;
height: 100%;
background: var(--color-secondary);
opacity: 0.8;
left: 0;
top: 0;
z-index: 100;
opacity: 0;
transition: var(--transition);
}
.team-slider-style3 .team-item .team-content {
position: absolute;
display: block;
left: 50%;
width: 100%;
top: 30%;
transform: translate(-50%, -50%);
text-align: center;
z-index: 110;
color: #fff;
padding: 15px;
opacity: 0;
transition: var(--transition);
}
.team-slider-style3 .team-item .team-content .team-name {
margin-bottom: 0;
font-size: 20px;
}
.team-slider-style3 .team-item .team-content .team-name a {
color: #fff;
}
.team-slider-style3 .team-item .team-content .team-title {
color: #fff;
position: relative;
padding-bottom: 8px;
margin-bottom: 10px;
font-size: 14px;
display: block;
}
.team-slider-style3 .team-item .team-content .social-icons a {
color: #fff;
margin-right: 12px;
font-size: 16px;
}
.team-slider-style3 .team-item .team-content .social-icons a:last-child {
margin-right: 0;
}
.team-slider-style3 .team-item .team-content .social-icons a:hover {
opacity: 0.8;
}
.team-slider-style3 .team-item:hover .team-content {
opacity: 1;
width: 100%;
top: 50%;
}
.team-slider-style3 .team-item:hover .team-inner-wrap:before {
opacity: 0.8;
}
.team-slider-style4 .owl-stage-outer {
overflow-y: visible;
}
.team-slider-style4 .team-item {
margin-bottom: 60px;
position: relative;
}
.team-slider-style4 .team-item .image-wrap {
overflow: hidden;
}
.team-slider-style4 .team-item .image-wrap img {
width: 100%;
transition: 1.3s;
}
.team-slider-style4 .team-item .image-wrap:hover img {
transform: scale(1.1);
}
.team-slider-style4 .team-item .team-content {
text-align: center;
z-index: 9;
position: absolute;
z-index: 1;
opacity: 1;
width: unset;
height: unset;
display: inline-block;
top: unset;
bottom: -34px;
left: 0;
}
.team-slider-style4 .team-item .team-content .team-name {
font-size: 24px;
font-weight: 500;
width: 275px;
background: #ffffff;
transition: 0.3s;
max-width: 256px;
display: block;
text-align: left;
padding: 8px 18px;
margin-bottom: 0;
font-family: var(--font-primary);
}
.team-slider-style4 .team-item .team-content .team-name a {
color: var(--color-secondary);
}
.team-slider-style4 .team-item .team-content .team-name a:hover {
color: var(--color-primary);
}
.team-slider-style4 .team-item .team-content .team-title {
font-size: 14px;
font-weight: 400;
padding: 5px 18px;
display: block;
color: #fff;
background: #171717;
text-align: left;
}
.swiper.team-slider-style5 .rts-team-one-start {
background: linear-gradient(180deg, #FFFFFF 0%, #F2F3F5 100%);
padding: 30px;
padding-bottom: 180px;
}
.swiper.team-slider-style5 .rts-team-one-start:hover .wrapper .thumbnail img {
transform: scale(1.15);
}
.swiper.team-slider-style5 .rts-team-one-start .wrapper {
position: relative;
}
.swiper.team-slider-style5 .rts-team-one-start .wrapper .thumbnail {
overflow: hidden;
display: block;
}
.swiper.team-slider-style5 .rts-team-one-start .wrapper .thumbnail img {
width: 100%;
transition: 1.3s;
}
.swiper.team-slider-style5 .rts-team-one-start .inner {
text-align: center;
padding: 43px 20px 53px;
background: white;
position: absolute;
left: 50%;
transform: translateX(-50%);
bottom: -144px;
width: 100.5%;
transition: 1s;
}
.swiper.team-slider-style5 .rts-team-one-start .inner a.name:hover .title {
color: var(--color-primary);
}
.swiper.team-slider-style5 .rts-team-one-start .inner .title {
margin-bottom: 7px;
font-size: 30px;
transition: 0.3s;
}
.swiper.team-slider-style5 .rts-team-one-start .inner span {
font-family: var(--font-primary);
font-weight: 400;
font-size: 16px;
line-height: 24px;
color: #6E777D;
}
.swiper.team-slider-style5 .rts-team-one-start .inner .info-wrapper {
margin-top: 0px;
margin-bottom: -15px;
max-height: 0;
transition: 1s;
height: 0;
overflow: hidden;
}
.swiper.team-slider-style5 .rts-team-one-start .inner .info-wrapper .single {
position: relative;
margin-bottom: 15px;
}
.swiper.team-slider-style5 .rts-team-one-start .inner .info-wrapper .single a {
padding: 12px 25px 12px 55px;
border-radius: 100px;
display: block;
background: #F2F3F5;
max-width: -moz-max-content;
max-width: max-content;
margin: auto;
color: #6E777D;
}
.swiper.team-slider-style5 .rts-team-one-start .inner .info-wrapper .single a:hover {
color: var(--color-primary);
}
.swiper.team-slider-style5 .rts-team-one-start .inner .info-wrapper .single i {
position: absolute;
width: 46px;
height: 46px;
background: #FF6600;
border-radius: 100px;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
left: 55px;
top: 2px;
}
.swiper.team-slider-style5 .rts-team-one-start:hover .inner .info-wrapper {
margin-top: 25px;
max-height: 400px;
display: block;
visibility: visible;
height: 130px;
}
.swiper.team-slider-style5 .rt-slider-navigation.team {
position: absolute;
right: -50%;
transform: translateX(50%);
bottom: 45px;
z-index: 2;
}
.swiper.team-slider-style6 .single-team-three {
position: relative;
max-width: -moz-max-content;
max-width: max-content;
z-index: 1;
}
.swiper.team-slider-style6 .single-team-three:hover .thumbnail .social-team-wrapper {
right: 30px;
}
.swiper.team-slider-style6 .single-team-three .thumbnail {
display: block;
overflow: hidden;
width: 97%;
position: relative;
}
.swiper.team-slider-style6 .single-team-three .thumbnail .social-team-wrapper {
position: absolute;
top: 0;
right: -30px;
top: 30px;
transition: 0.3s;
}
.swiper.team-slider-style6 .single-team-three .thumbnail .social-team-wrapper ul {
list-style: none;
padding-left: 0;
margin: 0;
}
.swiper.team-slider-style6 .single-team-three .thumbnail .social-team-wrapper ul li {
margin-bottom: 20px;
}
.swiper.team-slider-style6 .single-team-three .thumbnail .social-team-wrapper ul li a {
transition: all 0.3s;
}
.swiper.team-slider-style6 .single-team-three .thumbnail .social-team-wrapper ul li a:hover i {
color: var(--color-primary);
}
.swiper.team-slider-style6 .single-team-three .thumbnail .social-team-wrapper ul li a i {
color: #171717;
transition: all 0.3s;
}
.swiper.team-slider-style6 .single-team-three .thumbnail:hover img {
transform: scale(1.15);
}
.swiper.team-slider-style6 .single-team-three .thumbnail img {
width: 100%;
transition: 1.3s;
}
.swiper.team-slider-style6 .single-team-three::after {
position: absolute;
content: "";
top: 30px;
left: 30px;
height: 99%;
width: 97%;
border: 1px solid #E1E1E1;
z-index: -1;
}
.swiper.team-slider-style6 .single-team-three .content-area {
margin-left: 60px;
margin-top: 30px;
}
.swiper.team-slider-style6 .single-team-three .content-area span.designation {
background: #171717;
padding: 9px 34px 7px 21px;
font-weight: 400;
font-size: 14px;
line-height: 21px;
font-family: var(--font-primary);
color: var(--color-white);
}
.swiper.team-slider-style6 .single-team-three .content-area .name {
background: #171717;
padding: 11px 21px 11px 21px;
max-width: -moz-max-content;
max-width: max-content;
color: var(--color-white);
text-transform: uppercase;
letter-spacing: 0.05em;
font-weight: 700;
line-height: 30px;
transition: 0.3s;
}
.swiper.team-slider-style6 .single-team-three .content-area .name:hover {
color: var(--color-primary);
}
.team-slider-main-wrapper {
position: relative;
}
.team-slider-main-wrapper .rt-slider-navigation.team {
display: flex;
align-items: center;
justify-content: space-between;
position: absolute;
left: 0;
top: 47%;
width: 100%;
transform: translateY(-47%);
}
.team-slider-main-wrapper .rt-slider-navigation.team .testimonial-cat-prev {
font-size: 22px;
color: var(--color-secondary);
height: 60px;
width: 60px;
line-height: 60px;
text-align: center;
border-radius: 50%;
background: var(--color-white);
transition: 0.3s;
margin-left: -130px;
}
.team-slider-main-wrapper .rt-slider-navigation.team .testimonial-cat-prev:hover {
background: var(--color-primary);
color: #ffffff;
}
.team-slider-main-wrapper .rt-slider-navigation.team .testimonial-cat-next {
font-size: 22px;
color: #0C0A0A;
display: flex;
align-items: center;
justify-content: center;
height: 60px;
width: 60px;
border-radius: 50%;
background: #fff;
transition: 0.3s;
margin-right: -130px;
}
.team-slider-main-wrapper .rt-slider-navigation.team .testimonial-cat-next:hover {
background: var(--color-primary);
color: #ffffff;
}
.team-grid-style1 .team-item {
overflow: visible;
}
.team-grid-style1 .team-item .team-inner-wrap {
border-radius: 8px;
position: relative;
}
.team-grid-style1 .team-item .social-icons1 {
text-align: center;
margin-top: 14px;
}
.team-grid-style1 .team-item .social-icons1 a i {
color: #fff;
font-size: 15px;
width: 35px;
height: 35px;
line-height: 35px;
text-align: center;
transition: 0.3s all ease;
border-radius: 50%;
margin: 0;
}
.team-grid-style1 .team-item .image-wrap {
position: relative;
overflow: hidden;
}
.team-grid-style1 .team-item .image-wrap .social-icons1 {
position: absolute;
right: -50px;
bottom: 0;
width: 50px;
background: var(--color-primary);
padding: 12px 0;
opacity: 0;
visibility: hidden;
transition: var(--transition);
}
.team-grid-style1 .team-item .image-wrap .social-icons1 a {
padding: 0;
background: transparent;
}
.team-grid-style1 .team-item .image-wrap .social-icons1 a i {
background: transparent;
}
.team-grid-style1 .team-item .image-wrap .social-icons1 a:hover i {
color: var(--color-white);
background: transparent;
}
.team-grid-style1 .team-item :hover .image-wrap .social-icons1 {
right: 0;
width: 50px;
opacity: 1;
visibility: visible;
}
.team-grid-style1 .team-item .team-content {
background: var(--color-white);
text-align: center;
padding: 30px 0;
border-radius: 10px;
box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.05);
}
.team-grid-style1 .team-item .team-content h3.team-name {
font-weight: 700;
font-size: 24px;
line-height: 34px;
margin-bottom: 0px;
}
.team-grid-style1 .team-item .team-content h3.team-name a {
text-decoration: none;
}
.team-grid-style1 .team-item .team-content h3.team-name a:hover {
color: #c4c4c4;
}
.team-grid-style1 .team-item .team-content .team-title {
font-size: 18px;
font-weight: 500;
line-height: 28px;
margin-bottom: 0;
}
.team-grid-style1 .team-item .social-icons {
display: none;
}
.team-grid-style2 {
padding-bottom: 110px !important;
}
.team-grid-style2 .team-inner-wrap {
position: relative;
margin-bottom: 35px;
padding-top: 20px;
}
.team-grid-style2 .team-inner-wrap .image-wrap {
border-radius: 15px;
overflow: hidden;
}
.team-grid-style2 .team-inner-wrap a {
text-decoration: none;
}
.team-grid-style2 .team-inner-wrap .team-img-sec {
position: relative;
}
.team-grid-style2 .team-inner-wrap .wrap-text {
box-shadow: 0 5px 20px rgba(34, 34, 34, 0.1);
padding: 0 40px 12px;
background: #fff;
}
.team-grid-style2 .team-inner-wrap .wrap-text .team-desc {
margin-bottom: 0;
}
.team-grid-style2 .team-content {
position: absolute;
left: 0;
bottom: -20%;
background: #fff;
border-radius: 0 15px 15px 15px;
box-shadow: 0px 4px 27px rgba(0, 0, 0, 0.0705882353);
text-align: center;
}
.team-grid-style2 .team-content .header {
padding: 30px 82px 22px 82px;
border-bottom: 1px solid #F0F0F0;
}
.team-grid-style2 .team-content .header .team-name {
margin-bottom: 3px;
}
.team-grid-style2 .team-content .header .team-name a {
color: #1C2539;
}
.team-grid-style2 .team-content .header .team-title {
color: #F64A00;
}
.team-grid-style2 .team-content .social-icons {
padding: 27px 0 36px 0;
display: flex;
justify-content: center;
}
.team-grid-style2 .team-content .social-icons a {
position: relative;
z-index: 1;
transition: 0.3s;
width: 40px;
height: 40px;
background-color: #f6f6f6;
border-radius: 50%;
display: block;
line-height: 40px;
margin-right: 7px;
}
.team-grid-style2 .team-content .social-icons a:last-child {
margin-right: 0;
}
.team-grid-style2 .team-content .social-icons a i {
font-size: 14px;
color: #1C2539;
transition: 0.3s;
}
.team-grid-style2 .team-content .social-icons a:hover {
background: #F64A00;
}
.team-grid-style2 .team-content .social-icons a:hover i {
color: #fff;
}
.team-grid-style2 .team-inner-wrap {
margin-bottom: 95px;
}
.team-grid-style3 .team-item {
overflow: visible;
margin-bottom: 25px;
}
.team-grid-style3 .team-item .team-inner-wrap {
overflow: hidden;
position: relative;
}
.team-grid-style3 .team-item .image-wrap {
position: relative;
overflow: hidden;
}
.team-grid-style3 .team-item .image-wrap .social-icons1 {
position: absolute;
right: -50px;
bottom: 0;
width: 50px;
background: var(--color-primary);
padding: 12px 0;
opacity: 0;
visibility: hidden;
transition: var(--transition);
}
.team-grid-style3 .team-item .image-wrap .social-icons1 a {
padding: 0;
background: transparent;
}
.team-grid-style3 .team-item .image-wrap .social-icons1 a i {
background: transparent;
}
.team-grid-style3 .team-item .image-wrap .social-icons1 a:hover i {
color: var(--color-white);
background: transparent;
}
.team-grid-style3 .team-item .image-wrap img {
transition: 0.6s;
}
.team-grid-style3 .team-item .image-wrap a:hover img {
transform: scale(1.12);
}
.team-grid-style3 .team-item :hover .image-wrap .social-icons1 {
right: 0;
width: 50px;
opacity: 1;
visibility: visible;
}
.team-grid-style3 .team-item .team-content {
display: flex;
align-items: center;
justify-content: space-between;
padding: 35px 40px;
position: absolute;
bottom: 0;
width: 100%;
background: linear-gradient(90deg, #1F1F25 0%, rgba(0, 0, 0, 0) 100%);
}
.team-grid-style3 .team-item .team-content h3.team-name {
font-weight: 600;
font-size: 24px;
line-height: 30px;
margin-bottom: 0px;
text-transform: capitalize;
}
.team-grid-style3 .team-item .team-content h3.team-name a {
color: #ffffff;
font-size: 24px;
font-weight: 700;
line-height: 32px;
}
.team-grid-style3 .team-item .team-content h3.team-name a:hover {
color: var(--color-primary);
}
.team-grid-style3 .team-item .team-content span.team-title {
font-size: 16px;
color: #ffffff;
font-weight: 500;
line-height: 19px;
}
.team-grid-style3 .team-item .share-icon {
width: 50px;
height: 50px;
background: #fff;
display: flex;
align-items: center;
justify-content: center;
position: relative;
cursor: pointer;
transition: 0.3s;
}
.team-grid-style3 .team-item .share-icon:hover {
background: var(--color-primary);
}
.team-grid-style3 .team-item .share-icon i {
color: #1F1F25;
font-weight: 600;
font-size: 19px;
line-height: 19px;
font-size: 18px;
}
.team-grid-style3 .team-item .share-icon .share-icons-wrapper {
position: absolute;
top: -225px;
}
.team-grid-style3 .team-item .share-icon .share-icons-wrapper ul {
padding: 0;
margin: 0;
list-style: none;
}
.team-grid-style3 .team-item .share-icon .share-icons-wrapper ul li {
margin: 5px 0;
padding: 0;
transform: translateY(20px);
opacity: 0;
transition: 1.5s;
}
.team-grid-style3 .team-item .share-icon .share-icons-wrapper ul li a {
height: 50px;
width: 50px;
background: #fff;
display: flex;
align-items: center;
justify-content: center;
transition: 0.3s;
}
.team-grid-style3 .team-item .share-icon .share-icons-wrapper ul li a i {
transition: 0.3s;
}
.team-grid-style3 .team-item .share-icon .share-icons-wrapper ul li a:hover {
background: var(--color-primary);
color: var(--color-white);
}
.team-grid-style3 .team-item .share-icon .share-icons-wrapper ul li a:hover i {
color: var(--color-white);
}
.team-grid-style3 .team-item .share-icon:hover ul li {
transform: translateY(0);
opacity: 1;
}
.team-grid-style4 .owl-stage-outer {
overflow-y: visible;
}
.team-grid-style4 .team-item {
margin-bottom: 125px;
position: relative;
overflow: visible;
}
.team-grid-style4 .team-item:before {
display: none;
}
.team-grid-style4 .team-item .team-content {
color: #f8560c;
background: #fff;
padding: 20px;
text-align: center;
z-index: 9;
position: absolute;
z-index: 1;
opacity: 1;
width: unset;
height: unset;
display: inline-block;
top: unset;
bottom: -85px;
padding: 20px 20px 25px;
box-shadow: 0px 4px 27px rgba(0, 0, 0, 0.0705882353);
left: 50%;
border-radius: 15px;
max-width: 310px;
transform: translateX(-50%);
width: 95%;
}
.team-grid-style4 .team-item .team-content .team-name {
display: block;
font-size: 22px;
margin-bottom: 0px;
text-transform: capitalize;
font-weight: 600;
line-height: 27px;
}
.team-grid-style4 .team-item .team-content .team-name a {
color: var(--color-primary);
}
.team-grid-style4 .team-item .team-content .team-name a:hover {
color: var(--color-white);
}
.team-grid-style4 .team-item .team-content .team-title {
font-size: 14px;
font-weight: 400;
text-transform: uppercase;
padding-top: 5px;
display: block;
font-family: "Poppins", sans-serif;
color: #0a0a0a;
}
.team-grid-style4 .team-item .team-content .team-desc {
font-size: 14px;
margin-bottom: 0;
color: #777;
position: relative;
z-index: 1;
max-height: 0;
opacity: 0;
line-height: 24px;
transition: all 0.6s, max-height 0.5s;
overflow: hidden;
transform: scaleY(0);
transform-origin: bottom;
}
.team-grid-style4 .team-item .team-content .team-desc:before {
content: "";
position: absolute;
z-index: 1;
background: var(--color-primary);
top: 0;
left: 50%;
width: 50px;
height: 2px;
margin-left: -25px;
}
.team-grid-style4 .team-item .team-content .social-icons {
text-align: center;
margin-top: 12px;
display: flex;
justify-content: center;
}
.team-grid-style4 .team-item .team-content .social-icons a {
margin-right: 7px;
}
.team-grid-style4 .team-item .team-content .social-icons a i {
color: var(--color-primary);
font-size: 15px;
width: 40px;
height: 40px;
line-height: 40px;
background: #f6f6f6;
text-align: center;
transition: 0.3s all ease;
border-radius: 50%;
overflow: hidden;
margin: 0;
}
.team-grid-style4 .team-item .team-content .social-icons a i:hover {
color: #fff;
background: var(--color-primary);
}
.team-grid-style4 .team-item:before {
background: transparent;
}
.team-grid-style4 .team-item:hover .team-content {
opacity: 1;
top: unset;
}
.team-grid-style4 .team-item:hover .team-content .team-desc {
position: relative;
max-height: 400px;
opacity: 1;
text-align: center;
transform: scaleY(1);
transition: all 0.4s, max-height 1.5s;
padding-top: 18px;
margin-top: 8px;
}
.team-grid-style5 .team-item, .team-grid-style8 .team-item {
margin-bottom: 25px;
}
.team-grid-style5 .team-item .team-inner-wrap, .team-grid-style8 .team-item .team-inner-wrap {
position: relative;
overflow: hidden;
background: #fff;
transition: 0.3s;
}
.team-grid-style5 .team-item .team-inner-wrap .image-wrap, .team-grid-style8 .team-item .team-inner-wrap .image-wrap {
position: relative;
overflow: hidden;
}
.team-grid-style5 .team-item .team-inner-wrap .image-wrap img, .team-grid-style8 .team-item .team-inner-wrap .image-wrap img {
width: 100%;
transition: all 0.7s;
}
.team-grid-style5 .team-item .team-inner-wrap .social-icons, .team-grid-style8 .team-item .team-inner-wrap .social-icons {
text-align: center;
display: inline-flex;
-moz-column-gap: 10px;
column-gap: 10px;
}
.team-grid-style5 .team-item .team-inner-wrap .social-icons a, .team-grid-style8 .team-item .team-inner-wrap .social-icons a {
display: flex;
align-items: center;
justify-content: center;
width: 30px;
height: 30px;
border: 1px solid #E3E3E3;
transition: 0.3s;
color: #30373E;
}
.team-grid-style5 .team-item .team-inner-wrap .social-icons a:hover, .team-grid-style8 .team-item .team-inner-wrap .social-icons a:hover {
background-color: var(--color-white);
}
.team-grid-style5 .team-item .team-inner-wrap .social-icons a:hover i, .team-grid-style8 .team-item .team-inner-wrap .social-icons a:hover i {
color: #fff;
}
.team-grid-style5 .team-item .team-inner-wrap .social-icons a i, .team-grid-style8 .team-item .team-inner-wrap .social-icons a i {
display: flex;
transition: all 0.3s;
}
.team-grid-style5 .team-item .team-inner-wrap .team-content, .team-grid-style8 .team-item .team-inner-wrap .team-content {
width: 100%;
padding: 23px 14px;
color: #444;
overflow: hidden;
background: #fff;
transition: 0.3s all ease;
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1px solid #F6F6F6;
}
.team-grid-style5 .team-item .team-inner-wrap .team-content .member-desc .team-name, .team-grid-style8 .team-item .team-inner-wrap .team-content .member-desc .team-name {
font-size: 18px;
font-weight: 600;
line-height: 28px;
margin: 0;
}
.team-grid-style5 .team-item .team-inner-wrap .team-content .member-desc .team-name a, .team-grid-style8 .team-item .team-inner-wrap .team-content .member-desc .team-name a {
color: var(--color-secondary);
}
.team-grid-style5 .team-item .team-inner-wrap .team-content .member-desc .team-title, .team-grid-style8 .team-item .team-inner-wrap .team-content .member-desc .team-title {
font-size: 18px;
text-transform: capitalize;
float: none;
text-align: center;
font-weight: 400;
}
.team-grid-style6 .single-team-three {
position: relative;
max-width: -moz-max-content;
max-width: max-content;
z-index: 1;
margin-bottom: 70px;
}
.team-grid-style6 .single-team-three:hover .thumbnail .social-team-wrapper {
right: 30px;
}
.team-grid-style6 .single-team-three .thumbnail {
display: block;
overflow: hidden;
width: 97%;
position: relative;
}
.team-grid-style6 .single-team-three .thumbnail .social-team-wrapper {
position: absolute;
top: 0;
right: -30px;
top: 30px;
transition: 0.3s;
}
.team-grid-style6 .single-team-three .thumbnail .social-team-wrapper ul {
list-style: none;
padding-left: 0;
margin: 0;
}
.team-grid-style6 .single-team-three .thumbnail .social-team-wrapper ul li {
margin-bottom: 20px;
}
.team-grid-style6 .single-team-three .thumbnail .social-team-wrapper ul li a {
transition: all 0.3s;
}
.team-grid-style6 .single-team-three .thumbnail .social-team-wrapper ul li a:hover i {
color: var(--color-primary);
}
.team-grid-style6 .single-team-three .thumbnail .social-team-wrapper ul li a i {
color: #171717;
transition: all 0.3s;
}
.team-grid-style6 .single-team-three .thumbnail:hover img {
transform: scale(1.15);
}
.team-grid-style6 .single-team-three .thumbnail img {
width: 100%;
transition: 1.3s;
}
.team-grid-style6 .single-team-three::after {
position: absolute;
content: "";
top: 30px;
left: 30px;
height: 99%;
width: 97%;
border: 1px solid #E1E1E1;
z-index: -1;
}
.team-grid-style6 .single-team-three .content-area {
margin-left: 60px;
margin-top: 30px;
}
.team-grid-style6 .single-team-three .content-area span.designation {
background: #171717;
padding: 9px 34px 7px 21px;
font-weight: 400;
font-size: 14px;
line-height: 21px;
font-family: var(--font-primary);
color: var(--color-white);
}
.team-grid-style6 .single-team-three .content-area .name {
background: #171717;
padding: 11px 21px 11px 21px;
max-width: -moz-max-content;
max-width: max-content;
color: var(--color-white);
text-transform: uppercase;
letter-spacing: 0.05em;
font-weight: 700;
line-height: 30px;
transition: 0.3s;
}
.team-grid-style6 .single-team-three .content-area .name:hover {
color: var(--color-primary);
}
.team-grid-style7 .team-single-three-style {
display: flex;
align-items: center;
padding: 30px 0;
border-top: 1px solid #1E1F22;
position: relative;
}
@media only screen and (max-width: 767px) {
.team-grid-style7 .team-single-three-style {
flex-direction: column;
align-items: flex-start;
gap: 30px;
}
}
.team-grid-style7 .team-single-three-style:last-child {
border-bottom: 1px solid #1E1F22;
}
.team-grid-style7 .team-single-three-style .team-name {
flex-basis: 23%;
color: #D9D9D9;
font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: 34px;
position: relative;
transition: 0.5s;
z-index: 1;
}
.team-grid-style7 .team-single-three-style .team-name::after {
position: absolute;
left: 33px;
width: 0px;
height: 1px;
background: var(--color-primary);
content: "";
top: 47%;
transform: translateY(-50%);
transition: 0.8s;
z-index: 2;
}
.team-grid-style7 .team-single-three-style .team-name span {
opacity: 0;
position: absolute;
left: 0;
transition: 0.3s;
}
.team-grid-style7 .team-single-three-style .designation {
flex-basis: 20%;
}
.team-grid-style7 .team-single-three-style a.team-link {
transition: 0.3s;
color: #7d7d7d !important;
}
.team-grid-style7 .team-single-three-style .social-team-wrapper {
flex-basis: 54%;
position: relative;
z-index: 1;
}
.team-grid-style7 .team-single-three-style .social-team-wrapper .social-icons {
list-style: none;
display: flex;
align-items: center;
margin: 0;
}
@media only screen and (max-width: 767px) {
.team-grid-style7 .team-single-three-style .social-team-wrapper .social-icons {
padding-left: 0;
}
}
.team-grid-style7 .team-single-three-style .social-team-wrapper .social-icons a {
margin: 0 15px;
font-size: 18px;
color: var(--color-body);
}
.team-grid-style7 .team-single-three-style .social-team-wrapper .social-icons a:hover {
color: var(--color-primary);
}
.team-grid-style7 .team-single-three-style:hover .team-name {
padding-left: 100px;
display: flex;
align-items: center;
color: #B19777;
}
.team-grid-style7 .team-single-three-style:hover .team-name::after {
width: 60px;
}
.team-grid-style7 .team-single-three-style:hover .team-name span {
opacity: 1;
}
.team-grid-style7 .team-single-three-style:hover .rts-hover-show-img {
opacity: 1;
visibility: visible;
top: -60%;
}
.team-grid-style7 .team-single-three-style:hover a.team-link {
transform: rotate(-45deg) scale(1.1);
}
.team-grid-style7 .team-single-three-style:hover a.team-link i {
color: var(--color-primary);
}
.team-grid-style7 .team-single-three-style .rts-hover-show-img {
position: absolute;
right: 150px;
top: -100%;
width: -moz-max-content;
width: max-content;
transition: 0.5s;
opacity: 0;
visibility: hidden;
transform-origin: top center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.team-grid-style7 .team-single-three-style .rts-hover-show-img {
position: absolute;
right: 0;
top: -100%;
width: -moz-max-content;
width: max-content;
transition: 0.5s;
opacity: 0;
visibility: hidden;
transform-origin: top center;
z-index: 0;
}
}
.team-grid-style8 .team-item .team-inner-wrap .image-wrap {
position: relative;
}
.team-grid-style8 .team-item .team-inner-wrap .image-wrap .social-icons {
position: absolute;
right: -30px;
top: 20px;
transition: 0.3s;
display: flex;
flex-direction: column;
}
.team-grid-style8 .team-item .team-inner-wrap .image-wrap .social-icons a {
background: #F6F6F6;
margin: 5px 0;
}
.team-grid-style8 .team-item .team-inner-wrap .team-content {
padding-left: 0;
padding-right: 0;
border-bottom: none;
}
.team-grid-style8 .team-item .team-inner-wrap .team-content .member-desc {
display: flex;
flex-direction: column;
}
.team-grid-style8 .team-item .team-inner-wrap .team-content .member-desc .team-name a {
margin: 0;
color: #fff;
color: #fff;
font-size: 18px;
text-transform: capitalize;
float: none;
text-align: center;
font-weight: 700;
background: #30373E;
padding: 10px 14px;
text-align: left;
min-width: 160px;
transition: 0.3s;
}
.team-grid-style8 .team-item .team-inner-wrap .team-content .member-desc .team-name:hover a {
background: var(--color-primary);
}
.team-grid-style8 .team-item .team-inner-wrap .team-content .member-desc .team-title {
padding: 4px 14px;
background: #F6F6F6;
width: -moz-fit-content;
width: fit-content;
color: var(--color-secondary);
margin-bottom: 8px;
}
.team-grid-style8 .team-item .team-inner-wrap:hover .image-wrap .social-icons {
right: 20px;
}
.swiper-button-prev:before,
.swiper-button-next:before {
display: none !important;
}
.testimonial-slider-nav .swiper-button-next,
.testimonial-slider-nav .swiper-button-prev {
background: #30373e;
color: #fff;
border-radius: 50%;
}
.testimonial-slider-nav .swiper-button-next {
right: 0;
}
.testimonial-slider-nav .swiper-button-prev {
left: 0;
}
.rating {
display: inline-flex;
align-items: center;
gap: 2px;
}
.rating i {
color: var(--color-primary);
font-size: 14px;
}
.swiper-testimonails .swiper-scrollbar {
bottom: -50px !important;
z-index: 50;
height: 5px;
max-width: 1000px;
margin: 0 auto;
border-radius: 2px;
position: relative !important;
-ms-touch-action: none;
background: #147BFF;
}
.swiper-testimonails .swiper-scrollbar .swiper-scrollbar-drag {
height: 100%;
width: 25%;
background: #D6D6D6;
border-radius: inherit;
}
.swiper-testimonails .single-testimonial .quotes-area svg {
width: auto;
}
.swiper-testimonails-style1 {
padding-bottom: 70px !important;
}
.swiper-testimonails-style1 .single-testimonial {
display: block;
margin: 55px 0;
padding: 50px 26px;
border: 1px solid #E3E3E3;
max-width: -moz-max-content;
max-width: max-content;
position: relative;
}
.swiper-testimonails-style1 .single-testimonial .disc {
margin: 40px 0;
margin-bottom: 0;
font-size: 16px;
font-style: normal;
font-weight: 300;
line-height: 26px;
letter-spacing: -0.36px;
max-width: 98%;
}
.swiper-testimonails-style1 .single-testimonial .swiper-wrapper {
padding-bottom: 0 !important;
}
.swiper-testimonails-style1 .single-testimonial .swiper-pagination-bullet {
height: 8px;
width: 8px;
}
.swiper-testimonails-style1 .single-testimonial .author-area {
position: absolute;
display: flex;
align-items: center;
right: 50px;
bottom: -40px;
padding: 8px 14px;
border-radius: 5px;
background: #F1F1F1;
gap: 15px;
}
.swiper-testimonails-style1 .single-testimonial .author-area .thumbnail img {
padding: 5px;
border-radius: 50%;
border: 1px solid #E3E3E3;
}
.swiper-testimonails-style1 .single-testimonial .author-area .info .title {
margin-bottom: 5px;
}
.swiper-testimonails-style1 .single-testimonial .author-area .info span {
color: #7D7D7D;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 24px;
letter-spacing: 2.8px;
}
.swiper-testimonails-style1 .single-testimonial .quotes-area {
position: absolute;
top: -50px;
left: 50px;
height: 80px;
width: 80px;
border-radius: 50%;
background: #f2f2f2;
display: flex;
align-items: center;
justify-content: center;
}
.swiper-testimonails-style1 .swiper-wrapper {
padding-bottom: 50px;
}
.swiper-testimonails-style1 .swiper-pagination-bullet {
background: var(--color-primary);
}
.swiper-testimonails-style1 .swiper-pagination-bullet-active {
background: var(--color-primary) !important;
}
.swiper-testimonails-style1 .swiper-pagination-bullets {
bottom: 0;
}
.swiper-testimonails-style2 {
padding-top: 30px !important;
position: relative;
overflow: hidden;
}
.swiper-testimonails-style2 .thumbnail-testimonials img {
padding-left: 30px;
border-left: 1px solid #E0E0E0;
}
.swiper-testimonails-style2 .swiper-wrapper {
padding-bottom: 50px;
}
.swiper-testimonails-style2 .swiper-pagination-bullet {
background: var(--color-primary);
}
.swiper-testimonails-style2 .swiper-pagination-bullet-active {
background: var(--color-primary) !important;
}
.swiper-testimonails-style2 .swiper-button-next,
.swiper-testimonails-style2 .swiper-button-prev {
background-image: none;
position: absolute;
font-size: 20px;
border-radius: 0px;
height: 45px !important;
width: 45px !important;
border: 1px solid #E0E0E0;
font-family: var(--font-3);
display: flex;
align-items: center;
justify-content: center;
color: #30373E;
background: transparent;
transition: 0.3s;
}
@media only screen and (max-width: 575px) {
.swiper-testimonails-style2 .swiper-button-next,
.swiper-testimonails-style2 .swiper-button-prev {
display: none;
}
}
.swiper-testimonails-style2 .swiper-button-next:hover,
.swiper-testimonails-style2 .swiper-button-prev:hover {
border: 1px solid var(--color-primary);
color: var(--color-primary);
}
.swiper-testimonails-style2 .swiper-button-prev {
left: auto;
right: 525px;
top: auto;
bottom: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.swiper-testimonails-style2 .swiper-button-prev {
right: 120px;
}
}
@media only screen and (max-width: 767px) {
.swiper-testimonails-style2 .swiper-button-prev {
right: 120px;
}
}
.swiper-testimonails-style2 .swiper-button-prev::after {
content: "\f053";
}
.swiper-testimonails-style2 .swiper-button-next {
left: auto;
right: 470px;
top: auto;
bottom: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.swiper-testimonails-style2 .swiper-button-next {
right: 50px;
}
}
@media only screen and (max-width: 767px) {
.swiper-testimonails-style2 .swiper-button-next {
right: 50px;
}
}
.swiper-testimonails-style2 .swiper-button-next::after {
content: "\f054";
}
.swiper-testimonails-style2 .single-testimonial {
padding: 40px;
}
.swiper-testimonails-style2 .single-testimonial .icon {
display: block;
min-width: -moz-max-content;
min-width: max-content;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.swiper-testimonails-style2 .single-testimonial .icon {
display: none;
}
}
@media only screen and (max-width: 767px) {
.swiper-testimonails-style2 .single-testimonial .icon {
display: none;
}
}
.swiper-testimonails-style2 .single-testimonial .icon img {
min-width: -moz-max-content;
min-width: max-content;
display: block;
}
.swiper-testimonails-style2 .single-testimonial .quotes-area {
position: absolute;
left: 6px;
top: -28px;
}
.swiper-testimonails-style2 .single-testimonial .disc {
color: #88919B;
font-size: 22px;
font-style: italic;
font-weight: 300;
line-height: 32px;
letter-spacing: -0.44px;
padding-bottom: 40px;
border-bottom: 1px solid #E0E0E0;
margin-bottom: 25px;
}
@media only screen and (max-width: 575px) {
.swiper-testimonails-style2 .single-testimonial .disc {
font-size: 18px;
line-height: 26px;
}
}
@media only screen and (max-width: 767px) {
.swiper-testimonails-style2 .single-testimonial .disc {
margin-top: 0;
}
}
.swiper-testimonails-style2 .single-testimonial .author-area {
display: flex;
align-items: center;
gap: 15px;
}
.swiper-testimonails-style2 .single-testimonial .author-area img {
padding: 5px;
border: 1px solid #E3E3E3;
border-radius: 50%;
}
.swiper-testimonails-style2 .single-testimonial .author-area .information-area .title {
color: var(--color-heading-1);
font-size: 22px;
font-style: normal;
font-weight: 600;
line-height: 32px;
margin-bottom: 5px;
}
.swiper-testimonails-style2 .single-testimonial .author-area .information-area span {
color: #7D7D7D;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 26px;
letter-spacing: 3.2px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.swiper-testimonails-style2 .thumbnail-testimonials {
justify-content: flex-start !important;
margin-top: 50px;
}
}
@media only screen and (max-width: 767px) {
.swiper-testimonails-style2 .thumbnail-testimonials {
justify-content: flex-start !important;
margin-top: 50px;
}
.swiper-testimonails-style2 .thumbnail-testimonials img {
padding-left: 0 !important;
}
}
.swiper-testimonails-style3 .single-testimonial::before {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
border-radius: inherit;
content: "";
background-image: var(--primary-gradient);
transition: all 0.3s ease-in;
z-index: -1;
opacity: 0;
}
.swiper-testimonails-style3 .single-testimonial:hover::before {
opacity: 1;
}
.swiper-testimonails-style3 .swiper-slide-active .single-testimonial::before {
opacity: 1;
}
.swiper-testimonails-style3 .swiper-slide-active .single-testimonial .quotes-area svg path, .swiper-testimonails-style5 .swiper-slide-active .single-testimonial .quotes-area svg path {
fill: #FFFFFF;
}
.swiper-testimonails-style3 .swiper-slide-active .single-testimonial .disc, .swiper-testimonails-style5 .swiper-slide-active .single-testimonial .disc {
color: #fff;
}
.swiper-testimonails-style3 .swiper-slide-active .single-testimonial .author-area .title, .swiper-testimonails-style3 .swiper-slide-active .single-testimonial .author-area span, .swiper-testimonails-style5 .swiper-slide-active .single-testimonial .author-area .title, .swiper-testimonails-style5 .swiper-slide-active .single-testimonial .author-area span {
color: #fff;
}
.swiper-testimonails-style3 .single-testimonial, .swiper-testimonails-style5 .single-testimonial {
transition: all 0.3s ease-in;
padding: 40px;
border: 1px solid #EAEFFF;
border-radius: 10px;
background: var(--testimonial-single-bg);
position: relative;
z-index: 1;
}
.swiper-testimonails-style3 .single-testimonial .rating i, .swiper-testimonails-style5 .single-testimonial .rating i {
color: var(--color-third);
}
.swiper-testimonails-style3 .single-testimonial .disc, .swiper-testimonails-style5 .single-testimonial .disc {
margin-top: 30px;
margin-bottom: 30px;
color: var(--color-secondary);
font-size: 20px;
font-weight: var(--medium);
font-family: var(--font-secondary);
}
.swiper-testimonails-style3 .single-testimonial .author-area, .swiper-testimonails-style5 .single-testimonial .author-area {
display: flex;
align-items: center;
right: 50px;
border-radius: 5px;
gap: 15px;
}
.swiper-testimonails-style3 .single-testimonial .author-area .thumbnail, .swiper-testimonails-style5 .single-testimonial .author-area .thumbnail {
height: 50px;
min-width: 50px;
border-radius: 50%;
overflow: hidden;
display: inline-block;
}
.swiper-testimonails-style3 .single-testimonial .author-area .thumbnail img, .swiper-testimonails-style5 .single-testimonial .author-area .thumbnail img {
padding: 5px;
border-radius: 50%;
border: 1px solid #E3E3E3;
}
.swiper-testimonails-style3 .single-testimonial .author-area .information-area .title, .swiper-testimonails-style5 .single-testimonial .author-area .information-area .title {
margin-bottom: 0px;
font-size: 20px;
font-weight: var(--semibold);
}
.swiper-testimonails-style3 .single-testimonial .author-area .information-area span, .swiper-testimonails-style5 .single-testimonial .author-area .information-area span {
font-style: normal;
font-weight: 400;
line-height: 24px;
}
.swiper-testimonails-style3 .single-testimonial:hover .disc, .swiper-testimonails-style5 .single-testimonial:hover .disc {
color: #fff;
}
.swiper-testimonails-style3 .single-testimonial:hover .author-area .title, .swiper-testimonails-style3 .single-testimonial:hover .author-area span, .swiper-testimonails-style5 .single-testimonial:hover .author-area .title, .swiper-testimonails-style5 .single-testimonial:hover .author-area span {
color: #fff;
}
.swiper-testimonails-style3 .swiper-pagination, .swiper-testimonails-style5 .swiper-pagination {
position: relative;
margin-top: 40px;
}
.swiper-testimonails-style3 .swiper-pagination .swiper-pagination-bullet, .swiper-testimonails-style5 .swiper-pagination .swiper-pagination-bullet {
height: 10px;
width: 10px;
border-radius: 50%;
border: 1px solid #D4DCFF;
background: transparent;
opacity: 1;
margin: 0;
transition: all 0.3s ease;
}
.swiper-testimonails-style3 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active, .swiper-testimonails-style5 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
background: var(--color-secondary);
border-color: var(--color-secondary);
}
.swiper-testimonails-style4 .swiper-pagination, .swiper-testimonails-style6 .swiper-pagination {
position: relative;
bottom: 0;
}
.swiper-testimonails-style4 .testimonial-slider-nav .swiper-button-next,
.swiper-testimonails-style4 .testimonial-slider-nav .swiper-button-prev, .swiper-testimonails-style6 .testimonial-slider-nav .swiper-button-next,
.swiper-testimonails-style6 .testimonial-slider-nav .swiper-button-prev {
left: auto;
top: -120px;
transition: all 0.3s ease-in;
height: 50px !important;
width: 50px !important;
border-radius: 6px;
border: 1px solid #147BFF;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
z-index: 2;
color: var(--color-white);
background: transparent;
}
.swiper-testimonails-style4 .testimonial-slider-nav .swiper-button-next:hover,
.swiper-testimonails-style4 .testimonial-slider-nav .swiper-button-prev:hover, .swiper-testimonails-style6 .testimonial-slider-nav .swiper-button-next:hover,
.swiper-testimonails-style6 .testimonial-slider-nav .swiper-button-prev:hover {
background: var(--color-third);
border-color: #147BFF;
color: var(--color-secondary);
}
.swiper-testimonails-style4 .testimonial-slider-nav .swiper-button-next, .swiper-testimonails-style6 .testimonial-slider-nav .swiper-button-next {
right: 0%;
}
.swiper-testimonails-style4 .testimonial-slider-nav .swiper-button-prev, .swiper-testimonails-style6 .testimonial-slider-nav .swiper-button-prev {
right: 5%;
margin-right: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
.swiper-testimonails-style4 .testimonial-slider-nav .swiper-button-next, .swiper-testimonails-style4 .testimonial-slider-nav .swiper-button-prev, .swiper-testimonails-style6 .testimonial-slider-nav .swiper-button-next, .swiper-testimonails-style6 .testimonial-slider-nav .swiper-button-prev {
top: -40px !important;
width: 40px !important;
height: 40px !important;
}
.swiper-testimonails-style4 .testimonial-slider-nav .swiper-button-prev, .swiper-testimonails-style6 .testimonial-slider-nav .swiper-button-prev {
right: 8%;
}
}
.swiper-testimonails-style4 .single-testimonial, .swiper-testimonails-style6 .single-testimonial {
border-radius: 20px;
position: relative;
z-index: 2;
padding: 60px 90px;
text-align: center;
background: linear-gradient(113deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 110.84%);
-webkit-backdrop-filter: blur(21px);
backdrop-filter: blur(21px);
border: 1px solid #C2DAF9;
}
@media only screen and (max-width: 767px) {
.swiper-testimonails-style4 .single-testimonial, .swiper-testimonails-style6 .single-testimonial {
padding: 30px !important;
}
}
.swiper-testimonails-style4 .single-testimonial .quotes-area, .swiper-testimonails-style6 .single-testimonial .quotes-area {
margin-bottom: 30px;
}
.swiper-testimonails-style4 .single-testimonial .rating, .swiper-testimonails-style6 .single-testimonial .rating {
margin-bottom: 30px;
}
.swiper-testimonails-style4 .single-testimonial .rating i, .swiper-testimonails-style6 .single-testimonial .rating i {
color: var(--color-white);
}
.swiper-testimonails-style4 .single-testimonial .disc, .swiper-testimonails-style6 .single-testimonial .disc {
font-size: 24px;
font-family: var(--font-secondary);
font-weight: var(--medium);
line-height: 34px;
color: var(--color-white);
margin-bottom: 30px;
}
.swiper-testimonails-style4 .single-testimonial .author-area, .swiper-testimonails-style6 .single-testimonial .author-area {
display: flex;
align-items: center;
justify-content: center;
right: 50px;
border-radius: 5px;
gap: 15px;
}
.swiper-testimonails-style4 .single-testimonial .author-area .thumbnail, .swiper-testimonails-style6 .single-testimonial .author-area .thumbnail {
height: 50px;
min-width: 50px;
border-radius: 50%;
overflow: hidden;
display: inline-block;
}
.swiper-testimonails-style4 .single-testimonial .author-area .thumbnail img, .swiper-testimonails-style6 .single-testimonial .author-area .thumbnail img {
padding: 5px;
border-radius: 50%;
border: 1px solid #E3E3E3;
}
.swiper-testimonails-style4 .single-testimonial .author-area .information-area .title, .swiper-testimonails-style6 .single-testimonial .author-area .information-area .title {
margin-bottom: 0px;
font-size: 20px;
font-weight: var(--semibold);
}
.swiper-testimonails-style4 .single-testimonial .author-area .information-area span, .swiper-testimonails-style6 .single-testimonial .author-area .information-area span {
font-style: normal;
font-weight: 400;
line-height: 24px;
}
.swiper-testimonails-style4 .testimonial-slider-nav {
position: absolute;
right: 50%;
top: 0%;
max-width: 1350px;
width: 100%;
transform: translateX(50%);
margin-right: 20px;
}
.swiper-testimonails-style5 .swiper-pagination .swiper-pagination-bullet {
height: 6px;
width: 20px;
border-radius: 0;
border: none;
background: #000;
opacity: 0.2;
margin: 0 4px !important;
}
.swiper-testimonails-style5 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
background: var(--color-primary);
opacity: 1;
}
.swiper-testimonails-style5 .single-testimonial .overlay-img-hover {
position: absolute;
z-index: 3;
}
.swiper-testimonails-style5 .single-testimonial::before {
position: absolute;
content: "";
background: linear-gradient(180deg, #D8EAFF 0%, #F6F6F6 100%);
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 10px;
z-index: -2;
transition: all 0.3s;
opacity: 1;
border-bottom: 5px solid #CCE4FF;
}
.swiper-testimonails-style5 .single-testimonial::after {
position: absolute;
content: "";
background: linear-gradient(180deg, #187EFF 0%, #0445C5 100%, #044DDF 100%);
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 10px;
z-index: -2;
opacity: 0;
transition: all 0.3s;
border-bottom: 5px solid #013396;
}
.swiper-testimonails-style5 .single-testimonial:hover {
background: unset;
}
.swiper-testimonails-style5 .single-testimonial:hover::before {
opacity: 0;
}
.swiper-testimonails-style5 .single-testimonial:hover::after {
opacity: 1;
}
.swiper-testimonails-style5 .swiper-slide-active .single-testimonial::after {
opacity: 1;
}
.swiper-testimonails-style6 .testimonial-slider-nav .swiper-button-next,
.swiper-testimonails-style6 .testimonial-slider-nav .swiper-button-prev {
top: 50%;
color: var(--color-secondary);
background: #F3F8FF;
border: none;
height: 60px;
width: 60px;
}
.swiper-testimonails-style6 .testimonial-slider-nav .swiper-button-next {
right: 50px;
}
.swiper-testimonails-style6 .testimonial-slider-nav .swiper-button-prev {
left: 50px;
}
.swiper-testimonails-style6 .swiper-pagination {
margin-top: 20px;
}
.swiper-testimonails-style6 .swiper-pagination .swiper-pagination-bullet {
height: 8px;
width: 8px;
border-radius: 0;
border: 1px solid #E9EDFF;
background: transparent;
opacity: 1;
margin: 0;
transition: all 0.3s ease;
}
.swiper-testimonails-style6 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
width: 20px;
background: var(--color-secondary);
border-color: var(--color-secondary);
}  .react-video {
width: -moz-max-content;
width: max-content;
}
.react-video .video-title {
transition: var(--transition);
}
.react-video.style1 {
display: flex;
align-items: center;
gap: 15px;
}
.react-video.style1 .play-btn {
display: flex;
align-items: center;
justify-content: center;
height: 50px;
width: 50px;
border-radius: 50%;
border: 1px solid var(--color-white);
color: var(--color-white);
}
.rts-domain-finder.style-one .domain-finder-bg, .rts-domain-finder.style-two .domain-finder-bg, .rts-domain-finder.style-three .domain-finder-bg {
background: var(--primary-gradient);
border-radius: 20px;
padding: 80px;
color: var(--body-bg);
text-align: center;
}
@media (max-width: 768px) {
.rts-domain-finder.style-one .domain-finder-bg, .rts-domain-finder.style-two .domain-finder-bg, .rts-domain-finder.style-three .domain-finder-bg {
padding: 60px 40px;
}
}
@media (max-width: 768px) {
.rts-domain-finder.style-one .domain-finder-bg, .rts-domain-finder.style-two .domain-finder-bg, .rts-domain-finder.style-three .domain-finder-bg {
padding: 40px 20px;
}
}
.rts-domain-finder.style-one .content h3, .rts-domain-finder.style-two .content h3, .rts-domain-finder.style-three .content h3 {
font-size: 36px;
font-weight: var(--bold);
display: inline-block;
margin-bottom: 50px;
text-transform: capitalize;
}
@media (max-width: 991px) {
.rts-domain-finder.style-one .content h3, .rts-domain-finder.style-two .content h3, .rts-domain-finder.style-three .content h3 {
font-size: 32px;
margin-bottom: 30px;
}
}
@media (max-width: 768px) {
.rts-domain-finder.style-one .content h3, .rts-domain-finder.style-two .content h3, .rts-domain-finder.style-three .content h3 {
font-size: 24px;
}
}
.rts-domain-finder.style-one .content form.domain-checker, .rts-domain-finder.style-two .content form.domain-checker, .rts-domain-finder.style-three .content form.domain-checker {
position: relative;
max-width: -moz-max-content;
max-width: max-content;
margin: auto;
}
@media (max-width: 768px) {
.rts-domain-finder.style-one .content form.domain-checker, .rts-domain-finder.style-two .content form.domain-checker, .rts-domain-finder.style-three .content form.domain-checker {
flex-direction: column;
padding: 25px;
}
}
.rts-domain-finder.style-one .content form.domain-checker input, .rts-domain-finder.style-two .content form.domain-checker input, .rts-domain-finder.style-three .content form.domain-checker input {
background: var(--body-bg);
color: var(--btc);
padding: 17px 200px 17px 30px;
border-radius: 50px;
border: inherit;
width: 870px;
height: unset;
margin: 0 auto;
position: relative;
}
.rts-domain-finder.style-one .content form.domain-checker input:focus, .rts-domain-finder.style-one .content form.domain-checker input:active, .rts-domain-finder.style-two .content form.domain-checker input:focus, .rts-domain-finder.style-two .content form.domain-checker input:active, .rts-domain-finder.style-three .content form.domain-checker input:focus, .rts-domain-finder.style-three .content form.domain-checker input:active {
border: inherit;
}
@media (max-width: 768px) {
.rts-domain-finder.style-one .content form.domain-checker input, .rts-domain-finder.style-two .content form.domain-checker input, .rts-domain-finder.style-three .content form.domain-checker input {
width: 100%;
max-width: 100%;
padding: 15px 90px;
}
}
.rts-domain-finder.style-one .content form.domain-checker button[type=submit], .rts-domain-finder.style-two .content form.domain-checker button[type=submit], .rts-domain-finder.style-three .content form.domain-checker button[type=submit] {
width: auto;
padding: 10px;
border-radius: 50px;
background: var(--color-secondary);
color: var(--body-bg);
font-weight: var(--bold);
text-transform: capitalize;
position: absolute;
right: 7px;
top: 50%;
transform: translateY(-50%);
transition: var(--transition);
}
.rts-domain-finder.style-one .content form.domain-checker button[type=submit]:hover, .rts-domain-finder.style-two .content form.domain-checker button[type=submit]:hover, .rts-domain-finder.style-three .content form.domain-checker button[type=submit]:hover {
background: var(--color-third);
color: var(--color-secondary);
}
@media (max-width: 768px) {
.rts-domain-finder.style-one .content form.domain-checker button[type=submit], .rts-domain-finder.style-two .content form.domain-checker button[type=submit], .rts-domain-finder.style-three .content form.domain-checker button[type=submit] {
width: 100%;
padding: 15px !important;
}
}
@media (max-width: 450px) {
.rts-domain-finder.style-one .content form.domain-checker button[type=submit], .rts-domain-finder.style-two .content form.domain-checker button[type=submit], .rts-domain-finder.style-three .content form.domain-checker button[type=submit] {
font-size: 14px;
}
}
.rts-domain-finder.style-one .content .search-results, .rts-domain-finder.style-two .content .search-results, .rts-domain-finder.style-three .content .search-results {
margin: auto;
width: -moz-fit-content;
width: fit-content;
display: flex;
justify-content: center;
flex-direction: column;
margin-top: 10px;
}
.rts-domain-finder.style-one .content .search-results .alert i, .rts-domain-finder.style-two .content .search-results .alert i, .rts-domain-finder.style-three .content .search-results .alert i {
margin-right: 10px;
}
.rts-domain-finder.style-one .content .search-results .alert .rts-btn, .rts-domain-finder.style-two .content .search-results .alert .rts-btn, .rts-domain-finder.style-three .content .search-results .alert .rts-btn {
margin-left: 15px;
}
.rts-domain-finder.style-one .content .search-results .ajax-loader, .rts-domain-finder.style-two .content .search-results .ajax-loader, .rts-domain-finder.style-three .content .search-results .ajax-loader {
display: none;
justify-content: center;
}
.rts-domain-finder.style-one .content .search-results .ajax-loader img, .rts-domain-finder.style-two .content .search-results .ajax-loader img, .rts-domain-finder.style-three .content .search-results .ajax-loader img {
width: 40px;
}
.rts-domain-finder.style-one .content .search-results .available-domain-label, .rts-domain-finder.style-two .content .search-results .available-domain-label, .rts-domain-finder.style-three .content .search-results .available-domain-label {
color: #fff;
}
.rts-domain-finder.style-one .content .compare, .rts-domain-finder.style-two .content .compare, .rts-domain-finder.style-three .content .compare {
margin-top: 30px;
}
.rts-domain-finder.style-one .content .compare__list ul, .rts-domain-finder.style-two .content .compare__list ul, .rts-domain-finder.style-three .content .compare__list ul {
padding: 0;
margin: 0;
list-style: none;
display: flex;
justify-content: center;
gap: 35px;
flex-wrap: wrap;
}
@media (max-width: 768px) {
.rts-domain-finder.style-one .content .compare__list ul, .rts-domain-finder.style-two .content .compare__list ul, .rts-domain-finder.style-three .content .compare__list ul {
gap: 20px;
}
}
@media (max-width: 450px) {
.rts-domain-finder.style-one .content .compare__list ul, .rts-domain-finder.style-two .content .compare__list ul, .rts-domain-finder.style-three .content .compare__list ul {
gap: 15px;
}
}
.rts-domain-finder.style-one .content .compare__list ul li, .rts-domain-finder.style-two .content .compare__list ul li, .rts-domain-finder.style-three .content .compare__list ul li {
color: #fff;
font-weight: var(--bold);
}
.rts-domain-finder.style-one .content .compare__list ul li:first-child, .rts-domain-finder.style-two .content .compare__list ul li:first-child, .rts-domain-finder.style-three .content .compare__list ul li:first-child {
font-weight: var(--medium);
}
.rts-domain-finder.style-one .content .compare__list ul li .ext, .rts-domain-finder.style-two .content .compare__list ul li .ext, .rts-domain-finder.style-three .content .compare__list ul li .ext {
text-transform: uppercase;
color: var(--color-third);
text-decoration: underline;
}
.rts-domain-finder.style-two .content form.domain-checker, .rts-domain-finder.style-three .content form.domain-checker, .rts-domain-finder.style-four .content form.domain-checker {
display: flex;
align-items: center;
gap: 15px;
}
.rts-domain-finder.style-two .content form.domain-checker input, .rts-domain-finder.style-three .content form.domain-checker input, .rts-domain-finder.style-four .content form.domain-checker input {
padding: 18px 24px;
border-radius: 6px;
width: 600px;
}
.rts-domain-finder.style-two .content form.domain-checker button[type=submit], .rts-domain-finder.style-three .content form.domain-checker button[type=submit], .rts-domain-finder.style-four .content form.domain-checker button[type=submit] {
padding: 17px 35px;
border-radius: 6px;
max-width: 190px;
position: relative;
transform: unset;
background: var(--color-third);
color: var(--color-secondary);
}
.rts-domain-finder.style-two .content form.domain-checker button[type=submit]:hover, .rts-domain-finder.style-three .content form.domain-checker button[type=submit]:hover, .rts-domain-finder.style-four .content form.domain-checker button[type=submit]:hover {
color: var(--color-white);
background: var(--color-secondary);
}
@media (max-width: 768px) {
.rts-domain-finder.style-two .content form.domain-checker button[type=submit], .rts-domain-finder.style-three .content form.domain-checker button[type=submit], .rts-domain-finder.style-four .content form.domain-checker button[type=submit] {
width: 100%;
}
}
@media (max-width: 450px) {
.rts-domain-finder.style-two .content form.domain-checker button[type=submit], .rts-domain-finder.style-three .content form.domain-checker button[type=submit], .rts-domain-finder.style-four .content form.domain-checker button[type=submit] {
font-size: 14px;
}
}
.rts-domain-finder.style-two .content .search-results, .rts-domain-finder.style-three .content .search-results, .rts-domain-finder.style-four .content .search-results {
display: flex;
justify-content: center;
margin-top: 10px;
}
.rts-domain-finder.style-two .content .search-results .alert i, .rts-domain-finder.style-three .content .search-results .alert i, .rts-domain-finder.style-four .content .search-results .alert i {
margin-right: 10px;
}
.rts-domain-finder.style-two .content .search-results .alert .rts-btn, .rts-domain-finder.style-three .content .search-results .alert .rts-btn, .rts-domain-finder.style-four .content .search-results .alert .rts-btn {
margin-left: 15px;
}
.rts-domain-finder.style-two .content .search-results .ajax-loader, .rts-domain-finder.style-three .content .search-results .ajax-loader, .rts-domain-finder.style-four .content .search-results .ajax-loader {
display: none;
}
.rts-domain-finder.style-two .content .search-results .ajax-loader img, .rts-domain-finder.style-three .content .search-results .ajax-loader img, .rts-domain-finder.style-four .content .search-results .ajax-loader img {
width: 40px;
}
.rts-domain-finder.style-two .content .compare, .rts-domain-finder.style-three .content .compare, .rts-domain-finder.style-four .content .compare {
margin-top: 30px;
}
.rts-domain-finder.style-two .content .compare__list ul, .rts-domain-finder.style-three .content .compare__list ul, .rts-domain-finder.style-four .content .compare__list ul {
display: flex;
gap: 20px;
justify-content: center;
margin-top: 30px;
flex-wrap: wrap;
}
@media (max-width: 768px) {
.rts-domain-finder.style-two .content .compare__list ul, .rts-domain-finder.style-three .content .compare__list ul, .rts-domain-finder.style-four .content .compare__list ul {
gap: 20px;
}
}
@media (max-width: 450px) {
.rts-domain-finder.style-two .content .compare__list ul, .rts-domain-finder.style-three .content .compare__list ul, .rts-domain-finder.style-four .content .compare__list ul {
gap: 15px;
}
}
.rts-domain-finder.style-two .content .compare__list ul li, .rts-domain-finder.style-three .content .compare__list ul li, .rts-domain-finder.style-four .content .compare__list ul li {
background: rgba(255, 255, 255, 0.05);
padding: 10px 20px;
display: inline-block;
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 6px;
}
.rts-domain-finder.style-two .content .compare__list ul li .ext, .rts-domain-finder.style-three .content .compare__list ul li .ext, .rts-domain-finder.style-four .content .compare__list ul li .ext {
text-transform: unset;
text-decoration: underline;
font-size: 20px;
font-weight: var(--bold);
margin-bottom: 5px;
color: var(--color-white);
}
.rts-domain-finder.style-three .content, .rts-domain-finder.style-four .content {
justify-content: center;
align-items: center;
display: flex;
flex-direction: column;
}
.rts-domain-finder.style-three .content form.domain-checker, .rts-domain-finder.style-four .content form.domain-checker {
gap: 0;
}
@media (max-width: 768px) {
.rts-domain-finder.style-three .content form.domain-checker, .rts-domain-finder.style-four .content form.domain-checker {
padding: 0;
margin: 0;
width: 100%;
flex-direction: row;
}
}
.rts-domain-finder.style-three .content form.domain-checker input, .rts-domain-finder.style-four .content form.domain-checker input {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
height: 56px;
width: 520px;
border: none;
}
.rts-domain-finder.style-three .content form.domain-checker .tld-selector, .rts-domain-finder.style-four .content form.domain-checker .tld-selector {
display: flex;
align-items: center;
}
.rts-domain-finder.style-three .content form.domain-checker .tld-selector .nice-select.tld__select, .rts-domain-finder.style-four .content form.domain-checker .tld-selector .nice-select.tld__select {
padding: 8px 27px;
border-radius: 0;
border: none;
display: flex;
height: 56px;
}
.rts-domain-finder.style-three .content form.domain-checker .tld-selector .nice-select.tld__select ul, .rts-domain-finder.style-four .content form.domain-checker .tld-selector .nice-select.tld__select ul {
margin-left: 0;
}
.rts-domain-finder.style-three .content form.domain-checker .tld-selector .nice-select.tld__select::after, .rts-domain-finder.style-four .content form.domain-checker .tld-selector .nice-select.tld__select::after {
border-color: currentColor;
}
.rts-domain-finder.style-three .content form.domain-checker .tld-selector button[type=submit], .rts-domain-finder.style-four .content form.domain-checker .tld-selector button[type=submit] {
right: 0;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
padding: 16px 35px;
height: 56px;
border: none;
}
.rts-domain-finder.style-three .content .compare ul, .rts-domain-finder.style-four .content .compare ul {
margin: 0;
gap: 10px;
}
.rts-domain-finder.style-three .content .compare ul li, .rts-domain-finder.style-four .content .compare ul li {
background: rgba(255, 255, 255, 0.1);
padding: 3px 9px;
gap: 7px;
font-size: 16px;
font-weight: var(--medium);
display: flex;
}
.rts-domain-finder.style-three .content .compare ul li:first-child, .rts-domain-finder.style-four .content .compare ul li:first-child {
background: transparent;
color: var(--body-bg);
margin-bottom: 0;
display: flex;
align-items: center;
gap: 5px;
font-weight: var(--medium);
border: none;
}
@media (max-width: 768px) {
.rts-domain-finder.style-three .content .compare ul li:first-child, .rts-domain-finder.style-four .content .compare ul li:first-child {
justify-content: center;
width: 100%;
}
}
.rts-domain-finder.style-three .content .compare ul li .ext, .rts-domain-finder.style-four .content .compare ul li .ext {
font-size: 16px;
text-decoration: none;
margin-bottom: 0;
}
.rts-domain-finder.style-four .content form.domain-checker input {
background: var(--color-white);
}
.rts-domain-finder.style-four .content .compare {
margin-top: 30px;
}
.rts-domain-finder.style-four .content .compare__list ul {
display: flex;
gap: 20px;
justify-content: center;
margin-top: 0;
flex-wrap: wrap;
}
@media (max-width: 768px) {
.rts-domain-finder.style-four .content .compare__list ul {
gap: 20px;
}
}
@media (max-width: 450px) {
.rts-domain-finder.style-four .content .compare__list ul {
gap: 15px;
}
}
.rts-domain-finder.style-four .content .compare__list ul li {
background: rgba(255, 255, 255, 0.05);
padding: 10px 20px;
display: inline-block;
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 6px;
}
.rts-domain-finder.style-four .content .compare__list ul li:first-child {
background: transparent;
color: var(--body-bg);
margin-bottom: 0;
display: flex;
align-items: center;
gap: 5px;
font-weight: var(--medium);
border: none;
}
@media (max-width: 768px) {
.rts-domain-finder.style-four .content .compare__list ul li:first-child {
justify-content: center;
width: 100%;
}
}
.rts-domain-finder.style-four .content .compare__list ul li .ext {
text-transform: unset;
text-decoration: underline;
font-size: 20px;
font-weight: var(--bold);
margin-bottom: 5px;
color: var(--color-white);
}
@keyframes pulse-border {
0% {
transform: scale(100%);
opacity: 1;
}
100% {
transform: scale(350%);
opacity: 0;
}
}
.rts-data-center {
position: relative;
background: var(--data-center-bg);
}
@media (max-width: 768px) {
.rts-data-center .rts-section__title {
font-size: 30px;
}
}
@media (max-width: 576px) {
.rts-data-center .rts-section__title {
font-size: 24px;
}
}
.rts-data-center__location {
position: relative;
}
.rts-data-center__location img {
width: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.rts-data-center__location .round-shape {
padding: 0;
margin: 0;
}
.rts-data-center__location .round-shape li {
position: absolute;
text-align: center;
list-style: none;
}
.rts-data-center__location .round-shape li .tolltip {
font-size: 16px;
cursor: pointer;
}
.rts-data-center__location .round-shape li .tooltip-inner {
background: none !important;
color: var(--color-secondary);
font-size: 14px;
padding: 15px;
opacity: 1 !important;
left: -100px;
min-width: -moz-max-content;
min-width: max-content;
position: relative;
margin: 0 auto;
text-align: left;
border-radius: 4px;
}
.rts-data-center__location .round-shape li:nth-child(1) {
top: 15.5%;
left: 17%;
}
@media (max-width: 768px) {
.rts-data-center__location .round-shape li:nth-child(1) {
left: 16%;
}
}
.rts-data-center__location .round-shape li:nth-child(2) {
top: 25.5%;
left: 47.5%;
}
@media (max-width: 768px) {
.rts-data-center__location .round-shape li:nth-child(2) {
left: 46.5%;
}
}
.rts-data-center__location .round-shape li:nth-child(3) {
top: 19%;
right: 20%;
}
@media (max-width: 768px) {
.rts-data-center__location .round-shape li:nth-child(3) {
right: 19%;
}
}
.rts-data-center__location .round-shape li:nth-child(4) {
top: 36.4%;
left: 17.6%;
}
@media (max-width: 768px) {
.rts-data-center__location .round-shape li:nth-child(4) {
left: 16.6%;
}
}
.rts-data-center__location .round-shape li:nth-child(5) {
top: 44%;
left: 52.2%;
}
@media (max-width: 768px) {
.rts-data-center__location .round-shape li:nth-child(5) {
left: 51.2%;
}
}
.rts-data-center__location .round-shape li:nth-child(6) {
top: 47.5%;
right: 31.2%;
}
@media (max-width: 768px) {
.rts-data-center__location .round-shape li:nth-child(6) {
right: 30.2%;
}
}
.rts-data-center__location .round-shape li:nth-child(7) {
top: 34%;
right: 24%;
}
@media (max-width: 768px) {
.rts-data-center__location .round-shape li:nth-child(7) {
right: 23%;
}
}
.rts-data-center__location .round-shape li:nth-child(8) {
bottom: 31.3%;
left: 28.9%;
}
@media (max-width: 768px) {
.rts-data-center__location .round-shape li:nth-child(8) {
bottom: 27.3%;
left: 27.9%;
}
}
.rts-data-center__location .round-shape li:nth-child(9) {
bottom: 16.3%;
left: 51%;
}
@media (max-width: 768px) {
.rts-data-center__location .round-shape li:nth-child(9) {
bottom: 12.3%;
left: 50%;
}
}
.rts-data-center__location .round-shape li:nth-child(10) {
bottom: 18.7%;
right: 16.5%;
}
@media (max-width: 768px) {
.rts-data-center__location .round-shape li:nth-child(10) {
bottom: 14.7%;
right: 15.5%;
}
}
.rts-data-center__location .round-shape span {
width: 8px;
height: 8px;
border-radius: 50%;
background: #00B67A;
display: block;
position: relative;
margin: auto;
}
.rts-data-center__location .round-shape span::after {
content: "";
position: absolute;
width: 250%;
height: 250%;
border-radius: 50%;
border: 1px solid #00B67A;
top: 50%;
left: 50%;
animation: pulse-border 2s ease-out infinite;
}
.rts-data-center__location .round-shape img {
margin-top: 15px;
}
@media (max-width: 768px) {
.rts-data-center__location .round-shape img {
margin-top: 5px;
}
}
@media (max-width: 576px) {
.rts-data-center__location .round-shape img {
margin-top: 0;
width: 15px;
}
}
.rts-data-center .rts-shape__one {
height: 330px;
width: 65px;
background: var(--data-center-shape-small);
position: absolute;
bottom: 45%;
left: -4%;
transform: rotate(60deg);
z-index: -1;
}
.rts-data-center .rts-shape__two {
width: 356px;
height: 575px;
background: var(--data-center-shape-1);
position: absolute;
top: 30%;
left: -10%;
transform: rotate(60deg);
z-index: -1;
}
.rts-data-center .rts-shape__three {
width: 356px;
height: 575px;
background: var(--data-center-shape-1);
position: absolute;
top: 10%;
right: -10%;
transform: rotate(-120deg);
z-index: -1;
}
.rts-data-center .rts-shape__four {
height: 330px;
width: 65px;
background: var(--data-center-shape-small);
position: absolute;
bottom: 20%;
right: -4%;
transform: rotate(-120deg);
z-index: -1;
}
.reactheme-post-tab.style1 .rts-sidebar {
display: flex;
flex-direction: column;
gap: 40px;
position: sticky;
top: 120px;
}
.reactheme-post-tab.style1 .rts-sidebar .knowledge__tab__section {
border: 1px solid var(--light-border);
box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.05);
padding: 35px 30px;
border-radius: 6px;
}
.reactheme-post-tab.style1 .rts-sidebar .knowledge__tab__section .widget-title {
color: var(--color-secondary);
font-weight: 700;
margin-bottom: 30px;
text-transform: capitalize;
}
.reactheme-post-tab.style1 .rts-sidebar .knowledge__tab__section.category-widget .cat__counter {
counter-reset: cat-counter;
display: flex;
flex-direction: column;
gap: 10px;
margin-left: 0;
border: none;
}
.reactheme-post-tab.style1 .rts-sidebar .knowledge__tab__section.category-widget .single-cat .button-tab {
display: flex;
justify-content: space-between;
width: 100%;
font-family: var(--font-secondary);
font-weight: 600;
color: var(--color-secondary);
background: transparent;
transition: var(--transition);
line-height: 1;
font-size: 100%;
padding: 16px 20px;
border-radius: 4px;
border: 1px solid var(--light-border);
counter-increment: cat-counter;
align-items: center;
gap: 10px;
background: var(--color-white);
transition: var(--transition);
}
.reactheme-post-tab.style1 .rts-sidebar .knowledge__tab__section.category-widget .single-cat .button-tab .cat-title::before {
content: counter(cat-counter) ".";
font-family: var(--font-secondary);
font-weight: 600;
font-size: 16px;
margin-right: 10px;
}
.reactheme-post-tab.style1 .rts-sidebar .knowledge__tab__section.category-widget .single-cat .button-tab:hover {
background: var(--color-primary);
color: var(--color-white);
}
.reactheme-post-tab.style1 .rts-sidebar .knowledge__tab__section.category-widget .single-cat .button-tab:hover .button-tab {
color: currentColor;
}
.reactheme-post-tab.style1 .knowledge__content {
padding: 40px 40px 40px 40px;
border-radius: 6px;
border: 1px solid var(--light-border);
box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.05);
position: relative;
}
.reactheme-post-tab.style1 .knowledge__content .ajax-loader {
position: absolute;
left: 50%;
top: 30%;
display: none;
}
.reactheme-post-tab.style1 .knowledge__content .single-content {
overflow: hidden;
padding-bottom: 40px;
}
.reactheme-post-tab.style1 .knowledge__content .single-content:not(:last-child) {
border-bottom: 1px solid var(--light-border);
}
.reactheme-post-tab.style1 .knowledge__content .single-content:not(:first-child) {
margin-top: 40px;
}
.reactheme-post-tab.style1 .knowledge__content .single-content .category {
font-weight: 600;
color: var(--color-secondary);
line-height: 100%;
}
.reactheme-post-tab.style1 .knowledge__content .single-content .desc {
height: 80px;
overflow: hidden;
transition: height 0.4s ease-in-out;
margin-bottom: 10px;
}
.reactheme-post-tab.style1 .knowledge__content .single-content .desc.expanded {
height: 100vh;
overflow-y: auto;
}
.reactheme-post-tab.style1 .knowledge__content .single-content p.title {
color: var(--color-secondary);
margin-bottom: 10px;
display: flex;
}
.reactheme-post-tab.style1 .knowledge__content .single-content p.title span {
margin-right: 10px;
display: flex;
align-items: center;
}
.reactheme-post-tab.style1 .knowledge__content .single-content p.title span svg {
color: currentColor;
}
.reactheme-post-tab.style1 .knowledge__content .single-content p.title span svg path {
fill: currentColor;
}
.reactheme-post-tab.style1 .knowledge__content .single-content .btn-part a {
color: var(--color-primary);
}
.reactheme-post-tab.style1 .knowledge__content .load_more_post {
margin-top: 20px;
min-width: 200px;
justify-content: center;
}
.reactheme-post-tab.style1 .knowledge__content .load_more_post .ajax-spinner {
height: 15px;
margin-left: 10px;
}  .react-video {
width: -moz-max-content;
width: max-content;
}
.react-video .video-title {
transition: var(--transition);
}
.react-video.style1 {
display: flex;
align-items: center;
gap: 15px;
}
.react-video.style1 .play-btn {
display: flex;
align-items: center;
justify-content: center;
height: 50px;
width: 50px;
border-radius: 50%;
border: 1px solid var(--color-white);
color: var(--color-white);
}
.game-filter {
display: flex;
flex-wrap: wrap;
gap: 10px;
justify-content: center;
margin-bottom: 50px;
}
.game-filter button {
border-radius: 4px;
font-weight: 600;
font-size: 14px;
padding: 3px 14px;
margin-right: 7px;
color: #fff;
border: 1px solid #121833;
background: transparent;
display: inline-block;
font-family: "Inter";
width: auto;
}
.game-filter button:hover, .game-filter button.is-checked {
background: #FFC107;
color: #121833;
border: 1px solid transparent;
}
.rt-games .grid-item {
margin-bottom: 60px;
}
.rt-games .grid-item .game-item {
font-family: "Inter";
}
.rt-games .grid-item .game-item .game-img {
position: relative;
overflow: hidden;
border-radius: 10px;
border: 1px solid transparent;
}
.rt-games .grid-item .game-item .game-img .image-overlay .purchase-btn, .rt-games .grid-item .game-item .game-img .image-overlay .price-discount {
display: inline-block;
border-radius: 4px;
background: #FFC107;
font-weight: 600;
color: #121833;
text-align: center;
overflow: unset;
transition: 0.4s !important;
position: absolute;
transition: 0.5s;
opacity: 0;
}
.rt-games .grid-item .game-item .game-img .image-overlay .purchase-btn {
left: 50%;
bottom: -36px;
transform: translate(-50%, 10%);
min-width: 194px;
font-size: 16px;
padding: 8px 0;
}
.rt-games .grid-item .game-item .game-img .image-overlay .purchase-btn i {
font-size: 20px;
margin-right: 10px;
}
.rt-games .grid-item .game-item .game-img .image-overlay .purchase-btn svg {
width: 20px;
height: 20px;
margin-right: 10px;
}
.rt-games .grid-item .game-item .game-img .image-overlay .price-discount {
left: 20px;
top: -20px;
padding: 0px 10px;
font-size: 14px;
}
.rt-games .grid-item .game-item .game-img:hover {
border: 1px solid #FFC107;
}
.rt-games .grid-item .game-item .game-img:hover .image-overlay .purchase-btn {
opacity: 1;
bottom: 36px;
}
.rt-games .grid-item .game-item .game-img:hover .image-overlay .price-discount {
opacity: 1;
top: 20px;
}
.rt-games .grid-item .game-item .game-content {
margin-top: 36px;
}
.rt-games .grid-item .game-item .game-content .vertical-middle .title a {
color: #fff;
}
.rt-games .grid-item .game-item .game-content .vertical-middle .game-price {
display: flex;
align-items: center;
gap: 0 24px;
}
.rt-games .grid-item .game-item .game-content .vertical-middle .game-price span {
color: #fff;
font-weight: 500;
}
.rt-games .grid-item .game-item .game-content .vertical-middle .game-price span.current-price {
background: #FFC107;
color: #121833;
padding: 0px 10px;
border-radius: 4px;
display: inline-block;
}
.rt-games .grid-item .game-item .game-content .vertical-middle .game-price span.rating i {
font-size: 14px;
color: #FFC107;
}
.rt-game-breadcrumbs .g_bread_content .content_tag {
display: inline-block;
font-weight: 700;
border: 1px solid #fff;
padding: 0 15px 2px;
border-radius: 30px;
color: #fff;
font-size: 16px;
}
.rt-game-breadcrumbs .g_bread_content .content_tag a {
color: #fff;
}
.rt-game-breadcrumbs .g_bread_content .content_tag a :hover {
color: #FFC107;
}
.rt-game-breadcrumbs .g_bread_content .title {
color: #fff;
margin: 15px 0;
}
.rt-game-breadcrumbs .g_bread_content .bread_rating i {
color: #FFC107;
font-size: 16px;
}
select.rs-currency-switcher-select {
padding: 0;
}
.nice-select.rs-currency-switcher-select,
.nice-select.rs-currency-switcher-select.open {
height: 30px;
line-height: 30px;
padding-left: 0;
background: transparent;
border: none;
color: #fff;
}
.nice-select.rs-currency-switcher-select .list,
.nice-select.rs-currency-switcher-select.open .list {
background: #fff;
margin-left: 0;
border-radius: 0;
max-height: 80vh;
overflow: auto;
}
.nice-select.rs-currency-switcher-select .list li,
.nice-select.rs-currency-switcher-select.open .list li {
color: #181823;
height: 35px;
font-family: inter;
font-weight: 600;
border-bottom: 1px solid #DFDFDF;
}
.nice-select.rs-currency-switcher-select .list li:nth-child(even),
.nice-select.rs-currency-switcher-select.open .list li:nth-child(even) {
background: #F6F6F6;
}
.nice-select.rs-currency-switcher-select .list li.option.selected.focus,
.nice-select.rs-currency-switcher-select.open .list li.option.selected.focus {
background: transparent;
}
.nice-select.rs-currency-switcher-select::after,
.nice-select.rs-currency-switcher-select.open::after {
border-color: currentColor;
}
.header-inner.sticky .nice-select.rs-currency-switcher-select,
.header-inner.sticky .nice-select.rs-currency-switcher-select.open {
color: var(--btc);
} [color=third] {
color: var(--color-third) !important;
}
.white__bg {
background: var(--color-white);
}
.react-heading,
.rs-dual-heading {
position: relative;
}
.react-heading.title-border-yes .title,
.rs-dual-heading.title-border-yes .title {
border-bottom: 1px solid #F1F1F1;
padding-bottom: 20px;
}
.react-heading .title-inner,
.rs-dual-heading .title-inner {
position: relative;
z-index: 1;
}
.react-heading .title-inner > span,
.rs-dual-heading .title-inner > span {
font-size: 16px;
font-weight: 600;
font-family: var(--font-primary);
text-transform: uppercase;
line-height: 24px;
letter-spacing: 0.04em;
}
.react-heading .title-inner .sub-text,
.rs-dual-heading .title-inner .sub-text {
margin: 0 0 16px;
display: inline-block;
color: var(--color-secondary);
font-size: 15px;
line-height: 16px;
font-family: var(--font-primary);
font-weight: 600;
z-index: 1;
}
.react-heading .title-inner .sub-text.title-upper,
.rs-dual-heading .title-inner .sub-text.title-upper {
text-transform: uppercase;
}
.react-heading .title-inner .sub-text span.high_light_text,
.rs-dual-heading .title-inner .sub-text span.high_light_text {
font-size: 15px;
background: var(--color-primary);
border-radius: 3px;
margin-right: 6px;
font-weight: 600;
padding: 3px 7px;
}
.react-heading .title-inner.yes .title,
.rs-dual-heading .title-inner.yes .title {
color: rgba(0, 0, 0, 0.5);
line-height: 1;
color: #333;
-webkit-text-stroke: 1px white;
-webkit-text-fill-color: transparent;
}
.react-heading .title-inner .title,
.rs-dual-heading .title-inner .title {
margin-top: 8px;
margin-bottom: 20px;
z-index: 1;
}
.react-heading .title-inner .title.title-upper,
.rs-dual-heading .title-inner .title.title-upper {
text-transform: uppercase;
}
.react-heading .title-inner .title span,
.rs-dual-heading .title-inner .title span {
position: relative;
z-index: 1;
color: var(--color-primary);
}
.react-heading .title-inner .title .high_light_text,
.rs-dual-heading .title-inner .title .high_light_text {
color: var(--color-primary);
font-weight: 700;
}
.react-heading span.watermark,
.rs-dual-heading span.watermark {
font-size: 150px;
position: absolute;
left: 0;
top: 0;
text-transform: uppercase;
font-family: var(--font-primary);
font-weight: 700;
opacity: 0.06;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
height: 95px;
display: flex;
align-items: center;
-webkit-text-stroke: 1px #000000;
}
.react-heading .rt-button a,
.rs-dual-heading .rt-button a {
color: var(--color-white);
display: inline-block;
transition: all 0.3s ease 0s;
}
.react-heading .rt-button a:hover,
.rs-dual-heading .rt-button a:hover {
color: var(--color-primary);
}
.react-heading .rt-button a i,
.rs-dual-heading .rt-button a i {
display: inline-block;
margin-left: 10px;
color: var(--color-white);
height: 27px;
width: 27px;
background: var(--color-primary);
text-align: center;
border-radius: 5px;
font-size: 14px;
}
.react-heading.big .title-inner h2,
.rs-dual-heading.big .title-inner h2 {
font-size: 36px;
line-height: 44px;
}
.react-heading.big .description p,
.rs-dual-heading.big .description p {
font-size: 20px;
line-height: 32px;
}
.react-heading.style4 .title-inner .title,
.rs-dual-heading.style4 .title-inner .title {
margin-bottom: 8px;
}
.react-heading.style4 .title-inner .title-img,
.rs-dual-heading.style4 .title-inner .title-img {
margin-bottom: 12px;
}
.react-heading.style5 .sub-text,
.rs-dual-heading.style5 .sub-text {
display: inline-block;
}
.react-heading.style2,
.rs-dual-heading.style2 {
position: relative;
padding-bottom: 15px;
}
.react-heading.style2:after,
.rs-dual-heading.style2:after {
content: "";
position: absolute;
background: var(--color-primary);
width: 45px;
height: 2px;
left: 0;
bottom: 0;
z-index: 1;
transition: all 0.3s ease 0s;
}
.react-heading.style2:before,
.rs-dual-heading.style2:before {
content: "";
position: absolute;
background: var(--color-primary);
width: 13px;
height: 2px;
left: 48px;
bottom: 0;
z-index: 1;
transition: all 0.3s ease 0s;
}
.react-heading.style2.center:after,
.rs-dual-heading.style2.center:after {
transform: translateX(-50%);
left: 50%;
}
.react-heading.style2.right:after,
.rs-dual-heading.style2.right:after {
left: auto;
right: 0;
}
.react-heading.style2 h2,
.rs-dual-heading.style2 h2 {
margin-bottom: 12px;
}
.react-heading.style2 .description p,
.rs-dual-heading.style2 .description p {
margin-bottom: 12px;
}
.react-heading.style2.Lite:after,
.rs-dual-heading.style2.Lite:after {
background: #fff !important;
}
.react-heading.style2 .title:after,
.rs-dual-heading.style2 .title:after {
content: "";
position: absolute;
background: var(--color-primary);
width: 7px;
height: 2px;
left: 64px;
bottom: -15px;
z-index: 1;
transition: all 0.3s ease 0s;
}
.react-heading.style3,
.rs-dual-heading.style3 {
position: relative;
padding-bottom: 12px;
}
.react-heading.style3 h2,
.rs-dual-heading.style3 h2 {
margin-bottom: 12px;
}
.react-heading.style3 .sub-text,
.rs-dual-heading.style3 .sub-text {
position: relative;
padding-left: 48px;
display: inline-block;
}
.react-heading.style3 .sub-text:after,
.rs-dual-heading.style3 .sub-text:after {
content: "";
position: absolute;
background: currentColor;
width: 40px;
height: 1px;
left: 0;
top: 50%;
transform: translateY(-50%);
z-index: 1;
}
.react-heading.style3 .sub-text p,
.rs-dual-heading.style3 .sub-text p {
margin-bottom: 12px;
}
.react-heading.style3 .description p,
.rs-dual-heading.style3 .description p {
margin-bottom: 12px;
}
.react-heading.style3.Lite .description:after,
.rs-dual-heading.style3.Lite .description:after {
background: #fff !important;
}
.react-heading.style1,
.rs-dual-heading.style1 {
position: relative;
padding-bottom: 12px;
}
.react-heading.style1 h2,
.rs-dual-heading.style1 h2 {
margin-bottom: 12px;
}
.react-heading.style1 .description,
.rs-dual-heading.style1 .description {
position: relative;
padding-right: 80px;
}
.react-heading.style1 .description:after,
.rs-dual-heading.style1 .description:after {
content: "";
position: absolute;
border: 0;
width: 60px;
height: 2px;
background: var(--color-primary);
z-index: 9;
margin-left: 0;
right: 0;
top: 14px;
}
.react-heading.style1 .description p,
.rs-dual-heading.style1 .description p {
margin-bottom: 12px;
}
.react-heading.style1.Lite .description:after,
.rs-dual-heading.style1.Lite .description:after {
background: #fff !important;
}
.react-heading.style8,
.rs-dual-heading.style8 {
position: relative;
padding-bottom: 12px;
margin-bottom: 10px;
}
.react-heading.style8 .title-inner,
.rs-dual-heading.style8 .title-inner {
padding-left: 25px;
position: relative;
display: inline-block;
}
.react-heading.style8 .title-inner .sub-text,
.rs-dual-heading.style8 .title-inner .sub-text {
margin-bottom: 5px;
}
.react-heading.style8 .title-inner:after,
.rs-dual-heading.style8 .title-inner:after {
content: "";
position: absolute;
border: 0;
width: 2px;
height: 100%;
background: var(--color-primary);
z-index: 9;
margin-left: 0;
left: 0;
top: 0;
}
.react-heading.style8 .description,
.rs-dual-heading.style8 .description {
padding-left: 25px;
position: relative;
}
.react-heading.style8 .description:after,
.rs-dual-heading.style8 .description:after {
content: "";
position: absolute;
border: 0;
width: 2px;
height: 100%;
background: var(--color-primary);
z-index: 9;
margin-left: 0;
left: 0;
top: 0;
}
.react-heading.style8 h2,
.rs-dual-heading.style8 h2 {
margin-bottom: 5px;
}
.react-heading.style8.text-center .description,
.rs-dual-heading.style8.text-center .description {
padding-top: 15px;
padding-left: 0px;
}
.react-heading.style8.text-center .description:after,
.rs-dual-heading.style8.text-center .description:after {
display: none;
}
.react-heading.style8.Lite .title-inner:after,
.rs-dual-heading.style8.Lite .title-inner:after {
background: #fff;
}
.react-heading.style8.Lite .description:after,
.rs-dual-heading.style8.Lite .description:after {
background: #fff !important;
}
.react-heading.style6 .title-inner,
.rs-dual-heading.style6 .title-inner {
position: relative;
padding-bottom: 12px;
}
.react-heading.style6 .title-inner h2,
.rs-dual-heading.style6 .title-inner h2 {
margin-bottom: 12px;
}
.react-heading.style6 .title-inner .sub-text,
.rs-dual-heading.style6 .title-inner .sub-text {
position: relative;
padding-left: 14px;
}
.react-heading.style6 .title-inner .sub-text:after,
.rs-dual-heading.style6 .title-inner .sub-text:after {
content: "";
position: absolute;
background: var(--color-primary);
width: 2px;
height: 14px;
left: 0;
top: 1px;
z-index: 1;
}
.react-heading.style6 .title-inner .sub-text p,
.rs-dual-heading.style6 .title-inner .sub-text p {
margin-bottom: 12px;
}
.react-heading.style6.text-center .title-inner .sub-text, .react-heading.style6.text-right .title-inner .sub-text,
.rs-dual-heading.style6.text-center .title-inner .sub-text,
.rs-dual-heading.style6.text-right .title-inner .sub-text {
display: inline-block;
}
.react-heading.style6.text-center .sub-text,
.rs-dual-heading.style6.text-center .sub-text {
position: relative;
padding-left: 0px;
padding-top: 60px;
color: var(--color-secondary);
}
.react-heading.style6.text-center .sub-text:after,
.rs-dual-heading.style6.text-center .sub-text:after {
content: "";
width: 77px;
height: 2px;
position: absolute;
left: 50%;
top: 0;
margin-top: -1px;
width: 2px;
height: 50px;
}
.react-heading.style6.Lite .sub-text:after,
.rs-dual-heading.style6.Lite .sub-text:after {
background: #fff !important;
}
.react-heading.style6.dark .sub-text:after,
.rs-dual-heading.style6.dark .sub-text:after {
background: #232023 !important;
}
.react-heading.style4.left .title-inner .sub-text,
.rs-dual-heading.style4.left .title-inner .sub-text {
padding-left: 43px;
}
.react-heading.style4.left .title-inner .sub-text:before,
.rs-dual-heading.style4.left .title-inner .sub-text:before {
left: 0;
}
.react-heading.style4.right .title-inner .sub-text,
.rs-dual-heading.style4.right .title-inner .sub-text {
padding-right: 43px;
}
.react-heading.style4.right .title-inner .sub-text:after,
.rs-dual-heading.style4.right .title-inner .sub-text:after {
right: 0;
}
.react-heading.style4 .title-inner,
.rs-dual-heading.style4 .title-inner {
position: relative;
padding-bottom: 12px;
}
.react-heading.style4 .title-inner h2,
.rs-dual-heading.style4 .title-inner h2 {
margin-bottom: 12px;
display: block;
}
.react-heading.style4 .title-inner .sub-text,
.rs-dual-heading.style4 .title-inner .sub-text {
position: relative;
color: var(--color-secondary);
display: inline-block;
}
.react-heading.style4 .title-inner .sub-text:before, .react-heading.style4 .title-inner .sub-text:after,
.rs-dual-heading.style4 .title-inner .sub-text:before,
.rs-dual-heading.style4 .title-inner .sub-text:after {
content: "";
position: absolute;
border: 0;
width: 35px;
height: 2px;
background: var(--color-primary);
z-index: 9;
margin-left: 0;
left: -20px;
top: 12px;
}
.react-heading.style4 .title-inner .sub-text:before,
.rs-dual-heading.style4 .title-inner .sub-text:before {
left: -40px;
}
.react-heading.style4 .title-inner .sub-text:after,
.rs-dual-heading.style4 .title-inner .sub-text:after {
left: auto;
right: -40px;
}
.react-heading.style4 .title-inner .sub-text p,
.rs-dual-heading.style4 .title-inner .sub-text p {
margin-bottom: 12px;
}
.react-heading.style4.Lite .sub-text:before, .react-heading.style4.Lite .sub-text:after,
.rs-dual-heading.style4.Lite .sub-text:before,
.rs-dual-heading.style4.Lite .sub-text:after {
background: #fff !important;
}
.react-heading.style4.text-center .title-inner .sub-text, .react-heading.style4.text-right .title-inner .sub-text,
.rs-dual-heading.style4.text-center .title-inner .sub-text,
.rs-dual-heading.style4.text-right .title-inner .sub-text {
display: inline-block;
}
.react-heading.style7 .title-inner,
.rs-dual-heading.style7 .title-inner {
position: relative;
padding-bottom: 12px;
}
.react-heading.style7 .title-inner h2,
.rs-dual-heading.style7 .title-inner h2 {
margin-bottom: 12px;
}
.react-heading.style7 .title-inner .sub-text,
.rs-dual-heading.style7 .title-inner .sub-text {
position: relative;
padding-right: 65px;
display: inline-block;
color: var(--color-secondary);
}
.react-heading.style7 .title-inner .sub-text:after,
.rs-dual-heading.style7 .title-inner .sub-text:after {
content: "";
position: absolute;
border: 0;
width: 50px;
height: 2px;
background: var(--color-primary);
z-index: 9;
margin-left: 0;
right: 0;
top: 12px;
}
.react-heading.style7 .title-inner .sub-text p,
.rs-dual-heading.style7 .title-inner .sub-text p {
margin-bottom: 12px;
}
.react-heading.style7 .title-inner.Lite .sub-text:after,
.rs-dual-heading.style7 .title-inner.Lite .sub-text:after {
background: #fff !important;
}
.react-heading.style7 .title-inner.text-center .title-inner .sub-text, .react-heading.style7 .title-inner.text-right .title-inner .sub-text,
.rs-dual-heading.style7 .title-inner.text-center .title-inner .sub-text,
.rs-dual-heading.style7 .title-inner.text-right .title-inner .sub-text {
display: inline-block;
}
.react-heading.style9 .title-img img,
.rs-dual-heading.style9 .title-img img {
position: relative;
}
.react-heading.style9 .title-inner .title-img.top,
.rs-dual-heading.style9 .title-inner .title-img.top {
margin-bottom: 15px;
}
.react-heading.style9 .title-upper,
.rs-dual-heading.style9 .title-upper {
margin-bottom: 5px;
}
.react-heading.style9 .bottom-line .title,
.rs-dual-heading.style9 .bottom-line .title {
margin-bottom: 8px;
position: relative;
padding-bottom: 20px;
}
.react-heading.style9 .bottom-line .title:after,
.rs-dual-heading.style9 .bottom-line .title:after {
content: "";
position: absolute;
border: 0;
width: 80px;
height: 2px;
background: var(--color-primary);
z-index: 9;
margin-left: 0;
bottom: 0;
left: 0;
}
.react-heading.style9.text-center .bottom-line .title:after,
.rs-dual-heading.style9.text-center .bottom-line .title:after {
transform: translateX(-50%);
left: 50%;
}
.react-heading.style10,
.rs-dual-heading.style10 {
transform: rotate(-90deg) translatex(-50%);
}
.react-heading.style10.text-center,
.rs-dual-heading.style10.text-center {
text-align: left !important;
}
.react-heading.style10.text-center .title-inner,
.rs-dual-heading.style10.text-center .title-inner {
text-align: center;
}
.react-heading.style10.text-right,
.rs-dual-heading.style10.text-right {
text-align: left !important;
}
.react-heading.style10.text-right .title-inner,
.rs-dual-heading.style10.text-right .title-inner {
text-align: right;
}
.react-heading.style10 .title-inner,
.rs-dual-heading.style10 .title-inner {
display: inline-block;
transform-origin: left center 0;
}
.react-heading.style10 .title-inner .title,
.rs-dual-heading.style10 .title-inner .title {
white-space: nowrap;
position: relative;
}
.react-heading.style10 .description,
.rs-dual-heading.style10 .description {
display: inline-block;
}
.react-heading.style11,
.rs-dual-heading.style11 {
text-align: right !important;
}
.react-heading.style11.text-center,
.rs-dual-heading.style11.text-center {
text-align: right !important;
}
.react-heading.style11.text-center .title-inner,
.rs-dual-heading.style11.text-center .title-inner {
text-align: center;
}
.react-heading.style11.text-right,
.rs-dual-heading.style11.text-right {
text-align: right !important;
}
.react-heading.style11.text-right .title-inner,
.rs-dual-heading.style11.text-right .title-inner {
text-align: right;
}
.react-heading.style11 .title-inner,
.rs-dual-heading.style11 .title-inner {
transform: rotate(90deg);
display: inline-block;
}
.react-heading.style11 .description,
.rs-dual-heading.style11 .description {
transform: rotate(90deg);
display: inline-block;
}
.react-heading.style12 .sub-text,
.rs-dual-heading.style12 .sub-text {
display: inline-block;
position: relative;
}
.react-heading.style12 .sub-text:before,
.rs-dual-heading.style12 .sub-text:before {
content: "";
position: absolute;
background: #086ad8;
left: -15px;
top: 0px;
z-index: 1;
width: 2px;
height: 14px;
}
.react-heading.style12 .sub-text:after,
.rs-dual-heading.style12 .sub-text:after {
content: "";
position: absolute;
background: #086ad8;
right: -15px;
top: 0px;
z-index: 1;
width: 2px;
height: 14px;
}
.react-heading.style13 .title-inner .sub-text,
.rs-dual-heading.style13 .title-inner .sub-text {
position: relative;
display: unset;
padding: 0 10px;
}
.react-heading.style13 .title-inner .title span.watermark,
.rs-dual-heading.style13 .title-inner .title span.watermark {
-webkit-text-fill-color: transparent;
-webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: #777777;
opacity: 0.1;
}
.react-heading.style16 .sub-text-bg,
.rs-dual-heading.style16 .sub-text-bg {
background-size: cover;
display: inline-block;
}
.react-heading.style16 .sub-text,
.rs-dual-heading.style16 .sub-text {
font-size: 12px;
line-height: 26px;
margin-bottom: 0;
padding: 0 15px;
}
.react-heading.style16 .title,
.rs-dual-heading.style16 .title {
margin-top: 24px;
}
.list-style {
padding: 0;
margin: 0;
list-style: none;
}
.list-style li {
position: relative;
padding-left: 32px;
margin-bottom: 5px;
}
.list-style li:before {
content: "\f0a9";
font-family: FontAwesome;
position: absolute;
left: 0;
top: 0;
font-size: 20px;
}
.no-padding {
padding: 0 !important;
}
.rt-features-list li {
margin-top: 0 !important;
margin-bottom: 0 !important;
gap: 17px;
}
.rt-features-list.separator_yes {
position: relative;
}
.rt-features-list.separator_yes:after {
position: absolute;
content: "";
width: 1px;
height: 14px;
background: #F36464;
right: 0px;
top: 50%;
transform: translateY(-50%);
}
.img-border-radius img {
border-radius: 15px !important;
}
.menu-area .navbar ul > li > a span {
position: relative;
transition: 0.5s;
display: inline-block;
background: var(--color-primary);
color: #fff;
border-radius: 30px;
padding: 0 12px;
font-size: 12px;
font-weight: 700;
}
.metform-btn.metform-submit-btn {
width: 100%;
} .icon-button a {
background: var(--color-primary);
color: #fff;
padding: 3px 17px;
display: inline-block;
font-size: 20px;
margin-bottom: 25px;
border-radius: 18px;
}
.icon-button a:hover {
color: #fff;
background: var(--color-secondary);
}
.icon-button a i:before {
font-size: inherit;
}
.mfp-iframe-holder .mfp-close {
width: 30px !important;
height: 30px;
line-height: 30px;
border-radius: 15px;
}
.sticky_search i:before {
font-weight: 700 !important;
}
.rs-dual-heading .second_title {
color: var(--color-secondary);
}
.rs-image {
position: relative;
width: 100%;
height: 100%;
}
.rs-image.yes .veritcal {
animation-name: veritcal;
animation-timing-function: linear;
animation-duration: 12s;
animation-iteration-count: infinite;
}
@keyframes veritcal {
0% {
transform: translateY(0);
}
50% {
transform: translateY(100px);
}
100% {
transform: translateY(0);
}
}
.rs-image.yes .horizontal {
animation-name: horizontal;
animation-timing-function: linear;
animation-duration: 12s;
animation-iteration-count: infinite;
}
@keyframes horizontal {
0% {
transform: translateX(0);
}
50% {
transform: translateX(100px);
}
100% {
transform: translateX(0);
}
} .rt-features-list-content ul {
list-style: none;
margin: 0;
display: flex;
}
.rt-features-list-content ul li {
list-style: none;
display: flex;
align-items: center;
}
.rt-features-list-content ul li .icon i {
color: var(--color-secondary);
font-size: 16px;
display: inline-block;
}
.rt-features-list-content ul li .sub-text {
font-size: 16px;
line-height: 24px;
display: block;
font-weight: 600;
font-family: var(--font-primary);
margin-bottom: -3px;
color: var(--color-primary);
}
.rt-features-list-content ul li .text-heading {
font-weight: 500;
font-size: 20px;
line-height: 30px;
color: var(--color-secondary);
font-family: var(--font-primary);
transition: 0.3s;
display: inline-block;
}
.rt-features-list-content ul li .text-heading span {
display: block;
}
.rt-features-list-content ul li .message {
margin: 0;
}
.rt-features-list-content .separator_yes.rotate_yes:after {
top: -7px;
transform: skew(-10deg);
}
body button.metform-btn, body button.metform-btn:not(.toggle) {
background: var(--color-primary);
}
.rtelements-unique-slider.cta_bottom_border .grid-item.slick-slide {
position: relative;
}
.rtelements-unique-slider.cta_bottom_border .grid-item.slick-slide.slick-center:before, .rtelements-unique-slider.cta_bottom_border .grid-item.slick-slide:hover:before {
position: absolute;
content: "";
width: 90%;
height: 1px;
background-image: -webkit-linear-gradient(0deg, #43baff 0%, #7141b1 100%);
bottom: 0;
left: 5%;
} .swiper-button-prev,
.swiper-button-next {
background-image: none !important;
width: 40px;
height: 35px;
transition: all 0.5s;
}
.swiper-button-prev:after,
.swiper-button-next:after {
display: none !important;
content: "";
}
.swiper-button-prev:before,
.swiper-button-next:before {
content: "\e80f";
font-family: "rt-icons";
padding-right: 10px !important;
color: #040404;
position: absolute;
left: 13px;
bottom: 10px;
font-style: normal;
font-weight: lighter;
speak: never;
display: inline-block;
text-decoration: inherit;
width: 1em;
margin-right: 0.2em;
text-align: center;
font-variant: normal;
text-transform: none;
line-height: 1em;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-size: 16px;
font-weight: bold;
}
.swiper-button-prev:before {
content: "\e80d";
}
.react-heading .title-inner .sub-text span {
border-radius: 50px;
}
.menu-area.separator_yes {
position: relative;
}
.menu-area.separator_yes:after {
position: absolute;
content: "";
width: 1px;
height: 14px;
right: 0px;
top: 50%;
transform: translateY(-50%);
background: #F36464;
}
.make-white-image img {
filter: brightness(0) invert(1) !important;
}
.home-one-gallery .gallery-icon {
overflow: hidden;
} .path-vert {
stroke-dasharray: 1000; animation: draw1 2s linear alternate;
}
@keyframes draw1 {
from {
stroke-dashoffset: 1200;
}
to {
stroke-dashoffset: 600;
}
}
.rt-features-list-portfolio-content {
background: #f7f7f7;
border-radius: 0 0 0 0;
}
.rt-features-list-portfolio-content .pinfo--sidebar-title {
padding: 24px 40px;
background: var(--color-primary);
border-radius: 0 0 0 0;
font-size: 24px;
color: #fff;
margin-bottom: 0;
border-radius: 7px 7px 0 0;
}
.rt-features-list-portfolio-content .info-body {
padding: 15px 40px;
}
.rt-features-list-portfolio-content .info-body .single-info {
display: flex;
align-items: center;
padding: 24px 0;
border-bottom: 1px solid #E9E9E9;
}
.rt-features-list-portfolio-content .info-body .single-info i {
height: 50px;
width: 50px;
background: #F9F0F0;
color: var(--color-primary);
font-size: 18px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
}
.rt-features-list-portfolio-content .info-body .single-info .info-details {
margin-left: 20px;
}
.rt-features-list-portfolio-content .info-body .single-info .info-details span {
margin-bottom: 5px;
}
.rt-features-list-portfolio-content .info-body .single-info .info-details .name {
font-size: 18px;
margin-bottom: 0;
margin-top: 3px;
}
.rt-features-list-portfolio-content .info-body .single-info:last-child {
border-bottom: none;
}
.border-icon-list .elementor-icon-list-items li .elementor-icon-list-icon {
position: relative;
top: -11px;
}
.show-icon-box-shadow .icon {
box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.04);
border-radius: 50%;
}
@keyframes loop {
0% {
transform-origin: 0% 50%;
transform: scale3d(0, 1, 1);
}
50% {
transform-origin: 0% 50%;
transform: scale3d(1, 1, 1);
}
51% {
transform-origin: 100% 50%;
}
100% {
transform-origin: 100% 50%;
transform: scale3d(0, 1, 1);
}
}
.react-button a {
display: inline-block;
color: #fff;
padding: 17px 33px;
font-size: 16px;
font-weight: 600;
font-family: var(--font-primary);
line-height: 19px;
text-align: center;
text-transform: capitalize;
background: var(--color-secondary);
border-radius: 100px;
vertical-align: middle;
position: relative;
transform: perspective(1px) translateZ(0);
transition-property: color;
transition-duration: 0.3s;
transition: 0.3s;
z-index: 1;
overflow: hidden;
}
.react-button a i {
margin-left: 3px;
}
.react-button a svg {
width: 20px;
position: relative;
}
.react-button a::before {
position: absolute;
content: "";
left: 0;
right: 0;
top: 0;
bottom: 0;
background: var(--color-primary);
border-radius: 4px;
transform-origin: 50%;
transition-property: transform;
transition-duration: 0.3s;
transition-timing-function: ease-out;
transition: 0.5s;
z-index: -1;
}
.react-button a:hover::before {
transform: scaleX(0);
background: var(--color-primary);
}
.react-button a:hover {
background: var(--color-secondary);
color: var(--color-white);
}
.react-button.secondary_btn a {
color: #FFFFFF;
background: transparent !important;
border: 2px solid #fff;
box-sizing: border-box;
transition: 0.3s;
}
.react-button.secondary_btn a:hover {
border: 2px solid transparent;
}
.react-button.secondary_btn a::before {
background: var(--color-primary);
transform: scaleX(0);
transition: 0.5s;
}
.react-button.secondary_btn a:hover::before {
transform: scaleX(1);
}
.elementor-counter .elementor-counter-title {
text-align: left !important;
}
.counter-top-area.yes .rs-counter-list .count-text .rs-counter {
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.counter-top-area {
position: relative;
}
.counter-top-area .rts-counter-list .counter-icon {
display: inline-block;
}
.counter-top-area .rts-counter-list .counter-icon i {
font-size: 50px;
color: #dcdcdc;
line-height: 60px;
transition: all 0.3s ease 0s;
}
.counter-top-area .rts-counter-list .count-text span {
color: var(--color-primary);
}
.counter-top-area .rts-counter-list .count-text .rs-counter {
font-size: 50px;
color: var(--color-primary);
line-height: 60px;
display: inline-block;
transition: all 0.3s ease 0s;
}
.counter-top-area .rts-counter-list .count-text .title {
font-size: 18px;
color: #666;
line-height: 18px;
transition: all 0.3s ease 0s;
display: inline-block;
}
.counter-top-area.style1 {
text-align: center;
}
.counter-top-area.style1 .count-number span {
padding: 10px 0px 10px 0px;
}
.counter-top-area.style2 .rts-counter-list .rts-counter-list-inner {
display: flex;
align-items: center;
}
.counter-top-area.style2 .rts-counter-list .rts-counter-list-inner .counter-icon img {
width: 80px;
height: 80px;
padding: 20px;
overflow: visible;
border-radius: 50%;
}
.counter-top-area.style2 .rts-counter-list .text {
font-weight: 400;
line-height: 26px;
margin-top: 17px;
}
.counter-top-area.style3 .rts-counter-list .count-text {
display: flex;
align-items: center;
}
.counter-top-area.style3 .rts-counter-list .count-text .count-number .rs-counter {
font-size: 36px;
font-weight: 700;
line-height: 48px;
font-family: var(--font-primary);
}
.counter-top-area.style3 .rts-counter-list .count-text .title {
margin-left: 20px;
font-weight: 600;
font-size: 18px;
line-height: 24px;
}
.react-image {
position: relative;
width: 100%;
height: 100%;
}
.react-image.yes .veritcal {
animation-name: veritcal;
animation-timing-function: linear;
animation-duration: 12s;
animation-iteration-count: infinite;
position: absolute;
right: 0;
top: -150px;
}
@keyframes veritcal {
0% {
transform: translate3d(0, 0, 0);
}
50% {
transform: translate3d(0, 30px, 0);
}
100% {
transform: translate3d(0, 0, 0);
}
}
.react-image.yes .veritcal_two {
animation-name: veritcal_two;
animation-timing-function: linear;
animation-duration: 12s;
animation-iteration-count: infinite;
}
@keyframes veritcal_two {
0% {
transform: translateY(100px);
}
50% {
transform: translateY(0);
}
100% {
transform: translateY(100px);
}
}
.react-image.yes .horizontal {
animation-name: horizontal;
animation-timing-function: linear;
animation-duration: 12s;
animation-iteration-count: infinite;
}
@keyframes horizontal {
0% {
transform: translateX(0);
}
50% {
transform: translateX(100px);
}
100% {
transform: translateX(0);
}
}
.react-image.yes .rotated_style {
animation: rotate1 30s linear infinite;
-webkit-animation: rotate1 30s linear infinite;
}
@keyframes rotate1 {
from {
transform: rotate(0deg);
-webkit-transform: rotate(0deg);
}
to {
transform: rotate(360deg);
-webkit-transform: rotate(360deg);
}
}
.image-rotate {
animation: rotation infinite 14s linear;
} @keyframes rotation {
to {
transform: rotate(360deg);
}
}
.rt-grid-figure .logo-img {
text-align: center;
}
.rt-grid-figure .logo-img a {
transition: all 0.5s;
}
.rt-grid-figure .logo-img img {
margin: 0 auto;
transition: all 0.5s;
}
.rt-grid-figure .logo-img:hover img {
opacity: 1;
}
.rt-grid-figure .logo-img:hover a.back {
display: block;
}
.rt-grid-figure .logo-img:hover a.back-exists {
display: none;
}
.rt-grid-figure .logo-img.logo-gray a:hover img {
opacity: 80%;
}
.swipper-bulet-pagination {
margin-top: 100px;
}
.swipper-bulet-pagination .swiper-pagination-bullets {
position: absolute;
bottom: -108px;
left: 47.5%;
max-width: -moz-max-content;
max-width: max-content;
background: #fff;
padding: 5px 15px;
border-radius: 33px;
}
.swipper-bulet-pagination .swiper-pagination-bullets .swiper-pagination-bullet {
display: inline-block;
width: 9px;
height: 9px;
background: #000;
border-radius: 50%;
opacity: 0.2;
}
.swipper-bulet-pagination .swiper-pagination-bullets .swiper-pagination-bullet-active {
width: 9px;
height: 9px;
background: var(--color-primary);
border-radius: 50%;
opacity: 1;
}
.swiper-pagination-new.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
margin: auto;
text-align: center;
left: 50%;
transform: translateX(-50%);
}
.rt-slider-navigation {
display: flex;
align-items: center;
justify-content: end;
position: absolute;
right: 30px;
bottom: 27px;
z-index: 1;
}
.rt-slider-navigation .rt-slider-prev i,
.rt-slider-navigation .rt-slider-next i {
font-size: 26px;
padding: 15px 18px;
background: var(--color-primary);
color: var(--color-white);
font-weight: 200;
transition: 0.3s;
}
.rt-slider-navigation .rt-slider-prev i:hover {
background: #1F1F25;
}
.rt-slider-navigation .rt-slider-next i:hover {
background: #1F1F25;
}
@media only screen and (max-width: 1024px) {
.rstab-main.vertical ul.nav {
margin-right: 0;
}
.rts-tab-content-one {
animation: slide-down 2.5s ease-out;
}
.rstab-main.vertical ul.nav.bubble li a.active:after {
display: none;
}
}
@keyframes pulse-border {
0% {
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(0.5);
opacity: 1;
}
100% {
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
opacity: 0;
}
}
.bg-primary-solari {
background: var(--color-primary);
}
.btn-watch-video span.text {
position: absolute;
display: block;
right: -100px;
top: 12px;
color: #fff;
font-weight: 700;
font-size: 16px;
line-height: 21px;
text-transform: capitalize;
font-family: "DM Sans", sans-serif;
}
@keyframes waves {
0% {
transform: scale(0.2, 0.2);
opacity: 0;
-ms-filter: "alpha(opacity=0)";
}
50% {
opacity: 0.9;
-ms-filter: "alpha(opacity=90)";
}
100% {
transform: scale(0.9, 0.9);
opacity: 0;
-ms-filter: "alpha(opacity=0)";
}
}
.btnn-icon .elementor-icon-box-icon span.elementor-icon.elementor-animation- {
height: 55px;
width: 55px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0px 10px 21px rgba(0, 0, 0, 0.08);
color: var(--color-primary);
}
.logo-banner .logo-img img {
max-width: 130px;
transition: 0.3s;
}
.logo-banner .logo-img img:hover {
transform: translateY(-5px);
}
.image-heading {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 0;
padding-bottom: 0;
}
.image-heading .sub-text {
margin: 0 !important;
}
.image-heading .title-img {
margin: 0 !important;
}
.single__tab__link {
display: flex !important;
align-items: center !important;
}
.single__tab__link.active .icon svg path, .single__tab__link.active .button_content {
color: red;
}
.header-style-1 .header-inner.menu-sticky.stuck.sticky {
background: #fff;
}
.header-style-1 .header-inner.menu-sticky.stuck.sticky .jjj {
background: #fff;
z-index: 9999;
}
.header-style-1 .header-inner.menu-sticky.stuck.sticky .elementor-widget-heading .elementor-heading-title[class*=elementor-size-] > a {
color: var(--color-primary);
}
.header-style-1 .header-inner.menu-sticky.stuck.sticky a.nav-menu-link.menu-button span {
background: var(--color-primary);
}
.header-style-1 .header-inner.menu-sticky.stuck.sticky {
box-shadow: 0px 7px 18px rgba(24, 16, 16, 0.0509803922);
z-index: 9900;
}
.header-style-1 ul.offcanvas-icon.layout-1 li {
margin-top: 0;
}
.header-style-1 ul.offcanvas-icon {
margin: 0;
padding: 0;
list-style: none;
margin-top: 10px;
}
.header-style-1 .header-inner.menu-sticky.stuck.sticky .hhh {
background: #1B1B1B !important;
}
.header-style-1 .header-inner.menu-sticky.stuck.sticky .hhh .elementor-widget-heading .elementor-heading-title[class*=elementor-size-] > a {
color: #fff;
}
.header-style-1 .header-inner.menu-sticky.stuck.sticky .hhh a.nav-menu-link.menu-button span {
background: #fff;
}
.header-style-1 .header-inner.menu-sticky.stuck.sticky {
box-shadow: 0px 7px 18px rgba(24, 16, 16, 0.0509803922);
z-index: 9900;
}
.header-style-1 ul.offcanvas-icon.layout-1 li {
margin-top: 0;
}
.header-style-1 ul.offcanvas-icon {
margin: 0;
padding: 0;
list-style: none;
margin-top: 0;
}
.sticky .hhh .menu-area .navbar ul li .sub-menu {
top: 130%;
}
.header-style-1 .hhh ul.offcanvas-icon {
margin: 0;
padding: 0;
list-style: none;
margin-top: 10px !important;
color: #fff;
}
.hhh .nav-menu-link svg rect {
fill: #fff !important;
}
.ssss .single-feature-soalri-3 {
background: #fff;
border: 1px solid #EEEEEE;
box-shadow: 0px 6px 39px rgba(0, 0, 0, 0.0392156863);
}
.name-social-area-wrapper .name-area p a {
color: #fff !important;
}
.feature-image-wrapper .image-caption {
margin-top: 10px;
}
.rts_tab .vertical {
flex-direction: column;
}
.rts_tab .bottom {
flex-direction: column-reverse;
}
.rts_tab .vertical .button-area, .rts_tab .bottom .button-area {
flex-direction: row !important;
width: 100%;
}
.rts_tab .vertical .button-area button, .rts_tab .bottom .button-area button {
flex-basis: 30%;
}
.rts-vps-performance .vertical .left_side, .rts-vps-performance .vertical .right_side, .rts-vps-performance .bottom .left_side, .rts-vps-performance .bottom .right_side {
width: 100%;
}
.rts-vps-performance .vertical .rts-performance-tab, .rts-vps-performance .bottom .rts-performance-tab {
flex-direction: row;
}
.rts-vps-performance .rts-section-content {
max-width: 480px;
}
.rts-vps-performance .rts-performance-tab {
display: flex;
flex-direction: column;
gap: 10px;
}
.rts-vps-performance .rts-performance-tab .tab__button {
text-align: left;
max-width: 300px;
line-height: 100%;
padding: 16px 20px;
font-weight: 600;
border-radius: 4px;
background: transparent;
color: var(--color-body);
border: 1px solid var(--light-border);
font-size: 16px;
}
@media screen and (max-width: 576px) {
.rts-vps-performance .rts-performance-tab .tab__button {
width: 100%;
}
}
.rts-vps-performance .rts-performance-tab .tab__button i {
margin-left: 10px;
}
.rts-vps-performance .rts-performance-tab .tab__button.active {
background: var(--color-primary);
color: var(--color-white);
}
.rts-vps-performance .performance-tab-content.active .rts-tab-content-one {
display: inline-flex;
}
@media screen and (max-width: 576px) {
.rts-vps-performance .performance-tab-content.active .rts-tab-content-one {
display: block;
}
}
.rts-vps-performance .performance-tab-content .rts-tab-content-one {
display: flex;
gap: 30px;
}
.rts-vps-performance .performance-tab-content img {
border-radius: 4px;
}
@media screen and (max-width: 576px) {
.rts-vps-performance .performance-tab-content img {
width: 100%;
}
}
@media screen and (max-width: 576px) {
.rts-vps-performance .performance-tab-content .image-one {
margin-bottom: 30px;
}
}
.rts-vps-performance .performance-tab-content p {
margin-top: 10px;
}
.rt_services_tab .rts-service-four__tab {
display: flex;
flex-direction: column;
gap: 20px;
}
.rt_services_tab .rts-service-four__tab .single__tab {
padding: 18px 20px;
border-radius: 10px;
box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.06);
background: var(--color-white);
display: flex;
gap: 20px;
align-items: center;
cursor: pointer;
transition: var(--transition);
}
.rt_services_tab .rts-service-four__tab .single__tab .tab__icon svg path {
transition: var(--transition);
fill: var(--color-secondary);
}
.rt_services_tab .rts-service-four__tab .single__tab .tab__title {
font-size: 24px;
font-weight: var(--semibold);
color: var(--color-secondary);
margin-bottom: 0;
transition: var(--transition);
text-transform: capitalize;
}
@media screen and (max-width: 992px) {
.rt_services_tab .rts-service-four__tab .single__tab .tab__title {
font-size: 20px;
}
}
.rt_services_tab .rts-service-four__tab .single__tab.active {
background: var(--color-primary);
}
.rt_services_tab .rts-service-four__tab .single__tab.active .tab__icon svg path {
fill: var(--color-white);
}
.rt_services_tab .rts-service-four__tab .single__tab.active .tab__icon i {
color: var(--color-white);
}
.rt_services_tab .rts-service-four__tab .single__tab.active .tab__title {
color: var(--color-white);
}
.rt_services_tab .rts-service-four__tab--content {
position: relative;
}
.rt_services_tab .rts-service-four__tab--content.tab__content {
display: none;
transition: var(--transition);
}
.rt_services_tab .rts-service-four__tab--content.tab__content.open {
display: block;
}
.rt_services_tab .rts-service-four__tab--content .tab__image img {
max-height: -moz-max-content;
max-height: max-content;
border-radius: 10px;
-o-object-fit: cover;
object-fit: cover;
}
.rt_services_tab .rts-service-four__tab--content .tab__content--details {
padding: 30px 40px;
background: var(--color-primary);
color: var(--color-white);
width: 80%;
margin: 0 auto;
border-radius: 10px;
position: relative;
z-index: 1;
margin-top: -125px;
}
@media screen and (max-width: 1200px) {
.rt_services_tab .rts-service-four__tab--content .tab__content--details {
width: 90%;
}
}
@media screen and (max-width: 576px) {
.rt_services_tab .rts-service-four__tab--content .tab__content--details {
padding: 20px;
width: 85%;
}
}
.rt_services_tab .rts-service-four__tab--content .tab__content--details h5 {
font-size: 24px;
font-weight: var(--bold);
margin-bottom: 0px;
line-height: 34px;
}
.rt_services_tab .rts-service-four__tab--content .tab__content--details .feature {
margin-top: 20px;
margin-bottom: 15px;
}
.rt_services_tab .rts-service-four__tab--content .tab__content--details .feature__list {
padding: 0;
margin: 0;
list-style: none;
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 0;
}
@media screen and (max-width: 992px) {
.rt_services_tab .rts-service-four__tab--content .tab__content--details .feature__list {
grid-template-columns: auto;
}
}
.rt_services_tab .rts-service-four__tab--content .tab__content--details .feature__list .feature__item {
position: relative;
color: #fff;
font-family: var(--font-secondary);
font-weight: var(--medium);
display: inline-block;
margin-bottom: 10px;
text-transform: capitalize;
}
.rt_services_tab .rts-service-four__tab--content .tab__content--details .feature__list .feature__item i, .rt_services_tab .rts-service-four__tab--content .tab__content--details .feature__list .feature__item svg {
margin-right: 8px;
font-size: 10px;
font-weight: 800;
display: inline-flex;
justify-content: center;
align-items: center;
border-radius: 50%;
color: var(--color-white);
}
.rt_services_tab .rts-service-four__tab--content .tab__content--details .feature__list .feature__item svg {
height: 16px;
width: 16px;
fill: var(--color-white);
}
.rt_services_tab .rts-service-four__tab--content .tab__content--details a.all-feature {
text-align: right;
color: var(--color-third);
font-weight: var(--semibold);
font-family: var(--font-secondary);
text-transform: capitalize;
display: block;
}
@media screen and (max-width: 576px) {
.rt_services_tab .rts-service-four__tab--content .tab__content--details a.all-feature {
text-align: center;
}
}
table.rselements-table .table_tolltip i {
color: #000;
font-size: 16px;
margin-left: 5px;
}
table.rselements-table .table_tolltip svg {
fill: #000;
width: 16px;
margin-left: 5px;
}
.tooltip-table-title .tooltip-inner {
background: #fff;
color: #000;
box-shadow: 0 0 2px #000;
}