@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
:root {
--font-default: "Montserrat", sans-serif, Arial;
--color-default: #aaaaaa;
--color-primary: #fff;
--color-secondary: #040404;
--color-hover: #9a4d52;
scroll-behavior: smooth;
}
html {
scroll-padding: var(--scroll-padding, 113px);
}
@font-face {
font-family: "Montserrat";
font-style: normal;
font-weight: 400;
src: local("Montserrat Regular"), local("Montserrat-Regular"),
url(https://fonts.gstatic.com/s/montserrat/v18/JTUSjIg1_i6t8kCHKm459Wlhzg.ttf)
format("truetype");
font-display: swap;
} body {
font-family: var(--font-default);
color: var(--color-default);
}
a {
color: var(--color-secondary);
font-family: var(--font-default);
text-decoration: none;
}
a:hover {
color: var(--color-hover);
text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: var(--font-default);
} .btn-default,
.btn-default:focus {
padding: 12px 50px;
color: var(--color-secondary);
background: var(--color-primary);
border: 2px solid var(--color-primary);
font-family: var(--font-default);
font-size: 16px;
font-weight: 400;
border-radius: 25px;
transition: 0.3s;
}
.btn-default:hover,
.btn-default:focus:hover {
color: var(--color-primary);
background: var(--color-secondary);
border-color: var(--color-secondary);
} section {
padding: 60px 0;
overflow: hidden;
transition: transform 1s ease-in-out;
} #header {
background-color: transparent;
transition: all 0.5s;
z-index: 997;
}
#header.page {
background: transparent;
}
#header a.navbar-brand {
display: flex;
justify-content: center;
align-items: center;
}
#header a.navbar-brand img {
max-height: 90px;
}
#header.header-scrolled {
background: var(--color-secondary);
} .navbar {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
height: 100px;
}
.navbar a,
.navbar a:focus {
padding: 0 15px;
font-size: 16px;
font-weight: 400;
color: var(--color-default);
white-space: nowrap;
transition: 0.3s;
position: relative;
text-transform: lowercase;
}
.navbar a:before {
content: "";
position: absolute;
width: 17px;
height: 4px;
bottom: -6px;
left: 50%;
transform: translateX(-50%);
background-color: var(--color-primary);
visibility: hidden;
width: 0px;
transition: all 0.3s ease-in-out 0s;
}
.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before,
.navbar .current-menu-item a:before,
.navbar.page .current-menu-item a:before {
visibility: visible;
width: 17px;
}
.navbar .current-menu-item a,
.navbar.page .current-menu-item a,
.navbar.scrolled .current-menu-item a {
color: var(--color-primary);
}
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
color: var(--color-primary);
}
.navbar .button,
.navbar .button:focus,
.navbar.scrolled .button,
.navbar .button:focus,
.navbar.page .button,
.navbar.page .button:focus {
background: var(--color-primary);
padding: 8px 20px;
margin-left: 30px;
border-radius: 23px;
color: var(--color-primary);
}
.navbar .button:hover,
.navbar .button:focus:hover,
.navbar.scrolled .button:hover,
.navbar.scrolled .button:focus:hover,
.navbar.page .button:hover,
.navbar.page .button:focus:hover {
color: var(--color-primary);
}
.navbar > ul > li > a.button:before {
visibility: hidden;
}
.navbar.scrolled a,
.navbar.scolled a:focus {
color: var(--color-primary);
}
.navbar.scrolled a:hover,
.navbar.scolled a:hover:focus {
color: var(--color-primary);
}
.navbar.scolled a:before {
content: "";
position: absolute;
width: 17px;
height: 4px;
bottom: -6px;
left: 50%;
transform: translateX(-50%);
background-color: var(--color-primary);
visibility: hidden;
width: 0px;
transition: all 0.3s ease-in-out 0s;
}
.navbar.page a,
.navbar.page a:focus {
color: var(--color-default);
}
.navbar .menu-item-has-children ul {
display: block;
position: absolute;
left: 28px;
top: calc(100% + 30px);
margin: 0;
padding: 10px 0;
z-index: 99;
opacity: 0;
visibility: hidden;
background: var(--color-primary);
box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
transition: 0.3s;
border-radius: 4px;
}
.navbar .menu-item-has-children ul li {
min-width: 200px;
}
.navbar .menu-item-has-children ul a {
padding: 10px 20px;
font-size: 15px;
text-transform: none;
font-weight: 600;
color: var(--color-default);
}
.navbar .menu-item-has-children ul a i {
font-size: 12px;
}
.navbar .menu-item-has-children ul a:hover,
.navbar .menu-item-has-children ul .active:hover,
.navbar .menu-item-has-children ul li:hover > a {
color: var(--color-secondary);
}
.navbar .menu-item-has-children:hover > ul {
opacity: 1;
top: 100%;
visibility: visible;
}
.navbar .menu-item-has-children .menu-item-has-children ul {
top: 0;
left: calc(100% - 30px);
visibility: hidden;
}
.navbar .menu-item-has-children .menu-item-has-children:hover > ul {
opacity: 1;
top: 0;
left: 100%;
visibility: visible;
}
.custom-toggler .navbar-toggler-icon {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}
.custom-toggler.navbar-toggler {
border-color: rgb(255, 255, 255);
} .section-title {
text-align: center;
padding-bottom: 30px;
} section#hero {
padding: 0;
}
#hero .col-md-12 {
padding: 0;
}
#hero .swiper-container {
position: relative;
background: transparent;
height: 100vh;
}
#hero .swiper-slide {
width: 100%;
min-height: 100vh;
background-color: transparent;
background-size: cover;
background-position: center;
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}
#hero .swiper-slide img {
width: auto;
height: auto;
margin-bottom: 56px;
}
#hero .swiper-slide h1 {
font-size: 40px;
font-weight: 700;
color: var(--color-primary);
}
#hero .arrow {
position: absolute;
bottom: 40px;
left: 50%;
width: 30px;
height: 50px;
margin-left: -15px;
border-radius: 50px;
box-sizing: border-box;
z-index: 2;
}
#hero .arrow span {
position: absolute;
top: 0;
left: 50%;
width: 24px;
height: 24px;
margin-left: -12px;
border-left: 1px solid #fff;
border-bottom: 1px solid #fff;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
-webkit-animation: sdb07 2s infinite;
animation: sdb07 2s infinite;
opacity: 0;
box-sizing: border-box;
}
#hero .arrow span:nth-of-type(1) {
-webkit-animation-delay: 0s;
animation-delay: 0s;
}
#hero .arrow span:nth-of-type(2) {
top: 16px;
-webkit-animation-delay: 0.15s;
animation-delay: 0.15s;
}
#hero .arrow span:nth-of-type(3) {
top: 32px;
-webkit-animation-delay: 0.3s;
animation-delay: 0.3s;
}
@-webkit-keyframes sdb07 {
0% {
opacity: 0;
}
50% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes sdb07 {
0% {
opacity: 0;
}
50% {
opacity: 1;
}
100% {
opacity: 0;
}
} section#hero-page {
padding: 0;
margin-top: 100px;
}
#hero-page .col-md-12 {
padding: 0;
}
#hero-page .swiper-slide {
width: 100%;
min-height: 360px;
background-color: var(--color-primary);
background-size: cover;
background-position: center;
position: relative;
padding: 120px 0 60px 0;
color: var(--color-default);
display: flex;
justify-content: center;
text-align: center;
}
#hero-page .swiper-slide::before {
content: "";
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: var(--color-secondary);
mix-blend-mode: multiply;
z-index: 0;
}
#hero .swiper-slide h1 {
font-size: 40px;
font-weight: 700;
color: var(--color-primary);
z-index: 1;
} .form-control {
background-color: var(--color-primary);
color: var(--color-default);
height: 55px;
border-color: var(--color-default);
font-family: var(--font-default);
font-weight: 400;
border-radius: 24px;
}
.form-group {
margin-bottom: 1rem;
}
.form-group input::-moz-placeholder {
color: var(--color-default);
}
.form-group input:-ms-input-placeholder {
color: var(--color-default);
}
.form-group input::placeholder {
color: var(--color-default);
}
select {
color: var(--color-default) !important;
background-color: var(--color-primary);
}
option:not(:first-of-type) {
color: var(--color-default);
}
select option:first-child {
display: none;
}
select.form-control {
-webkit-appearance: menulist !important;
-moz-appearance: menulist !important;
-ms-appearance: menulist !important;
-o-appearance: menulist !important;
appearance: menulist !important;
}
textarea.form-control {
min-height: calc(10.5em + 0.75rem + 2px);
}
.form-control:focus,
form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="number"]:focus,
form input[type="url"]:focus,
form input[type="search"]:focus,
form input[type="tel"]:focus,
form input[type="password"]:focus,
form input[type="date"]:focus,
form input[type="color"]:focus,
form select:focus,
form textarea:focus {
color: var(--color-default);
background-color: var(--color-primary);
border-color: var(--color-default);
-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
outline: none;
}
label.form-control {
color: var(--color-default);
padding-top: 9px;
} .wpcf7-not-valid-tip {
font-weight: 700 !important;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
border-color: red;
}
.wpcf7 form .wpcf7-response-output {
color: var(--color-secondary);
}  #aio {
background: var(--color-primary);
padding: 100px 0;
color: var(--color-secondary);
}
#aio .conteudo-quem-somos {
padding: 0;
}
#aio img .img-fluid {
width: 100%;
height: auto;
margin: 0;
}
#aio h2 {
padding: 0;
font-size: 80px;
font-style: normal;
font-weight: 500;
letter-spacing: 12px;
text-align: center;
padding-bottom: 20px;
}
#aio h5 {
font-size: 16px;
line-height: 1.5;
text-align: justify;
}
#aio #quem-somos span strong {
font-weight: 400;
font-size: 48px;
line-height: 19.5px;
}
#aio #quem-somos span {
font-size: 16px;
font-weight: 400;
line-height: normal;
line-height: 19.5px;
}
#aio #quem-somos .conteudo-quem-somos .col-md-6 {
text-align: center;
padding: 0;
margin: 20px 0;
}
#aio .conteudo-quem-somos .divLeft {
display: grid;
align-items: end;
}
#aio #quem-somos .google {
display: flex;
justify-content: center;
}
#aio #quem-somos .google img {
width: 108px;
height: auto;
}
#aio #quem-somos .conteudo-quem-somos .txt-google {
display: flex;
align-items: center;
justify-content: center;
padding: 0 35px;
}
#aio #quem-somos .conteudo-quem-somos .txt-google h5 {
color: var(--color-secondary);
font-weight: 400;
font-size: 19px;
line-height: 29.26px;
text-align: center;
}
#aio #quem-somos .col-10 {
margin-bottom: 60px;
}
#aio #quem-somos .icon-box-img img {
height: 270px;
}
#aio #quem-somos .icon-box-body h3 {
margin: 15px 0 0 0;
font-size: 24px;
font-weight: 700;
}
#aio .content p {
color: var(--color-secondary);
font-size: 16px;
font-weight: 600;
line-height: normal;
}
#quem-somos .section-title h5 {
color: var(--color-secondary);
padding: 0;
text-align: center;
font-size: 24px;
font-weight: 700;
line-height: normal;
margin-top: 40px;
}
#quem-somos .especialista-slider li {
list-style: none;
} #oque-fazemos {
padding: 100px 0;
}
#oque-fazemos .section-title h3 {
padding: 0;
color: var(--color-secondary);
text-align: center;
font-size: 80px;
font-weight: 500;
line-height: normal;
letter-spacing: 12px;
}
#oque-fazemos .icon-box {
display: flex;
flex-flow: wrap;
flex-direction: column;
flex: 100%;
align-items: center;
background: transparent;
text-align: center;
margin-bottom: 70px;
cursor: pointer;
}
#oque-fazemos .icon-box .icon-box-img img {
max-width: 127px;
max-height: 150px;
}
#oque-fazemos .icon-box .icon-box-body {
flex: 2;
}
#oque-fazemos .icon-box .icon-box-body h5 {
color: var(--color-secondary);
text-align: center;
font-size: 24px;
font-weight: 700;
line-height: normal;
padding: 16px 0;
}
#oque-fazemos .icon-box .icon-box-body p {
color: var(--color-primary);
text-align: justify;
font-size: 14px;
font-weight: 500;
line-height: 1.5;
}
#oque-fazemos .less-opacity {
opacity: 0.25;
}
#oque-fazemos ul,
#oque-fazemos li {
margin: 0 0 0 10px;
padding: 0;
text-align: justify;
}
#oque-fazemos p {
text-align: justify;
}
#oque-fazemos .swiper-container {
height: 175px;
width: 100%;
}
#oque-fazemos .swiper-slide {
text-align: center;
transition: all 1s ease;
opacity: 1;
}
#oque-fazemos .swiper-slide-next + li {
transition: all 1s ease;
opacity: 1;
}
#oque-fazemos li img {
width: 100px;
height: 100px;
} section#quem-confia {
padding: 100px 0;
}
#quem-confia {
background: #000;
}
#quem-confia .section-title {
text-align: center;
}
#quem-confia .section-title h3 {
padding: 0;
color: var(--color-primary);
text-align: center;
font-size: 80px;
font-weight: 500;
line-height: normal;
letter-spacing: 12px;
}
#quem-confia ul,
#quem-confia li {
margin: 0;
padding: 0;
list-style: none;
}
#quem-confia .col-md-12.confia {
border-bottom: 2px solid #4e4d4d;
}
#quem-confia .confia-boxes {
margin-bottom: 60px;
}
#quem-confia .depoimentos-slider {
margin-top: 60px;
}
#quem-confia .swiper-container.confia-slider {
height: 175px;
width: 100%;
}
#quem-confia .swiper-container.confia-slider .swiper-slide {
text-align: center;
transition: all 1s ease;
opacity: 1;
display: flex;
align-items: center;
}
#quem-confia .swiper-container.confia-slider .swiper-slide-next + li {
transition: all 1s ease;
opacity: 1;
}
#quem-confia .swiper-container.confia-slider .swiper-slide img {
max-width: 100px;
height: auto;
}
#quem-confia .icon-box {
display: flex;
flex-flow: wrap;
flex-direction: column;
flex: 100%;
align-items: center;
background: transparent;
text-align: center;
border: 1px solid var(--color-primary);
border-radius: 28px;
padding: 30px;
min-height: 350px;
margin: 0 5px;
justify-content: space-around;
}
#quem-confia .icon-box .icon-box-img img {
width: 100px;
height: 100px;
border-radius: 101px;
object-fit: cover;
}
#quem-confia .icon-box .icon-box-body {
padding: 10px 0;
}
#quem-confia .icon-box .icon-box-body p {
color: var(--color-primary);
text-align: center;
font-size: 14px;
font-weight: 400;
line-height: normal;
}
#quem-confia .icon-box .icon-box-footer h5 {
color: var(--color-primary);
color: #fff;
text-align: center;
font-size: 14px;
font-family: Montserrat;
font-style: italic;
font-weight: 600;
line-height: normal;
} section#contato {
padding: 100px 0;
}
#contato {
background-color: var(--color-primary);
}
#contato h2 {
color: var(--color-secondary);
font-size: 80px;
font-weight: 500;
text-align: center;
padding-bottom: 0.5em;
letter-spacing: 12px;
}
#contato h3 {
color: var(--color-secondary);
font-size: 24px;
font-weight: 700;
text-align: center;
padding-bottom: 0.5em;
}
#contato input.wpcf7-form-control.wpcf7-submit {
display: block;
margin: 0 auto;
}
#contato .btn-default,
#contato .btn-default:focus {
color: var(--color-secondary);
background: transparent;
border-color: var(--color-secondary);
}
#contato .btn-default:hover,
#contato .btn-default:focus:hover {
color: var(--color-primary);
background: var(--color-secondary);
border-color: var(--color-secondary);
}
#contato ul,
#contato li {
margin: 0;
padding: 0;
list-style: none;
text-align: center;
}
#contato li {
padding: 10px 0;
color: var(--color-secondary);
font-size: 24px;
font-weight: 400;
line-height: normal;
}
#contato li a {
color: var(--color-secondary);
font-size: 24px;
font-weight: 400;
line-height: normal;
}
#contato li a:hover {
text-decoration: underline;
}
#contato li a i {
position: relative;
display: inline-block;
vertical-align: middle;
color: var(--color-secondary);
font-size: 22px;
padding: 0 10px 0 0;
}
#contato p {
color: var(--color-secondary);
text-align: center;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
padding-top: 30px;
} #blog {
background: var(--color-primary);
}
#blog .section-title h3 {
font-size: 55px;
font-weight: 700;
color: var(--color-secondary);
text-align: center;
margin-top: 50px;
}
#blog .btn-default,
#blog .btn-default:focus {
color: var(--color-secondary);
background: transparent;
border-color: var(--color-secondary);
}
#blog .btn-default:hover,
#blog .btn-default:focus:hover {
color: var(--color-hover);
background: transparent;
border-color: var(--color-secondary);
}  #op-content {
background-color: var(--color-primary);
text-align: left;
}
#op-content .content h1,
#op-content .content h2,
#op-content .content h3,
#op-content .content h4,
#op-content .content h5,
#op-content .content h6 {
color: var(--color-secondary);
}
#op-content .content p {
padding: 0;
font-size: 16px;
font-weight: 400;
color: var(--color-secondary);
}
#op-content .content li {
font-size: 16px;
font-weight: 400;
color: var(--color-secondary);
} #blog {
background-color: var(--color-primary);
padding: 3em 0;
}
#blog h2 {
color: #fff;
font-size: 55px;
font-family: var(--font-default);
font-weight: 700;
text-align: center;
padding-bottom: 0.5em;
text-transform: uppercase;
}
#blog-page {
background-color: var(--color-primary);
margin-top: 10em;
}
#blog-page h2 {
color: var(--color-secondary);
font-size: 55px;
font-family: var(--font-default);
font-weight: 700;
padding-bottom: 0.5em;
}
#blog-page hr {
display: inline-block;
width: 100%;
border-top: 1px solid var(--color-secondary);
}
#blog-page .col-md-4 {
padding-right: 0;
padding-left: 0;
}
.blog .card {
overflow: hidden;
background: var(--color-primary);
border-radius: 23px;
position: relative;
margin: 1rem;
transition: 250ms all ease-in-out;
cursor: pointer;
min-height: 500px;
}
#blog-single .card {
overflow: hidden;
background: var(--color-primary);
border-radius: 0.5rem;
position: relative;
margin: 1rem;
transition: 250ms all ease-in-out;
cursor: pointer;
min-height: 450px;
}
.blog .card:hover {
transform: scale(1.05);
}
.blog .banner-img {
position: absolute;
object-fit: cover;
height: 14rem;
width: 100%;
}
.blog .category {
position: absolute;
font-size: 16px;
font-family: var(--font-default);
font-weight: 700;
color: var(--color-primary);
background: var(--color-secondary);
margin: 15px 10px 10px 10px;
text-transform: uppercase;
display: inline-block;
letter-spacing: 0.1em;
height: auto;
line-height: 10px;
padding: 7px 20px 7px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
z-index: 1;
}
.blog .card-body {
padding: 15rem 1rem 1rem 1rem;
}
.blog .title {
color: var(--color-secondary);
font-size: 22px;
font-family: var(--font-default);
font-weight: 700;
line-height: 1.3;
margin: 0;
}
.blog p.description {
color: var(--color-secondary);
font-size: 16px;
font-family: var(--font-default);
font-weight: 400;
}
.blog .post-content {
display: flex;
align-items: center;
}
.blog .thumbnail {
width: 60px;
height: 60px;
object-fit: cover;
border-radius: 50%;
}
.blog .info {
margin-left: 1rem;
}
.blog .author-name {
font-size: 16px;
font-family: var(--font-default);
font-weight: 400;
margin: 0;
padding: 0;
}
.blog .date {
color: #a0aec0;
font-size: 14px;
font-family: var(--font-default);
font-weight: 400;
}
.blog .read-time {
color: #a0aec0;
font-size: 14px;
font-family: var(--font-default);
font-weight: 400;
}
#blog-single {
background-color: var(--color-primary);
padding-top: 10em;
}
.post-single {
margin: 0px;
height: auto;
width: 100%;
}
.post-single blockquote > p {
position: relative;
margin-bottom: 30px;
padding: 0 50px 0px 50px;
text-align: center;
border-left: 0px solid var(--color-secondary);
float: left;
width: 100%;
font-size: 26px;
}
.post-single blockquote:before {
font-family: var(--font-default);
float: left;
line-height: 0.51;
content: "\201c";
position: absolute;
z-index: 0;
margin: 0;
left: 50%;
transform: translateX(-50%) translateY(9px) rotate(1deg);
color: var(--color-secondary);
opacity: 0.13;
font-size: 170px;
}
.post-single p {
color: var(--color-secondary);
font-size: 16px;
font-family: var(--font-default);
font-weight: 400;
}
.post-single ul li,
.post-single ol li {
color: var(--color-secondary);
font-size: 16px;
font-family: var(--font-default);
font-weight: 400;
}
.post-single h1,
.post-single h2,
.post-single h3,
.post-single h4,
.post-single h5,
.post-single h6 {
font-family: var(--font-default);
font-weight: 400;
}
.post-single .single-header {
position: absolute;
width: auto;
bottom: 30px;
left: 30px;
right: 30px;
z-index: 3;
text-align: left;
}
.post-single .single-header .single-category {
font-size: 16px;
font-family: var(--font-default);
font-weight: 600;
color: var(--color-primary);
background: var(--color-secondary);
margin: 10px 10px 10px 0px;
text-transform: uppercase;
display: inline-block;
letter-spacing: 0.1em;
height: auto;
line-height: 10px;
padding: 7px 20px 7px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
.post-single .single-header .single-title {
color: var(--color-primary);
font-size: 40px;
font-family: var(--font-default);
font-weight: 700;
padding: 0 0 10px 0;
}
.post-single .post-container {
float: left;
width: 100%;
height: 550px;
position: relative;
background: var(--color-primary);
margin-bottom: 20px;
-webkit-border-radius: 12px;
-moz-border-radius: 12px;
border-radius: 12px;
}
.post-single .thumbnail {
width: 100%;
height: 100%;
position: absolute;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background-position: center center;
opacity: 1;
z-index: 1;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}
.post-single .thumbnail:after {
content: "";
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: linear-gradient(
to bottom,
rgba(0, 0, 0, 0) 0%,
rgba(0, 0, 0, 0.7) 100%
);
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}
.post-single .single-body {
text-align: left;
margin-top: 15px;
}
.post-single .single-body .post-author {
padding-left: 0px;
}
.post-single .single-body .post-author span {
color: var(--color-primary);
padding-left: 10px;
font-size: 13px;
font-family: var(--font-default);
font-weight: 400;
}
.post-single .single-body span i {
padding-left: 5px;
padding-right: 3px;
}
.post-single .single-body span.post-date,
.post-single .single-body span.post-time-read {
color: var(--color-primary);
font-size: 13px;
font-family: var(--font-default);
font-weight: 400;
}
.post-single .single-header .single-category,
.post-single .single-header .single-title,
.post-single .single-body {
text-align: left;
}
.single-body > span:after {
display: none;
}
#blog-single .share h5 {
color: var(--color-secondary);
margin-top: 20px;
margin-right: 10px;
font-family: var(--font-default);
font-weight: 400;
}
#blog-single .share .styled-icons li {
display: inline-block;
margin-bottom: 0;
margin-top: 0;
}
#blog-single .share .styled-icons a {
color: var(--color-secondary);
font-size: 18px;
height: 30px;
line-height: 30px;
margin: 0;
width: 30px;
margin-top: 1em;
margin-right: 0em;
float: left;
text-align: center;
-webkit-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
#blog-single .share .styled-icons a:hover {
color: var(--color-hover);
}
#blog-single .share .styled-icons.icon-circled a {
border-radius: 50%;
}
#blog-single .post-tags span {
background-color: var(--color-secondary);
color: var(--color-primary);
font-size: 12px;
padding: 5px 10px;
text-transform: uppercase;
-webkit-transition: 0.3s ease;
-moz-transition: 0.3s ease;
-ms-transition: 0.3s ease;
-o-transition: 0.3s ease;
transition: 0.3s ease;
display: inline-block;
margin-top: 5px;
}
#blog-single .post-tags a:hover {
color: #1a2870;
background-color: transparent;
border: 1px solid #1a2870;
}
#blog-single .blog-posts-nav {
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: 50px;
align-items: center;
max-width: 1200px;
margin: 50px 0;
}
#blog-single .blog-posts-nav a {
display: grid;
grid-gap: 20px;
align-items: center;
font-family: var(--font-default);
font-weight: 400;
}
#blog-single .blog-posts-nav h4 {
color: var(--color-secondary);
font-family: var(--font-default);
font-weight: 400;
}
#blog-single .blog-posts-nav strong {
color: var(--color-secondary);
font-weight: 700;
}
#blog-single .blog-posts-nav a svg {
display: inline-block;
margin: 0;
vertical-align: middle;
}
#blog-single .blog-posts-nav > div:nth-child(1) a {
text-align: left;
}
#blog-single .blog-posts-nav > div:nth-child(2) a {
text-align: right;
}
#blog-single h2.related-posts {
color: var(--color-secondary);
font-size: 24px;
font-family: var(--font-default);
font-weight: 400;
}
#search {
background-color: var(--color-primary);
margin-top: 10em;
margin-bottom: 3em;
}
#search h2 {
color: var(--color-secondary);
font-size: 55px;
text-align: left;
line-height: 1.3;
padding-bottom: 1em;
text-align: center;
}
#search .col-md-10 {
margin: 0 auto;
}
#search .list-group {
margin-bottom: 20px;
}
#search .list-group-item.active {
z-index: 2;
color: var(--color-secondary);
background-color: transparent;
border: 1px solid var(--color-secondary);
-webkit-transition: all 0.4s ease 0s;
-o-transition: all 0.4s ease 0s;
transition: all 0.4s ease 0s;
}
#search .list-group-item.active h4 {
color: var(--color-secondary);
}
#search .list-group-item.active p {
color: var(--color-secondary);
margin: 0;
}
#search .list-group-item.active:hover h4 {
color: #fff;
}
#search .list-group-item.active:hover p {
color: #fff;
}
#search .list-group-item.active:hover {
z-index: 2;
color: var(--color-primary);
background-color: var(--color-secondary);
border: 1px solid var(--color-secondary);
}
#search-input {
align-items: center;
background: var(--color-secondary);
border: 1px solid var(--color-secondary);
border-radius: 0.5rem;
display: flex;
justify-content: space-between;
margin: 0.5em 0;
padding: 0.7em 0.5em 0.7em 1em;
transition: all 0.5s;
width: 350px;
float: right;
}
#search-input button,
#search-input input {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background: rgba(0, 0, 0, 0);
border: none;
outline: none;
color: inherit;
font: inherit;
}
#search-input button {
cursor: pointer;
padding: 0 0.25em;
}
#search-input button i {
color: var(--color-primary);
}
#search-input input {
flex: 1;
color: var(--color-primary);
border-color: var(--color-primary);
}
#search-input input::-moz-placeholder {
color: var(--color-primary);
}
#search-input input:-ms-input-placeholder {
color: var(--color-primary);
}
#search-input input::placeholder {
color: var(--color-primary);
}
#search-input input:focus {
color: var(--color-primary);
border-color: var(--color-primary);
-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
outline: none;
}
.pagination {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
.pagination-item {
margin-right: 18px;
}
.pagination-item a {
padding: 11px 16px 11px 16px;
display: inline-block;
transition: 0.2s all;
color: var(--color-primary);
background-color: var(--color-secondary);
border: solid 1px var(--color-secondary);
border-radius: 10px;
}
.pagination-item a:hover {
color: var(--color-secondary);
background-color: transparent;
border: solid 1px var(--color-secondary);
}
.pagination-item span.current {
padding: 11px 16px 11px 16px;
display: inline-block;
transition: 0.2s all;
color: var(--color-hover);
background-color: var(--color-secondary);
border: solid 1px var(--color-secondary);
border-radius: 10px;
} footer {
background-color: var(--color-primary);
padding: 0 0 30px 0;
}
footer .col-md-12 {
border-top: 2px solid #bcc6c3;
text-align: center;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
}
footer .g-icon {
width: 100px;
height: auto;
} #wa_button {
bottom: 0px;
right: -35px;
position: fixed;
z-index: 999;
}
.img-circle {
background-color: #25d366;
box-sizing: content-box;
-webkit-box-sizing: content-box;
}
.circlephone {
box-sizing: content-box;
-webkit-box-sizing: content-box;
border: 2px solid #25d366;
width: 150px;
height: 150px;
bottom: -25px;
right: 10px;
position: absolute;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
opacity: 0.5;
-webkit-animation: circle-anim 2.4s infinite ease-in-out !important;
-moz-animation: circle-anim 2.4s infinite ease-in-out !important;
-ms-animation: circle-anim 2.4s infinite ease-in-out !important;
-o-animation: circle-anim 2.4s infinite ease-in-out !important;
animation: circle-anim 2.4s infinite ease-in-out !important;
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
-o-transition: all 0.5s;
transition: all 0.5s;
}
.circle-fill {
box-sizing: content-box;
-webkit-box-sizing: content-box;
background-color: #25d366;
width: 100px;
height: 100px;
bottom: 0px;
right: 35px;
position: absolute;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
border: 2px solid transparent;
-webkit-animation: circle-fill-anim 2.3s infinite ease-in-out;
-moz-animation: circle-fill-anim 2.3s infinite ease-in-out;
-ms-animation: circle-fill-anim 2.3s infinite ease-in-out;
-o-animation: circle-fill-anim 2.3s infinite ease-in-out;
animation: circle-fill-anim 2.3s infinite ease-in-out;
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
-o-transition: all 0.5s;
transition: all 0.5s;
}
.img-circle {
box-sizing: content-box;
-webkit-box-sizing: content-box;
width: 72px;
height: 72px;
bottom: 14px;
right: 49px;
position: absolute;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
border: 2px solid transparent;
opacity: 0.9;
}
.img-circleblock {
box-sizing: content-box;
-webkit-box-sizing: content-box;
width: 72px;
height: 72px;
background-image: url(//neocubo.works/wp-content/themes/neocubo/assets/images/wp.png);
background-position: center center;
background-repeat: no-repeat;
animation-name: tossing;
-webkit-animation-name: tossing;
animation-duration: 1.5s;
-webkit-animation-duration: 1.5s;
animation-iteration-count: infinite;
-webkit-animation-iteration-count: infinite;
}
.img-circle:hover {
opacity: 1;
}
@keyframes pulse {
0% {
transform: scale(0.9);
opacity: 1;
}
50% {
transform: scale(1);
opacity: 1;
}
100% {
transform: scale(0.9);
opacity: 1;
}
}
@-webkit-keyframes pulse {
0% {
-webkit-transform: scale(0.95);
opacity: 1;
}
50% {
-webkit-transform: scale(1);
opacity: 1;
}
100% {
-webkit-transform: scale(0.95);
opacity: 1;
}
}
@keyframes tossing {
0% {
transform: rotate(-8deg);
}
50% {
transform: rotate(8deg);
}
100% {
transform: rotate(-8deg);
}
}
@-webkit-keyframes tossing {
0% {
-webkit-transform: rotate(-8deg);
}
50% {
-webkit-transform: rotate(8deg);
}
100% {
-webkit-transform: rotate(-8deg);
}
}
@-moz-keyframes circle-fill-anim {
0% {
-moz-transform: rotate(0deg) scale(0.7) skew(1deg);
opacity: 0.2;
}
50% {
-moz-transform: rotate(0deg) -moz-scale(1) skew(1deg);
opacity: 0.2;
}
100% {
-moz-transform: rotate(0deg) scale(0.7) skew(1deg);
opacity: 0.2;
}
}
@-webkit-keyframes circle-fill-anim {
0% {
-webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
opacity: 0.2;
}
50% {
-webkit-transform: rotate(0deg) scale(1) skew(1deg);
opacity: 0.2;
}
100% {
-webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
opacity: 0.2;
}
}
@-o-keyframes circle-fill-anim {
0% {
-o-transform: rotate(0deg) scale(0.7) skew(1deg);
opacity: 0.2;
}
50% {
-o-transform: rotate(0deg) scale(1) skew(1deg);
opacity: 0.2;
}
100% {
-o-transform: rotate(0deg) scale(0.7) skew(1deg);
opacity: 0.2;
}
}
@keyframes circle-fill-anim {
0% {
transform: rotate(0deg) scale(0.7) skew(1deg);
opacity: 0.2;
}
50% {
transform: rotate(0deg) scale(1) skew(1deg);
opacity: 0.2;
}
100% {
transform: rotate(0deg) scale(0.7) skew(1deg);
opacity: 0.2;
}
}@media (min-width: 1280px) and (max-width: 4000px) {
.mobile-nav-show {
display: none;
}
}
@media (min-width: 1445px) and (max-width: 1600px) {
.blog .card {
margin: 20px 0;
}
}
@media (min-width: 1367px) and (max-width: 1444px) {
.blog .card {
margin: 20px 0;
}
}
@media (min-width: 1281px) and (max-width: 1366px) {
.navbar .menu-item-has-children .menu-item-has-children ul {
left: -90%;
}  
.navbar .menu-item-has-children .menu-item-has-children:hover>ul {
left: -100%;
}
.blog .card {
margin: 20px 0;
min-height: 560px;
}
}
@media (min-width: 1200px) and (max-width: 1280px) {
#quem-confia .icon-box {
min-height: 400px;
}
.blog .card {
margin: 20px 0;
min-height: 560px;
}
}
@media (min-width: 769px) and (max-width: 1024px) {
#quem-somos .content h2 {
font-size: 40px;
}
.blog .card {
margin: 20px 0;
min-height: 560px;
}
#quem-confia .icon-box {
min-height: 400px;
}
}
@media (width: 1180px) and (height: 820px) {
#header {
background-color: #fff;
}
#header.header-scrolled {
background: #fff;
}
.navbar .social {
display: none;
}
.navbar .current-menu-item a:before, .navbar.page .current-menu-item a:before {
visibility: hidden;
width: 0;
}
#hero .swiper-slide{
min-height: 50vh;
}
#hero .swiper-slide h2,
#hero-page .swiper-slide h2 {
font-size: 40px;
}
#hero .swiper-slide,
#hero-page .swiper-slide {
padding: 0 20px;
}
}
@media (width: 820px) and (height: 1180px) {
#header {
background-color: #fff;
}
#header.header-scrolled {
background: #fff;
}
.navbar .social {
display: none;
}
.navbar .current-menu-item a:before, .navbar.page .current-menu-item a:before {
visibility: hidden;
width: 0;
}
#hero .swiper-slide{
min-height: 50vh;
}
#hero .swiper-slide h2,
#hero-page .swiper-slide h2 {
font-size: 40px;
}
#hero .swiper-slide,
#hero-page .swiper-slide {
padding: 0 20px;
}
}
@media (min-width: 768px) and (max-width: 912px) {
#header {
background-color: #fff;
}
#header.header-scrolled {
background: #fff;
}
.navbar .social {
display: none;
}
.navbar .current-menu-item a:before, .navbar.page .current-menu-item a:before {
visibility: hidden;
width: 0;
}
#hero .swiper-slide{
min-height: 50vh;
}
#hero .swiper-slide h2,
#hero-page .swiper-slide h2 {
font-size: 40px;
}
#hero .swiper-slide,
#hero-page .swiper-slide {
padding: 0 20px;
}
}
@media (min-width: 320px) and (max-width: 480px) {
#header {
background-color: #000;
}
#header a.navbar-brand{ padding-bottom: 10px;		
}
.navbar .container {
background-color: #000;
}	
.navbar ul.navbar-nav{ padding: 0 0 0;
}	
#hero .swiper-container{
height: 100vh;
}
#hero .swiper-slide{
min-height: 100vh;
}
#hero .swiper-slide img {
width: 100%;
height: auto;
margin-bottom: 56px;
padding: 0 30px;
}
#hero .swiper-slide h1 {
font-size: 22px;
}
#quem-somos {
margin: 0 10px;
}
#quem-somos .border-right {
border-right: none;
}
#quem-somos .col-md-12 h2 {
font-size: 50px;
}
#quem-somos h5{
margin: 0;	
}
#quem-somos .content {
text-align: center;
}
#quem-somos .col-md-12 .row .col-md-2 {
justify-content: center;
}
#aio .imgs-services {
max-width: 85%;
}
#aio #quem-somos .conteudo-quem-somos .col-md-4 {
margin-bottom: 20px;
}
section#oque-fazemos {
padding: 100px 0 0 0;
}
#oque-fazemos .primeira,
#oque-fazemos .segunda,
#oque-fazemos .terceira {
margin-bottom: 20px;
}
#oque-fazemos .swiper-container {
height: 135px;
}
#oque-fazemos .section-title h3 {
font-size: 50px;
}
#quem-confia .section-title h3 {
font-size: 50px;
}
#quem-confia .icon-box{
min-height: 500px;		
}
#quem-confia .confiantes {
max-width: 33%;
display: flex;
justify-content: center;
}
#contato h2{
font-size: 50px;
}
#blog-page {
margin-top: 5em;
}
#blog-page h2 {
text-align: center;
padding-bottom: .5em;
}
#blog-page #search-input {
text-align: center;
margin: .5em auto;
float: none;
}
#blog-single .share{
padding: 0 1em;
}
#blog-single .post-tags {
padding: 1em 1em 0 1em;
}
#blog-single .blog-posts-nav {
padding: 0 1em;
margin: 38px auto;
}
#blog-single h2.related-posts {
padding: 0 1em;
}
.post-single .single-header {
left: 10px;
}
.post-single p{
padding: 0 1em;
}
.post-single blockquote > p {
padding: 0 1em;
margin-bottom: 8px;
font-size: 20px;
}
#search {
margin-top: 5em;
}
#search .list-group {
margin: 0 1em 20px 1em;
}
}.preloader {
top: 0;
left: 0;
z-index: 99999;
position: fixed;
height: 100%;
width: 100%;
text-align: center;
background: #040404;
}
.preloader-logo,
.preloader-preview-area {
top: 55%;
}
.preloader-preview-area {
-webkit-animation-delay: -0.2s;
animation-delay: -0.2s;
-webkit-transform: translateY(100%);
-ms-transform: translateY(100%);
transform: translateY(100%);
margin-top: 10px;
width: 100%;
text-align: center;
position: absolute;
}
.preloader-logo {
max-width: 100%;
-webkit-transform: translateY(-100%);
-ms-transform: translateY(-100%);
transform: translateY(-100%);
margin: -10px auto 0;
position: relative;
}
.ball-pulse > div,
.ball-scale > div,
.line-scale > div {
margin: 2px;
display: inline-block;
background: #fff;
}
.ball-pulse > div {
width: 15px;
height: 15px;
border-radius: 100%;
-webkit-animation: ball-pulse 0.75s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
animation: ball-pulse 0.75s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.ball-pulse > div:nth-child(1) {
-webkit-animation-delay: -0.36s;
animation-delay: -0.36s;
}
.ball-pulse > div:nth-child(2) {
-webkit-animation-delay: -0.24s;
animation-delay: -0.24s;
}
.ball-pulse > div:nth-child(3) {
-webkit-animation-delay: -0.12s;
animation-delay: -0.12s;
}
@-webkit-keyframes ball-pulse {
0%,
80% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 1;
}
45% {
-webkit-transform: scale(0.1);
transform: scale(0.1);
opacity: 0.7;
}
}
@keyframes ball-pulse {
0%,
80% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 1;
}
45% {
-webkit-transform: scale(0.1);
transform: scale(0.1);
opacity: 0.7;
}
}
.ball-clip-rotate-pulse {
position: relative;
-webkit-transform: translateY(-15px);
-ms-transform: translateY(-15px);
transform: translateY(-15px);
display: inline-block;
}
.ball-clip-rotate-pulse > div {
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
position: absolute;
top: 0;
left: 0;
border-radius: 100%;
}
.ball-clip-rotate-pulse > div:first-child {
height: 36px;
width: 36px;
top: 7px;
left: -7px;
-webkit-animation: ball-clip-rotate-pulse-scale 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
animation: ball-clip-rotate-pulse-scale 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
}
.ball-clip-rotate-pulse > div:last-child {
position: absolute;
width: 50px;
height: 50px;
left: -16px;
top: -2px;
background: 0 0;
border: 2px solid;
-webkit-animation: ball-clip-rotate-pulse-rotate 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
animation: ball-clip-rotate-pulse-rotate 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
-webkit-animation-duration: 1s;
animation-duration: 1s;
}
@-webkit-keyframes ball-clip-rotate-pulse-rotate {
0% {
-webkit-transform: rotate(0) scale(1);
transform: rotate(0) scale(1);
}
50% {
-webkit-transform: rotate(180deg) scale(0.6);
transform: rotate(180deg) scale(0.6);
}
100% {
-webkit-transform: rotate(360deg) scale(1);
transform: rotate(360deg) scale(1);
}
}
@keyframes ball-clip-rotate-pulse-rotate {
0% {
-webkit-transform: rotate(0) scale(1);
transform: rotate(0) scale(1);
}
50% {
-webkit-transform: rotate(180deg) scale(0.6);
transform: rotate(180deg) scale(0.6);
}
100% {
-webkit-transform: rotate(360deg) scale(1);
transform: rotate(360deg) scale(1);
}
}
@-webkit-keyframes ball-clip-rotate-pulse-scale {
30% {
-webkit-transform: scale(0.3);
transform: scale(0.3);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
@keyframes ball-clip-rotate-pulse-scale {
30% {
-webkit-transform: scale(0.3);
transform: scale(0.3);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
@-webkit-keyframes square-spin {
25% {
-webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
transform: perspective(100px) rotateX(180deg) rotateY(0);
}
50% {
-webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
transform: perspective(100px) rotateX(180deg) rotateY(180deg);
}
75% {
-webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
transform: perspective(100px) rotateX(0) rotateY(180deg);
}
100% {
-webkit-transform: perspective(100px) rotateX(0) rotateY(0);
transform: perspective(100px) rotateX(0) rotateY(0);
}
}
@keyframes square-spin {
25% {
-webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
transform: perspective(100px) rotateX(180deg) rotateY(0);
}
50% {
-webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
transform: perspective(100px) rotateX(180deg) rotateY(180deg);
}
75% {
-webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
transform: perspective(100px) rotateX(0) rotateY(180deg);
}
100% {
-webkit-transform: perspective(100px) rotateX(0) rotateY(0);
transform: perspective(100px) rotateX(0) rotateY(0);
}
}
.square-spin {
display: inline-block;
}
.square-spin > div {
width: 50px;
height: 50px;
-webkit-animation: square-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
animation: square-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
}
.cube-transition {
position: relative;
-webkit-transform: translate(-25px, -25px);
-ms-transform: translate(-25px, -25px);
transform: translate(-25px, -25px);
display: inline-block;
}
.cube-transition > div {
width: 15px;
height: 15px;
position: absolute;
top: -5px;
left: -5px;
-webkit-animation: cube-transition 1.6s 0s infinite ease-in-out;
animation: cube-transition 1.6s 0s infinite ease-in-out;
}
.cube-transition > div:last-child {
-webkit-animation-delay: -0.8s;
animation-delay: -0.8s;
}
@-webkit-keyframes cube-transition {
25% {
-webkit-transform: translateX(50px) scale(0.5) rotate(-90deg);
transform: translateX(50px) scale(0.5) rotate(-90deg);
}
50% {
-webkit-transform: translate(50px, 50px) rotate(-180deg);
transform: translate(50px, 50px) rotate(-180deg);
}
75% {
-webkit-transform: translateY(50px) scale(0.5) rotate(-270deg);
transform: translateY(50px) scale(0.5) rotate(-270deg);
}
100% {
-webkit-transform: rotate(-360deg);
transform: rotate(-360deg);
}
}
@keyframes cube-transition {
25% {
-webkit-transform: translateX(50px) scale(0.5) rotate(-90deg);
transform: translateX(50px) scale(0.5) rotate(-90deg);
}
50% {
-webkit-transform: translate(50px, 50px) rotate(-180deg);
transform: translate(50px, 50px) rotate(-180deg);
}
75% {
-webkit-transform: translateY(50px) scale(0.5) rotate(-270deg);
transform: translateY(50px) scale(0.5) rotate(-270deg);
}
100% {
-webkit-transform: rotate(-360deg);
transform: rotate(-360deg);
}
}
.ball-scale > div {
border-radius: 100%;
height: 60px;
width: 60px;
-webkit-animation: ball-scale 1s 0s ease-in-out infinite;
animation: ball-scale 1s 0s ease-in-out infinite;
}
@-webkit-keyframes ball-scale {
0% {
-webkit-transform: scale(0);
transform: scale(0);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 0;
}
}
@keyframes ball-scale {
0% {
-webkit-transform: scale(0);
transform: scale(0);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 0;
}
}
.line-scale > div {
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
width: 5px;
height: 50px;
border-radius: 2px;
}
.line-scale > div:nth-child(1) {
-webkit-animation: line-scale 1s -0.5s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
animation: line-scale 1s -0.5s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.line-scale > div:nth-child(2) {
-webkit-animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.line-scale > div:nth-child(3) {
-webkit-animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.line-scale > div:nth-child(4) {
-webkit-animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.line-scale > div:nth-child(5) {
-webkit-animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
@-webkit-keyframes line-scale {
0%,
100% {
-webkit-transform: scaley(1);
transform: scaley(1);
}
50% {
-webkit-transform: scaley(0.4);
transform: scaley(0.4);
}
}
@keyframes line-scale {
0%,
100% {
-webkit-transform: scaley(1);
transform: scaley(1);
}
50% {
-webkit-transform: scaley(0.4);
transform: scaley(0.4);
}
}
.ball-scale-multiple {
position: relative;
-webkit-transform: translateY(30px);
-ms-transform: translateY(30px);
transform: translateY(30px);
display: inline-block;
}
.ball-scale-multiple > div {
border-radius: 100%;
position: absolute;
left: -30px;
top: 0;
opacity: 0;
margin: 0;
width: 50px;
height: 50px;
-webkit-animation: ball-scale-multiple 1s 0s linear infinite;
animation: ball-scale-multiple 1s 0s linear infinite;
}
.ball-scale-multiple > div:nth-child(2),
.ball-scale-multiple > div:nth-child(3) {
-webkit-animation-delay: -0.2s;
animation-delay: -0.2s;
}
@-webkit-keyframes ball-scale-multiple {
0% {
-webkit-transform: scale(0);
transform: scale(0);
opacity: 0;
}
5% {
opacity: 1;
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 0;
}
}
@keyframes ball-scale-multiple {
0% {
-webkit-transform: scale(0);
transform: scale(0);
opacity: 0;
}
5% {
opacity: 1;
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 0;
}
}
.ball-pulse-sync {
display: inline-block;
}
.ball-pulse-sync > div {
width: 15px;
height: 15px;
border-radius: 100%;
margin: 2px;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
display: inline-block;
}
.ball-pulse-sync > div:nth-child(1) {
-webkit-animation: ball-pulse-sync 0.6s -0.21s infinite ease-in-out;
animation: ball-pulse-sync 0.6s -0.21s infinite ease-in-out;
}
.ball-pulse-sync > div:nth-child(2) {
-webkit-animation: ball-pulse-sync 0.6s -0.14s infinite ease-in-out;
animation: ball-pulse-sync 0.6s -0.14s infinite ease-in-out;
}
.ball-pulse-sync > div:nth-child(3) {
-webkit-animation: ball-pulse-sync 0.6s -70ms infinite ease-in-out;
animation: ball-pulse-sync 0.6s -70ms infinite ease-in-out;
}
@-webkit-keyframes ball-pulse-sync {
33% {
-webkit-transform: translateY(10px);
transform: translateY(10px);
}
66% {
-webkit-transform: translateY(-10px);
transform: translateY(-10px);
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes ball-pulse-sync {
33% {
-webkit-transform: translateY(10px);
transform: translateY(10px);
}
66% {
-webkit-transform: translateY(-10px);
transform: translateY(-10px);
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
.transparent-circle {
display: inline-block;
border-top: 0.5em solid rgba(255, 255, 255, 0.2);
border-right: 0.5em solid rgba(255, 255, 255, 0.2);
border-bottom: 0.5em solid rgba(255, 255, 255, 0.2);
border-left: 0.5em solid #fff;
-webkit-transform: translateZ(0);
transform: translateZ(0);
-webkit-animation: transparent-circle 1.1s infinite linear;
animation: transparent-circle 1.1s infinite linear;
width: 50px;
height: 50px;
border-radius: 50%;
}
.transparent-circle:after {
border-radius: 50%;
width: 10em;
height: 10em;
}
@-webkit-keyframes transparent-circle {
0% {
-webkit-transform: rotate(0);
transform: rotate(0);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes transparent-circle {
0% {
-webkit-transform: rotate(0);
transform: rotate(0);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
.ball-spin-fade-loader {
position: relative;
top: -10px;
left: -10px;
display: inline-block;
}
.ball-spin-fade-loader > div {
width: 15px;
height: 15px;
border-radius: 100%;
margin: 2px;
position: absolute;
-webkit-animation: ball-spin-fade-loader 1s infinite linear;
animation: ball-spin-fade-loader 1s infinite linear;
}
.ball-spin-fade-loader > div:nth-child(1) {
top: 25px;
left: 0;
animation-delay: -0.84s;
-webkit-animation-delay: -0.84s;
}
.ball-spin-fade-loader > div:nth-child(2) {
top: 17.05px;
left: 17.05px;
animation-delay: -0.72s;
-webkit-animation-delay: -0.72s;
}
.ball-spin-fade-loader > div:nth-child(3) {
top: 0;
left: 25px;
animation-delay: -0.6s;
-webkit-animation-delay: -0.6s;
}
.ball-spin-fade-loader > div:nth-child(4) {
top: -17.05px;
left: 17.05px;
animation-delay: -0.48s;
-webkit-animation-delay: -0.48s;
}
.ball-spin-fade-loader > div:nth-child(5) {
top: -25px;
left: 0;
animation-delay: -0.36s;
-webkit-animation-delay: -0.36s;
}
.ball-spin-fade-loader > div:nth-child(6) {
top: -17.05px;
left: -17.05px;
animation-delay: -0.24s;
-webkit-animation-delay: -0.24s;
}
.ball-spin-fade-loader > div:nth-child(7) {
top: 0;
left: -25px;
animation-delay: -0.12s;
-webkit-animation-delay: -0.12s;
}
.ball-spin-fade-loader > div:nth-child(8) {
top: 17.05px;
left: -17.05px;
animation-delay: 0s;
-webkit-animation-delay: 0s;
}
@-webkit-keyframes ball-spin-fade-loader {
50% {
opacity: 0.3;
-webkit-transform: scale(0.4);
transform: scale(0.4);
}
100% {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
}
@keyframes ball-spin-fade-loader {
50% {
opacity: 0.3;
-webkit-transform: scale(0.4);
transform: scale(0.4);
}
100% {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
}