@charset "UTF-8";
@charset "UTF-8";
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(//safer4.com/wp-content/themes/infetech/assets/libs/carousel/assets/owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}
 :root {
--animate-duration: 1.5s;
--animate-delay: 1s;
--animate-repeat: 1;
}
.animate__animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-duration: var(--animate-duration);
animation-duration: var(--animate-duration);
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.animate__animated.animate__infinite {
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
.animate__animated.animate__repeat-1 {
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-iteration-count: var(--animate-repeat);
animation-iteration-count: var(--animate-repeat);
}
.animate__animated.animate__repeat-2 {
-webkit-animation-iteration-count: calc(1 * 2);
animation-iteration-count: calc(1 * 2);
-webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animate__animated.animate__repeat-3 {
-webkit-animation-iteration-count: calc(1 * 3);
animation-iteration-count: calc(1 * 3);
-webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.animate__animated.animate__delay-half {
-webkit-animation-delay: 0.5s;
animation-delay: 0.5s;
-webkit-animation-delay: calc(var(--animate-delay) / 2);
animation-delay:calc(var(--animate-delay) / 2);
}
.animate__animated.animate__delay-1s {
-webkit-animation-delay: 1s;
animation-delay: 1s;
-webkit-animation-delay: var(--animate-delay);
animation-delay: var(--animate-delay);
}
.animate__animated.animate__delay-2s {
-webkit-animation-delay: calc(1s * 2);
animation-delay: calc(1s * 2);
-webkit-animation-delay: calc(var(--animate-delay) * 2);
animation-delay: calc(var(--animate-delay) * 2);
}
@-webkit-keyframes fadeInTopLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, -100%, 0);
transform: translate3d(-100%, -100%, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes fadeInTopLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, -100%, 0);
transform: translate3d(-100%, -100%, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.animate__fadeInTopLeft {
-webkit-animation-name: fadeInTopLeft;
animation-name: fadeInTopLeft;
}
@-webkit-keyframes fadeInTopRight {
from {
opacity: 0;
-webkit-transform: translate3d(250%, -100%, 0);
transform: translate3d(250%, -100%, 0);
}
}
@keyframes fadeInTopRight {
from {
opacity: 0;
-webkit-transform: translate3d(250%, -100%, 0);
transform: translate3d(250%, -100%, 0);
}
}
.animate__fadeInTopRight {
-webkit-animation-name: fadeInTopRight;
animation-name: fadeInTopRight;
}
@-webkit-keyframes fadeInBottomLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-300%, 100%, 0);
transform: translate3d(-300%, 100%, 0);
}
}
@keyframes fadeInBottomLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-300%, 100%, 0);
transform: translate3d(-300%, 100%, 0);
}
}
.animate__fadeInBottomLeft {
-webkit-animation-name: fadeInBottomLeft;
animation-name: fadeInBottomLeft;
}
@-webkit-keyframes fadeInBottomRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 100%, 0);
transform: translate3d(100%, 100%, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes fadeInBottomRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 100%, 0);
transform: translate3d(100%, 100%, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.animate__fadeInBottomRight {
-webkit-animation-name: fadeInBottomRight;
animation-name: fadeInBottomRight;
}@font-face {
font-family: "ovaicon";
src: url(https://safer4.com/wp-content/themes/infetech/assets/libs/ovaicon/font/ovaicon.ttf?6ca22e33a1539df94eb08a25c1c3a8e3) format("truetype"),
url(https://safer4.com/wp-content/themes/infetech/assets/libs/ovaicon/font/ovaicon.woff?6ca22e33a1539df94eb08a25c1c3a8e3) format("woff"),
url(https://safer4.com/wp-content/themes/infetech/assets/libs/ovaicon/font/ovaicon.woff2?6ca22e33a1539df94eb08a25c1c3a8e3) format("woff2"),
url(https://safer4.com/wp-content/themes/infetech/assets/libs/ovaicon/font/ovaicon.eot?6ca22e33a1539df94eb08a25c1c3a8e3#iefix) format("embedded-opentype"),
url(https://safer4.com/wp-content/themes/infetech/assets/libs/ovaicon/font/ovaicon.svg?6ca22e33a1539df94eb08a25c1c3a8e3#ovaicon) format("svg");
}
[class^="ovaicon-"]:before, [class*=" ovaicon-"]:before {
font-family: ovaicon !important;
font-style: normal;
font-weight: normal !important;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.ovaicon-back:before {
content: "\f101";
}
.ovaicon-next:before {
content: "\f102";
}
.ovaicon-menu:before {
content: "\f103";
}
.ovaicon-download:before {
content: "\f104";
}
.ovaicon-checked:before {
content: "\f105";
}
.ovaicon-menu-1:before {
content: "\f106";
}
.ovaicon-checked-1:before {
content: "\f107";
}
.ovaicon-cancel:before {
content: "\f108";
}
.ovaicon-download-1:before {
content: "\f109";
}
.ovaicon-fast-forward:before {
content: "\f10a";
}
.ovaicon-download-2:before {
content: "\f10b";
}
.ovaicon-upload:before {
content: "\f10c";
}
.ovaicon-login:before {
content: "\f10d";
}
.ovaicon-logout:before {
content: "\f10e";
}
.ovaicon-previous:before {
content: "\f10f";
}
.ovaicon-cancel-1:before {
content: "\f110";
}
.ovaicon-fullscreen:before {
content: "\f111";
}
.ovaicon-next-1:before {
content: "\f112";
}
.ovaicon-more:before {
content: "\f113";
}
.ovaicon-checked-2:before {
content: "\f114";
}
.ovaicon-cancel-2:before {
content: "\f115";
}
.ovaicon-menu-2:before {
content: "\f116";
}
.ovaicon-upload-1:before {
content: "\f117";
}
.ovaicon-list:before {
content: "\f118";
}
.ovaicon-next-2:before {
content: "\f119";
}
.ovaicon-upload-2:before {
content: "\f11a";
}
.ovaicon-back-1:before {
content: "\f11b";
}
.ovaicon-export:before {
content: "\f11c";
}
.ovaicon-shuffle:before {
content: "\f11d";
}
.ovaicon-up-arrow:before {
content: "\f11e";
}
.ovaicon-fullscreen-1:before {
content: "\f11f";
}
.ovaicon-back-2:before {
content: "\f120";
}
.ovaicon-rewind:before {
content: "\f121";
}
.ovaicon-double-chevron:before {
content: "\f122";
}
.ovaicon-next-3:before {
content: "\f123";
}
.ovaicon-next-4:before {
content: "\f124";
}
.ovaicon-fullscreen-2:before {
content: "\f125";
}
.ovaicon-next-5:before {
content: "\f126";
}
.ovaicon-download-3:before {
content: "\f127";
}
.ovaicon-repeat:before {
content: "\f128";
}
.ovaicon-diagonal-arrow:before {
content: "\f129";
}
.ovaicon-resize:before {
content: "\f12a";
}
.ovaicon-upload-3:before {
content: "\f12b";
}
.ovaicon-upload-4:before {
content: "\f12c";
}
.ovaicon-menu-3:before {
content: "\f12d";
}
.ovaicon-back-3:before {
content: "\f12e";
}
.ovaicon-download-4:before {
content: "\f12f";
}
.ovaicon-resize-1:before {
content: "\f130";
}
.ovaicon-download-5:before {
content: "\f131";
}
.ovaicon-next-6:before {
content: "\f132";
}
.ovaicon-fast-forward-1:before {
content: "\f133";
}
.ovaicon-download-6:before {
content: "\f134";
}
.ovaicon-back-4:before {
content: "\f135";
}
.ovaicon-download-7:before {
content: "\f136";
}
.ovaicon-next-7:before {
content: "\f137";
}
.ovaicon-back-5:before {
content: "\f138";
}
.ovaicon-upload-5:before {
content: "\f139";
}
.ovaicon-diagonal-arrow-1:before {
content: "\f13a";
}
.ovaicon-back-6:before {
content: "\f13b";
}
.ovaicon-next-8:before {
content: "\f13c";
}
.ovaicon-diagonal-arrow-2:before {
content: "\f13d";
}
.ovaicon-rewind-1:before {
content: "\f13e";
}
.ovaicon-upload-6:before {
content: "\f13f";
}
.ovaicon-upload-7:before {
content: "\f140";
}
.ovaicon-previous-1:before {
content: "\f141";
}
.ovaicon-download-8:before {
content: "\f142";
}
.ovaicon-diagonal-arrow-3:before {
content: "\f143";
}
.ovaicon-next-9:before {
content: "\f144";
}
.ovaicon-calendar:before {
content: "\f145";
}
.ovaicon-calendar-1:before {
content: "\f146";
}
.ovaicon-alarm-clock:before {
content: "\f147";
}
.ovaicon-stopwatch:before {
content: "\f148";
}
.ovaicon-calendar-2:before {
content: "\f149";
}
.ovaicon-calendar-3:before {
content: "\f14a";
}
.ovaicon-calendar-4:before {
content: "\f14b";
}
.ovaicon-calendar-5:before {
content: "\f14c";
}
.ovaicon-alarm-clock-1:before {
content: "\f14d";
}
.ovaicon-wall-clock:before {
content: "\f14e";
}
.ovaicon-loupe:before {
content: "\f14f";
}
.ovaicon-search:before {
content: "\f150";
}
.ovaicon-speech-bubble:before {
content: "\f151";
}
.ovaicon-comment:before {
content: "\f152";
}
.ovaicon-comment-1:before {
content: "\f153";
}
.ovaicon-chat-comment-oval-speech-bubble-with-text-lines:before {
content: "\f154";
}
.ovaicon-message:before {
content: "\f155";
}
.ovaicon-chat:before {
content: "\f156";
}
.ovaicon-conversation:before {
content: "\f157";
}
.ovaicon-speech-bubble-1:before {
content: "\f158";
}
.ovaicon-chat-1:before {
content: "\f159";
}
.ovaicon-oval-black-speech-bubble:before {
content: "\f15a";
}
.ovaicon-user:before {
content: "\f15b";
}
.ovaicon-user-1:before {
content: "\f15c";
}
.ovaicon-group:before {
content: "\f15d";
}
.ovaicon-group-1:before {
content: "\f15e";
}
.ovaicon-customer:before {
content: "\f15f";
}
.ovaicon-user-2:before {
content: "\f160";
}
.ovaicon-folder:before {
content: "\f161";
}
.ovaicon-folder-1:before {
content: "\f162";
}
.ovaicon-page:before {
content: "\f163";
}
.ovaicon-document:before {
content: "\f164";
}
.ovaicon-page-blank:before {
content: "\f165";
}
.ovaicon-file:before {
content: "\f166";
}
.ovaicon-edit:before {
content: "\f167";
}
.ovaicon-edit-1:before {
content: "\f168";
}
.ovaicon-tag:before {
content: "\f169";
}
.ovaicon-price-tag:before {
content: "\f16a";
}
.ovaicon-bookmark:before {
content: "\f16b";
}
.ovaicon-tag-1:before {
content: "\f16c";
}
.ovaicon-wishlist:before {
content: "\f16d";
}
.ovaicon-shopping-cart:before {
content: "\f16e";
}
.ovaicon-shopping-cart-1:before {
content: "\f16f";
}
.ovaicon-shopping-cart-empty-side-view:before {
content: "\f170";
}
.ovaicon-shopping-cart-2:before {
content: "\f171";
}
.ovaicon-facebook-logo:before {
content: "\f172";
}
.ovaicon-facebook-logo-1:before {
content: "\f173";
}
.ovaicon-facebook:before {
content: "\f174";
}
.ovaicon-twitter:before {
content: "\f175";
}
.ovaicon-twitter-1:before {
content: "\f176";
}
.ovaicon-instagram:before {
content: "\f177";
}
.ovaicon-instagram-1:before {
content: "\f178";
}
.ovaicon-instagram-2:before {
content: "\f179";
}
.ovaicon-youtube-logotype:before {
content: "\f17a";
}
.ovaicon-tiktok:before {
content: "\f17b";
}
.ovaicon-tik-tok:before {
content: "\f17c";
}
.ovaicon-tik-tok-1:before {
content: "\f17d";
}
.ovaicon-quote:before {
content: "\f17e";
}
.ovaicon-left-quote:before {
content: "\f17f";
}
.ovaicon-left-quotes-sign:before {
content: "\f180";
}
.ovaicon-left-quote-1:before {
content: "\f181";
}
.ovaicon-close:before {
content: "\f182";
}
.ovaicon-right-arrow:before {
content: "\f183";
}
.ovaicon-pin:before {
content: "\f184";
}
.ovaicon-placeholder:before {
content: "\f185";
}
.ovaicon-cursor:before {
content: "\f186";
}
.ovaicon-mail:before {
content: "\f187";
}
.ovaicon-mail-1:before {
content: "\f188";
}
.ovaicon-email:before {
content: "\f189";
}
.ovaicon-letter:before {
content: "\f18a";
}
.ovaicon-telephone:before {
content: "\f18b";
}
.ovaicon-phone-call:before {
content: "\f18c";
}
.ovaicon-telephone-1:before {
content: "\f18d";
}
.ovaicon-smartphone-call:before {
content: "\f18e";
}
.ovaicon-smartphone:before {
content: "\f18f";
}
.ovaicon-phone-receiver:before {
content: "\f190";
}
.ovaicon-phone:before {
content: "\f191";
}
.ovaicon-right-quote:before {
content: "\f192";
}
.ovaicon-quotation:before {
content: "\f193";
}
.ovaicon-rss-feed-symbol:before {
content: "\f194";
}
.ovaicon-rss:before {
content: "\f195";
}
.ovaicon-rss-feeds-symbol-in-a-rounded-square:before {
content: "\f196";
}
.ovaicon-rss-1:before {
content: "\f197";
}
.ovaicon-add:before {
content: "\f198";
}
.ovaicon-plus:before {
content: "\f199";
}
.ovaicon-plus-1:before {
content: "\f19a";
}
.ovaicon-minus:before {
content: "\f19b";
}
.ovaicon-minus-1:before {
content: "\f19c";
}@font-face {
font-family: "flaticon";
src: url(https://safer4.com/wp-content/themes/infetech/assets/libs/flaticon/font/flaticon.ttf?0dd0fc2b5a05b0bd0a043adac203a5c7) format("truetype"),
url(https://safer4.com/wp-content/themes/infetech/assets/libs/flaticon/font/flaticon.woff?0dd0fc2b5a05b0bd0a043adac203a5c7) format("woff"),
url(https://safer4.com/wp-content/themes/infetech/assets/libs/flaticon/font/flaticon.woff2?0dd0fc2b5a05b0bd0a043adac203a5c7) format("woff2"),
url(https://safer4.com/wp-content/themes/infetech/assets/libs/flaticon/font/flaticon.eot?0dd0fc2b5a05b0bd0a043adac203a5c7#iefix) format("embedded-opentype"),
url(https://safer4.com/wp-content/themes/infetech/assets/libs/flaticon/font/flaticon.svg?0dd0fc2b5a05b0bd0a043adac203a5c7#flaticon) format("svg");
}
i[class^="flaticon-"]:before, i[class*=" flaticon-"]:before {
font-family: flaticon !important;
font-style: normal;
font-weight: normal !important;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.flaticon-email:before {
content: "\f101";
}
.flaticon-clock:before {
content: "\f102";
}
.flaticon-send:before {
content: "\f103";
}
.flaticon-telephone-call:before {
content: "\f104";
}
.flaticon-phone-call:before {
content: "\f105";
}
.flaticon-left:before {
content: "\f106";
}
.flaticon-right-arrow:before {
content: "\f107";
}
.flaticon-check:before {
content: "\f108";
}
.flaticon-checked:before {
content: "\f109";
}
.flaticon-share:before {
content: "\f10a";
}
.flaticon-play:before {
content: "\f10b";
}
.flaticon-loupe:before {
content: "\f10c";
}
.flaticon-shopping-cart:before {
content: "\f10d";
}
.flaticon-arrow-right:before {
content: "\f10e";
}
.flaticon-right-arrow-1:before {
content: "\f10f";
}
.flaticon-web:before {
content: "\f110";
}
.flaticon-android:before {
content: "\f111";
}
.flaticon-television:before {
content: "\f112";
}
.flaticon-design:before {
content: "\f113";
}
.flaticon-lamp:before {
content: "\f114";
}
.flaticon-brain:before {
content: "\f115";
}
.flaticon-briefcase:before {
content: "\f116";
}
.flaticon-team-leader:before {
content: "\f117";
}
.flaticon-bar-chart:before {
content: "\f118";
}
.flaticon-technology:before {
content: "\f119";
}
.flaticon-innovation:before {
content: "\f11a";
}
.flaticon-innovation-1:before {
content: "\f11b";
}
.flaticon-web-development:before {
content: "\f11c";
}
.flaticon-programming:before {
content: "\f11d";
}
.flaticon-network:before {
content: "\f11e";
}
.flaticon-security-system:before {
content: "\f11f";
}
.flaticon-cloud:before {
content: "\f120";
}
.flaticon-research-and-development:before {
content: "\f121";
}
.flaticon-security-system-1:before {
content: "\f122";
}
.flaticon-analytics:before {
content: "\f123";
}
.flaticon-database:before {
content: "\f124";
}
.flaticon-cloud-computing:before {
content: "\f125";
}
.flaticon-consulting:before {
content: "\f126";
}
.flaticon-programming-1:before {
content: "\f127";
}
.flaticon-cloud-computing-1:before {
content: "\f128";
}
.flaticon-dashboard:before {
content: "\f129";
}
.flaticon-server:before {
content: "\f12a";
}
.flaticon-mental-health:before {
content: "\f12b";
}
.flaticon-education:before {
content: "\f12c";
}
.flaticon-circuit:before {
content: "\f12d";
}
.flaticon-stock-market:before {
content: "\f12e";
}
.flaticon-cyber:before {
content: "\f12f";
}
.flaticon-mobile-banking:before {
content: "\f130";
}
.flaticon-data-security:before {
content: "\f131";
}
.flaticon-quality:before {
content: "\f132";
}
.flaticon-innovation-2:before {
content: "\f133";
}
.flaticon-developer:before {
content: "\f134";
}
.flaticon-recovery:before {
content: "\f135";
}
.flaticon-database-1:before {
content: "\f136";
}
.flaticon-software-development:before {
content: "\f137";
}
.flaticon-customer-service:before {
content: "\f138";
}
.flaticon-laptop:before {
content: "\f139";
}@font-face {
font-family: "flaticon_infetech";
src: url(https://safer4.com/wp-content/themes/infetech/assets/libs/flaticon_infetech/font/flaticon_infetech.woff2?9b41fa82623b1b0bc276a1e46465b6c0) format("woff2"),
url(https://safer4.com/wp-content/themes/infetech/assets/libs/flaticon_infetech/font/flaticon_infetech.woff?9b41fa82623b1b0bc276a1e46465b6c0) format("woff"),
url(https://safer4.com/wp-content/themes/infetech/assets/libs/flaticon_infetech/font/flaticon_infetech.eot?9b41fa82623b1b0bc276a1e46465b6c0#iefix) format("embedded-opentype"),
url(https://safer4.com/wp-content/themes/infetech/assets/libs/flaticon_infetech/font/flaticon_infetech.ttf?9b41fa82623b1b0bc276a1e46465b6c0) format("truetype"),
url(https://safer4.com/wp-content/themes/infetech/assets/libs/flaticon_infetech/font/flaticon_infetech.svg?9b41fa82623b1b0bc276a1e46465b6c0#flaticon_infetech) format("svg")
}
i[class^="flaticon-infetech-"]:before, i[class*=" flaticon-infetech-"]:before {
font-family: flaticon_infetech !important;
font-style: normal;
font-weight: normal !important;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.flaticon-infetech-cloud-computing:before {
content: "\f101";
}
.flaticon-infetech-placeholder:before {
content: "\f102";
}
.flaticon-infetech-envelope:before {
content: "\f103";
}
.flaticon-infetech-recovery:before {
content: "\f104";
}
.flaticon-infetech-shield:before {
content: "\f105";
}
.flaticon-infetech-target:before {
content: "\f106";
}
.flaticon-infetech-computer:before {
content: "\f107";
}
.flaticon-infetech-idea:before {
content: "\f108";
}
.flaticon-infetech-target-1:before {
content: "\f109";
}
.flaticon-infetech-database:before {
content: "\f10a";
}
.flaticon-infetech-corporation:before {
content: "\f10b";
}
.flaticon-infetech-quotation:before {
content: "\f10c";
}
.flaticon-infetech-communications:before {
content: "\f10d";
}
.flaticon-infetech-presentation:before {
content: "\f10e";
}
.flaticon-infetech-gear:before {
content: "\f10f";
}
.flaticon-infetech-dimensions:before {
content: "\f110";
}
.flaticon-infetech-plus:before {
content: "\f111";
}
.flaticon-infetech-minus-sign:before {
content: "\f112";
}
.flaticon-infetech-blockchain:before {
content: "\f113";
}
.flaticon-infetech-data-analytics:before {
content: "\f114";
}
.flaticon-infetech-database-1:before {
content: "\f115";
}
.flaticon-infetech-data-analytics-1:before {
content: "\f116";
}
.flaticon-infetech-database-2:before {
content: "\f117";
}
.flaticon-infetech-phone-call:before {
content: "\f118";
}
.flaticon-infetech-scribble:before {
content: "\f119";
}
.flaticon-infetech-medal:before {
content: "\f11a";
}
.flaticon-infetech-loading:before {
content: "\f11b";
}
.flaticon-infetech-supply-chain:before {
content: "\f11c";
}
.flaticon-infetech-digital-product:before {
content: "\f11d";
}
.flaticon-infetech-box:before {
content: "\f11e";
}
.flaticon-infetech-quality:before {
content: "\f11f";
}
.flaticon-infetech-quality-1:before {
content: "\f120";
}
.flaticon-infetech-network:before {
content: "\f121";
}
.flaticon-infetech-telephone-call:before {
content: "\f122";
}
.flaticon-infetech-idea-1:before {
content: "\f123";
}
.flaticon-infetech-abstract:before {
content: "\f124";
}
.flaticon-infetech-triangle:before {
content: "\f125";
}
.flaticon-infetech-abstract-1:before {
content: "\f126";
}
.flaticon-infetech-nanotechnology:before {
content: "\f127";
}
.flaticon-infetech-idea-2:before {
content: "\f128";
}
.flaticon-infetech-shortcut-script-app:before {
content: "\f129";
}
.flaticon-infetech-innovation:before {
content: "\f12a";
}
.flaticon-infetech-technology:before {
content: "\f12b";
}
.flaticon-infetech-connection:before {
content: "\f12c";
}
.flaticon-infetech-platform:before {
content: "\f12d";
}
.flaticon-infetech-project:before {
content: "\f12e";
}
.flaticon-infetech-process:before {
content: "\f12f";
}
.flaticon-infetech-teamwork:before {
content: "\f130";
}
.flaticon-infetech-efficacy:before {
content: "\f131";
}
.flaticon-infetech-process-1:before {
content: "\f132";
}
.flaticon-infetech-shield-1:before {
content: "\f133";
}
.flaticon-infetech-diamond:before {
content: "\f134";
}
.flaticon-infetech-solution:before {
content: "\f135";
}
.flaticon-infetech-diamond-1:before {
content: "\f136";
}
.flaticon-infetech-tear:before {
content: "\f137";
}
.flaticon-infetech-execution:before {
content: "\f138";
}
.flaticon-infetech-plus-1:before {
content: "\f139";
}
.flaticon-infetech-shuttle:before {
content: "\f13a";
}
.flaticon-infetech-right-arrow:before {
content: "\f13b";
}
.flaticon-infetech-application:before {
content: "\f13c";
}
.flaticon-infetech-database-3:before {
content: "\f13d";
}
.flaticon-infetech-servers:before {
content: "\f13e";
}
.flaticon-infetech-server:before {
content: "\f13f";
}
.flaticon-infetech-fingerprint:before {
content: "\f140";
}
.flaticon-infetech-cloud:before {
content: "\f141";
}
.flaticon-infetech-cyber-attack:before {
content: "\f142";
}
.flaticon-infetech-hierarchical-structure:before {
content: "\f143";
}
.flaticon-infetech-hierarchical-structure-1:before {
content: "\f144";
}
.flaticon-infetech-warning:before {
content: "\f145";
}
.flaticon-infetech-globe:before {
content: "\f146";
}
.flaticon-infetech-network-1:before {
content: "\f147";
}
.flaticon-infetech-cyber-security:before {
content: "\f148";
}
.flaticon-infetech-checkmark:before {
content: "\f149";
}
.flaticon-infetech-choice:before {
content: "\f14a";
}
.flaticon-infetech-telephone:before {
content: "\f14b";
}
.flaticon-infetech-mobile-app:before {
content: "\f14c";
}
.flaticon-infetech-servers-1:before {
content: "\f14d";
}
.flaticon-infetech-infrastructure:before {
content: "\f14e";
}
.flaticon-infetech-fingerprint-1:before {
content: "\f14f";
}
.flaticon-infetech-fingerprint-2:before {
content: "\f150";
}
.flaticon-infetech-mission:before {
content: "\f151";
}@font-face {
font-family: "flaticon_new";
src: url(https://safer4.com/wp-content/themes/infetech/assets/libs/flaticon_new/font/flaticon_new.ttf?25be246c2e47b6656da9ef76598ba236) format("truetype"),
url(https://safer4.com/wp-content/themes/infetech/assets/libs/flaticon_new/font/flaticon_new.woff?25be246c2e47b6656da9ef76598ba236) format("woff"),
url(https://safer4.com/wp-content/themes/infetech/assets/libs/flaticon_new/font/flaticon_new.woff2?25be246c2e47b6656da9ef76598ba236) format("woff2"),
url(https://safer4.com/wp-content/themes/infetech/assets/libs/flaticon_new/font/flaticon_new.eot?25be246c2e47b6656da9ef76598ba236#iefix) format("embedded-opentype"),
url(https://safer4.com/wp-content/themes/infetech/assets/libs/flaticon_new/font/flaticon_new.svg?25be246c2e47b6656da9ef76598ba236#flaticon_new) format("svg");
}
i[class^="flaticon-new-"]:before, i[class*=" flaticon-new-"]:before {
font-family: flaticon_new !important;
font-style: normal;
font-weight: normal !important;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.flaticon-new-right-arrows:before {
content: "\f101";
}
.flaticon-new-shopping-cart:before {
content: "\f102";
}
.flaticon-new-peace-sign:before {
content: "\f103";
}
.flaticon-new-dollar:before {
content: "\f104";
}
.flaticon-new-right:before {
content: "\f105";
}
.flaticon-new-link:before {
content: "\f106";
}
.flaticon-new-paper-plane:before {
content: "\f107";
}
.flaticon-new-pen:before {
content: "\f108";
}
.flaticon-new-padlock:before {
content: "\f109";
}
.flaticon-new-list:before {
content: "\f10a";
}
.flaticon-new-category:before {
content: "\f10b";
}
.flaticon-new-money:before {
content: "\f10c";
}
.flaticon-new-graduation:before {
content: "\f10d";
}
.flaticon-new-calendar:before {
content: "\f10e";
}
.flaticon-new-increase:before {
content: "\f10f";
}@font-face {
font-family: "flaticon_new_it_2";
src: url(https://safer4.com/wp-content/themes/infetech/assets/libs/flaticon_new_2/font/flaticon_new_it_2.woff2?ccd1c5fc5e903f71accc5543a8cecfd3) format("woff2"),
url(https://safer4.com/wp-content/themes/infetech/assets/libs/flaticon_new_2/font/flaticon_new_it_2.woff?ccd1c5fc5e903f71accc5543a8cecfd3) format("woff"),
url(https://safer4.com/wp-content/themes/infetech/assets/libs/flaticon_new_2/font/flaticon_new_it_2.eot?ccd1c5fc5e903f71accc5543a8cecfd3#iefix) format("embedded-opentype"),
url(https://safer4.com/wp-content/themes/infetech/assets/libs/flaticon_new_2/font/flaticon_new_it_2.ttf?ccd1c5fc5e903f71accc5543a8cecfd3) format("truetype"),
url(https://safer4.com/wp-content/themes/infetech/assets/libs/flaticon_new_2/font/flaticon_new_it_2.svg?ccd1c5fc5e903f71accc5543a8cecfd3#flaticon_new_it_2) format("svg")
}
i[class^="flaticon-new-2-"]:before, i[class*=" flaticon-new-2-"]:before {
font-family: flaticon_new_it_2 !important;
font-style: normal;
font-weight: normal !important;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.flaticon-new-2-program:before {
content: "\f101";
}
.flaticon-new-2-artificial-intelligence:before {
content: "\f102";
}
.flaticon-new-2-web:before {
content: "\f103";
}
.flaticon-new-2-promotion:before {
content: "\f104";
}
.flaticon-new-2-application:before {
content: "\f105";
}
.flaticon-new-2-digital:before {
content: "\f106";
}
.flaticon-new-2-blueprint:before {
content: "\f107";
}
.flaticon-new-2-revenue:before {
content: "\f108";
}
.flaticon-new-2-profits:before {
content: "\f109";
}
.flaticon-new-2-store:before {
content: "\f10a";
}
.flaticon-new-2-graduated:before {
content: "\f10b";
}
.flaticon-new-2-healthcare:before {
content: "\f10c";
}
.flaticon-new-2-creative:before {
content: "\f10d";
}
.flaticon-new-2-growth:before {
content: "\f10e";
}
.flaticon-new-2-infrastructure:before {
content: "\f10f";
}
.flaticon-new-2-fingerprint-scan:before {
content: "\f110";
}
.flaticon-new-2-idea:before {
content: "\f111";
}
.flaticon-new-2-lock:before {
content: "\f112";
}
.flaticon-new-2-select:before {
content: "\f113";
}
.flaticon-new-2-meeting:before {
content: "\f114";
}
.flaticon-new-2-group:before {
content: "\f115";
}
.flaticon-new-2-meeting-room:before {
content: "\f116";
}
.flaticon-new-2-electricity:before {
content: "\f117";
}
.flaticon-new-2-web-development:before {
content: "\f118";
}
.flaticon-new-2-coding:before {
content: "\f119";
}
.flaticon-new-2-cloud:before {
content: "\f11a";
}
.flaticon-new-2-brain:before {
content: "\f11b";
}
.flaticon-new-2-light-bulb:before {
content: "\f11c";
}
.flaticon-new-2-idea-1:before {
content: "\f11d";
}
.flaticon-new-2-speech-bubble:before {
content: "\f11e";
}
.flaticon-new-2-idea-2:before {
content: "\f11f";
}
.flaticon-new-2-bubble-chat:before {
content: "\f120";
}
.flaticon-new-2-happy-client:before {
content: "\f121";
}@font-face {
font-family: 'icomoon';
src:  url(//safer4.com/wp-content/themes/infetech/assets/libs/icomoon/fonts/icomoon.eot?ck6tw8);
src:  url(//safer4.com/wp-content/themes/infetech/assets/libs/icomoon/fonts/icomoon.eot?ck6tw8#iefix) format('embedded-opentype'),
url(//safer4.com/wp-content/themes/infetech/assets/libs/icomoon/fonts/icomoon.ttf?ck6tw8) format('truetype'),
url(//safer4.com/wp-content/themes/infetech/assets/libs/icomoon/fonts/icomoon.woff?ck6tw8) format('woff'),
url(//safer4.com/wp-content/themes/infetech/assets/libs/icomoon/fonts/icomoon.svg?ck6tw8#icomoon) format('svg');
font-weight: normal;
font-style: normal;
font-display: block;
}
[class^="icomoon-"], [class*=" icomoon-"] { font-family: 'icomoon' !important;
speak: never;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icomoon-phone:before {
content: "\e913";
}
.icomoon-play-button:before {
content: "\e90c";
}
.icomoon-send:before {
content: "\e915";
}
.icomoon-local:before {
content: "\e900";
}
.icomoon-chat:before {
content: "\e91a";
}
.icomoon-arroba:before {
content: "\e908";
}
.icomoon-business-strategy:before {
content: "\e912";
}
.icomoon-user:before {
content: "\e901";
}
.icomoon-comment:before {
content: "\e902";
}
.icomoon-global:before {
content: "\e91b";
}
.icomoon-software-development:before {
content: "\e916";
}
.icomoon-project-management:before {
content: "\e917";
}
.icomoon-innovation:before {
content: "\e90f";
}
.icomoon-web-design:before {
content: "\e903";
}
.icomoon-cyber-security:before {
content: "\e904";
}
.icomoon-digital-marketing:before {
content: "\e905";
}
.icomoon-technical-support:before {
content: "\e906";
}
.icomoon-new-product:before {
content: "\e907";
}
.icomoon-technology-1:before {
content: "\e90d";
}
.icomoon-network:before {
content: "\e90e";
}
.icomoon-technology:before {
content: "\e914";
}
.icomoon-engineering:before {
content: "\e910";
}
.icomoon-nanotechnology:before {
content: "\e911";
}
.icomoon-social-media:before {
content: "\e918";
}
.icomoon-tool:before {
content: "\e919";
}.fa,.fab,.fad,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}.fa-pulse{-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}:root .fa-flip-both,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-acquisitions-incorporated:before{content:"\f6af"}.fa-ad:before{content:"\f641"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-airbnb:before{content:"\f834"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-alipay:before{content:"\f642"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-ankh:before{content:"\f644"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-artstation:before{content:"\f77a"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atlassian:before{content:"\f77b"}.fa-atom:before{content:"\f5d2"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-baby:before{content:"\f77c"}.fa-baby-carriage:before{content:"\f77d"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-bacon:before{content:"\f7e5"}.fa-bacteria:before{content:"\e059"}.fa-bacterium:before{content:"\e05a"}.fa-bahai:before{content:"\f666"}.fa-balance-scale:before{content:"\f24e"}.fa-balance-scale-left:before{content:"\f515"}.fa-balance-scale-right:before{content:"\f516"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-battle-net:before{content:"\f835"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bible:before{content:"\f647"}.fa-bicycle:before{content:"\f206"}.fa-biking:before{content:"\f84a"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-biohazard:before{content:"\f780"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blind:before{content:"\f29d"}.fa-blog:before{content:"\f781"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-dead:before{content:"\f6b7"}.fa-book-medical:before{content:"\f7e6"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-bookmark:before{content:"\f02e"}.fa-bootstrap:before{content:"\f836"}.fa-border-all:before{content:"\f84c"}.fa-border-none:before{content:"\f850"}.fa-border-style:before{content:"\f853"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-box-tissue:before{content:"\e05b"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-bread-slice:before{content:"\f7ec"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-buffer:before{content:"\f837"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-business-time:before{content:"\f64a"}.fa-buy-n-large:before{content:"\f8a6"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-calendar-week:before{content:"\f784"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-campground:before{content:"\f6bb"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-candy-cane:before{content:"\f786"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-crash:before{content:"\f5e1"}.fa-car-side:before{content:"\f5e4"}.fa-caravan:before{content:"\f8ff"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-carrot:before{content:"\f787"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cash-register:before{content:"\f788"}.fa-cat:before{content:"\f6be"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-cheese:before{content:"\f7ef"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-chromecast:before{content:"\f838"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-clinic-medical:before{content:"\f7f2"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudflare:before{content:"\e07d"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-medical:before{content:"\f7f5"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-compress-alt:before{content:"\f422"}.fa-compress-arrows-alt:before{content:"\f78c"}.fa-concierge-bell:before{content:"\f562"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-cotton-bureau:before{content:"\f89e"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-credit-card:before{content:"\f09d"}.fa-critical-role:before{content:"\f6c9"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-crutch:before{content:"\f7f7"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dailymotion:before{content:"\e052"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-deezer:before{content:"\e077"}.fa-delicious:before{content:"\f1a5"}.fa-democrat:before{content:"\f747"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dharmachakra:before{content:"\f655"}.fa-dhl:before{content:"\f790"}.fa-diagnoses:before{content:"\f470"}.fa-diaspora:before{content:"\f791"}.fa-dice:before{content:"\f522"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-disease:before{content:"\f7fa"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dog:before{content:"\f6d3"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dragon:before{content:"\f6d5"}.fa-draw-polygon:before{content:"\f5ee"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dumpster:before{content:"\f793"}.fa-dumpster-fire:before{content:"\f794"}.fa-dungeon:before{content:"\f6d9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edge-legacy:before{content:"\e078"}.fa-edit:before{content:"\f044"}.fa-egg:before{content:"\f7fb"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-ethernet:before{content:"\f796"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-evernote:before{content:"\f839"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-alt:before{content:"\f424"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fan:before{content:"\f863"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-faucet:before{content:"\e005"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-figma:before{content:"\f799"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-alt:before{content:"\f7e4"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-firefox-browser:before{content:"\e007"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-fist-raised:before{content:"\f6de"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-funnel-dollar:before{content:"\f662"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gifts:before{content:"\f79c"}.fa-git:before{content:"\f1d3"}.fa-git-alt:before{content:"\f841"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-cheers:before{content:"\f79f"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glass-whiskey:before{content:"\f7a0"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-globe-europe:before{content:"\f7a2"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-pay:before{content:"\e079"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guilded:before{content:"\e07e"}.fa-guitar:before{content:"\f7a6"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hamburger:before{content:"\f805"}.fa-hammer:before{content:"\f6e3"}.fa-hamsa:before{content:"\f665"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-medical:before{content:"\e05c"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-holding-water:before{content:"\f4c1"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-middle-finger:before{content:"\f806"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-sparkles:before{content:"\e05d"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-hands-wash:before{content:"\e05e"}.fa-handshake:before{content:"\f2b5"}.fa-handshake-alt-slash:before{content:"\e05f"}.fa-handshake-slash:before{content:"\e060"}.fa-hanukiah:before{content:"\f6e6"}.fa-hard-hat:before{content:"\f807"}.fa-hashtag:before{content:"\f292"}.fa-hat-cowboy:before{content:"\f8c0"}.fa-hat-cowboy-side:before{content:"\f8c1"}.fa-hat-wizard:before{content:"\f6e8"}.fa-hdd:before{content:"\f0a0"}.fa-head-side-cough:before{content:"\e061"}.fa-head-side-cough-slash:before{content:"\e062"}.fa-head-side-mask:before{content:"\e063"}.fa-head-side-virus:before{content:"\e064"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-broken:before{content:"\f7a9"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hiking:before{content:"\f6ec"}.fa-hippo:before{content:"\f6ed"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hive:before{content:"\e07f"}.fa-hockey-puck:before{content:"\f453"}.fa-holly-berry:before{content:"\f7aa"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7ab"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hospital-user:before{content:"\f80d"}.fa-hot-tub:before{content:"\f593"}.fa-hotdog:before{content:"\f80f"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-house-damage:before{content:"\f6f1"}.fa-house-user:before{content:"\e065"}.fa-houzz:before{content:"\f27c"}.fa-hryvnia:before{content:"\f6f2"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-ice-cream:before{content:"\f810"}.fa-icicles:before{content:"\f7ad"}.fa-icons:before{content:"\f86d"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-ideal:before{content:"\e013"}.fa-igloo:before{content:"\f7ae"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-innosoft:before{content:"\e080"}.fa-instagram:before{content:"\f16d"}.fa-instagram-square:before{content:"\e055"}.fa-instalod:before{content:"\e081"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itch-io:before{content:"\f83a"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi:before{content:"\f669"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-journal-whills:before{content:"\f66a"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaaba:before{content:"\f66b"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-khanda:before{content:"\f66d"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-landmark:before{content:"\f66f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laptop-house:before{content:"\e066"}.fa-laptop-medical:before{content:"\f812"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lungs:before{content:"\f604"}.fa-lungs-virus:before{content:"\e067"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mask:before{content:"\f6fa"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-mdb:before{content:"\f8ca"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mendeley:before{content:"\f7b3"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-meteor:before{content:"\f753"}.fa-microblog:before{content:"\e01a"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mitten:before{content:"\f7b5"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mixer:before{content:"\e056"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-motorcycle:before{content:"\f21c"}.fa-mountain:before{content:"\f6fc"}.fa-mouse:before{content:"\f8cc"}.fa-mouse-pointer:before{content:"\f245"}.fa-mug-hot:before{content:"\f7b6"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-octopus-deploy:before{content:"\e082"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-orcid:before{content:"\f8d2"}.fa-osi:before{content:"\f41a"}.fa-otter:before{content:"\f700"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-pager:before{content:"\f815"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-pastafarianism:before{content:"\f67b"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-penny-arcade:before{content:"\f704"}.fa-people-arrows:before{content:"\e068"}.fa-people-carry:before{content:"\f4ce"}.fa-pepper-hot:before{content:"\f816"}.fa-perbyte:before{content:"\e083"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-person-booth:before{content:"\f756"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-alt:before{content:"\f879"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-square-alt:before{content:"\f87b"}.fa-phone-volume:before{content:"\f2a0"}.fa-photo-video:before{content:"\f87c"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-square:before{content:"\e01e"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-pizza-slice:before{content:"\f818"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-plane-slash:before{content:"\e069"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poo:before{content:"\f2fe"}.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pump-medical:before{content:"\e06a"}.fa-pump-soap:before{content:"\e06b"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-quran:before{content:"\f687"}.fa-r-project:before{content:"\f4f7"}.fa-radiation:before{content:"\f7b9"}.fa-radiation-alt:before{content:"\f7ba"}.fa-rainbow:before{content:"\f75b"}.fa-random:before{content:"\f074"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-record-vinyl:before{content:"\f8d9"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redhat:before{content:"\f7bc"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-remove-format:before{content:"\f87d"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-republican:before{content:"\f75e"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-restroom:before{content:"\f7bd"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-ring:before{content:"\f70b"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-running:before{content:"\f70c"}.fa-rupee-sign:before{content:"\f156"}.fa-rust:before{content:"\e07a"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-salesforce:before{content:"\f83b"}.fa-sass:before{content:"\f41e"}.fa-satellite:before{content:"\f7bf"}.fa-satellite-dish:before{content:"\f7c0"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-scroll:before{content:"\f70e"}.fa-sd-card:before{content:"\f7c2"}.fa-search:before{content:"\f002"}.fa-search-dollar:before{content:"\f688"}.fa-search-location:before{content:"\f689"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-shield-virus:before{content:"\e06c"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopify:before{content:"\e057"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-sim-card:before{content:"\f7c4"}.fa-simplybuilt:before{content:"\f215"}.fa-sink:before{content:"\e06d"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skating:before{content:"\f7c5"}.fa-sketch:before{content:"\f7c6"}.fa-skiing:before{content:"\f7c9"}.fa-skiing-nordic:before{content:"\f7ca"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-slash:before{content:"\f715"}.fa-sleigh:before{content:"\f7cc"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smog:before{content:"\f75f"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-sms:before{content:"\f7cd"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowboarding:before{content:"\f7ce"}.fa-snowflake:before{content:"\f2dc"}.fa-snowman:before{content:"\f7d0"}.fa-snowplow:before{content:"\f7d2"}.fa-soap:before{content:"\e06e"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-down-alt:before{content:"\f884"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-amount-up-alt:before{content:"\f885"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-speaker-deck:before{content:"\f83c"}.fa-spell-check:before{content:"\f891"}.fa-spider:before{content:"\f717"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-square-root-alt:before{content:"\f698"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stackpath:before{content:"\f842"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-stopwatch-20:before{content:"\e06f"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-store-alt-slash:before{content:"\e070"}.fa-store-slash:before{content:"\e071"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-suse:before{content:"\f7d6"}.fa-swatchbook:before{content:"\f5c3"}.fa-swift:before{content:"\f8e1"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-symfony:before{content:"\f83d"}.fa-synagogue:before{content:"\f69b"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-low:before{content:"\f76b"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-tenge:before{content:"\f7d7"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-the-red-yeti:before{content:"\f69d"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-think-peaks:before{content:"\f731"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-tiktok:before{content:"\e07b"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet:before{content:"\f7d8"}.fa-toilet-paper:before{content:"\f71e"}.fa-toilet-paper-slash:before{content:"\e072"}.fa-toolbox:before{content:"\f552"}.fa-tools:before{content:"\f7d9"}.fa-tooth:before{content:"\f5c9"}.fa-torah:before{content:"\f6a0"}.fa-torii-gate:before{content:"\f6a1"}.fa-tractor:before{content:"\f722"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-trailer:before{content:"\e041"}.fa-train:before{content:"\f238"}.fa-tram:before{content:"\f7da"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-trash-restore:before{content:"\f829"}.fa-trash-restore-alt:before{content:"\f82a"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbraco:before{content:"\f8e8"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-uncharted:before{content:"\e084"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-unity:before{content:"\e049"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-unsplash:before{content:"\e07c"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-injured:before{content:"\f728"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-nurse:before{content:"\f82f"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-users-slash:before{content:"\e073"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-vest:before{content:"\e085"}.fa-vest-patches:before{content:"\e086"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-virus:before{content:"\e074"}.fa-virus-slash:before{content:"\e075"}.fa-viruses:before{content:"\e076"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-voicemail:before{content:"\f897"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-mute:before{content:"\f6a9"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vote-yea:before{content:"\f772"}.fa-vr-cardboard:before{content:"\f729"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-watchman-monitoring:before{content:"\e087"}.fa-water:before{content:"\f773"}.fa-wave-square:before{content:"\f83e"}.fa-waze:before{content:"\f83f"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-wind:before{content:"\f72e"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wodu:before{content:"\e088"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yammer:before{content:"\f840"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:400;font-display:block;src:url(//safer4.com/wp-content/themes/infetech/assets/libs/fontawesome/webfonts/fa-brands-400.eot);src:url(//safer4.com/wp-content/themes/infetech/assets/libs/fontawesome/webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(//safer4.com/wp-content/themes/infetech/assets/libs/fontawesome/webfonts/fa-brands-400.woff2) format("woff2"),url(//safer4.com/wp-content/themes/infetech/assets/libs/fontawesome/webfonts/fa-brands-400.woff) format("woff"),url(//safer4.com/wp-content/themes/infetech/assets/libs/fontawesome/webfonts/fa-brands-400.ttf) format("truetype"),url(//safer4.com/wp-content/themes/infetech/assets/libs/fontawesome/webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands"}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;font-display:block;src:url(//safer4.com/wp-content/themes/infetech/assets/libs/fontawesome/webfonts/fa-regular-400.eot);src:url(//safer4.com/wp-content/themes/infetech/assets/libs/fontawesome/webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(//safer4.com/wp-content/themes/infetech/assets/libs/fontawesome/webfonts/fa-regular-400.woff2) format("woff2"),url(//safer4.com/wp-content/themes/infetech/assets/libs/fontawesome/webfonts/fa-regular-400.woff) format("woff"),url(//safer4.com/wp-content/themes/infetech/assets/libs/fontawesome/webfonts/fa-regular-400.ttf) format("truetype"),url(//safer4.com/wp-content/themes/infetech/assets/libs/fontawesome/webfonts/fa-regular-400.svg#fontawesome) format("svg")}.fab,.far{font-weight:400}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;font-display:block;src:url(//safer4.com/wp-content/themes/infetech/assets/libs/fontawesome/webfonts/fa-solid-900.eot);src:url(//safer4.com/wp-content/themes/infetech/assets/libs/fontawesome/webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(//safer4.com/wp-content/themes/infetech/assets/libs/fontawesome/webfonts/fa-solid-900.woff2) format("woff2"),url(//safer4.com/wp-content/themes/infetech/assets/libs/fontawesome/webfonts/fa-solid-900.woff) format("woff"),url(//safer4.com/wp-content/themes/infetech/assets/libs/fontawesome/webfonts/fa-solid-900.ttf) format("truetype"),url(//safer4.com/wp-content/themes/infetech/assets/libs/fontawesome/webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.far,.fas{font-family:"Font Awesome 5 Free"}.fa,.fas{font-weight:900}
      html {
line-height: 1.15; -webkit-text-size-adjust: 100%; }  body {
margin: 0;
} main {
display: block;
} h1 {
font-size: 2em;
margin: 0.67em 0;
}  hr {
box-sizing: content-box; height: 0; overflow: visible; } pre {
font-family: monospace, monospace; font-size: 1em; }  a {
background-color: transparent;
} abbr[title] {
border-bottom: none; text-decoration: underline; text-decoration: underline dotted; } b,
strong {
font-weight: bolder;
} code,
kbd,
samp {
font-family: monospace, monospace; font-size: 1em; } small {
font-size: 80%;
} sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sub {
bottom: -0.25em;
}
sup {
top: -0.5em;
}  img {
border-style: none;
}  button,
input,
optgroup,
select,
textarea {
font-family: inherit; font-size: 100%; line-height: 1.15; margin: 0; } button,
input { overflow: visible;
} button,
select { text-transform: none;
} button,
[type=button],
[type=reset],
[type=submit] {
-webkit-appearance: button;
} button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
border-style: none;
padding: 0;
} button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
outline: 1px dotted ButtonText;
} fieldset {
padding: 0.35em 0.75em 0.625em;
} legend {
box-sizing: border-box; color: inherit; display: table; max-width: 100%; padding: 0; white-space: normal; } progress {
vertical-align: baseline;
} textarea {
overflow: auto;
} [type=checkbox],
[type=radio] {
box-sizing: border-box; padding: 0; } [type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
height: auto;
} [type=search] {
-webkit-appearance: textfield; outline-offset: -2px; } [type=search]::-webkit-search-decoration {
-webkit-appearance: none;
} ::-webkit-file-upload-button {
-webkit-appearance: button; font: inherit; }  details {
display: block;
} summary {
display: list-item;
}  template {
display: none;
} [hidden] {
display: none;
} html {
overflow-x: hidden;
}
*, *::before, *::after {
box-sizing: border-box;
}
body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
margin: 0;
padding: 0;
overflow-x: hidden;
font-size: var(--font-size);
line-height: var(--line-height);
color: var(--text);
font-family: var(--primary-font);
letter-spacing: var(--letter-spacing);
}
body.single-career {
overflow-x: unset;
}
@media (max-width: 1024px) {
body.single-career {
overflow-x: hidden;
}
}
body.admin-bar {
top: 32px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
color: var(--heading);
font-family: var(--secondary-font);
font-weight: bold;
clear: both;
margin: 1em 0 0.5em 0px;
}
h1 {
font-size: 2em;
line-height: 1.21;
}
h2 {
font-size: 1.7411em;
line-height: 1.21;
}
h3 {
font-size: 1.5157em;
}
h4 {
font-size: 1.3195em;
}
h5 {
font-size: 1.1487em;
}
h6 {
font-size: 1em;
}
a {
text-decoration: none;
color: var(--primary);
}
a:hover, a:focus {
text-decoration: none;
outline: none;
}
p {
line-height: var(--line-height);
margin: 0 0 2em;
}
p:empty {
height: 0;
margin: 0;
}
.elementor-text-editor p {
line-height: inherit;
margin: 0;
}
blockquote {
position: relative;
font-weight: 600;
color: var(--heading);
padding: 20px 60px 20px;
font-size: 1.2em;
font-style: italic;
margin: 0;
}
@media (max-width: 767px) {
blockquote {
padding: 0;
margin: 10px;
}
}
blockquote.wp-block-quote.is-style-large {
padding: 20px 60px 20px;
}
@media (max-width: 767px) {
blockquote.wp-block-quote.is-style-large {
padding: 35px;
margin: 10px;
}
}
blockquote p {
margin-bottom: 30px;
}
blockquote cite {
text-decoration: underline;
}
blockquote:before {
position: absolute;
left: 10px;
top: 25px;
content: "\f17f";
font-family: "ovaicon";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
display: inline-block;
font-style: normal;
font-variant: normal;
font-weight: normal;
vertical-align: middle;
font-size: 30px;
color: var(--primary);
}
@media (max-width: 767px) {
blockquote:before {
left: -20px;
top: -5px;
font-size: 15px;
}
}
blockquote.has-text-align-right:before {
right: 0;
left: auto;
transform: rotate(180deg);
width: 30px;
height: 30px;
text-align: right;
position: absolute;
}
@media (max-width: 767px) {
blockquote.has-text-align-right:before {
right: -20px;
width: 15px;
height: 15px;
}
}
blockquote.left {
margin-right: 20px;
text-align: right;
margin-left: 0;
width: 33%;
float: left;
}
blockquote.right {
margin-left: 20px;
text-align: left;
margin-right: 0;
width: 33%;
float: right;
}
address {
font-style: italic;
margin: 0 0 24px;
}
cite,
em,
var,
address,
dfn {
font-style: italic;
}
pre {
border: 1px solid #d1d1d1;
font-size: 16px;
font-size: 1rem;
line-height: 1.3125;
margin: 1.75em 0 1.75em 0;
max-width: 100%;
overflow: auto;
padding: 1.75em;
white-space: pre;
white-space: pre-wrap;
word-wrap: break-word;
}
hr {
background-color: #ccc;
border: 0;
height: 1px;
margin: 0 0 1em;
}
.elementor-widget-text-editor p {
line-height: inherit;
}
.btn,
.button {
border-radius: 5px;
padding: 12px 25px;
line-height: 1.5em;
} body {
background-color: #fff;  }
body.container_boxed .wrap-fullwidth {
max-width: var(--container-width);
margin: 0 auto;
background-color: #fff;
}
body.container_boxed .row_site {
padding: var(--boxed-offset);
}
body .row_site {
margin: 0 auto;
}
body .container_site {
padding-left: 10px;
padding-right: 10px;
}
body .ovamegamenu_container_default {
width: var(--container-width);
}
body .elementor-widget-image .elementor-widget-container a {
padding: 0 !important;
}
body .row_site,
body .elementor-section.elementor-section-boxed > .elementor-container {
max-width: var(--container-width);
}
@media (max-width: 1023px) {
body .row_site,
body .elementor-section.elementor-section-boxed > .elementor-container {
padding-left: 10px;
padding-right: 10px;
}
}
body.page-template-default .elementor-section.elementor-section-boxed > .elementor-container {
padding-left: 0px;
padding-right: 0px;
}
body.layout_1c #main-content {
max-width: 100%;
}
body.layout_2l #main-content {
float: right;
}
body.layout_2l #sidebar {
float: left;
}
body.layout_2r #main-content {
float: left;
}
body.layout_2r #sidebar {
float: right;
}
body #main-content {
max-width: calc(var(--main-content) - 60px);
width: 100%;
margin-bottom: 60px;
}
@media (max-width: 1023px) {
body #main-content {
max-width: 100%;
}
}
body #sidebar {
max-width: var(--width-sidebar);
width: 100%;
}
@media (max-width: 1023px) {
body #sidebar {
max-width: 100%;
}
}
body .wrap_footer {
clear: both;
}
body .inside-content {
min-height: calc(100vh - 200px);
}
body #ova-custom-cursor__cursor {
-webkit-transition: width 0.3s, height 0.3s, opacity 0.3s;
transition: width 0.3s, height 0.3s, opacity 0.3s;
position: fixed;
top: -5px;
left: -5px;
width: 10px;
height: 10px;
pointer-events: none;
opacity: 0.5;
background-color: var(--primary);
border-radius: 50%;
pointer-events: none;
z-index: 999999;
}
body #ova-custom-cursor__cursor-border {
-webkit-transition: all 0.2s ease-out;
transition: all 0.2s ease-out;
transition: top 0.15s ease-out, left 0.15s ease-out, width 0.15s ease-out, height 0.15s ease-out, background-color 0.15s ease-out;
--size: 26px;
position: fixed;
top: calc(var(--size) / -2);
left: calc(var(--size) / -2);
width: var(--size);
height: var(--size);
border-radius: 100%;
box-shadow: 0 0 0 1px var(--primary);
pointer-events: none;
-webkit-transform: translate(calc(-50% + 5px), -50%);
transform: translate(calc(-50% + 5px), -50%);
z-index: 999999;
}
body #ova-loader {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-position: center;
background-repeat: no-repeat;
background-color: #fff;
z-index: 9999;
}
body #ova-loader .page-loader {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
stroke-linecap: round;
}
body #ova-loader .page-loader circle {
fill: none;
stroke-width: 1.5;
animation-duration: 2s;
animation-iteration-count: infinite;
animation-timing-function: linear;
transform-origin: 25px 25px;
will-change: transform;
stroke: var(--primary);
}
body #ova-loader .page-loader circle:nth-of-type(1) {
stroke-dasharray: 40px;
animation-name: preloader_1;
}
body #ova-loader .page-loader circle:nth-of-type(2) {
stroke-dasharray: 80px;
animation-name: preloader_2;
}
@keyframes preloader_1 {
100% {
transform: rotate(360deg);
}
}
@keyframes preloader_2 {
100% {
transform: rotate(-360deg);
}
} .compensate-for-scrollbar {
padding: 0 !important;
} .wrap_header {
padding-top: 15px;
padding-bottom: 15px;
}
@media (min-width: 1024px) {
.wrap_header {
display: flex;
justify-content: space-between;
align-content: center;
align-items: center;
}
} .site-brand a .blogname {
font-weight: bold;
font-size: 2em;
line-height: 1.5em;
color: var(--primary);
}
@media (max-width: 1023px) {
.site-brand {
display: block;
float: left;
max-width: calc(100% - 120px);
z-index: 1;
position: relative;
}
}
.navbar-brand img {
height: 49px;
}  button.menu-toggle {
cursor: pointer;
text-align: left;
position: relative;
border: 2px solid transparent;
box-shadow: none;
border-radius: 4px;
background-image: none;
padding: 0.6180469716em 0.875em 0.6180469716em 2.617924em;
font-size: 0.875em;
max-width: 120px;
display: block;
margin-left: auto;
color: #fff;
background-color: var(--primary);
}
@media (min-width: 1024px) {
button.menu-toggle {
display: none;
}
}
button.menu-toggle:hover {
background-color: var(--primary);
color: #fff;
}
button.menu-toggle span:before {
transition: all, ease, 0.2s;
}
button.menu-toggle:before, button.menu-toggle:after,
button.menu-toggle span:before {
content: "";
display: block;
height: 2px;
width: 14px;
position: absolute;
top: 50%;
left: 1em;
margin-top: -1px;
transition: all, ease, 0.2s;
border-radius: 3px;
background-color: #fff;
}
button.menu-toggle:before {
transform: translateY(-4px);
}
button.menu-toggle:after {
transform: translateY(4px);
}
.toggled button.menu-toggle::before, .toggled button.menu-toggle::after {
transform: rotate(45deg);
}
.toggled button.menu-toggle::after {
transform: rotate(-45deg);
}
.toggled button.menu-toggle span::before {
opacity: 0;
}
ul.menu li.current-menu-item > a, ul.menu li.current-menu-ancestor > a, ul.menu li.current-menu-parent > a {
color: var(--primary);
}
.main-navigation {
position: relative;
}
.main-navigation .menu {
clear: both;
}
.main-navigation ul {
list-style: none;
}
.main-navigation ul.menu {
margin-left: 0;
margin-bottom: 0;
}
.main-navigation ul.menu ul {
display: block;
margin-left: 1em;
}
.main-navigation ul li {
display: inline-block;
position: relative;
text-align: left;
}
@media (max-width: 1023px) {
.main-navigation ul li {
display: block;
}
}
.main-navigation ul li.menu-item.current-menu-parent > a, .main-navigation ul li.menu-item.current-menu-item > a, .main-navigation ul li.menu-item.current-menu-ancestor > a {
color: var(--primary);
}
.main-navigation ul li.menu-item .sub-menu .menu-item:hover > a {
color: var(--primary);
background-color: rgba(0, 0, 0, 0.03);
}
.main-navigation ul li a {
color: var(--text);
padding: 0.6180469716em;
display: block;
}
.main-navigation ul li a:hover {
color: var(--primary);
}
.main-navigation.toggled .primary-navigation ul.menu {
max-height: 999px;
}
.main-navigation .dropdown-toggle {
background: transparent;
position: absolute;
top: 3px;
right: 0;
display: block;
padding: 0.5em 1em;
color: inherit;
border-radius: 0;
border: 1px solid #eee;
}
.main-navigation .dropdown-toggle::after {
content: "\f104";
font-family: "ovaicon";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
display: inline-block;
font-style: normal;
font-variant: normal;
font-weight: normal;
line-height: 1;
vertical-align: middle;
font-size: 0.6em;
}
.main-navigation .dropdown-toggle:focus {
outline: none;
}
.main-navigation .dropdown-toggle:hover {
background: transparent;
}
.main-navigation .dropdown-toggle.toggled-on:after {
content: "\f10c";
font-family: "ovaicon";
}
@media (min-width: 1024px) {
.main-navigation .dropdown-toggle {
display: none;
}
}
@media (max-width: 1023px) {
.main-navigation .primary-navigation ul {
max-height: 0;
overflow: hidden;
transition: all ease 0.4s;
margin: 0;
padding: 0;
}
.main-navigation .primary-navigation ul.show {
max-height: 999px;
}
}
@media (min-width: 1024px) {
.main-navigation ul li {
display: inline-block;
position: relative;
text-align: left;
}
.main-navigation ul li:hover > ul, .main-navigation ul li.focus > ul {
left: 1.1em;
display: block;
opacity: 1;
visibility: visible;
}
.main-navigation ul li:hover > ul li > ul, .main-navigation ul li.focus > ul li > ul {
left: -9999px; opacity: 0;
visibility: hidden;
}
.main-navigation ul li:hover > ul li > ul.sub-menu--is-touch-device, .main-navigation ul li.focus > ul li > ul.sub-menu--is-touch-device {
display: none;
left: 0;
}
.main-navigation ul li:hover > ul li:hover > ul, .main-navigation ul li:hover > ul li.focus > ul, .main-navigation ul li.focus > ul li:hover > ul, .main-navigation ul li.focus > ul li.focus > ul {
left: 100%;
top: 0;
display: block;
opacity: 1;
visibility: visible;
}
.main-navigation ul ul.sub-menu {
float: left;
position: absolute;
top: 100%;
z-index: 99999;
left: 0; opacity: 0;
visibility: hidden;
border-radius: 3px;
background-color: #fff;
box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.07);
padding: 15px 0;
}
.main-navigation ul ul.sub-menu.sub-menu--is-touch-device {
display: none;
left: 0;
}
.main-navigation ul ul.sub-menu li {
display: block;
min-width: 260px;
}
.main-navigation ul.menu {
max-height: none;
overflow: visible;
margin-top: 0;
transition: none;
}
.main-navigation ul.menu > li > a {
padding: 1em;
font-weight: 600;
}
.main-navigation ul.menu > li.menu-item-has-children:hover::after, .main-navigation ul.menu > li.page_item_has_children:hover::after {
display: block;
}
.main-navigation ul.menu > li.menu-item-has-children > a:after, .main-navigation ul.menu > li.page_item_has_children > a:after, .main-navigation ul.menu > li.has-mega-menu > a:after {
content: "\f104";
font-family: "ovaicon";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
display: inline-block;
font-style: normal;
font-variant: normal;
font-weight: normal;
line-height: 1;
vertical-align: middle;
margin: 0 0.35em;
font-size: 0.5em;
font-weight: 500;
-ms-transition: transform 0.3s ease;
-o-transition: transform 0.3s ease;
-moz-transition: transform 0.3s ease;
-webkit-transition: transform 0.3s ease;
transition: transform 0.3s ease;
}
.main-navigation ul.menu > li:last-child > a {
padding-right: 0;
}
.main-navigation ul.menu ul.sub-menu {
margin: 0;
padding: 15px 0px;
}
.main-navigation ul.menu ul.sub-menu li.menu-item a {
padding: 8px 25px 8px;
font-weight: 400;
font-size: 14px;
line-height: 1.5;
}
.main-navigation ul.menu ul.sub-menu li.menu-item:last-child {
border-bottom: 0;
margin-bottom: 0;
}
.main-navigation ul.menu ul.sub-menu ul {
margin: 0;
}
.main-navigation ul.menu ul.sub-menu li.menu-item-has-children > a::after, .main-navigation ul.menu ul.sub-menu li.page_item_has_children > a::after {
content: "\f104";
font-family: "ovaicon";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
display: inline-block;
font-style: normal;
font-variant: normal;
font-weight: normal;
line-height: 1;
vertical-align: middle;
float: right;
margin-left: 10px;
margin-top: 7px;
font-size: 0.5em;
font-weight: 500;
line-height: 1;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}
} footer.footer {
clear: both;
padding-bottom: 45px;
padding-top: 45px;
background-color: #333;
color: #fff;
text-align: center;
margin-top: 60px;
}  article.post-wrap {
margin-bottom: 100px;
}
@media (max-width: 1024px) {
article.post-wrap {
margin-bottom: 70px;
}
}
article.post-wrap.sticky {
background: #f9f9f9;
padding: 30px;
border-top: 5px solid;
border-color: var(--primary);
}
article.post-wrap.sticky .post-excerpt {
text-align: justify;
}
article.post-wrap .post-title {
margin: 0px 0px 20px 0px;
padding: 0;
line-height: 1.3em;
font-weight: bold;
color: var(--heading);
-webkit-hyphens: unset;
-moz-hyphens: unset;
-ms-hyphens: unset;
hyphens: unset;
word-break: break-word;
}
article.post-wrap .post-media {
margin-bottom: 30px;
}
article.post-wrap .post-media img {
width: 100%;
}
article.post-wrap ul.post-meta {
list-style-type: none;
margin: 0 0px 25px 0px;
padding: 0;
display: inline-block;
}
article.post-wrap ul.post-meta li {
display: inline-block;
margin: 0 10px 0px 0;
color: var(--text);
opacity: 0.8;
}
article.post-wrap ul.post-meta li:hover {
opacity: 1;
}
article.post-wrap ul.post-meta li i {
font-size: 0.8em;
color: var(--primary);
padding-right: 3px;
}
article.post-wrap ul.post-meta li a {
color: var(--text);
opacity: 0.8;
}
article.post-wrap ul.post-meta li a:hover {
color: var(--primary);
opacity: 1;
}
article.post-wrap .post-excerpt > p {
margin-top: 0px;
margin-bottom: 25px;
}
article.post-wrap a.readmore {
clear: both;
background-color: var(--primary);
border-color: var(--primary);
border: 1px solid;
color: #fff;
font-size: 1em;
text-transform: none;
font-weight: 600;
box-shadow: none;
display: inline-block;
transition: all 0.2s linear;
-moz-transition: all 0.2s linear;
-webkit-transition: all 0.2s linear;
-o-transition: all 0.2s linear;
}
article.post-wrap a.readmore:hover {
color: var(--primary);
border-color: var(--primary);
background-color: #fff;
} .blog_default .post-title {
font-weight: normal;
}
.blog_default .post-excerpt {
font-size: 1em;
}
.blog_default .date {
font-size: 1em;
}
.layout_1c .blog_default {
max-width: 920px;
margin: 0 auto;
} .blog_grid {
display: grid;
gap: 25px;
grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1023px) {
.blog_grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 767px) {
.blog_grid {
grid-template-columns: repeat(1, 1fr);
}
}
.blog_grid article.post-wrap .post-media {
margin-bottom: 15px;
}
.blog_grid article.post-wrap .post-title {
font-size: 22px;
}
.blog_grid article.post-wrap .post-excerpt {
font-size: 1em;
}
.blog_grid article.post-wrap ul.post-meta {
margin-bottom: 15px;
}
.blog_grid article.post-wrap ul.post-meta .date {
font-size: 1em;
}
.layout_2l .blog_grid, .layout_2r .blog_grid {
grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
.layout_2l .blog_grid, .layout_2r .blog_grid {
grid-template-columns: repeat(1, 1fr);
}
} .blog_masonry {
margin-left: -15px;
margin-right: -15px;
}
.blog_masonry article {
width: 33.3%;
}
@media (max-width: 1200px) {
.blog_masonry article {
width: 50%;
}
}
@media (max-width: 767px) {
.blog_masonry article {
width: 100%;
}
}
.blog_masonry .content {
margin: 0px 15px;
position: relative;
min-height: 100px;
}
.blog_masonry .content .post-media {
margin-bottom: 15px;
}
.blog_masonry .content .post-title {
font-size: 22px;
}
.blog_masonry .content .post-excerpt {
font-size: 1em;
}
.blog_masonry .content ul.post-meta {
margin-bottom: 15px;
}
.blog_masonry .content ul.post-meta .date {
font-size: 1em;
}
.blog_masonry .content a.readmore {
clear: both;
background-color: transparent;
border-color: var(--primary);
border: 1px solid;
color: var(--primary);
transition: all 0.2s linear;
-moz-transition: all 0.2s linear;
-webkit-transition: all 0.2s linear;
-o-transition: all 0.2s linear;
}
.blog_masonry .content a.readmore:hover {
color: #fff;
border-color: var(--primary);
background-color: var(--primary);
}
.layout_2l .blog_masonry article, .layout_2r .blog_masonry article {
width: 50%;
min-height: 200px;
}
@media (max-width: 767px) {
.layout_2l .blog_masonry article, .layout_2r .blog_masonry article {
width: 100%;
}
} .single article.post-wrap .post-title {
-webkit-hyphens: unset;
-moz-hyphens: unset;
-ms-hyphens: unset;
hyphens: unset;
margin-bottom: 20px;
margin-top: 0;
word-break: break-word;
}
.single article.post-wrap .post-content {
margin-bottom: 50px;
}
.single article.post-wrap .post-content:before, .single article.post-wrap .post-content:after {
clear: both;
content: "";
display: table;
}
.single article.post-wrap .post-tags {
clear: both;
margin-top: 50px;
padding-top: 50px;
border-top: 1px solid #f3f3f3;
}
.single article.post-wrap .post-tags a {
text-transform: capitalize;
margin: 0px 5px 5px 0px;
display: inline-block;
margin-right: 5px;
background-color: #eeeeee;
border: solid 1px #eeeeee;
color: var(--heading);
border-radius: 20px;
padding: 5px 15px;
transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-webkit-transition: all 0.3s linear;
-o-transition: all 0.3s linear;
}
.single article.post-wrap .post-tags a:hover {
background-color: var(--primary);
border-color: var(--primary);
color: #fff;
}
.single article.post-wrap.sticky .post-tags {
border-top: 1px solid #e1e1e1;
}
.single.layout_1c #main-content {
max-width: 1000px;
margin: 0 auto;
} h1.page-title {
margin-top: 0;
-webkit-hyphens: unset;
-moz-hyphens: unset;
-ms-hyphens: unset;
hyphens: unset;
}
.search .page-header .page-title {
margin-bottom: 60px;
border-bottom: 1px solid #e1e1e1;
padding-bottom: 15px;
}
.search .page-header .page-title span {
color: var(--primary);
} .page article.post-wrap {
display: flow-root;
} .sidebar .widget {
display: block;
margin-bottom: 45px;
padding-bottom: 45px;
border-bottom: 1px solid #eee;
float: left;
width: 100%;     }
.sidebar .widget:last-child {
border-bottom: none;
}
.sidebar .widget a {
color: var(--text);
}
.sidebar .widget a:hover {
color: var(--primary);
}
.sidebar .widget h4.widget-title {
color: var(--heading);
padding-bottom: 15px;
margin-bottom: 15px;
margin-top: 0;
position: relative;
}
.sidebar .widget p {
margin-top: 0;
}
.sidebar .widget img {
width: auto;
}
.sidebar .widget ul {
list-style-type: none;
margin: 0;
padding: 0;
}
.sidebar .widget ul li {
padding: 0.5em 0;
}
.sidebar .widget ul li:first-child {
border-top: 0;
}
.sidebar .widget ul li:last-child {
padding-bottom: 0;
}
.sidebar .widget ul.children, .sidebar .widget ul.sub-menu {
margin: 0.5em 0 0 0.8em;
}
.sidebar .widget .screen-reader-text {
display: none;
}
.sidebar .widget.widget_rss ul li {
padding-top: 25px;
padding-bottom: 25px;
border-bottom: 1px solid #eee;
}
.sidebar .widget.widget_rss ul li:first-child {
padding-top: 0;
}
.sidebar .widget.widget_rss ul li:last-child {
border-bottom: none;
margin-bottom: 0;
padding-bottom: 0;
}
.sidebar .widget.widget_rss ul li a.rsswidget {
font-weight: 600;
display: block;
line-height: 1.5em;
margin-bottom: 12px;
color: var(--heading);
font-size: 15px;
}
.sidebar .widget.widget_rss ul li a.rsswidget:hover {
color: var(--primary);
}
.sidebar .widget.widget_rss ul li .rss-date {
display: inline-block;
margin-bottom: 12px;
font-weight: 500;
opacity: 0.7;
}
.sidebar .widget.widget_rss ul li .rssSummary {
margin-bottom: 12px;
color: var(--text);
}
.sidebar .widget.widget_rss ul li cite {
color: var(--text);
opacity: 0.8;
text-decoration: underline;
}
.sidebar .widget.widget_calendar {
width: 100%;
}
.sidebar .widget.widget_calendar caption {
background: transparent;
color: var(--heading);
font-weight: bold;
text-align: center;
border: none;
padding: 5px 0px;
}
.sidebar .widget.widget_calendar table {
margin-bottom: 0;
}
.sidebar .widget.widget_calendar table thead {
border: 1px solid #eee;
}
.sidebar .widget.widget_calendar table thead tr th {
background-color: #f1f1f1;
color: var(--heading);
border: 1px solid #e4e4e4;
text-align: center;
}
.sidebar .widget.widget_calendar table tbody tr td {
border: none;
text-align: center;
border: 1px solid #e4e4e4;
}
.sidebar .widget.widget_calendar nav {
border: none;
padding: 10px 0px 0px 0px;
display: flex;
justify-content: space-between;
}
.sidebar .widget.widget_calendar nav a {
color: var(--primary);
}
.sidebar .widget.widget_calendar nav a:hover {
color: #343434;
}
.sidebar .widget.widget_tag_cloud .tagcloud {
position: relative;
width: 100%;
float: left;
}
.sidebar .widget.widget_tag_cloud .tagcloud a {
float: left;
margin: 0 10px 10px 0;
display: block;
font-size: 0.9em !important;
background-color: #eeeeee;
border: solid 1px #eeeeee;
color: var(--heading);
border-radius: 20px;
padding: 5px 15px;
transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-webkit-transition: all 0.3s linear;
-o-transition: all 0.3s linear;
}
.sidebar .widget.widget_tag_cloud .tagcloud a:hover {
background-color: var(--primary);
border-color: var(--primary);
color: #fff;
}
.sidebar .widget.widget_search form {
position: relative;
}
.sidebar .widget.widget_search form:before {
font-size: 18px;
color: var(--text);
opacity: 0.8;
font-family: "ovaicon";
content: "\f14f";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
display: inline-block;
font-style: normal;
font-variant: normal;
font-weight: normal;
line-height: 1;
vertical-align: middle;
position: absolute;
top: 50%;
right: 20px;
line-height: 1;
transform: translate(0, -50%);
cursor: pointer;
}
.sidebar .widget.widget_search form input[type=search] {
width: 100%;
padding-right: 50px;
padding-left: 20px;
}
.sidebar .widget.widget_search form input[type=submit] {
position: absolute;
right: 0px;
top: 0;
background-color: transparent;
border: none;
font-size: 0;
width: 50px;
}
.sidebar .widget.widget_categories ul li, .sidebar .widget.widget_archive ul li {
line-height: 30px;
color: var(--text);
opacity: 0.8;
}
.sidebar .widget.widget_categories ul li:before, .sidebar .widget.widget_archive ul li:before {
content: "\f161";
font-family: "ovaicon";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
display: inline-block;
font-style: normal;
font-variant: normal;
font-weight: normal;
vertical-align: middle;
margin-right: 0.6180469716em;
display: block;
float: left;
color: var(--text);
opacity: 0.5;
width: 1em;
font-size: 0.9em;
line-height: inherit;
}
.sidebar .widget.widget_categories ul li a, .sidebar .widget.widget_archive ul li a {
color: var(--text);
}
.sidebar .widget.widget_categories ul li a:hover, .sidebar .widget.widget_archive ul li a:hover {
color: var(--primary);
}
.sidebar .widget.widget_categories .widget-custom ul li, .sidebar .widget.widget_archive .widget-custom ul li {
line-height: 30px;
}
.sidebar .widget.widget_categories .widget-custom ul li:before, .sidebar .widget.widget_archive .widget-custom ul li:before {
content: "\f161";
font-family: "ovaicon";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
display: inline-block;
font-style: normal;
font-variant: normal;
font-weight: normal;
vertical-align: middle;
margin-right: 0.6180469716em;
display: block;
float: left;
opacity: 0.5;
width: 1em;
font-size: 0.9em;
}
.sidebar .widget.widget_categories .widget-custom ul li a, .sidebar .widget.widget_archive .widget-custom ul li a {
display: flex;
justify-content: space-between;
}
.sidebar .widget.widget_categories .widget-custom ul li a .number, .sidebar .widget.widget_archive .widget-custom ul li a .number {
background: #eee;
border-radius: 50%;
width: 30px;
height: 30px;
text-align: center;
line-height: 30px;
}
.sidebar .widget.widget_categories ul li:before {
content: "\f162";
font-family: "ovaicon";
}
.sidebar .widget.widget_categories .widget-custom ul li {
line-height: 30px;
}
.sidebar .widget.widget_categories .widget-custom ul li:before {
content: "\f162";
font-family: "ovaicon";
}
.sidebar .widget.widget_pages ul li:before {
content: "\f163";
font-family: "ovaicon";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
display: inline-block;
font-style: normal;
font-variant: normal;
font-weight: normal;
vertical-align: middle;
margin-right: 0.6180469716em;
display: block;
float: left;
opacity: 0.5;
width: 1em;
font-size: 0.9em;
line-height: inherit;
}
.sidebar .widget.widget_nav_menu ul li:before {
content: "\f163";
font-family: "ovaicon";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
display: inline-block;
font-style: normal;
font-variant: normal;
font-weight: normal;
vertical-align: middle;
margin-right: 0.6180469716em;
display: block;
float: left;
opacity: 0.5;
width: 1em;
font-size: 0.9em;
line-height: inherit;
}
.sidebar .widget.widget_meta ul li:before {
content: "\f112";
font-family: "ovaicon";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
display: inline-block;
font-style: normal;
font-variant: normal;
font-weight: normal;
vertical-align: middle;
margin-right: 0.6180469716em;
display: block;
float: left;
opacity: 0.5;
width: 1em;
font-size: 0.9em;
line-height: inherit;
}
.sidebar .widget.widget_recent_comments ul li {
color: var(--text);
opacity: 0.8;
}
.sidebar .widget.widget_recent_comments ul li:before {
content: "\f151";
font-family: "ovaicon";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
display: inline-block;
font-style: normal;
font-variant: normal;
font-weight: normal;
vertical-align: middle;
margin-right: 0.6180469716em;
display: block;
float: left;
opacity: 0.5;
width: 1em;
font-size: 0.9em;
line-height: inherit;
}
.sidebar .widget.widget_recent_comments ul li .comment-author-link {
color: var(--heading);
text-decoration: underline;
}
.sidebar .widget.widget_recent_comments ul li .comment-author-link a:hover {
color: var(--primary);
} table {
border-collapse: collapse;
border-spacing: 0;
border: 1px solid #ededed;
font-size: 100%;
line-height: 2;
margin: 0 0 20px;
width: 100%;
}
table thead {
display: table-header-group;
vertical-align: middle;
border-color: inherit;
}
table thead tr {
display: table-row;
vertical-align: inherit;
border-color: inherit;
}
table thead tr td, table thead tr th {
padding: 5px 10px;
font-weight: bold;
color: var(--heading);
border: 1px solid #ededed;
text-align: left;
}
table thead tr td a, table thead tr th a {
color: var(--heading);
}
table tbody {
display: table-row-group;
vertical-align: middle;
border-color: inherit;
}
table tbody tr {
display: table-row;
vertical-align: inherit;
border-color: inherit;
}
table tbody tr td, table tbody tr th {
padding: 5px 10px;
border: 1px solid #ededed;
color: var(--text);
text-align: left;
}
table tbody tr td a, table tbody tr th a {
color: var(--heading);
border-bottom: 1px solid var(--primary);
font-weight: normal;
}
table tbody tr td a:hover, table tbody tr th a:hover {
color: var(--primary);
}
table tbody tr th {
color: var(--heading);
} button,
input,
select,
textarea {
color: var(--text);
line-height: 1.5em;
}
button:focus,
input:focus,
select:focus,
textarea:focus {
outline: none;
}
button,
input,
select,
textarea {
font-size: 100%; margin: 0; vertical-align: baseline; *vertical-align: middle; }
input[type=text],
input[type=number],
input[type=email],
input[type=tel],
input[type=url],
input[type=password],
input[type=search],
textarea,
.input-text {
border-radius: 0;
padding: 12px 15px;
border-color: #e0e0e0;
background-color: #ffffff;
color: var(--text);
border-width: 1px;
border-style: solid;
-webkit-appearance: none;
box-sizing: border-box;
font-weight: normal;
outline: 0;
transition: all ease-in-out 0.3s;
font-size: 1em;
}
input[type=text]::placeholder,
input[type=number]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=url]::placeholder,
input[type=password]::placeholder,
input[type=search]::placeholder,
textarea::placeholder,
.input-text::placeholder {
color: var(--text);
}
input[type=text]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
textarea:focus,
.input-text:focus {
color: var(--heading);
}
.form-light input[type=text],
.form-light input[type=number],
.form-light input[type=email],
.form-light input[type=tel],
.form-light input[type=url],
.form-light input[type=password],
.form-light input[type=search],
.form-light textarea,
.form-light .input-text {
color: #fff;
}
.form-light input[type=text]::placeholder,
.form-light input[type=number]::placeholder,
.form-light input[type=email]::placeholder,
.form-light input[type=tel]::placeholder,
.form-light input[type=url]::placeholder,
.form-light input[type=password]::placeholder,
.form-light input[type=search]::placeholder,
.form-light textarea::placeholder,
.form-light .input-text::placeholder {
color: #fff;
}
button,
input[type=button],
input[type=reset],
input[type=submit] {
border: 1px solid;
border-radius: 0;
padding: 12px 25px;
font-size: 1em;
border-color: var(--primary);
background-color: var(--primary);
color: #fff;
cursor: pointer;
font-weight: 600;
transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-webkit-transition: all 0.3s linear;
-o-transition: all 0.3s linear;
}
button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
background-color: transparent;
border-color: var(--primary);
color: var(--primary);
}
select:not([size]):not([multiple]) {
background-color: #ffffff;
color: var(--text);
border: 1px solid #e0e0e0;
border-radius: 0;
padding: 12px 15px;
max-width: 100%;
-webkit-appearance: none;
-moz-appearance: textfield;
appearance: none;
width: 100%;
background-image: url(https://safer4.com/wp-content/themes/infetech/assets/img/base/select-arrow.svg);
background-position: calc(100% - 12px) center;
background-repeat: no-repeat;
background-size: 12px 12px;
}
textarea {
overflow: auto; vertical-align: top; width: 100%;
}
label {
font-weight: 400;
}
label.inline input {
width: auto;
} [placeholder]:focus::-webkit-input-placeholder {
-webkit-transition: opacity 0.5s 0.5s ease;
-moz-transition: opacity 0.5s 0.5s ease;
transition: opacity 0.5s 0.5s ease;
opacity: 0;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder { opacity: 0.5;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder { opacity: 0.5;
}
input::placeholder, textarea::placeholder {
opacity: 0.5;
}
.visuallyhidden {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
} .gallery-caption {
width: 100%;
}
.slide_gallery {
clear: both;
margin-bottom: 30px;
}
.slide_gallery .owl-dots {
z-index: 1;
position: absolute;
left: 0;
bottom: 30px;
width: 100%;
text-align: center;
}
.slide_gallery .owl-dots .owl-dot {
width: 10px;
height: 10px;
background-color: #fff;
border: 1px solid;
border-radius: 50%;
border-color: #ccc;
margin: 0px 3px;
}
.slide_gallery .owl-dots .owl-dot.active, .slide_gallery .owl-dots .owl-dot:hover {
background-color: var(--primary);
border-color: var(--primary);
}
@media (max-width: 568px) {
.wp-block-gallery .blocks-gallery-grid .blocks-gallery-item {
width: 100%;
margin: 0 0 20px 0px;
}
}
@media (max-width: 568px) {
.gallery .gallery-item {
width: 100% !important;
}
} img {
max-width: 100%;
height: auto;
}
.alignleft,
img.alignleft {
margin-right: 2.2em;
margin-bottom: 1em;
display: inline;
float: left;
}
.alignright,
img.alignright {
margin-left: 1.5em;
margin-bottom: 1em;
display: inline;
float: right;
}
.aligncenter,
img.aligncenter {
margin-right: auto;
margin-left: auto;
display: block;
clear: both;
} img.ajax-loader {
width: 16px;
height: 16px;
display: block;
text-align: center;
margin: 0 auto;
margin-left: auto;
}
.wp-smiley {
margin: 0 !important;
max-height: 1em;
}
.bypostauthor {
position: relative;
} embed,
iframe,
object,
video {
max-width: 100%;
}
p > embed,
p > iframe,
p > object,
p > video {
margin-bottom: 0;
}  #comments {  }
#comments .title-comments {
text-transform: uppercase;
margin-bottom: 30px;
font-size: 1.4em;
}
#comments .comment-lists {
list-style-type: none;
padding-left: 0;
margin-left: 0;  }
#comments .comment-lists .children {
list-style-type: none;
padding-left: 0;
margin-left: 70px;
}
@media (max-width: 767px) {
#comments .comment-lists .children {
margin-left: 15px;
}
}
#comments .comment-lists .trackback .comment-body,
#comments .comment-lists .pingback .comment-body,
#comments .comment-lists .comment .comment-body {
padding-left: 140px;
min-height: 100px;
margin-bottom: 40px;
}
@media (max-width: 767px) {
#comments .comment-lists .trackback .comment-body,
#comments .comment-lists .pingback .comment-body,
#comments .comment-lists .comment .comment-body {
padding-left: 0;
}
}
#comments .comment-lists .trackback .comment-body .comment-meta,
#comments .comment-lists .pingback .comment-body .comment-meta,
#comments .comment-lists .comment .comment-body .comment-meta {
position: relative;
margin-bottom: 10px;
}
#comments .comment-lists .trackback .comment-body .comment-meta .avatar,
#comments .comment-lists .pingback .comment-body .comment-meta .avatar,
#comments .comment-lists .comment .comment-body .comment-meta .avatar {
position: absolute;
left: -140px;
top: 5px;
border-radius: 50%;
width: 100px;
height: auto;
}
@media (max-width: 767px) {
#comments .comment-lists .trackback .comment-body .comment-meta .avatar,
#comments .comment-lists .pingback .comment-body .comment-meta .avatar,
#comments .comment-lists .comment .comment-body .comment-meta .avatar {
display: none;
}
}
#comments .comment-lists .trackback .comment-body .comment-meta cite,
#comments .comment-lists .pingback .comment-body .comment-meta cite,
#comments .comment-lists .comment .comment-body .comment-meta cite {
font-weight: 600;
color: #333;
font-style: normal;
font-size: 1.1em;
}
#comments .comment-lists .trackback .comment-body .comment-meta cite a,
#comments .comment-lists .pingback .comment-body .comment-meta cite a,
#comments .comment-lists .comment .comment-body .comment-meta cite a {
font-weight: 600;
color: #333;
font-style: normal;
font-size: 1.1em;
}
#comments .comment-lists .trackback .comment-body .comment-meta .comment-date time,
#comments .comment-lists .pingback .comment-body .comment-meta .comment-date time,
#comments .comment-lists .comment .comment-body .comment-meta .comment-date time {
font-size: 0.9em;
color: #999;
font-weight: 500;
line-height: 1.4;
font-style: italic;
}
#comments .comment-lists .trackback .comment-body .comment-content,
#comments .comment-lists .pingback .comment-body .comment-content,
#comments .comment-lists .comment .comment-body .comment-content {
padding-bottom: 40px;
border-bottom: 1px solid;
border-color: #eee;
}
#comments .comment-lists .trackback .comment-body .comment-content .comment-text p,
#comments .comment-lists .pingback .comment-body .comment-content .comment-text p,
#comments .comment-lists .comment .comment-body .comment-content .comment-text p {
margin: 0 0 10px 0;
padding: 0;
}
#comments .comment-lists .trackback .comment-body .comment-content .reply a,
#comments .comment-lists .pingback .comment-body .comment-content .reply a,
#comments .comment-lists .comment .comment-body .comment-content .reply a {
font-weight: 500;
color: var(--primary);
}
#comments .comment-lists .trackback .comment-body .comment-content .reply a.comment-reply-link,
#comments .comment-lists .pingback .comment-body .comment-content .reply a.comment-reply-link,
#comments .comment-lists .comment .comment-body .comment-content .reply a.comment-reply-link {
margin-right: 10px;
font-weight: bold;
color: var(--primary);
position: relative;
padding-left: 18px;
text-transform: uppercase;
font-size: 12px;
}
#comments .comment-lists .trackback .comment-body .comment-content .reply a.comment-reply-link:before,
#comments .comment-lists .pingback .comment-body .comment-content .reply a.comment-reply-link:before,
#comments .comment-lists .comment .comment-body .comment-content .reply a.comment-reply-link:before {
position: absolute;
left: 0;
top: 50%;
margin-top: -7px;
content: "\f10f";
font-weight: 600;
font-family: "ovaicon";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
display: inline-block;
font-style: normal;
font-variant: normal;
line-height: 1;
vertical-align: middle;
}
#comments .comment-lists .trackback .comment-body .comment-content .reply a.comment-reply-link:hover,
#comments .comment-lists .pingback .comment-body .comment-content .reply a.comment-reply-link:hover,
#comments .comment-lists .comment .comment-body .comment-content .reply a.comment-reply-link:hover {
color: #333;
}
#comments .comment-lists .trackback .comment-body .comment-content .reply a.comment-edit-link,
#comments .comment-lists .pingback .comment-body .comment-content .reply a.comment-edit-link,
#comments .comment-lists .comment .comment-body .comment-content .reply a.comment-edit-link {
margin-right: 10px;
font-weight: bold;
color: var(--primary);
position: relative;
padding-left: 18px;
text-transform: uppercase;
font-size: 12px;
}
#comments .comment-lists .trackback .comment-body .comment-content .reply a.comment-edit-link:before,
#comments .comment-lists .pingback .comment-body .comment-content .reply a.comment-edit-link:before,
#comments .comment-lists .comment .comment-body .comment-content .reply a.comment-edit-link:before {
position: absolute;
left: 0;
top: 50%;
margin-top: -7px;
content: "\f167";
font-weight: 600;
font-family: "ovaicon";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
display: inline-block;
font-style: normal;
font-variant: normal;
line-height: 1;
vertical-align: middle;
}
#comments .comment-lists .trackback .comment-body #respond,
#comments .comment-lists .pingback .comment-body #respond,
#comments .comment-lists .comment .comment-body #respond {
margin-top: 0;
border: 1px solid #eee;
border-top: none;
border-radius: 0;
padding: 12px 15px 15px 15px;
}
#comments .comment-lists .trackback .comment-body, #comments .comment-lists .pingback .comment-body {
padding-left: 0;
} #respond {
clear: both;
margin: 30px 0px;
position: relative;
}
#respond #reply-title {
margin-top: 0;
margin-bottom: 5px;
text-transform: uppercase;
font-size: 1.4em;
}
#respond #reply-title #cancel-comment-reply-link {
float: right;
text-align: right;
position: relative;
color: red;
}
#respond #commentform {
display: flex;
flex-wrap: wrap;
margin: 0 -15px;
clear: both;
}
#respond #commentform p {
padding: 0px 15px;
margin: 0;
}
#respond #commentform label {
font-weight: bold;
text-transform: uppercase;
margin-bottom: 5px;
font-size: 0.9em;
display: inherit;
}
#respond #commentform .comment-notes {
flex: 0 0 100%;
max-width: 100%;
margin-bottom: 30px;
}
#respond #commentform .comment-form-author,
#respond #commentform .comment-form-email,
#respond #commentform .comment-form-url {
flex: 0 0 100%;
max-width: 100%;
order: 1;
margin-bottom: 30px;
}
@media (min-width: 1024px) {
#respond #commentform .comment-form-author,
#respond #commentform .comment-form-email,
#respond #commentform .comment-form-url {
flex: 0 0 33.3333333333%;
max-width: 33.3333333333%;
}
}
#respond #commentform .comment-form-author input,
#respond #commentform .comment-form-email input,
#respond #commentform .comment-form-url input {
width: 100%;
}
#respond #commentform .comment-form-comment {
flex: 0 0 100%;
max-width: 100%;
order: 2;
margin-bottom: 30px;
}
#respond #commentform .comment-form-comment textarea {
width: 100%;
}
#respond #commentform .form-submit {
flex: 0 0 100%;
max-width: 100%;
order: 3;
}
#respond #commentform .comment-form-cookies-consent {
display: flex;
line-height: 1;
margin-bottom: 15px;
width: 100%;
}
#respond #commentform .comment-form-cookies-consent label {
padding-left: 5px;
text-transform: inherit;
font-weight: 500;
}  .woocommerce.woocommerce-pagination,
nav.woocommerce-pagination {
margin-top: 20px;
margin-bottom: 90px;
}
@media (max-width: 1024px) {
.woocommerce.woocommerce-pagination,
nav.woocommerce-pagination {
margin-bottom: 60px;
}
}
.woocommerce.pagination,
nav.pagination {
margin: 60px 0px;
}
.woocommerce.woocommerce-pagination ul.page-numbers,
.woocommerce .page-numbers,
nav.woocommerce-pagination ul.page-numbers,
nav .page-numbers {
display: inline-block;
list-style-type: none;
width: 100%;
padding: 0;
margin: 0;
text-align: center;
border: none;
clear: both;
white-space: inherit;
}
.woocommerce.woocommerce-pagination ul.page-numbers li,
.woocommerce .page-numbers li,
nav.woocommerce-pagination ul.page-numbers li,
nav .page-numbers li {
display: inline-block;
margin: 0px 2px 10px 2px;
border: none;
padding: 0;
float: none;
}
.woocommerce.woocommerce-pagination ul.page-numbers li .page-numbers,
.woocommerce .page-numbers li .page-numbers,
nav.woocommerce-pagination ul.page-numbers li .page-numbers,
nav .page-numbers li .page-numbers {
border: 1px solid;
border-color: #f1f1f1;
border-radius: 0;
background: #f1f1f1;
padding: 0px 10px 0px 10px;
min-width: 45px;
text-align: center;
font-weight: 600;
color: var(--text);
line-height: 40px;
font-size: 1.2em;
text-shadow: none;
transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-webkit-transition: all 0.3s linear;
-o-transition: all 0.3s linear;
}
.woocommerce.woocommerce-pagination ul.page-numbers li .page-numbers i,
.woocommerce .page-numbers li .page-numbers i,
nav.woocommerce-pagination ul.page-numbers li .page-numbers i,
nav .page-numbers li .page-numbers i {
font-size: 0.7em;
line-height: 1;
}
.woocommerce.woocommerce-pagination ul.page-numbers li .page-numbers i:before,
.woocommerce .page-numbers li .page-numbers i:before,
nav.woocommerce-pagination ul.page-numbers li .page-numbers i:before,
nav .page-numbers li .page-numbers i:before {
font-weight: bold !important;
}
.woocommerce.woocommerce-pagination ul.page-numbers li .page-numbers:hover, .woocommerce.woocommerce-pagination ul.page-numbers li .page-numbers:focus, .woocommerce.woocommerce-pagination ul.page-numbers li .page-numbers.current,
.woocommerce .page-numbers li .page-numbers:hover,
.woocommerce .page-numbers li .page-numbers:focus,
.woocommerce .page-numbers li .page-numbers.current,
nav.woocommerce-pagination ul.page-numbers li .page-numbers:hover,
nav.woocommerce-pagination ul.page-numbers li .page-numbers:focus,
nav.woocommerce-pagination ul.page-numbers li .page-numbers.current,
nav .page-numbers li .page-numbers:hover,
nav .page-numbers li .page-numbers:focus,
nav .page-numbers li .page-numbers.current {
background-color: var(--primary);
color: #fff;
} .page-links {
clear: both;
margin: 20px 0px 30px 0px;
float: left;
}
.page-links .post-page-numbers {
border: 1px solid;
border-radius: 2px;
display: inline-block;
font-size: 1rem;
height: 1.8461538462em;
line-height: 1.6923076923em;
margin-right: 0.3076923077em;
text-align: center;
width: 1.8461538462em;
font-weight: 600;
background-color: transparent;
border-color: var(--primary);
color: var(--text);
}
.page-links .post-page-numbers:hover, .page-links .post-page-numbers:focus, .page-links .post-page-numbers.current {
background-color: var(--primary);
border-color: var(--primary);
color: #fff;
}
.page-links > .page-links-title {
border: 0;
color: #1a1a1a;
height: auto;
margin: 0;
padding-right: 0.6153846154em;
width: auto;
}
.page-links .screen-reader-text {
clip: rect(1px, 1px, 1px, 1px);
height: 1px;
overflow: hidden;
position: absolute !important;
width: 1px;
word-wrap: normal !important;
}
.screen-reader-text {
display: none;
} .wrap_breadcrumbs {
background-color: #fafafa;
margin-bottom: 60px;
position: relative;
}
.wrap_breadcrumbs:before {
position: absolute;
left: -1000px;
background-color: #fafafa;
height: 100%;
width: 10000px;
top: 0;
content: "";
z-index: -1;
}
ul.breadcrumb {
margin: 0;
padding: 20px 0px;
display: inline-block;
list-style-type: none;
}
ul.breadcrumb li {
color: var(--primary);
-webkit-hyphens: auto;
-moz-hyphens: unset;
-ms-hyphens: unset;
hyphens: unset;
display: inline-block;
padding-right: 5px;
word-break: break-word;
}
ul.breadcrumb li a {
color: var(--text);
}
ul.breadcrumb li a:hover {
color: var(--primary);
}
ul.breadcrumb li .separator i {
font-size: 0.6em;
color: var(--text);
opacity: 0.5;
position: relative;
} #scrollUp {
bottom: 20px;
right: 20px;
border-radius: 4px;
background-color: var(--primary);
color: #fff;
}
#scrollUp:hover {
background-color: #333;
transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-webkit-transition: all 0.3s linear;
-o-transition: all 0.3s linear;
}
#scrollUp i {
display: block;
line-height: 1;
padding: 10px;
}
#scrollUp i:before {
font-weight: bold !important;
} .wp-caption {
margin-bottom: 1.5em;
text-align: center;
padding-top: 5px;
max-width: 100%;
}
.wp-caption img {
border: 0 none;
padding: 0;
margin: 0;
}
.wp-caption img[class*=wp-image-] {
display: block;
margin: 0;
}
.wp-caption .wp-caption-text {
text-align: left;
font-style: italic;
border-bottom: 2px solid #e6e6e6;
padding: 0.5407911001em 0;
font-size: 0.875em;
color: var(--text);
opacity: 0.8;
}  .wp-block-button {
margin: 10px 0px;
}
.wp-block-button a {
text-transform: uppercase;
font-weight: 600;
}
.wp-block-button.alignleft {
margin-right: 20px;
}
.wp-block-button.is-style-outline .wp-block-button__link {
border-style: dashed;
}
.wp-block-button.is-style-squared .wp-block-button__link {
border-radius: 5px;
}
.wp-block-button.alignleft {
margin-right: 20px;
} .wp-block-image figcaption,
figure figcaption {
text-align: left;
font-style: italic;
border-bottom: 2px solid #e6e6e6;
padding: 0.5407911001em 0;
font-size: 0.875em;
color: var(--text);
opacity: 0.8;
padding-top: 0;
margin-top: 5px;
} .wp-block-cover {
margin-bottom: 30px;
}
.wp-block-cover.has-background-dim {
color: #fff;
} .wp-block-gallery {
padding-top: 20px;
margin: 0 0 40px 0;
}  .wp-block-group.has-background {
margin-bottom: 30px;
padding: 30px;
} .wp-block-media-text {
margin-bottom: 30px;
} .wp-block-archives.wp-block-archives-list {
list-style-type: none;
margin: 0 0 30px 0;
padding: 0;
}
.wp-block-archives.wp-block-archives-list li {
margin: 5px 0px;
}
.wp-block-archives.wp-block-archives-list li a {
position: relative;
}
.wp-block-archives.wp-block-archives-list li a:before {
content: "\f161";
font-family: "ovaicon";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
display: inline-block;
font-style: normal;
font-variant: normal;
font-weight: normal;
vertical-align: middle;
margin-right: 0.6180469716em;
display: block;
float: left;
color: var(--text);
opacity: 0.5;
width: 1em;
font-size: 0.9em;
line-height: inherit;
} .wp-block-calendar {
margin-bottom: 30px;
} .wp-block-categories {
list-style-type: none;
margin: 0 0 30px 0;
padding: 0;
}
.wp-block-categories li {
margin: 5px 0px;
}
.wp-block-categories li a {
position: relative;
}
.wp-block-categories li a:before {
content: "\f161";
font-family: "ovaicon";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
display: inline-block;
font-style: normal;
font-variant: normal;
font-weight: normal;
vertical-align: middle;
margin-right: 0.6180469716em;
display: block;
float: left;
color: var(--text);
opacity: 0.5;
width: 1em;
font-size: 0.9em;
line-height: inherit;
} .wp-block-latest-comments {
padding-left: 0;
}
.wp-block-latest-comments.has-avatars li:before {
display: none;
}
.wp-block-latest-comments li {
margin-bottom: 2em;
line-height: 1.5em;
}
.wp-block-latest-comments li:before {
content: "\f151";
font-family: "ovaicon";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
display: inline-block;
font-style: normal;
font-variant: normal;
font-weight: normal;
vertical-align: middle;
margin-right: 0.6180469716em;
display: block;
float: left;
opacity: 0.5;
width: 1em;
font-size: 0.9em;
line-height: inherit;
}
.wp-block-latest-comments li .wp-block-latest-comments__comment-author {
text-decoration: underline;
}
.wp-block-latest-comments li a {
color: var(--primary);
}
.wp-block-latest-comments li time {
padding-top: 10px;
} .wp-block-search {
margin-bottom: 30px;
}
.wp-block-search .wp-block-search__label {
margin-bottom: 10px;
display: block;
}
.wp-block-search:before {
display: none !important;
}
.wp-block-search .wp-block-search__input {
border-color: #e0e0e0;
background-color: #ffffff;
padding-right: 20px !important;
padding-left: 20px !important;
}
.wp-block-search .wp-block-search__button {
padding: 12px 25px;
background-color: var(--primary);
border-color: var(--primary);
color: #fff;
font-weight: 600;
margin-left: 5px;
}
.wp-block-search .wp-block-search__button:hover {
background-color: transparent;
color: var(--primary);
} .wp-block-latest-posts li a {
position: relative;
}
.wp-block-latest-posts li a:before {
content: "\f163";
font-family: "ovaicon";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
display: inline-block;
font-style: normal;
font-variant: normal;
font-weight: normal;
vertical-align: middle;
margin-right: 0.6180469716em;
display: block;
float: left;
color: var(--text);
opacity: 0.5;
width: 1em;
font-size: 0.9em;
line-height: inherit;
}
.wp-block-latest-posts.has-dates li {
margin-bottom: 15px;
}
.wp-block-latest-posts.has-dates time {
padding-left: 20px;
} .wp-block-tag-cloud {
clear: both;
position: relative;
}
.wp-block-tag-cloud:after {
clear: both;
content: "";
display: inline-block;
width: 100%;
}
.wp-block-tag-cloud a {
float: left;
margin: 0 10px 10px 0;
display: block;
font-size: 0.9em !important;
background-color: #eeeeee;
border: solid 1px #eeeeee;
color: var(--heading);
border-radius: 20px;
padding: 5px 15px;
transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-webkit-transition: all 0.3s linear;
-o-transition: all 0.3s linear;
}
.wp-block-tag-cloud a:hover {
background-color: var(--primary);
border-color: var(--primary);
color: #fff;
} .wp-block-rss {
margin: 0;
padding: 0;
list-style-type: none;
}
.wp-block-rss li {
margin-bottom: 5px;
}
.wp-block-rss li a:before {
content: "\f197";
font-family: "ovaicon";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
display: inline-block;
font-style: normal;
font-variant: normal;
font-weight: normal;
vertical-align: middle;
margin-right: 0.6180469716em;
display: block;
float: left;
color: var(--text);
opacity: 0.5;
width: 1em;
font-size: 0.9em;
line-height: inherit;
}
.widget_block .wp-block-group__inner-container > h2 {
font-size: 1.3195em;
padding-bottom: 15px;
margin-bottom: 15px;
} .header_sticky {
transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-webkit-transition: all 0.3s linear;
-o-transition: all 0.3s linear;
}
.header_sticky.ova_bg_dark.active_sticky {
background-color: var(--heading) !important;
}
.header_sticky.active_sticky {
position: fixed;
top: 0;
left: 0;
margin-top: 0 !important;
width: 100%;
z-index: 9999;
background-color: #fff;
transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-webkit-transition: all 0.3s linear;
-o-transition: all 0.3s linear;
-webkit-animation: sticky 0.7s;
animation: sticky 0.7s;
}
@-webkit-keyframes sticky {
0% {
top: -100px;
}
100% {
top: 0;
}
}
@keyframes sticky {
0% {
top: -100px;
}
100% {
top: 0;
}
} .page_404 {
padding: 10px 0 130px;
text-align: center;
}
@media (max-width: 1024px) {
.page_404 {
padding: 0 0 90px 0;
}
}
.page_404 img {
object-fit: cover;
}
.page_404 .message {
margin: 85px 0 38px 0;
font-weight: 800;
font-size: 48px;
line-height: 1;
color: var(--heading);
}
@media (max-width: 1024px) {
.page_404 .message {
margin: 50px 0 30px 0;
font-size: 38px;
}
}
@media (max-width: 767px) {
.page_404 .message {
font-size: 28px;
}
}
.page_404 .btn-back-home a {
transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-webkit-transition: all 0.3s linear;
-o-transition: all 0.3s linear;
display: inline-block;
padding: 20px 50px;
background-color: var(--primary);
font-weight: 700;
line-height: 1.2;
text-transform: uppercase;
color: #fff;
}
.page_404 .btn-back-home a:hover, .page_404 .btn-back-home a:focus {
transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-webkit-transition: all 0.3s linear;
-o-transition: all 0.3s linear;
background-color: #000;
} body.woocommerce.woo_layout_1c #woo_main {
max-width: 100%;
}
body.woocommerce.woo_layout_1c #woo_main #primary {
flex: 0 0 100%;
}
body.woocommerce.woo_layout_2l #woo_main {
float: right;
}
body.woocommerce.woo_layout_2l #woo_sidebar {
float: left;
}
body.woocommerce.woo_layout_2r #woo_main {
float: left;
}
body.woocommerce.woo_layout_2r #woo_sidebar {
float: right;
}
body.woocommerce #woo_main {
max-width: calc(var(--woo-main-content) - 20px);
width: 100%;
}
@media (max-width: 1023px) {
body.woocommerce #woo_main {
max-width: 100%;
}
}
body.woocommerce #woo_sidebar {
max-width: var(--woo-width-sidebar);
width: 100%;
margin-bottom: 110px;
}
@media (max-width: 1023px) {
body.woocommerce #woo_sidebar {
max-width: 100%;
margin-bottom: 80px;
}
} .woocommerce-message,
.woocommerce-info {
border-top-color: var(--primary);
}
.woocommerce-message::before {
color: var(--primary);
}
.woocommerce-info::before {
color: var(--primary);
} .woocommerce .select2-container .select2-selection--single .select2-selection__arrow {
background-image: url(https://safer4.com/wp-content/themes/infetech/assets/img/base/select-arrow.svg);
background-position: center center;
background-repeat: no-repeat;
background-size: 12px 12px;
}
.woocommerce .select2-container .select2-selection--single .select2-selection__arrow b {
display: none;
}
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.checkout-button,
.woocommerce #review_form #submit {
line-height: 1.5em;
border-radius: 0;
padding: 12px 25px;
font-size: 1em;
font-weight: 600;
}
.woocommerce ul.products {
margin: 0;
}
@media (max-width: 580px) {
.woocommerce ul.products[class*=columns-] li.product {
width: 100%;
float: none;
}
}
.woocommerce ul.products li.product {
text-align: center;
position: relative;
overflow: hidden;
padding: 35px 25px;
background-color: var(--background-color);
}
@media (max-width: 580px) {
.woocommerce ul.products li.product {
width: 100%;
float: none;
}
}
.woocommerce ul.products li.product .cat_product {
display: none;
color: var(--text);
font-size: 16px;
line-height: 1.2;
padding: 0px 4px;
}
.woocommerce ul.products li.product .button {
visibility: visible;
opacity: 1;
}
.woocommerce ul.products li.product .star-rating {
font-size: 13px;
margin: 0 auto 15px auto;
color: #ff9000;
}
.woocommerce ul.products li.product .star-rating:before {
color: #ff9000;
}
.woocommerce ul.products li.product .onsale {
display: inline-block;
top: 15px;
right: 15px;
left: auto;
background: var(--primary);
padding: 0 10px;
margin: 0;
min-height: 25px;
line-height: 25px;
font-size: 14px;
font-weight: 600;
min-width: unset;
border-radius: 5px;
text-transform: uppercase;
}
.woocommerce ul.products li.product a.woocommerce-loop-product__link img {
margin: 0 auto;
width: auto;
height: 180px;
object-fit: contain;
margin-bottom: 45px;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
margin: 0;
font-size: 20px;
line-height: 1.15;
color: var(--heading);
}
.woocommerce ul.products li.product .woocommerce-loop-product__title:hover {
color: var(--primary);
}
.woocommerce ul.products li.product .price {
font-size: 16px;
line-height: 1.1;
color: var(--primary);
font-weight: 700;
}
.woocommerce ul.products li.product .price ins {
margin-left: 6px;
text-decoration: none;
}
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.add_to_cart_button {
transition: all 0.3s ease;
color: #fff;
z-index: 1;
background: var(--primary);
}
.woocommerce ul.products li.product .button.loading:after,
.woocommerce ul.products li.product a.add_to_cart_button.loading:after {
right: 0.5em;
}
.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product a.add_to_cart_button:hover {
transition: all 0.3s ease;
background: var(--heading);
}
.woocommerce ul.products li.product a.added_to_cart {
margin-top: 20px;
display: inline-block;
visibility: visible;
opacity: 1;
background-color: transparent !important;
color: var(--heading);
text-decoration: underline;
text-transform: capitalize;
padding: 0px 15px 0px 15px;
}
.woocommerce ul.products li.product a.added_to_cart:hover {
color: var(--primary);
transition: 0.3s ease;
}
.woocommerce ul.products li.product a.added_to_cart:after {
padding-left: 5px;
}
.woocommerce ul.products li.product .product_type_external:after,
.woocommerce ul.products li.product .product_type_grouped:after,
.woocommerce ul.products li.product .product_type_variable:after {
position: absolute;
top: 0;
right: 10px;
}
@media (max-width: 1024px -1) {
.woocommerce #woo_main .content-area {
flex: 0 0 100%;
padding-left: 0px;
width: 100%;
}
}
.woocommerce #woo_main .content-area .woocommerce-result-count {
margin: 12px 0 0 0;
font-size: 18px;
line-height: 1.3;
color: var(--heading);
font-weight: 500;
}
.woocommerce #woo_main .content-area .woocommerce-ordering select {
padding-right: 26px;
border: 1px solid rgba(44, 44, 44, 0.102);
border-radius: 0;
font-size: 16px;
color: var(--heading);
}
@media (max-width: 580px) {
.woocommerce #woo_main .content-area .woocommerce-ordering {
float: none;
}
.woocommerce #woo_main .content-area .woocommerce-ordering select {
margin-top: 20px;
}
}
.woocommerce.elementor-default #woo_main {
padding: 0 10px;
}
.woocommerce div.product {
margin-bottom: 75px;      }
@media (max-width: 1024px) {
.woocommerce div.product {
margin-bottom: 45px;
}
}
.woocommerce div.product .onsale {
display: inline-block;
top: 15px;
left: 20px;
right: auto;
background: var(--primary);
padding: 0 10px;
margin: 0;
min-height: 25px;
line-height: 25px;
font-size: 14px;
font-weight: 600;
min-width: unset;
border-radius: 5px;
text-transform: uppercase;
}
.woocommerce div.product div.images {
margin: 0 0px 40px 0px;
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
top: 15px;
right: 15px;
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger:after {
border-radius: 0;
}
.woocommerce div.product div.images .woocommerce-product-gallery__image {
background: var(--background-color);
}
.woocommerce div.product div.images .woocommerce-product-gallery__image a img {
margin: 0 auto;
width: auto;
background: var(--background-color);
padding: 90px 45px;
}
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper .zoomImg {
background-color: var(--background-color);
}
.woocommerce div.product div.images .flex-control-thumbs {
margin-top: 30px;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 30px;
}
@media (max-width: 1024px) {
.woocommerce div.product div.images .flex-control-thumbs {
grid-template-columns: 1fr 1fr;
}
}
.woocommerce div.product div.images .flex-control-thumbs li {
padding: 20px 30px;
width: 100%;
background: var(--background-color);
}
.woocommerce div.product div.images .flex-control-thumbs li img {
opacity: 1;
}
.woocommerce div.product .summary .product_title {
margin: 60px 0 15px 0;
font-size: 48px;
line-height: 1.1;
color: var(--heading);
}
.woocommerce div.product .summary .woocommerce-product-rating {
display: flex;
align-items: center;
margin: 0 0 15px 0;
}
.woocommerce div.product .summary .woocommerce-product-rating .star-rating {
font-size: 13px;
margin-top: 0;
color: #ff9000;
}
.woocommerce div.product .summary .woocommerce-product-rating .woocommerce-review-link {
font-size: 16px;
line-height: 1.2;
color: var(--text);
text-transform: capitalize;
}
.woocommerce div.product .summary .price {
margin: 0 0 30px 0;
padding: 0 0 30px 0;
color: var(--primary);
border-bottom: 1px solid rgba(29, 23, 41, 0.15);
}
.woocommerce div.product .summary .price .woocommerce-Price-amount {
font-size: 20px;
line-height: 26px;
color: var(--primary);
}
.woocommerce div.product .summary .price ins {
margin-left: 3px;
font-weight: 600;
text-decoration: none;
}
.woocommerce div.product .summary .stock {
margin: 0 0 18px 0;
font-size: 16px;
line-height: 24px;
letter-spacing: 0.3px;
color: #0067da;
}
.woocommerce div.product .summary form.cart {
padding-bottom: 45px;
border-bottom: 1px solid rgba(29, 23, 41, 0.1);
}
.woocommerce div.product .summary form.cart table.group_table {
border: none;
}
.woocommerce div.product .summary form.cart table.group_table tr {
border: none;
}
.woocommerce div.product .summary form.cart table.group_table td {
border-color: #e8e8e8;
}
.woocommerce div.product .summary form.cart table.group_table td {
vertical-align: middle;
font-size: 16px;
line-height: 1.2;
letter-spacing: 0.2px;
color: var(--text);
}
.woocommerce div.product .summary form.cart table.group_table td label {
margin: 0;
}
.woocommerce div.product .summary form.cart table.variations {
margin: 0;
}
.woocommerce div.product .summary form.cart table.variations tr {
border: none;
}
.woocommerce div.product .summary form.cart table.variations tr td {
font-size: 16px;
line-height: 1.2;
letter-spacing: 0.2px;
color: var(--heading);
}
.woocommerce div.product .summary form.cart table.variations tr td label {
font-weight: 400;
margin: 0;
}
.woocommerce div.product .summary form.cart table.variations tr td .reset_variations {
font-size: 15px;
line-height: 1.2;
color: var(--text);
margin-top: 10px;
display: inline-block !important;
}
.woocommerce div.product .summary form.cart table.variations tr td .select2-container {
height: 40px;
}
.woocommerce div.product .summary form.cart table.variations tr td .select2-selection--single {
border: 1px solid #e8e8e8;
border-radius: 2px;
}
.woocommerce div.product .summary form.cart table.variations tr td .select2-selection__rendered {
padding: 0 14px;
font-size: 15px;
color: #919baf;
}
.woocommerce div.product .summary form.cart .single_variation_wrap .woocommerce-variation-price {
margin-bottom: 23px;
}
.woocommerce div.product .summary form.cart .quantity {
margin: 0 10px 0 0;
}
.woocommerce div.product .summary form.cart .quantity input {
border-color: rgba(14, 19, 23, 0.1);
width: 85px;
height: 50px;
line-height: 50px;
border-radius: 4px;
}
.woocommerce div.product .summary form.cart .quantity input::placeholder {
font-size: 16px;
color: var(--text);
}
.woocommerce div.product .summary form.cart .single_add_to_cart_button {
font-size: 14px;
font-weight: 700;
padding: 17px 40px 15px 40px;
line-height: 1.2;
text-transform: uppercase;
background-color: var(--primary);
border-radius: 0;
}
.woocommerce div.product .summary form.cart .single_add_to_cart_button:hover {
background: var(--heading);
}
.woocommerce div.product .summary form.cart .single_add_to_cart_button:focus {
outline: none;
}
.woocommerce div.product .summary .product_meta {
margin: 0;
padding: 15px 0;
}
.woocommerce div.product .summary .product_meta .posted_in, .woocommerce div.product .summary .product_meta .tagged_as {
display: block;
font-size: 18px;
font-weight: 600;
line-height: 1.2;
letter-spacing: 0.2px;
color: var(--heading);
}
.woocommerce div.product .summary .product_meta .posted_in.posted_in, .woocommerce div.product .summary .product_meta .tagged_as.posted_in {
margin-bottom: 16px;
}
.woocommerce div.product .summary .product_meta .posted_in a, .woocommerce div.product .summary .product_meta .tagged_as a {
font-size: 16px;
font-weight: 400;
line-height: 1.2;
letter-spacing: 0.2px;
color: var(--text);
}
.woocommerce div.product .summary .product_meta .posted_in a:hover, .woocommerce div.product .summary .product_meta .tagged_as a:hover {
color: var(--primary);
}
.woocommerce div.product .summary .product_meta .sku_wrapper {
margin-bottom: 8px;
display: block;
font-size: 16px;
line-height: 1.2;
letter-spacing: 0.2px;
color: var(--heading);
}
.woocommerce div.product .summary .product_meta .sku_wrapper .sku {
font-size: 16px;
line-height: 1.2;
letter-spacing: 0.2px;
color: var(--text);
}
.woocommerce div.product .woocommerce-tabs {
padding: 20px 40px 80px 0;
}
@media (max-width: 1024px) {
.woocommerce div.product .woocommerce-tabs {
padding: 20px 0 60px 0;
}
}
.woocommerce div.product .woocommerce-tabs .panel#tab-additional_information h2 {
display: none;
font-size: 27px;
line-height: 1.2;
color: var(--heading);
font-weight: 500;
margin: 0 0 20px;
}
.woocommerce div.product .woocommerce-tabs .panel#tab-additional_information table.shop_attributes {
border: 1px solid #e8e8e8;
}
.woocommerce div.product .woocommerce-tabs .panel#tab-additional_information table.shop_attributes th {
font-size: 17px;
line-height: 1.2;
font-weight: 400;
letter-spacing: 0.2px;
color: var(--heading);
text-transform: capitalize;
padding: 5px 15px;
}
.woocommerce div.product .woocommerce-tabs .panel#tab-additional_information table.shop_attributes td {
font-size: 16px;
font-style: normal;
line-height: 1.2;
font-weight: 400;
letter-spacing: 0.2px;
color: var(--heading);
padding: 5px 15px;
}
.woocommerce div.product .woocommerce-tabs .panel #reviews #comments .woocommerce-noreviews {
margin: 0 0 25px 0;
}
.woocommerce div.product .woocommerce-tabs .panel #reviews #comments ol.commentlist {
padding: 0;
}
.woocommerce div.product .woocommerce-tabs .panel #reviews #comments ol.commentlist li:not(:last-child) {
margin-bottom: 35px;
}
.woocommerce div.product .woocommerce-tabs .panel #reviews #comments ol.commentlist li .comment_container img.avatar {
width: 60px;
border: none;
border-radius: 50%;
background: transparent;
padding: 0;
}
.woocommerce div.product .woocommerce-tabs .panel #reviews #comments ol.commentlist li .comment_container .comment-text {
margin: 0 0 0 85px;
border: none;
padding: 0;
border-radius: 0;
}
.woocommerce div.product .woocommerce-tabs .panel #reviews #comments ol.commentlist li .comment_container .comment-text .star-rating {
font-size: 13px;
color: #ff9000;
}
.woocommerce div.product .woocommerce-tabs .panel #reviews #comments ol.commentlist li .comment_container .comment-text .star-rating:before {
color: #ff9000;
}
.woocommerce div.product .woocommerce-tabs .panel #reviews #comments ol.commentlist li .comment_container .comment-text .meta {
margin: 0 0 10px 0;
line-height: 1;
}
.woocommerce div.product .woocommerce-tabs .panel #reviews #comments ol.commentlist li .comment_container .comment-text .meta .woocommerce-review__author {
margin: 0 5px 5px 0;
display: inline-block;
font-size: 20px;
font-weight: 600;
color: var(--heading);
text-transform: capitalize;
}
.woocommerce div.product .woocommerce-tabs .panel #reviews #comments ol.commentlist li .comment_container .comment-text .meta .woocommerce-review__dash {
display: none;
}
.woocommerce div.product .woocommerce-tabs .panel #reviews #comments ol.commentlist li .comment_container .comment-text .meta .woocommerce-review__published-date {
display: inline-block;
color: var(--primary);
margin-left: 4px;
}
.woocommerce div.product .woocommerce-tabs .panel #reviews #comments ol.commentlist li .comment_container .comment-text .description {
color: var(--text);
}
.woocommerce div.product .woocommerce-tabs .panel #reviews #review_form_wrapper #review_form #respond .comment-reply-title {
display: inline-block;
font-size: 25px;
line-height: 1.2;
font-weight: 400;
color: var(--heading);
text-transform: none;
}
.woocommerce div.product .woocommerce-tabs .panel #reviews #review_form_wrapper #review_form #respond .comment-form {
margin: 15px 0px 0px 0px;
}
.woocommerce div.product .woocommerce-tabs .panel #reviews #review_form_wrapper #review_form #respond .comment-form p {
margin: 0 0 25px 0;
padding: 0;
}
.woocommerce div.product .woocommerce-tabs .panel #reviews #review_form_wrapper #review_form #respond .comment-form .comment-form-author {
margin-right: 10px;
flex: calc(50% - 20px);
max-width: 50%;
}
.woocommerce div.product .woocommerce-tabs .panel #reviews #review_form_wrapper #review_form #respond .comment-form .comment-form-email {
margin-left: 10px;
flex: calc(50% - 20px);
max-width: 50%;
}
.woocommerce div.product .woocommerce-tabs .panel #reviews #review_form_wrapper #review_form #respond .comment-form .comment-form-rating {
width: 100%;
margin-bottom: 10px;
}
.woocommerce div.product .woocommerce-tabs .panel #reviews #review_form_wrapper #review_form #respond .comment-form .comment-notes {
font-size: 17px;
line-height: 24px;
color: var(--heading);
}
.woocommerce div.product .woocommerce-tabs .panel #reviews #review_form_wrapper #review_form #respond .comment-form .comment-notes .required {
color: #ff623f;
}
.woocommerce div.product .woocommerce-tabs .panel #reviews #review_form_wrapper #review_form #respond .comment-form .form-submit {
margin-bottom: 0;
}
.woocommerce div.product .woocommerce-tabs .panel #reviews #review_form_wrapper #review_form #respond .comment-form label {
display: block;
font-size: 16px;
line-height: 24px;
font-weight: 500;
letter-spacing: 0.2px;
color: var(--heading);
text-transform: capitalize;
margin-bottom: 10px;
}
.woocommerce div.product .woocommerce-tabs .panel #reviews #review_form_wrapper #review_form #respond .comment-form label .required {
color: #ff623f;
}
@media (max-width: 767px) {
.woocommerce div.product .woocommerce-tabs .panel #reviews #review_form_wrapper #review_form #respond .comment-form label {
display: block;
}
}
.woocommerce div.product .woocommerce-tabs .panel #reviews #review_form_wrapper #review_form #respond .comment-form textarea {
margin: 0;
border: 1px solid rgba(14, 19, 23, 0.1);
background-color: var(--background-color);
border-radius: 0;
height: 150px;
padding: 11px 15px;
}
.woocommerce div.product .woocommerce-tabs .panel #reviews #review_form_wrapper #review_form #respond .comment-form input {
padding: 0 15px;
border: 1px solid rgba(14, 19, 23, 0.1);
border-radius: 0;
background-color: var(--background-color);
height: 60px;
}
.woocommerce div.product .woocommerce-tabs .panel #reviews #review_form_wrapper #review_form #respond .comment-form .comment-form-rating label {
margin: 0 0 12px;
width: 100%;
}
.woocommerce div.product .woocommerce-tabs .panel #reviews #review_form_wrapper #review_form #respond .comment-form .comment-form-rating .stars {
margin: 0;
display: inline-flex;
align-items: center;
color: #ff9000;
}
.woocommerce div.product .woocommerce-tabs .panel #reviews #review_form_wrapper #review_form #respond .comment-form .comment-form-rating .stars a {
color: inherit;
}
.woocommerce div.product .woocommerce-tabs .panel #reviews #review_form_wrapper #review_form #respond .comment-form .comment-form-rating .select2-container--default {
display: none;
}
.woocommerce div.product .woocommerce-tabs .panel #reviews #review_form_wrapper #review_form #respond .comment-form .comment-form-comment {
margin-top: 0px;
}
.woocommerce div.product .woocommerce-tabs .panel #reviews #review_form_wrapper #review_form #respond .comment-form .comment-form-cookies-consent {
display: none;
}
.woocommerce div.product .woocommerce-tabs .panel #reviews #review_form_wrapper #review_form #respond .comment-form .form-submit input {
font-size: 16px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
color: #fff;
padding: 18px 40px;
background-color: var(--primary);
}
.woocommerce div.product .woocommerce-tabs .panel #reviews #review_form_wrapper #review_form #respond .comment-form .form-submit input:hover {
background: var(--heading);
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
padding: 0;
margin: 0 0 40px 0;
background: #fff;
}
.woocommerce div.product .woocommerce-tabs ul.tabs:before, .woocommerce div.product .woocommerce-tabs ul.tabs:after {
content: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
position: relative;
margin: 0 15px 10px 0;
padding: 0;
border-color: rgba(29, 23, 41, 0.15);
border-radius: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:before, .woocommerce div.product .woocommerce-tabs ul.tabs li:after {
display: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
border-color: var(--primary);
border-bottom-color: var(--primary);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
background: var(--primary);
color: #fff;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a:hover {
color: #fff;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
font-size: 16px;
line-height: 1.2;
font-weight: 700;
color: var(--heading);
text-align: center;
text-transform: uppercase;
padding: 20px 48px;
background: #fff;
border-radius: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
color: var(--primary);
}
.woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel .woocommerce-Reviews {
padding: 50px 35px;
box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
}
.woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel .woocommerce-Reviews #comments .woocommerce-Reviews-title {
margin: 0 0 20px;
font-size: 30px;
font-weight: 500;
line-height: 1.2;
color: var(--heading);
}
.woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel#tab-description > p {
margin: 0 0 26px 0;
}
.woocommerce div.product .related > h2 {
margin: 0 0 45px 0;
font-size: 48px;
font-weight: 700;
line-height: 1.2;
color: var(--heading);
text-align: center;
} .yith-wcwl-add-to-wishlist i {
color: var(--primary);
}
.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist {
top: 0;
right: 12px;
left: unset;
line-height: 1;
}
.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist i {
font-size: 16px;
}
.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist span {
display: none;
}
.yith-wcwl-add-button, .yith-wcwl-wishlistaddedbrowse, .yith-wcwl-wishlistexistsbrowse {
clear: both;
padding: 8px 0;
line-height: 1.5;
}
.pswp__caption__center {
text-align: center;
font-size: 18px;
color: #fff;
} .woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item):hover, .woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item):focus {
-webkit-box-shadow: var(--wvs-hover-item-box-shadow, 0 0 0 3px var(--primary));
box-shadow: var(--wvs-hover-item-box-shadow, 0 0 0 3px var(--primary));
}
.woocommerce-checkout {     }
.woocommerce-checkout h3 {
text-transform: uppercase;
font-size: 1.2em;
margin-top: 0;
}
.woocommerce-checkout form.checkout_coupon p {
margin-bottom: 10px;
margin-top: 0;
}
.woocommerce-checkout form.checkout_coupon .form-row-first,
.woocommerce-checkout form.checkout_coupon .form-row-last {
width: 49% !important;
}
.woocommerce-checkout form.checkout_coupon input.input-text {
line-height: 1.5em;
}
.woocommerce-checkout form.checkout_coupon .button {
line-height: 1.5em;
background-color: var(--primary);
border-color: var(--primary);
color: #fff;
padding: 12px 25px;
}
.woocommerce-checkout form.checkout_coupon .button:hover {
background-color: var(--heading);
color: #fff;
}
.woocommerce-checkout #customer_details {
margin-bottom: 30px;
}
.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
max-width: 100%;
padding: 0;
}
.woocommerce-checkout #customer_details label {
display: block;
width: 100%;
font-size: 1em;
color: var(--heading);
font-weight: 600;
margin-bottom: 5px;
margin-top: 5px;
}
.woocommerce-checkout #customer_details input {
border: 1px solid;
border-color: #e0e0e0;
line-height: 1.5em;
padding: 12px 15px;
color: var(--text);
border-radius: 4px;
background: #ffffff;
}
.woocommerce-checkout #customer_details textarea {
border: 1px solid;
border-color: #e0e0e0;
height: 100px;
padding: 10px 15px;
border-radius: 4px;
color: var(--text);
background: #ffffff;
}
.woocommerce-checkout #customer_details .select2-container .select2-selection--single {
height: 45px;
border: 1px solid;
border-color: #e0e0e0;
border-radius: 4px;
}
.woocommerce-checkout #customer_details .select2-container .select2-selection--single .select2-selection__arrow {
height: 45px;
position: absolute;
top: 1px;
right: 10px;
width: 20px;
}
.woocommerce-checkout #customer_details .select2-container .select2-selection--single .select2-selection__rendered {
color: var(--text);
padding-left: 15px;
line-height: 45px;
}
.woocommerce-checkout #customer_details .form-row {
margin-top: 0;
margin-bottom: 15px;
padding: 0;
width: 100%;
}
.woocommerce-checkout #customer_details .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper {
display: flex;
flex-wrap: wrap;
}
.woocommerce-checkout #customer_details .woocommerce-billing-fields .form-row#billing_first_name_field {
order: 1;
width: 50%;
padding-right: 10px;
}
@media (max-width: 767px) {
.woocommerce-checkout #customer_details .woocommerce-billing-fields .form-row#billing_first_name_field {
padding-right: 0px;
width: 100%;
}
}
.woocommerce-checkout #customer_details .woocommerce-billing-fields .form-row#billing_last_name_field {
order: 2;
width: 50%;
padding-left: 10px;
}
@media (max-width: 767px) {
.woocommerce-checkout #customer_details .woocommerce-billing-fields .form-row#billing_last_name_field {
padding-left: 0px;
width: 100%;
}
}
.woocommerce-checkout #customer_details .woocommerce-billing-fields .form-row#billing_company_field {
order: 3;
}
.woocommerce-checkout #customer_details .woocommerce-billing-fields .form-row#billing_phone_field {
order: 4;
width: 50%;
padding-right: 10px;
}
@media (max-width: 767px) {
.woocommerce-checkout #customer_details .woocommerce-billing-fields .form-row#billing_phone_field {
padding-right: 0px;
width: 100%;
}
}
.woocommerce-checkout #customer_details .woocommerce-billing-fields .form-row#billing_email_field {
order: 5;
width: 50%;
padding-left: 10px;
}
@media (max-width: 767px) {
.woocommerce-checkout #customer_details .woocommerce-billing-fields .form-row#billing_email_field {
padding-left: 0;
width: 100%;
}
}
.woocommerce-checkout #customer_details .woocommerce-billing-fields .form-row#billing_country_field {
order: 7;
}
.woocommerce-checkout #customer_details .woocommerce-billing-fields .form-row#billing_address_1_field {
order: 8;
}
.woocommerce-checkout #customer_details .woocommerce-billing-fields .form-row#billing_address_2_field {
order: 9;
}
.woocommerce-checkout #customer_details .woocommerce-billing-fields .form-row#billing_city_field {
order: 10;
}
.woocommerce-checkout #customer_details .woocommerce-billing-fields .form-row#billing_state_field {
order: 11;
width: 50%;
padding-right: 10px;
}
@media (max-width: 767px) {
.woocommerce-checkout #customer_details .woocommerce-billing-fields .form-row#billing_state_field {
padding-right: 0px;
width: 100%;
}
}
.woocommerce-checkout #customer_details .woocommerce-billing-fields .form-row#billing_postcode_field {
order: 12;
width: 50%;
}
@media (max-width: 767px) {
.woocommerce-checkout #customer_details .woocommerce-billing-fields .form-row#billing_postcode_field {
padding: 0;
width: 100%;
}
}
.woocommerce-checkout #customer_details .woocommerce-billing-fields .form-row .woocommerce-input-wrapper {
width: 100%;
display: block;
}
.woocommerce-checkout #customer_details .woocommerce-shipping-fields h3 label {
margin: 0;
}
.woocommerce-checkout #customer_details .woocommerce-shipping-fields h3 label input {
height: unset;
margin: 0 5px 0 0;
}
.woocommerce-checkout #customer_details .woocommerce-shipping-fields h3 label span {
font-weight: 600;
}
.woocommerce-checkout #customer_details .woocommerce-shipping-fields .form-row {
margin: 0 0 15px 0;
}
.woocommerce-checkout #customer_details .woocommerce-shipping-fields .form-row.form-row-first {
width: 100%;
}
.woocommerce-checkout #customer_details .woocommerce-shipping-fields .form-row.form-row-last {
width: 100%;
}
.woocommerce-checkout #customer_details .woocommerce-shipping-fields .form-row .woocommerce-input-wrapper {
width: 100%;
}
.woocommerce-checkout #customer_details .woocommerce-additional-fields .form-row {
margin: 0 0 15px 0;
padding: 0;
}
.woocommerce-checkout table.shop_table {
border: 1px solid;
border-color: #e0e0e0;
}
.woocommerce-checkout table.shop_table thead tr th {
border: none;
border-bottom: 1px solid #e0e0e0;
}
.woocommerce-checkout table.shop_table thead tr th.product-name {
border-right: 1px solid #e0e0e0;
}
.woocommerce-checkout table.shop_table tbody tr {
border: none;
}
.woocommerce-checkout table.shop_table tbody tr td {
border: none;
}
.woocommerce-checkout table.shop_table tbody tr td.product-name {
border-right: 1px solid #e0e0e0;
}
.woocommerce-checkout #payment {
border-radius: 0px;
background: #e8eaee;
}
.woocommerce-checkout #payment ul.wc_payment_methods {
padding: 32px 25px 32px 25px;
border-bottom-color: #e0e0e0;
}
.woocommerce-checkout #payment ul.wc_payment_methods li input {
height: unset;
margin: 0 8px 0 0;
}
.woocommerce-checkout #payment ul.wc_payment_methods li label {
margin: 0 0 0 0;
font-size: 18px;
line-height: 1.2;
letter-spacing: 0.2px;
color: var(--heading);
font-weight: 500;
}
.woocommerce-checkout #payment ul.wc_payment_methods li .payment_box {
background: #fff;
margin: 12px 0 22px 0;
border-radius: 0;
}
.woocommerce-checkout #payment ul.wc_payment_methods li .payment_box:before {
border-bottom-color: #fff;
}
.woocommerce-checkout #payment ul.wc_payment_methods li .payment_box p {
font-size: 17px;
line-height: 22px;
color: var(--text);
}
.woocommerce-checkout #payment ul.wc_payment_methods li.payment_method_paypal label {
width: calc(100% - 26px);
}
.woocommerce-checkout #payment ul.wc_payment_methods li.payment_method_paypal label a {
float: right;
}
.woocommerce-checkout #payment ul.wc_payment_methods li.payment_method_paypal label a:after {
content: "";
display: block;
clear: both;
}
.woocommerce-checkout #payment .place-order {
justify-content: flex-end;
padding: 20px 25px 20px 20px;
}
.woocommerce-checkout #payment .place-order #place_order {
font-size: 1.2em;
color: #fff;
background: #333;
}
.woocommerce-checkout #payment .place-order #place_order:hover {
background: var(--primary);
}
.woocommerce { }
.woocommerce .woocommerce-cart-form table, .woocommerce .woocommerce-cart-form tr, .woocommerce .woocommerce-cart-form td, .woocommerce .woocommerce-cart-form th {
border: none;
}
.woocommerce .woocommerce-cart-form table.shop_table td {
border: none;
}
.woocommerce .woocommerce-cart-form table.shop_table thead tr {
display: flex;
flex-wrap: wrap;
align-items: center;
background: #e8eaee;
height: 55px;
padding: 0 0 0 13px;
}
.woocommerce .woocommerce-cart-form table.shop_table thead tr th {
font-size: 1em;
color: var(--heading);
text-transform: uppercase;
}
.woocommerce .woocommerce-cart-form table.shop_table thead tr th.product-remove {
order: 9;
flex: 0 0 60px;
}
.woocommerce .woocommerce-cart-form table.shop_table thead tr th.product-thumbnail {
display: none;
}
.woocommerce .woocommerce-cart-form table.shop_table thead tr th.product-name {
flex: 0 0 calc(100% - 610px);
}
@media (max-width: 767px) {
.woocommerce .woocommerce-cart-form table.shop_table thead tr th.product-name {
flex: 0 0 100%;
}
}
.woocommerce .woocommerce-cart-form table.shop_table thead tr th.product-price {
flex: 0 0 150px;
}
@media (max-width: 767px) {
.woocommerce .woocommerce-cart-form table.shop_table thead tr th.product-price {
flex: 0 0 100%;
}
}
.woocommerce .woocommerce-cart-form table.shop_table thead tr th.product-quantity {
flex: 0 0 165px;
}
@media (max-width: 767px) {
.woocommerce .woocommerce-cart-form table.shop_table thead tr th.product-quantity {
flex: 0 0 100%;
}
}
.woocommerce .woocommerce-cart-form table.shop_table thead tr th.product-subtotal {
flex: 0 0 235px;
}
@media (max-width: 767px) {
.woocommerce .woocommerce-cart-form table.shop_table thead tr th.product-subtotal {
flex: 0 0 100%;
}
}
.woocommerce .woocommerce-cart-form table.shop_table tbody tr {
display: flex;
flex-wrap: wrap;
align-items: center;
padding: 0 0 0 13px;
}
@media (max-width: 767px) {
.woocommerce .woocommerce-cart-form table.shop_table tbody tr {
padding: 0;
}
}
.woocommerce .woocommerce-cart-form table.shop_table tbody tr:not(:last-child) {
border-bottom: 1px solid #e8e8e8;
}
.woocommerce .woocommerce-cart-form table.shop_table tbody tr:last-child {
padding: 0;
}
.woocommerce .woocommerce-cart-form table.shop_table tbody tr:last-child td {
padding: 25px 0px 20px 0px;
}
.woocommerce .woocommerce-cart-form table.shop_table tbody tr td {
font-size: 16px;
letter-spacing: 0.2px;
padding: 20px 12px;
}
.woocommerce .woocommerce-cart-form table.shop_table tbody tr td input {
border-radius: 0;
}
.woocommerce .woocommerce-cart-form table.shop_table tbody tr td.product-remove {
order: 9;
flex: 0 0 60px;
}
@media (max-width: 767px) {
.woocommerce .woocommerce-cart-form table.shop_table tbody tr td.product-remove {
order: unset;
flex: 0 0 100%;
}
}
.woocommerce .woocommerce-cart-form table.shop_table tbody tr td.product-remove a {
font-size: 20px;
border: 1px solid #e5e5e5;
width: 25px;
height: 25px;
font-weight: normal;
padding: 1px 0px 0px 1px;
}
.woocommerce .woocommerce-cart-form table.shop_table tbody tr td.product-remove a:hover {
color: #fff !important;
}
.woocommerce .woocommerce-cart-form table.shop_table tbody tr td.product-thumbnail {
flex: 0 0 90px;
}
.woocommerce .woocommerce-cart-form table.shop_table tbody tr td.product-name {
flex: 0 0 calc(100% - 700px);
padding-left: 0;
}
@media (max-width: 767px) {
.woocommerce .woocommerce-cart-form table.shop_table tbody tr td.product-name {
flex: 0 0 100%;
padding-left: 12px;
}
}
.woocommerce .woocommerce-cart-form table.shop_table tbody tr td.product-name a {
font-size: 1em;
color: var(--heading);
font-weight: bold;
border-bottom: none;
}
.woocommerce .woocommerce-cart-form table.shop_table tbody tr td.product-name a:hover {
color: var(--primary);
}
.woocommerce .woocommerce-cart-form table.shop_table tbody tr td.product-price {
flex: 0 0 150px;
color: var(--text);
line-height: 1.2;
}
@media (max-width: 767px) {
.woocommerce .woocommerce-cart-form table.shop_table tbody tr td.product-price {
flex: 0 0 100%;
}
}
.woocommerce .woocommerce-cart-form table.shop_table tbody tr td.product-quantity {
flex: 0 0 165px;
}
@media (max-width: 767px) {
.woocommerce .woocommerce-cart-form table.shop_table tbody tr td.product-quantity {
flex: 0 0 100%;
}
}
.woocommerce .woocommerce-cart-form table.shop_table tbody tr td.product-quantity input {
font-size: 16px;
color: var(--text);
height: 33px;
width: 70px;
line-height: 33px;
border: 1px solid #e8e8e8;
padding-right: 0;
}
.woocommerce .woocommerce-cart-form table.shop_table tbody tr td.product-subtotal {
flex: 0 0 235px;
color: var(--text);
}
@media (max-width: 767px) {
.woocommerce .woocommerce-cart-form table.shop_table tbody tr td.product-subtotal {
flex: 0 0 100%;
}
}
.woocommerce .woocommerce-cart-form table.shop_table tbody tr td.actions {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
width: 100%;
}
@media (max-width: 767px) {
.woocommerce .woocommerce-cart-form table.shop_table tbody tr td.actions .coupon {
width: 100%;
}
}
.woocommerce .woocommerce-cart-form table.shop_table tbody tr td.actions .coupon .input-text {
min-width: 160px;
border: 1px solid;
border-color: #e0e0e0;
line-height: 1.5em;
padding: 12px 15px;
margin-right: 10px;
font-size: 15px;
color: var(--text);
}
.woocommerce .woocommerce-cart-form table.shop_table tbody tr td.actions .coupon .input-text::placeholder {
font-size: 15px;
color: #62718d;
}
@media (max-width: 767px) {
.woocommerce .woocommerce-cart-form table.shop_table tbody tr td.actions .coupon .input-text {
width: 100%;
display: block;
margin-bottom: 20px;
}
}
.woocommerce .woocommerce-cart-form table.shop_table tbody tr td.actions .coupon .button {
background: var(--primary);
line-height: 1.5em;
padding: 12px 25px;
border-radius: 0;
color: #fff;
font-weight: 600;
}
.woocommerce .woocommerce-cart-form table.shop_table tbody tr td.actions .coupon .button:hover {
background-color: var(--heading);
}
.woocommerce .woocommerce-cart-form table.shop_table tbody tr td.actions .coupon .button:focus {
background-color: var(--heading);
outline: none;
}
@media (max-width: 767px) {
.woocommerce .woocommerce-cart-form table.shop_table tbody tr td.actions .coupon .button {
display: block;
width: 100%;
margin-bottom: 20px;
}
}
.woocommerce .woocommerce-cart-form table.shop_table tbody tr td.actions .button[name=update_cart] {
background: var(--primary);
color: #fff;
}
.woocommerce .woocommerce-cart-form table.shop_table tbody tr td.actions .button[name=update_cart]:hover {
background: var(--heading);
}
@media (max-width: 767px) {
.woocommerce .woocommerce-cart-form table.shop_table tbody tr td.actions .button[name=update_cart] {
display: block;
width: 100%;
}
}
.woocommerce .woocommerce-cart-form table.shop_table tbody tr td a {
display: inline-block;
border-bottom: none;
}
.woocommerce .woocommerce-cart-form table.shop_table tbody tr td a img {
width: 60px;
}
.woocommerce .cart-collaterals {
margin-bottom: 80px;
}
.woocommerce .cart-collaterals .cart_totals > h2 {
font-size: 1.2em;
text-transform: uppercase;
color: var(--heading);
margin-bottom: 15px;
}
@media (max-width: 767px) {
.woocommerce .cart-collaterals .cart_totals table, .woocommerce .cart-collaterals .cart_totals tr, .woocommerce .cart-collaterals .cart_totals td, .woocommerce .cart-collaterals .cart_totals th {
border: none;
}
}
.woocommerce .cart-collaterals .cart_totals .shop_table {
border: 1px solid #e0e0e0;
border-collapse: separate !important;
border-bottom: none;
border-radius: 4px;
}
.woocommerce .cart-collaterals .cart_totals .shop_table tbody tr th {
border: none;
border-right: 1px solid #e0e0e0;
border-bottom: 1px solid #e0e0e0;
}
.woocommerce .cart-collaterals .cart_totals .shop_table tbody tr td {
border: none;
border-bottom: 1px solid #e0e0e0;
}
.woocommerce .cart-collaterals .cart_totals .shop_table .select2-container .select2-selection--single {
height: 45px;
border: 1px solid;
border-color: #e0e0e0;
border-radius: 4px;
}
.woocommerce .cart-collaterals .cart_totals .shop_table .select2-container .select2-selection--single .select2-selection__arrow {
height: 45px;
position: absolute;
top: 1px;
right: 10px;
width: 20px;
}
.woocommerce .cart-collaterals .cart_totals .shop_table .select2-container .select2-selection--single .select2-selection__rendered {
color: var(--text);
padding-left: 15px;
line-height: 45px;
}
.woocommerce .cart-collaterals .cart_totals .shop_table button[name=calc_shipping] {
background: var(--primary);
line-height: 1.5em;
padding: 12px 25px;
border-radius: 0;
color: #fff;
}
.woocommerce .cart-collaterals .cart_totals .shop_table button[name=calc_shipping]:hover {
background-color: var(--heading);
color: #fff;
}
.woocommerce .cart-collaterals .cart_totals .checkout-button {
background-color: var(--heading);
}
.woocommerce .cart-collaterals .cart_totals .checkout-button:hover {
background: var(--primary);
}
.woocommerce .woocommerce-ordering {
margin: 0 0 45px;
}
.woocommerce .woocommerce-order h2 {
font-size: 1.3em;
text-transform: uppercase;
margin-bottom: 15px;
}
.woocommerce .woocommerce-order .order_details {
padding-left: 15px;
}
.woocommerce .woocommerce-order .order_details li {
margin-bottom: 10px;
}
@media (max-width: 767px) {
.woocommerce .woocommerce-order .order_details li {
display: block;
width: 100%;
margin: 0 0 15px 0px;
padding: 0;
border-right: none;
}
}
.woocommerce {  }
.woocommerce ul.ova-login-register-woo {
list-style-type: none;
padding: 0;
margin: 0 0 50px 0;
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.woocommerce ul.ova-login-register-woo li {
padding: 0 13px;
}
.woocommerce ul.ova-login-register-woo li.active a {
position: relative;
}
.woocommerce ul.ova-login-register-woo li.active a:after {
position: absolute;
bottom: -6px;
left: 0;
content: "";
width: 100%;
height: 2px;
background: #f00;
}
.woocommerce ul.ova-login-register-woo li a {
font-size: 24px;
line-height: 26px;
color: #202b5d;
letter-spacing: 0.2px;
font-weight: 400;
}
.woocommerce #customer_login.col2-set .col-1, .woocommerce #customer_login.col2-set .col-2 {
max-width: 100%;
float: unset;
margin: 0 auto;
}
.woocommerce #customer_login.col2-set .col-1 > h2, .woocommerce #customer_login.col2-set .col-2 > h2 {
display: none;
}
.woocommerce #customer_login .woocommerce-form {
border: none;
margin: 0;
padding-top: 0;
}
.woocommerce #customer_login .woocommerce-form .woocommerce-form-row {
padding: 0;
margin: 0 0 15px 0;
}
.woocommerce #customer_login .woocommerce-form .woocommerce-form-row label {
font-size: 17px;
line-height: 24px;
color: var(--heading);
display: block;
width: 100%;
margin: 0 0 6px 0;
font-weight: 600;
}
.woocommerce #customer_login .woocommerce-form .woocommerce-form-row input {
border-radius: 0;
padding: 12px 15px;
line-height: 1.5em;
color: var(--text);
}
.woocommerce #customer_login .woocommerce-form .woocommerce-form-row .show-password-input {
right: 10px;
}
.woocommerce #customer_login .woocommerce-form .form-row {
display: flex;
flex-direction: column;
}
.woocommerce #customer_login .woocommerce-form .form-row .woocommerce-form-login__rememberme {
order: 1;
margin-bottom: 10px;
}
.woocommerce #customer_login .woocommerce-form .form-row button {
order: 2;
}
.woocommerce #customer_login .woocommerce-form button[type=submit] {
border-radius: 0;
padding: 12px 25px;
line-height: 1.5em;
background-color: var(--primary);
color: #fff;
margin: 0;
}
.woocommerce #customer_login .woocommerce-form button[type=submit]:hover {
background-color: var(--heading);
color: #fff;
}
.woocommerce #customer_login .woocommerce-form .woocommerce-LostPassword {
margin-top: 7px;
}
.woocommerce #customer_login .woocommerce-form .woocommerce-LostPassword a {
color: var(--heading);
text-decoration: underline;
}
.woocommerce #customer_login .woocommerce-form .woocommerce-LostPassword a:hover {
color: var(--primary);
}
.woocommerce #customer_login .woocommerce-form.woocommerce-form-register {
display: none;
border: none;
max-width: 400px;
padding: 0;
margin: -5px auto 80px auto;
}
.woocommerce #customer_login .woocommerce-form.woocommerce-form-register .woocommerce-form-row, .woocommerce #customer_login .woocommerce-form.woocommerce-form-register .woocommerce-privacy-policy-text {
margin-bottom: 15px;
}
.woocommerce #customer_login .woocommerce-form.woocommerce-form-register p {
margin-bottom: 10px;
}
.woocommerce #customer_login .woocommerce-form.woocommerce-form-register .woocommerce-form-register__submit {
border-radius: 0;
padding: 12px 25px;
line-height: 1.5em;
background-color: var(--primary);
color: #fff;
}
.woocommerce #customer_login .woocommerce-form.woocommerce-form-register .woocommerce-form-register__submit:hover {
background-color: var(--heading);
color: #fff;
} .woocommerce-account .page-title {
display: none;
}
.woocommerce-MyAccount-navigation ul {
margin: 0;
padding: 0;
list-style-type: none;
}
.woocommerce-MyAccount-navigation ul li.is-active a, .woocommerce-MyAccount-navigation ul li:hover a {
background-color: var(--primary);
color: #fff;
}
.woocommerce-MyAccount-navigation ul li a {
list-style-type: none;
background-color: #f1f1f1;
margin-bottom: 10px;
padding: 10px 15px;
display: block;
color: var(--heading);
font-weight: bold;
}
.woocommerce .woo-sidebar {
flex: 0 0 320px;
}
@media (max-width: 991px) {
.woocommerce .woo-sidebar {
flex: 0 0 100%;
}
}
.woocommerce .woo-sidebar .woo_widget {
padding: 30px;
border: 1px solid rgba(29, 23, 41, 0.1);
border-radius: 5px;
background: #fff;
margin-bottom: 30px;
}
.woocommerce .woo-sidebar .woo_widget:last-child {
margin-bottom: 0;
}
.woocommerce .woo-sidebar .woo_widget h4.widget-title {
font-size: 20px;
margin-bottom: 30px;
}
.woocommerce .woo-sidebar .woo_widget h4.widget-title:after, .woocommerce .woo-sidebar .woo_widget h4.widget-title:before {
position: absolute;
content: "";
bottom: 0;
background-color: var(--primary);
height: 3px;
border-radius: 4px;
}
.woocommerce .woo-sidebar .woo_widget h4.widget-title:after {
left: 0;
width: 35px;
}
.woocommerce .woo-sidebar .woo_widget h4.widget-title:before {
left: 40px;
width: 10px;
}
.woocommerce .woo-sidebar #woocommerce_product_search-2 {
padding: 0;
border: none;
}
.woocommerce .woo-sidebar .widget_product_categories ul.product-categories li {
padding: 5px 0;
}
.woocommerce .woo-sidebar .widget_product_categories ul.product-categories li:hover {
color: var(--primary);
}
.woocommerce .woo-sidebar .widget_product_categories ul.product-categories li:hover a {
color: var(--primary);
}
.woocommerce .woo-sidebar .widget_product_categories ul.product-categories li a {
color: var(--text);
}
.woocommerce .woo-sidebar .widget_product_categories ul.product-categories li .count {
margin-inline-start: 5px;
}
@media (max-width: 991px) {
.woocommerce .woo-sidebar .widget_products ul.product_list_widget, .woocommerce .woo-sidebar .widget_top_rated_products ul.product_list_widget {
padding: 0 20px 0 0;
}
}
.woocommerce .woo-sidebar .widget_products ul.product_list_widget li, .woocommerce .woo-sidebar .widget_top_rated_products ul.product_list_widget li {
display: flex;
column-gap: 15px;
line-height: 1;
padding: 0 0 30px 0;
margin: 0 0 30px 0;
border-bottom: 1px solid rgba(29, 23, 41, 0.1);
}
.woocommerce .woo-sidebar .widget_products ul.product_list_widget li:before, .woocommerce .woo-sidebar .widget_products ul.product_list_widget li:after, .woocommerce .woo-sidebar .widget_top_rated_products ul.product_list_widget li:before, .woocommerce .woo-sidebar .widget_top_rated_products ul.product_list_widget li:after {
display: none;
}
.woocommerce .woo-sidebar .widget_products ul.product_list_widget li:last-child, .woocommerce .woo-sidebar .widget_top_rated_products ul.product_list_widget li:last-child {
padding: 0;
margin: 0;
border-bottom: none;
}
.woocommerce .woo-sidebar .widget_products ul.product_list_widget li .widget-product-image, .woocommerce .woo-sidebar .widget_top_rated_products ul.product_list_widget li .widget-product-image {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 5px 10px;
background-color: var(--background-color);
width: 70px;
min-width: 70px;
height: 70px;
}
.woocommerce .woo-sidebar .widget_products ul.product_list_widget li .widget-product-image img, .woocommerce .woo-sidebar .widget_top_rated_products ul.product_list_widget li .widget-product-image img {
margin: 0;
float: unset;
object-fit: contain;
width: auto;
}
.woocommerce .woo-sidebar .widget_products ul.product_list_widget li .star-rating, .woocommerce .woo-sidebar .widget_top_rated_products ul.product_list_widget li .star-rating {
font-size: 13px;
color: #ff9000;
}
.woocommerce .woo-sidebar .widget_products ul.product_list_widget li .star-rating:before, .woocommerce .woo-sidebar .widget_top_rated_products ul.product_list_widget li .star-rating:before {
color: #ff9000;
}
.woocommerce .woo-sidebar .widget_products ul.product_list_widget li .product-title, .woocommerce .woo-sidebar .widget_top_rated_products ul.product_list_widget li .product-title {
margin: 12px 0;
display: inline-block;
font-size: 16px;
line-height: 1.2;
font-weight: 500;
color: var(--heading);
}
.woocommerce .woo-sidebar .widget_products ul.product_list_widget li .product-title:hover, .woocommerce .woo-sidebar .widget_top_rated_products ul.product_list_widget li .product-title:hover {
color: var(--primary);
}
.woocommerce .woo-sidebar .widget_products ul.product_list_widget li .woocommerce-Price-amount, .woocommerce .woo-sidebar .widget_top_rated_products ul.product_list_widget li .woocommerce-Price-amount {
font-size: 15px;
font-weight: 600;
line-height: 1;
color: var(--primary);
}
.woocommerce .woo-sidebar .widget_products ul.product_list_widget li del, .woocommerce .woo-sidebar .widget_top_rated_products ul.product_list_widget li del {
opacity: 0.5;
color: var(--primary);
}
.woocommerce .woo-sidebar .widget_products ul.product_list_widget li ins, .woocommerce .woo-sidebar .widget_top_rated_products ul.product_list_widget li ins {
text-decoration: none;
}
.woocommerce .woo-sidebar .widget_products ul.product_list_widget li ins .woocommerce-Price-amount, .woocommerce .woo-sidebar .widget_top_rated_products ul.product_list_widget li ins .woocommerce-Price-amount {
margin-left: 2px;
}
.woocommerce .woo-sidebar .widget_product_search .woocommerce-product-search {
position: relative;
}
.woocommerce .woo-sidebar .widget_product_search .woocommerce-product-search:before {
font-size: 20px;
color: #fff;
opacity: 1;
font-family: ovaicon !important;
content: "\f150";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
display: inline-block;
font-style: normal;
font-variant: normal;
font-weight: normal;
line-height: 1;
vertical-align: middle;
position: absolute;
top: 23px;
right: 24px;
line-height: 1;
z-index: 1;
transform: rotate(-90deg);
cursor: pointer;
}
.woocommerce .woo-sidebar .widget_product_search .woocommerce-product-search .search-field {
font-size: 16px;
line-height: 1;
background: var(--background-color);
padding: 18px 50px 18px 25px;
border: 1px solid rgba(29, 23, 41, 0.1);
border-radius: 5px;
width: 100%;
}
.woocommerce .woo-sidebar .widget_product_search .woocommerce-product-search .search-field::placeholder {
line-height: 1;
opacity: 1;
}
.woocommerce .woo-sidebar .widget_product_search .woocommerce-product-search .search-field::-webkit-search-cancel-button {
filter: brightness(0) invert(1);
opacity: 1;
}
.woocommerce .woo-sidebar .widget_product_search .woocommerce-product-search button {
position: absolute;
right: 10px;
top: 50%;
transform: translateY(-50%);
border: none;
border-radius: 4px;
font-size: 0;
font-weight: 400;
width: 45px;
height: calc(100% - 15px);
}
.woocommerce .woo-sidebar .widget_product_search .woocommerce-product-search button:hover {
background-color: var(--primary);
}
.woocommerce .woo-sidebar .widget_product_tag_cloud .tagcloud a {
float: left;
display: block;
font-size: 16px !important;
line-height: 1;
font-weight: 500;
color: var(--heading);
margin: 5px;
padding: 8px 20px;
border-radius: 5px;
border: 1px solid rgba(14, 19, 23, 0.1);
}
.woocommerce .woo-sidebar .widget_product_tag_cloud .tagcloud a:hover {
color: #fff;
background-color: var(--primary);
border: 1px solid transparent;
}
.woocommerce .woo-sidebar .widget_price_filter .price_slider_wrapper .ui-widget-content {
margin: 32px 2px 20px 2px;
height: 3px;
border-radius: 0;
background-color: var(--background-color);
}
.woocommerce .woo-sidebar .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-range {
height: 3px;
background-color: var(--primary);
}
.woocommerce .woo-sidebar .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-handle {
width: 3px;
height: 15px;
top: -6px;
margin-left: -1px;
border-radius: 0;
background: var(--primary);
}
.woocommerce .woo-sidebar .widget_price_filter .price_slider_wrapper .price_slider_amount {
display: flex;
flex-wrap: wrap;
row-gap: 10px;
justify-content: space-between;
align-items: center;
flex-direction: row-reverse;
}
.woocommerce .woo-sidebar .widget_price_filter .price_slider_wrapper .price_slider_amount .button {
font-size: 16px;
color: #fff;
padding: 8px 15px;
background: var(--primary);
line-height: 1;
}
.woocommerce .woo-sidebar .widget_price_filter .price_slider_wrapper .price_slider_amount .button:hover {
background: var(--heading);
}
.woocommerce .woo-sidebar .widget_price_filter .price_slider_wrapper .price_slider_amount .price_label {
font-size: 16px;
color: var(--heading);
font-weight: 500;
line-height: 1.2;
}
.woocommerce .woo-sidebar .widget_price_filter .price_slider_wrapper .price_slider_amount .clear {
display: none;
}
.rtl.woocommerce .woo-sidebar .woo_widget h4.widget-title:after {
left: unset;
right: 0;
}
.rtl.woocommerce .woo-sidebar .woo_widget h4.widget-title:before {
left: unset;
right: 40px;
}
.rtl.woocommerce .woo-sidebar .widget_product_search .woocommerce-product-search:before {
right: unset;
left: 24px;
}
.rtl.woocommerce .woo-sidebar .widget_product_search .woocommerce-product-search button {
right: unset;
left: 10px;
}
.rtl.woocommerce .woo-sidebar .widget_product_search .woocommerce-product-search .search-field {
padding: 18px 25px 18px 50px;
}
.woocommerce-error, .woocommerce-info, .woocommerce-message {
line-height: 3em;
}
@media (max-width: 767px) {
.woocommerce-error, .woocommerce-info, .woocommerce-message {
line-height: 1.6em;
}
} .brand_el .logo_desktop {
display: inline-block;
vertical-align: middle;
}
@media (max-width: 1023px) {
.brand_el .logo_desktop {
display: none;
}
}
.brand_el .logo_mobile {
display: none;
}
@media (max-width: 1023px) {
.brand_el .logo_mobile {
display: inline-block;
vertical-align: middle;
}
}
.brand_el .logo_sticky {
display: none;
}
.header_sticky.active_sticky .brand_el .logo_desktop,
.header_sticky.active_sticky .brand_el .logo_mobile {
display: none;
}
.header_sticky.active_sticky .brand_el .logo_sticky {
display: inline-block;
vertical-align: middle;
}
@media (max-width: 1023px) {
.elementor-widget-ova_menu .primary-navigation {
position: absolute;
left: 0;
top: 0;
}
}  .align_right > .elementor-container {
float: right;
width: 100%;
} .ova_openNav {
display: none;
}
.ova_nav {
width: 100%;  }
.ova_nav .ova_closeNav {
display: none;
}
.ova_nav .dropdown-menu {
padding: 0px;
margin: 0;
-webkit-transition: all 300ms ease;
transition: all 300ms ease;
}
.ova_nav .dropdown-menu > li {
width: 100%;
position: relative;
}
.ova_nav .dropdown-menu > li > a {
color: #343434;
display: block;
text-transform: uppercase;
font-weight: 500;
font-size: 14px;
}
.ova_nav ul.menu {
display: flex;
list-style: none;
margin: 0;
padding: 0; }
.ova_nav ul.menu > li {
padding: 0px 15px;
}
.ova_nav ul.menu > li > a {
color: #343434;
font-weight: 500;
font-size: 14px;
text-transform: uppercase;
display: inline-block;
}
.ova_nav ul.menu button.dropdown-toggle {
display: none;
}
.ova_nav ul.menu button.dropdown-toggle:after {
display: none;
} .sub_menu_dir_left .dropdown-menu li {
text-align: right;
position: relative; }
.sub_menu_dir_left .dropdown-menu li.dropdown a i {
position: absolute;
left: 10px;
top: 50%;
margin-top: -10px;
}
.sub_menu_dir_left .dropdown-menu li.dropdown a i:before {
content: "4";
font-family: "eleganticons";
}
.sub_menu_dir_left .dropdown-menu li .dropdown-menu {
position: absolute;
left: auto;
right: 100%;
top: 0;
}
.sub_menu_dir_right .dropdown-menu li {
text-align: left; }
.sub_menu_dir_right .dropdown-menu li.dropdown a i {
position: absolute;
right: 10px;
top: 50%;
margin-top: -10px;
}
.sub_menu_dir_right .dropdown-menu li.dropdown a i:before {
content: "5";
font-family: "eleganticons";
}
.sub_menu_dir_right .dropdown-menu li .dropdown-menu {
position: absolute;
right: auto;
left: 100%;
top: 0;
} .ova_closeCanvas {
height: 100%;
width: 100%;
position: fixed;
z-index: -1;
top: 0;
left: 0;
background-color: rgba(0, 0, 0, 0.7);
overflow-y: auto;
overflow-x: hidden;
text-align: center;
opacity: 0;
transition: all 0.3s linear;
-webkit-transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-o-transition: all 0.3s linear;
-ms-transition: all 0.3s linear;
visibility: hidden;
}
.ova_closeCanvas.show {
opacity: 1;
z-index: 9998;
visibility: visible;
}
@media (min-width: 1025px) { .ova_wrap_nav.column ul.menu.sub_menu_dir_right > li.dropdown > a i:before {
content: "5";
font-family: "eleganticons";
}
.ova_wrap_nav.column ul.menu > li {
width: 100%;
}
.ova_wrap_nav.column ul.menu > li > .dropdown-menu {
left: 100%;
top: 0 !important;
}
.ova_nav ul.menu { }
.ova_nav ul.menu .dropdown-menu {
visibility: hidden;
display: block;
top: 110%;
z-index: -1;
}
.ova_nav ul.menu > li:hover > .dropdown-menu {
display: block;
z-index: 9999;
webkit-transition: all 0.3s ease-in;
-moz-transition: all 0.3s ease-in;
-ms-transition: all 0.3s ease-in;
-o-transition: all 0.3s ease-in;
transition: all 0.3s ease-in;
visibility: visible;
top: 100%;
}
.ova_nav ul.menu > li:hover > .dropdown-menu > li:hover > .dropdown-menu {
display: block;
opacity: 1;
z-index: 9999;
webkit-transition: all 0.3s ease-in;
-moz-transition: all 0.3s ease-in;
-ms-transition: all 0.3s ease-in;
-o-transition: all 0.3s ease-in;
transition: all 0.3s ease-in;
visibility: visible;
top: 0;
} .ova-menu-custom-line .main-navigation ul.menu > li > a {
position: relative;
}
.ova-menu-custom-line .main-navigation ul.menu > li > a:before {
transition: all 0.5s ease;
position: absolute;
content: "";
right: 0;
left: 0;
bottom: 0;
width: 0;
height: 2px;
background-color: var(--primary);
transform-origin: left center;
}
.ova-menu-custom-line .main-navigation ul.menu > li > a:hover:before {
transition: all 0.5s ease;
width: 100% !important;
transform-origin: right center;
}
.ova-menu-custom-line .main-navigation ul li.menu-item.current-menu-item > a:before {
transition: all 0.5s ease;
width: 16px;
}
} @media (max-width: 1024px) { .ova-wrapp {
transition: margin-left 0.5s;
}
.ova_openNav {
display: block;
border: none;
outline: none;
cursor: pointer;
}
.ova_openNav:focus {
outline: none;
} .NavBtn_right {
float: right;
margin: 0;
padding: 0;
}
.NavBtn_left {
float: left;
}
.NavBtn_center {
justify-content: center;
} .logged-in .ova_nav {
padding-top: 60px;
}
.ova_nav {
height: 100%;
width: 250px;
position: fixed;
z-index: 9999;
top: 0;
overflow-x: hidden;
padding-top: 30px;
-webkit-transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-o-transition: all 0.3s linear;
-ms-transition: all 0.3s linear;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);   }
.ova_nav ul.menu li {
width: 100%;
display: block;
align-items: center; }
.ova_nav ul.menu li a {
width: 100%;
}
.ova_nav ul.menu li a i {
display: none;
}
.ova_nav ul.menu li button.dropdown-toggle {
display: block;
position: absolute;
top: 3px;
right: 10px;
background: transparent;
border: none;
outline: none;
}
.ova_nav ul.menu li.active_sub > .dropdown-menu {
display: block;
}
.ova_nav ul.menu li.active_sub > button.dropdown-toggle > i:before {
content: "2";
font-family: "eleganticons";
}
.ova_nav ul.menu .dropdown-menu {
position: relative !important;
transform: none !important;
left: 0;
top: 0;
right: auto;
border: none !important;
background: transparent !important;
display: none;
opacity: 1;
visibility: visible;
width: 100%;
}
.ova_nav.canvas_left {
left: 0;
-webkit-transform: translateX(-250px);
-ms-transform: translateX(-250px);
transform: translateX(-250px); }
.ova_nav.canvas_left.show {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
.ova_nav.canvas_left .ova_closeNav {
display: block;
padding-left: 20px;
padding-right: 20px;
padding-bottom: 10px;
color: #fff;
text-align: right;
}
.ova_nav.canvas_left ul.menu {
align-items: flex-start;
text-align: left;  }
.ova_nav.canvas_left ul.menu button.dropdown-toggle {
right: 10px;
}
.ova_nav.canvas_left ul.menu .dropdown-menu {
transition: unset; }
.ova_nav.canvas_left ul.menu .dropdown-menu li {
text-align: left;
border: none !important;
background: transparent !important;
clear: both;
}
.ova_nav.canvas_left ul.menu .dropdown-menu .dropdown-menu {
padding-left: 15px;
}
.ova_nav.canvas_right {
right: 0;
-webkit-transform: translateX(250px);
-ms-transform: translateX(250px);
transform: translateX(250px); }
.ova_nav.canvas_right.show {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
.ova_nav.canvas_right .ova_closeNav {
display: block;
padding-left: 20px;
padding-right: 20px;
padding-bottom: 10px;
color: #fff;
text-align: left;
}
.ova_nav.canvas_right ul.menu {
align-items: flex-end;
text-align: right;  }
.ova_nav.canvas_right ul.menu button.dropdown-toggle {
left: 10px;
}
.ova_nav.canvas_right ul.menu .dropdown-menu {
transition: unset; }
.ova_nav.canvas_right ul.menu .dropdown-menu li {
text-align: right;
border: none !important;
background: transparent !important;
}
.ova_nav.canvas_right ul.menu .dropdown-menu .dropdown-menu {
padding-right: 15px;
}
.ova_nav.canvas_bg_gray {
background-color: #343434;
}
.ova_nav.canvas_bg_gray ul.menu li a,
.ova_nav.canvas_bg_gray ul.menu li .dropdown-toggle {
color: #fff !important;
}
.ova_nav.canvas_bg_white {
background-color: #fff;
}
.ova_nav.canvas_bg_white ul.menu li a,
.ova_nav.canvas_bg_white ul.menu li .dropdown-toggle {
color: #343434 !important;
}
.ova_nav ul.menu {
flex-direction: column !important;
}
}
@media (max-width: 767px) { .NavBtn_right, .NavBtn_left {
float: none;
margin: 0;
padding: 0;
}
.NavBtn_right_m {
float: right;
margin: 0;
padding: 0;
}
.NavBtn_left_m {
float: left;
}
.NavBtn_center_m {
justify-content: center;
}
.mobi_no_shrink {
position: relative !important;
}
} .menu-canvas { }
.menu-canvas .menu-toggle {
display: block;
z-index: 999;
padding: 0px;
width: 25px;
height: 25px;
border: none;
background-color: transparent;
}
.menu-canvas .menu-toggle:before, .menu-canvas .menu-toggle:after,
.menu-canvas .menu-toggle span:before {
width: 25px;
left: 0px;
background-color: var(--primary);
}
.menu-canvas .menu-toggle:before {
transform: translateY(-7px);
}
.menu-canvas .menu-toggle:after {
transform: translateY(7px);
}
.menu-canvas .container-menu {
overflow: hidden;
overflow-y: auto;
position: fixed;
top: 0;
bottom: 0;
background-color: #222;
color: #fff;
width: 290px;
padding: 30px;
z-index: 999;
opacity: 1;
transition: transform 0.3s ease;
-moz-transition: transform 0.3s ease;
-webkit-transition: transform 0.3s ease;
-o-transition: transform 0.3s ease;
}
.menu-canvas .container-menu .close-menu {
margin-bottom: 25px;
padding-top: 0;
color: #fff;
font-size: 1em;
z-index: 999;
cursor: pointer;
text-align: right;
}
.menu-canvas .container-menu.dir_left {
left: 0;
-webkit-transform: translate3d(-290px, 0, 0);
transform: translate3d(-290px, 0, 0);
}
.menu-canvas .container-menu.dir_right {
right: 0;
-webkit-transform: translate3d(290px, 0, 0);
transform: translate3d(290px, 0, 0);
}
.menu-canvas .site-overlay {
width: 100%;
height: 100%;
top: 0;
left: 0;
bottom: 0;
background-color: #000;
opacity: 0;
visibility: hidden;
position: fixed;
z-index: 998;
}
.menu-canvas.toggled .menu-toggle:before, .menu-canvas.toggled .menu-toggle:after,
.menu-canvas.toggled .menu-toggle span:before {
background-color: #fff !important;
}
.menu-canvas.toggled .container-menu {
transform: none;
-webkit-transform: none;
}
.menu-canvas.toggled .site-overlay {
opacity: 0.8;
visibility: visible;
transition: opacity 0.2s ease;
-moz-transition: opacity 0.2s ease;
-webkit-transition: opacity 0.2s ease;
-o-transition: opacity 0.2s ease;
}
.menu-canvas .menu {
clear: both;
}
.menu-canvas ul {
list-style: none;
}
.menu-canvas ul.menu {
margin: 0;
padding: 0;
}
.menu-canvas ul.menu ul {
max-height: 0;
overflow: hidden;
transition: all ease 0.4s;
margin: 0 0px 0 15px;
padding: 0;
}
.menu-canvas ul.menu ul.show {
max-height: 999px;
}
.menu-canvas ul li {
display: inline-block;
position: relative;
text-align: left;
display: block;
}
.menu-canvas ul li a {
color: #fff;
padding: 0.6180469716em 0;
display: block;
border-bottom: 1px solid #333;
}
.menu-canvas ul li a:hover {
opacity: 0.7;
}
.menu-canvas .dropdown-toggle {
background: transparent;
position: absolute;
top: 0;
right: 0;
display: block;
padding: 0.5em 0 0.5em 10px;
color: inherit;
border-radius: 0;
border: none;
cursor: pointer;
}
.menu-canvas .dropdown-toggle::after {
content: "\f104";
font-family: "ovaicon";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
display: inline-block;
font-style: normal;
font-variant: normal;
font-weight: normal;
line-height: 1;
vertical-align: middle;
font-size: 0.6em;
}
.menu-canvas .dropdown-toggle:focus {
outline: none;
}
.menu-canvas .dropdown-toggle:hover {
background: transparent;
}
.menu-canvas .dropdown-toggle.toggled-on:after {
content: "\f10c";
font-family: "ovaicon";
}
.wrap_header_banner {
width: 100%;
position: relative; }
.wrap_header_banner.left ul.breadcrumb {
justify-content: flex-start;
}
.wrap_header_banner.right ul.breadcrumb {
justify-content: flex-end;
}
.wrap_header_banner.center ul.breadcrumb {
justify-content: center;
}
.wrap_header_banner ul.breadcrumb {
margin: 0;
padding: 0;
}
.wrap_header_banner ul.breadcrumb li .separator i {
opacity: 0.6;
}
.wrap_header_banner.bg_feature_img {
background-size: cover !important;
background-repeat: no-repeat !important;
background-position: center center !important;
}
.wrap_header_banner .cover_color {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.wrap_header_banner .header_banner_el {
position: relative;
z-index: 1;
}
.wrap_header_banner .header_title {
margin: 0;
padding: 0;
font-size: 26px;
text-transform: uppercase;
line-height: 1.1em;
font-weight: 500;
} .ova-move-up {
animation-name: ovaMoveUp;
-moz-animation-name: ovaMoveUp;
-webkit-animation-name: ovaMoveUp;
}
@-webkit-keyframes ovaMoveUp {
from {
-webkit-transform: translateY(100px);
-ms-transform: translateY(100px);
transform: translateY(100px);
opacity: 0;
}
to {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
@-moz-keyframes ovaMoveUp {
from {
-webkit-transform: translateY(100px);
-ms-transform: translateY(100px);
transform: translateY(100px);
opacity: 0;
}
to {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
@-ms-keyframes ovaMoveUp {
from {
-webkit-transform: translateY(100px);
-ms-transform: translateY(100px);
transform: translateY(100px);
opacity: 0;
}
to {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes ovaMoveUp {
from {
-webkit-transform: translateY(100px);
-ms-transform: translateY(100px);
transform: translateY(100px);
opacity: 0;
}
to {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.ova-move-down {
animation-name: ovaMoveDown;
-moz-animation-name: ovaMoveDown;
-webkit-animation-name: ovaMoveDown;
}
@-webkit-keyframes ovaMoveDown {
from {
-webkit-transform: translateY(-100px);
-ms-transform: translateY(-100px);
transform: translateY(-100px);
opacity: 0;
}
to {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
@-moz-keyframes ovaMoveDown {
from {
-webkit-transform: translateY(-100px);
-ms-transform: translateY(-100px);
transform: translateY(-100px);
opacity: 0;
}
to {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
@-ms-keyframes ovaMoveDown {
from {
-webkit-transform: translateY(-100px);
-ms-transform: translateY(-100px);
transform: translateY(-100px);
opacity: 0;
}
to {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes ovaMoveDown {
from {
-webkit-transform: translateY(-100px);
-ms-transform: translateY(-100px);
transform: translateY(-100px);
opacity: 0;
}
to {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.ova-move-left {
animation-name: ovaMoveLeft;
-moz-animation-name: ovaMoveLeft;
-webkit-animation-name: ovaMoveLeft;
}
@-webkit-keyframes ovaMoveLeft {
from {
-webkit-transform: translateX(100px);
-ms-transform: translateX(100px);
transform: translateX(100px);
opacity: 0;
}
to {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
@-moz-keyframes ovaMoveLeft {
from {
-webkit-transform: translateX(100px);
-ms-transform: translateX(100px);
transform: translateX(100px);
opacity: 0;
}
to {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
@-ms-keyframes ovaMoveLeft {
from {
-webkit-transform: translateX(100px);
-ms-transform: translateX(100px);
transform: translateX(100px);
opacity: 0;
}
to {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes ovaMoveLeft {
from {
-webkit-transform: translateX(100px);
-ms-transform: translateX(100px);
transform: translateX(100px);
opacity: 0;
}
to {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.ova-move-right {
animation-name: ovaMoveRight;
-moz-animation-name: ovaMoveRight;
-webkit-animation-name: ovaMoveRight;
}
@-webkit-keyframes ovaMoveRight {
from {
-webkit-transform: translateX(-100px);
-ms-transform: translateX(-100px);
transform: translateX(-100px);
opacity: 0;
}
to {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
@-moz-keyframes ovaMoveRight {
from {
-webkit-transform: translateX(-100px);
-ms-transform: translateX(-100px);
transform: translateX(-100px);
opacity: 0;
}
to {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
@-ms-keyframes ovaMoveRight {
from {
-webkit-transform: translateX(-100px);
-ms-transform: translateX(-100px);
transform: translateX(-100px);
opacity: 0;
}
to {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes ovaMoveRight {
from {
-webkit-transform: translateX(-100px);
-ms-transform: translateX(-100px);
transform: translateX(-100px);
opacity: 0;
}
to {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.ova-scale-up {
animation-name: ovaScaleUp;
-moz-animation-name: ovaScaleUp;
-webkit-animation-name: ovaScaleUp;
}
@-webkit-keyframes ovaScaleUp {
from {
opacity: 0;
-webkit-transform: scale(0.6);
-ms-transform: scale(0.6);
transform: scale(0.6);
}
to {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
opacity: 1;
}
}
@-moz-keyframes ovaScaleUp {
from {
opacity: 0;
-webkit-transform: scale(0.6);
-ms-transform: scale(0.6);
transform: scale(0.6);
}
to {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
opacity: 1;
}
}
@-ms-keyframes ovaScaleUp {
from {
opacity: 0;
-webkit-transform: scale(0.6);
-ms-transform: scale(0.6);
transform: scale(0.6);
}
to {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
opacity: 1;
}
}
@keyframes ovaScaleUp {
from {
opacity: 0;
-webkit-transform: scale(0.6);
-ms-transform: scale(0.6);
transform: scale(0.6);
}
to {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
opacity: 1;
}
}
.ova-flip {
animation-name: ovaFlip;
-moz-animation-name: ovaFlip;
-webkit-animation-name: ovaFlip;
}
@-webkit-keyframes ovaFlip {
from {
opacity: 0;
-webkit-perspective: 1300px;
perspective: 1300px;
-webkit-transform: rotateX(-180deg);
transform: rotateX(-180deg);
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
}
to {
-webkit-transform: rotateX(0deg);
transform: rotateX(0deg);
opacity: 1;
}
}
@-moz-keyframes ovaFlip {
from {
opacity: 0;
-webkit-perspective: 1300px;
perspective: 1300px;
-webkit-transform: rotateX(-180deg);
transform: rotateX(-180deg);
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
}
to {
-webkit-transform: rotateX(0deg);
transform: rotateX(0deg);
opacity: 1;
}
}
@-ms-keyframes ovaFlip {
from {
opacity: 0;
-webkit-perspective: 1300px;
perspective: 1300px;
-webkit-transform: rotateX(-180deg);
transform: rotateX(-180deg);
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
}
to {
-webkit-transform: rotateX(0deg);
transform: rotateX(0deg);
opacity: 1;
}
}
@keyframes ovaFlip {
from {
opacity: 0;
-webkit-perspective: 1300px;
perspective: 1300px;
-webkit-transform: rotateX(-180deg);
transform: rotateX(-180deg);
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
}
to {
-webkit-transform: rotateX(0deg);
transform: rotateX(0deg);
opacity: 1;
}
}
.ova-helix {
animation-name: ovaHelix;
-moz-animation-name: ovaHelix;
-webkit-animation-name: ovaHelix;
}
@-webkit-keyframes ovaHelix {
from {
opacity: 0;
-webkit-perspective: 1300px;
perspective: 1300px;
-webkit-transform: rotateY(-180deg);
transform: rotateY(-180deg);
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
}
to {
-webkit-transform: rotateY(0deg);
transform: rotateY(0deg);
opacity: 1;
}
}
@-moz-keyframes ovaHelix {
from {
opacity: 0;
-webkit-perspective: 1300px;
perspective: 1300px;
-webkit-transform: rotateY(-180deg);
transform: rotateY(-180deg);
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
}
to {
-webkit-transform: rotateY(0deg);
transform: rotateY(0deg);
opacity: 1;
}
}
@-ms-keyframes ovaHelix {
from {
opacity: 0;
-webkit-perspective: 1300px;
perspective: 1300px;
-webkit-transform: rotateY(-180deg);
transform: rotateY(-180deg);
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
}
to {
-webkit-transform: rotateY(0deg);
transform: rotateY(0deg);
opacity: 1;
}
}
@keyframes ovaHelix {
from {
opacity: 0;
-webkit-perspective: 1300px;
perspective: 1300px;
-webkit-transform: rotateY(-180deg);
transform: rotateY(-180deg);
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
}
to {
-webkit-transform: rotateY(0deg);
transform: rotateY(0deg);
opacity: 1;
}
}
.ova-popup {
animation: ovaPopup;
-moz-animation-name: ovaPopup;
-webkit-animation-name: ovaPopup;
}
@-webkit-keyframes ovaPopup {
from {
opacity: 0;
-webkit-transform: scale(0.4);
-ms-transform: scale(0.4);
transform: scale(0.4);
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
-webkit-perspective: 1300px;
perspective: 1300px;
}
70% {
transform: scale(1.1);
-webkit-transform: scale(1.1);
opacity: 0.8;
animation-timing-function: ease-out;
-webkit-animation-timing-function: ease-out;
}
to {
transform: scale(1);
-webkit-transform: scale(1);
opacity: 1;
}
}
@-moz-keyframes ovaPopup {
from {
opacity: 0;
-webkit-transform: scale(0.4);
-ms-transform: scale(0.4);
transform: scale(0.4);
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
-webkit-perspective: 1300px;
perspective: 1300px;
}
70% {
transform: scale(1.1);
-webkit-transform: scale(1.1);
opacity: 0.8;
animation-timing-function: ease-out;
-webkit-animation-timing-function: ease-out;
}
to {
transform: scale(1);
-webkit-transform: scale(1);
opacity: 1;
}
}
@-ms-keyframes ovaPopup {
from {
opacity: 0;
-webkit-transform: scale(0.4);
-ms-transform: scale(0.4);
transform: scale(0.4);
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
-webkit-perspective: 1300px;
perspective: 1300px;
}
70% {
transform: scale(1.1);
-webkit-transform: scale(1.1);
opacity: 0.8;
animation-timing-function: ease-out;
-webkit-animation-timing-function: ease-out;
}
to {
transform: scale(1);
-webkit-transform: scale(1);
opacity: 1;
}
}
@keyframes ovaPopup {
from {
opacity: 0;
-webkit-transform: scale(0.4);
-ms-transform: scale(0.4);
transform: scale(0.4);
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
-webkit-perspective: 1300px;
perspective: 1300px;
}
70% {
transform: scale(1.1);
-webkit-transform: scale(1.1);
opacity: 0.8;
animation-timing-function: ease-out;
-webkit-animation-timing-function: ease-out;
}
to {
transform: scale(1);
-webkit-transform: scale(1);
opacity: 1;
}
}
.elementor-widget-tabs .elementor-tabs .elementor-tabs-wrapper {
flex-basis: 32%;
}
@media (max-width: 1024px) {
.elementor-widget-tabs .elementor-tabs .elementor-tabs-wrapper {
flex-basis: 42%;
}
}
.elementor-widget-tabs .elementor-tabs .elementor-tabs-wrapper .elementor-tab-title {
padding: 18px 33px;
background-color: #fff;
margin: 0 0 15px 0;
font-size: 22px;
font-weight: 700;
line-height: 1.4;
color: var(--heading);
}
@media (max-width: 1200px) {
.elementor-widget-tabs .elementor-tabs .elementor-tabs-wrapper .elementor-tab-title {
padding: 18px 27px;
font-size: 20px;
}
}
@media (max-width: 1024px) {
.elementor-widget-tabs .elementor-tabs .elementor-tabs-wrapper .elementor-tab-title {
font-size: 18px;
}
}
.elementor-widget-tabs .elementor-tabs .elementor-tabs-wrapper .elementor-tab-title .ova-tab-icon {
display: inline-flex;
vertical-align: middle;
}
.elementor-widget-tabs .elementor-tabs .elementor-tabs-wrapper .elementor-tab-title .ova-tab-icon i {
font-size: 30px;
color: var(--primary);
display: inline-flex;
margin: 0 20px 0 0;
}
@media (max-width: 1200px) {
.elementor-widget-tabs .elementor-tabs .elementor-tabs-wrapper .elementor-tab-title .ova-tab-icon i {
font-size: 25px;
margin: 0 10px 0 0;
}
}
@media (max-width: 1024px) {
.elementor-widget-tabs .elementor-tabs .elementor-tabs-wrapper .elementor-tab-title .ova-tab-icon i {
font-size: 20px;
}
}
.elementor-widget-tabs .elementor-tabs .elementor-tabs-wrapper .elementor-tab-title.elementor-active {
border: 2px solid var(--primary);
}
.elementor-widget-tabs .elementor-tabs .elementor-tabs-content-wrapper > .elementor-tab-mobile-title {
padding: 15px 10px;
font-size: 20px;
font-weight: 700;
line-height: 1;
background-color: #fff;
margin: 0 0 10px 0;
}
.elementor-widget-tabs .elementor-tabs .elementor-tabs-content-wrapper > .elementor-tab-mobile-title .ova-tab-icon {
display: inline-block;
vertical-align: middle;
line-height: 1;
}
.elementor-widget-tabs .elementor-tabs .elementor-tabs-content-wrapper > .elementor-tab-mobile-title .ova-tab-icon i {
display: inline-flex;
font-size: 25px;
padding: 5px;
border-radius: 50%;
color: var(--primary);
margin: 0 10px 0 0;
}
.elementor-widget-tabs .elementor-tabs .elementor-tabs-content-wrapper > .elementor-tab-mobile-title .title {
display: inline-block;
vertical-align: middle;
}
.elementor-widget-tabs .elementor-tabs .elementor-tabs-content-wrapper > .elementor-tab-mobile-title.elementor-active {
border: 2px solid var(--primary);
}
.elementor-widget-tabs .elementor-tabs .elementor-tabs-content-wrapper > .elementor-tab-mobile-title:before {
margin: 10px 0 0;
font-size: 14px;
float: right;
content: "\f199";
font-family: ovaicon !important;
font-style: normal;
font-weight: normal !important;
font-variant: normal;
text-transform: none;
line-height: inherit;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.elementor-widget-tabs .elementor-tabs .elementor-tabs-content-wrapper > .elementor-tab-mobile-title.elementor-active:before {
content: "\f19b";
}
.elementor-widget-toggle .elementor-toggle .elementor-toggle-item .elementor-tab-title .ova-toggle-title {
display: flex;
padding-right: 5px;
}
.elementor-widget-toggle .elementor-toggle .elementor-toggle-item .elementor-tab-title .ova-icon i {
line-height: 26px;
}
.elementor-widget-toggle .elementor-toggle .elementor-toggle-item .elementor-tab-title .ova-before-title {
position: relative;
}
.elementor-widget-toggle .elementor-toggle .elementor-toggle-item .elementor-tab-title .ova-before-title:before {
position: absolute;
content: "";
width: 4px;
height: 24px;
top: 50%;
left: -12px;
margin-top: -12px;
background-color: var(--secondary);
}
.elementor-widget-toggle .elementor-toggle .elementor-toggle-item .elementor-tab-title .ova-boxes-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 28px;
height: 28px;
background-color: #E9E9E9;
border-radius: 2px;
}
.elementor-widget-toggle .elementor-toggle .elementor-toggle-item .elementor-tab-title .ova-boxes-icon i {
vertical-align: middle;
}
.ova-menu-footer .menu {
list-style: none;
margin: 0;
padding: 0;
}
.ova-menu-footer .menu a {
text-decoration: none;
position: relative;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.ova-menu-footer .menu a:before {
position: absolute;
content: "";
width: 0%;
height: 1px;
left: 0px;
bottom: 0px;
transition: all 500ms ease;
background-color: var(--primary);
}
.ova-menu-footer .menu a:hover:before {
width: 100%;
}
.ova-menu-footer .menu .sub-menu {
list-style: none;
} .ova-section-max-width-1350 {
max-width: 1350px;
margin: auto;
}
.ova-contact-info {
display: flex;
align-items: center;
}
.ova-contact-info .circle {
border-radius: 50%;
background-image: -moz-linear-gradient(0deg, rgb(95, 45, 238) 0%, rgb(184, 130, 252) 100%);
background-image: -webkit-linear-gradient(0deg, rgb(95, 45, 238) 0%, rgb(184, 130, 252) 100%);
background-image: -ms-linear-gradient(0deg, rgb(95, 45, 238) 0%, rgb(184, 130, 252) 100%);
box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.1);
min-width: 91px;
height: 91px;
z-index: 2;
display: flex;
justify-content: center;
align-items: center;
margin-right: 12px;
}
.ova-contact-info .icon {
border-radius: 50%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-transition: all 500ms ease;
transition: all 500ms ease;
color: var(--primary);
}
.ova-contact-info .icon i {
display: inline-flex;
}
.ova-contact-info.template1 {
column-gap: 12px;
}
.ova-contact-info .contact .label {
font-size: 15px;
padding: 0;
font-weight: 500;
line-height: 1.2;
margin: 0 0 10px 0;
}
.ova-contact-info .contact .info {
list-style-type: none;
padding: 0;
margin: 0;
}
.ova-contact-info .contact .info .item {
color: var(--heading);
}
.ova-contact-info .contact .info .item a {
display: inline-block;
line-height: 1.4;
color: var(--heading);
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
position: relative;
}
.ova-contact-info .contact .info .item a:before {
position: absolute;
content: "";
width: 0%;
height: 1px;
left: 0px;
bottom: 0px;
transition: all 500ms ease;
background-color: var(--primary);
}
.ova-contact-info .contact .info .item a:hover {
color: var(--primary);
}
.ova-contact-info .contact .info .item a:hover:before {
width: 100%;
}
.ova-testimonial .owl-stage-outer {
padding: 45px 0;
overflow: visible !important;
}
.ova-testimonial .owl-item.active.active .item .line1 {
opacity: 1;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.ova-testimonial .owl-item.active.active .item .line2 {
opacity: 1;
transition: all 0.6s ease;
-moz-transition: all 0.6s ease;
-webkit-transition: all 0.6s ease;
-o-transition: all 0.6s ease;
}
.ova-testimonial .item {
position: relative;
}
.ova-testimonial .item .line1 {
opacity: 0;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
content: "";
width: calc(100% - 40px);
height: 20px;
position: absolute;
top: 100%;
left: 20px;
background: #FFFFFF;
box-shadow: 0px 6px 44px 0px rgba(181, 181, 234, 0.41);
border-radius: 0px 0px 10px 10px;
}
.ova-testimonial .item .line2 {
opacity: 0;
transition: all 0.6s ease;
-moz-transition: all 0.6s ease;
-webkit-transition: all 0.6s ease;
-o-transition: all 0.6s ease;
content: "";
width: calc(100% - 80px);
height: 20px;
position: absolute;
top: calc(100% + 15px);
left: 40px;
background: #FFFFFF;
box-shadow: 0px 6px 44px 0px rgba(181, 181, 234, 0.41);
border-radius: 0px 0px 10px 10px;
}
.ova-testimonial .slide-testimonials {
overflow: hidden;
padding: 45px 0 0 75px;
}
.ova-testimonial .slide-testimonials .client-info {
padding: 50px;
position: relative;
background-color: #fff;
}
@media (max-width: 600px) {
.ova-testimonial .slide-testimonials .client-info {
padding: 50px 20px;
}
}
.ova-testimonial .slide-testimonials .client-info .icon-quote {
text-align: right;
margin: -15px 0 40px 0;
}
@media (max-width: 600px) {
.ova-testimonial .slide-testimonials .client-info .icon-quote {
margin: 15px 0 15px 0;
}
}
.ova-testimonial .slide-testimonials .client-info .icon-quote i {
display: inline-flex;
color: #ffc600;
}
.ova-testimonial .slide-testimonials .client-info .info {
display: flex;
flex-wrap: wrap;
align-items: center;
position: absolute;
top: -65px;
left: -65px;
background-color: #fff !important;
border-radius: 60px;
background: linear-gradient(270deg, rgb(95, 45, 238) 0%, rgb(184, 130, 252) 100%);
background-size: 190px 20px;
background-repeat: repeat-x;
background-position: bottom;
z-index: 1;
}
@media (max-width: 400px) {
.ova-testimonial .slide-testimonials .client-info .info {
background-size: 190px 10px;
}
}
.ova-testimonial .slide-testimonials .client-info .info .client {
position: relative;
width: 120px;
height: 120px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 50%;
background: linear-gradient(0deg, rgb(95, 45, 238) 0%, rgb(184, 130, 252) 100%);
}
.ova-testimonial .slide-testimonials .client-info .info .client:before {
position: absolute;
border-radius: 50%;
content: "";
background-color: #fff;
width: 135px;
height: 135px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: -1;
}
@media (max-width: 400px) {
.ova-testimonial .slide-testimonials .client-info .info .client:before {
width: 90px;
height: 90px;
}
}
@media (max-width: 400px) {
.ova-testimonial .slide-testimonials .client-info .info .client {
width: 80px;
height: 80px;
}
}
.ova-testimonial .slide-testimonials .client-info .info .client img {
z-index: 2;
position: relative;
height: 110px;
width: 110px;
border-radius: 50%;
object-fit: cover;
border: #fff solid 5px;
}
@media (max-width: 400px) {
.ova-testimonial .slide-testimonials .client-info .info .client img {
width: 70px;
height: 70px;
}
}
.ova-testimonial .slide-testimonials .client-info .info .name-job {
padding: 20px 80px 20px 20px;
}
@media (max-width: 600px) {
.ova-testimonial .slide-testimonials .client-info .info .name-job {
padding: 20px;
}
}
.ova-testimonial .slide-testimonials .client-info .info .name-job p {
margin: 0;
}
.ova-testimonial .slide-testimonials .client-info .info .name-job .name {
font-size: 20px;
line-height: 1.2;
font-weight: 800;
color: var(--heading);
letter-spacing: 0.2px;
margin-bottom: 5px;
}
.ova-testimonial .slide-testimonials .client-info .info .name-job .job {
font-size: 14px;
line-height: 1.2;
font-weight: 600;
color: var(--primary);
}
.ova-testimonial .slide-testimonials .client-info p.ova-evaluate {
font-size: 18px;
font-weight: 500;
color: var(--text);
margin: 0;
}
.ova-testimonial .slide-testimonials .client-info .ova-bg-image {
position: absolute;
bottom: -18px;
left: -18px;
width: 86%;
height: 86%;
z-index: -1;
background-repeat: no-repeat;
}
.ova-testimonial .slide-testimonials .owl-dots {
text-align: center;
margin-top: 2px;
}
.ova-testimonial .slide-testimonials .owl-dots .owl-dot {
outline: none;
}
.ova-testimonial .slide-testimonials .owl-dots .owl-dot span {
width: 16px;
height: 4px;
margin: 5px;
background: #b3b0ba;
display: block;
-webkit-backface-visibility: visible;
transition: opacity 0.2s ease;
}
.ova-testimonial .slide-testimonials .owl-dots .owl-dot.active span {
background: var(--primary);
}
.ova-testimonial.ova-testimonial-template2 .slide-testimonials {
padding: 0;
}
.ova-testimonial.ova-testimonial-template2 .slide-testimonials .client-info {
background-color: transparent;
padding: 0;
}
.ova-testimonial.ova-testimonial-template2 .slide-testimonials .client-info .icon-quote {
margin: 10px 0 0 0;
text-align: left;
}
.ova-testimonial.ova-testimonial-template2 .slide-testimonials .client-info .info {
position: static;
background: transparent;
background-color: transparent !important;
margin-bottom: 45px;
}
.ova-testimonial.ova-testimonial-template2 .slide-testimonials .client-info .info .client:before {
content: none;
}
.ova-testimonial.ova-testimonial-template2 .slide-testimonials .client-info .ova-bg-image {
z-index: 1;
background-position: center right;
}
.ova-testimonial.ova-testimonial-template2 .owl-dots {
text-align: left;
}
.ova-testimonial.ova-testimonial-template3 .slide-testimonials {
padding: 0;
}
.ova-testimonial.ova-testimonial-template3 .slide-testimonials .owl-stage-outer {
padding: 0 0 15px 0;
}
.ova-testimonial.ova-testimonial-template3 .slide-testimonials .item {
background: linear-gradient(269.32deg, rgba(236, 110, 173, 0.51) 5.35%, rgba(79, 144, 201, 0) 56.32%, #3494E6 185.29%);
padding: 3px;
border-radius: 10px;
}
.ova-testimonial.ova-testimonial-template3 .slide-testimonials .client-info {
padding: 15px 20px;
border-radius: 8px;
}
.ova-testimonial.ova-testimonial-template3 .slide-testimonials .client-info .info {
position: relative;
top: 0;
left: 0;
background: transparent;
}
@media (max-width: 350px) {
.ova-testimonial.ova-testimonial-template3 .slide-testimonials .client-info .info {
flex-direction: column;
align-items: flex-start;
}
}
.ova-testimonial.ova-testimonial-template3 .slide-testimonials .client-info .info .client {
background: unset;
width: auto;
height: auto;
}
.ova-testimonial.ova-testimonial-template3 .slide-testimonials .client-info .info .client.no_after:after {
content: none;
}
.ova-testimonial.ova-testimonial-template3 .slide-testimonials .client-info .info .client:after {
content: "";
position: absolute;
top: -9px;
left: -9px;
width: 36px;
height: 36px;
border-top: 1px solid var(--primary);
border-left: 1px solid var(--primary);
z-index: -1;
}
.ova-testimonial.ova-testimonial-template3 .slide-testimonials .client-info .info .client img {
border: unset;
width: 81px;
height: 81px;
}
.ova-testimonial.ova-testimonial-template3 .slide-testimonials .client-info .info .client:before {
content: unset;
}
@media (max-width: 350px) {
.ova-testimonial.ova-testimonial-template3 .slide-testimonials .client-info .info .name-job {
padding-left: 0px;
padding-bottom: 0px;
}
}
.ova-testimonial.ova-testimonial-template3 .slide-testimonials .client-info .info .name-job .job {
color: #484855;
}
.ova-testimonial.ova-testimonial-template3 .slide-testimonials .client-info .ova-bg-image {
display: none;
}
.ova-testimonial.ova-testimonial-template3 .slide-testimonials .client-info .icon-quote {
text-align: left;
margin: 0;
margin-bottom: 11px;
}
.ova-testimonial.ova-testimonial-template3 .slide-testimonials .client-info .ova-evaluate {
margin-bottom: 17px;
}
.ova-testimonial.ova-testimonial-template3 .slide-testimonials .owl-nav {
bottom: 25px;
right: 16px;
}
.ova-testimonial.ova-testimonial-template4 .slide-testimonials {
padding: 67px 0px 0px 0px;
margin-top: -67px;
}
.ova-testimonial.ova-testimonial-template4 .slide-testimonials .client-info {
box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1019607843);
margin: 15px;
padding: 30px;
border: 1px solid transparent;
}
.ova-testimonial.ova-testimonial-template4 .slide-testimonials .client-info:hover {
border-color: #B879E9;
}
.ova-testimonial.ova-testimonial-template4 .slide-testimonials .client-info.background-default {
background-image: url(//safer4.com/wp-content/themes/infetech/assets/img/elementor/testimonial-bg.png);
background-position: top center;
background-repeat: no-repeat;
background-size: contain;
}
@media (max-width: 767px) {
.ova-testimonial.ova-testimonial-template4 .slide-testimonials .client-info {
padding: 20px;
}
}
.ova-testimonial.ova-testimonial-template4 .slide-testimonials .client-info .info {
display: block;
position: relative;
top: 0;
left: 0;
background: transparent;
background-color: transparent !important;
}
.ova-testimonial.ova-testimonial-template4 .slide-testimonials .client-info .info .client {
margin-bottom: 18px;
background: unset;
justify-content: start;
}
@media (max-width: 400px) {
.ova-testimonial.ova-testimonial-template4 .slide-testimonials .client-info .info .client {
height: 110px;
width: 110px;
}
}
.ova-testimonial.ova-testimonial-template4 .slide-testimonials .client-info .info .client img {
border: unset;
}
@media (max-width: 400px) {
.ova-testimonial.ova-testimonial-template4 .slide-testimonials .client-info .info .client img {
height: 110px;
width: 110px;
}
}
.ova-testimonial.ova-testimonial-template4 .slide-testimonials .client-info .info .client:before {
content: unset;
}
.ova-testimonial.ova-testimonial-template4 .slide-testimonials .client-info .info .name-job {
padding: 0;
display: flex;
justify-content: start;
align-items: center;
column-gap: 35px;
margin-bottom: 7px;
}
@media (max-width: 500px) {
.ova-testimonial.ova-testimonial-template4 .slide-testimonials .client-info .info .name-job {
flex-direction: column;
align-items: flex-start;
}
}
.ova-testimonial.ova-testimonial-template4 .slide-testimonials .client-info .info .name-job .name {
margin: 0;
font-weight: 700;
}
.ova-testimonial.ova-testimonial-template4 .slide-testimonials .client-info .icon-quote {
margin: 0;
}
.ova-testimonial.ova-testimonial-template4 .slide-testimonials .owl-nav {
top: 0;
right: 0;
}
.ova-testimonial.ova-testimonial-template4 .owl-stage-outer {
padding: 0;
}
.ova-testimonial.ova-testimonial-template5 .slide-testimonials {
padding: 20px;
}
@media (max-width: 767px) {
.ova-testimonial.ova-testimonial-template5 .slide-testimonials {
padding: 5px;
}
}
.ova-testimonial.ova-testimonial-template5 .slide-testimonials .owl-stage-outer {
padding: 5px 5px 45px 5px;
}
.ova-testimonial.ova-testimonial-template5 .slide-testimonials .client-info {
padding: 50px;
border-radius: 10px;
box-shadow: 0px 6px 26px 0px rgba(181, 181, 234, 0.41);
}
@media (max-width: 1024px) {
.ova-testimonial.ova-testimonial-template5 .slide-testimonials .client-info {
padding: 30px;
}
}
.ova-testimonial.ova-testimonial-template5 .slide-testimonials .client-info .info {
position: relative;
top: 0;
left: 0;
background: transparent;
}
@media (max-width: 350px) {
.ova-testimonial.ova-testimonial-template5 .slide-testimonials .client-info .info {
flex-direction: column;
align-items: flex-start;
}
}
.ova-testimonial.ova-testimonial-template5 .slide-testimonials .client-info .info .client {
background: unset;
width: auto;
height: auto;
}
.ova-testimonial.ova-testimonial-template5 .slide-testimonials .client-info .info .client img {
border: unset;
width: 53px;
height: 53px;
}
.ova-testimonial.ova-testimonial-template5 .slide-testimonials .client-info .info .client:before {
content: unset;
}
.ova-testimonial.ova-testimonial-template5 .slide-testimonials .client-info .info .name-job {
padding: 20px;
}
@media (max-width: 350px) {
.ova-testimonial.ova-testimonial-template5 .slide-testimonials .client-info .info .name-job {
padding-left: 0px;
padding-bottom: 0px;
}
}
.ova-testimonial.ova-testimonial-template5 .slide-testimonials .client-info .info .name-job .name {
font-size: 18px;
font-weight: 700;
}
.ova-testimonial.ova-testimonial-template5 .slide-testimonials .client-info .info .name-job .job {
color: var(--text);
}
.ova-testimonial.ova-testimonial-template5 .slide-testimonials .client-info .ova-bg-image {
display: none;
}
.ova-testimonial.ova-testimonial-template5 .slide-testimonials .client-info .icon-quote {
text-align: left;
margin: 0 0 15px 0;
}
.ova-testimonial.ova-testimonial-template5 .slide-testimonials .client-info .icon-quote i {
font-size: 15px;
color: #EF9917;
}
.ova-testimonial.ova-testimonial-template5 .slide-testimonials .client-info .ova-evaluate {
margin-bottom: 17px;
max-width: 93%;
}
@media (max-width: 1024px) {
.ova-testimonial.ova-testimonial-template5 .slide-testimonials .client-info .ova-evaluate {
max-width: 100%;
}
}
.ova-testimonial.ova-testimonial-template5 .slide-testimonials .owl-dots {
margin-top: 20px;
}
.ova-testimonial.ova-testimonial-template6 .slide-testimonials {
padding: 67px 0px 0px 0px;
margin-top: -67px;
}
.ova-testimonial.ova-testimonial-template6 .slide-testimonials .client-info {
box-shadow: 0px 4px 27px 0px rgba(81, 123, 186, 0.08);
margin: 12px;
padding: 45px 35px 27px 35px;
border-radius: 15px;
border: 1px solid transparent;
}
@media (max-width: 767px) {
.ova-testimonial.ova-testimonial-template6 .slide-testimonials .client-info {
padding: 20px;
}
}
.ova-testimonial.ova-testimonial-template6 .slide-testimonials .client-info:hover {
border-color: var(--secondary);
}
.ova-testimonial.ova-testimonial-template6 .slide-testimonials .client-info .info {
align-items: flex-start;
flex-wrap: nowrap;
position: relative;
top: 0;
left: 0;
background: transparent;
background-color: transparent !important;
}
.ova-testimonial.ova-testimonial-template6 .slide-testimonials .client-info .info:after, .ova-testimonial.ova-testimonial-template6 .slide-testimonials .client-info .info:before {
content: "";
position: absolute;
top: 25%;
width: 11px;
height: 21px;
background-color: var(--primary);
clip-path: polygon(0 55%, 100% 100%, 100% 0, 0 0);
}
@media (max-width: 1024px) {
.ova-testimonial.ova-testimonial-template6 .slide-testimonials .client-info .info:after, .ova-testimonial.ova-testimonial-template6 .slide-testimonials .client-info .info:before {
width: 7px;
height: 13px;
}
}
.ova-testimonial.ova-testimonial-template6 .slide-testimonials .client-info .info:before {
right: 18px;
}
@media (max-width: 1024px) {
.ova-testimonial.ova-testimonial-template6 .slide-testimonials .client-info .info:before {
right: 0;
}
}
.ova-testimonial.ova-testimonial-template6 .slide-testimonials .client-info .info:after {
right: 0;
}
@media (max-width: 1024px) {
.ova-testimonial.ova-testimonial-template6 .slide-testimonials .client-info .info:after {
right: -10px;
}
}
.ova-testimonial.ova-testimonial-template6 .slide-testimonials .client-info .info .client {
margin-bottom: 18px;
background: unset;
justify-content: start;
height: 80px;
width: 80px;
}
.ova-testimonial.ova-testimonial-template6 .slide-testimonials .client-info .info .client img {
border: unset;
height: 70px;
width: 70px;
}
.ova-testimonial.ova-testimonial-template6 .slide-testimonials .client-info .info .client:before {
content: unset;
}
.ova-testimonial.ova-testimonial-template6 .slide-testimonials .client-info .info .name-job {
padding: 14px;
}
.ova-testimonial.ova-testimonial-template6 .slide-testimonials .client-info .info .name-job .name {
font-weight: 600;
}
.ova-testimonial.ova-testimonial-template6 .slide-testimonials .client-info .info .name-job .job {
padding: 0 4px;
font-size: 16px;
}
.ova-testimonial.ova-testimonial-template6 .slide-testimonials .client-info p.ova-evaluate {
font-weight: normal;
margin-bottom: 20px;
padding-bottom: 30px;
border-bottom: 1px solid #EDEDED;
}
.ova-testimonial.ova-testimonial-template6 .slide-testimonials .client-info .date-and-star {
display: flex;
align-items: center;
justify-content: space-between;
}
.ova-testimonial.ova-testimonial-template6 .slide-testimonials .client-info .date {
color: var(--heading);
font-weight: 500;
}
.ova-testimonial.ova-testimonial-template6 .slide-testimonials .client-info .icon-quote {
margin: 0;
}
.ova-testimonial.ova-testimonial-template6 .slide-testimonials .client-info .icon-quote i {
font-size: 15px;
color: #EF9917;
}
.ova-testimonial.ova-testimonial-template6 .slide-testimonials .owl-nav {
display: none;
}
.ova-testimonial.ova-testimonial-template6 .slide-testimonials .owl-dots {
margin-top: 15px;
}
.ova-testimonial.ova-testimonial-template6 .owl-stage-outer {
padding: 0;
}
.ova-testimonial.ova-testimonial-template3 .slide-testimonials .owl-nav, .ova-testimonial.ova-testimonial-template4 .slide-testimonials .owl-nav {
position: absolute;
}
.ova-testimonial.ova-testimonial-template3 .slide-testimonials .owl-nav button, .ova-testimonial.ova-testimonial-template4 .slide-testimonials .owl-nav button {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
width: 42px;
height: 42px;
display: inline-flex;
justify-content: center;
align-items: center;
background-color: #fff;
border-radius: 50%;
margin: 0 20px 0 0;
border: 1px solid #B879E9;
margin-right: 7px;
}
.ova-testimonial.ova-testimonial-template3 .slide-testimonials .owl-nav button i, .ova-testimonial.ova-testimonial-template4 .slide-testimonials .owl-nav button i {
color: #B879E9;
font-size: 18px;
display: inline-flex;
}
.ova-testimonial.ova-testimonial-template3 .slide-testimonials .owl-nav button:hover, .ova-testimonial.ova-testimonial-template4 .slide-testimonials .owl-nav button:hover {
border: 1px solid #B879E9;
background-color: #B879E9;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.ova-testimonial.ova-testimonial-template3 .slide-testimonials .owl-nav button:hover i, .ova-testimonial.ova-testimonial-template4 .slide-testimonials .owl-nav button:hover i {
color: #fff;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.elementor-widget-container #ova-testimonial-nav-control button {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
width: 60px;
height: 60px;
display: inline-flex;
justify-content: center;
align-items: center;
background-color: #fff;
border: 1px solid rgba(0, 0, 0, 0.28);
border-radius: 50%;
margin: 0 20px 0 0;
}
.elementor-widget-container #ova-testimonial-nav-control button i {
font-size: 16px;
color: #1B1616;
display: inline-flex;
}
.elementor-widget-container #ova-testimonial-nav-control button:hover {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
background-color: var(--primary);
border: 1px solid var(--primary);
}
.elementor-widget-container #ova-testimonial-nav-control button:hover i {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
color: #fff;
}
.rtl .ova-testimonial.ova-testimonial-template3 .slide-testimonials .owl-nav {
right: unset;
left: 16px;
}
.rtl .ova-testimonial.ova-testimonial-template4 .slide-testimonials .owl-nav {
right: unset;
left: 0;
}
.rtl .ova-testimonial.ova-testimonial-template5 .slide-testimonials .client-info .icon-quote {
text-align: right;
}
.rtl .ova-testimonial.ova-testimonial-template6 .slide-testimonials .client-info .info:before {
left: 18px;
right: unset;
}
@media (max-width: 1024px) {
.rtl .ova-testimonial.ova-testimonial-template6 .slide-testimonials .client-info .info:before {
left: 0;
}
}
.rtl .ova-testimonial.ova-testimonial-template6 .slide-testimonials .client-info .info:after {
left: 0;
right: unset;
}
@media (max-width: 1024px) {
.rtl .ova-testimonial.ova-testimonial-template6 .slide-testimonials .client-info .info:after {
left: -10px;
}
}
.ova-testimonial-2 {
display: grid;
grid-template-columns: 10% 90%;
align-items: center;
}
@media (max-width: 830px) {
.ova-testimonial-2 {
grid-template-columns: 15% 85%;
align-items: flex-start;
}
}
@media (max-width: 520px) {
.ova-testimonial-2 {
grid-template-columns: 0% 100%;
}
}
.ova-testimonial-2 .slide-for .slick-track {
display: inline-block;
margin: 0;
width: 92px !important;
}
@media (max-width: 520px) {
.ova-testimonial-2 .slide-for .slick-track {
display: none;
}
}
.ova-testimonial-2 .slide-for .slick-active {
opacity: 1 !important;
}
.ova-testimonial-2 .slide-for .slick-current .small-img img {
transform: scale(1.1);
}
.ova-testimonial-2 .slide-for .small-img {
position: relative;
overflow: hidden;
border-radius: 50%;
}
.ova-testimonial-2 .slide-for .small-img img {
transform: scale(1);
display: block;
width: 92px;
height: 92px;
object-fit: cover;
border-radius: 50%;
}
@media (max-width: 1100px) {
.ova-testimonial-2 .slide-for .small-img img {
width: 60px;
height: 60px;
}
}
.ova-testimonial-2 .slide-testimonials-2 .client-info {
display: flex;
align-items: center;
justify-content: space-between;
}
@media (max-width: 830px) {
.ova-testimonial-2 .slide-testimonials-2 .client-info {
flex-direction: column;
}
}
.ova-testimonial-2 .slide-testimonials-2 .client-info .client {
position: relative;
border-radius: 50%;
}
@media (max-width: 830px) {
.ova-testimonial-2 .slide-testimonials-2 .client-info .client {
margin-bottom: 40px;
}
}
.ova-testimonial-2 .slide-testimonials-2 .client-info .client img {
display: block;
width: 408px;
height: 408px;
object-fit: cover;
border-radius: 50%;
}
@media (max-width: 1100px) {
.ova-testimonial-2 .slide-testimonials-2 .client-info .client img {
width: 300px;
height: 300px;
}
}
.ova-testimonial-2 .slide-testimonials-2 .client-info .client .icon {
position: absolute;
right: -39px;
top: 50%;
border-radius: 50%;
transform: translateY(-50%);
width: 78px;
height: 78px;
display: inline-flex;
justify-content: center;
align-items: center;
background-color: var(--secondary);
}
@media (max-width: 520px) {
.ova-testimonial-2 .slide-testimonials-2 .client-info .client .icon {
right: 0;
}
}
.ova-testimonial-2 .slide-testimonials-2 .client-info .client .icon i {
font-size: 25px;
color: #fff;
display: inline-flex;
}
.ova-testimonial-2 .slide-testimonials-2 .client-info .info {
flex: 0 0 50%;
}
.ova-testimonial-2 .slide-testimonials-2 .client-info .info .sub-title {
margin: 0 0 15px;
display: inline-block;
font-weight: 600;
font-size: 16px;
line-height: 1.2;
color: #b0a9c0;
position: relative;
padding-left: 30px;
}
.ova-testimonial-2 .slide-testimonials-2 .client-info .info .sub-title .underlined {
transition: all 0.3s ease;
position: absolute;
left: 0;
bottom: 50%;
transform: translateY(-50%);
display: inline-block;
vertical-align: middle;
margin-right: 12px;
width: 16px;
height: 2px;
background-color: #fff;
}
.ova-testimonial-2 .slide-testimonials-2 .client-info .info .title {
margin: 0;
font-weight: 800;
font-size: 45px;
line-height: 1.2;
color: #fff;
padding-bottom: 35px;
}
.ova-testimonial-2 .slide-testimonials-2 .client-info .info p.ova-evaluate {
margin: 0;
font-size: 18px;
font-weight: 500;
color: #b0a9c0;
padding-bottom: 38px;
}
.ova-testimonial-2 .slide-testimonials-2 .client-info .info .name-job {
display: flex;
align-items: center;
column-gap: 25px;
}
.ova-testimonial-2 .slide-testimonials-2 .client-info .info .name-job .name {
margin: 0;
font-size: 20px;
line-height: 1.2;
font-weight: 800;
color: #fff;
letter-spacing: 0.2px;
}
.ova-testimonial-2 .slide-testimonials-2 .client-info .info .name-job .job {
margin: 0;
font-size: 14px;
line-height: 1.2;
font-weight: 500;
color: var(--secondary);
}
.ova-testimonial-2 .slide-testimonials-2 .slick-prev, .ova-testimonial-2 .slide-testimonials-2 .slick-next {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
display: inline-flex;
justify-content: center;
align-items: center;
padding: 25px;
border: 1px solid var(--text);
border-radius: 50%;
top: unset;
bottom: 0;
z-index: 1;
}
@media (max-width: 1100px) {
.ova-testimonial-2 .slide-testimonials-2 .slick-prev, .ova-testimonial-2 .slide-testimonials-2 .slick-next {
bottom: -62px;
}
}
@media (max-width: 520px) {
.ova-testimonial-2 .slide-testimonials-2 .slick-prev, .ova-testimonial-2 .slide-testimonials-2 .slick-next {
bottom: -92px;
}
}
.ova-testimonial-2 .slide-testimonials-2 .slick-prev:before, .ova-testimonial-2 .slide-testimonials-2 .slick-next:before {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
font-family: ovaicon !important;
font-size: 14px;
color: var(--text);
}
.ova-testimonial-2 .slide-testimonials-2 .slick-prev:hover, .ova-testimonial-2 .slide-testimonials-2 .slick-next:hover {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
border: 1px solid #fff;
}
.ova-testimonial-2 .slide-testimonials-2 .slick-prev:hover:before, .ova-testimonial-2 .slide-testimonials-2 .slick-next:hover:before {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
color: #fff;
}
.ova-testimonial-2 .slide-testimonials-2 .slick-prev {
left: unset;
right: 62px;
}
.ova-testimonial-2 .slide-testimonials-2 .slick-prev:before {
content: "\f120";
line-height: 0;
}
.ova-testimonial-2 .slide-testimonials-2 .slick-next {
right: 0;
}
.ova-testimonial-2 .slide-testimonials-2 .slick-next:before {
content: "\f124";
line-height: 0;
}
.rtl .ova-testimonial-2 .slide-testimonials-2 .client-info .client .icon {
right: unset;
left: -39px;
}
.rtl .ova-testimonial-2 .slide-testimonials-2 .slick-prev {
left: 62px;
right: unset;
}
.rtl .ova-testimonial-2 .slide-testimonials-2 .slick-next {
right: unset;
left: 0;
}
.ova-testimonial-3 .owl-stage-outer {
padding: 20px 0;
}
.ova-testimonial-3 .owl-carousel .owl-stage-outer {
margin-right: -10px;
margin-left: -10px;
padding-left: 10px;
padding-right: 10px;
width: calc(100% + 20px);
}
.ova-testimonial-3 .slide-testimonials-3 .client_info {
text-align: center;
}
.ova-testimonial-3 .slide-testimonials-3 .client_info p.evaluate {
position: relative;
font-size: 28px;
line-height: 1.5;
margin: 0 0 35px 0;
padding: 0 0 35px 0;
border-bottom: 1px solid rgba(29, 23, 41, 0.1);
}
.ova-testimonial-3 .slide-testimonials-3 .client_info p.evaluate.has_quote:before, .ova-testimonial-3 .slide-testimonials-3 .client_info p.evaluate.has_quote:after {
content: "“";
}
.ova-testimonial-3 .slide-testimonials-3 .client_info p.evaluate:before, .ova-testimonial-3 .slide-testimonials-3 .client_info p.evaluate:after {
display: inline-flex;
font-size: 60px;
line-height: 1;
}
.ova-testimonial-3 .slide-testimonials-3 .client_info p.evaluate:after {
position: absolute;
bottom: 0;
margin-left: 12px;
}
.ova-testimonial-3 .slide-testimonials-3 .client_info .info {
display: inline-flex;
justify-content: flex-start;
align-items: flex-start;
column-gap: 20px;
}
.ova-testimonial-3 .slide-testimonials-3 .client_info .info .client {
position: relative;
}
.ova-testimonial-3 .slide-testimonials-3 .client_info .info .client img {
display: block;
min-width: 68px;
width: 68px;
height: 68px;
object-fit: cover;
}
.ova-testimonial-3 .slide-testimonials-3 .client_info .info .name-job {
text-align: left;
}
.ova-testimonial-3 .slide-testimonials-3 .client_info .info .name-job .name {
margin: 0;
font-size: 24px;
font-weight: 800;
line-height: 1.3;
}
.ova-testimonial-3 .slide-testimonials-3 .client_info .info .name-job .job {
margin: 0;
font-size: 14px;
}
.ova-testimonial-3 .slide-testimonials-3 .client_info .rating-icon {
display: inline-block;
font-size: 14px;
line-height: 1;
color: #fda300;
}
.ova-testimonial-3 .slide-testimonials-3 .owl-dots {
text-align: center;
margin-top: 30px;
}
.ova-testimonial-3 .slide-testimonials-3 .owl-dots .owl-dot {
outline: none;
}
.ova-testimonial-3 .slide-testimonials-3 .owl-dots .owl-dot span {
width: 16px;
height: 4px;
margin: 5px;
background: #b3b0ba;
display: block;
-webkit-backface-visibility: visible;
transition: opacity 0.2s ease;
}
.ova-testimonial-3 .slide-testimonials-3 .owl-dots .owl-dot.active span {
background: var(--primary);
}
.ova-testimonial-3.ova-testimonial-3-template1 .slide-testimonials-3 .client_info .info .client {
-webkit-mask-image: url(//safer4.com/wp-content/themes/infetech/assets/img/elementor/mask-avatar.png);
mask-image: url(//safer4.com/wp-content/themes/infetech/assets/img/elementor/mask-avatar.png);
-webkit-mask-size: contain;
mask-size: contain;
-webkit-mask-position: center;
mask-position: center;
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
}
.ova-testimonial-3.ova-testimonial-3-template2 .slide-testimonials-3 .client_info {
text-align: left;
}
.ova-testimonial-3.ova-testimonial-3-template2 .slide-testimonials-3 .client_info p.evaluate {
padding: 0;
font-size: 22px;
line-height: 1.7;
color: var(--heading);
border-bottom: none;
}
.ova-testimonial-3.ova-testimonial-3-template2 .slide-testimonials-3 .client_info p.evaluate:before, .ova-testimonial-3.ova-testimonial-3-template2 .slide-testimonials-3 .client_info p.evaluate:after {
content: none;
}
.ova-testimonial-3.ova-testimonial-3-template2 .slide-testimonials-3 .client_info .info {
align-items: center;
justify-content: space-between;
width: 100%;
padding: 16px 28px;
box-shadow: 0px 5px 10px 0px rgba(29, 23, 41, 0.1);
}
@media (max-width: 430px) {
.ova-testimonial-3.ova-testimonial-3-template2 .slide-testimonials-3 .client_info .info {
padding: 16px 20px;
}
}
.ova-testimonial-3.ova-testimonial-3-template2 .slide-testimonials-3 .client_info .info .avatar-info {
display: flex;
align-items: center;
column-gap: 20px;
}
.ova-testimonial-3.ova-testimonial-3-template2 .slide-testimonials-3 .client_info .info .client img {
min-width: 76px;
width: 76px;
height: 76px;
border-radius: 50%;
}
@media (max-width: 430px) {
.ova-testimonial-3.ova-testimonial-3-template2 .slide-testimonials-3 .client_info .info .client img {
min-width: 66px;
width: 66px;
height: 66px;
}
}
@media (max-width: 430px) {
.ova-testimonial-3.ova-testimonial-3-template2 .slide-testimonials-3 .client_info .info .name-job .name {
font-size: 22px;
}
}
.ova-testimonial-3.ova-testimonial-3-template2 .slide-testimonials-3 .client_info .info .name-job .job {
font-size: 16px;
}
.ova-testimonial-3.ova-testimonial-3-template2 .slide-testimonials-3 .client_info .info .quote-icon {
display: inline-flex;
margin-left: 40px;
font-size: 55px;
color: var(--primary);
transform: rotate(180deg);
}
@media (max-width: 430px) {
.ova-testimonial-3.ova-testimonial-3-template2 .slide-testimonials-3 .client_info .info .quote-icon {
display: none;
margin-left: 0;
}
}
.ova-testimonial-3.ova-testimonial-3-template3 .slide-testimonials-3 .client_info {
text-align: unset;
}
.ova-testimonial-3.ova-testimonial-3-template3 .slide-testimonials-3 .client_info p.evaluate {
font-size: 32px;
font-weight: 500;
color: var(--heading);
}
.ova-testimonial-3.ova-testimonial-3-template3 .slide-testimonials-3 .client_info p.evaluate:before, .ova-testimonial-3.ova-testimonial-3-template3 .slide-testimonials-3 .client_info p.evaluate:after {
color: var(--primary);
}
.ova-testimonial-3.ova-testimonial-3-template3 .slide-testimonials-3 .client_info p.evaluate:after {
margin-left: 35px;
}
.ova-testimonial-3.ova-testimonial-3-template3 .slide-testimonials-3 .client_info .info {
align-items: center;
}
.ova-testimonial-3.ova-testimonial-3-template3 .slide-testimonials-3 .client_info .info .client.no_before:before {
content: none;
}
.ova-testimonial-3.ova-testimonial-3-template3 .slide-testimonials-3 .client_info .info .client.no_after:after {
content: none;
}
.ova-testimonial-3.ova-testimonial-3-template3 .slide-testimonials-3 .client_info .info .client:before {
content: "";
position: absolute;
left: -2px;
bottom: -3px;
width: 100%;
height: 100%;
background-color: var(--primary);
border-radius: 50%;
z-index: -1;
}
.ova-testimonial-3.ova-testimonial-3-template3 .slide-testimonials-3 .client_info .info .client:after {
content: "";
position: absolute;
top: -9px;
left: -9px;
width: 36px;
height: 36px;
border-top: 1px solid var(--primary);
border-left: 1px solid var(--primary);
z-index: -1;
}
.ova-testimonial-3.ova-testimonial-3-template3 .slide-testimonials-3 .client_info .info .client img {
border-radius: 50%;
}
.ova-testimonial-3.ova-testimonial-3-template3 .slide-testimonials-3 .client_info .info .name-job .name {
font-size: 22px;
font-weight: 600;
}
.ova-testimonial-3.ova-testimonial-3-template3 .slide-testimonials-3 .client_info .info .name-job .job {
font-size: 16px;
font-weight: 500;
color: #8B92B8;
}
.ova-testimonial-3.ova-testimonial-3-template3 .slide-testimonials-3 .client_info .rating-icon {
position: absolute;
right: 0;
bottom: 38px;
font-size: 18px;
color: var(--primary);
}
@media (max-width: 767px) {
.ova-testimonial-3.ova-testimonial-3-template3 .slide-testimonials-3 .client_info .rating-icon {
position: static;
}
}
.ova-testimonial-3.ova-testimonial-3-template3 .slide-testimonials-3 .client_info .rating-icon i:not(:last-child) {
margin-right: 4px;
}
.ova-testimonial-3.ova-testimonial-3-template3 .slide-testimonials-3 .owl-dots {
text-align: unset;
}
.ova-testimonial-3.ova-testimonial-3-template3 .slide-testimonials-3 .owl-dots .owl-dot {
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 50%;
margin: 0 2px;
width: 21px;
padding: 0;
background: transparent;
border-color: transparent;
height: 21px;
}
.ova-testimonial-3.ova-testimonial-3-template3 .slide-testimonials-3 .owl-dots .owl-dot span {
width: 7px;
height: 7px;
background: #DDDBDB;
border-radius: inherit;
}
.ova-testimonial-3.ova-testimonial-3-template3 .slide-testimonials-3 .owl-dots .owl-dot.active {
border: 1px solid #DDDBDB;
}
.ova-testimonial-3.ova-testimonial-3-template3 .slide-testimonials-3 .owl-dots .owl-dot.active span {
opacity: 1;
background: var(--primary);
}
.elementor-widget-container #ova-testimonial-slider3-control button {
transition: all 0.3s ease;
width: 46px;
height: 46px;
display: inline-flex;
justify-content: center;
align-items: center;
background-color: #fff;
border: 2px solid #d5d4d7;
margin: 0 6px;
padding: 0;
border-radius: 50%;
}
.elementor-widget-container #ova-testimonial-slider3-control button i {
display: inline-flex;
font-size: 12px;
color: var(--text);
}
.elementor-widget-container #ova-testimonial-slider3-control button:hover {
transition: all 0.3s ease;
border: 2px solid var(--primary);
}
.elementor-widget-container #ova-testimonial-slider3-control button:hover i {
transition: all 0.3s ease;
color: var(--primary);
}
.rtl .ova-testimonial-3.ova-testimonial-3-template3 .slide-testimonials-3 .client_info .rating-icon {
right: unset;
left: 0;
}
.ova-testimonial-4.ova-testimonial-4-template2 .slide-testimonials-4 .client_info .w-client {
padding: 45px 35px 85px 35px;
box-shadow: 0 24px 48px rgba(0, 0, 0, 0.07);
}
.ova-testimonial-4.ova-testimonial-4-template2 .slide-testimonials-4 .client_info p.evaluate {
font-size: 18px;
line-height: 1.8;
font-weight: 500;
color: var(--text);
}
.ova-testimonial-4.ova-testimonial-4-template2 .slide-testimonials-4 .client_info .info .client {
margin-top: -40px;
margin-bottom: 20px;
}
.ova-testimonial-4.ova-testimonial-4-template2 .slide-testimonials-4 .client_info .info .client img {
min-width: 72px;
width: 72px;
height: 72px;
border: 6px solid #fff;
box-shadow: 0 4px 4px rgb(238, 238, 238);
}
.ova-testimonial-4.ova-testimonial-4-template2 .slide-testimonials-4 .client_info .info .name-job .name {
text-transform: capitalize;
letter-spacing: 0;
}
.ova-testimonial-4.ova-testimonial-4-template2 .slide-testimonials-4 .client_info .info .name-job .job {
font-size: 16px;
text-transform: capitalize;
letter-spacing: 0;
color: var(--primary);
}
.ova-testimonial-4 .slide-testimonials-4 .client_info {
margin: 0 auto;
text-align: center;
max-width: 800px;
}
.ova-testimonial-4 .slide-testimonials-4 .client_info p.evaluate {
position: relative;
margin: 30px 0 0 0;
font-size: 24px;
line-height: 1.5;
color: var(--heading);
}
.ova-testimonial-4 .slide-testimonials-4 .client_info .ova-rating {
margin-top: 20px;
}
.ova-testimonial-4 .slide-testimonials-4 .client_info .ova-rating .elementor-star-rating {
color: #ccd6df;
font-family: eicons;
display: inline-block;
}
.ova-testimonial-4 .slide-testimonials-4 .client_info .ova-rating .elementor-star-rating .elementor-star-full::before {
content: "\e934";
display: block;
font-size: inherit;
font-family: inherit;
position: absolute;
color: #FFBF48;
top: 0;
}
.ova-testimonial-4 .slide-testimonials-4 .client_info .ova-rating .elementor-star-rating i {
display: inline-block;
position: relative;
font-style: normal;
cursor: default;
line-height: 100%;
vertical-align: middle;
font-family: eicons;
}
.ova-testimonial-4 .slide-testimonials-4 .client_info .ova-rating .elementor-star-rating i::before {
display: block;
font-size: inherit;
font-family: inherit;
position: absolute;
overflow: hidden;
color: #FFBF48;
top: 0;
}
.ova-testimonial-4 .slide-testimonials-4 .client_info .ova-rating .elementor-star-rating i.elementor-star-1::before {
content: "\e934";
width: 10%;
}
.ova-testimonial-4 .slide-testimonials-4 .client_info .ova-rating .elementor-star-rating i.elementor-star-2::before {
content: "\e934";
width: 20%;
}
.ova-testimonial-4 .slide-testimonials-4 .client_info .ova-rating .elementor-star-rating i.elementor-star-3::before {
content: "\e934";
width: 30%;
}
.ova-testimonial-4 .slide-testimonials-4 .client_info .ova-rating .elementor-star-rating i.elementor-star-4::before {
content: "\e934";
width: 40%;
}
.ova-testimonial-4 .slide-testimonials-4 .client_info .ova-rating .elementor-star-rating i.elementor-star-5::before {
content: "\e934";
width: 50%;
}
.ova-testimonial-4 .slide-testimonials-4 .client_info .ova-rating .elementor-star-rating i.elementor-star-6::before {
content: "\e934";
width: 60%;
}
.ova-testimonial-4 .slide-testimonials-4 .client_info .ova-rating .elementor-star-rating i.elementor-star-7::before {
content: "\e934";
width: 70%;
}
.ova-testimonial-4 .slide-testimonials-4 .client_info .ova-rating .elementor-star-rating i.elementor-star-8::before {
content: "\e934";
width: 80%;
}
.ova-testimonial-4 .slide-testimonials-4 .client_info .ova-rating .elementor-star-rating i.elementor-star-9::before {
content: "\e934";
width: 90%;
}
.ova-testimonial-4 .slide-testimonials-4 .client_info .icon {
margin-top: 20px;
}
.ova-testimonial-4 .slide-testimonials-4 .client_info .icon i {
display: inline-flex;
font-size: 42px;
color: var(--primary);
}
.ova-testimonial-4 .slide-testimonials-4 .client_info .icon svg {
width: 42px;
height: 42px;
fill: var(--primary);
}
.ova-testimonial-4 .slide-testimonials-4 .client_info .icon svg path {
fill: var(--primary);
}
.ova-testimonial-4 .slide-testimonials-4 .client_info .info .client {
position: relative;
margin-bottom: 54px;
}
.ova-testimonial-4 .slide-testimonials-4 .client_info .info .client img {
display: inline-block;
vertical-align: middle;
min-width: 122px;
width: 122px;
height: 122px;
border-radius: 50%;
object-fit: cover;
}
.ova-testimonial-4 .slide-testimonials-4 .client_info .info .name-job .name {
margin: 0;
font-size: 18px;
font-weight: 700;
line-height: 1.3;
text-transform: uppercase;
letter-spacing: 1.5px;
}
.ova-testimonial-4 .slide-testimonials-4 .client_info .info .name-job .job {
margin: 0;
font-size: 12px;
text-transform: uppercase;
letter-spacing: 1.5px;
}
.ova-testimonial-4 .slide-testimonials-4 .owl-nav {
transition: all 0.3s ease;
display: flex;
justify-content: space-between;
position: absolute;
bottom: 50%;
transform: translateY(50%);
width: 100%;
}
@media (max-width: 1024px) {
.ova-testimonial-4 .slide-testimonials-4 .owl-nav {
display: none;
}
}
.ova-testimonial-4 .slide-testimonials-4 .owl-nav .owl-prev, .ova-testimonial-4 .slide-testimonials-4 .owl-nav .owl-next {
transition: all 0.3s ease;
display: flex;
justify-content: center;
align-items: center;
width: 52px;
height: 52px;
background-color: #D9D9D9;
border-radius: 50%;
font-size: 40px;
color: var(--heading);
}
.ova-testimonial-4 .slide-testimonials-4 .owl-nav .owl-prev:hover, .ova-testimonial-4 .slide-testimonials-4 .owl-nav .owl-next:hover {
transition: all 0.3s ease;
background-color: var(--primary);
color: #D9D9D9;
}
.ova-testimonial-4 .slide-testimonials-4 .owl-nav .owl-prev i, .ova-testimonial-4 .slide-testimonials-4 .owl-nav .owl-next i {
position: relative;
display: inline-flex;
}
.ova-testimonial-4 .slide-testimonials-4 .owl-nav .owl-prev i {
left: 20px;
}
.ova-testimonial-4 .slide-testimonials-4 .owl-nav .owl-next i {
right: 20px;
}
.ova-testimonial-4 .slide-testimonials-4 .owl-dots {
text-align: center;
margin-top: 45px;
}
.ova-testimonial-4 .slide-testimonials-4 .owl-dots .owl-dot {
outline: none;
}
.ova-testimonial-4 .slide-testimonials-4 .owl-dots .owl-dot span {
width: 16px;
height: 4px;
margin: 5px;
background: #b3b0ba;
display: block;
-webkit-backface-visibility: visible;
transition: opacity 0.2s ease;
}
.ova-testimonial-4 .slide-testimonials-4 .owl-dots .owl-dot.active span {
background: var(--primary);
}
.ova-heading .sub-title {
margin: 0 0 15px;
display: inline-block;
font-weight: 600;
font-size: 16px;
line-height: 1.2;
color: var(--primary);
position: relative;
padding-left: 30px;
}
.ova-heading .sub-title .underlined {
transition: all 0.3s ease;
position: absolute;
left: 0;
bottom: 50%;
transform: translateY(-50%);
display: inline-block;
vertical-align: middle;
margin-right: 12px;
width: 16px;
height: 2px;
background-color: var(--primary);
}
.ova-heading .title {
margin: 0;
font-weight: 800;
font-size: 45px;
line-height: 1.2;
}
.ova-heading .title a {
color: var(--heading);
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.ova-heading .title a:hover {
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
color: var(--secondary);
}
.ova-heading .title span.word {
color: var(--primary);
}
.ova-heading .description {
font-size: 16px;
font-weight: 400;
margin-bottom: 0;
color: var(--text);
margin-top: 12px;
}
.ova-heading .title, .ova-heading .description {
white-space: pre-line;
}
@media (max-width: 767px) {
.ova-heading .title, .ova-heading .description {
white-space: normal;
}
}
.mc4wp-response {
color: red;
}
.mc4wp-response a {
color: red;
}
.ova-subscribe-form-wrapper .ova-subscribe-form {
position: relative;
display: flex;
}
.ova-subscribe-form-wrapper .ova-subscribe-form input[type=email] {
padding: 14px 14px 14px 24px;
width: 100%;
border: none;
border-radius: 0;
font-family: var(--primary-font);
font-size: 14px;
line-height: 1;
font-weight: 500;
color: var(--heading);
margin-bottom: 8px;
}
.ova-subscribe-form-wrapper .ova-subscribe-form input[type=email]::placeholder {
font-family: var(--primary-font);
font-size: 14px;
line-height: 1;
font-weight: 500;
color: var(--heading);
}
.ova-subscribe-form-wrapper .ova-subscribe-form input[type=email]:-webkit-autofill {
transition-delay: 600s;
}
.ova-subscribe-form-wrapper .ova-subscribe-form button[type=submit] {
display: inline-flex;
justify-content: center;
align-items: center;
width: 52px;
height: 52px;
border-radius: 0;
border: none;
background-color: var(--primary);
}
.ova-subscribe-form-wrapper .ova-subscribe-form button[type=submit] i {
display: inline-flex;
font-size: 18px;
color: #fff;
}
.ova-subscribe-form-wrapper .ova-subscribe-form button[type=submit] .text {
display: none;
}
.ova-subscribe-form-wrapper label {
color: #B0A9C0;
display: inline-flex;
gap: 8px;
line-height: 1.6;
}
.ova-subscribe-form-wrapper label input[type=radio] {
margin-top: 5px;
display: inline-block;
vertical-align: middle;
min-width: 16px;
width: 16px;
height: 16px;
}
.ova-subscribe-form-wrapper label a {
color: #B0A9C0;
}
.version-new .ova-subscribe-form {
flex-direction: column;
margin-bottom: 20px;
}
.version-new .ova-subscribe-form input[type=email] {
border-radius: 38px;
background-color: #0F142E;
color: #8B92B8;
margin-bottom: 20px;
}
.version-new .ova-subscribe-form input[type=email]::placeholder {
color: #8B92B8;
opacity: 1;
}
.version-new .ova-subscribe-form input[type=email]:-ms-input-placeholder {
color: #8B92B8;
}
.version-new .ova-subscribe-form button[type=submit] {
background-color: var(--primary);
border-radius: 38px;
width: 100%;
}
.version-new .ova-subscribe-form button[type=submit]:hover {
background-color: #fff;
}
.version-new .ova-subscribe-form button[type=submit] i {
display: none;
}
.version-new .ova-subscribe-form button[type=submit] .text {
display: inline-block;
}
.version-new label {
font-weight: 500;
color: #fff;
}
.version-new label a {
color: #fff;
}
.version-2 .ova-subscribe-form {
margin-bottom: 8px;
border: 1px solid #fff;
}
.version-2 .ova-subscribe-form button[type=submit] {
background-color: transparent;
height: 53px;
}
.version-2 .ova-subscribe-form button[type=submit] i {
color: #B882FC;
}
.version-2 .ova-subscribe-form input[type=email] {
margin-bottom: 0;
background: none;
color: #fff;
}
.version-2 .ova-subscribe-form input[type=email]::placeholder {
color: #fff;
opacity: 1;
}
.version-2 .ova-subscribe-form input[type=email]:-ms-input-placeholder {
color: #fff;
}
.version-3 .ova-subscribe-form {
display: block;
margin-bottom: 25px;
}
.version-3 .ova-subscribe-form input[type=email] {
font-size: 16px;
border-radius: 6px;
padding: 17px 17px 17px 24px;
margin-bottom: 0;
}
.version-3 .ova-subscribe-form input[type=email]::placeholder {
font-size: 16px;
opacity: 1;
}
.version-3 .ova-subscribe-form button[type=submit] {
position: absolute;
top: 50%;
right: 15px;
transform: translateY(-50%);
border: 2px solid transparent;
width: auto;
height: auto;
border-radius: 6px;
}
.version-3 .ova-subscribe-form button[type=submit]:hover {
background-color: #fff;
border-color: var(--primary);
}
.version-3 .ova-subscribe-form button[type=submit] i {
display: none;
}
.version-3 .ova-subscribe-form button[type=submit] .text {
display: inline-block;
font-weight: 500;
line-height: 1;
}
.version-3 label {
font-weight: 500;
color: #fff;
}
.version-3 label a {
color: #fff;
}
.version-3b .ova-subscribe-form {
display: block;
margin-bottom: 15px;
}
.version-3b .ova-subscribe-form input[type=email] {
font-size: 16px;
border-radius: 8px;
margin-bottom: 0;
}
.version-3b .ova-subscribe-form input[type=email]::placeholder {
font-size: 16px;
}
.version-3b .ova-subscribe-form button[type=submit] {
position: absolute;
top: 50%;
right: 5px;
transform: translateY(-50%);
border: 2px solid transparent;
width: 46px;
height: 46px;
border-radius: 12px;
}
.version-3b .ova-subscribe-form button[type=submit]:hover {
background-color: var(--heading);
}
.version-3b .ova-subscribe-form button[type=submit] .text {
display: none;
}
.version-3b label {
font-weight: 500;
color: rgba(255, 255, 255, 0.5);
}
.version-3b label a {
color: rgba(255, 255, 255, 0.5);
}
.ova-subscribe-form-new .ova-subscribe-form {
margin-bottom: 10px;
}
.ova-subscribe-form-new .ova-subscribe-form input[type=email] {
border-radius: 6px;
background-color: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.1);
color: #8B92B8;
}
.ova-subscribe-form-new .ova-subscribe-form input[type=email]::placeholder {
color: rgba(255, 255, 255, 0.5);
opacity: 1;
}
.ova-subscribe-form-new .ova-subscribe-form input[type=email]:-ms-input-placeholder {
color: rgba(255, 255, 255, 0.5);
}
.ova-subscribe-form-new .ova-subscribe-form button[type=submit] {
margin: 0 20px;
background-color: var(--primary);
border-radius: 6px;
width: auto;
}
@media (max-width: 767px) {
.ova-subscribe-form-new .ova-subscribe-form button[type=submit] {
margin: 0;
}
}
.ova-subscribe-form-new .ova-subscribe-form button[type=submit]:hover {
background-color: #fff;
}
.ova-subscribe-form-new .ova-subscribe-form button[type=submit] i {
display: none;
}
.ova-subscribe-form-new .ova-subscribe-form button[type=submit] .text {
display: inline-block;
}
.ova-subscribe-form-new label {
font-weight: 500;
color: rgba(255, 255, 255, 0.5);
}
.ova-subscribe-form-new label a {
color: rgba(255, 255, 255, 0.5);
}
.ova-subscribe-form-2 .ova-subscribe-form {
border-bottom: 1.5px solid rgba(255, 255, 255, 0.1);
margin-bottom: 25px;
}
.ova-subscribe-form-2 .ova-subscribe-form input[type=email] {
background-color: transparent;
font-size: 16px;
color: #fff;
padding: 0 0 0 2px;
margin-bottom: 0;
}
.ova-subscribe-form-2 .ova-subscribe-form input[type=email]::placeholder {
font-size: 16px;
color: #fff;
opacity: 1;
}
.ova-subscribe-form-2 .ova-subscribe-form button[type=submit] {
background-color: transparent;
padding: 16px 0;
justify-content: flex-end;
}
.ova-subscribe-form-2 label {
font-weight: 500;
color: #fff;
}
.ova-subscribe-form-2 label a {
color: #fff;
}
.ova-subscribe-form-3 .ova-subscribe-form {
display: block;
margin-bottom: 25px;
}
.ova-subscribe-form-3 .ova-subscribe-form input[type=email] {
font-size: 16px;
padding: 23px 30px 21px;
border: 1px solid rgba(29, 23, 41, 0.1019607843);
margin-bottom: 0;
}
.ova-subscribe-form-3 .ova-subscribe-form input[type=email]::placeholder {
font-size: 16px;
opacity: 1;
}
@media (max-width: 767px) {
.ova-subscribe-form-3 .ova-subscribe-form input[type=email] {
padding: 13px 30px 11px 20px;
}
}
.ova-subscribe-form-3 .ova-subscribe-form button[type=submit] {
position: absolute;
top: 50%;
right: 5px;
transform: translateY(-50%);
border: 2px solid transparent;
width: auto;
height: auto;
padding: 22px 48px 20px;
}
@media (max-width: 767px) {
.ova-subscribe-form-3 .ova-subscribe-form button[type=submit] {
padding: 12px 30px 10px;
}
}
.ova-subscribe-form-3 .ova-subscribe-form button[type=submit]:hover {
background-color: #fff;
border-color: var(--primary);
}
.ova-subscribe-form-3 .ova-subscribe-form button[type=submit] i {
display: none;
}
.ova-subscribe-form-3 .ova-subscribe-form button[type=submit] .text {
display: inline-block;
font-size: 14px;
font-weight: 700;
line-height: 1;
text-transform: uppercase;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.aborted .wpcf7-response-output {
border-color: red;
color: red;
}
.wpcf7 form.sent .wpcf7-response-output {
border-color: var(--primary);
}
.ova-ctfrom7 .ova_center_wrap {
text-align: center;
}
.ova-ctfrom7 .form-contact-us p {
margin: 0;
}
.ova-ctfrom7 .form-contact-us .form-left, .ova-ctfrom7 .form-contact-us .form-right {
display: inline-flex;
display: -webkit-inline-flex;
column-gap: 20px;
width: 100%;
}
@media screen and (max-width: 460px) {
.ova-ctfrom7 .form-contact-us .form-left, .ova-ctfrom7 .form-contact-us .form-right {
flex-direction: column;
}
}
.ova-ctfrom7 .form-contact-us input[type=text], .ova-ctfrom7 .form-contact-us input[type=email], .ova-ctfrom7 .form-contact-us input[type=tel], .ova-ctfrom7 .form-contact-us textarea {
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
width: 100%;
background-color: #fff;
box-sizing: border-box;
border-radius: 0;
padding: 25px 50px;
outline: none;
line-height: 19px;
border: none;
caret-color: var(--primary);
}
.ova-ctfrom7 .form-contact-us input[type=text]::placeholder, .ova-ctfrom7 .form-contact-us input[type=email]::placeholder, .ova-ctfrom7 .form-contact-us input[type=tel]::placeholder, .ova-ctfrom7 .form-contact-us textarea::placeholder {
opacity: 0.7;
font-weight: 500;
font-size: 16px;
line-height: 19px;
color: var(--text);
font-feature-settings: "pnum" on, "lnum" on;
}
.ova-ctfrom7 .form-contact-us input[type=text]:focus, .ova-ctfrom7 .form-contact-us input[type=email]:focus, .ova-ctfrom7 .form-contact-us input[type=tel]:focus, .ova-ctfrom7 .form-contact-us textarea:focus {
transition: all 0.3s ease;
font-weight: 600;
border-color: var(--primary);
border-width: 0 0 1.5px 0;
}
.ova-ctfrom7 .form-contact-us input[type=text]:focus::placeholder, .ova-ctfrom7 .form-contact-us input[type=email]:focus::placeholder, .ova-ctfrom7 .form-contact-us input[type=tel]:focus::placeholder, .ova-ctfrom7 .form-contact-us textarea:focus::placeholder {
font-weight: 500;
}
.ova-ctfrom7 .form-contact-us textarea {
height: 185px;
resize: none;
}
.ova-ctfrom7 .form-contact-us .ova_wrap_input {
width: 100%;
margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
.ova-ctfrom7 .form-contact-us .name-info .wpcf7-form-control-wrap, .ova-ctfrom7 .form-contact-us .email .wpcf7-form-control-wrap, .ova-ctfrom7 .form-contact-us .message .wpcf7-form-control-wrap {
width: 100%;
}
.ova-ctfrom7 .form-contact-us .name-info .wpcf7-form-control-wrap input, .ova-ctfrom7 .form-contact-us .name-info .wpcf7-form-control-wrap textarea, .ova-ctfrom7 .form-contact-us .email .wpcf7-form-control-wrap input, .ova-ctfrom7 .form-contact-us .email .wpcf7-form-control-wrap textarea, .ova-ctfrom7 .form-contact-us .message .wpcf7-form-control-wrap input, .ova-ctfrom7 .form-contact-us .message .wpcf7-form-control-wrap textarea {
width: 100%;
}
}
.ova-ctfrom7 .form-contact-us .ova-submit {
position: relative;
overflow: hidden;
margin-top: 20px;
background-color: var(--primary);
z-index: 1;
}
.ova-ctfrom7 .form-contact-us .ova-submit:after {
position: absolute;
content: "";
top: 0;
left: 0;
right: 0;
height: 100%;
background-color: var(--heading);
-webkit-transition-delay: 0.1s;
transition-delay: 0.1s;
-webkit-transition-timing-function: ease-in-out;
transition-timing-function: ease-in-out;
-webkit-transition-duration: 0.4s;
transition-duration: 0.4s;
-webkit-transition-property: all;
transition-property: all;
opacity: 1;
-webkit-transform-origin: top;
transform-origin: top;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
-webkit-transform: scaleY(0);
transform: scaleY(0);
z-index: -1;
}
.ova-ctfrom7 .form-contact-us .ova-submit:hover:after {
-webkit-transform: scaleY(1);
transform: scaleY(1);
}
.ova-ctfrom7 .form-contact-us .ova-submit input[type=submit] {
position: relative;
width: 100%;
padding: 24px;
font-size: 14px;
line-height: 1.2;
font-weight: 600;
text-transform: uppercase;
background-color: transparent;
letter-spacing: 0.16em;
color: #fff;
border: unset;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
z-index: 1;
}
.ova-ctfrom7 .form-contact-us .ova-submit .wpcf7-spinner {
position: absolute;
top: 50%;
margin: 0 10px;
}
@media screen and (max-width: 767px) {
.ova-ctfrom7 .form-contact-us .ajax-loader {
margin-top: -24px;
display: block;
}
}
.ova-ctfrom7 .form-contact-us.ct17 input[type=text], .ova-ctfrom7 .form-contact-us.ct17 input[type=email], .ova-ctfrom7 .form-contact-us.ct17 input[type=tel], .ova-ctfrom7 .form-contact-us.ct17 textarea, .ova-ctfrom7 .form-contact-us.ct17 select {
font-weight: 500;
background-color: #fff;
border-radius: 5px;
padding: 17px 21px;
border: 1px solid #E4E4E4;
}
.ova-ctfrom7 .form-contact-us.ct17 input[type=text]::placeholder, .ova-ctfrom7 .form-contact-us.ct17 input[type=email]::placeholder, .ova-ctfrom7 .form-contact-us.ct17 input[type=tel]::placeholder, .ova-ctfrom7 .form-contact-us.ct17 textarea::placeholder, .ova-ctfrom7 .form-contact-us.ct17 select::placeholder {
opacity: 1;
}
.ova-ctfrom7 .form-contact-us.ct17 textarea {
height: 125px;
}
.ova-ctfrom7 .form-contact-us.ct17 .ova-submit {
display: inline-block;
margin-top: 12px;
border-radius: 4px;
}
.ova-ctfrom7 .form-contact-us.ct17 .ova-submit input[type=submit] {
padding: 24px 40px;
font-size: 16px;
border-radius: 4px;
text-transform: capitalize;
letter-spacing: 0;
}
.ova-ctfrom7 .form-faq input[type=text], .ova-ctfrom7 .form-faq input[type=email], .ova-ctfrom7 .form-faq textarea {
transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-webkit-transition: all 0.3s linear;
-o-transition: all 0.3s linear;
width: 100%;
background-color: transparent;
border-radius: 0;
outline: none;
padding: 0 30px 18px 0;
margin: 0 0 35px 0;
border-width: 0 0 2px 0;
border-style: solid;
border-color: rgba(29, 23, 41, 0.1019607843);
caret-color: var(--primary);
font-size: 18px;
line-height: 1;
font-weight: 600;
color: var(--heading);
}
.ova-ctfrom7 .form-faq input[type=text]::placeholder, .ova-ctfrom7 .form-faq input[type=email]::placeholder, .ova-ctfrom7 .form-faq textarea::placeholder {
opacity: 1;
color: var(--heading);
}
.ova-ctfrom7 .form-faq input[type=text]:focus, .ova-ctfrom7 .form-faq input[type=email]:focus, .ova-ctfrom7 .form-faq textarea:focus {
transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-webkit-transition: all 0.3s linear;
-o-transition: all 0.3s linear;
border-color: var(--heading);
}
.ova-ctfrom7 .form-faq .name, .ova-ctfrom7 .form-faq .email, .ova-ctfrom7 .form-faq .message {
position: relative;
}
.ova-ctfrom7 .form-faq .name i, .ova-ctfrom7 .form-faq .email i, .ova-ctfrom7 .form-faq .message i {
position: absolute;
top: 0;
right: 0;
font-size: 18px;
color: var(--primary);
}
.ova-ctfrom7 .form-faq .wpcf7-not-valid-tip {
margin: -30px 0 0 0;
}
.ova-ctfrom7 .form-faq textarea {
height: 125px;
margin: 5px 0 30px 0;
}
.ova-ctfrom7 .form-faq p {
margin: 0;
}
.ova-ctfrom7 .form-faq .ova-submit {
display: inline-block;
position: relative;
background-color: var(--primary);
z-index: 1;
}
.ova-ctfrom7 .form-faq .ova-submit:hover:before {
transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-webkit-transition: all 0.3s linear;
-o-transition: all 0.3s linear;
transform: scaleY(1);
}
.ova-ctfrom7 .form-faq .ova-submit:before {
transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-webkit-transition: all 0.3s linear;
-o-transition: all 0.3s linear;
position: absolute;
content: "";
top: 0;
left: 0;
right: 0;
height: 100%;
width: 100%;
background-color: var(--heading);
transform-origin: top;
transform: scaleY(0);
transform-style: preserve-3d;
z-index: -1;
}
.ova-ctfrom7 .form-faq .ova-submit input[type=submit] {
font-size: 14px;
font-weight: 700;
line-height: 1.2;
text-transform: uppercase;
color: #fff;
padding: 23px 50px 19px;
border-radius: 0;
border: none;
z-index: 1;
}
.ova-ctfrom7 .form-faq .ova-submit .wpcf7-spinner {
position: absolute;
}
.ova-contact-page {
position: relative;
}
.ova-contact-page p {
margin: 0;
}
.ova-contact-page input, .ova-contact-page textarea {
font-size: 16px;
font-weight: 500;
font-family: var(--primary-font);
}
.ova-contact-page input::placeholder, .ova-contact-page textarea::placeholder {
color: var(--text);
opacity: 1;
}
.ova-contact-page input:-ms-input-placeholder, .ova-contact-page textarea:-ms-input-placeholder {
color: var(--text);
}
.ova-contact-page input::-ms-input-placeholder, .ova-contact-page textarea::-ms-input-placeholder {
color: var(--text);
}
.ova-contact-page i {
position: absolute;
top: 28px;
display: flex;
left: 0%;
transform: translate(20px, -50%);
}
.ova-contact-page .ova-text {
position: relative;
overflow: hidden;
margin-bottom: 30px;
}
.ova-contact-page .ova-phone {
position: relative;
overflow: hidden;
margin-bottom: 30px;
}
.ova-contact-page input {
width: 100%;
border-color: #3494E6;
padding: 17px 20px;
border-radius: 4px;
}
.ova-contact-page .ova-textarea {
margin-bottom: 30px;
position: relative;
}
.ova-contact-page .ova-textarea i {
position: absolute;
top: 30px;
left: 0%;
transform: translate(20px, -50%);
}
.ova-contact-page .ova-textarea textarea {
max-height: 145px;
width: 100%;
border-color: #3494E6;
padding: 17px 15px;
padding-left: 20px;
border-radius: 4px;
}
@media (max-width: 479px) {
.ova-contact-page .ova-textarea textarea {
padding-left: 20px;
}
}
.ova-contact-page .ova-submit button {
position: relative;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
padding: 10px 20px;
font-size: 16px;
font-weight: 400;
text-transform: capitalize;
font-family: var(--primary-font);
border: unset;
border-radius: 4px;
overflow: hidden;
background: linear-gradient(279.42deg, rgba(101, 45, 143, 0) -71.91%, rgba(0, 82, 248, 0.51) -28.36%, #B879E9 60.31%);
}
.ova-contact-page .ova-submit button span {
position: relative;
z-index: 1;
}
.ova-contact-page .ova-submit button:before {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
content: "";
width: 100%;
height: 0%;
display: block;
position: absolute;
z-index: 0;
top: 0;
left: 0;
background: linear-gradient(95.02deg, #054DF7 -2.32%, #5E53E1 49.68%, #A880E7 92.23%);
}
.ova-contact-page .ova-submit button:hover {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
color: #FFFFFF;
}
.ova-contact-page .ova-submit button:hover:before {
height: 100%;
}
.rtl .version-3 .ova-subscribe-form button[type=submit] {
right: unset;
left: 15px;
}
.rtl .version-3b .ova-subscribe-form button[type=submit] {
right: unset;
left: 5px;
}
.ova-icon-list {
display: grid;
grid-gap: 40px;
}
.ova-icon-list.two_column {
grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) {
.ova-icon-list.two_column {
grid-template-columns: auto;
}
}
.ova-icon-list .item {
display: flex;
align-items: center;
}
.ova-icon-list .item:hover .icon {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
.ova-icon-list .item:hover .icon i {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.ova-icon-list .item .icon {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
position: relative;
display: inline-block;
border-radius: 50%;
width: 52px;
height: 52px;
background-color: #f8f2ff;
}
.ova-icon-list .item .icon i {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
position: relative;
right: -20px;
top: 10px;
font-size: 64px;
line-height: 1;
color: var(--primary);
}
.ova-icon-list .item .title {
margin: 0;
font-weight: 600;
font-size: 20px;
line-height: 1.4;
}
.ova-icon-list .item .title a {
color: var(--heading);
}
.ova-icon-list.ova-icon-list-template1 .item {
column-gap: 50px;
}
.ova-icon-list.ova-icon-list-template2 .item {
column-gap: 30px;
}
.ova-icon-list.ova-icon-list-template2 .item:hover .text-number-wrapper .text-number {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.ova-icon-list.ova-icon-list-template2 .item .text-number-wrapper {
display: flex;
justify-content: center;
align-items: center;
min-width: 64px;
height: 64px;
background-image: -moz-linear-gradient(0deg, rgb(95, 45, 238) 0%, rgb(184, 130, 252) 100%);
background-image: -webkit-linear-gradient(0deg, rgb(95, 45, 238) 0%, rgb(184, 130, 252) 100%);
background-image: -ms-linear-gradient(0deg, rgb(95, 45, 238) 0%, rgb(184, 130, 252) 100%);
border-radius: 50%;
}
.ova-icon-list.ova-icon-list-template2 .item .text-number-wrapper .text-number {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
display: flex;
justify-content: center;
align-items: center;
min-width: 54px;
height: 54px;
background-color: #fff;
font-size: 16px;
font-weight: 600;
color: var(--primary);
border-radius: 50%;
}
.ova-icon-list.ova-icon-list-template2 .item .text {
margin: 0;
font-weight: 500;
}
.ova-icon-list.ova-icon-list-template3 .item {
gap: 40px;
}
.ova-icon-list.ova-icon-list-template3 .item:hover .text-number-wrapper .text-number {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
color: var(--primary);
}
.ova-icon-list.ova-icon-list-template3 .item:hover .info {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
border-top: 2px solid var(--primary);
}
.ova-icon-list.ova-icon-list-template3 .item .text-number-wrapper {
display: flex;
justify-content: center;
align-items: center;
}
.ova-icon-list.ova-icon-list-template3 .item .text-number-wrapper .text-number {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
font-size: 43px;
font-weight: 600;
color: rgba(126, 142, 160, 0.26);
}
.ova-icon-list.ova-icon-list-template3 .item .text {
margin: 0;
font-weight: 500;
}
.ova-icon-list.ova-icon-list-template3 .item .info {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
padding: 33px;
background-color: #fff;
box-shadow: 0px 19px 31px 0px rgba(0, 0, 0, 0.06);
border-radius: 0 0 10px 10px;
border-top: 2px solid #fff;
}
.ova-icon-list.ova-icon-list-template3 .item .title {
margin: 0 0 10px 0;
}
.ova-icon-list.ova-icon-list-template4 .item {
column-gap: 20px;
width: fit-content;
padding: 9px 18px;
background-color: #fff;
box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.06);
border-radius: 25px;
}
.ova-icon-list.ova-icon-list-template4 .item .icon {
width: auto;
height: auto;
background-color: transparent;
line-height: 1;
}
.ova-icon-list.ova-icon-list-template4 .item .icon i {
right: 0;
top: 0;
font-size: 18px;
}
.ova-icon-list.ova-icon-list-template4 .item .title {
font-size: 16px;
font-weight: 500;
}
.ova-icon-list-2 {
display: grid;
grid-gap: 30px;
}
.ova-icon-list-2.two_column {
grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) {
.ova-icon-list-2.two_column {
grid-template-columns: auto;
}
}
.ova-icon-list-2.three_column {
grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 1024px) {
.ova-icon-list-2.three_column {
grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 767px) {
.ova-icon-list-2.three_column {
grid-template-columns: auto;
}
}
.ova-icon-list-2.four_column {
grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 1250px) {
.ova-icon-list-2.four_column {
grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 767px) {
.ova-icon-list-2.four_column {
grid-template-columns: auto;
}
}
.ova-icon-list-2.ova-icon-list-2-template2 .item {
gap: 32px;
padding: 18px 12px;
border-radius: 6px;
}
.ova-icon-list-2.ova-icon-list-2-template2 .item:hover .text-number {
transition: all 0.3s ease;
background-color: var(--primary);
}
.ova-icon-list-2.ova-icon-list-2-template2 .item:before {
content: none;
}
.ova-icon-list-2.ova-icon-list-2-template2 .item .title {
font-size: 18px;
}
.ova-icon-list-2.ova-icon-list-2-template3 .item {
flex-direction: column;
align-items: flex-start;
gap: 5px;
padding: 10px;
background-color: var(--primary);
box-shadow: none;
}
.ova-icon-list-2.ova-icon-list-2-template3 .item:before {
content: none;
}
.ova-icon-list-2.ova-icon-list-2-template3 .item:after {
transition: all 0.3s ease;
position: absolute;
content: "";
right: 0;
top: 0;
width: 1px;
height: 100%;
background-color: rgba(235, 235, 235, 0.1);
}
@media (max-width: 1024px) {
.ova-icon-list-2.ova-icon-list-2-template3 .item:after {
content: none;
}
}
.ova-icon-list-2.ova-icon-list-2-template3 .item:last-child:after {
content: none;
}
.ova-icon-list-2.ova-icon-list-2-template3 .item .icon i {
color: #fff;
}
.ova-icon-list-2.ova-icon-list-2-template3 .item .title {
font-size: 18px;
color: #fff;
}
.ova-icon-list-2.ova-icon-list-2-template3 .item .desc {
color: #fff;
}
.ova-icon-list-2 .item {
position: relative;
overflow: hidden;
display: flex;
align-items: center;
gap: 25px;
padding: 30px 25px;
background-color: #fff;
box-shadow: 0 16px 34px rgba(117, 138, 214, 0.07);
}
.ova-icon-list-2 .item:hover:before {
transition: all 0.3s ease;
right: 0;
opacity: 1;
}
.ova-icon-list-2 .item:before {
transition: all 0.3s ease;
position: absolute;
content: "";
right: -42px;
top: 0;
width: 42px;
height: 42px;
background-color: #020626;
clip-path: polygon(100% 0, 0 0, 100% 100%);
opacity: 0;
}
.ova-icon-list-2 .item .icon i {
font-size: 63px;
line-height: 1;
color: var(--primary);
}
@media (max-width: 767px) {
.ova-icon-list-2 .item .icon i {
font-size: 43px;
}
}
.ova-icon-list-2 .item .text-number {
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
justify-content: center;
width: 111px;
height: 111px;
min-width: 111px;
border-radius: 6px;
background-color: var(--heading);
font-family: "Raleway";
font-size: 42px;
font-weight: bold;
color: #fff;
}
.ova-icon-list-2 .item .divider {
height: 79px;
width: 1px;
background-color: #D9D9D9;
}
.ova-icon-list-2 .item .title {
margin: 0;
font-size: 22px;
line-height: 1.4;
}
.ova-icon-list-2 .item .desc {
margin: 12px 0 0 0;
}
.elementor-widget-icon-box {
z-index: 1;
}
.elementor-widget-icon-box .elementor-widget-container .elementor-icon-box-wrapper {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
position: relative;
z-index: 1;
}
.elementor-widget-icon-box .elementor-widget-container .elementor-icon-box-wrapper:before {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
position: absolute;
content: "";
top: 0;
left: 0;
right: 0;
height: 100%;
background-color: transparent;
-webkit-transition-delay: 0.1s;
transition-delay: 0.1s;
-webkit-transform-origin: top;
transform-origin: top;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
-webkit-transform: scaleY(0);
transform: scaleY(0);
z-index: -1;
}
.elementor-widget-icon-box .elementor-widget-container .elementor-icon-box-wrapper:hover:before {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
-webkit-transform: scaleY(1);
transform: scaleY(1);
}
.elementor-widget-icon-box .elementor-widget-container .elementor-icon-box-wrapper .elementor-icon-box-content {
z-index: 1;
}
.elementor-widget-icon-box .elementor-widget-container .elementor-icon-box-wrapper .elementor-icon-box-icon {
position: relative;
line-height: 1;
z-index: 1;
}
.elementor-widget-icon-box .elementor-widget-container .elementor-icon-box-wrapper .elementor-icon-box-icon .elementor-icon {
color: var(--heading);
}
.elementor-widget-icon-box .elementor-widget-container .elementor-icon-box-wrapper .elementor-icon-box-title {
font-family: var(--primary-font);
font-size: 24px;
line-height: 1.4;
color: var(--heading);
margin: 0;
font-weight: 800;
}
.elementor-widget-icon-box .elementor-widget-container .elementor-icon-box-wrapper .elementor-icon-box-description {
font-weight: 500;
}
.elementor-view-stacked.elementor-shape-square .elementor-icon-box-icon:before {
border-radius: 0;
}
.elementor-view-stacked .elementor-icon-box-icon {
display: inline-block;
}
.elementor-view-stacked .elementor-icon-box-icon:before {
position: absolute;
content: "";
bottom: -5px;
left: 0;
background-color: transparent;
width: 100%;
height: 100%;
border-radius: 50%;
z-index: -1;
}
@media (max-width: 767px) {
.elementor-view-stacked .elementor-icon-box-icon:before {
content: none;
}
}
.elementor-view-hexagon .elementor-icon-box-icon {
background-color: #69727d;
height: fit-content;
}
.elementor-view-hexagon .elementor-icon-box-icon:before {
content: " ";
position: absolute;
bottom: 100%;
width: 100%;
height: 23px;
clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
background-color: inherit;
transform: scaleZ(1.00001);
}
.elementor-view-hexagon .elementor-icon-box-icon:after {
content: "";
position: absolute;
top: 100%;
left: 0;
width: 100%;
height: 23px;
clip-path: polygon(100% 0, 0 0, 50% 100%);
background-color: inherit;
transform: scaleZ(1.00001);
}
.elementor-view-hexagon .elementor-icon-box-icon .elementor-icon {
padding: 0.1em 0.5em;
}
.elementor-overflow-hidden .elementor-icon-box-wrapper {
overflow: hidden;
}
.ova-icon-box {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
position: relative;
z-index: 1;
padding: 85px 30px 40px 30px;
background-color: #15101e;
text-align: center;
}
.ova-icon-box:after {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
position: absolute;
content: "";
top: 0;
left: 0;
right: 0;
height: 101%;
background-color: #fff;
-webkit-transform: scaleY(0);
transform: scaleY(0);
}
.ova-icon-box:hover:after {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
-webkit-transform: scaleY(1);
transform: scaleY(1);
background-color: #fff;
}
.ova-icon-box:hover .icon:after {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
opacity: 1;
}
.ova-icon-box:hover .icon i, .ova-icon-box:hover .icon svg, .ova-icon-box:hover .icon path {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
color: #fff;
fill: #fff;
}
.ova-icon-box:hover .title {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
color: var(--heading);
}
.ova-icon-box:hover .description {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
color: var(--text);
}
.ova-icon-box .icon {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
display: inline-flex;
justify-content: center;
align-items: center;
position: absolute;
top: -60px;
left: 50%;
transform: translateX(-50%);
width: 120px;
height: 120px;
background-color: #15101e;
border-radius: 50%;
margin-bottom: 30px;
overflow: hidden;
z-index: 1;
}
.ova-icon-box .icon:after {
transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-webkit-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
position: absolute;
content: "";
top: 0;
left: 0;
right: 0;
height: 100%;
opacity: 0;
background-color: var(--primary);
}
.ova-icon-box .icon i, .ova-icon-box .icon svg, .ova-icon-box .icon path {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
display: inline-flex;
font-size: 62px;
width: 1em;
height: 1em;
color: #825cb2;
fill: #825cb2;
z-index: 1;
position: relative;
}
.ova-icon-box .title {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
margin: 0;
padding-bottom: 30px;
font-weight: 800;
font-size: 20px;
line-height: 1.2;
text-all: capitalize;
color: #fff;
z-index: 4;
position: relative;
}
.ova-icon-box .description {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
margin: 0;
font-weight: 400;
font-size: 15px;
line-height: 1.6;
color: #b0a9c;
z-index: 1;
position: relative;
}
.ova-icon-box.ova-icon-box-template2 {
padding: 38px;
text-align: left;
background-color: #fff;
}
.ova-icon-box.ova-icon-box-template2:after {
background-color: var(--primary);
-webkit-transform-origin: bottom;
transform-origin: bottom;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
}
.ova-icon-box.ova-icon-box-template2:hover .mask {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
opacity: 0.1;
}
.ova-icon-box.ova-icon-box-template2:hover .icon:after {
-webkit-transform: scaleY(1);
transform: scaleY(1);
}
.ova-icon-box.ova-icon-box-template2:hover .icon i {
color: var(--primary);
}
.ova-icon-box.ova-icon-box-template2:hover .title {
color: #fff;
}
.ova-icon-box.ova-icon-box-template2:hover .description {
color: #e1d6ff;
}
.ova-icon-box.ova-icon-box-template2.ova-icon-box-active:after {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
-webkit-transform: scaleY(1);
transform: scaleY(1);
}
.ova-icon-box.ova-icon-box-template2.ova-icon-box-active .mask {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
opacity: 0.1;
}
.ova-icon-box.ova-icon-box-template2.ova-icon-box-active .icon {
background-color: #fff;
}
.ova-icon-box.ova-icon-box-template2.ova-icon-box-active .icon:after {
-webkit-transform: scaleY(1);
transform: scaleY(1);
}
.ova-icon-box.ova-icon-box-template2.ova-icon-box-active .icon i {
transform: scale(0.9);
color: var(--primary);
}
.ova-icon-box.ova-icon-box-template2.ova-icon-box-active .title {
color: #fff;
}
.ova-icon-box.ova-icon-box-template2.ova-icon-box-active .description {
color: #e1d6ff;
}
.ova-icon-box.ova-icon-box-template2 .mask {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
position: absolute;
content: "";
width: 100%;
height: 100%;
left: 0;
top: 0;
opacity: 0;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
z-index: 1;
}
.ova-icon-box.ova-icon-box-template2 .icon {
position: relative;
top: 0;
left: 0;
transform: unset;
width: 104px;
height: 104px;
background-color: var(--primary);
}
.ova-icon-box.ova-icon-box-template2 .icon:after {
background-color: #fff;
-webkit-transform-origin: top;
transform-origin: top;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
-webkit-transform: scaleY(0);
transform: scaleY(0);
}
.ova-icon-box.ova-icon-box-template2 .icon i {
font-size: 54px;
color: #fff;
}
.ova-icon-box.ova-icon-box-template2 .title {
font-size: 22px;
color: var(--heading);
}
.ova-icon-box.ova-icon-box-template2 .description {
font-size: 16px;
padding-bottom: 30px;
color: var(--text);
}
.ova-icon-box.ova-icon-box-template2.version2 {
overflow: hidden;
border-radius: 10px;
padding: 100px 25px;
}
.ova-icon-box.ova-icon-box-template2.version2.ova-icon-box-active:hover .icon i {
color: var(--secondary);
}
.ova-icon-box.ova-icon-box-template2.version2.ova-icon-box-active:after {
background-color: var(--heading);
}
.ova-icon-box.ova-icon-box-template2.version2.ova-icon-box-active .icon {
width: 65px;
height: 65px;
background: linear-gradient(269.32deg, rgba(236, 110, 173, 0.51) 5.35%, rgba(79, 144, 201, 0) 56.32%, #3494E6 185.29%);
}
.ova-icon-box.ova-icon-box-template2.version2.ova-icon-box-active .icon i {
font-size: 40px;
color: #fff;
}
.ova-icon-box.ova-icon-box-template2.version2.ova-icon-box-active .icon:after {
background-color: #fff;
}
.ova-icon-box.ova-icon-box-template2.version2 .icon {
border-radius: 5px;
}
.ova-icon-box.ova-icon-box-template2.version2 .box-info {
position: relative;
z-index: 2;
padding: 12px 15px;
border-radius: 10px;
background: linear-gradient(269.32deg, rgba(236, 110, 173, 0.51) 5.35%, rgba(79, 144, 201, 0) 56.32%, #3494E6 185.29%);
}
.ova-icon-box.ova-icon-box-template2.version2 .title {
padding-bottom: 12px;
}
.ova-icon-box.ova-icon-box-template2.version2 .description {
padding: 0;
}
.ova-icon-box.ova-icon-box-template4 {
padding: 40px 35px;
background-color: #fff;
overflow: hidden;
}
.ova-icon-box.ova-icon-box-template4 .triangle-topleft-1 {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
position: absolute;
top: 0;
left: -30px;
width: 0;
height: 0;
opacity: 0;
border-top: 130px solid #7746f1;
border-right: 80px solid transparent;
z-index: 3;
}
.ova-icon-box.ova-icon-box-template4 .triangle-topleft-2 {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
position: absolute;
top: 0;
left: -30px;
width: 0;
height: 0;
opacity: 0;
border-top: 250px solid #6730fd;
border-right: 150px solid transparent;
z-index: 2;
}
.ova-icon-box.ova-icon-box-template4:after {
background-color: var(--primary);
-webkit-transform: scaleX(0);
transform: scaleX(0);
-webkit-transform-origin: right;
transform-origin: right;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
}
.ova-icon-box.ova-icon-box-template4:hover .triangle-topleft-1, .ova-icon-box.ova-icon-box-template4:hover .triangle-topleft-2 {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-webkit-transition-delay: 0.3s;
transition-delay: 0.3s;
opacity: 1;
left: 0;
}
.ova-icon-box.ova-icon-box-template4:hover:after {
-webkit-transform: scaleX(1);
transform: scaleX(1);
}
.ova-icon-box.ova-icon-box-template4:hover i {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
color: #fff;
}
.ova-icon-box.ova-icon-box-template4:hover .title {
color: #fff;
}
.ova-icon-box.ova-icon-box-template4 .text-number {
position: absolute;
top: 22px;
left: 22px;
font-size: 36px;
line-height: 1;
font-weight: 500;
color: var(--primary);
z-index: 4;
}
.ova-icon-box.ova-icon-box-template4 i {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
display: inline-flex;
line-height: 1;
font-size: 64px;
color: var(--primary);
padding-bottom: 20px;
position: relative;
z-index: 4;
}
.ova-icon-box.ova-icon-box-template4 .title {
font-size: 18px;
color: var(--heading);
padding-bottom: 0;
} .ova-icon-box-template3 .icon {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
display: inline-flex;
justify-content: center;
align-items: center;
position: relative;
}
.ova-icon-box-template3 .icon i {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
display: inline-flex;
font-size: 64px;
color: #FFF;
background-color: var(--primary);
padding: 34px;
}
.ova-service {
position: relative;
}
.ova-service:hover .image-service:before {
transition: transform 0.5s ease;
-moz-transition: transform 0.5s ease;
-webkit-transition: transform 0.5s ease;
-o-transition: transform 0.5s ease;
-webkit-transform: scale(1, 1);
transform: scale(1, 1);
-webkit-transform-origin: bottom center;
transform-origin: bottom center;
}
.ova-service:hover .image-service img {
transition: transform 0.5s ease;
-moz-transition: transform 0.5s ease;
-webkit-transition: transform 0.5s ease;
-o-transition: transform 0.5s ease;
transform: scale(1.05);
}
.ova-service:hover .content-service-wrapper .icon {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
background-color: #fff;
}
.ova-service:hover .content-service-wrapper .icon i, .ova-service:hover .content-service-wrapper .icon svg, .ova-service:hover .content-service-wrapper .icon path {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
color: var(--primary);
fill: var(--primary);
}
.ova-service:hover .content-service-wrapper .content-service:after {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
-webkit-transform: scaleY(1);
transform: scaleY(1);
}
.ova-service:hover .content-service-wrapper .content-service .title {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
color: #fff;
}
.ova-service:hover .content-service-wrapper .content-service .description {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
color: #fff;
}
.ova-service .image-service {
position: relative;
overflow: hidden;
}
.ova-service .image-service:before {
transition: transform 0.5s ease;
-moz-transition: transform 0.5s ease;
-webkit-transition: transform 0.5s ease;
-o-transition: transform 0.5s ease;
position: absolute;
content: "";
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #000;
opacity: 0.3;
-webkit-transform: scale(1, 0);
transform: scale(1, 0);
-webkit-transform-origin: top center;
transform-origin: top center;
z-index: 1;
}
.ova-service .image-service img {
vertical-align: middle;
width: 100%;
transition: transform 0.5s ease;
-moz-transition: transform 0.5s ease;
-webkit-transition: transform 0.5s ease;
-o-transition: transform 0.5s ease;
transform: scale(1);
}
.ova-service .content-service-wrapper {
position: relative;
}
.ova-service .content-service-wrapper .icon {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
position: absolute;
top: -70px;
right: 20px;
display: inline-flex;
justify-content: center;
align-items: center;
width: 70px;
height: 70px;
background-color: var(--primary);
z-index: 2;
}
.ova-service .content-service-wrapper .icon i, .ova-service .content-service-wrapper .icon svg, .ova-service .content-service-wrapper .icon path {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
display: inline-flex;
font-size: 48px;
width: 1em;
height: 1em;
fill: #fff;
color: #fff;
transform: scale(1);
}
.ova-service .content-service-wrapper .content-service {
position: relative;
overflow: hidden;
background-color: #fff;
margin-left: 20px;
margin-right: 20px;
margin-top: -20px;
padding: 25px 60px;
box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
z-index: 1;
}
@media (max-width: 420px) {
.ova-service .content-service-wrapper .content-service {
padding: 25px;
}
}
.ova-service .content-service-wrapper .content-service:after {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
position: absolute;
content: "";
top: 0;
left: 0;
right: 0;
height: 100%;
background-color: var(--primary);
-webkit-transform-origin: top;
transform-origin: top;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
-webkit-transform: scaleY(0);
transform: scaleY(0);
}
.ova-service .content-service-wrapper .content-service .title {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
margin: 0;
z-index: 1;
position: relative;
text-align: center;
font-weight: 800;
font-size: 20px;
line-height: 1.2;
}
.ova-service .content-service-wrapper .content-service .description {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
position: relative;
z-index: 1;
margin: 0;
color: var(--text);
}
.ova-service.ova-service-template2 {
text-align: right;
}
.ova-service.ova-service-template2 .image-service img {
filter: grayscale(100%);
}
.ova-service.ova-service-template2 .image-service .triangle-topleft-1 {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
position: absolute;
top: 0;
left: 0;
width: 30%;
height: 60%;
opacity: 0.5;
background: linear-gradient(270deg, var(--primary) 50%, var(--secondary) 100%);
clip-path: polygon(100% 0, 0 100%, 0 0);
}
.ova-service.ova-service-template2 .image-service .triangle-topleft-2 {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
position: absolute;
bottom: 0;
right: 0;
width: 20%;
height: 50%;
opacity: 0.5;
background: linear-gradient(180deg, var(--primary) 30%, var(--secondary) 100%);
clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
.ova-service.ova-service-template2 .content-service-wrapper .content-service {
top: -90px;
right: -70px;
max-width: 370px;
margin: 0;
padding: 30px 45px;
display: inline-flex;
align-items: center;
justify-content: center;
column-gap: 30px;
row-gap: 15px;
}
@media (max-width: 767px) {
.ova-service.ova-service-template2 .content-service-wrapper .content-service {
top: -50px;
right: 0;
}
}
@media (max-width: 500px) {
.ova-service.ova-service-template2 .content-service-wrapper .content-service {
flex-direction: column;
padding: 25px;
}
}
.ova-service.ova-service-template2 .content-service-wrapper .content-service .title {
text-align: left;
}
.ova-service.ova-service-template2 .content-service-wrapper .content-service a {
z-index: 2;
}
.ova-service.ova-service-template2 .content-service-wrapper .content-service .icon {
position: static;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
min-width: 56px;
width: 56px;
height: 56px;
background-color: var(--secondary);
border-radius: 50%;
}
.ova-service.ova-service-template2 .content-service-wrapper .content-service .icon i, .ova-service.ova-service-template2 .content-service-wrapper .content-service .icon svg, .ova-service.ova-service-template2 .content-service-wrapper .content-service .icon path {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
display: inline-flex;
font-size: 15px;
color: #fff;
}
.ova-service.ova-service-template3:hover .content-service-wrapper .content-service {
border-bottom: 1px solid var(--secondary);
}
.ova-service.ova-service-template3:hover .content-service-wrapper .icon {
background-color: var(--secondary);
}
.ova-service.ova-service-template3:hover .content-service-wrapper .icon i {
color: #fff;
}
.ova-service.ova-service-template3:hover .main-icon {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
background-color: var(--secondary);
}
.ova-service.ova-service-template3:hover .main-icon i {
transition: all 0.3s ease;
color: #fff;
}
.ova-service.ova-service-template3 .main-icon {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
position: relative;
display: inline-flex;
justify-content: center;
align-items: center;
width: 100px;
height: 118px;
background-color: #fff;
z-index: 2;
margin-left: 30px;
border-radius: 50px 50px 0 0;
}
.ova-service.ova-service-template3 .main-icon i {
transition: all 0.3s ease;
display: inline-flex;
color: var(--primary);
font-size: 59px;
}
.ova-service.ova-service-template3 .image-service {
margin-top: -40px;
}
.ova-service.ova-service-template3 .image-service:before {
opacity: 0.06;
}
.ova-service.ova-service-template3 .content-service-wrapper .content-service {
margin: 0;
padding: 28px 45px 25px 0;
background-color: transparent;
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
box-shadow: none;
}
.ova-service.ova-service-template3 .content-service-wrapper .content-service .title {
text-align: left;
font-size: 22px;
font-weight: 700;
color: #fff;
}
.ova-service.ova-service-template3 .content-service-wrapper .icon {
top: unset;
bottom: 0;
right: 0;
width: 45px;
height: 45px;
background-color: #fff;
}
.ova-service.ova-service-template3 .content-service-wrapper .icon i {
font-size: 16px;
color: var(--primary);
}
.ova-service.ova-service-template4:hover .content-service-wrapper .icon {
background-color: var(--secondary);
}
.ova-service.ova-service-template4:hover .content-service-wrapper .icon i {
color: #fff;
}
.ova-service.ova-service-template4 .image-service:before {
background-color: var(--heading);
opacity: 0.7;
}
.ova-service.ova-service-template4 .content-service-wrapper .content-service {
margin-top: -90px;
margin-right: 25px;
margin-left: 25px;
padding: 70px 30px 30px 30px;
background-color: #fff;
border-bottom: 1px solid rgba(0, 0, 0, 0.07);
-webkit-mask-image: url(//safer4.com/wp-content/themes/infetech/assets/img/elementor/mask-rectangle-service.svg);
mask-image: url(//safer4.com/wp-content/themes/infetech/assets/img/elementor/mask-rectangle-service.svg);
-webkit-mask-size: cover;
mask-size: cover;
-webkit-mask-position: center;
mask-position: center;
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
}
@media (max-width: 767px) {
.ova-service.ova-service-template4 .content-service-wrapper .content-service {
margin-left: 20px;
margin-right: 20px;
padding: 60px 25px 25px 25px;
}
}
.ova-service.ova-service-template4 .content-service-wrapper .content-service .mask {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
position: absolute;
content: "";
width: 100%;
height: 100%;
left: 0;
top: 0;
opacity: 0.13;
background-position: center;
background-size: auto;
background-repeat: no-repeat;
z-index: 1;
}
.ova-service.ova-service-template4 .content-service-wrapper .content-service .title {
margin: 0 0 10px 0;
text-align: left;
font-size: 22px;
}
.ova-service.ova-service-template4 .content-service-wrapper .content-service .description {
line-height: 1.6;
}
.ova-service.ova-service-template4 .content-service-wrapper .icon {
top: -20px;
right: 50px;
width: 60px;
height: 60px;
border-radius: 50%;
}
.ova-service.ova-service-template4 .content-service-wrapper .icon i {
font-size: 16px;
}
.ova-service-2 {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
position: relative;
padding: 50px 110px 70px 50px;
background-color: #fff;
overflow: hidden;
z-index: 3;
}
@media (max-width: 767px) {
.ova-service-2 {
padding: 30px 100px 30px 30px;
}
}
.ova-service-2:after {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
position: absolute;
content: "";
top: 0;
left: 0;
right: 0;
height: 100%;
background-color: var(--primary);
-webkit-transform-origin: right;
transform-origin: right;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
-webkit-transform: scaleX(0);
transform: scaleX(0);
}
.ova-service-2:hover {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
}
.ova-service-2:hover:after {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
-webkit-transform: scaleX(1);
transform: scaleX(1);
}
.ova-service-2:hover .icon {
transition: all 0.6s ease;
-moz-transition: all 0.6s ease;
-webkit-transition: all 0.6s ease;
-o-transition: all 0.6s ease;
background-color: #6c3af0;
}
.ova-service-2:hover .icon i, .ova-service-2:hover .icon svg, .ova-service-2:hover .icon path {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
color: #fff;
fill: #fff;
}
.ova-service-2:hover .square {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
}
.ova-service-2:hover .title {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
color: #fff;
}
.ova-service-2:hover .description {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
color: #e1d6ff;
}
.ova-service-2:hover .trapezoid-topleft-1, .ova-service-2:hover .trapezoid-topleft-2 {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
-webkit-transition-delay: 0.2s;
transition-delay: 0.2s;
}
.ova-service-2:hover .trapezoid-topleft-1 {
opacity: 0.4;
bottom: 0;
}
.ova-service-2:hover .trapezoid-topleft-2 {
bottom: -44px;
opacity: 0.9;
}
.ova-service-2:hover .sub-title {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
color: #fff;
}
.ova-service-2:hover .service-button {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
}
.ova-service-2:hover .service-button .text-button {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
font-size: 12px;
color: #fff;
margin-right: 7px;
}
.ova-service-2:hover .service-button i {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
color: #fff;
}
.ova-service-2 .square {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
position: absolute;
top: 0;
right: 0;
width: 20px;
height: 20px;
background-color: var(--secondary);
z-index: 1;
}
.ova-service-2 .icon {
transition: all 0.6s ease;
-moz-transition: all 0.6s ease;
-webkit-transition: all 0.6s ease;
-o-transition: all 0.6s ease;
position: absolute;
bottom: 50px;
right: 50px;
display: inline-flex;
justify-content: center;
align-items: center;
width: 62px;
height: 62px;
background-color: #f4ecff;
border-radius: 50%;
z-index: 3;
}
.ova-service-2 .icon i, .ova-service-2 .icon svg, .ova-service-2 .icon path {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
display: inline-flex;
position: relative;
bottom: -30px;
right: -30px;
font-size: 58px;
width: 1em;
height: 1em;
color: var(--primary);
fill: var(--primary);
}
.ova-service-2 .title {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
margin: 0;
font-weight: 800;
font-size: 24px;
line-height: 1.2;
padding-bottom: 35px;
z-index: 3;
position: relative;
}
.ova-service-2 .description {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
margin: 0;
font-weight: 500;
font-size: 16px;
line-height: 1.4;
z-index: 3;
position: relative;
}
.ova-service-2 .trapezoid-topleft-1 {
transition: all 0.2s ease;
-moz-transition: all 0.2s ease;
-webkit-transition: all 0.2s ease;
-o-transition: all 0.2s ease;
position: absolute;
bottom: -20px;
left: -89px;
width: 89px;
height: 150%;
opacity: 0;
background-color: #7746f1;
-webkit-transform-origin: bottom right;
transform-origin: bottom right;
transform: rotate(30deg);
z-index: 2;
}
.ova-service-2 .trapezoid-topleft-2 {
transition: all 0.2s ease;
-moz-transition: all 0.2s ease;
-webkit-transition: all 0.2s ease;
-o-transition: all 0.2s ease;
position: absolute;
bottom: -64px;
left: -44px;
width: 89px;
height: 150%;
opacity: 0;
background-color: #6730fd;
-webkit-transform-origin: bottom right;
transform-origin: bottom right;
transform: rotate(30deg);
z-index: 1;
}
.ova-service-2 .sub-title {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
position: relative;
z-index: 2;
display: block;
margin-bottom: 6px;
}
.ova-service-2 .service-button {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
position: relative;
z-index: 2;
}
.ova-service-2 .service-button .text-button {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
display: inline-block;
font-size: 0;
font-weight: 600;
color: var(--text);
text-transform: uppercase;
margin-right: 0;
}
.ova-service-2 .service-button i {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
display: inline-flex;
font-size: 22px;
color: var(--text);
vertical-align: middle;
}
.ova-service-2.ova-service-2-template2 {
padding: 35px 120px 35px 35px;
}
.ova-service-2.ova-service-2-template2:hover .triangle-topleft-1, .ova-service-2.ova-service-2-template2:hover .triangle-topleft-2 {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
-webkit-transition-delay: 0.2s;
transition-delay: 0.2s;
left: 0;
opacity: 1;
}
.ova-service-2.ova-service-2-template2 .triangle-topleft-1 {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
position: absolute;
top: 0;
left: -30px;
width: 0;
height: 0;
opacity: 0;
border-top: 144px solid #7746f1;
border-right: 80px solid transparent;
z-index: 2;
}
.ova-service-2.ova-service-2-template2 .triangle-topleft-2 {
transition: all 0.55s ease;
-moz-transition: all 0.55s ease;
-webkit-transition: all 0.55s ease;
-o-transition: all 0.55s ease;
position: absolute;
top: 0;
left: -30px;
width: 0;
height: 0;
opacity: 0;
border-top: 300px solid #6730fd;
border-right: 152px solid transparent;
z-index: 1;
}
.ova-service-2.ova-service-2-template2 .title {
text-transform: uppercase;
}
.ova-service-2.ova-service-2-template2 .text_number {
position: absolute;
bottom: 20px;
right: 20px;
font-weight: 200;
font-size: 60px;
color: #e4e0ee;
z-index: 3;
}
.ova-service-2.ova-service-2-template3 {
padding: 40px;
box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}
.ova-service-2.ova-service-2-template3:after {
-webkit-transform-origin: left;
transform-origin: left;
}
.ova-service-2.ova-service-2-template3 .mask {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
position: absolute;
content: "";
width: 100%;
height: 100%;
left: 0;
top: 0;
opacity: 0.12;
background-position: top right;
background-size: auto;
background-repeat: no-repeat;
z-index: 1;
}
.ova-service-2.ova-service-2-template3 .square {
background-color: var(--primary);
right: unset;
left: 0;
}
.ova-service-2.ova-service-2-template3 .icon {
position: relative;
bottom: unset;
right: unset;
background-color: transparent;
margin-bottom: 35px;
}
.ova-service-2.ova-service-2-template3 .icon i {
bottom: unset;
right: unset;
}
.ova-service-2.ova-service-2-template3 .title {
font-size: 20px;
line-height: 1.3;
font-weight: 700;
text-transform: uppercase;
}
.ova-service-2.ova-service-2-template3 .description {
padding-bottom: 35px;
}
.ova-service-2.ova-service-2-template4 {
padding: 45px 55px;
box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}
@media (min-width: 1025px) and (max-width: 1520px) {
.ova-service-2.ova-service-2-template4 {
padding: 40px 30px;
}
}
@media (max-width: 767px) {
.ova-service-2.ova-service-2-template4 {
padding: 40px 30px;
}
}
@media (max-width: 430px) {
.ova-service-2.ova-service-2-template4 {
padding: 35px 25px;
}
}
.ova-service-2.ova-service-2-template4:hover .description {
color: #fff;
}
.ova-service-2.ova-service-2-template4 .service-flex-wrapper {
display: flex;
column-gap: 30px;
}
@media (max-width: 767px) {
.ova-service-2.ova-service-2-template4 .service-flex-wrapper {
column-gap: 20px;
}
}
.ova-service-2.ova-service-2-template4 .mask {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
position: absolute;
content: "";
width: 100%;
height: 100%;
left: 0;
top: 0;
opacity: 0.12;
background-position: top right;
background-size: auto;
background-repeat: no-repeat;
z-index: 1;
}
.ova-service-2.ova-service-2-template4 .square {
background-color: transparent;
}
.ova-service-2.ova-service-2-template4 .icon {
position: relative;
bottom: unset;
right: unset;
background-color: transparent;
margin-bottom: 35px;
}
.ova-service-2.ova-service-2-template4 .icon i {
bottom: unset;
right: unset;
}
@media (max-width: 767px) {
.ova-service-2.ova-service-2-template4 .icon i {
font-size: 43px;
}
}
.ova-service-2.ova-service-2-template4 .title {
padding-bottom: 28px;
}
.ova-service-2.ova-service-2-template4 .description {
font-weight: 400;
line-height: var(--line-height);
padding-bottom: 26px;
}
.ova-service-2.ova-service-2-template5 {
text-align: center;
padding: 40px 30px;
box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}
.ova-service-2.ova-service-2-template5:hover .triangle-topleft {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
opacity: 0.051;
background-color: #fff;
}
.ova-service-2.ova-service-2-template5 .square {
background-color: transparent;
}
.ova-service-2.ova-service-2-template5 .icon {
position: relative;
bottom: unset;
right: unset;
background-color: transparent;
margin-bottom: 24px;
}
.ova-service-2.ova-service-2-template5 .icon i {
bottom: unset;
right: unset;
font-size: 60px;
}
.ova-service-2.ova-service-2-template5 .sub-title {
margin-bottom: 12px;
}
.ova-service-2.ova-service-2-template5 .title {
font-size: 20px;
line-height: 1.5;
padding-bottom: 15px;
}
.ova-service-2.ova-service-2-template5 .description {
padding-bottom: 20px;
}
.ova-service-2.ova-service-2-template5 .triangle-topleft {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
position: absolute;
top: 0;
left: 0;
opacity: 0.039;
background-color: var(--primary);
-webkit-clip-path: polygon(100% 0, 0 0, 0 100%);
clip-path: polygon(100% 0, 0 0, 0 100%);
}
.ova-service-2.ova-service-2-template5 .triangle-topleft-3 {
width: 33.3%;
height: 18.5%;
z-index: 3;
}
.ova-service-2.ova-service-2-template5 .triangle-topleft-4 {
width: 66.6%;
height: 33.3%;
z-index: 2;
}
.ova-service-2.ova-service-2-template5 .triangle-topleft-5 {
width: 100%;
height: 50%;
z-index: 1;
}
.ova-service-2.ova-service-2-template6 {
padding: 30px 0;
border-bottom: 1px solid rgba(29, 23, 41, 0.1);
}
.ova-service-2.ova-service-2-template6:hover {
border-bottom: 1px solid var(--heading);
}
.ova-service-2.ova-service-2-template6:hover .service-button i {
background-color: var(--secondary);
color: #fff;
}
.ova-service-2.ova-service-2-template6:after {
background-color: transparent;
}
.ova-service-2.ova-service-2-template6 .service-flex-wrapper {
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
}
.ova-service-2.ova-service-2-template6 .square {
background-color: transparent;
}
.ova-service-2.ova-service-2-template6 .icon {
position: relative;
bottom: unset;
right: unset;
background-color: transparent;
}
.ova-service-2.ova-service-2-template6 .icon i {
bottom: unset;
right: unset;
font-size: 62px;
color: var(--primary);
}
@media (max-width: 767px) {
.ova-service-2.ova-service-2-template6 .icon i {
font-size: 52px;
}
}
.ova-service-2.ova-service-2-template6 .sub-title {
color: var(--text);
}
.ova-service-2.ova-service-2-template6 .title {
padding-bottom: 0;
color: var(--heading);
}
.ova-service-2.ova-service-2-template6 .description {
padding-top: 16px;
color: var(--text);
}
.ova-service-2.ova-service-2-template6 .service-button .text-button {
color: var(--text);
}
.ova-service-2.ova-service-2-template6 .service-button i {
font-size: 18px;
color: var(--text);
padding: 18px;
border-radius: 50%;
background-color: #fff;
border: 1px solid rgba(29, 23, 41, 0.1);
}
@media (max-width: 767px) {
.ova-service-2.ova-service-2-template6 .service-button i {
font-size: 16px;
padding: 14px;
}
}
.ova-service-2.ova-service-2-template7 {
text-align: center;
padding: 40px;
border-radius: 15px;
box-shadow: 0px 4px 21px 0px rgba(101, 81, 255, 0.07);
}
.ova-service-2.ova-service-2-template7:hover .icon {
background-color: #7D6DFB;
}
.ova-service-2.ova-service-2-template7:hover .icon i {
color: #fff;
}
.ova-service-2.ova-service-2-template7:hover .service-button {
background-color: #fff;
}
.ova-service-2.ova-service-2-template7:hover .service-button i {
color: var(--primary);
}
.ova-service-2.ova-service-2-template7 .icon {
position: relative;
width: 80px;
height: 80px;
bottom: unset;
right: unset;
background-color: #EFC148;
margin-bottom: 24px;
}
.ova-service-2.ova-service-2-template7 .icon i {
bottom: unset;
right: unset;
font-size: 40px;
color: var(--heading);
}
.ova-service-2.ova-service-2-template7 .title {
font-size: 20px;
line-height: 1.5;
padding-bottom: 15px;
}
.ova-service-2.ova-service-2-template7 .description {
padding-bottom: 35px;
line-height: 1.6;
font-weight: 400;
}
.ova-service-2.ova-service-2-template7 .service-button {
display: inline-block;
padding: 1px 17px;
border-radius: 15px;
background-color: var(--primary);
}
.ova-service-2.ova-service-2-template7 .service-button .text-button {
color: var(--heading);
}
.ova-service-2.ova-service-2-template7 .service-button i {
font-size: 20px;
color: #fff;
}
.ova-service-2.ova-service-2-template8 {
text-align: center;
padding: 60px 45px 50px 45px;
box-shadow: 0px 11px 22px 0px rgba(0, 0, 0, 0.035);
}
.ova-service-2.ova-service-2-template8:after {
background-color: #fff;
}
.ova-service-2.ova-service-2-template8:hover {
box-shadow: 0px 21px 42px 0px rgba(0, 0, 0, 0.07);
}
.ova-service-2.ova-service-2-template8:hover .icon {
background-color: #FFCB3C;
}
.ova-service-2.ova-service-2-template8:hover .service-button .text-button {
color: var(--primary);
}
.ova-service-2.ova-service-2-template8 .icon {
position: relative;
bottom: 20px;
right: -20px;
width: 40px;
height: 40px;
background-color: #fff;
margin-bottom: 35px;
}
.ova-service-2.ova-service-2-template8 .icon i {
bottom: -20px;
right: 20px;
font-size: 68px;
color: var(--primary);
}
.ova-service-2.ova-service-2-template8 .title {
font-size: 25px;
padding-bottom: 20px;
color: var(--heading);
}
.ova-service-2.ova-service-2-template8 .description {
padding-bottom: 32px;
line-height: 1.6;
color: var(--text);
}
.ova-service-2.ova-service-2-template8 .service-button {
display: inline-flex;
align-items: center;
column-gap: 8px;
background-color: transparent;
}
.ova-service-2.ova-service-2-template8 .service-button .text-button {
font-size: 16px;
line-height: 1.1;
color: var(--heading);
text-transform: none;
text-decoration: underline;
}
.ova-service-2.ova-service-2-template8 .service-button i {
font-size: 10px;
color: var(--primary);
}
.ova-service-2.ova-service-2-template9 {
padding: 45px 35px;
border-radius: 6px;
box-shadow: 0px 4px 23px 0px rgba(0, 0, 0, 0.05);
}
.ova-service-2.ova-service-2-template9:hover .square {
background-color: var(--secondary);
}
.ova-service-2.ova-service-2-template9:hover .description {
color: #fff;
}
.ova-service-2.ova-service-2-template9:hover .service-button .plus-icon {
border: 1px solid #fff;
}
.ova-service-2.ova-service-2-template9:hover .service-button .text-button {
color: #fff;
}
.ova-service-2.ova-service-2-template9:hover .service-button i {
color: #fff;
}
.ova-service-2.ova-service-2-template9 .square {
background-color: var(--primary);
top: calc(100% - 36px);
right: -36px;
width: 72px;
height: 72px;
border-radius: 50%;
}
.ova-service-2.ova-service-2-template9 .icon {
position: relative;
bottom: unset;
right: unset;
justify-content: flex-start;
background-color: transparent;
margin-bottom: 10px;
}
.ova-service-2.ova-service-2-template9 .icon i {
font-size: 40px;
bottom: unset;
right: unset;
}
.ova-service-2.ova-service-2-template9 .title {
font-size: 26px;
font-weight: 700;
padding-bottom: 20px;
}
.ova-service-2.ova-service-2-template9 .description {
padding-bottom: 35px;
font-weight: normal;
}
.ova-service-2.ova-service-2-template9 .service-button .plus-icon {
margin-right: 10px;
display: inline-flex;
align-items: center;
justify-content: center;
width: 30px;
height: 30px;
border-radius: 50%;
border: 1px solid #ECECEC;
}
.ova-service-2.ova-service-2-template9 .service-button .text-button {
font-size: 16px;
text-transform: capitalize;
color: var(--heading);
}
.ova-service-2.ova-service-2-template9 .service-button i {
font-size: 10px;
color: var(--primary);
}
.ova-service-3 {
position: relative;
display: grid;
grid-gap: 30px;
}
.ova-service-3.two_column {
grid-template-columns: 1fr 1fr;
}
@media (max-width: 1024px) {
.ova-service-3.two_column {
grid-template-columns: auto;
}
}
.ova-service-3.three_column {
grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 1500px) {
.ova-service-3.three_column {
grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 1024px) {
.ova-service-3.three_column {
grid-template-columns: auto;
}
}
.ova-service-3 .item-service-3 {
display: flex;
align-items: center;
}
@media (max-width: 767px) {
.ova-service-3 .item-service-3 {
flex-direction: column;
row-gap: 30px;
}
}
.ova-service-3 .item-service-3:hover .info .square {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
height: 100%;
width: 100%;
}
.ova-service-3 .item-service-3:hover .info .title {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
color: #fff;
}
.ova-service-3 .item-service-3:hover .info .description {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
color: #fff;
}
.ova-service-3 .item-service-3:hover .image-service-3 .text_number {
transition: all 0.4s ease;
-moz-transition: all 0.4s ease;
-webkit-transition: all 0.4s ease;
-o-transition: all 0.4s ease;
background-color: var(--secondary);
}
.ova-service-3 .item-service-3 .image-service-3 {
position: relative;
min-width: 200px;
height: 200px;
border-radius: 50%;
z-index: 2;
}
.ova-service-3 .item-service-3 .image-service-3 .text_number {
transition: all 0.4s ease;
-moz-transition: all 0.4s ease;
-webkit-transition: all 0.4s ease;
-o-transition: all 0.4s ease;
position: absolute;
right: -20px;
bottom: 55%;
background-color: var(--primary);
width: 75px;
height: 75px;
display: inline-flex;
justify-content: center;
align-items: center;
border-radius: 50%;
text-transform: uppercase;
color: #fff;
font-weight: 800;
font-size: 30px;
border: 10px solid #fff;
box-sizing: content-box;
z-index: 2;
}
.ova-service-3 .item-service-3 .image-service-3 img {
width: 200px;
height: 200px;
object-fit: cover;
border-radius: 50%;
display: block;
}
.ova-service-3 .item-service-3 .info {
position: relative;
margin-left: -100px;
padding: 45px 45px 70px 140px;
background-color: #fff;
box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
z-index: 1;
}
@media (max-width: 767px) {
.ova-service-3 .item-service-3 .info {
margin-left: 0;
padding: 30px;
}
}
.ova-service-3 .item-service-3 .info .mask {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
position: absolute;
content: "";
width: 100%;
height: 100%;
left: 0;
top: 0;
opacity: 1;
z-index: -1;
}
.ova-service-3 .item-service-3 .info .square {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
position: absolute;
top: 0;
right: 0;
width: 20px;
height: 20px;
background-color: var(--secondary);
z-index: -2;
}
.ova-service-3 .item-service-3 .info .title {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
margin: 0;
font-weight: 800;
font-size: 24px;
line-height: 1.2;
padding-bottom: 25px;
}
.ova-service-3 .item-service-3 .info .description {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
margin: 0;
font-weight: 500;
font-size: 16px;
line-height: 1.4;
}
.rtl .ova-service-3 .item-service-3 .info {
margin-left: 0;
margin-right: -100px;
padding: 45px 140px 70px 45px;
}
@media (max-width: 767px) {
.rtl .ova-service-3 .item-service-3 .info {
margin-right: 0;
padding: 30px;
}
}
.ova-service-4 {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
position: relative;
text-align: center;
padding: 45px 50px;
background-color: #fff;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
transform: scale(1);
z-index: 1;
}
.ova-service-4:before {
position: absolute;
content: "";
width: 100%;
height: 100%;
opacity: 0.48;
background-color: #1d1729;
top: 0;
left: 0;
z-index: -1;
}
@media (max-width: 767px) {
.ova-service-4 {
padding: 30px;
}
}
.ova-service-4:hover {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transform: scale(0.95);
}
.ova-service-4:hover .text-number-wrapper:before {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
width: 140%;
height: 140%;
}
.ova-service-4:hover .text-number-wrapper .text-number {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
}
.ova-service-4 .text-number-wrapper {
position: relative;
display: inline-flex;
justify-content: center;
align-items: center;
border-radius: 50%;
width: 80px;
height: 80px;
background: linear-gradient(0deg, rgb(95, 45, 238) 0%, rgb(184, 130, 252) 100%);
margin-bottom: 35px;
}
.ova-service-4 .text-number-wrapper:before {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
position: absolute;
content: "";
width: 130%;
height: 130%;
border: 1px solid #cacaca;
opacity: 0.5;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 50%;
}
.ova-service-4 .text-number-wrapper .text_number {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
background-color: #fff;
min-width: 70px;
width: 70px;
height: 70px;
display: inline-flex;
justify-content: center;
align-items: center;
border-radius: 50%;
text-transform: uppercase;
color: var(--heading);
font-weight: 800;
font-size: 30px;
}
.ova-service-4 .title {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
margin: 0;
font-weight: 800;
font-size: 24px;
line-height: 1.2;
color: #fff;
padding-bottom: 25px;
}
.ova-service-4 .description {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
margin: 0;
font-weight: 500;
font-size: 16px;
line-height: 1.4;
color: #fff;
}
.ova-service-4.service-template2 {
padding: 70px 45px;
position: relative;
overflow: hidden;
border-radius: 0px 70px 0px 70px;
transition: all 0.2s ease;
-moz-transition: all 0.2s ease;
-webkit-transition: all 0.2s ease;
-o-transition: all 0.2s ease;
}
@media (max-width: 350px) {
.ova-service-4.service-template2 {
padding: 50px 20px;
}
}
.ova-service-4.service-template2:hover {
transition: all 0.2s ease;
-moz-transition: all 0.2s ease;
-webkit-transition: all 0.2s ease;
-o-transition: all 0.2s ease;
border-radius: 0px;
transform: scale(1);
}
.ova-service-4.service-template2:hover:before {
background-color: #220044;
}
.ova-service-4.service-template2:hover .title {
color: #fff;
background: linear-gradient(95.02deg, #054DF7 -2.32%, #5E53E1 49.68%, #A880E7 92.23%);
}
.ova-service-4.service-template2:hover .text-number-wrapper {
background: #fff;
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
}
.ova-service-4.service-template2:hover .text-number-wrapper .text_number {
color: #B879E9;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.ova-service-4.service-template2.active {
border-radius: 0px;
transform: scale(1);
}
.ova-service-4.service-template2.active:before {
background-color: #220044;
}
.ova-service-4.service-template2.active .title {
color: #fff;
background: linear-gradient(95.02deg, #054DF7 -2.32%, #5E53E1 49.68%, #A880E7 92.23%);
}
.ova-service-4.service-template2.active .text-number-wrapper {
background: #fff;
}
.ova-service-4.service-template2.active .text-number-wrapper .text_number {
color: #B879E9;
}
.ova-service-4.service-template2 .text-number-wrapper {
margin: 0;
position: absolute;
top: 35px;
left: 30px;
background: linear-gradient(279.42deg, rgba(101, 45, 143, 0) -71.91%, rgba(0, 82, 248, 0.51) -28.36%, #B879E9 60.31%);
border-radius: 28px;
width: 56px;
height: 56px;
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
}
.ova-service-4.service-template2 .text-number-wrapper:before {
content: unset;
}
.ova-service-4.service-template2 .text-number-wrapper .text_number {
background-color: transparent;
font-size: 25px;
font-weight: 700;
color: #fff;
transition: all 0.8s ease;
-moz-transition: all 0.8s ease;
-webkit-transition: all 0.8s ease;
-o-transition: all 0.8s ease;
}
@media (max-width: 350px) {
.ova-service-4.service-template2 .text-number-wrapper {
top: 10px;
left: 20px;
}
}
.ova-service-4.service-template2 .title {
font-size: 20px;
background-color: #fff;
color: #000;
font-weight: 600;
padding: 25px;
border-radius: 10px;
margin-bottom: 30px;
}
.ova-blog {
list-style-type: none;
padding: 0;
margin: 0;
display: grid;
grid-gap: 30px;
}
.ova-blog.columns2 {
grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) {
.ova-blog.columns2 {
grid-template-columns: auto;
}
}
.ova-blog.columns3 {
grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 1200px) {
.ova-blog.columns3 {
grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 767px) {
.ova-blog.columns3 {
grid-template-columns: auto;
}
}
.ova-blog.columns4 {
grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 1200px) {
.ova-blog.columns4 {
grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 767px) {
.ova-blog.columns4 {
grid-template-columns: auto;
}
}
.ova-blog.blog-template2 .item:hover .content .read-more {
color: var(--text);
}
.ova-blog.blog-template2 .item:hover .content .read-more .icon-read-more i {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
margin: 0 5px;
color: var(--primary);
}
.ova-blog.blog-template2 .item .media img {
height: 276px;
}
.ova-blog.blog-template2 .item .category a {
top: unset;
right: unset;
bottom: 13px;
left: 13px;
font-size: 13px;
letter-spacing: 1px;
font-weight: 600;
border-radius: 6px;
text-transform: uppercase;
}
.ova-blog.blog-template2 .item .date {
position: static;
font-size: 16px;
font-weight: 500;
color: var(--text);
text-transform: none;
background-color: transparent;
padding: 0;
}
.ova-blog.blog-template2 .item .content {
margin: 0;
padding: 30px;
}
.ova-blog.blog-template2 .item .content .post-meta .item-meta .right {
font-size: 16px;
}
.ova-blog.blog-template2 .item .content .post-meta .item-meta .separator {
margin: 0 14px;
color: #EFC148;
}
.ova-blog.blog-template2 .item .content .post-title {
font-size: 22px;
}
.ova-blog.blog-template2 .item .content .read-more {
display: inline-flex;
align-items: center;
column-gap: 18px;
padding: 0;
background-color: transparent;
}
.ova-blog.blog-template2 .item .content .read-more:before {
background-color: transparent;
}
.ova-blog.blog-template2 .item .content .read-more .icon-read-more {
vertical-align: middle;
}
.ova-blog.blog-template2 .item .content .read-more .icon-read-more i {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
display: inline-flex;
font-size: 40px;
line-height: 0.7;
color: #FFC24E;
}
.ova-blog.blog-template3 .item:hover .content {
box-shadow: none;
}
.ova-blog.blog-template3 .item:hover .content .read-more {
color: var(--primary);
text-decoration: underline;
}
.ova-blog.blog-template3 .item:hover .content .read-more .icon-read-more i {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
margin: 0 5px;
color: var(--primary);
}
.ova-blog.blog-template3 .item .media img {
height: 380px;
filter: saturate(0);
}
.ova-blog.blog-template3 .item .category a {
top: unset;
right: unset;
bottom: 13px;
left: 13px;
font-size: 13px;
letter-spacing: 1px;
font-weight: 600;
border-radius: 6px;
text-transform: uppercase;
}
.ova-blog.blog-template3 .item .date {
position: static;
font-size: 14px;
font-weight: 500;
color: var(--heading);
background-color: transparent;
padding: 0;
}
.ova-blog.blog-template3 .item .content {
margin: 0;
padding: 22px 0 0 0;
background-color: transparent;
box-shadow: none;
}
.ova-blog.blog-template3 .item .content .post-meta {
margin-bottom: 25px;
column-gap: 15px;
}
.ova-blog.blog-template3 .item .content .post-meta .item-meta .right a {
color: var(--heading);
}
.ova-blog.blog-template3 .item .content .post-title {
margin: 0 0 25px 0;
font-size: 24px;
border-bottom: 1px solid #0F0F0F;
}
.ova-blog.blog-template3 .item .content .read-more {
display: inline-flex;
align-items: center;
column-gap: 16px;
padding: 0;
font-size: 16px;
color: var(--heading);
text-transform: capitalize;
background-color: transparent;
}
.ova-blog.blog-template3 .item .content .read-more:before {
background-color: transparent;
}
.ova-blog.blog-template3 .item .content .read-more .icon-read-more i {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
display: inline-flex;
font-size: 22px;
transform: rotate(-45deg);
}
.ova-blog.blog-template4 .item {
display: grid;
grid-template-columns: 0.5fr 1fr;
}
@media (max-width: 1024px) {
.ova-blog.blog-template4 .item {
grid-template-columns: auto;
}
}
.ova-blog.blog-template4 .item:first-child {
display: block;
grid-row-start: 1;
grid-row-end: 3;
grid-template-columns: 1fr;
}
.ova-blog.blog-template4 .item:first-child .media {
border-radius: 8px;
}
.ova-blog.blog-template4 .item:first-child .media img {
height: 400px;
}
.ova-blog.blog-template4 .item:first-child .category {
display: block;
}
.ova-blog.blog-template4 .item:first-child .content {
padding: 22px 0 0 0;
}
.ova-blog.blog-template4 .item:first-child .content .post-title {
margin: 0 0 25px 0;
border-bottom: 1px solid rgba(226, 226, 226, 0.67);
}
.ova-blog.blog-template4 .item:hover .content {
box-shadow: none;
}
.ova-blog.blog-template4 .item:hover .content .read-more {
color: var(--primary);
text-decoration: underline;
}
.ova-blog.blog-template4 .item:hover .content .read-more .icon-read-more i {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
margin: 0 5px;
color: var(--primary);
}
.ova-blog.blog-template4 .item .media {
border-radius: 5px;
}
.ova-blog.blog-template4 .item .media img {
height: 100%;
}
.ova-blog.blog-template4 .item .category {
display: none;
}
.ova-blog.blog-template4 .item .category a {
right: unset;
left: 15px;
top: 15px;
padding-top: 12px;
font-size: 14px;
letter-spacing: 1px;
font-weight: 600;
border-radius: 16px;
}
.ova-blog.blog-template4 .item .date {
position: static;
font-size: 14px;
font-weight: 500;
color: var(--heading);
background-color: transparent;
padding: 0;
}
.ova-blog.blog-template4 .item .content {
margin: auto 0;
padding: 30px;
background-color: transparent;
box-shadow: none;
}
.ova-blog.blog-template4 .item .content .post-meta {
margin-bottom: 25px;
column-gap: 15px;
}
.ova-blog.blog-template4 .item .content .post-meta .item-meta .right a {
color: var(--heading);
}
.ova-blog.blog-template4 .item .content .post-title {
font-size: 24px;
}
.ova-blog.blog-template4 .item .content .read-more {
display: inline-flex;
align-items: center;
column-gap: 16px;
padding: 0;
font-size: 16px;
color: var(--heading);
text-transform: capitalize;
background-color: transparent;
}
.ova-blog.blog-template4 .item .content .read-more:before {
background-color: transparent;
}
.ova-blog.blog-template4 .item .content .read-more .icon-read-more i {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
display: inline-flex;
font-size: 22px;
transform: rotate(-45deg);
}
.ova-blog .item:hover .media img {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transform: scale(1.04);
}
.ova-blog .item:hover .content {
box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.06);
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.ova-blog .item:hover .content .post-title a {
color: var(--primary);
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.ova-blog .item:hover .content .read-more {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
color: #fff;
}
.ova-blog .item:hover .content .read-more:before {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-webkit-transform: scaleY(1);
transform: scaleY(1);
}
.ova-blog .item .media {
position: relative;
overflow: hidden;
}
.ova-blog .item .media img {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
display: block;
width: 100%;
height: 335px;
object-fit: cover;
transform: scale(1);
}
.ova-blog .item .category {
z-index: 3;
}
.ova-blog .item .category a {
position: absolute;
top: 20px;
right: 20px;
background-color: var(--primary);
color: #fff;
font-size: 12px;
line-height: 1.2;
font-weight: 700;
padding: 10px 20px;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.ova-blog .item .date {
z-index: 3;
position: absolute;
top: 20px;
left: 20px;
background-color: var(--primary);
color: #fff;
font-size: 12px;
line-height: 1;
font-weight: 700;
text-transform: uppercase;
padding: 10px 20px;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.ova-blog .item .content {
position: relative;
margin: -30px 20px 0 20px;
background-color: #fff;
padding: 30px 40px;
box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.04);
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.ova-blog .item .content .post-meta {
list-style-type: none;
padding: 0;
margin: 0;
display: flex;
justify-content: flex-start;
margin-bottom: 15px;
}
.ova-blog .item .content .post-meta .item-meta {
line-height: 1;
display: flex;
justify-content: center;
align-items: center;
column-gap: 5px;
}
.ova-blog .item .content .post-meta .item-meta .separator {
margin: 0 6px;
}
.ova-blog .item .content .post-meta .item-meta .left {
color: var(--primary);
}
.ova-blog .item .content .post-meta .item-meta .right {
font-size: 14px;
font-weight: 500;
color: var(--text);
}
.ova-blog .item .content .post-meta .item-meta .right a {
color: var(--text);
}
.ova-blog .item .content .post-meta .item-meta .right a:hover {
color: var(--primary);
}
.ova-blog .item .content .post-title {
margin: 0;
padding-bottom: 25px;
}
.ova-blog .item .content .post-title a {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
color: var(--heading);
}
.ova-blog .item .content .short_desc {
margin: 0 0 15px 0;
padding: 0;
}
.ova-blog .item .content .read-more {
position: relative;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
background-color: #f4f2f9;
color: var(--text);
font-size: 12px;
letter-spacing: 1px;
font-weight: 600;
line-height: 1;
padding: 12px 18px;
display: inline-block;
text-transform: uppercase;
z-index: 1;
overflow: hidden;
}
.ova-blog .item .content .read-more:before {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
position: absolute;
content: "";
top: 0;
left: 0;
right: 0;
height: 100%;
background-color: var(--secondary);
-webkit-transform: scaleY(0);
transform: scaleY(0);
-webkit-transform-origin: bottom;
transform-origin: bottom;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
z-index: -1;
}
.ova-blog-modern {
list-style-type: none;
padding: 0;
margin: 0;
display: grid;
grid-gap: 30px;
}
.ova-blog-modern.columns2 {
grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) {
.ova-blog-modern.columns2 {
grid-template-columns: auto;
}
}
.ova-blog-modern.columns3 {
grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 1200px) {
.ova-blog-modern.columns3 {
grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 767px) {
.ova-blog-modern.columns3 {
grid-template-columns: auto;
}
}
.ova-blog-modern.columns4 {
grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 1200px) {
.ova-blog-modern.columns4 {
grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 767px) {
.ova-blog-modern.columns4 {
grid-template-columns: auto;
}
}
.ova-blog-modern.blog-template2 .item {
display: grid;
grid-template-columns: 0.5fr 1fr;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}
@media (max-width: 767px) {
.ova-blog-modern.blog-template2 .item {
grid-template-columns: auto;
}
}
.ova-blog-modern.blog-template2 .item:first-child {
display: block;
grid-row-start: 1;
grid-row-end: 4;
grid-template-columns: 1fr;
}
.ova-blog-modern.blog-template2 .item:first-child .media {
border-radius: 8px;
overflow: hidden;
}
.ova-blog-modern.blog-template2 .item:first-child .media:before {
position: absolute;
content: "";
width: 100%;
height: 100%;
left: 0;
top: 0;
background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50.09%, rgba(0, 0, 0, 0.99) 100%);
}
.ova-blog-modern.blog-template2 .item:first-child .media img {
height: 550px;
border: none;
}
@media (max-width: 767px) {
.ova-blog-modern.blog-template2 .item:first-child .media img {
height: 450px;
}
}
.ova-blog-modern.blog-template2 .item:first-child .category {
display: block;
}
.ova-blog-modern.blog-template2 .item:first-child .content {
position: absolute;
bottom: 30px;
left: 10px;
}
.ova-blog-modern.blog-template2 .item:first-child .content .post-meta {
margin: 0 0 10px 0;
}
.ova-blog-modern.blog-template2 .item:first-child .content .post-meta .item-meta .left {
color: var(--primary);
}
.ova-blog-modern.blog-template2 .item:first-child .content .post-meta .item-meta .right {
color: rgba(255, 255, 255, 0.6);
}
.ova-blog-modern.blog-template2 .item:first-child .content .post-meta .item-meta .right a {
color: rgba(255, 255, 255, 0.6);
}
.ova-blog-modern.blog-template2 .item:first-child .content .post-meta .separator {
margin: 0;
color: rgba(255, 255, 255, 0.6);
}
.ova-blog-modern.blog-template2 .item:first-child .content .post-title {
font-size: 22px;
}
.ova-blog-modern.blog-template2 .item:first-child .content .post-title a {
color: #fff;
}
.ova-blog-modern.blog-template2 .item:first-child .content .read-more {
display: inline-flex;
align-items: center;
column-gap: 20px;
font-size: 14px;
text-transform: uppercase;
letter-spacing: 1.5px;
color: #fff;
}
.ova-blog-modern.blog-template2 .item:first-child .content .read-more .icon-read-more {
position: relative;
line-height: 1;
}
.ova-blog-modern.blog-template2 .item:first-child .content .read-more .icon-read-more:before {
transition: all 0.3s ease;
position: absolute;
top: 5px;
right: -8px;
content: "";
display: inline-block;
width: 30px;
height: 30px;
border-radius: 50%;
border: 1px solid #E8F2F9;
}
.ova-blog-modern.blog-template2 .item:first-child .content .read-more .icon-read-more i {
transition: all 0.3s ease;
display: inline-flex;
font-size: 40px;
color: var(--primary);
}
.ova-blog-modern.blog-template2 .item .media {
border-radius: 5px;
}
.ova-blog-modern.blog-template2 .item .media img {
height: 100%;
border-radius: 10px;
border: 2px solid #fff;
}
.ova-blog-modern.blog-template2 .item .category a {
right: unset;
left: 15px;
top: 15px;
padding-top: 12px;
font-size: 14px;
letter-spacing: 1px;
font-weight: 600;
border-radius: 16px;
}
.ova-blog-modern.blog-template2 .item .date {
position: static;
font-size: 14px;
font-weight: 500;
color: var(--heading);
background-color: transparent;
padding: 0;
}
.ova-blog-modern.blog-template2 .item .content {
margin: auto 0;
padding: 20px 30px 0 30px;
background-color: transparent;
box-shadow: none;
}
.ova-blog-modern.blog-template2 .item .content .post-meta {
margin: 0 0 10px 0;
}
.ova-blog-modern.blog-template2 .item .content .post-meta .item-meta .right a {
color: var(--heading);
}
.ova-blog-modern.blog-template2 .item .content .post-meta .separator {
margin: 0;
color: inherit;
}
.ova-blog-modern.blog-template2 .item .content .post-title {
font-size: 20px;
}
.ova-blog-modern.blog-template2 .item .content .read-more {
display: none;
}
.ova-blog-modern .item {
position: relative;
}
.ova-blog-modern .item:hover .content {
box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.06);
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.ova-blog-modern .item:hover .content .post-title a {
text-decoration: underline;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.ova-blog-modern .item .media {
position: relative;
}
.ova-blog-modern .item .media img {
display: block;
width: 100%;
height: 290px;
object-fit: cover;
border-radius: 16px 16px 0 0;
}
.ova-blog-modern .item .category a {
font-size: 16px;
line-height: 1.2;
font-weight: 600;
}
.ova-blog-modern .item .date {
z-index: 3;
position: absolute;
bottom: -20px;
right: 30px;
background-color: var(--primary);
border-radius: 6px;
color: #fff;
font-size: 18px;
line-height: 1;
padding: 8px 16px;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.ova-blog-modern .item .date .day {
display: block;
font-size: 28px;
font-weight: bold;
}
.ova-blog-modern .item .content {
position: relative;
background-color: #fff;
padding: 30px;
border-radius: 0 0 16px 16px;
box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.ova-blog-modern .item .content .post-meta {
list-style-type: none;
padding: 0;
margin: 20px 0 0 0;
display: flex;
flex-wrap: wrap;
column-gap: 15px;
}
.ova-blog-modern .item .content .post-meta .item-meta {
line-height: 1;
display: flex;
justify-content: center;
align-items: center;
column-gap: 5px;
}
.ova-blog-modern .item .content .post-meta .item-meta .right {
font-weight: 500;
}
.ova-blog-modern .item .content .post-meta .item-meta .right a {
color: var(--text);
}
.ova-blog-modern .item .content .post-meta .item-meta .right a:hover {
color: var(--primary);
}
.ova-blog-modern .item .content .post-meta .separator {
margin: 0 6px;
color: rgba(0, 23, 38, 0.1);
}
.ova-blog-modern .item .content .post-title {
margin: 4px 0 0 0;
font-size: 22px;
padding-bottom: 25px;
}
.ova-blog-modern .item .content .post-title a {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
color: var(--heading);
}
.ova-blog-modern .item .content .divider {
margin: 0 -30px;
height: 1px;
width: calc(100% + 60px);
background-color: rgba(0, 23, 38, 0.1);
}
.ova-blog-slider .blog-slider {
list-style-type: none;
padding: 0;
margin: 0;
}
.ova-blog-slider .blog-slider .owl-stage-outer {
padding: 30px 0;
}
.ova-blog-slider .blog-slider .item:hover .media img {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transform: scale(1.05);
}
.ova-blog-slider .blog-slider .item:hover .content {
box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.06);
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.ova-blog-slider .blog-slider .item:hover .content .post-title a {
color: var(--primary);
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.ova-blog-slider .blog-slider .item:hover .content .read-more {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
color: #fff;
}
.ova-blog-slider .blog-slider .item:hover .content .read-more:before {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-webkit-transform: scaleY(1);
transform: scaleY(1);
}
.ova-blog-slider .blog-slider .item .media {
position: relative;
overflow: hidden;
}
.ova-blog-slider .blog-slider .item .media img {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
display: block;
width: 100%;
height: 335px;
object-fit: cover;
transform: scale(1);
}
.ova-blog-slider .blog-slider .item .category {
z-index: 3;
}
.ova-blog-slider .blog-slider .item .category a {
position: absolute;
top: 20px;
right: 20px;
background-color: var(--primary);
color: #fff;
font-size: 12px;
line-height: 1.2;
font-weight: 700;
padding: 10px 20px;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.ova-blog-slider .blog-slider .item .date {
z-index: 3;
position: absolute;
top: 20px;
left: 20px;
background-color: var(--primary);
color: #fff;
font-size: 12px;
line-height: 1;
font-weight: 700;
text-transform: uppercase;
padding: 10px 20px;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.ova-blog-slider .blog-slider .item .content {
position: relative;
margin: -30px 20px 0 20px;
background-color: #fff;
padding: 30px 40px;
box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.03);
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.ova-blog-slider .blog-slider .item .content .post-meta {
list-style-type: none;
padding: 0;
margin: 0;
display: flex;
justify-content: flex-start;
margin-bottom: 15px;
}
.ova-blog-slider .blog-slider .item .content .post-meta .item-meta {
line-height: 1;
display: flex;
justify-content: center;
align-items: center;
column-gap: 5px;
}
.ova-blog-slider .blog-slider .item .content .post-meta .item-meta .separator {
margin: 0 6px;
}
.ova-blog-slider .blog-slider .item .content .post-meta .item-meta .left {
color: var(--primary);
}
.ova-blog-slider .blog-slider .item .content .post-meta .item-meta .right {
font-size: 14px;
font-weight: 500;
color: var(--text);
}
.ova-blog-slider .blog-slider .item .content .post-meta .item-meta .right a {
color: var(--text);
}
.ova-blog-slider .blog-slider .item .content .post-meta .item-meta .right a:hover {
color: var(--primary);
}
.ova-blog-slider .blog-slider .item .content .post-title {
margin: 0;
padding-bottom: 25px;
}
.ova-blog-slider .blog-slider .item .content .post-title a {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
color: var(--heading);
}
.ova-blog-slider .blog-slider .item .content .short_desc {
margin: 0 0 15px 0;
padding: 0;
}
.ova-blog-slider .blog-slider .item .content .read-more {
position: relative;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
background-color: #f4f2f9;
color: var(--text);
font-size: 12px;
letter-spacing: 1px;
font-weight: 600;
line-height: 1;
padding: 12px 18px;
display: inline-block;
text-transform: uppercase;
z-index: 1;
overflow: hidden;
}
.ova-blog-slider .blog-slider .item .content .read-more:before {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
position: absolute;
content: "";
top: 0;
left: 0;
right: 0;
height: 100%;
background-color: var(--secondary);
-webkit-transform: scaleY(0);
transform: scaleY(0);
-webkit-transform-origin: bottom;
transform-origin: bottom;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
z-index: -1;
}
.ova-blog-slider.blog-template2 .blog-slider .item {
margin: 15px;
padding: 30px;
border-radius: 10px;
box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1019607843);
background-color: #fff;
}
@media (max-width: 767px) {
.ova-blog-slider.blog-template2 .blog-slider .item {
margin: 0 10px;
}
}
@media (max-width: 479px) {
.ova-blog-slider.blog-template2 .blog-slider .item {
padding: 20px;
}
}
.ova-blog-slider.blog-template2 .blog-slider .item .media {
border-radius: 10px;
margin-bottom: 34px;
}
.ova-blog-slider.blog-template2 .blog-slider .item .media a img {
height: 256px;
}
@media (max-width: 767px) {
.ova-blog-slider.blog-template2 .blog-slider .item .media a img {
height: auto;
}
}
.ova-blog-slider.blog-template2 .blog-slider .item .content {
box-shadow: unset;
margin: 0;
padding: 0;
}
.ova-blog-slider.blog-template2 .blog-slider .item .content .post-title {
font-size: 20px;
padding-bottom: 8px;
}
.ova-blog-slider.blog-template2 .blog-slider .item .content .short_desc {
line-height: 1.4;
}
.ova-blog-slider.blog-template2 .blog-slider .item .content .post-meta {
column-gap: 35px;
}
@media (max-width: 800px) {
.ova-blog-slider.blog-template2 .blog-slider .item .content .post-meta {
column-gap: 30px;
}
}
@media (max-width: 400px) {
.ova-blog-slider.blog-template2 .blog-slider .item .content .post-meta {
flex-direction: column;
row-gap: 7px;
margin-bottom: 10px;
}
}
.ova-blog-slider.blog-template2 .blog-slider .item .content .post-meta .item-meta {
align-items: end;
}
@media (max-width: 400px) {
.ova-blog-slider.blog-template2 .blog-slider .item .content .post-meta .item-meta {
justify-content: start;
}
}
.ova-blog-slider.blog-template2 .blog-slider .item .content .post-meta .item-meta .comment {
font-size: 18px;
display: inline-flex;
}
.ova-blog-slider.blog-template2 .blog-slider .item .content .post-meta .item-meta .author {
font-size: 14px;
}
.ova-blog-slider.blog-template2 .blog-slider .item .content .post-meta .right a {
font-size: 16px;
text-transform: capitalize;
}
.ova-blog-slider.blog-template2 .blog-slider .item .content .read-more {
color: #fff;
background: linear-gradient(279.42deg, rgba(72, 39, 98, 0) -71.91%, rgba(33, 93, 216, 0.51) -28.36%, #B993D6 53.37%);
margin-top: 10px;
}
.ova-blog-slider.blog-template2 .blog-slider .item .content .read-more:before {
background: linear-gradient(95.02deg, #054DF7 -2.32%, #5E53E1 49.68%, #A880E7 92.23%);
}
.ova-blog-slider.blog-template2 .blog-slider .item .category a {
top: 30px;
right: 30px;
}
.ova-blog-slider.blog-template2 .blog-slider .item .date {
background: linear-gradient(95.02deg, #054DF7 -2.32%, #5E53E1 49.68%, #A880E7 92.23%);
top: 30px;
left: 30px;
font-size: 14px;
text-transform: capitalize;
}
.ova-blog-slider.blog-template2 .blog-slider .item:hover .content .read-more {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.ova-blog-slider.blog-template2 .blog-slider .item:hover .content .read-more:before {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-webkit-transform: scaleY(1);
transform: scaleY(1);
}
.ova-blog-slider.blog-template3 .item {
margin: 15px;
}
@media (max-width: 767px) {
.ova-blog-slider.blog-template3 .item {
margin: 0 10px;
}
}
.ova-blog-slider.blog-template3 .item .media {
border-radius: 10px 10px 0 0;
}
.ova-blog-slider.blog-template3 .item .media .date {
left: unset;
right: 30px;
text-transform: capitalize;
background: linear-gradient(279.42deg, rgba(72, 39, 98, 0) -71.91%, rgba(33, 93, 216, 0.51) -28.36%, #B993D6 53.37%);
}
.ova-blog-slider.blog-template3 .item .media img {
height: 301px;
}
@media (max-width: 767px) {
.ova-blog-slider.blog-template3 .item .media img {
height: auto;
}
}
.ova-blog-slider.blog-template3 .item .content {
margin: 0px;
box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1019607843);
border-radius: 0 0 10px 10px;
}
@media (max-width: 479px) {
.ova-blog-slider.blog-template3 .item .content {
padding: 20px;
}
}
@media (max-width: 350px) {
.ova-blog-slider.blog-template3 .item .content .short_desc {
margin-bottom: 25px;
}
}
.ova-blog-slider.blog-template3 .item .content .post-title {
font-size: 20px;
padding-bottom: 8px;
}
.ova-blog-slider.blog-template3 .item .content .post-meta {
justify-content: space-between;
}
@media (max-width: 350px) {
.ova-blog-slider.blog-template3 .item .content .post-meta {
flex-direction: column-reverse;
}
}
.ova-blog-slider.blog-template3 .item .content .post-meta .item-meta .right a {
text-transform: capitalize;
}
@media (max-width: 350px) {
.ova-blog-slider.blog-template3 .item .content .post-meta .item-meta.btn-read-more {
margin-top: 10px;
}
}
.ova-blog-slider.blog-template3 .item .content .post-meta .item-meta.btn-read-more .read-more {
color: #fff;
background: linear-gradient(279.42deg, rgba(101, 45, 143, 0) -71.91%, rgba(0, 82, 248, 0.51) -28.36%, #B879E9 60.31%);
margin-top: 0px;
}
.ova-blog-slider.blog-template3 .item .content .post-meta .item-meta.btn-read-more .read-more:before {
background: linear-gradient(95.02deg, #054DF7 -2.32%, #5E53E1 49.68%, #A880E7 92.23%);
}
.ova-blog-slider.blog-template3 .item .category a {
top: unset;
bottom: 30px;
}
.ova-blog-slider.blog-template4 .item:hover .content {
box-shadow: none;
}
.ova-blog-slider.blog-template4 .item:hover .content .post-title a {
text-decoration: underline;
color: var(--heading);
}
.ova-blog-slider.blog-template4 .item:hover .content .read-more {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
color: var(--primary);
}
.ova-blog-slider.blog-template4 .item:hover .content .read-more .text-read-more {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
font-size: 12px;
text-decoration: underline;
}
.ova-blog-slider.blog-template4 .item:hover .content .read-more .icon-read-more {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
margin: 0;
}
.ova-blog-slider.blog-template4 .item:hover .content .read-more .icon-read-more i {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
color: var(--primary);
}
.ova-blog-slider.blog-template4 .item .media .thumb-img img {
height: 230px;
}
.ova-blog-slider.blog-template4 .item .media .category a {
font-size: 16px;
line-height: 1.2;
text-transform: uppercase;
top: unset;
right: unset;
bottom: 0;
left: 0;
padding: 8px 15px;
}
.ova-blog-slider.blog-template4 .item .content {
margin: 0;
padding: 30px 0 0;
box-shadow: none;
}
.ova-blog-slider.blog-template4 .item .content .post-meta {
margin: 0 0 10px;
column-gap: 35px;
}
.ova-blog-slider.blog-template4 .item .content .post-meta .item-meta .left {
margin-right: 6px;
}
.ova-blog-slider.blog-template4 .item .content .post-meta .item-meta .left i {
color: var(--text);
}
.ova-blog-slider.blog-template4 .item .content .post-meta .item-meta .right {
font-size: 16px;
font-weight: 400;
}
.ova-blog-slider.blog-template4 .item .content .post-title {
padding: 0;
margin: 0 0 20px;
}
.ova-blog-slider.blog-template4 .item .content .post-title a {
font-size: 24px;
}
.ova-blog-slider.blog-template4 .item .content .read-more {
padding: 0;
background: none;
}
.ova-blog-slider.blog-template4 .item .content .read-more:before {
height: 0;
}
.ova-blog-slider.blog-template4 .item .content .read-more .text-read-more {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
font-size: 0;
display: inline-block;
vertical-align: middle;
}
.ova-blog-slider.blog-template4 .item .content .read-more .icon-read-more {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
display: inline-block;
vertical-align: middle;
transform: rotate(90deg);
margin-left: -15px;
}
.ova-blog-slider.blog-template4 .item .content .read-more .icon-read-more i {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
color: var(--text);
font-size: 24px;
display: inline-flex;
padding-right: 2px;
}
.ova-blog-slider.blog-template4 .owl-stage-outer {
padding: 0;
}
.ova-blog-slider .owl-dots {
text-align: center;
line-height: 1;
}
.ova-blog-slider .owl-dots button.owl-dot {
width: 10px;
height: 10px;
background: #D9D9D9;
margin: 0 3px;
border-radius: 50%;
}
.ova-blog-slider .owl-dots button.owl-dot.active {
background: #B879E9;
}
.elementor-widget-container #ova-blog-slider-control button,
.elementor-widget-container #ova-blog-slider-control-2 button,
.elementor-widget-container #ova-blog-slider-control-3 button {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
width: 52px;
height: 54px;
display: inline-flex;
justify-content: center;
align-items: center;
background-color: #fff;
border: 2px solid #d5d4d7;
border-radius: 50%;
margin: 0 20px 0 0;
}
.elementor-widget-container #ova-blog-slider-control button i,
.elementor-widget-container #ova-blog-slider-control-2 button i,
.elementor-widget-container #ova-blog-slider-control-3 button i {
color: #d5d4d7;
font-size: 16px;
display: inline-flex;
}
.elementor-widget-container #ova-blog-slider-control button:hover,
.elementor-widget-container #ova-blog-slider-control-2 button:hover,
.elementor-widget-container #ova-blog-slider-control-3 button:hover {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
border: 2px solid var(--primary);
}
.elementor-widget-container #ova-blog-slider-control button:hover i,
.elementor-widget-container #ova-blog-slider-control-2 button:hover i,
.elementor-widget-container #ova-blog-slider-control-3 button:hover i {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
color: var(--primary);
}
.elementor-widget-container #ova-blog-slider-control-2 button {
border: 1px solid #B879E9;
height: 40px;
width: 40px;
padding: 0;
margin-right: 7px;
}
.elementor-widget-container #ova-blog-slider-control-2 button i {
color: #B879E9;
}
.elementor-widget-container #ova-blog-slider-control-2 button:hover {
border: 1px solid #B879E9;
background-color: #B879E9;
}
.elementor-widget-container #ova-blog-slider-control-2 button:hover i {
color: #fff;
}
.elementor-widget-container #ova-blog-slider-control-3 button {
width: 44px;
height: 52px;
margin-right: 15px;
}
.elementor-widget-container #ova-blog-slider-control-3 button i {
color: var(--text);
}
.ova-counter {
position: relative;
display: inline-block;
background-color: var(--secondary);
padding: 20px 36px;
}
.ova-counter:hover .title {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.ova-counter:hover .odometer {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.ova-counter .odometer {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
color: #fff;
font-size: 36px;
font-weight: 700;
}
.ova-counter .odometer .odometer-formatting-mark {
display: none;
}
.ova-counter .suffix {
color: #fff;
font-size: 22px;
font-weight: 700;
vertical-align: middle;
}
.ova-counter .title {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
margin: 0;
font-size: 16px;
font-weight: 500;
line-height: 1.3;
color: #fff;
}
.ova-counter .icon {
position: absolute;
left: 50%;
bottom: calc(100% - 24px);
transform: translateX(-50%);
display: inline-flex;
align-items: center;
justify-content: center;
width: 100px;
height: 100px;
background-color: #fff;
border-radius: 50%;
box-shadow: 0 10px 60px rgba(165, 165, 165, 0.25);
}
.ova-counter .icon i {
display: inline-flex;
font-size: 50px;
color: var(--primary);
}
.ova-counter .icon svg {
width: 50px;
height: 50px;
fill: var(--primary);
}
.ova-counter .icon svg path {
fill: var(--primary);
}
.ova-counter.ova-counter-template1:before {
position: absolute;
content: "";
bottom: 15px;
left: -20px;
width: 0;
border-top: 20px solid transparent;
border-bottom: 17px solid transparent;
border-right: 20px solid var(--secondary);
}
.ova-counter.ova-counter-template2 {
max-width: 208px;
}
.ova-counter.ova-counter-template2.has-mask-image {
-webkit-mask-image: url(//safer4.com/wp-content/themes/infetech/assets/img/elementor/vector.png);
mask-image: url(//safer4.com/wp-content/themes/infetech/assets/img/elementor/vector.png);
-webkit-mask-size: contain;
mask-size: contain;
-webkit-mask-position: center center;
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
}
.ova-counter.ova-counter-template2 .odometer {
font-size: 40px;
font-weight: 800;
}
.ova-counter.ova-counter-template2 .title {
font-size: 18px;
font-weight: 400;
}
.ova-counter.ova-counter-template3 {
padding: 0;
background-color: #fff;
text-align: center;
}
.ova-counter.ova-counter-template3 .odometer {
color: var(--heading);
font-size: 60px;
font-weight: 800;
}
.ova-counter.ova-counter-template3 .suffix {
color: var(--heading);
font-size: 36px;
font-weight: 800;
}
.ova-counter.ova-counter-template3 .title {
text-transform: uppercase;
color: var(--primary);
font-weight: 800;
border: 1px solid #f4f2f9;
padding: 14px 30px;
line-height: 1;
}
.ova-video .icon-content-view {
display: flex;
align-items: center;
justify-content: flex-start;
column-gap: 15px;
flex-wrap: nowrap;
}
.ova-video .icon-content-view.video_active {
cursor: pointer;
}
.ova-video .icon-content-view:hover .content:before {
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.ova-video .icon-content-view .content {
position: relative;
display: flex;
align-items: center;
justify-content: center;
flex-wrap: nowrap;
width: 64px;
height: 64px;
min-width: 64px;
min-height: 64px;
background-color: var(--secondary);
border-radius: 50%;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.ova-video .icon-content-view .content i {
font-size: 11px;
z-index: 1;
color: #fff;
}
.ova-video .icon-content-view .content:before {
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
position: absolute;
content: "";
top: 50%;
left: 50%;
border-radius: 50%;
transform: translate(-50%, -50%);
width: 150%;
height: 150%;
background-color: transparent;
border: 1px solid transparent;
}
.ova-video .icon-content-view .content:hover {
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
background-color: var(--primary);
}
.ova-video .icon-content-view .ova-text {
margin: 0;
font-weight: 700;
font-size: 16px;
line-height: 1.4;
color: var(--heading);
}
.ova-video .icon-content-view .ova-text a {
color: var(--heading);
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.ova-video.video-template2 {
display: flex;
position: relative;
}
.ova-video.video-template2 .image {
position: relative;
border-radius: 10px;
overflow: hidden;
max-width: 479px;
height: 537px;
}
@media (max-width: 479px) {
.ova-video.video-template2 .image {
height: auto;
}
}
.ova-video.video-template2 .image img {
height: 100%;
width: 100%;
object-fit: cover;
display: block;
}
.ova-video.video-template2 .image .overlay {
width: 100%;
height: 100%;
background: var(--secondary);
position: absolute;
top: 0;
left: 0;
opacity: 0.5;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.ova-video.video-template2 .image:hover .overlay {
width: 100%;
height: 100%;
background: var(--heading);
position: absolute;
opacity: 0.3;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.ova-video.video-template2 .icon-content-view {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.ova-video.video-template2 .icon-content-view .content {
margin: 0;
background-color: unset;
width: 150px;
height: 150px;
}
.ova-video.video-template2 .icon-content-view .content:before {
border: 1px solid #ffffff;
animation: zoomBig 1.5s linear infinite;
transform-origin: center;
transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ova-video.video-template2 .icon-content-view .content i {
font-size: 26px;
}
@keyframes zoomBig {
from {
width: 30%;
height: 30%;
opacity: 1;
}
to {
width: 100%;
height: 100%;
opacity: 0;
}
}
.ova-video .modal-container {
display: none;
background-color: rgba(0, 0, 0, 0.2);
align-items: center;
justify-content: center;
position: fixed;
top: 0;
left: 0;
height: 100vh;
width: 100vw;
z-index: 10;
}
.ova-video .modal-container .modal {
width: 900px;
height: 500px;
position: relative;
}
@media screen and (max-width: 900px) {
.ova-video .modal-container .modal {
width: 768px;
height: 450px;
}
}
@media screen and (max-width: 788px) {
.ova-video .modal-container .modal {
width: 600px;
height: 350px;
}
}
@media screen and (max-width: 620px) {
.ova-video .modal-container .modal {
width: 400px;
height: 250px;
}
}
@media screen and (max-width: 420px) {
.ova-video .modal-container .modal {
width: 320px;
height: 200px;
}
}
@media screen and (max-width: 330px) {
.ova-video .modal-container .modal {
width: 300px;
height: 180px;
}
}
.ova-video .modal-container .modal i {
position: absolute;
right: -10px;
top: -35px;
padding: 10px;
cursor: pointer;
font-size: 12px;
color: #fff;
font-weight: 600;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.ova-video .modal-container .modal i:hover {
color: #000;
}
.ova-video .modal-container .modal .modal-video {
width: 100%;
height: 100%;
}
.elementor-grid-item .elementor-social-icon {
position: relative;
overflow: hidden;
}
.elementor-grid-item .elementor-social-icon:hover:before {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
-webkit-transform: scaleY(1);
transform: scaleY(1);
}
.elementor-grid-item .elementor-social-icon:before {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
position: absolute;
content: "";
top: 0;
left: 0;
right: 0;
height: 100%;
border-radius: 50%;
background-color: var(--primary);
-webkit-transform-origin: top;
transform-origin: top;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
-webkit-transform: scaleY(0);
transform: scaleY(0);
z-index: -1;
}
.elementor-button-wrapper .elementor-button {
position: relative;
overflow: hidden;
}
.elementor-button-wrapper .elementor-button:hover:before {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
-webkit-transform: scaleY(1);
transform: scaleY(1);
}
.elementor-button-wrapper .elementor-button:before {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
position: absolute;
content: "";
top: 0;
left: 0;
right: 0;
height: 100%;
width: 101%;
background-color: var(--primary);
-webkit-transform-origin: top;
transform-origin: top;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
-webkit-transform: scaleY(0);
transform: scaleY(0);
}
.elementor-button-wrapper .elementor-button .elementor-button-content-wrapper {
align-items: center;
}
.elementor-button-wrapper .elementor-button .elementor-button-text, .elementor-button-wrapper .elementor-button .elementor-button-icon {
z-index: 1;
letter-spacing: 1px;
}
.ova-pricing {
transition: transform 0.6s ease;
-moz-transition: transform 0.6s ease;
-webkit-transition: transform 0.6s ease;
-o-transition: transform 0.6s ease;
position: relative;
background-color: #fff;
padding: 50px;
box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
z-index: 1;
overflow: hidden;
}
@media (max-width: 460px) {
.ova-pricing {
padding: 40px 25px;
}
}
.ova-pricing:before {
transition: transform 0.6s ease;
-moz-transition: transform 0.6s ease;
-webkit-transition: transform 0.6s ease;
-o-transition: transform 0.6s ease;
position: absolute;
content: "";
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: var(--primary);
-webkit-transform: scale(1, 0);
transform: scale(1, 0);
-webkit-transform-origin: top center;
transform-origin: top center;
}
.ova-pricing:hover:before {
transition: transform 0.6s ease;
-moz-transition: transform 0.6s ease;
-webkit-transition: transform 0.6s ease;
-o-transition: transform 0.6s ease;
-webkit-transform: scale(1, 1);
transform: scale(1, 1);
-webkit-transform-origin: bottom center;
transform-origin: bottom center;
}
.ova-pricing:hover .pricing-btn {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
color: var(--heading);
}
.ova-pricing:hover .pricing-btn:after {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
-webkit-transform: scaleY(1);
transform: scaleY(1);
}
.ova-pricing:hover .mask {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
opacity: 0.2;
}
.ova-pricing:hover .pricing-title {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
color: #fff;
}
.ova-pricing:hover .pricing-description {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
color: #e1d6ff;
}
.ova-pricing:hover .icon-price i {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
color: #fff;
}
.ova-pricing:hover .icon-price .ova-price {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
color: #fff;
}
.ova-pricing:hover .icon-price .period {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
color: #e1d6ff;
}
.ova-pricing:hover .pricing-service .pricing-title-service {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
color: #e1d6ff;
}
.ova-pricing:hover .pricing-service .pricing-service-list li i {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
color: #fff;
}
.ova-pricing:hover .pricing-service .pricing-service-list li .text_service {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
color: #fff;
}
.ova-pricing .mask {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
position: absolute;
content: "";
width: 100%;
height: 100%;
left: 0;
top: 0;
opacity: 1;
z-index: 1;
}
.ova-pricing .recommend {
position: relative;
z-index: 3;
font-size: 16px;
font-weight: 600;
color: var(--primary);
text-transform: uppercase;
text-align: center;
padding: 9px 20px;
background-color: #fff;
box-shadow: 0 4px 23px rgba(0, 0, 0, 0.07);
transform: translate(45%) rotate(45deg);
}
.ova-pricing .pricing-title {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
margin: 0;
padding-bottom: 15px;
font-weight: 800;
font-size: 36px;
line-height: 1.4;
z-index: 2;
position: relative;
}
.ova-pricing .pricing-description {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
margin: 0;
font-weight: 600;
font-size: 14px;
line-height: 1.4;
color: var(--text);
padding-bottom: 25px;
z-index: 2;
position: relative;
}
.ova-pricing .icon-price {
margin-bottom: 30px;
display: inline-flex;
flex-wrap: wrap;
align-items: flex-end;
z-index: 2;
position: relative;
}
.ova-pricing .icon-price i {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
display: inline-flex;
font-size: 100px;
color: var(--secondary);
-webkit-transform: scale(1);
transform: scale(1);
}
@media (max-width: 460px) {
.ova-pricing .icon-price i {
font-size: 80px;
}
}
.ova-pricing .icon-price .ova-price {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
display: inline-block;
margin: 0 20px;
font-weight: 800;
font-size: 60px;
line-height: 1;
color: var(--primary);
}
@media (max-width: 460px) {
.ova-pricing .icon-price .ova-price {
margin: 0 15px;
font-size: 52px;
}
}
.ova-pricing .icon-price .period {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
font-weight: 500;
font-size: 18px;
color: var(--text);
}
.ova-pricing .pricing-service {
z-index: 2;
position: relative;
}
.ova-pricing .pricing-service .pricing-title-service {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
margin: 0;
font-weight: 600;
color: var(--primary);
font-size: 18px;
line-height: 1.4;
}
.ova-pricing .pricing-service .pricing-service-list {
margin: 30px 0;
padding: 0;
list-style-type: none;
}
.ova-pricing .pricing-service .pricing-service-list li {
display: flex;
align-items: center;
column-gap: 12px;
padding-bottom: 18px;
}
.ova-pricing .pricing-service .pricing-service-list li i {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
font-size: 10px;
display: inline-flex;
color: var(--primary);
}
.ova-pricing .pricing-service .pricing-service-list li .text_service {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
font-weight: 600;
color: var(--heading);
font-size: 16px;
line-height: 1.3;
}
.ova-pricing .pricing-btn {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
position: relative;
overflow: hidden;
z-index: 2;
padding: 18px 45px;
font-size: 14px;
letter-spacing: 1.5px;
font-weight: 700;
line-height: 1;
text-transform: uppercase;
display: inline-flex;
justify-content: center;
align-items: center;
color: #fff;
background-color: var(--primary);
}
.ova-pricing .pricing-btn .text-button {
z-index: 1;
}
.ova-pricing .pricing-btn:after {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
position: absolute;
content: "";
top: 0;
left: 0;
right: 0;
height: 100%;
background-color: #fff;
-webkit-transition-delay: 0.1s;
transition-delay: 0.1s;
opacity: 1;
-webkit-transform-origin: top;
transform-origin: top;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
-webkit-transform: scaleY(0);
transform: scaleY(0);
}
.ova-pricing.pricing-template2 {
background: rgba(243, 243, 243, 0.2784313725);
border-radius: 10px;
padding: 30px;
}
.ova-pricing.pricing-template2.version2 {
background: #fff;
}
.ova-pricing.pricing-template2.version2:hover .pricing-title,
.ova-pricing.pricing-template2.version2:hover .pricing-description,
.ova-pricing.pricing-template2.version2:hover .pricing-service .pricing-service-list li .text_service, .ova-pricing.pricing-template2.version2.active .pricing-title,
.ova-pricing.pricing-template2.version2.active .pricing-description,
.ova-pricing.pricing-template2.version2.active .pricing-service .pricing-service-list li .text_service {
color: #fff;
}
.ova-pricing.pricing-template2.version2:hover .pricing-btn, .ova-pricing.pricing-template2.version2.active .pricing-btn {
border: 1px solid #fff;
}
.ova-pricing.pricing-template2.version2:hover .icon-price .ova-price, .ova-pricing.pricing-template2.version2.active .icon-price .ova-price {
color: #fff;
}
.ova-pricing.pricing-template2.version2:hover .icon-price .period, .ova-pricing.pricing-template2.version2.active .icon-price .period {
color: #fff;
}
.ova-pricing.pricing-template2.version2:hover .pricing-service .pricing-service-list, .ova-pricing.pricing-template2.version2.active .pricing-service .pricing-service-list {
border-top: 1px solid #fff;
}
.ova-pricing.pricing-template2.version2:hover .pricing-service li i, .ova-pricing.pricing-template2.version2.active .pricing-service li i {
color: #fff;
}
.ova-pricing.pricing-template2.version2.active {
background-color: var(--primary);
}
.ova-pricing.pricing-template2.version2:before {
background-color: var(--primary);
}
.ova-pricing.pricing-template2.version2 .icon-box {
justify-content: flex-start;
}
.ova-pricing.pricing-template2.version2 .icon-box i {
font-size: 37px;
color: var(--primary);
}
.ova-pricing.pricing-template2.version2 .pricing-title,
.ova-pricing.pricing-template2.version2 .pricing-description,
.ova-pricing.pricing-template2.version2 .pricing-service .pricing-service-list li .text_service {
color: var(--text);
}
.ova-pricing.pricing-template2.version2 .pricing-title {
font-size: 22px;
font-weight: 600;
}
.ova-pricing.pricing-template2.version2 .icon-price {
justify-content: flex-start;
padding: 0 10px;
}
.ova-pricing.pricing-template2.version2 .icon-price .ova-price {
margin: 0;
font-size: 65px;
font-weight: 600;
color: var(--heading);
}
.ova-pricing.pricing-template2.version2 .icon-price .ova-price sup {
vertical-align: super;
font-size: 22px;
}
.ova-pricing.pricing-template2.version2 .icon-price .period {
color: var(--heading);
}
.ova-pricing.pricing-template2.version2 .pricing-service {
display: block;
}
.ova-pricing.pricing-template2.version2 .pricing-service .pricing-service-list {
border-top: 1px solid #6C6A72;
padding-top: 40px;
}
.ova-pricing.pricing-template2.version2 .pricing-service li {
padding-bottom: 22px;
}
.ova-pricing.pricing-template2.version2 .pricing-service li i {
font-size: 9px;
color: var(--primary);
}
.ova-pricing.pricing-template2.version2 .pricing-btn {
background: transparent;
border-radius: 44px;
border: 1px solid #6C6A72;
font-size: 16px;
letter-spacing: 0.5px;
color: var(--heading);
text-transform: none;
}
.ova-pricing.pricing-template2.version2 .pricing-btn:after {
content: none;
}
.ova-pricing.pricing-template2:before {
background-color: #F3F3F3;
}
.ova-pricing.pricing-template2 .icon-box {
display: flex;
justify-content: space-between;
align-items: flex-end;
gap: 15px;
margin-bottom: 15px;
}
.ova-pricing.pricing-template2 .icon-box i {
font-size: 77px;
color: #fff;
position: relative;
}
.ova-pricing.pricing-template2 .pricing-title {
padding-bottom: 0;
font-size: 28px;
}
.ova-pricing.pricing-template2 .icon-price .ova-price {
font-size: 100px;
font-weight: 400;
}
.ova-pricing.pricing-template2 .icon-price {
margin-bottom: 0;
width: 100%;
justify-content: center;
}
.ova-pricing.pricing-template2 .ova-price sup {
vertical-align: bottom;
font-size: 100%;
}
.ova-pricing.pricing-template2 .pricing-service {
display: flex;
justify-content: center;
}
.ova-pricing.pricing-template2 .pricing-service li i {
font-size: 24px;
color: #fff;
}
.ova-pricing.pricing-template2 .pricing-btn {
display: block;
text-align: center;
background: linear-gradient(279.42deg, rgba(101, 45, 143, 0) -71.91%, rgba(0, 82, 248, 0.51) -28.36%, #B879E9 60.31%);
border-radius: 2px;
}
.ova-pricing.pricing-template2 .pricing-btn .text-button {
position: relative;
}
.ova-pricing.pricing-template2 .pricing-btn:after {
z-index: 0;
background: linear-gradient(95.02deg, #054DF7 -2.32%, #5E53E1 49.68%, #A880E7 92.23%);
}
.ova-pricing.pricing-template2 .pricing-title,
.ova-pricing.pricing-template2 .pricing-description,
.ova-pricing.pricing-template2 .icon-price .ova-price,
.ova-pricing.pricing-template2 .icon-price .period,
.ova-pricing.pricing-template2 .pricing-service .pricing-service-list li .text_service {
color: #fff;
}
.ova-pricing.pricing-template2:hover .pricing-title,
.ova-pricing.pricing-template2:hover .pricing-description,
.ova-pricing.pricing-template2:hover .icon-price .ova-price,
.ova-pricing.pricing-template2:hover .icon-price .period,
.ova-pricing.pricing-template2:hover .pricing-service .pricing-service-list li .text_service, .ova-pricing.pricing-template2.active .pricing-title,
.ova-pricing.pricing-template2.active .pricing-description,
.ova-pricing.pricing-template2.active .icon-price .ova-price,
.ova-pricing.pricing-template2.active .icon-price .period,
.ova-pricing.pricing-template2.active .pricing-service .pricing-service-list li .text_service {
color: #000;
}
.ova-pricing.pricing-template2:hover .pricing-btn, .ova-pricing.pricing-template2.active .pricing-btn {
color: #fff;
}
.ova-pricing.pricing-template2:hover .pricing-service li i, .ova-pricing.pricing-template2.active .pricing-service li i {
color: var(--secondary);
}
.ova-pricing.pricing-template2:hover .icon-box i, .ova-pricing.pricing-template2.active .icon-box i {
color: var(--secondary);
}
.ova-pricing.pricing-template2.active {
background-color: #F3F3F3;
}
.ova-pricing.pricing-template2.active .pricing-btn:after {
-webkit-transform: scaleY(1);
transform: scaleY(1);
}
.ova-pricing.pricing-template3 {
border-radius: 10px;
border: 1px solid #E7EAF6;
}
.ova-pricing.pricing-template3:before {
background-color: transparent;
}
.ova-pricing.pricing-template3:hover .pricing-btn {
color: #fff;
}
.ova-pricing.pricing-template3:hover .pricing-btn:after {
background-color: var(--primary);
}
.ova-pricing.pricing-template3 .pricing-title {
margin: 0 12px;
padding-bottom: 30px;
font-size: 30px;
font-weight: 600;
color: var(--heading);
}
.ova-pricing.pricing-template3 .pricing-description {
padding-bottom: 16px;
padding-top: 16px;
font-size: 16px;
color: var(--heading);
text-align: center;
}
.ova-pricing.pricing-template3 .icon-price .ova-price {
margin: 0 10px;
font-size: 42px;
color: var(--heading);
}
.ova-pricing.pricing-template3 .icon-price .period {
font-size: 20px;
color: var(--heading);
}
.ova-pricing.pricing-template3 .pricing-btn {
margin: 0 -15px;
display: flex;
font-size: 15px;
color: var(--heading);
font-weight: 500;
letter-spacing: 0.5px;
text-transform: uppercase;
background-color: #fff;
border: 1px solid #DDDAF0;
padding: 21px 45px;
border-radius: 43px;
}
.ova-pricing.pricing-template3 .pricing-service .pricing-service-list {
margin-bottom: 0;
}
.ova-pricing.pricing-template3 .pricing-service .pricing-service-list li {
padding-bottom: 22px;
}
.ova-pricing.pricing-template3 .pricing-service .pricing-service-list li:last-child {
padding-bottom: 12px;
}
.ova-pricing.pricing-template3 .pricing-service .pricing-service-list li i {
font-size: 18px;
color: #00BA00;
}
.ova-pricing.pricing-template3 .pricing-service .pricing-service-list li .text_service {
font-weight: normal;
color: var(--text);
}
.ova_wrap_search_popup {
position: relative;
display: inline-flex;
vertical-align: middle;
}
.ova_wrap_search_popup .ova_search_close {
display: none;
}
.ova_wrap_search_popup.show .ova_search_popup {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
-webkit-transform: translateY(0%);
transform: translateY(0%);
}
.ova_wrap_search_popup i {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
cursor: pointer;
font-size: 28px;
color: var(--heading);
display: inline-flex;
transform: rotateY(180deg);
}
.ova_wrap_search_popup i:hover {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.ova_wrap_search_popup .ova_search_popup {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
z-index: 9999;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-transform: translateY(-110%);
transform: translateY(-110%);
}
.ova_wrap_search_popup .ova_search_popup .search-popup__overlay {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: var(--heading);
opacity: 0.75;
cursor: pointer;
z-index: -1;
}
.ova_wrap_search_popup .ova_search_popup .container {
width: 100%;
max-width: 500px;
}
@media (max-width: 600px) {
.ova_wrap_search_popup .ova_search_popup .container {
max-width: 300px;
}
}
.ova_wrap_search_popup .ova_search_popup .container .search-form {
display: inline-flex;
justify-content: center;
width: 100%;
}
.ova_wrap_search_popup .ova_search_popup .container .search-form .search-field {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
width: 100%;
background-color: #fff;
color: var(--heading);
font-weight: 500;
font-size: 16px;
border: none;
outline: none;
height: 66px;
padding-left: 30px;
transition: all 0.3s;
-webkit-border-radius: 0;
border-radius: 0;
}
.ova_wrap_search_popup .ova_search_popup .container .search-form .search-field::placeholder {
opacity: 1;
color: var(--heading);
font-weight: 500;
}
.ova_wrap_search_popup .ova_search_popup .container .search-form .search-submit {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
display: flex;
justify-content: center;
align-items: center;
border: 0;
cursor: pointer;
-webkit-border-radius: 0;
border-radius: 0;
background-color: var(--secondary);
}
.ova_wrap_search_popup .ova_search_popup .container .search-form .search-submit i {
font-size: 16px;
color: #fff;
line-height: 1;
}
.ova_wrap_search_popup .ova_search_popup .container .search-form .search-submit:hover {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
background-color: var(--primary);
}
.ova-geometry1 {
overflow: hidden;
}
.ova-geometry1 .geometry1 {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0.5;
background-image: linear-gradient(360deg, var(--primary) 20%, var(--secondary) 100%);
clip-path: polygon(15% 0, 0% 0%, 0 100%);
}
.ova-geometry1 .geometry2 {
content: "";
position: absolute;
bottom: 0;
right: 0;
width: 0;
height: 0;
opacity: 0.5;
border-bottom: 287px solid var(--secondary);
border-left: 80px solid transparent;
}
.ova-geometry2 {
overflow: hidden;
}
.ova-geometry2 .geometry3 {
content: "";
position: absolute;
top: 0;
right: 80px;
width: 160px;
height: 150%;
opacity: 0.5;
background-color: var(--secondary);
transform: rotate(30deg);
transform-origin: top right;
}
.ova-geometry2 .geometry4 {
content: "";
position: absolute;
top: 0;
right: 265px;
width: 160px;
height: 150%;
opacity: 0.92;
transform: rotate(30deg);
transform-origin: top right;
background-color: rgb(21, 16, 30);
mix-blend-mode: color-dodge;
}
.ova-geometry3 {
overflow: hidden;
}
.ova-geometry3 .geometry5 {
content: "";
position: absolute;
bottom: 0;
left: -150px;
width: 150px;
height: 150%;
opacity: 0.5;
background-image: linear-gradient(360deg, var(--primary) 40%, var(--secondary) 100%);
transform: rotate(40deg);
transform-origin: bottom right;
}
.ova-geometry4 {
overflow: hidden;
}
.ova-geometry4 .geometry6 {
content: "";
position: absolute;
top: 0;
left: 170px;
width: 80px;
height: 150%;
opacity: 0.92;
background-color: rgb(21, 16, 30);
mix-blend-mode: color-dodge;
transform: rotate(30deg);
transform-origin: top right;
}
.ova-geometry4 .geometry7 {
content: "";
position: absolute;
top: 0;
left: 78px;
width: 80px;
height: 150%;
opacity: 0.4;
transform: rotate(30deg);
transform-origin: top right;
background-color: rgb(255, 255, 255);
mix-blend-mode: soft-light;
}
.ova-geometry4 .geometry8 {
content: "";
position: absolute;
top: 0;
right: 60px;
width: 80px;
height: 150%;
opacity: 0.4;
background-color: rgb(255, 255, 255);
mix-blend-mode: soft-light;
transform: rotate(30deg);
transform-origin: top right;
}
@media (max-width: 767px) {
.ova-geometry4 .geometry8 {
display: none;
}
}
.ova-geometry4 .geometry9 {
content: "";
position: absolute;
top: 0;
right: 152px;
width: 80px;
height: 150%;
opacity: 0.92;
transform: rotate(30deg);
transform-origin: top right;
background-color: rgb(21, 16, 30);
mix-blend-mode: color-dodge;
}
@media (max-width: 767px) {
.ova-geometry4 .geometry9 {
display: none;
}
}
.ova-geometry4 .geometry10 {
content: "";
position: absolute;
top: 0;
right: 0;
width: 14%;
height: 100%;
opacity: 0.5;
background-image: linear-gradient(0deg, rgb(95, 45, 238) 0%, rgb(169, 116, 250) 100%);
clip-path: polygon(100% 0, 100% 100%, 0 0%);
}
.ova-geometry5 {
overflow: hidden;
}
.ova-geometry5 .geometry11 {
content: "";
position: absolute;
top: 50%;
left: 50%;
width: 500px;
height: 150%;
opacity: 0.5;
background: linear-gradient(279.42deg, rgba(101, 45, 143, 0) -71.91%, rgba(0, 82, 248, 0.255) -28.36%, rgba(184, 121, 233, 0.5) 60.31%);
clip-path: polygon(61% 0, 100% 0, 67% 100%, 0% 100%);
transform: translate(-50%, -50%) rotate(15deg);
transform-origin: bottom right;
}
.ova-geometry6 {
overflow: hidden;
}
.ova-geometry6 .geometry12 {
content: "";
position: absolute;
top: 0%;
right: 0%;
width: 100%;
height: 100%;
opacity: 1;
background: linear-gradient(279.42deg, rgba(101, 45, 143, 0) -71.91%, rgba(0, 82, 248, 0.255) -28.36%, rgba(184, 121, 233, 0.5) 60.31%);
clip-path: polygon(75% 0, 100% 0, 55% 100%, 0% 140%);
transform-origin: bottom right;
}
.ova-geometry6 .geometry12:before {
content: "";
display: block;
width: 110px;
height: 110px;
background: linear-gradient(35.46deg, rgba(35, 23, 164, 0.4) 9.44%, rgba(42, 105, 254, 0.4) 40.93%, rgba(159, 119, 222, 0.4) 72.78%);
position: absolute;
top: 5%;
right: 15%;
border-radius: 50%;
animation: load 15s linear infinite;
}
.ova-geometry6 .circle {
content: "";
position: absolute;
top: 0%;
right: 0%;
width: 100%;
height: 100%;
opacity: 1;
}
.ova-geometry6 .circle:before {
content: "";
display: block;
width: 207px;
height: 207px;
background: linear-gradient(35.46deg, rgba(35, 23, 164, 0.4) 9.44%, rgba(42, 105, 254, 0.4) 40.93%, rgba(159, 119, 222, 0.4) 72.78%);
position: absolute;
top: 25%;
left: 7%;
border-radius: 50%;
animation: load 30s linear infinite;
}
.ova-geometry6 .circle:after {
content: "";
display: block;
width: 60px;
height: 60px;
background: linear-gradient(35.46deg, rgba(35, 23, 164, 0.4) 9.44%, rgba(42, 105, 254, 0.4) 40.93%, rgba(159, 119, 222, 0.4) 72.78%);
position: absolute;
bottom: 6%;
right: 3%;
border-radius: 50%;
animation: load 15s linear infinite;
}
@keyframes load {
to {
transform: rotate(3turn);
}
}
.ova-geometry-header-banner {
overflow: hidden;
}
.ova-geometry-header-banner .geometry-header {
content: "";
position: absolute;
top: 0;
right: 0;
width: 245px;
height: 60%;
opacity: 0.5;
background-image: linear-gradient(0deg, rgb(95, 45, 238) 0%, rgb(169, 116, 250) 100%);
clip-path: polygon(100% 0, 100% 100%, 0 0%);
}
.ova-geometry-revslider1 {
overflow: hidden;
}
.ova-geometry-revslider1 .geometry-revslider-left {
content: "";
position: absolute;
top: 0;
right: 0;
width: 20%;
height: 50%;
opacity: 0.5;
z-index: 2;
background-image: linear-gradient(0deg, rgb(95, 45, 238) 0%, rgb(169, 116, 250) 100%);
clip-path: polygon(100% 0, 100% 100%, 0 0%);
}
.ova-geometry-revslider1 .geometry-revslider-right {
content: "";
position: absolute;
bottom: -150px;
left: -7%;
width: 14%;
height: 150%;
opacity: 0.5;
z-index: 2;
background-image: linear-gradient(0deg, rgb(95, 45, 238) 0%, rgb(169, 116, 250) 100%);
transform: rotate(20deg);
transform-origin: bottom right;
}
.ova-progress-circle-wrapper {
text-align: center;
}
.ova-progress-circle-wrapper.template2 {
text-align: left;
display: flex;
align-items: center;
gap: 20px;
}
.ova-progress-circle-wrapper.template2 .ova-progress-circle .percent {
font-size: 24px;
}
.ova-progress-circle-wrapper.template2 .title {
margin-top: 0;
text-align: left;
font-weight: 600;
}
.ova-progress-circle-wrapper .ova-progress-circle {
display: inline-flex;
position: relative;
}
.ova-progress-circle-wrapper .ova-progress-circle:before {
position: absolute;
content: "";
left: 50%;
top: 50%;
width: 87%;
height: 87%;
transform: translate(-50%, -50%);
border: 2px solid var(--primary);
border-radius: 50%;
}
.ova-progress-circle-wrapper .ova-progress-circle .percent {
display: flex;
position: absolute;
top: 50%;
left: 50%;
font-size: 30px;
color: var(--heading);
line-height: 1;
transform: translate(-50%, -50%);
}
.ova-progress-circle-wrapper .ova-progress-circle .percent strong {
font-weight: 400;
}
.ova-progress-circle-wrapper .title {
font-size: 18px;
font-weight: 500;
line-height: 1.2;
text-align: center;
margin-top: 15px;
}
.rtl .ova-progress-circle-wrapper.template2 .title {
text-align: right;
}
.ova-services-slider .services-slider .slick-list .slick-track {
padding: 50px 0;
}
.ova-services-slider .services-slider .slick-slide.slick-current {
position: relative;
}
.ova-services-slider .services-slider .slick-slide.slick-current .item .item-box {
background-color: #1d1729;
}
.ova-services-slider .services-slider .slick-slide.slick-current .item .item-box i {
color: var(--secondary);
}
.ova-services-slider .services-slider .slick-slide.slick-current .item .item-box .sub-title {
color: #FFF;
}
.ova-services-slider .services-slider .slick-slide.slick-current .item .item-box img {
position: absolute;
top: -95px;
right: -50px;
}
.ova-services-slider .services-slider .slick-slide.slick-current .item i.ovaicon-download {
display: block;
color: #FFF;
font-size: 8px;
position: absolute;
bottom: -10px;
left: 50%;
margin-left: -4px;
}
.ova-services-slider .services-slider .slick-slide.slick-current:before {
position: absolute;
content: "";
width: 0;
height: 0;
border-left: 15px solid transparent;
border-right: 15px solid transparent;
border-top: 15px solid #1d1729;
bottom: -15px;
left: 50%;
margin-left: -15px;
}
.ova-services-slider .services-slider .slick-slide .item .item-box {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: #FFF;
box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.07);
padding: 50px;
margin: 0 20px;
position: relative;
overflow: hidden;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}
@media (max-width: 767px) {
.ova-services-slider .services-slider .slick-slide .item .item-box {
margin: 0 10px;
}
}
.ova-services-slider .services-slider .slick-slide .item .item-box i {
font-size: 50px;
color: var(--primary);
line-height: 1;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
z-index: 2;
}
.ova-services-slider .services-slider .slick-slide .item .item-box .sub-title {
font-size: 20px;
z-index: 2;
color: var(--heading);
margin: 0;
text-align: center;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.ova-services-slider .services-slider .slick-slide .item .item-box img {
position: absolute;
z-index: 1;
top: -100%;
right: -100%;
width: 250px;
height: 250px;
object-fit: cover;
mix-blend-mode: luminosity;
-webkit-transition: all 0.7s ease;
-moz-transition: all 0.7s ease;
-o-transition: all 0.7s ease;
transition: all 0.7s ease;
}
.ova-services-slider .services-slider .slick-slide .item i.ovaicon-download {
display: none;
}
.ova-services-slider .services-slider-content .content {
text-align: center;
}
.ova-services-slider .services-slider-content .content .content-title {
font-size: 30px;
font-weight: bold;
line-height: 1.2;
color: var(--heading);
margin: 0 0 20px;
}
.ova-services-slider .services-slider-content .content .description {
font-size: 16px;
line-height: 1.875;
font-weight: 400;
color: var(--text);
margin: 0 0 35px;
padding: 0 20%;
}
@media screen and (max-width: 1024px) {
.ova-services-slider .services-slider-content .content .description {
padding: 0;
}
}
.ova-services-slider .services-slider-content .content a.services-btn {
position: relative;
display: inline-block;
font-size: 14px;
font-weight: bold;
text-transform: uppercase;
line-height: 1.2;
background-color: var(--primary);
font-size: 15px;
padding: 23px 50px 20px;
color: #fff;
fill: #fff;
text-align: center;
-webkit-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
}
.ova-services-slider .services-slider-content .content a.services-btn:before {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
position: absolute;
content: "";
top: 0;
left: 0;
right: 0;
height: 100%;
width: 100%;
background-color: var(--heading);
-webkit-transform-origin: top;
transform-origin: top;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
-webkit-transform: scaleY(0);
transform: scaleY(0);
}
.ova-services-slider .services-slider-content .content a.services-btn .btn-text {
position: relative;
z-index: 1;
}
.ova-services-slider .services-slider-content .content a.services-btn:hover:before {
transform: scaleY(1);
}
@media (max-width: 1600px) {
.ova-hide-element-1600 {
display: none !important;
}
}
@media (max-width: 1500px) {
.ova-hide-element-1500 {
display: none !important;
}
}
@media (max-width: 1400px) {
.ova-hide-element-1400 {
display: none !important;
}
}
@media (max-width: 1300px) {
.ova-hide-element-1300 {
display: none !important;
}
}
@media (max-width: 1200px) {
.ova-hide-element-1200 {
display: none !important;
}
}
@media (min-width: 1200px) {
.ova-hide-element-min-1200 {
display: none !important;
}
}
.ova-image-customize {
position: relative;
display: flex;
}
.ova-image-customize a,
.ova-image-customize .image-box {
position: relative;
display: flex;
}
.ova-image-customize a img,
.ova-image-customize .image-box img {
display: block;
object-fit: cover;
}
.ova-image-customize .overlay {
position: absolute;
width: 100%;
height: 100%;
background-color: #9F2FFF;
top: 0;
left: 0;
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
}
.ova-image-customize:hover .overlay {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
}
.ova-image-customize .ova-template2 {
width: 455px;
height: 455px;
position: relative;
animation: load 500s linear infinite;
}
@media (max-width: 767px) {
.ova-image-customize .ova-template2 {
animation: unset;
display: none;
}
}
.ova-image-customize .ova-template2 .image-box {
border-radius: 50%;
width: 455px;
height: 455px;
position: relative;
animation: load 60s linear infinite;
}
@media (max-width: 767px) {
.ova-image-customize .ova-template2 .image-box {
display: none;
}
}
.ova-image-customize .ova-template2 .image-box img {
border-radius: 50%;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
height: 100%;
}
.ova-image-customize .ova-template2 .image-box-2 {
width: 100px;
height: 100px;
animation: load 120s linear infinite;
display: inline-block;
border-radius: 50%;
overflow: hidden;
}
.ova-image-customize .ova-template2 .image-box-2.a {
position: absolute;
top: -95px;
right: 0;
}
.ova-image-customize .ova-template2 .image-box-2.b {
position: absolute;
bottom: -95px;
right: 0px;
}
.ova-image-customize .ova-template2 i {
display: inline-block;
font-size: 96px;
position: absolute;
top: 36%;
right: -150px;
color: #B879E9;
}
.ova-image-customize .ova-template2:before {
content: "";
width: 145%;
height: 145%;
display: block;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 50%;
border: 1px solid #B879E9;
}
@media (max-width: 767px) {
.ova-image-customize .ova-template2:before {
content: unset;
}
}
.ova-image-customize .image-ver2 {
position: absolute;
width: 100%;
overflow: hidden;
z-index: 1;
}
@media (max-width: 767px) {
.ova-image-customize .image-ver2 {
position: relative;
}
}
.ova-image-customize .image-ver2 img {
border-radius: 50%;
width: 455px;
height: 455px;
object-fit: cover;
}
@media (max-width: 767px) {
.ova-image-customize .image-ver2 img {
width: 300px;
height: 300px;
}
}
@keyframes load {
to {
transform: rotate(3turn);
}
}
.column_height_100_percent .elementor-widget {
height: 100%;
}
.column_height_100_percent .elementor-widget .elementor-widget-container {
height: 100%;
}
.ova-element-primary-background .elementor-widget-container {
background-color: var(--primary);
}
.ova-column-primary-background .elementor-widget-wrap {
background-color: var(--primary);
}
.ova-section-primary-background {
background-color: var(--primary);
}
.ova-element-secondary-background .elementor-widget-container {
background-color: var(--secondary);
}
.ova-column-secondary-background .elementor-widget-wrap {
background-color: var(--secondary);
}
.ova-section-secondary-background {
background-color: var(--secondary);
}
.ova-vertical-scroll {
height: 366px;
overflow-y: auto;
overflow-x: hidden;
direction: rtl; scrollbar-color: var(--primary) rgba(0, 47, 245, 0.1);
scrollbar-width: thin;
}
@media (max-width: 1024px) {
.ova-vertical-scroll {
height: 506px;
}
}
.ova-vertical-scroll::-webkit-scrollbar {
width: 3px;
}
.ova-vertical-scroll::-webkit-scrollbar-track {
background: rgba(0, 47, 245, 0.1);
}
.ova-vertical-scroll::-webkit-scrollbar-thumb {
background: var(--primary);
}
.ova-vertical-scroll .elementor-accordion {
margin: 0 38px;
}
@media (max-width: 1024px) {
.ova-vertical-scroll .elementor-accordion {
margin: 0 19px;
}
}
.elementor-accordion .elementor-accordion-item {
overflow: hidden;
}
.ova-halfbg-primary:before {
content: "";
position: absolute;
right: 0;
bottom: 0;
width: 50%;
height: 100%;
background-color: var(--primary);
border-radius: 0 0 0 10px;
}
#ova-triangle-container:after {
position: absolute;
content: "";
top: 0;
left: 0;
width: 30px;
height: 100%;
background-color: #1d1729;
-webkit-clip-path: polygon(100% 0, 0 0, 0 100%);
clip-path: polygon(100% 0, 0 0, 0 100%);
z-index: 1;
}
@media (max-width: 1024px) {
#ova-triangle-container:after {
content: none;
}
}
.elementor-section.ova-section-no-margin-left .elementor-container {
margin-left: 0;
}
.ova-column-special-shape .elementor-widget-wrap:before {
content: "";
position: absolute;
left: 0;
top: -46.5px;
width: 85px;
height: 47px;
background-color: inherit;
clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
@media (max-width: 1024px) {
.ova-column-special-shape .elementor-widget-wrap:before {
content: none;
}
}
.ova-element-column-gap-40px .elementor-widget-wrap {
column-gap: 40px;
}
.ova-element-column-gap-30px .elementor-widget-wrap {
column-gap: 30px;
}
.ova-element-column-gap-20px .elementor-widget-wrap {
column-gap: 20px;
}
.ova-element-column-margin-right-50px .elementor-widget-wrap {
margin: 0 50px 0 0;
}
.ova-element-column-margin-right-35px .elementor-widget-wrap {
margin: 0 35px 0 0;
}
.ova-element-column-margin-left-50px .elementor-widget-wrap {
margin: 0 0 0 50px;
}
.ova-element-column-margin-left-35px .elementor-widget-wrap {
margin: 0 0 0 35px;
}
.rtl .elementor-section.ova-section-no-margin-left .elementor-container {
margin-left: auto;
margin-right: 0;
}
.rtl .ova-element-column-margin-right-50px .elementor-widget-wrap {
margin: 0 0 0 50px;
}
.rtl .ova-element-column-margin-right-35px .elementor-widget-wrap {
margin: 0 0 0 35px;
}
.rtl .ova-element-column-margin-left-50px .elementor-widget-wrap {
margin: 0 50px 0 0;
}
.rtl .ova-element-column-margin-left-35px .elementor-widget-wrap {
margin: 0 35px 0 0;
}
.rtl .ovartl-bg-bottom-right {
background-position: bottom right !important;
}
.rtl .ovartl-bg-bottom-left {
background-position: bottom left !important;
}
.rtl .ovartl-bg-overlay-center-right .elementor-background-overlay {
background-position: center right !important;
}
.rtl .ovartl-bg-overlay-center-left .elementor-background-overlay {
background-position: center left !important;
}
.ova-images-slider.owl-carousel {
position: relative;
}
.ova-images-slider.owl-carousel .owl-stage-outer .owl-item .item-images-slider img {
margin: 0 auto;
width: auto;
max-height: 45px;
object-fit: cover;
}
.ova-images-slider.owl-carousel .owl-dots {
display: flex;
justify-content: center;
align-items: center;
margin: 20px 0 0;
position: relative;
bottom: 0;
}
.ova-images-slider.owl-carousel .owl-dots button {
margin: 0px 5px;
width: 6px;
height: 6px;
border-radius: 50%;
background: #d1d1d6;
}
.ova-images-slider.owl-carousel .owl-dots button.active {
background-color: var(--primary);
width: 12px;
border-radius: 5px;
}
.ova-images-slider.owl-carousel .owl-nav button {
position: absolute;
bottom: 30%;
width: 50px;
height: 50px;
border-radius: 100px;
padding: 0px;
border: 1px solid var(--primary);
border-color: transparent;
display: inline-flex;
justify-content: center;
align-items: center;
box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
background-color: #fff;
}
.ova-images-slider.owl-carousel .owl-nav button.owl-prev {
left: -50px;
}
.ova-images-slider.owl-carousel .owl-nav button.owl-next {
right: -50px;
}
.ova-images-slider.owl-carousel .owl-nav button i {
display: inline-flex;
font-size: 14px;
}
.ova-images-slider.owl-carousel .owl-nav button:hover {
background-color: var(--primary);
}
.ova-images-slider.owl-carousel .owl-nav button:hover i {
color: #ffffff;
}
.ova-price-list .item-price-list {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
position: relative;
border: 5px solid transparent;
margin: 0 0 20px;
box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.06);
padding: 25px 30px 25px 70px;
background-color: #fff;
}
@media (max-width: 767px) {
.ova-price-list .item-price-list {
padding: 25px 30px 25px 50px;
}
}
.ova-price-list .item-price-list.active {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
box-shadow: 0px 10px 60px 0px rgba(95, 45, 238, 0.3);
border-color: var(--primary);
}
.ova-price-list .item-price-list.active .dot {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
border-color: var(--primary);
background: var(--primary);
}
.ova-price-list .item-price-list .dot {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
position: absolute;
left: 25px;
top: 25px;
width: 25px;
height: 25px;
background: #efeafd;
border-radius: 100%;
box-shadow: inset 0px 0px 0px 4px white;
border: 1px solid #efeafd;
}
@media (max-width: 767px) {
.ova-price-list .item-price-list .dot {
left: 20px;
width: 20px;
height: 20px;
}
}
.ova-price-list .item-price-list .content .top-content {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
row-gap: 8px;
}
.ova-price-list .item-price-list .content .top-content .title {
margin: 0;
font-size: 24px;
font-weight: 800;
line-height: 1.2;
color: var(--heading);
}
@media (max-width: 767px) {
.ova-price-list .item-price-list .content .top-content .title {
font-size: 20px;
}
}
.ova-price-list .item-price-list .content .top-content .price-wrapper {
display: inline-flex;
align-items: flex-end;
}
.ova-price-list .item-price-list .content .top-content .price-wrapper .ova-price {
font-size: 30px;
color: var(--heading);
font-weight: 800;
line-height: 1;
}
@media (max-width: 767px) {
.ova-price-list .item-price-list .content .top-content .price-wrapper .ova-price {
font-size: 24px;
}
}
.ova-price-list .item-price-list .content .top-content .price-wrapper .period {
line-height: 1;
}
.ova-price-list .item-price-list .content .pricing-description {
margin: 10px 0 0;
}
.ova-price-list .choose-plan-button {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
font-size: 14px;
font-weight: bold;
text-transform: uppercase;
line-height: 1.2;
letter-spacing: 1.9px;
text-align: center;
color: #fff;
background-color: var(--primary);
display: block;
padding: 24px 0 20px;
position: relative;
z-index: 1;
}
@media (max-width: 1024px) {
.ova-price-list .choose-plan-button {
padding: 18px 0 13px;
}
}
.ova-price-list .choose-plan-button:hover {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
}
.ova-price-list .choose-plan-button:hover:after {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transform: scaleY(1);
}
.ova-price-list .choose-plan-button:after {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
content: "";
height: 100%;
background-color: var(--heading);
transform: scaleY(0);
transform-origin: top;
z-index: -1;
}
.ova-text-marquee {
position: relative;
overflow: hidden;
display: inline-flex;
align-items: center;
white-space: nowrap;
}
.ova-text-marquee .content-wrapper, .ova-text-marquee .content-wrapper-2 {
width: 200%;
}
.ova-text-marquee .content-wrapper .text, .ova-text-marquee .content-wrapper-2 .text {
font-size: 180px;
line-height: 1;
color: var(--heading);
width: 200%;
}
@media (max-width: 1024px) {
.ova-text-marquee .content-wrapper .text, .ova-text-marquee .content-wrapper-2 .text {
font-size: 120px;
}
}
@media (max-width: 767px) {
.ova-text-marquee .content-wrapper .text, .ova-text-marquee .content-wrapper-2 .text {
font-size: 70px;
}
}
.ova-text-marquee .content-wrapper {
animation: scroll 20s linear infinite;
animation-delay: -20s;
}
.ova-text-marquee .spacing {
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
width: 600px;
}
.ova-text-marquee .content-wrapper-2 {
animation: scroll2 20s linear infinite;
animation-delay: -10s;
}
@keyframes scroll {
0% {
transform: translateX(100%);
}
100% {
transform: translateX(-100%);
}
}
@keyframes scroll2 {
0% {
transform: translateX(0);
}
100% {
transform: translateX(-200%);
}
}
.ova-text-marquee.duration-slow .content-wrapper {
animation: scroll 30s linear infinite;
animation-delay: -30s;
}
.ova-text-marquee.duration-slow .content-wrapper-2 {
animation: scroll2 30s linear infinite;
animation-delay: -15s;
}
.ova-text-marquee.duration-fast .content-wrapper {
animation: scroll 10s linear infinite;
animation-delay: -10s;
}
.ova-text-marquee.duration-fast .content-wrapper-2 {
animation: scroll2 10s linear infinite;
animation-delay: -5s;
}
@keyframes ova_scroll {
0% {
transform: translateX(100%);
}
100% {
transform: translateX(-100%);
}
}
@keyframes ova_scroll2 {
0% {
transform: translateX(0);
}
100% {
transform: translateX(-200%);
}
}
@keyframes ova_scroll_ltr {
0% {
transform: translateX(-100%);
}
100% {
transform: translateX(100%);
}
}
@keyframes ova_scroll2_ltr {
0% {
transform: translateX(0);
}
100% {
transform: translateX(200%);
}
}
.ova-text-marquee-2 {
position: relative;
overflow: hidden;
display: inline-flex;
align-items: center;
white-space: nowrap;
width: 100%;
direction: ltr;
}
.ova-text-marquee-2.direction-ltr {
direction: rtl;
}
.ova-text-marquee-2.direction-ltr .content-wrapper {
animation: ova_scroll_ltr 20s linear infinite;
animation-delay: -20s;
}
.ova-text-marquee-2.direction-ltr .content-wrapper-2 {
animation: ova_scroll2_ltr 20s linear infinite;
animation-delay: -10s;
}
.ova-text-marquee-2.direction-ltr.duration-slow .content-wrapper {
animation: ova_scroll_ltr 20s linear infinite;
animation-delay: -20s;
}
.ova-text-marquee-2.direction-ltr.duration-slow .content-wrapper-2 {
animation: ova_scroll2_ltr 20s linear infinite;
animation-delay: -10s;
}
.ova-text-marquee-2.direction-ltr.duration-fast .content-wrapper {
animation: ova_scroll_ltr 10s linear infinite;
animation-delay: -10s;
}
.ova-text-marquee-2.direction-ltr.duration-fast .content-wrapper-2 {
animation: ova_scroll2_ltr 10s linear infinite;
animation-delay: -5s;
}
.ova-text-marquee-2 .content-wrapper .text, .ova-text-marquee-2 .content-wrapper-2 .text {
font-weight: 500;
font-size: 58px;
line-height: 1;
text-transform: capitalize;
color: var(--heading);
}
@media (max-width: 1024px) {
.ova-text-marquee-2 .content-wrapper .text, .ova-text-marquee-2 .content-wrapper-2 .text {
font-size: 48px;
}
}
.ova-text-marquee-2 .content-wrapper .text span, .ova-text-marquee-2 .content-wrapper-2 .text span {
color: var(--primary);
}
.ova-text-marquee-2 .content-wrapper .image, .ova-text-marquee-2 .content-wrapper-2 .image {
margin: 0 40px;
position: relative;
display: inline-flex;
flex-direction: column;
align-items: center;
justify-content: center;
vertical-align: bottom;
}
.ova-text-marquee-2 .content-wrapper .image img, .ova-text-marquee-2 .content-wrapper-2 .image img {
display: inline-block;
width: 62px;
height: 62px;
border-radius: 50%;
object-fit: cover;
}
.ova-text-marquee-2 .content-wrapper .image .line-decoration, .ova-text-marquee-2 .content-wrapper-2 .image .line-decoration {
display: inline-block;
width: 85px;
}
.ova-text-marquee-2 .content-wrapper {
animation: ova_scroll 20s linear infinite;
animation-delay: -20s;
}
.ova-text-marquee-2 .spacing {
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
width: 600px;
}
.ova-text-marquee-2 .content-wrapper-2 {
animation: ova_scroll2 20s linear infinite;
animation-delay: -10s;
}
.ova-text-marquee-2.duration-slow .content-wrapper {
animation: ova_scroll 20s linear infinite;
animation-delay: -20s;
}
.ova-text-marquee-2.duration-slow .content-wrapper-2 {
animation: ova_scroll2 20s linear infinite;
animation-delay: -10s;
}
.ova-text-marquee-2.duration-fast .content-wrapper {
animation: ova_scroll 10s linear infinite;
animation-delay: -10s;
}
.ova-text-marquee-2.duration-fast .content-wrapper-2 {
animation: ova_scroll2 10s linear infinite;
animation-delay: -5s;
}
.ova-text-marquee-3 {
position: relative;
overflow: hidden;
padding: 10px 0 4px 0;
display: inline-flex;
align-items: center;
white-space: nowrap;
background-color: var(--primary);
width: 100%;
direction: ltr;
}
.ova-text-marquee-3.direction-ltr {
direction: rtl;
}
.ova-text-marquee-3.direction-ltr .content-wrapper {
animation: ova_scroll_ltr 20s linear infinite;
animation-delay: -20s;
}
.ova-text-marquee-3.direction-ltr .content-wrapper-2 {
animation: ova_scroll2_ltr 20s linear infinite;
animation-delay: -10s;
}
.ova-text-marquee-3.direction-ltr.duration-slow .content-wrapper {
animation: ova_scroll_ltr 30s linear infinite;
animation-delay: -30s;
}
.ova-text-marquee-3.direction-ltr.duration-slow .content-wrapper-2 {
animation: ova_scroll2_ltr 30s linear infinite;
animation-delay: -15s;
}
.ova-text-marquee-3.direction-ltr.duration-fast .content-wrapper {
animation: ova_scroll_ltr 10s linear infinite;
animation-delay: -10s;
}
.ova-text-marquee-3.direction-ltr.duration-fast .content-wrapper-2 {
animation: ova_scroll2_ltr 10s linear infinite;
animation-delay: -5s;
}
.ova-text-marquee-3 .content-wrapper, .ova-text-marquee-3 .content-wrapper-2 {
width: 300%;
}
@media (max-width: 1024px) {
.ova-text-marquee-3 .content-wrapper, .ova-text-marquee-3 .content-wrapper-2 {
width: 400%;
}
}
@media (max-width: 767px) {
.ova-text-marquee-3 .content-wrapper, .ova-text-marquee-3 .content-wrapper-2 {
width: 700%;
}
}
.ova-text-marquee-3 .content-wrapper .icon, .ova-text-marquee-3 .content-wrapper-2 .icon {
margin: 0 30px;
display: inline-block;
vertical-align: middle;
}
.ova-text-marquee-3 .content-wrapper .icon i, .ova-text-marquee-3 .content-wrapper-2 .icon i {
font-size: 19px;
color: rgba(255, 255, 255, 0.22);
}
.ova-text-marquee-3 .content-wrapper .text, .ova-text-marquee-3 .content-wrapper-2 .text {
font-weight: 700;
font-size: 17px;
text-transform: uppercase;
color: #fff;
width: 200%;
}
.ova-text-marquee-3 .content-wrapper {
animation: ova_scroll 20s linear infinite;
animation-delay: -20s;
}
.ova-text-marquee-3 .spacing {
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
width: 600px;
}
.ova-text-marquee-3 .content-wrapper-2 {
animation: ova_scroll2 20s linear infinite;
animation-delay: -10s;
}
.ova-text-marquee-3.duration-slow .content-wrapper {
animation: ova_scroll 30s linear infinite;
animation-delay: -30s;
}
.ova-text-marquee-3.duration-slow .content-wrapper-2 {
animation: ova_scroll2 30s linear infinite;
animation-delay: -15s;
}
.ova-text-marquee-3.duration-fast .content-wrapper {
animation: ova_scroll 10s linear infinite;
animation-delay: -10s;
}
.ova-text-marquee-3.duration-fast .content-wrapper-2 {
animation: ova_scroll2 10s linear infinite;
animation-delay: -5s;
}
.ova-image-box {
padding: 30px 35px;
background-color: #fff;
box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}
.ova-image-box.ova-image-box-template2 {
padding: 25px 35px;
background-color: #f7f1fe;
border-radius: 50% 50% 0 0;
border-bottom: 2px solid var(--secondary);
box-shadow: none;
}
.ova-image-box.ova-image-box-template2 .title {
font-size: 22px;
}
.ova-image-box.ova-image-box-template2 .img {
width: 122px;
min-width: 122px;
height: 122px;
border-radius: 50%;
border: 4px solid #fff;
margin-bottom: 28px;
box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}
.ova-image-box .title-icon {
display: inline-flex;
align-items: center;
margin-bottom: 20px;
}
.ova-image-box .icon {
display: inline-block;
margin-right: 18px;
}
.ova-image-box .icon i {
display: inline-flex;
font-size: 30px;
color: var(--secondary);
}
.ova-image-box .title {
margin: 0;
font-size: 30px;
line-height: 1.2;
color: var(--heading);
}
.ova-image-box .sub-title {
margin: 0 0 20px 0;
font-size: 14px;
}
.ova-image-box .img {
display: inline-block;
vertical-align: middle;
width: 100%;
object-fit: cover;
}
.ova-progress .ova-progress-title {
margin: 0 0 13px 0;
font-weight: 800;
font-size: 18px;
line-height: 1.7;
color: var(--heading);
}
.ova-progress .ova-percent-view {
height: 7px;
width: 100%;
background-color: #efeafd;
position: relative;
}
.ova-progress .ova-percent-view .ova-percent {
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
height: 7px;
float: left;
background-color: var(--primary);
}
.ova-progress .ova-percent-view .percentage {
position: absolute;
bottom: calc(100% + 13px);
right: 0;
font-size: 18px;
font-weight: 800;
line-height: 1.7;
color: var(--heading);
}
@media (max-width: 1024px) {
.ova-warp-countdown {
text-align: center;
}
}
.ova-warp-countdown .ova-content-countdown {
display: inline-block;
text-align: center;
}
.ova-warp-countdown .ova-content-countdown .ova-countdown-title {
font-weight: 600;
font-size: 20px;
line-height: 30px;
color: var(--heading);
}
.ova-warp-countdown .ova-content-countdown .ova-countdown {
display: flex;
align-items: center;
justify-content: flex-start;
flex-wrap: wrap;
}
.ova-warp-countdown .ova-content-countdown .ova-countdown .ova-countdown-item {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: #fff;
border: 1px solid rgba(29, 23, 41, 0.1019607843);
width: 100px;
min-width: 100px;
height: 100px;
}
@media (max-width: 1300px) {
.ova-warp-countdown .ova-content-countdown .ova-countdown .ova-countdown-item {
width: 80px;
min-width: 80px;
height: 80px;
}
}
@media (max-width: 450px) {
.ova-warp-countdown .ova-content-countdown .ova-countdown .ova-countdown-item {
margin: 0 10px 10px 0;
width: 60px;
min-width: 60px;
height: 60px;
}
}
.ova-warp-countdown .ova-content-countdown .ova-countdown .ova-countdown-item .ova-wrap-time-item .ova-number {
display: block;
font-weight: 800;
font-size: 48px;
line-height: 1.2;
color: var(--heading);
margin: -10px 0 0 0;
width: 80px;
}
@media (max-width: 1300px) {
.ova-warp-countdown .ova-content-countdown .ova-countdown .ova-countdown-item .ova-wrap-time-item .ova-number {
margin: -5px 0 0 0;
font-size: 35px;
width: 58px;
}
}
@media (max-width: 450px) {
.ova-warp-countdown .ova-content-countdown .ova-countdown .ova-countdown-item .ova-wrap-time-item .ova-number {
margin: 0;
font-size: 28px;
width: 45px;
}
}
.ova-warp-countdown .ova-content-countdown .ova-countdown .ova-countdown-item .ova-wrap-time-item .countdown-label {
display: block;
font-size: 16px;
line-height: 1.2;
font-weight: 800;
color: var(--heading);
margin: 0;
}
@media (max-width: 450px) {
.ova-warp-countdown .ova-content-countdown .ova-countdown .ova-countdown-item .ova-wrap-time-item .countdown-label {
font-size: 14px;
}
}
.ova-warp-countdown .ova-content-countdown .ova-countdown .countdown-separator {
display: inline-block;
font-size: 50px;
color: var(--heading);
margin: 0 20px;
}
@media (max-width: 1300px) {
.ova-warp-countdown .ova-content-countdown .ova-countdown .countdown-separator {
margin: 0 10px;
}
}
@media (max-width: 450px) {
.ova-warp-countdown .ova-content-countdown .ova-countdown .countdown-separator {
display: none;
}
}
.ova-warp-countdown .ova-content-countdown .ova-message {
font-weight: 700;
font-size: 14px;
line-height: 1.2;
text-align: center;
margin: 20px auto 0;
background-color: #FC3352;
color: #fff;
border-radius: 0;
padding: 24px 50px 19px;
text-transform: uppercase;
display: inline-block;
}
@media screen and (max-width: 450px) {
.ova-warp-countdown .ova-content-countdown .ova-message {
padding: 15px 20px 10px;
}
}
@media screen and (max-width: 320px) {
.ova-warp-countdown .ova-content-countdown .ova-message {
width: 100%;
}
}
.ova-process {
position: relative;
display: grid;
grid-row-gap: 50px;
}
.ova-process.one_column .item-process:before {
content: none !important;
}
.ova-process.two_column {
grid-template-columns: 1fr 1fr;
}
@media (max-width: 1024px) {
.ova-process.two_column {
grid-template-columns: auto;
}
.ova-process.two_column .item-process:before {
content: none !important;
}
}
.ova-process.three_column {
grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 1200px) {
.ova-process.three_column {
grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 1024px) {
.ova-process.three_column {
grid-template-columns: auto;
}
.ova-process.three_column .item-process:before {
content: none !important;
}
}
.ova-process .item-process {
position: relative;
text-align: center;
}
.ova-process .item-process:before {
position: absolute;
content: "";
top: 150px;
width: 100%;
height: 1px;
border: 1px dotted #D7CDCD;
}
.ova-process .item-process:last-child:before {
content: none;
}
.ova-process .item-process .image-process {
position: relative;
display: inline-flex;
justify-content: center;
align-items: center;
width: 300px;
height: 300px;
border-radius: 50%;
background-color: #F0F2F5;
}
.ova-process .item-process .image-process .text_number {
transition: all 0.4s ease;
-moz-transition: all 0.4s ease;
-webkit-transition: all 0.4s ease;
-o-transition: all 0.4s ease;
position: absolute;
right: 45px;
top: 0;
box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.06);
background-color: #fff;
width: 40px;
height: 40px;
display: inline-flex;
justify-content: center;
align-items: center;
border-radius: 50%;
font-family: "Plus Jakarta Sans";
font-size: 16px;
line-height: 1;
font-weight: bold;
color: var(--heading);
text-transform: uppercase;
z-index: 2;
}
.ova-process .item-process .image-process img {
position: relative;
display: block;
object-fit: cover;
max-height: 100%;
border-radius: 50%;
z-index: 1;
}
.ova-process .item-process .info {
position: relative;
}
.ova-process .item-process .info a:hover .title {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
color: var(--primary);
}
.ova-process .item-process .info .title {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
margin: 34px 0 0 0;
font-size: 24px;
line-height: 1.2;
padding-bottom: 20px;
}
.ova-process .item-process .info .description {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
margin: 0;
font-size: 16px;
line-height: 1.5;
padding: 0 24px;
}
@media (max-width: 460px) {
.ova-process .item-process .info .description {
padding: 0 5px;
}
}
.ova-invisible {
visibility: hidden;
}
.rtl .ova-progress .ova-percent-view .percentage {
right: unset;
left: 0;
}
.rtl .ova-progress .ova-percent-view .ova-percent {
left: unset;
right: 0;
}
.ova-service-toggle .item {
padding: 45px 0;
border-bottom: 1px solid #D9D9D9;
cursor: pointer;
}
.ova-service-toggle .item:hover .toggle .title {
transition: all 0.3s ease;
color: var(--primary);
}
.ova-service-toggle .item .toggle {
display: flex;
align-items: center;
justify-content: space-between;
column-gap: 35px;
row-gap: 15px;
}
@media (max-width: 1024px) {
.ova-service-toggle .item .toggle {
flex-direction: column;
align-items: flex-start;
}
}
.ova-service-toggle .item .toggle .heading-wrap, .ova-service-toggle .item .toggle .info-wrap {
display: flex;
align-items: center;
column-gap: 35px;
}
.ova-service-toggle .item .toggle .heading-wrap {
width: 43%;
}
@media (max-width: 1024px) {
.ova-service-toggle .item .toggle .heading-wrap {
width: 100%;
}
}
.ova-service-toggle .item .toggle .info-wrap {
justify-content: space-between;
width: 57%;
}
@media (max-width: 1024px) {
.ova-service-toggle .item .toggle .info-wrap {
width: 100%;
}
}
.ova-service-toggle .item .toggle .icon i {
display: inline-flex;
font-size: 52px;
color: var(--primary);
}
.ova-service-toggle .item .toggle .title {
transition: all 0.3s ease;
margin: 0;
line-height: 1.4;
}
.ova-service-toggle .item .toggle .description {
margin: 0;
}
.ova-service-toggle .item .toggle .toggle-icon.active i {
color: var(--primary);
}
.ova-service-toggle .item .toggle .toggle-icon i {
font-size: 24px;
color: var(--heading);
}
@media (max-width: 1024px) {
.ova-service-toggle .item .toggle .toggle-icon i {
font-size: 20px;
}
}
.ova-service-toggle .item .service-content {
transition: all 0.3s ease;
margin: 0;
display: flex;
align-items: center;
column-gap: 35px;
visibility: hidden;
opacity: 0;
height: 0;
}
@media (max-width: 1024px) {
.ova-service-toggle .item .service-content {
flex-direction: column;
align-items: flex-start;
}
}
.ova-service-toggle .item .service-content.active {
transition: all 0.3s ease;
margin: 30px 0 0 0;
height: auto;
visibility: visible;
opacity: 1;
}
.ova-service-toggle .item .service-content.active .content {
opacity: 1;
}
.ova-service-toggle .item .service-content .spacing {
width: 43%;
}
@media (max-width: 1024px) {
.ova-service-toggle .item .service-content .spacing {
width: 100%;
}
}
.ova-service-toggle .item .service-content .content {
width: 57%;
opacity: 0;
}
@media (max-width: 1024px) {
.ova-service-toggle .item .service-content .content {
width: 100%;
}
}
.ova-latest-posts .item {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
display: flex;
gap: 15px;
padding: 10px;
margin: 0 -10px;
}
.ova-latest-posts .item:last-child {
margin-bottom: 0;
}
.ova-latest-posts .item:hover {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.ova-latest-posts .item:hover .info .post-title a {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
color: var(--primary);
}
.ova-latest-posts .item .media {
gap: 15px;
}
.ova-latest-posts .item .media a {
display: flex;
position: relative;
overflow: hidden;
height: 100%;
}
.ova-latest-posts .item .media a img {
width: 70px;
min-width: 70px;
height: 70px;
object-fit: cover;
object-position: center;
}
.ova-latest-posts .item .info {
display: flex;
justify-content: center;
flex-flow: column;
}
.ova-latest-posts .item .info .post-title {
margin: 5px 0;
font-size: 16px;
font-weight: 600;
line-height: 1.2;
}
.ova-latest-posts .item .info .post-title a {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
color: var(--heading);
}
.ova-latest-posts .item .info .item-meta {
margin: 5px 0;
font-size: 12px;
color: var(--primary);
font-weight: 500;
line-height: 1;
}
.ova-gallery-filter .filter-btn-wrapper {
list-style-type: none;
text-align: center;
margin: 0 0 50px 0;
padding: 0;
}
.ova-gallery-filter .filter-btn-wrapper li.filter-btn {
font-size: 18px;
font-weight: 500;
line-height: 1.2;
text-transform: capitalize;
cursor: pointer;
display: inline-block;
padding: 10px 20px;
transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-webkit-transition: all 0.3s linear;
-o-transition: all 0.3s linear;
}
.ova-gallery-filter .filter-btn-wrapper li.filter-btn.active-category, .ova-gallery-filter .filter-btn-wrapper li.filter-btn:hover {
color: #fff;
background: var(--primary);
}
.ova-gallery-filter .gallery-column.three_column .gallery-item {
width: calc(33.33% - 20px);
}
@media (max-width: 991px) {
.ova-gallery-filter .gallery-column.three_column .gallery-item {
width: calc(50% - 15px);
}
}
@media (max-width: 767px) {
.ova-gallery-filter .gallery-column.three_column .gallery-item {
width: 100%;
}
}
.ova-gallery-filter .gallery-column.four_column .gallery-item {
width: calc(25% - 25px);
}
@media (max-width: 1024px) {
.ova-gallery-filter .gallery-column.four_column .gallery-item {
width: calc(33.33% - 20px);
}
}
@media (max-width: 991px) {
.ova-gallery-filter .gallery-column.four_column .gallery-item {
width: calc(50% - 15px);
}
}
@media (max-width: 767px) {
.ova-gallery-filter .gallery-column.four_column .gallery-item {
width: 100%;
}
}
.ova-gallery-filter .gallery-item {
margin-bottom: 50px;
}
.ova-gallery-filter .gallery-item:hover .gallery-img img {
-webkit-transition: 0.6s;
transition: 0.6s;
transform: scale(1.05);
}
.ova-gallery-filter .gallery-item:hover .gallery-img .icon {
-webkit-transition: 0.7s;
transition: 0.7s;
transform: translate(-50%, -50%);
opacity: 1;
visibility: visible;
}
.ova-gallery-filter .gallery-item:hover .gallery-img .mask {
-webkit-transition: 0.6s;
transition: 0.6s;
-webkit-transform: perspective(400px) rotateX(0deg) scale(1);
transform: perspective(400px) rotateX(0deg) scale(1);
opacity: 0.4;
}
.ova-gallery-filter .gallery-item .gallery-img {
position: relative;
overflow: hidden;
}
.ova-gallery-filter .gallery-item .gallery-img img {
-webkit-transition: 0.6s;
transition: 0.6s;
display: block;
width: 100%;
height: 330px;
object-fit: cover;
transform: scale(1.001);
}
.ova-gallery-filter .gallery-item .gallery-img .icon {
-webkit-transition: 0.7s;
transition: 0.7s;
position: absolute;
z-index: 1;
left: 50%;
top: 50%;
background-color: var(--primary);
width: 50px;
height: 50px;
border-radius: 50%;
opacity: 0;
visibility: hidden;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
}
.ova-gallery-filter .gallery-item .gallery-img .icon:hover i {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transform: rotate(-90deg);
}
.ova-gallery-filter .gallery-item .gallery-img .icon i {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
display: inline-flex;
color: #fff;
}
.ova-gallery-filter .gallery-item .gallery-img .mask {
-webkit-transition: 0.6s;
transition: 0.6s;
position: absolute;
content: "";
top: 0;
left: 0;
right: 0;
width: 100%;
height: 100%;
background: rgba(26, 26, 61, 0.8);
mix-blend-mode: normal;
opacity: 0;
-webkit-transform: perspective(400px) rotateX(-90deg) scale(0.2);
transform: perspective(400px) rotateX(-90deg) scale(0.2);
-webkit-transform-origin: top;
transform-origin: top;
}
.ova-gallery-filter .gallery-item .title {
margin: 30px 0 8px 0;
font-size: 24px;
font-weight: 700;
line-height: 31px;
}
.ova-gallery-filter .gallery-item .description {
font-weight: 500;
margin: 0;
line-height: 21px;
}
.ova-road-map {
direction: ltr;
}
.ova-road-map h3, .ova-road-map p {
margin: 0;
}
.ova-road-map .road-map-wrapper {
padding: 110px 0;
}
@media (max-width: 1170px) {
.ova-road-map .road-map-wrapper {
padding: 80px 0;
}
}
.ova-road-map .road-map-wrapper .timeline-column .timeline-item {
position: relative;
display: flex;
flex-wrap: nowrap;
justify-content: space-between;
}
.ova-road-map .road-map-wrapper .timeline-column .timeline-item.active .timeline-info:before {
width: 35px;
height: 35px;
}
.ova-road-map .road-map-wrapper .timeline-column .timeline-item.active .timeline-info:after {
width: 23px;
height: 23px;
}
.ova-road-map .road-map-wrapper .timeline-column .timeline-item.active .timeline-image {
border-top-color: var(--primary);
}
.ova-road-map .road-map-wrapper .timeline-column .timeline-item.active .timeline-image:before {
background-color: var(--primary);
}
.ova-road-map .road-map-wrapper .timeline-column .timeline-item:before {
position: absolute;
content: "";
height: 100%;
width: 0;
left: 50%;
bottom: 0;
border-left: 1px solid var(--light);
}
@media screen and (max-width: 1170px) {
.ova-road-map .road-map-wrapper .timeline-column .timeline-item:before {
left: 0;
}
}
.ova-road-map .road-map-wrapper .timeline-column .timeline-item .timeline-image {
position: relative;
width: 50%;
padding-top: 16px;
border-top: 1px solid var(--light);
}
@media screen and (max-width: 1170px) {
.ova-road-map .road-map-wrapper .timeline-column .timeline-item .timeline-image {
width: 100%;
padding-left: 55px;
}
}
.ova-road-map .road-map-wrapper .timeline-column .timeline-item .timeline-image:before {
position: absolute;
content: "";
top: 0;
width: 1px;
height: 100%;
background-color: var(--light);
}
@media screen and (max-width: 1170px) {
.ova-road-map .road-map-wrapper .timeline-column .timeline-item .timeline-image:before {
right: unset;
left: 560px;
}
}
@media screen and (max-width: 600px) {
.ova-road-map .road-map-wrapper .timeline-column .timeline-item .timeline-image:before {
left: 0;
content: none;
}
}
.ova-road-map .road-map-wrapper .timeline-column .timeline-item .timeline-image img {
display: block;
width: 490px;
height: 253px;
object-fit: cover;
object-position: center;
}
.ova-road-map .road-map-wrapper .timeline-column .timeline-item .timeline-info {
position: relative;
width: 50%;
}
@media screen and (max-width: 1170px) {
.ova-road-map .road-map-wrapper .timeline-column .timeline-item .timeline-info {
width: 100%;
padding-top: 20px;
}
}
.ova-road-map .road-map-wrapper .timeline-column .timeline-item .timeline-info:before {
position: absolute;
z-index: 1;
content: "";
top: 0;
width: 23px;
height: 23px;
background-color: var(--primary);
border-radius: 50%;
}
.ova-road-map .road-map-wrapper .timeline-column .timeline-item .timeline-info:after {
position: absolute;
z-index: 1;
content: "";
background-color: #fff;
border-radius: 50%;
top: 0;
width: 11px;
height: 11px;
}
.ova-road-map .road-map-wrapper .timeline-column .timeline-item .timeline-info .content-info {
position: relative;
background-color: #fff;
z-index: 1;
}
@media screen and (max-width: 600px) {
.ova-road-map .road-map-wrapper .timeline-column .timeline-item .timeline-info .content-info {
content: none;
}
}
.ova-road-map .road-map-wrapper .timeline-column .timeline-item .timeline-info .content-info .date {
font-weight: 600;
font-size: 14px;
color: var(--primary);
}
.ova-road-map .road-map-wrapper .timeline-column .timeline-item .timeline-info .content-info .timeline-content .title {
font-size: 40px;
font-weight: 800;
line-height: 1.2;
}
@media screen and (max-width: 1170px) {
.ova-road-map .road-map-wrapper .timeline-column .timeline-item .timeline-info .content-info .timeline-content .title {
font-size: 35px;
}
}
@media screen and (max-width: 600px) {
.ova-road-map .road-map-wrapper .timeline-column .timeline-item .timeline-info .content-info .timeline-content .title {
font-size: 30px;
}
}
.ova-road-map .road-map-wrapper .timeline-column .timeline-item .timeline-info .content-info .timeline-content .desc {
margin-top: 30px;
font-weight: 500;
}
@media screen and (max-width: 1170px) {
.ova-road-map .road-map-wrapper .timeline-column .timeline-item-left {
flex-direction: column;
}
}
.ova-road-map .road-map-wrapper .timeline-column .timeline-item-left:first-child:before {
height: 125%;
}
@media screen and (max-width: 1170px) {
.ova-road-map .road-map-wrapper .timeline-column .timeline-item-left:first-child:before {
height: 115%;
}
}
.ova-road-map .road-map-wrapper .timeline-column .timeline-item-left:first-child:after {
position: absolute;
content: "";
height: 11px;
width: 11px;
top: -92px;
left: 50%;
border-radius: 50%;
transform: translateX(-50%);
background-color: var(--light);
z-index: 9;
}
@media screen and (max-width: 1170px) {
.ova-road-map .road-map-wrapper .timeline-column .timeline-item-left:first-child:after {
left: 0;
}
}
@media screen and (max-width: 600px) {
.ova-road-map .road-map-wrapper .timeline-column .timeline-item-left:first-child:after {
content: none;
}
}
.ova-road-map .road-map-wrapper .timeline-column .timeline-item-left:not(:first-child):before {
height: 128%;
top: 0;
}
.ova-road-map .road-map-wrapper .timeline-column .timeline-item-left:last-child:before {
height: 140%;
top: 0;
}
.ova-road-map .road-map-wrapper .timeline-column .timeline-item-left:not(:last-child) {
padding-bottom: 90px;
}
.ova-road-map .road-map-wrapper .timeline-column .timeline-item-left .timeline-image:before {
left: 505px;
}
@media screen and (max-width: 1170px) {
.ova-road-map .road-map-wrapper .timeline-column .timeline-item-left .timeline-image:before {
left: 560px;
}
}
.ova-road-map .road-map-wrapper .timeline-column .timeline-item-left .timeline-info:before, .ova-road-map .road-map-wrapper .timeline-column .timeline-item-left .timeline-info:after {
left: 0;
transform: translate(-50%, -50%);
}
.ova-road-map .road-map-wrapper .timeline-column .timeline-item-left .timeline-info .content-info {
margin-left: 55px;
}
@media screen and (max-width: 1170px) {
.ova-road-map .road-map-wrapper .timeline-column .timeline-item-right {
flex-direction: column-reverse;
}
}
.ova-road-map .road-map-wrapper .timeline-column .timeline-item-right:not(:first-child):before {
height: 125%;
top: 0;
}
@media screen and (max-width: 1170px) {
.ova-road-map .road-map-wrapper .timeline-column .timeline-item-right:not(:first-child):before {
height: 114%;
}
}
.ova-road-map .road-map-wrapper .timeline-column .timeline-item-right:last-child:before {
height: 140%;
top: 0;
}
.ova-road-map .road-map-wrapper .timeline-column .timeline-item-right:last-child:after {
position: absolute;
content: "";
height: 11px;
width: 11px;
bottom: -70px;
left: 50%;
border-radius: 50%;
transform: translateX(-50%);
background-color: var(--light);
z-index: 9;
}
@media screen and (max-width: 1170px) {
.ova-road-map .road-map-wrapper .timeline-column .timeline-item-right:last-child:after {
left: 0;
}
}
@media screen and (max-width: 600px) {
.ova-road-map .road-map-wrapper .timeline-column .timeline-item-right:last-child:after {
content: none;
}
}
.ova-road-map .road-map-wrapper .timeline-column .timeline-item-right:not(:last-child) {
padding-bottom: 90px;
}
.ova-road-map .road-map-wrapper .timeline-column .timeline-item-right .timeline-image img {
margin-left: auto;
}
@media screen and (max-width: 1170px) {
.ova-road-map .road-map-wrapper .timeline-column .timeline-item-right .timeline-image img {
margin-left: 0;
}
}
.ova-road-map .road-map-wrapper .timeline-column .timeline-item-right .timeline-image:before {
right: 505px;
}
.ova-road-map .road-map-wrapper .timeline-column .timeline-item-right .timeline-info:before, .ova-road-map .road-map-wrapper .timeline-column .timeline-item-right .timeline-info:after {
right: 0;
transform: translate(50%, -50%);
}
@media screen and (max-width: 1170px) {
.ova-road-map .road-map-wrapper .timeline-column .timeline-item-right .timeline-info:before, .ova-road-map .road-map-wrapper .timeline-column .timeline-item-right .timeline-info:after {
right: unset;
left: 0;
transform: translate(-50%, -50%);
}
}
.ova-road-map .road-map-wrapper .timeline-column .timeline-item-right .timeline-info .content-info {
margin-right: 55px;
text-align: right;
}
@media screen and (max-width: 1170px) {
.ova-road-map .road-map-wrapper .timeline-column .timeline-item-right .timeline-info .content-info {
margin-right: unset;
margin-left: 55px;
text-align: left;
}
}
.ova-road-map.template_2 .road-map-wrapper .timeline-column .timeline-item {
margin: -60px auto 0 auto;
padding: 0;
max-width: 1000px;
flex-direction: column;
}
@media screen and (max-width: 1170px) {
.ova-road-map.template_2 .road-map-wrapper .timeline-column .timeline-item {
margin-top: 60px;
align-items: flex-end;
}
}
.ova-road-map.template_2 .road-map-wrapper .timeline-column .timeline-item.active .timeline-info:after {
background-color: var(--primary);
}
.ova-road-map.template_2 .road-map-wrapper .timeline-column .timeline-item.active .timeline-info .content-info {
background-color: var(--primary);
}
.ova-road-map.template_2 .road-map-wrapper .timeline-column .timeline-item.active .timeline-info .content-info .date {
color: #fff;
}
.ova-road-map.template_2 .road-map-wrapper .timeline-column .timeline-item.active .timeline-info .content-info .timeline-content .title, .ova-road-map.template_2 .road-map-wrapper .timeline-column .timeline-item.active .timeline-info .content-info .timeline-content .desc {
color: #fff;
}
.ova-road-map.template_2 .road-map-wrapper .timeline-column .timeline-item:before {
height: 115%;
}
.ova-road-map.template_2 .road-map-wrapper .timeline-column .timeline-item:last-child:before {
height: 89%;
}
.ova-road-map.template_2 .road-map-wrapper .timeline-column .timeline-item:last-child:after {
content: none;
}
.ova-road-map.template_2 .road-map-wrapper .timeline-column .timeline-item:first-child:after {
content: none;
}
.ova-road-map.template_2 .road-map-wrapper .timeline-column .timeline-item .timeline-image {
width: 43%;
border: none;
padding: 0;
}
@media screen and (max-width: 1170px) {
.ova-road-map.template_2 .road-map-wrapper .timeline-column .timeline-item .timeline-image {
width: 93%;
}
}
.ova-road-map.template_2 .road-map-wrapper .timeline-column .timeline-item .timeline-image:before {
content: none;
}
.ova-road-map.template_2 .road-map-wrapper .timeline-column .timeline-item .timeline-image img {
width: 100%;
}
.ova-road-map.template_2 .road-map-wrapper .timeline-column .timeline-item .timeline-info {
width: 43%;
}
@media screen and (max-width: 1170px) {
.ova-road-map.template_2 .road-map-wrapper .timeline-column .timeline-item .timeline-info {
width: 93%;
}
}
.ova-road-map.template_2 .road-map-wrapper .timeline-column .timeline-item .timeline-info:before {
top: -56%;
width: 33px;
height: 33px;
background-color: #fff;
border: 1px solid rgba(16, 47, 129, 0.1);
}
.ova-road-map.template_2 .road-map-wrapper .timeline-column .timeline-item .timeline-info:after {
top: -56%;
background-color: var(--heading);
width: 13px;
height: 13px;
}
.ova-road-map.template_2 .road-map-wrapper .timeline-column .timeline-item .timeline-info .content-info {
margin: -50px auto 0 auto;
padding: 25px 35px;
width: calc(100% - 40px);
text-align: left;
box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1170px) {
.ova-road-map.template_2 .road-map-wrapper .timeline-column .timeline-item .timeline-info .content-info {
width: calc(100% - 30px);
padding: 20px;
}
}
.ova-road-map.template_2 .road-map-wrapper .timeline-column .timeline-item .timeline-info .content-info .date {
text-transform: uppercase;
}
.ova-road-map.template_2 .road-map-wrapper .timeline-column .timeline-item .timeline-info .content-info .timeline-content .title {
margin: 6px 0 0 0;
font-size: 24px;
}
.ova-road-map.template_2 .road-map-wrapper .timeline-column .timeline-item .timeline-info .content-info .timeline-content .desc {
margin-top: 18px;
}
.ova-road-map.template_2 .road-map-wrapper .timeline-column .timeline-item-left .timeline-info:before, .ova-road-map.template_2 .road-map-wrapper .timeline-column .timeline-item-left .timeline-info:after {
left: unset;
right: calc(-7% - 40px);
transform: translate(50%, -50%);
}
@media screen and (max-width: 1170px) {
.ova-road-map.template_2 .road-map-wrapper .timeline-column .timeline-item-left .timeline-info:before, .ova-road-map.template_2 .road-map-wrapper .timeline-column .timeline-item-left .timeline-info:after {
right: unset;
left: calc(-7% - 5px);
transform: translate(-50%, -50%);
}
}
@media screen and (max-width: 600px) {
.ova-road-map.template_2 .road-map-wrapper .timeline-column .timeline-item-left .timeline-info:before, .ova-road-map.template_2 .road-map-wrapper .timeline-column .timeline-item-left .timeline-info:after {
left: calc(-7% - 1px);
}
}
.ova-road-map.template_2 .road-map-wrapper .timeline-column .timeline-item-right {
flex-direction: column-reverse;
align-items: flex-end;
}
.ova-road-map.template_2 .road-map-wrapper .timeline-column .timeline-item-right .timeline-info:before, .ova-road-map.template_2 .road-map-wrapper .timeline-column .timeline-item-right .timeline-info:after {
left: calc(-7% - 40px);
transform: translate(-50%, -50%);
}
@media screen and (max-width: 1170px) {
.ova-road-map.template_2 .road-map-wrapper .timeline-column .timeline-item-right .timeline-info:before, .ova-road-map.template_2 .road-map-wrapper .timeline-column .timeline-item-right .timeline-info:after {
left: calc(-7% - 5px);
}
}
@media screen and (max-width: 600px) {
.ova-road-map.template_2 .road-map-wrapper .timeline-column .timeline-item-right .timeline-info:before, .ova-road-map.template_2 .road-map-wrapper .timeline-column .timeline-item-right .timeline-info:after {
left: calc(-7% - 1px);
}
}
.ova-invisible {
visibility: hidden;
}
.ova-pricing-tab .tab-pricing-switch {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 60px;
}
.ova-pricing-tab .tab-pricing-switch .price-label {
font-size: 20px;
line-height: 1.5;
font-weight: 600;
text-align: center;
}
.ova-pricing-tab .tab-pricing-switch .price-label.label-active {
color: var(--primary);
}
@media (max-width: 430px) {
.ova-pricing-tab .tab-pricing-switch .price-label {
font-size: 16px;
}
}
.ova-pricing-tab .tab-pricing-switch .switch {
position: relative;
display: inline-block;
min-width: 72px;
width: 72px;
height: 38px;
margin: 0 16px;
}
.ova-pricing-tab .tab-pricing-switch .switch.switch-active .slider:before {
-webkit-transform: translateX(34px);
-ms-transform: translateX(34px);
transform: translateX(34px);
}
.ova-pricing-tab .tab-pricing-switch .switch .slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #E4E0EE;
-webkit-transition: 0.4s;
transition: 0.4s;
}
.ova-pricing-tab .tab-pricing-switch .switch .slider:before {
position: absolute;
content: "";
height: 30px;
width: 30px;
left: 4px;
bottom: 4px;
background-color: var(--primary);
-webkit-transition: 0.4s;
transition: 0.4s;
}
.ova-pricing-tab .tab-pricing-switch .switch .slider.round {
border-radius: 34px;
}
.ova-pricing-tab .tab-pricing-switch .switch .slider.round:before {
border-radius: 50%;
}
.ova-pricing-tab .tab-pricing-content {
text-align: center;
}
.ova-pricing-tab .tab-pricing-content .tab-pane {
display: none;
}
.ova-pricing-tab .tab-pricing-content .tab-pane.active {
display: block;
}
.ova-switch-language {
position: relative;
display: inline-flex;
justify-content: flex-start;
align-items: center;
column-gap: 6px;
}
.ova-switch-language .flag-img {
position: absolute;
left: -4px;
display: block;
width: 25px;
height: 25px;
object-fit: cover;
border-radius: 50%;
border: 3px solid #3F3F3F;
}
.ova-switch-language select#ova-language {
margin: 0;
padding: 5px 27px;
appearance: none;
outline: 0;
border: 0;
box-shadow: none;
background-color: transparent;
background-image: none;
overflow: hidden;
color: var(--heading);
}
.ova-switch-language select#ova-language option {
color: var(--heading);
background-color: #fff;
}
.ova-switch-language select#ova-language:hover {
cursor: pointer;
}
.ova-switch-language .icon-select {
position: absolute;
right: 12px;
line-height: 1;
}
.ova-switch-language .icon-select i {
font-size: 10px;
list-style: 1;
color: var(--heading);
}
.ova-switch-language .icon-select i:before {
font-weight: 600 !important;
}
.ova-menu-cart {
position: relative;
line-height: 1;
}
.ova-menu-cart .cart-total {
cursor: pointer;
display: inline-flex;
align-items: center;
}
.ova-menu-cart .cart-total i {
display: inline-flex;
font-size: 24px;
margin-right: 2px;
}
.ova-menu-cart .cart-total .items {
display: inline-flex;
justify-content: center;
align-items: center;
color: #fff;
background-color: #FF6159;
width: 22px;
height: 22px;
border-radius: 50%;
font-size: 0.9em;
line-height: 1;
margin-top: -15px;
}
.ova-menu-cart .minicart {
transition: all 0.5s ease;
position: absolute;
right: 0;
top: 0;
width: 280px;
color: #000;
background-color: #fff;
font-size: 14px;
line-height: 1.2;
padding: 1.5em 1em;
visibility: hidden;
opacity: 0;
display: block;
box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
}
.ova-menu-cart .minicart p.woocommerce-mini-cart__buttons {
margin: 0;
display: flex;
gap: 10px;
justify-content: space-between;
clear: both;
}
.ova-menu-cart .minicart p.woocommerce-mini-cart__buttons a {
transition: all 0.3s ease;
width: 100%;
color: #fff;
text-align: center;
background-color: var(--primary);
border-radius: 0;
border: 1px solid var(--primary);
}
.ova-menu-cart .minicart p.woocommerce-mini-cart__buttons a:hover {
transition: all 0.3s ease;
background-color: transparent;
color: var(--primary);
}
.ova-menu-cart .minicart p.woocommerce-mini-cart__empty-message {
margin: 0;
}
.ova-menu-cart .minicart ul.woocommerce-mini-cart {
list-style: none;
padding: 0;
margin: 0;
}
.ova-menu-cart .minicart ul.woocommerce-mini-cart li:after {
content: "";
clear: both;
display: table;
}
.ova-menu-cart .minicart ul.woocommerce-mini-cart li a {
display: inline;
padding: 0;
text-transform: capitalize;
font-weight: 500;
}
.ova-menu-cart .minicart ul.woocommerce-mini-cart li a.remove {
padding: 0 5px 0 0;
background-color: transparent;
font-size: 1em;
width: 1em;
height: 1em;
}
.ova-menu-cart .minicart ul.woocommerce-mini-cart li a.remove:hover {
background-color: transparent;
color: var(--primary-hover);
}
.ova-menu-cart .minicart ul.woocommerce-mini-cart li img {
width: 90px;
float: right;
margin-bottom: 20px;
}
.ova-menu-cart .minicart ul.woocommerce-mini-cart li dl.variation {
display: none;
}
.ova-menu-cart:hover .minicart {
transition: all 0.5s ease;
z-index: 9999;
top: 32px;
visibility: visible;
opacity: 1;
}
.rtl .ova-menu-cart .minicart {
right: unset;
left: 0;
}
.ova-step-slider .slide-step-slider .owl-item.active.active-displayText .item .step-slider-img.active_grayscale img {
filter: grayscale(100%);
}
.ova-step-slider .slide-step-slider .owl-item.active.active-displayText .item .info {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
opacity: 1;
visibility: visible;
bottom: 5px;
}
.ova-step-slider .slide-step-slider .owl-item .item {
position: relative;
}
.ova-step-slider .slide-step-slider .owl-item .item:hover .info {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
opacity: 1;
visibility: visible;
bottom: 5px;
}
.ova-step-slider .slide-step-slider .owl-item .item .step-slider-img {
width: 100%;
}
.ova-step-slider .slide-step-slider .owl-item .item .step-slider-img img {
display: block;
width: 100%;
height: 436px;
object-fit: cover;
}
.ova-step-slider .slide-step-slider .owl-item .item .info {
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
padding: 25px;
position: absolute;
bottom: 0;
opacity: 0;
visibility: hidden;
}
.ova-step-slider .slide-step-slider .owl-item .item .info .title {
margin: 0;
transition: all 0.3s ease;
font-size: 18px;
line-height: 1.3;
font-weight: 600;
}
.ova-step-slider .slide-step-slider .owl-item .item .info .description {
transition: all 0.4s ease;
-moz-transition: all 0.4s ease;
-o-transition: all 0.4s ease;
margin: 0;
font-size: 15px;
font-weight: 500;
line-height: 1.3;
}
.ova-step-slider .slide-step-slider .owl-item .item .info .view-detail {
transition: all 0.3s ease;
display: inline-flex;
justify-content: center;
align-items: center;
min-width: 50px;
width: 50px;
height: 50px;
background-color: #fff;
border: 1px solid rgba(85, 74, 74, 0.27);
border-radius: 50%;
color: var(--heading);
z-index: 1;
cursor: pointer;
}
.ova-step-slider .slide-step-slider .owl-item .item .info .view-detail i {
transition: all 0.3s ease;
display: inline-flex;
}
.ova-step-slider .slide-step-slider .owl-item .item .info .view-detail:hover {
transition: all 0.3s ease;
background-color: var(--primary);
border: 1px solid var(--primary);
}
.ova-step-slider .slide-step-slider .owl-item .item .info .view-detail:hover i {
transition: all 0.3s ease;
color: #fff;
}
.ova-step-slider .slide-step-slider .owl-nav {
display: flex;
justify-content: space-between;
position: absolute;
bottom: 25%;
width: 100%;
}
.ova-step-slider .slide-step-slider .owl-nav .owl-prev, .ova-step-slider .slide-step-slider .owl-nav .owl-next {
transition: all 0.3s ease;
margin: 0 -100px;
display: flex;
justify-content: center;
align-items: center;
width: 62px;
height: 62px;
background-color: #fff;
border: 1px solid rgba(0, 0, 0, 0.28);
border-radius: 50%;
font-size: 14px;
color: var(--heading);
}
.ova-step-slider .slide-step-slider .owl-nav .owl-prev:hover, .ova-step-slider .slide-step-slider .owl-nav .owl-next:hover {
transition: all 0.3s ease;
background-color: var(--secondary);
border: 1px solid var(--secondary);
color: #fff;
}
.ova-step-slider .slide-step-slider .owl-nav .owl-prev i, .ova-step-slider .slide-step-slider .owl-nav .owl-next i {
display: inline-flex;
}
.ova-step-slider.template1 .slide-step-slider .owl-item .item .info .title {
color: #fff;
background-color: var(--primary);
padding: 8px 16px;
}
.ova-step-slider.template1 .slide-step-slider .owl-item .item .info .description {
color: var(--heading);
background-color: #EFC148;
padding: 6px 16px;
width: fit-content;
max-width: 100%;
min-width: 50%;
}
.ova-step-slider.template2 .slide-step-slider .owl-item .item .step-slider-img img {
height: 538px;
}
@media (max-width: 1024px) {
.ova-step-slider.template2 .slide-step-slider .owl-item .item .step-slider-img img {
height: 436px;
}
}
.ova-step-slider.template2 .slide-step-slider .owl-item .item .info {
margin-bottom: 20px;
display: flex;
align-items: center;
background-color: #fff;
justify-content: space-between;
gap: 15px;
width: calc(100% - 50px);
max-width: 566px;
left: 50%;
transform: translateX(-50%);
}
.ova-step-slider.template2 .slide-step-slider .owl-item .item .info .title {
margin: 4px 0 0 0;
font-size: 25px;
}
.ova-step-slider.template2 .slide-step-slider .owl-item .item .info .description {
color: var(--primary);
}
.ova-gallery-slide .gallery-slide-img {
position: relative;
overflow: hidden;
}
.ova-gallery-slide .gallery-slide-img:before {
transition: all 0.4s ease-out 0s;
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0.09%, rgba(0, 0, 0, 0.99) 100%);
opacity: 0;
}
.ova-gallery-slide .gallery-slide-img:hover:before {
transition: all 0.4s ease-out 0s;
opacity: 1;
}
.ova-gallery-slide .gallery-slide-img:hover.grayscale img {
filter: none;
}
.ova-gallery-slide .gallery-slide-img:hover .info-normal {
transition: all 0.4s ease;
top: 60%;
opacity: 0;
visibility: hidden;
}
.ova-gallery-slide .gallery-slide-img:hover .info {
transition: all 0.4s ease;
bottom: 35px;
opacity: 1;
visibility: visible;
}
.ova-gallery-slide .gallery-slide-img.grayscale img {
filter: grayscale(100%);
}
.ova-gallery-slide .gallery-slide-img img {
display: block;
width: 100%;
height: 440px;
object-fit: cover;
}
@media (max-width: 1024px) {
.ova-gallery-slide .gallery-slide-img img {
height: 360px;
}
}
.ova-gallery-slide .gallery-slide-img .view-detail {
-webkit-transition: all 0.4s ease-out 0s;
transition: all 0.4s ease-out 0s;
display: inline-flex;
justify-content: center;
align-items: center;
min-width: 44px;
width: 44px;
height: 44px;
background-color: #fff;
border-radius: 50%;
color: var(--primary);
z-index: 1;
cursor: pointer;
}
.ova-gallery-slide .gallery-slide-img .view-detail i {
-webkit-transition: all 0.4s ease-out 0s;
transition: all 0.4s ease-out 0s;
display: inline-flex;
font-size: 14px;
transform: rotate(-45deg);
}
.ova-gallery-slide .gallery-slide-img .view-detail:hover {
transition: all 0.3s ease;
background-color: var(--secondary);
}
.ova-gallery-slide .gallery-slide-img .view-detail:hover i {
transform: rotate(-135deg);
color: #fff;
}
.ova-gallery-slide .gallery-slide-img .info-normal {
transition: all 0.4s ease;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
display: inline-flex;
align-items: center;
justify-content: center;
flex-direction: column;
width: 230px;
height: 230px;
border-radius: 50%;
background-color: rgba(0, 0, 0, 0.6);
backdrop-filter: blur(10px);
padding: 20px;
text-align: center;
}
.ova-gallery-slide .gallery-slide-img .info-normal .title {
margin: 0;
font-size: 22px;
line-height: 1.2;
color: #fff;
}
.ova-gallery-slide .gallery-slide-img .info-normal .icon {
position: absolute;
left: calc(50% + 50px);
top: 0;
display: inline-flex;
align-items: center;
justify-content: center;
width: 70px;
height: 70px;
border-radius: 50%;
background-color: var(--primary);
}
.ova-gallery-slide .gallery-slide-img .info-normal .icon i {
display: inline-flex;
font-size: 30px;
color: #fff;
}
.ova-gallery-slide .gallery-slide-img .info {
transition: all 0.4s ease;
position: absolute;
bottom: 0;
left: 50%;
width: calc(100% - 60px);
transform: translateX(-50%);
opacity: 0;
visibility: hidden;
}
.ova-gallery-slide .gallery-slide-img .info .title {
margin: 0 0 10px 0;
font-size: 20px;
line-height: 1.2;
color: #fff;
}
.ova-gallery-slide .gallery-slide-img .info .description {
margin: 0 0 20px 0;
display: inline-flex;
align-items: center;
font-size: 15px;
line-height: 1.4;
font-weight: 500;
color: #fff;
}
.ova-gallery-slide .owl-dots {
text-align: center;
margin-top: 48px;
}
.ova-gallery-slide .owl-dots .owl-dot {
outline: none;
}
.ova-gallery-slide .owl-dots .owl-dot span {
width: 8px;
height: 6px;
margin: 5px;
background: #58c2d0;
display: block;
-webkit-backface-visibility: visible;
transition: opacity 0.2s ease;
border-radius: 3px;
}
.ova-gallery-slide .owl-dots .owl-dot.active span {
width: 31px;
background: var(--primary);
opacity: 1;
}
.elementor-widget-container #ova-gallery-slide-control button {
transition: all 0.3s ease;
width: 46px;
height: 46px;
display: inline-flex;
justify-content: center;
align-items: center;
background-color: #fff;
border: none;
margin: 0;
padding: 0;
}
.elementor-widget-container #ova-gallery-slide-control button.owl-next {
background-color: var(--primary);
}
.elementor-widget-container #ova-gallery-slide-control button.owl-next:hover {
background-color: var(--secondary);
}
.elementor-widget-container #ova-gallery-slide-control button.owl-prev {
background-color: var(--heading);
}
.elementor-widget-container #ova-gallery-slide-control button.owl-prev:hover {
background-color: var(--text);
}
.elementor-widget-container #ova-gallery-slide-control button i {
display: inline-flex;
font-size: 12px;
color: #fff;
}
.ova-toggle-content {
line-height: 1;
}
.ova-toggle-content .content {
transition: all 0.3s ease;
overflow: hidden;
overflow-y: auto;
position: fixed;
top: 0;
bottom: 0;
background-color: #222;
color: #fff;
line-height: 1.8em;
width: 380px;
padding: 50px;
z-index: 999;
opacity: 1;
}
.ova-toggle-content .content .close-menu {
transition: all 0.3s ease;
z-index: 999;
cursor: pointer;
width: 40px;
height: 40px;
border-radius: 50%;
background-color: var(--primary);
display: inline-flex;
justify-content: center;
align-items: center;
position: absolute;
top: 30px;
right: 30px;
}
.ova-toggle-content .content .close-menu:hover {
transition: all 0.3s ease;
background-color: var(--heading);
}
.ova-toggle-content .content .close-menu:hover i {
transition: all 0.3s ease;
color: var(--primary);
}
.ova-toggle-content .content .close-menu i {
transition: all 0.3s ease;
display: inline-flex;
font-size: 14px;
color: #fff;
}
.ova-toggle-content .content.pos_left {
transition: all 0.3s ease;
left: 0;
transform: translate3d(-380px, 0, 0);
}
.ova-toggle-content .content.pos_right {
transition: all 0.3s ease;
right: 0;
transform: translate3d(380px, 0, 0);
}
.ova-toggle-content .content .wrap-content img {
display: block;
margin: 0 auto;
object-fit: cover;
}
.ova-toggle-content .content .wrap-content .content-title {
margin: 40px 0 20px 0;
color: #fff;
}
.ova-toggle-content .content .wrap-content .button-contact {
transition: all 0.3s ease;
background-color: var(--primary);
border-radius: 5px;
color: #fff;
padding: 15px 20px;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
gap: 10px;
}
.ova-toggle-content .content .wrap-content .button-contact svg {
width: 15px;
height: 15px;
fill: #fff;
}
.ova-toggle-content .content .wrap-content .button-contact svg path {
fill: #fff;
}
.ova-toggle-content .content .wrap-content .button-contact:hover {
transition: all 0.3s ease;
color: var(--primary);
background-color: #fff;
}
.ova-toggle-content .content .wrap-content .contact-info-title {
margin: 40px 0 20px 0;
color: #fff;
}
.ova-toggle-content .content .wrap-content .contact-item {
display: flex;
align-items: center;
margin: 0 0 10px 0;
gap: 10px;
}
.ova-toggle-content .content .wrap-content .contact-item i {
display: inline-flex;
color: var(--primary);
}
.ova-toggle-content .content .wrap-content .list-social {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 20px 0 0 0;
}
.ova-toggle-content .content .wrap-content .list-social .social {
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
justify-content: center;
background-color: var(--primary);
width: 40px;
height: 40px;
border-radius: 50%;
}
.ova-toggle-content .content .wrap-content .list-social .social:hover {
transition: all 0.3s ease;
background-color: var(--heading);
}
.ova-toggle-content .content .wrap-content .list-social .social:hover i {
transition: all 0.3s ease;
color: #fff;
}
.ova-toggle-content .content .wrap-content .list-social .social i {
transition: all 0.3s ease;
display: inline-flex;
color: #fff;
}
.ova-toggle-content .site-overlay {
width: 100%;
height: 100%;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #000;
opacity: 0;
visibility: hidden;
position: fixed;
z-index: 998;
}
.ova-toggle-content.toggled .content.pos_left {
transition: all 0.3s ease;
transform: none;
}
.ova-toggle-content.toggled .content.pos_right {
transition: all 0.3s ease;
transform: none;
}
.ova-toggle-content.toggled .site-overlay {
transition: all 0.3s ease;
opacity: 0.8;
visibility: visible;
}
.ova-toggle-content .button-toggle {
transition: all 0.3s ease;
display: inline-flex;
justify-content: center;
align-items: center;
width: 42px;
height: 42px;
border-radius: 50%;
border: 1px solid #5C5C5B;
background-color: #fff;
padding: 0;
}
.ova-toggle-content .button-toggle:hover {
transition: all 0.3s ease;
border: 1px solid var(--primary);
}
.ova-toggle-content .button-toggle:hover i {
color: var(--primary);
}
.ova-toggle-content .button-toggle:hover svg {
fill: var(--primary);
}
.ova-toggle-content .button-toggle:hover svg path {
fill: var(--primary);
}
.ova-toggle-content .button-toggle i {
display: inline-flex;
font-size: 20px;
color: var(--heading);
}
.ova-toggle-content .button-toggle svg {
width: 26px;
height: 26px;
fill: var(--heading);
}
.ova-toggle-content .button-toggle svg path {
fill: var(--heading);
}
.ova-toggle-content .button-toggle:before, .ova-toggle-content .button-toggle:after {
width: 0;
}
.ova-toggle-content .button-toggle span:before {
width: 0;
}
.ova-toggle-content .dropdown-toggle {
background: transparent;
position: absolute;
top: 0;
right: 0;
display: block;
padding: 0.5em 0 0.5em 10px;
color: inherit;
border-radius: 0;
border: none;
cursor: pointer;
}
.ova-toggle-content .dropdown-toggle::after {
content: "\f104";
font-family: "ovaicon";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
display: inline-block;
font-style: normal;
font-variant: normal;
font-weight: normal;
line-height: 1;
vertical-align: middle;
font-size: 0.6em;
}
.ova-toggle-content .dropdown-toggle:focus {
outline: none;
}
.ova-toggle-content .dropdown-toggle:hover {
background: transparent;
}
.ova-toggle-content .dropdown-toggle.toggled-on:after {
content: "\f10c";
font-family: "ovaicon";
}