* {
-webkit-locale: auto;
}
:root {
--body: #E5EBF0;
--body-back: #18191D;
--color-a: #ff0039;
--color-b: #CB002D;
--color-grey-100: #E5EBF0; 
--color-dark: #121317;
--form-fill: #212428;
--form-border: rgba(159,175,181,.2);
--animate-duration: 0.5s;
--animate-delay: 0.5s;
}
html {
}
body {
color: var(--body);
font-size: 16px;
line-height: 24px;
font-weight: 400;
font-family: 'Montserrat', sans-serif;
-webkit-font-smoothing: antialiased;
background-color: var(--body-back);
}
h1 {
font-weight: 800;
color: #fff;
}
h2, h3, h4, h5, h6 {
font-weight: 700;
color: #fff;
}
h2 {
margin-top: 20px;
position: relative;
}
h2:before {
content: "";
display: block;
width: 60px;
height: 4px;
border-radius: 2px;
position: absolute;
left: 50%;
transform: translateX(-50%);
top: -20px;
background-color: var(--color-a);
}
h2.heading {
font-size: 800;
text-shadow: 0 1px 3px rgba(0,0,0,0.7);
}
h2.flat:before {
display: none;
}
h3 { 
font-size: 1.1rem;
}
strong {
font-weight: 700;
color: #fff;
}
.lead {
font-size: 16px;
font-weight: 500;
line-height: 28px;
max-width: 640px;
margin-left: auto;
margin-right: auto;
}
.with-cover .lead {
text-shadow: 0 1px 3px rgba(0,0,0,0.7);
}
small {
font-size: 14px;
font-weight: 700;
}
a {
transition: opacity 0.3s ease-out;
}
a, a:hover, a:focus, a:active {
color: var(--color-a);
text-decoration: none;
}
.form-control,
.form-control:hover,
.form-control:focus {
background-color: var(--form-fill);
padding: 13px 15px;
line-height: 24px;
height: 40px;
border: 1px solid var(--form-border);
box-shadow: none;
outline: 0;
color: var(--body);
transition: background-color 0.3s ease-out;
}
textarea.form-control,
textarea.form-control:hover,
textarea.form-control:focus {
height: 100px;
}
.form-control.has-error,
.form-control.wpcf7-not-valid {
background-color: rgba(255,0,57,0.3);
}
.wpcf7 form .wpcf7-response-output {
margin: 0;
padding: 0;
border: none;
font-size: 14px;
text-align: center;
}
.wpcf7-not-valid-tip {
display: none !important;
}
div.wpcf7 .ajax-loader {
display: block;
margin: 10px auto 0;
width: 24px;
height: 24px;
text-align: center;
line-height: 24px;
border-radius: 50%;
background-repeat: no-repeat;
background-position: 50% 50%;
}
.text-primary {
color: var(--color-a) !important;
}
.text-light {
color: var(--color-grey-100) !important;
}
.bg-dark {
background-color: var(--color-dark) !important;
}
.nav-tabs {
border: none;
}
.nav-tabs .nav-item .nav-link,
.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active {
border: none;
}
.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active {
color: #fff;
background-color: var(--color-a);
}
.section, main > .wpb_row {
padding: 80px 0;
transition: filter 0.3s ease-out;
}
.section.with-cover {
position: relative;
background-position: center 0;
background-repeat: no-repeat;
background-size: cover;
overflow: hidden;
min-height: 600px;
}
.section.with-cover:after {
content: '';
display: block;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%; background: rgba(0,0,0,0.8);
background-size: 2px;
}
.section.with-cover .container,
.section.with-cover .container-fluid {
position: relative;
z-index: 1;
}
img.cover {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
object-fit: cover;
}
.section.with-cover img.cover {
top: 0;
left: 50%;
transform: translateX(-50%);
width: 150%;
height: 150%;
}
@media (max-width: 991px) {
.wpcf7 {
max-width: 400px;
margin: 0 auto;
}
.section.with-cover {
background-position: 50% 50% !important;
background-size: cover;
min-height: initial;
}
.section.with-cover img.cover {
width: 100%;
height: 100%;
left: 0;
transform: translate(0, 0) !important;
}
}
img.lazy {
opacity: 0;
transition: opacity 0.5s ease-out;
}
img.lazy.loaded {
opacity: 1;
}
img.already {
transition: none !important;
}
.wide {
max-width: 420px;
}
.btn {
height: 40px;
padding: 8px 12px !important;
font-weight: 700;
outline: 0;
box-shadow: none;
}
.btn:focus {
outline: 0;
box-shadow: none;
}
.btn-primary {
background-color: var(--color-a);
border-color: var(--color-a);
color: #fff;
}
.btn-primary:focus,
.btn-primary:hover,
.btn-primary:active,
.btn-primary:disabled,
.btn-primary:not(:disabled):not(.disabled).active, 
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus {
background-color: var(--color-b);
border-color: var(--color-b);
color: #fff;
box-shadow: none;
outline: none;
}
.btn-outline-primary {
color: #fff;
border-color: var(--color-a);
}
.btn-outline-primary:focus,
.btn-outline-primary:hover,
.btn-outline-primary:active,
.btn-outline-primary:not(:disabled):not(.disabled).active, 
.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus {
background: var(--color-b);
border-color: var(--color-b);
color: #fff;
box-shadow: none;
outline: none;
}
.btn-guide {
padding-top: 2px !important;
padding-left: 2px !important;
padding-bottom: 2px !important;
padding-right: 20px !important;
font-size: 14px;
border-radius: 20px;
}
.btn-guide i {
margin-right: 10px;
display: inline-block;
width: 34px;
height: 34px;
border-radius: 50%;
background: rgba(255,255,255,0.3);
padding: 0;
line-height: 34px;
font-size: 14px;
} .preloader {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
background-color: var(--black);
z-index: 100;
} header {
position: fixed;
display: flex;
align-items: center;
top: 0;
left: 0;
width: 100%;
height: 90px;
z-index: 10;
transition: all 0.3s ease-out, filter 0.3s ease-out, opacity 0.05s ease-out;
opacity: 1;
}
@media (max-width: 991px) {
header {
opacity: 1;
}
}
header.sticky {
height: 80px;
background-color: var(--color-dark);
box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
header > .container {
position: relative;
}
header .logo {
position: absolute;
left: 15px;
z-index: 1;
}
header .logo img {
width: 35px;
max-width: 100%;
height: auto;
}
header .navbar {
padding: 0;
}
header .navbar-dark .navbar-toggler {
border: none;
padding: 0;
}
.navbar-dark .navbar-toggler-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
header nav #menu-top > li {
margin: 0 15px;
}
header nav #menu-top > li:last-child {
margin-right: 0;
}
header nav #menu-top > li a,
header nav #menu-top > li a:hover,
header nav #menu-top > li a:focus,
header nav #menu-top > li a:visited,
header nav #menu-top > li a:active {
color: #fff;
padding: 5px 10px;
font-weight: 700;
}
header nav #menu-top > li a:hover,
header nav #menu-top > li a:focus,
header nav #menu-top > li a:active {
opacity: 0.7;
}
header nav #menu-top > li a.btn:hover, 
header nav #menu-top > li a.btn:focus,
header nav #menu-top > li a.btn:active {
opacity: 1;
}
header .megamenu-wrapper {
display: none;
opacity: 0;
pointer-events: none;
background: var(--color-dark);
padding: 15px;
position: absolute;
width: 100%;
left: 0;
top: 50px;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
z-index: 9999;
box-shadow: 0 10px 10px rgba(0,0,0,0.1);
}
header .megamenu-wrapper.ready {
display: block;
transition: all 0.3s ease-out;
}
header .megamenu-wrapper.show {
pointer-events: auto;
opacity: 1;
}
header .megamenu-wrapper ul {
list-style: none;
padding: 0;
}
header .megamenu-wrapper .devices div {
width: 25px;
text-align: center;
margin-right: 8px;
}
header .megamenu-wrapper .devices img {
max-height: 24px;
}
header .megamenu-wrapper a {
font-size: 14px;
font-weight: 500;
}
header .megamenu-wrapper ul li {
margin-bottom: 10px;
}
header .megamenu-wrapper ul li a {
padding: 10px 0 !important;
}
header .navbar-toggler,
header .navbar-toggler:focus {
outline: 0;
box-shadow: none;
}
header .phone {
padding-left: 70px;
font-weight: 700;
font-size: 14px;
color: var(--body);
}
header .whatsapp {
font-size: 24px;
color: var(--body);
}
header .telegram {
font-size: 24px;
color: var(--body);
}
@media (max-width: 1199px) {
header .whatsapp {
padding-left: 170px;
}
}
@media (max-width: 991px) {
header .whatsapp {
padding-left: 0px;
}
header .phone {
padding-left: 0;
}
} #hero {
height: 100vh;
height: calc(var(--vh, 1vh) * 100);
min-height: 700px;
max-height: 900px;
position: relative;
background-color: #000;
overflow: hidden;
background-repeat: no-repeat;
background-size: cover;
background-position: 50% 50%;
transition: filter 0.3s ease-out;
}
#hero:after {
content: '';
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0,0,0,0.7) url(//www.8reborn.ru/wp-content/themes/reborn/assets/media/pattern-2.png) 0 0 repeat;
background-size: 2px;
}
#hero.page-hero {
background: none;
}
#hero.page-hero .side {
display: block;
margin: 0 auto;
max-height: 450px;
max-width: 100%;
}
#hero.page-hero .wrapper {
margin: 150px 0;
}
#hero.issue-hero .wrapper {
padding: 40px 0;
background: rgba(13, 14, 17, 0.7);
border-radius: 6px;
}
#hero.issue-hero .wide {
max-width: 640px;
margin: 0 auto;
}
#hero.page-hero:after {
content: '';
position: absolute;
width: 70%;
height: 100%;
left: initial;
top: 0;
right: 0;
clip-path: circle(87% at 100% 51%);
background: var(--black);
background-size: 2px;
}
@media (max-width: 1199px) {
#hero.page-hero:after {
clip-path: circle(73% at 100% 51%);
}
}
@media (max-width: 991px) {
#hero.issue-hero {
height: auto;
}
#hero.issue-hero .wrapper {
margin: 100px auto;
padding: 0 15px;
background: none;
}
#hero.page-hero:after {
width: 100%;
top: 0;
bottom: 0;
background: rgba(0,0,0,0.7) url(//www.8reborn.ru/wp-content/themes/reborn/assets/media/pattern-2.png) 0 0 repeat;
background-size: 2px;
clip-path: none;
}
}
#hero .container {
height: 100%;
position: relative;
z-index: 1;
}
#hero .video-container {
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
width: 100%;
height: 100%;
}
#hero video {
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
margin: auto;
object-fit: cover;
opacity: 0;
transition: opacity 1s ease-out;
}
#hero video.loaded {
opacity: 1;
}
#hero .video-js {
opacity: 0;
transition: opacity 1s ease-out;
}
#hero .video-js.loaded {
opacity: 1;
}
#hero .profile img {
width: 96px;
max-width: 100%;
height: auto;
border-radius: 50%;
}
#hero .scroll,
#hero .scroll:before {
position: absolute;
left: 50%;
z-index: 1;
}
#hero .scroll {
width: 26px;
height: 44px;
margin-left: -13px;
bottom: 30px;
margin-top: -22px;
box-shadow: inset 0 0 0 1px #fff;
border-radius: 25px;
}
#hero .scroll:before {
content: "";
width: 8px;
height: 8px;
background: #fff;
margin-left: -4px;
top: 8px;
border-radius: 4px;
animation-duration: 1.5s;
animation-iteration-count: infinite;
animation-name: scroll;
}
#hero h1, #hero p, #hero .insta {
text-shadow: 0 1px 3px rgba(0,0,0,0.7);
}
#hero h1, #hero .wide, #hero .btn, #hero .insta {
opacity: 0;
}
#hero .btn {
box-shadow: 0px 0px 12px rgba(0,0,0,0.4);
}
@keyframes scroll {
0% {
opacity: 1;
}
100% {
opacity: 0;
transform: translateY(20px);
}
}
@media (max-width: 1199px) {
h1 {
font-size: 2rem;
line-height: 1.3;
}
}
@media (max-width: 991px) {
h1 {
max-width: 500px;
margin: 0 auto;
}
#hero {
min-height: 700px;
max-height: 800px;
} #hero .video-container,
#hero video {
display: none;
}
#hero .wrapper {
text-align: center;
}
#hero .wide {
max-width: 100%;
}
}
@media (max-width: 767px) {
h1 {
font-size: 2rem;
}
#hero {
min-height: 560px;
max-height: 800px;
}
} .modal-header {
border: none;
}
.modal-header .close {
outline: 0;
text-shadow: none;
color: #fff;
opacity: 1;
font-size: 30px;
}
.modal-content {
background: none;
}
@media (min-width: 576px) {
.modal-dialog {
max-width: calc(100% - 60px);
}
}
#mobileMenu .modal-dialog {
max-width: 100%;
margin: 0;
height: 100%;
display: flex;
display: -ms-flexbox;
}
#mobileMenu .modal-content {
border: none;
}
.modal-header .close {
margin: -1rem auto -1rem auto;
}
.modal-header .close img,
#mobileMenu .close img {
width: 32px;
}
#mobileMenu .modal-content .head {
padding: 30px 0;
position: absolute;
top: 0;
left: 0;
width: 100%;
z-index: 1;
}
#mobileMenu .modal-content .head a,
#mobileMenu .modal-content .head a:focus {
outline: 0;
box-shadow: none;
}
#mobileMenu .modal-content .footer {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
}
#mobileMenu .modal-content .footer a {
color: var(--body);
font-size: 14px;
font-weight: 700;
}
#mobileMenu .modal-content .footer i {
margin-right: 8px;
}
#mobileMenu .modal-dialog ul.navbar-nav {
list-style: none;
padding: 0;
transition: all 0.3s ease-out;
}
#mobileMenu.devices-shown .modal-dialog ul.navbar-nav,
#mobileMenu.issues-shown .modal-dialog ul.navbar-nav {
opacity: 0;
pointer-events: none;
}
#mobileMenu .modal-dialog ul.navbar-nav li {
padding: 5px 0 15px;
}
#mobileMenu .modal-dialog ul.navbar-nav li:after {
content: '';
display: block;
width: 20px;
height: 2px;
border-radius: 1px;
background-color: var(--color-a);
margin: 20px auto 0;
}
#mobileMenu .modal-dialog ul.navbar-nav li:last-child:after {
display: none;
}
#mobileMenu .modal-dialog ul.navbar-nav li a {
color: var(--body);
font-size: 16px;
font-weight: 700;
text-shadow: 0 1px 3px rgba(0,0,0,0.7);
text-transform: uppercase;
}
.modal-backdrop.show {
opacity: 0.9;
background-color: var(--black);
}
#mobileMenu .close {
opacity: 1;
color: var(--body);
font-size: 30px;
outline: 0;
}
#mobileMenu .close:focus {
outline: 0;
}
#mobileMenu .devices,
#mobileMenu .issues {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
visibility: hidden;
opacity: 0;
pointer-events: none;
transition: all 0.3s ease-out;
}
#mobileMenu .devices {
padding-left: 5px;
}
#mobileMenu.devices-shown .devices,
#mobileMenu.issues-shown .issues {
visibility: visible;
opacity: 1;
pointer-events: all;
}
#mobileMenu .devices div {
width: 25px;
text-align: center;
margin-right: 4px;
}
#mobileMenu .devices img {
max-height: 24px;
}
#mobileMenu .devices ul,
#mobileMenu .popular-issues ul {
list-style: none;
padding: 0;
margin: 0 -4px;
}
#mobileMenu .devices ul li {
padding: 0 4px;
}
#mobileMenu .devices ul li a,
#mobileMenu .popular-issues ul li a {
font-size: 12px;
color: var(--body);
font-weight: 500;
padding: 5px 0;
background: none;
}
#mobileMenu .popular-issues ul li {
margin-bottom: 0px !important;
}
#mobileMenu .popular-issues {
display: flex;
display: -ms-flexbox;
align-items: center;
-ms-flex-align: center;
padding: 20px;
}
body.blur header,
body.blur section,
body.blur footer {
filter: blur(4px);
-webkit-filter: blur(4px);
} .feature-wrapper {
margin-bottom: 30px;
}
.feature {
padding: 20px;
background: var(--color-dark);
border-radius: 8px;
height: 100%;
max-width: 300px;
margin: 0 auto;
}
.feature .img-wrapper {
height: 60px;
}
.feature img {
width: 56px;
max-width: 100%;
height: auto;
}
.feature p {
font-size: 14px;
line-height: 20px;
color: var(--color-grey-100);
}
.stepps {
margin-top: 100px;
margin-bottom: 40px;
}
.stepp {
position: relative;
padding: 30px;
height: 100%;
margin: 0 auto;
}
.stepp .inner {
position: relative;
}
.stepp span {
display: inline-block;
width: 64px;
height: 64px;
line-height: 64px;
font-weight: 700;
font-size: 24px;
border-radius: 50%;
background-color: var(--color-a);
margin-bottom: 1rem;
box-shadow: 0px 0px 12px rgba(0,0,0,0.4);
}
.stepp h3 {
font-size: 18px;
line-height: 24px;
text-shadow: 0 1px 3px rgba(0,0,0,0.7);
}
.stepp p {
font-size: 14px;
font-weight: 500;
color: var(--color-grey-100);
text-shadow: 0 1px 3px rgba(0,0,0,0.7);
}
.map-wrapper {
position: relative;
min-height: 400px;
}
.map-wrapper .map {
position: relative;
min-height: 400px; }
.map-wrapper .map:after {
content: '';
display: block;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.16);
}
.map-wrapper .map .static {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 400px;
object-fit: cover;
}
.map-wrapper .contacts {
position: absolute;
top: 0;
left: 0;
width: 100%;
z-index: 1;
overflow: hidden;
padding-bottom: 30px;
pointer-events: none;
}
.map-wrapper .contacts .wrapper {
pointer-events: all;
position: relative;
max-width: 420px;
padding: 30px;
background-color: var(--black);
border-bottom-left-radius: 6px;
border-bottom-right-radius: 6px;
}
.map-wrapper .contacts .wrapper .cover {
border-bottom-left-radius: 6px;
border-bottom-right-radius: 6px;
}
.map-wrapper .contacts .wrapper:after {
content: '';
display: block;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.75) url(//www.8reborn.ru/wp-content/themes/reborn/assets/media/pattern-2.png) 0 0 repeat;
background-size: 2px;
border-bottom-left-radius: 6px;
border-bottom-right-radius: 6px;
}
.map-wrapper .contacts .wrapper .inner {
position: relative;
z-index: 1;
}
.map-wrapper .contacts .wrapper .inner p {
font-size: 14px;
}
.map-wrapper .contacts .wrapper a {
font-weight: 700;
font-size: 14px;
color: #fff;
}
.map-wrapper .contacts .wrapper i {
display: inline-block;
width: 24px;
margin-right: 8px;
text-align: center;
}
#map {
width: 100%;
height: 400px;
}
@media (max-width: 991px) {
.map-wrapper .map .static {
position: relative;
}
.map-wrapper .contacts {
position: relative;
}
.map-wrapper .contacts .wrapper {
max-width: 100%;
border-top-left-radius: 6px;
border-top-right-radius: 6px;
margin-bottom: 1rem;
}
.map-wrapper .contacts .wrapper:after {
border-top-left-radius: 6px;
border-top-right-radius: 6px;
}
.map-wrapper .contacts .wrapper .cover {
border-top-left-radius: 6px;
border-top-right-radius: 6px;
}
} footer {
padding: 80px 0 0;
background-color: var(--color-dark);
transition: filter 0.3s ease-out;
}
footer .widget h4 {
font-size: 16px;
margin-bottom: 25px;
}
footer .widget ul {
list-style: none;
padding: 0;
}
footer .widget ul li {
margin-bottom: 10px;
}
footer .widget ul li a {
font-size: 14px;
color: var(--body);
font-weight: 700;
}
footer .widget ul li:last-child {
margin-bottom: 0;
}
footer .widget .navbar {
padding: 0;
}
footer .widget .nav-link {
padding: 10px 0;
}
footer .contacts nav ul li {
margin-right: 30px;
}
footer .widget nav ul li:last-child {
margin-right: 0;
}
footer .devices div {
width: 25px;
text-align: center;
margin-right: 8px;
}
footer .devices img {
max-height: 24px;
}
footer i {
display: inline-block;
width: 24px;
margin-right: 8px;
text-align: center;
}
footer .contacts a,
footer .contacts p {
font-size: 14px;
font-weight: 700;
color: var(--body);
}
footer .copyright {
background-color: var(--black);
}
footer .logo {
display: block;
width: 35px;
margin: 0 auto;
}
footer .logo img {
max-width: 100%;
height: auto;
}
footer .wpcf7-spinner {
display: block;
margin: 12px auto 0;
}
@media (max-width: 767px) {
footer .widget .nav-link {
justify-content: center;
-ms-flex-pack: center;
}
footer .contacts a, footer .contacts p {
font-size: 14px;
}
} .animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-duration: var(--animate-duration);
animation-duration: var(--animate-duration);
-webkit-animation-fill-mode: forwards;
animation-fill-mode:forwards;
-webkit-animation-delay: 0.5s;
animation-delay: 0.5s;
}
@media (max-width:767px) {
.animated {
-webkit-animation-delay: 0s;
animation-delay: 0s;
}
}
.animate__fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
}
.animate__fadeOut {
-webkit-animation-delay: 0.15s;
animation-delay: 0.15s;
-webkit-animation-duration: 0.15s;
animation-duration: 0.15s;
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
}
.animate__fadeInUp {
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp;
}
.animate__fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
}
.animate__header {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
}
@media (max-width: 991px) {
.animate__header {
animation: none;
}
}
.animated.animate__delay-1 {
-webkit-animation-delay: 1s;
animation-delay: 1s;
-webkit-animation-delay: calc(var(--animate-delay) * 1.4);
animation-delay:calc(var(--animate-delay) * 1.4)
}
.animated.animate__delay-2 {
-webkit-animation-delay: 2s;
animation-delay: 2s;
-webkit-animation-delay: calc(var(--animate-delay) * 1.7);
animation-delay:calc(var(--animate-delay) * 1.7)
}
@media (max-width:767px) {
.animated.animate__delay-1 {
-webkit-animation-delay: calc(var(--animate-delay) * 0.4);
animation-delay:calc(var(--animate-delay) * 0.4)
}
.animated.animate__delay-2 {
-webkit-animation-delay: calc(var(--animate-delay) * 0.8);
animation-delay:calc(var(--animate-delay) * 0.8)
}
}
@-webkit-keyframes fadeIn {
0% {
opacity: 0;
-webkit-transform: translate3d(0, 50px, 0);
transform:translate3d(0, 50px, 0)
}
to {
opacity: 1;
-webkit-transform: translateZ(0);
transform:translateZ(0)
}
}
@keyframes fadeIn {
0% {
opacity: 0;
-webkit-transform: translate3d(0, 50px, 0);
transform:translate3d(0, 50px, 0)
}
to {
opacity: 1;
-webkit-transform: translateZ(0);
transform:translateZ(0)
}
}
@keyframes fadeOut {
0% {
opacity: 1;
}
to {
opacity: 0;
visibility: hidden;
}
}
@-webkit-keyframes fadeInUp {
0% {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform:translate3d(0, 100%, 0)
}
to {
opacity: 1;
-webkit-transform: translateZ(0);
transform:translateZ(0)
}
}
@keyframes fadeInUp {
0% {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform:translate3d(0, 100%, 0)
}
to {
opacity: 1;
-webkit-transform: translateZ(0);
transform:translateZ(0)
}
}
@-webkit-keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform:translate3d(0, -100%, 0)
}
to {
opacity: 1;
-webkit-transform: translateZ(0);
transform:translateZ(0)
}
}
@keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform:translate3d(0, -100%, 0)
}
to {
opacity: 1;
-webkit-transform: translateZ(0);
transform:translateZ(0)
}
}
.vjs-theme-fantasy {
--vjs-theme-fantasy--primary: #ff0039;
}