@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');


:root{

    --black : #101010;

    --white : #fff;

    --blue :#215CC3;

    --light-blue : #0585CD; 

    --golden : #60D497;

    --green : #175B71;

    --grey : #F5F5F5;

    --red : #d61313;
    --dark-blue : #002848;
    --sky : #3DBCFF;


}



*{

    font-family: 'Poppins', sans-serif;

    border: none;  outline: none;

    list-style: none;

    text-decoration: none;

    text-transform: capitalize;

    box-sizing:  border-box;

}



*::selection{

  background-color: var(--green);

  color: var(--white);

}



*:focus {

    outline: none;

}



body , html{

    overflow-x: hidden;

    scroll-behavior: smooth;

}



body::-webkit-scrollbar , .box-mobile::-webkit-scrollbar {

    width: 8px;

}



body::-webkit-scrollbar-track  , .box-mobile::-webkit-scrollbar-track{

    box-shadow: inset 0 0 6px #fff;

}



body::-webkit-scrollbar-thumb , .box-mobile::-webkit-scrollbar-thumb  {

    background-color:  var(--blue);

    outline: 1px solid var(--blue);

}

.relative{

    position: relative;

}

.absolute{

    position: absolute;

}



a , a:hover{

    text-decoration: none;

}

ul{

  padding: 0;

  margin: 0;

}

h1,h2,h3,h4,h5,h6,p,ul,span{

    margin-bottom: 0;

}

img{

    max-width: 100%;

    height: auto;

}



span,a,li,p {

    font-size: 16px;

    margin-bottom: 0;
    text-transform: initial;

}



.container{

    max-width: 1170px

}



section{

    padding: 60px 0;

}

.bilink{



    animation: red-hover 500ms infinite alternate;

}

@keyframes red-hover{

    0%{  color: var(--black); background-color: var(--golden);}

    100%{ color: var(--white);};

}

.img-bilibk{

    animation: blinker 1s linear 0s infinite normal none running;

}

@keyframes blinker {

    0% {

        opacity: 1;

    }



    49% {

        opacity: 1;

    }



    60% {

        opacity: 0;

    }



    99% {

        opacity: 0;

    }



    100% {

        opacity: 1;

    }



}

.f-17{

    font-size: 17px;
}
.f-18{

    font-size: 18px;
    line-height: 22px;
}
.f-12{

    font-size: 12px;
}
.f-14{

    font-size: 14px;
}



.f-30{

    font-size: 30px;

}

.f-70{

    font-size: 70px;

}

.f-25{

    font-size: 25px;
}
.f-27{

    font-size: 27px;

}

.f-22{

    font-size: 22px;

}

.f-20{

    font-size: 20px;

}

.f-60{

    font-size: 60px;

}

.f-40{
    font-size: 40px;
}

.f-35{
    font-size: 35px;
}
.f-50{
    font-size: 50px;
    line-height: 50px;
}
.f-36{

    font-size: 36px;

}

.fw-100{

    font-weight: 100;

}

.fw-200{

    font-weight: 200;

}

.fw-300{

    font-weight: 300;

}



.fw-400{

    font-weight: 400;

}

.fw-500{

    font-weight: 500;

}

.fw-600{

    font-weight: 600;

}

.fw-700{

    font-weight: 700;

}

.fw-800{

    font-weight: 800;

}

.fw-900{

    font-weight: 900;

}

.text-white{

    color: var(--white);

}

.bg-blue{

    background-color: var(--blue);

}

.bg-light-blue{

    background-color: var(--light-blue);

}

.bg-black{

    background-color: var(--black);

}

.text-light-blue{

    color: var(--light-blue);
}
.text-sky{

    color: var(--sky);
}
.text-blue{

    color: var(--blue);
}
.text-yellow{
    color: #FFCF46;
}
.text-d-blue{

    color: var(--dark-blue);
}

.text-golden{

    color: var(--golden);

}

.text-green{

    color: var(--green);

}   

.header {

    position: relative;

    left: 0;

    right: 0;

    top: 5%;
    padding: 0;

}

.header ul li:nth-child(2) {

    margin-left: auto;

}

.secondary-btn-wrap {

    font-size: 16px;

    font-weight: 500;

    background-color: var(--black);

    color: var(--white);

    padding: 10px 20px;

    border-radius: 3px;

    border: 1px solid transparent;

    display: block;

}

.secondary-btn-wrap:hover {

    color: var(--golden);

    background: transparent;

    border: 1px solid var(--golden);

}


.primary-btn-wrap {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    padding: 10px 25px;
    display: block;
    border: 1px solid var(--light-blue);
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: max-content;
}



.primary-btn-wrap:hover {
    color: var(--light-blue);

    border: 1px solid var(--black)

}

.banner-wrap{
    background: url(../../assets/images/banner-bg.png) center center / cover  no-repeat;

    padding-top: 80px;

    padding-bottom: 230px;
    background-position: top;
}

.banner-wrap h1 span {

    font-size: 70px;

    font-weight: 700;

    line-height: 75px;

    display: block;

}

.banner-wrap .list {

    display: grid;

    grid-template-columns: auto auto;

    width: max-content;

    row-gap: 7px;

    column-gap: 30px;

    font-size: 22px;

    margin: 18px 0;

}



.banner-wrap .list li {

    font-size: 20px;

    font-weight: 500;

}

.counter ul {
    display: flex;
    gap: 25px;
    background-color: var(--blue);
    padding: 20px 25px;
    border-radius: 15px;
    max-width: max-content;
}


.counter ul li span {
    font-size: 45px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;

}

.counter p {

    font-size: 13px;

    color: var(--white);

    text-align: left;

}

.counter ul li span:nth-child(2) {

    padding-left: 10px;

}

section.banner-lead-form .container {

    background-color: #2D2D2D;

    border-radius: 10px;

    padding: 45px 60px;

}

.banner-lead-form a {

    color: var(--white);

    padding: 5px 0 10px 0;

    display: block;

}



.banner-lead-form a:hover {

    color: var(--sky);

}

.banner-lead-form input {

    width: 500px;

    height: 48px;

    color: #000;

    padding-left: 15px;

    font-size: 16px;

    margin-bottom: 10px;

    border-radius: 3px;

}

.banner-lead-form textarea {

    width: 500px;

    height: 107px;

    border-radius: 3px;

    background-color: var(--white);

    padding: 20px;

    font-size: 16px;

    color: #000;

}

.banner-lead-form button {

    font-size: 20px;

    font-weight: 600;

    color: var(--white);

    background-color: var(--sky);

    width: 500px;

    height: 48px;

    border-radius: 3px;

}



.banner-lead-form button:hover {

    background-color: var(--white);

    color: var(--black);

}

.banner-lead-form {

    margin-top: -200px;

}
.banner-wrap .banner-img {
    position: relative;
    max-width: max-content;
}

.banner-wrap .after-circle-img {

    position: absolute;

    top: 23%;

    left: -1%;

    max-width: 543px;

    animation: filter-animate 1s infinite alternate;

    width: 570px;

    height: 570px;

    background-color: var(--golden);

    clip-path: circle();

}

.header-after-info .list {

    display: grid;

    grid-template-columns: auto auto;

    margin-left: 16px;

    margin-top: 10px;

}



.header-after-info .list li {

    list-style: disc;

    line-height: 28px;

    font-weight: 500;

}

.header-after-info .btn-wrap li a {display: block;margin-top: 20px;margin-bottom: 30px;}

.header-after-info .after-img {

    position: absolute;

    left: 0;
    bottom: 0;

}

.header-after-info img:nth-child(2) {

    position: absolute;

    right: 10%;

}

.platforms{

    background: url(../../assets/images/platform-bg.webp) center center / cover  no-repeat;

}

.header-after-info .btn-wrap li:nth-child(1) a {

    padding: 10px 18px;

    background-color: var(--black);

    display: block;

}

.header-after-info .btn-wrap li:nth-child(1) a:hover , .portfolio-tabs .secondary-btn-wrap:hover{

    background-color: var(--golden);

    color: var(--white);

    border: 1px solid transparent;

}

.header-after-info .btn-wrap li:nth-child(2) a {

    padding: 10px 35px;

}
.bg-grey{
    background-color: #E7E7E7;
}
.after-portfolio-info{
    background: url(../../assets/images/after-portfolio-bg.webp) center center / cover  no-repeat;
}

.cta-wrap{

    background: url(../../assets/images/cta-bg.webp) center center / cover  no-repeat;
    background-position: left;
    padding: 70px 0;

}

.portfolio-content img {

    max-width: 370px;

    height: auto;

}

section.cta-wrap img {

    position: absolute;

    top: 0;

}

.cta-wrap .secondary-btn-wrap {

    background-color: var(--black);

    color: var(--white);

}



.cta-wrap .secondary-btn-wrap:hover {

    background-color: transparent;

    color: var(--white);

    border-color: var(--white);

}



.cta-wrap .primary-btn-wrap {

    background-color: var(--white);

    color: var(--black);

}



.cta-wrap .primary-btn-wrap:hover {

    border-color: var(--white);

    color: var(--golden);

}

.cta-wrap .cta-after-img  {

    position: absolute;

    right: 10%;

    top: -7%;

}

.portfolio-content {

    display: grid;

    grid-template-columns: auto auto auto auto;

    max-width: max-content;

    margin: auto;

    column-gap: 30px;

    row-gap: 30px;

}

.portfolio-tabs .nav {

    justify-content: center;

    background-color: var(--golden);

    max-width: 1170px;

    margin: auto;

    height: 50px;

    border-radius: 5px;

    margin-bottom: 45px;

    margin-top: 25px;

}



.portfolio-tabs .nav button {

    font-size: 16px;

    font-weight: 600;

    color: var(--white);

    padding: 0px 33.9px;

}

.portfolio-tabs .nav button:hover{

    border-color: var(--golden)

}

.portfolio-tabs .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {

    background-color: var(--black);

    border-color: var(--golden);

    border-radius: 0;

    padding: 0px 33.9px;

    color: var(--white);

    border-radius: 5px;

}

.portfolio-tabs .secondary-btn-wrap {

    background-color: var(--black);

    padding: 10px 60px;

}



.portfolio-tabs .primary-btn-wrap {

    padding: 10px 70px;

}

.box-content {

    width: 270px;

    height: 195px;

    background-color: #F5F5F5;

    color: var(--white);

    padding: 20px 20px;

    margin-bottom: 10px;

    border-radius: 20px;

    color: var(--black);

}

.box-content p {

    font-weight: 300;
    line-height: 20px;
    margin-top: 10px;
    height: 104px;
    overflow-y: scroll;
    padding-right: 10px;
    font-size: 14px;

}

.box-content:hover {

    color: var(--white);

    background-color: var(--golden);

}

.box-content p::-webkit-scrollbar , 

.testimonial-slider p::-webkit-scrollbar {

    width: 1px;

}



.box-content p::-webkit-scrollbar-track  , 

.testimonial-slider p::-webkit-scrollbar-track{

box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);

}



.box-content p::-webkit-scrollbar-thumb , 

.testimonial-slider p::-webkit-scrollbar-thumb {

background-color: var(--white);

outline: 1px solid var(--white);;

}

.portfolio-img {

    position: absolute;

    bottom: 0;

}

.portfolio-before-shape {

position: absolute;

    left: 5%;

    top: 30%;  

    animation: image-animate 1s infinite alternate;

 

}

.testimonial input::placeholder

{

    color: white!important;

}

@keyframes image-animate{

    0%{transform: translateY(-40px)};

    100%{transform: translateY(0)};

}

.testimonial .row .col-lg-6:nth-child(1) {

    background: url(../../assets/images/form-bg.webp) center center / cover  no-repeat;
    padding: 55px 30px;

}

.testimonial  h4 {

    text-transform: none;

    padding-right: 10px;

}



.testimonial  input {

    display: block;

    width: 100%;

    height: 40px;

    background-color: transparent;

    color: var(--white);

    border-bottom: 1px solid var(--white);

    margin-bottom: 35px;

    font-size: 15px;

}

.testimonial label {

    font-size: 14px;

    color: var(--white);

}



.testimonial  form {

    margin-top: 30px;

}

.testimonial button {

    padding: 10px 25px;

    border-radius: 5px;
    background-color: var(--golden);

}

.testimonial button:hover {

    background-color: var(--black);

    color: var(--white);

}

.testimonial .slide {

    max-width: 570px;

    height: 200px;

    background-color: var(--grey);

    padding: 40px 25px 50px 25px;

    position: relative;

    margin-top: 30px;

}

.testimonial .slide svg {

    position: absolute;

    top: -20px;

    font-size: 40px;

    color: var(--golden);

}

.testimonial .p-55 {

    padding: 55px 45px;

}

.testimonial{

    background: url(../../assets/images/testi-bg.webp) center right / contain  no-repeat;

}

.footer{

    background: url(../../assets/images/ft.png) center right / cover  no-repeat;
    position: relative;
    padding-top: 100px;

}
.footer form {
    max-width: 600px;
    background-color: var(--white);
    border: 3px solid #E5A555;
    border-radius: 10px;
    padding: 35px;
    position: relative;
}

.footer form input ,
.footer form textarea {
    border: 1px solid #0000005c;
    width: 100%;
    height: 45px;
    border-radius: 5px;
    margin-bottom: 10px;
    color: black;
    padding: 10px;
}
.footer form textarea {
    height: 90px;
}

.banner-lead-form img:nth-child(1) {

    position: absolute;

    right: 12%;

    top: 0;

}

@keyframes filter-animate{

    0% {

        transform: matrix(1.1, 0, 0, 1.1, 0, 0);

    }

    100% {

        transform: matrix(1, 0, 0, 1, 0, 0);

    }

}



.sec-footer {
    margin-bottom: 55px;
}
.sec-footer a {
    color: white;
    padding: 0 10px;
}
.header .container {
    max-width: 1500px;
}
.list img{
    filter: brightness(0) saturate(100%) invert(34%) sepia(92%) saturate(1052%) hue-rotate(174deg) brightness(97%) contrast(97%);
}
.header-after-info ul li {
    line-height: 30px;
}
.header-after-info ul li img {
    width: 20px;
}
.platform-slider {
    background: url(../../assets/images/platforms.png) center center / contain repeat;
    background-position: 50%;
    height: 51px;
    animation: platform-img-re 200s linear infinite;
    -webkit-animation: platform-img-re 200s linear infinite;
    top: 16px;
    background-size: 80%;
}
@-webkit-keyframes platform-img-re {
0% {
    background-position: 0 0
}

to {
    background-position: 4750px 0
}
}
.quote {
    position: absolute;
    right: 5%;
    top: 0;
}
.before__pricing ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 300;
    font-size: 14px;
    padding-bottom: 25px;
}
.before__pricing ul {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 20px;
}
.analytics,
.before-testimonal{
    background: url(../../assets/images/info-bg.png) center center / cover  no-repeat;
}
.analytics ul li {
    list-style: disc;
    margin-left: 17px;
    line-height: 25px;
}
.analytic-cta{
    background: url(../../assets/images/cta-bg.png) center center / cover  no-repeat;
    padding: 35px 0;
    border: 1px solid #80808063;
}
.engagements{
    background: url(../../assets/images/engagements-bg.png) center center / cover  no-repeat;
}
.engagements h6 {
    font-size: 60px;
    font-weight: 700;
    padding-bottom: 5px;
}
.engagements .col-12:nth-child(1),
.engagements .col-12:nth-child(2) {
    border-right: 1px solid #ffffff66;
}
.engagements .col-12{
padding: 40px 0;
}
.engagements img {
    margin-top: 10px;
}
.case__study .nav-link.active{
    padding: 0;
    position: relative;
    transform: matrix(1.1, 0, 0, 1.1, 0, 0);
}
.case__study  .nav {
    flex-wrap: nowrap;
}
.click-tab p {
    position: absolute;
    bottom: 5%;
    left: 5%;
    color: white;
}
.click-tab object{
    filter: brightness(0) saturate(100%) invert(82%) sepia(43%) saturate(3752%) hue-rotate(359deg) brightness(106%) contrast(106%);
    margin-left: 5px;
}
.case__study .nav-tabs .nav-link {
    background: 0 0;
    border: 0;
    padding: 0;
    margin: 15px;
}
.case__study .nav-link.active::before {
    padding: 0;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #255cc080;
    left: 0;
    top: 0;
    z-index: 99;
}   
.text-org{
    color: #ff3100;
}
.case__study .tab-content .col-12:nth-child(3){
    border : 0;
}
.case__study .tab-content .col-12 {
    padding: 15px 15px 0 15px;
    border-right: 1px solid #80808059;
}
.test-content {
    border: 1px solid #80808082;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}
.test-content p:nth-child(3) {
    font-size: 14px;
    color: #606060;
    height: 127px;
    overflow: auto;
    padding-right: 5px;
}
.test-content svg {
    color: #FE9800;
}
.test-content p:nth-child(3)::-webkit-scrollbar {
    width: 1px;
}

.test-content p:nth-child(3)::-webkit-scrollbar-track {
box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.test-content p:nth-child(3)::-webkit-scrollbar-thumb {
background-color: var(--sky);
outline: 1px solid var(--sky);
}
.one , .two{
    position: relative;
    top: 100px;
}
.three , .four{
    position: relative;
    top: -40px; 
}

.footer form button {
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    height: 45px;
    background-color: var(--blue);
    color: white;
    border-radius: 40px;
}

.footer form button:hover {
    background-color: black;
}
.footer form input, .footer form textarea::placeholder{
    font-size: 14px;
    color: grey;
}
.pin {
    position: absolute;
    left: -6%;
    top: -8%;
}
.ft-cta {
    background-color: var(--blue);
    color: white;
    padding: 20px 10px;
    border-radius: 10px;
    position: absolute;
    top: -41px;
    min-width: 1170px;
}
.ft-cta .primary-btn-wrap {
    background-color: white;
}
.ft-social li span {
    font-size: 14px;
    color: #a7a5a5;
}
.ft-social li p {
    font-size: 16px;
    font-weight: 500;
    line-height: 13px;
    text-transform: lowercase;
}
.ft-social li svg {
    color: #e5a555;
    font-size: 16px;
    margin-right: 5px;
}
.ft-social li a{
    color: white;
}
.ft-social li a:hover, .ft-social li a:hover span, .ft-social li a:hover svg {
    color: #1bb37b;
}
.ft-social li {
    padding-bottom: 20px;
}
/* card styling */

.pricing-wrap .card-content p:nth-child(1) {
    font-size: 20px;
    font-weight: 500;
}

.pricing-wrap .card-content .card-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pricing-wrap .card-content .card-price li:nth-child(1) span {
    font-size: 95px;
    font-weight: 500;
    font-family: 'Bebas Neue', sans-serif;
    display: flex;
    align-items: baseline;
    gap: 5px;
}
.pricing-wrap .card-content .card-price li:nth-child(2) span {
    font-size: 28px;
    font-weight: 600;
    font-family: 'Bebas Neue', sans-serif;
    position: relative;
}
.pricing-wrap .card-content a {
    font-size: 22px;
    font-weight: 500;
    display: block;
    text-align: center;
    background-color: #111727;
    color: white;
    padding: 7px;
    border-radius: 5px;
}

.pricing-wrap .card-content {
    background-color: #F5F5F5;
    padding: 20px;
    border-radius: 15px;
    max-width: 370px;
}
.pricing-wrap .pricing-list li:nth-child(1) {
    font-size: 22px;
    font-weight: 600;
    padding-bottom: 5px;
}

.pricing-wrap .pricing-list li {
    font-size: 13px;
    line-height: 26px;
}

.pricing-wrap .pricing-list li svg {
    margin-right: 5px;
}
.pricing-wrap .pricing-list {
    margin-top: 20px;
    height: 370px;
    overflow: auto;
}
.pricing-wrap .pricing-list::-webkit-scrollbar {
width: 2px;
}

.pricing-wrap .pricing-list::-webkit-scrollbar-track {
box-shadow: inset 0 0 6px #0000004d;
}

.pricing-wrap .pricing-list::-webkit-scrollbar-thumb {
background-color: #FFBA41;
outline: 1px solid #FFBA41;
height: 10px;
}
.card-content div p:nth-child(2) {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    border: 1px solid black;
    padding: 1px 15px;
    border-radius: 30px;
}
.pricing-wrap .card-content .card-price li:nth-child(2) span::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    border: 1px solid #D64E9E;
    top: 43%;
}
.pricing-wrap .card-content:hover {
    background-color: var(--blue);
    color: white;
}
.pricing-wrap .card-content:hover p:nth-child(1),
.pricing-wrap .card-content:hover p:nth-child(2){
    color: var(--sky);
    border-color: var(--sky);
}
.pricing-wrap .card-content:hover a{
    background-color: var(--sky);;
}
.pricing-wrap .slick-dots {
    bottom: -50px;
}
.pricing-wrap .store-title span {
    font-size: 140px !important;
    font-weight: 900;
    line-height: 40px;
}
.store-title span, .service-stroke-txt span {
    font-size: 130px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    line-height: 185px;
    color: black;
    -webkit-text-fill-color: white;
    -webkit-text-stroke-width: 1.5px;
    -webkit-text-stroke-color: #00000021;
    display: inline-block;
}
.store-title {
    position: absolute;
    z-index: -1;
}
.platform {
    border-top: 1px solid #80808033;
}
.slick-dots li {
    width: 30px;
    height: 6px;
    background-color: var(--sky);
  }
  .slick-dots li:active {
    background-color: var(--sky);;
  }
  .slick-dots li button:before,
  .slick-dots li.slick-active button:before {
    color: transparent;
}
.testi-slider .slick-dots li {
    width: 30px;
    height: 6px;
    background-color: #ffffff;
    border-radius: 10px;
    margin: 3px;
}
.slick-dots li.slick-active button:before {
    background-color: #113357;
    width: 50px;
    height: 6px;
    opacity: 1;
    border-radius: 5px;
}
.testimonial div ul:nth-child(1) {
    border-bottom: 1px solid white;
    width: max-content;
}
.slick-dots {
    bottom: -40px;
}
.case__study .store-title {
    position: absolute;
    z-index: -1;
    top: 0;
}
.pricing-wrap .nav-tabs .nav-link.active {
    color: var(--blue);
    font-weight: 700;
    border: 0;
    border-bottom: 2px solid var(--blue);
    padding: 0;
    background-color: transparent;
    border-radius: 0;
}
.pricing-wrap .nav-tabs .nav-link {
    padding: 0;
    font-weight: 700;
    color: var(--black);
}
.pricing-wrap .nav-tabs .nav-link:hover{
    border-color: transparent ;
}
.pricing-wrap .nav-tabs .nav-item {
    margin: 0 15px;
}
.box__wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.box__wrap li {
    background-color: #fff;
    border: 1px solid #8080805c;
    padding: 10px;
    font-size: 14px;
    line-height: 18px;
    border-radius: 10px;
}
.box__wrap li span {
    color: var(--blue);
    font-weight: 700;
}
.insta p {
    line-height: 20px;
}
.insta img {
    min-width: 30px;
    height: 30px;
    margin-bottom: 10px;
}
.insta p span {
    font-weight: 700;
}

.sticky-slider a{display:block;width:100%;position:fixed;bottom:0;text-transform:uppercase;text-align:center;font-weight:600!important;border:0;cursor:pointer;color:#fff!important;padding:15px 0;font-size:20px;margin:auto;border-radius:0;-webkit-transition:.1s linear;-moz-transition:.1s linear;-o-transition:.1s linear;-ms-transition:.1s linear;transition:.1s linear;background:#0c267a;float:none;left:0;right:0;animation:1.2s infinite blinkingText;z-index:1000}@keyframes blinkingText{0%{background:#da0d0b;color:#fff}100%,49%{background:#092338;color:#fff}60%{background:#da0c0a;color:#fff}99%{background:#092338}}