*{
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
}
html { scroll-behavior: smooth; }

input, textarea, button, body, h1, h2, h3, h4, h5, h6, p, b, i, u, label{
    font-family: "Inter", sans-serif !important;
    color: #fff !important;
}
body{
    overflow-x: hidden;
    background-color: #000 !important;
    color: #fff !important;
}
/* .container{
    width: 100%;
} */
img{
    max-width: 100%;
}
a{
    text-decoration: none;
    color: #fff;
}
section{
    position: relative;
}
main{

}
.announcement_bar{
    padding: 7px 0;
    text-align: center;
    background: linear-gradient(45deg, #1dfd59 -20%, rgb(36 52 169) 50%, #1dfd59 120%);
    font-size: 18px;
}
header{
    position: relative;
    width: 100%;
    padding: 20px 100px;
    background: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
}
.custom-header{
    z-index: 999;
}
header.fixed{
    position: fixed;
    top: 0;
    border-bottom: 1px solid #4e545c;
}
header .logo{
    display: inline-block;
    width: 200px;
    padding: 10px;
}
header ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
}
header ul li{
    list-style: none;
}
header ul li a{
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    padding: 15px 15px;
    transition: 400ms;
}
header ul li a:hover{
    color: #1dfd59;
}
header ul li a.hoverLink:before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #1dfd59;
    transform: scale(0);
    transition: 400ms;
}
header ul li a.hoverLink:after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -100%;
    width: 150px;
    height: 150px;
    border-radius: 100%;
    background: rgb(162, 72, 223);
    transform: scale(0);
    transition: 400ms;
    filter: blur(50px);
    opacity: .3;
}

header ul li a.hoverLink:hover:before{
    transform: scale(1);
}
header ul li a.hoverLink:hover:after{
    transform: scale(1);
}


.btn_custom{
    font-size: 16px;
    font-weight: 700;
    padding: 15px 20px;
    background: #833AB4;
    background: linear-gradient(45deg, #1dfd59 20%, rgb(36 52 169) 60%, #1dfd59 100%);
    /* background: linear-gradient(45deg, rgba(131, 58, 180, 1) 0%, rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%); */
    /* background: linear-gradient(45deg, rgba(253, 29, 29, 1) 0%, rgba(131, 58, 180, 1) 50%, rgb(255, 164, 74) 100%); */
    background-size: 180% 180%;
    border-radius: 150px;
    border: 2px solid transparent;
    display: inline-block;
    transition: 300ms;
    animation: mymove 10s infinite linear;
}
nav .btn_custom{
    margin-left: 20px;
}
.btn_custom.big{
    padding: 20px 30px;
}
@keyframes mymove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.btn_custom:hover{
    color: #fff;
    background: transparent;
    /* border: 3px solid #833ab4;
    box-shadow: 0 25px 100px #833ab4; */
    border: 2px solid #1dfd59 ;
    box-shadow: 0 25px 100px #1dfd59 ;
    transform: scale(1.1) translateY(-5px);
}

.sec_bg_color{
    /* background: linear-gradient(to bottom, #021a0490, #1e203b90 30%); */
    /*background:  linear-gradient(0deg, #07320b90, #21244a90 100%), url(https://worldofindicators.com/wp-content/uploads/2025/11/dragan_8.png);*/
    background:  linear-gradient(0deg, #00000080, #000000), url(https://worldofindicators.com/wp-content/uploads/2025/11/dragan_8.png);
    /*background-size: cover;*/
}
main .hero_sec{
    min-height: 90vh;
    width: 100%;
    /* padding: 100px 0; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: #833AB4; */
    /* background: linear-gradient(to bottom, #0f021a90, #3B1E3690 30%); */
    text-align: center;
    color: #fff;
}
main .hero_sec .text_block{
    max-width: 80%;
    margin: 0 auto;
    /* padding: 0 200px; */
}
main .hero_sec .text_block h1{
    font-size: 78px;
    font-weight: 800;
    margin: 0;
}
main .hero_sec .text_block h3{
    font-size: 32px;
    font-weight: 500;
    margin: 30px 0 80px 0;
}
main .hero_sec:before{
    content: '';
    position: absolute;
    top: -20%;
    left: 0;
    width: 500px;
    height: 500px;
    border-radius: 100%;
    /* background-color: rgba(253, 29, 29, 1); */
    background-color: rgba(29, 253, 106, 0.8);
    filter: blur(200px);
    opacity: .5;
}
main .hero_sec:after{
    content: '';
    position: absolute;
    bottom: -20%;
    right: 0;
    width: 500px;
    height: 500px;
    border-radius: 100%;
    /* background-color: rgb(137, 10, 255); */
    background-color: rgb(11 20 233);
    filter: blur(200px);
    opacity: .5;
}

/* INDICATOR SECTION */
.indicator_sec{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 150px 100px 0;
}
.indicator_block{
    position: relative;
    width: 700px;
    border: 2px solid #1dfd59;
    border-radius: 20px;
    padding: 30px 30px 50px;
    margin-bottom: 130px;
    box-shadow: 0px 0px 25px #1dfd5964;
    transition: all ease 0.4s;
    /* animation: border 3s infinite; */
}
/* @keyframes border {
    0%{
        border-color: #9d3396;
    }
    50%{
        border-color: #38339d;
    }
    80%{
        border-color: #df6615;
    }
} */
.indicator_block:hover{
    border: 2px solid #2434a9;
    box-shadow: 0px 0px 104px #2434a9 ;
    transform: scale(0.97);
}
.indicator_block .img_block img{
    transition: all ease 0.4s;
}
.indicator_block:hover .img_block img{
    /* transform: scale(1.2) translateY(-30px); */
}
.indicator_block .text_block{
    color: #fff;
    padding: 20px 0;
}
.indicator_block .text_block h2{
    font-size: 28px;
}
.indicator_block .text_block p{
    font-size: 18px;
    line-height: 28px;
    margin: 20px 0 60px;
}
.indicator_block .action_row{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.indicator_block .price{
    font-size: 26px;
    font-weight: 300;
    display: inline-block;
    padding: 25px 40px;
    border-radius: 100px;
    border: 1px solid #ffffff20;
}


/* MOST TRUSTED INDICATOR */

.trusted_indicator_sec{
    padding: 150px 100px 0;
    background: linear-gradient(to bottom, #07320b, #21244a90 30%);
}
.trusted_indicator_wrap{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}



.slider_sec{
    display: flex;
    justify-content: space-between;
    /* background: #833AB4; */
    /* background: linear-gradient(to bottom, #0f021a, #3B1E36 30%); */
    /* padding: 150px 0; */
    padding: 0 !important;
}
.owl-carousel .owl-stage-outer .owl-stage {
    padding: 150px 0 !important;
}
.slider_sec .slider_block{
    border: 2px solid #3d339d;
    border-radius: 20px;
    padding: 30px 30px 30px;
    box-shadow: 0px 0px 25px #3d339d94;
    background-color: #000;
    transition: all ease 0.4s;
}
.slider_sec .slider_block:hover{
    box-shadow: 0px 0px 104px #3d339d;
    transform: scale(1.1);
}
.slider_sec .slider_block h2{
    color: #fff;
    font-weight: 600;
    margin: 20px 0 0;
    font-size: 20px;
}

/* SECTION TITLE */
.sec_title{
    text-align: center;
    margin: 0 0 70px;
}
.sec_title h3{
    font-size: 42px;
}
.sec_title p{
    opacity: .7;
    margin: 15px 0 0;
}



/* TESTIMONIALS CONENT */

.testi_sec{
    padding: 150px 0;
}
.testi_sec:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 100%;
    background: linear-gradient(to right, #000, #00000000);
    z-index: 111;
}
.testi_sec:after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background: linear-gradient(to left, #000, #00000000);
    z-index: 111;
}

.testi_wrap{
    --gap: 1rem;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
}
.testi_track{
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    min-width: 100%;
    gap: var(--gap);
    animation: scroll 60s linear infinite;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

.testi_wrap2 .testi_track{
    margin: 25px 0 0;
    animation: scroll2 60s linear infinite;
}
@keyframes scroll2 {
  from {
    transform: translateX(calc(-100% - var(--gap)));
  }
  to {
    transform: translateX(0);
  }
}

.testi_wrap .text_block{    
    width: 500px;
    max-width: 100%;
    min-height: 250px;
    /* background-color: #1e1515; */
    /* background: linear-gradient(-35deg, #151322 70%, #2d1e2d); */
    background: #101010;
    padding: 25px;
    border-radius: 15px;
    /* margin-bottom: 40px; */
    margin: 0 10px 0;
}

.testi_wrap .text_block p{
    font-size: 18px;
    line-height: 26px;
    opacity: .7;
}
.credit{
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.credit .testi_user_img{
    width: 60px;
    border-radius: 100px;
    overflow: hidden;
    margin-right: 15px;
}
.credit .testi_user_name h5{
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}
.credit .testi_user_name h6{
    font-size: 14px;
    font-weight: 400;
    opacity: .7;
    margin: 0;
    text-transform: normal;
}




/* FAQ SECTION */

.faq_sec{
    padding: 150px 100px;
    background: rgba(18, 0, 50, 0.3);
}
.faq_sec_content .faq_block{
    max-width: 50%;
    margin: 0 auto 30px;
    position: relative;
    border: 2px solid #ffffff59;
    padding: 20px;
    border-radius: 15px;
    cursor: pointer;
    transition: all ease 0.3s;
}
.faq_sec_content .faq_block.faq_active{
    border: 2px solid #3d339d;
    box-shadow: 0px 0px 25px #3d339d94;
    /* transform: scale(1.025); */
    /* background: linear-gradient(76.09deg, #F87B30 60.86%, #F8C251 89.99%); */
}
.faq_sec_content .faq_block:hover{
    border: 2px solid #1dfd59;
    box-shadow: 0px 0px 25px #1dfd5994;
    
    transform: scale(1.025);
}
.faq_question h4{
    font-size: 20px;
    font-weight: 500;
     margin: 0; 
}
.faq_active .faq_question h4{
    margin-bottom: 20px;
}
.faq_active .faq_answer{
    display: block !important;
}

.faq_answer p{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    opacity: .8;
}
.faq_active_icon{
    color: #fff;
    position: absolute;
    right: 10px;
    top: 14px;
    width: 35px;
    transition: all ease 0.5s;
}
.faq_active .faq_active_icon{
    transform: scale(-1) translateY(5px);
}




/* ABOUTUS */

.about_sec{
    /* background-color: #000000b0; */
    padding: 150px 100px;
}
.about_sec_content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 70%;
    margin: 0 auto;
}
.about_sec_content .block{
    /* background-color: #151322; */
    background: linear-gradient(-195deg, #191532 70%, #18401e);
    padding: 50px;
    border-radius: 20px;
    margin: 0 20px;
}
.about_sec_content h4{
    font-size: 20px;
    margin: 0 0 20px;
}
.about_sec_content p{
    font-size: 18px;
    line-height: 28px;
}





/* CTA SECTION */
.cta_sec{
    padding: 150px 100px;
    /* background: linear-gradient(to bottom, #05000f 60%, #5c2751 100%); */
    overflow: hidden;
}
.cta_sec .sec_title h3{
    font-size: 52px;
}
.cta_sec .sec_title p{
    font-size: 22px;
}
.cta_sec .btn_custom{
    margin-top: 50px;
}
.cta_sec:before{
    content: '';
    position: absolute;
    top: -50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 500px;
    height: 500px;
    border-radius: 100%;
    /* background: linear-gradient(to left, #ff00d2 40%, #6000ff 80%); */
    background: linear-gradient(to left, #00ff39 0%, #0014ff 80%);
    filter: blur(200px);
    opacity: .9;
    z-index: -1;
}
.cta_sec:after{
    content: '';
    position: absolute;
    bottom: -50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 500px;
    height: 500px;
    border-radius: 100%;
    /* background: linear-gradient(to left, #ff00d2 40%, #6000ff 80%); */
    background: linear-gradient(to left, #00ff39 0%, #0014ff 80%);
    filter: blur(200px);
    opacity: .9;
    z-index: -1;
}




/* Footer */

footer{
    position: relative;
    background-color: #00000090;
    padding: 0 100px;
}
footer:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    /* background: linear-gradient(to left, transparent, #ff04f2, #ffc904, transparent); */
    background: linear-gradient(to left, transparent, #1dfd59, #0062ff, transparent);
    opacity: 1;
}
.socialmedia_inner{
    display: flex;
    justify-content: center;
    padding: 80px 0 60px;
}
.socialmedia_inner a{
    width: 70px;
    height: 70px;
    border:3px solid #ffffff28;
    border-radius: 100px;
    padding: 15px;
    display: inline-block;
    margin: 0 15px 0;
    transition: 400ms;
}
.socialmedia_inner a:hover{
    border:2px solid #1dfd59 ;
    box-shadow: 0 25px 110px #1dfd59 ;
    transform: scale(1.1) rotate(360deg) translateY(-5px);
    color: #1dfd59 ;
}
.footer_bottom{
    padding: 30px 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ffffff1f;
}
.footer_menu{
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
}
.footer_menu li{
    margin: 0;
}
.footer_menu li a{
    margin: 0 15px;
    opacity: .7;
    font-size: 16px;
}
.footer_bottom_left p{
    opacity: .7;
}



.support_sec{
    padding: 150px 100px;
    background: rgba(18, 0, 50, 0.3);
}
.support_sec form{
    /*max-width: 50%;*/
    margin: 0 auto;
}
.support_sec form input,
.support_sec form textarea{
    width: 100%;
    /* height: 60px; */
    padding: 15px;
    border-radius: 15px;
    background: transparent;
    border: 2px solid #ffffff70;
    /* box-shadow: 0px 0px 25px #3d339d94; */
    color: #ffffff;
    font-size: 18px;
    margin:5px 0 20px;
}
.support_sec form input:focus,
.support_sec form textarea:focus{
    border: 2px solid #3d339d;
    box-shadow: 0px 0px 25px #3d339d94;
}
.support_sec form input[type="submit"]{
    /* background: linear-gradient(45deg, #1dfd59 20%, rgb(36 52 169) 60%, #1dfd59 100%); */
    background: #3d339d;
    border-radius: 100px;
    text-transform: uppercase;
    font-weight: 700;
    transition: 300ms;
    cursor: pointer;
    border: 2px solid #3d339d;
    /* box-shadow: 0px 0px 25px #3d339d94; */
}
.support_sec form input[type="submit"]:hover{
    color: #fff;
    background: transparent;
    border: 2px solid #1dfd59;
    box-shadow: 0 25px 100px #1dfd59;
}


.support_sec fieldset{
    display: none;
}

.support_sec .screen-reader-response{
    display: none !important;
}





/* BACKGROUND ANIMATION */
@keyframes ballmove {
  100% {
    transform: translate3d(0, 0, 1px) rotate(360deg);
  }
}

.background_animation {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background: transparent;
  overflow: hidden;
  z-index: -1;
}

.ball {
  position: absolute;
  width: 20vmin;
  height: 20vmin;
  border-radius: 50%;
  backface-visibility: hidden;
  animation: ballmove ease infinite;
  filter: blur(70px);
}

.ball:nth-child(odd) {
    /* color: #833ab4; */
    color: #3a48b4;
}

.ball:nth-child(even) {
    /* color: #fcb045; */
    color: #45fc94;
}

/* Using a custom attribute for variability */
.ball:nth-child(1) {
  top: 77%;
  left: 88%;
  animation-duration: 40s;
  animation-delay: -3s;
  transform-origin: 16vw -2vh;
  box-shadow: 40vmin 0 5vmin currentColor;
}
.ball:nth-child(2) {
  top: 42%;
  left: 2%;
  animation-duration: 53s;
  animation-delay: -29s;
  transform-origin: -19vw 21vh;
  box-shadow: -40vmin 0 5vmin currentColor;
}
.ball:nth-child(3) {
  top: 28%;
  left: 18%;
  animation-duration: 49s;
  animation-delay: -8s;
  transform-origin: -22vw 3vh;
  box-shadow: 40vmin 0 5vmin currentColor;
}
.ball:nth-child(4) {
  top: 50%;
  left: 79%;
  animation-duration: 26s;
  animation-delay: -21s;
  transform-origin: -17vw -6vh;
  box-shadow: 40vmin 0 5vmin currentColor;
}
.ball:nth-child(5) {
  top: 46%;
  left: 15%;
  animation-duration: 36s;
  animation-delay: -40s;
  transform-origin: 4vw 0vh;
  box-shadow: -40vmin 0 5vmin currentColor;
}
.ball:nth-child(6) {
  top: 77%;
  left: 16%;
  animation-duration: 31s;
  animation-delay: -10s;
  transform-origin: 18vw 4vh;
  box-shadow: 40vmin 0 5vmin currentColor;
}
.ball:nth-child(7) {
  top: 22%;
  left: 17%;
  animation-duration: 55s;
  animation-delay: -6s;
  transform-origin: 1vw -23vh;
  box-shadow: -40vmin 0 5vmin currentColor;
}
.ball:nth-child(8) {
  top: 41%;
  left: 47%;
  animation-duration: 43s;
  animation-delay: -28s;
  transform-origin: 25vw -3vh;
  box-shadow: 40vmin 0 5vmin currentColor;
}







.toggle{
    width: 50px;
    display: none;
}
.toggle span{
    display: inline-block;
    width: 100%;
    height: 2px;
    float: left;
    margin: 5px 0;
    background-color: #1dfd59;
    transition: 400ms;
}



.indicator_sec table,
.indicator_sec tbody,
.indicator_sec tr,
.indicator_sec td{
    border: none !important;
}
.indicator_sec code{
    background-color: transparent !important;
}
.indicator_sec ul.products{
    justify-content: space-between !important;
}
.indicator_sec li.product{
        position: relative !important;
    width: 700px !important;
    border: 2px solid #1dfd59;
    border-radius: 20px;
    padding: 30px 30px 50px !important;
    margin:0 auto 130px !important;
    box-shadow: 0px 0px 25px #1dfd5964;
    transition: all ease 0.4s;
}
.indicator_sec li.product:hover,
.woocommerce ul.products li.product:hover{
    border: 2px solid #2434a9;
    box-shadow: 0px 0px 104px #2434a9;
    transform: scale(0.97);
}
.indicator_sec li a.woocommerce-LoopProduct-link{
    width: 100%;
}
.indicator_sec li a.woocommerce-LoopProduct-link img{
    width: 100%;
}
.onsale{
    display: none;
}



a.button {
    font-size: 16px;
    font-weight: 700;
    padding: 20px 40px;
    background: #833AB4;
    background: linear-gradient(45deg, #1dfd59 20%, rgb(36 52 169) 60%, #1dfd59 100%);
    /* background: linear-gradient(45deg, rgba(131, 58, 180, 1) 0%, rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%); */
    /* background: linear-gradient(45deg, rgba(253, 29, 29, 1) 0%, rgba(131, 58, 180, 1) 50%, rgb(255, 164, 74) 100%); */
    background-size: 180% 180%;
    border-radius: 150px;
    border: 2px solid transparent;
    display: inline-block;
    transition: 300ms;
    animation: mymove 10s infinite linear;
}
a.button:hover{
    color: #fff;
    background: transparent;
    border: 2px solid #1dfd59 ;
    box-shadow: 0 25px 100px #1dfd59 ;
    transform: scale(1.1) translateY(-5px);
    text-decoration: none !important;
}
.price del{
    display: none;
}
.price .amount{
    font-size: 26px;
    font-weight: 300;
    display: inline-block;
    padding: 15px 0px;
    color: #fff;
    /*border-radius: 100px;*/
    /*border: 1px solid #ffffff20;*/
}

.trusted_indicator_wrap .woocommerce{
    width: 100%;
}
.trusted_indicator_wrap .woocommerce ul.products{
    justify-content: space-between;
}
.trusted_indicator_wrap .woocommerce .products .product{
    position: relative !important;
    width: 700px !important;
    border: 2px solid #1dfd59;
    border-radius: 20px;
    padding: 30px 30px 50px !important;
    margin: 0 auto 130px !important;
    box-shadow: 0px 0px 25px #1dfd5964;
    transition: all ease 0.4s;
}
.trusted_indicator_wrap a.woocommerce-LoopProduct-link,
.trusted_indicator_wrap img{
    width: 100%;
}
.indicator_sec table{
    margin: 0 !important;
}
section h3,
section h2{
    margin: 0;
}




.woocommerce-products-header__title.page-title{
    
}

/*CART*/

.woocommerce-error, .woocommerce-info, .woocommerce-message{
        background: transparent;
    color: #fff;
    border: 1px solid #ffffff33;
}

.support_sec form.woocommerce-cart-form{
        max-width: 100%;
        margin: 0;
    width: 60%;
}
.cart-collaterals{
    width: 30% !important;   
    background: #14181e;
    padding: 30px;
}
.cart-collaterals h2{
    font-size: 28px;
}
.cart-collaterals .cart_totals{
    width: 100% !important;
}
.cart-collaterals .cart_totals .checkout-button{
    padding: 15px 40px;
}
.page-id-164 .support_sec .woocommerce{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.woocommerce-notices-wrapper{
    width: 100%;
}


.woocommerce-cart-form table tbody tr {
    border-top: 1px solid #ffffff30;
}
.support_sec form.woocommerce-cart-form table{
    overflow: auto !important;
}
.support_sec form.woocommerce-cart-form .button{
    border: 2px solid #4e4e4e;
    background: #3e3e3e;
    border-radius: 100px;
    transition: 300ms;
}
.support_sec form.woocommerce-cart-form .button:hover{
    text-decoration: none;
    color: #fff;
    background: transparent;
    border: 2px solid #1dfd59;
    box-shadow: 0 25px 100px #1dfd59;
    transform: scale(1.001) translateY(-2px);
}
.support_sec form.woocommerce-cart-form button[name="update_cart"]{
    display: none;
}
.support_sec form.woocommerce-cart-form .coupon input{
    border: 2px solid #4e4e4e;
    border-radius: 100px;
}
.support_sec form.woocommerce-cart-form input{
    margin: 0;
}
.support_sec form.woocommerce-cart-form .actions{
    padding: 20px 0 0;
}
.coupon-error-notice{
    color: #ff3d3d !important;
    font-size: 18px;
}
.action #coupon_code{
    width: 210px !important;
}
.woocommerce-cart td.actions .coupon .coupon-error-notice{
    font-size: 16px;
}


.singular .entry-header{
    background-color: transparent;
}
.sec_title h3,
h1.entry-title, h2.entry-title{
    font-size: 42px;
}
.page-id-165{
    
}
.woocommerce-additional-fields h3, .woocommerce-billing-fields h3, h3#order_review_heading{
    font-size: 28px;
}
.woocommerce form .form-row .woocommerce-input-wrapper .input-text, .woocommerce form .form-row .woocommerce-input-wrapper select{
    width: 100%;
    padding: 15px;
    border-radius: 15px;
    background: transparent;
    border: 2px solid #ffffff70;
    color: #ffffff;
    font-size: 18px;
    margin:5px 0 20px;
}
.select2-container .select2-selection--single .select2-selection__rendered{
    width: 100%;
    padding: 15px;
    border-radius: 15px;
    background: transparent;
    border: 2px solid #ffffff70;
    color: #ffffff;
    font-size: 18px;
    margin:5px 0 20px;
}
.select2-container .select2-dropdown, .select2-container .select2-selection{
    border: none;
}
.select2-container .select2-dropdown, .select2-container .select2-selection{
        background: #000;
        color: #fff;
}
.woocommerce-checkout form .col2-set p{
    margin-bottom: 0;
}
.select2-container .select2-dropdown .select2-search__field, .select2-container .select2-selection .select2-search__field{
    color: #000 !important;
}
#billing_address_2_field{
    margin-top: -20px !important;
}
.wc_payment_method .payment_box {
    padding: 1rem;
    background: transparent;
    padding: 0;
}
ul.payment_methods li{
    margin: 0;
}
.wc_payment_method>label:first-of-type img {
    max-height: 34px;
    max-width: 200px;
    float: right;
    background: #fff;
    padding: 5px;
    border-radius: 5px;
}

.woocommerce #payment #place_order, .woocommerce-page #payment #place_order{
        font-size: 18px;
    font-weight: 700;
    padding: 15px 20px;
    background: #833AB4;
    background: linear-gradient(45deg, #1dfd59 20%, rgb(36 52 169) 60%, #1dfd59 100%);
    /* background: linear-gradient(45deg, rgba(131, 58, 180, 1) 0%, rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%); */
    /* background: linear-gradient(45deg, rgba(253, 29, 29, 1) 0%, rgba(131, 58, 180, 1) 50%, rgb(255, 164, 74) 100%); */
    background-size: 180% 180%;
    border-radius: 150px;
    border: 2px solid transparent;
    display: inline-block;
    transition: 300ms;
    animation: mymove 10s infinite linear;
}
.woocommerce #payment #place_order:hover, .woocommerce-page #payment #place_order:hover{
    color: #fff;
    background: transparent;
    /* border: 3px solid #833ab4;
    box-shadow: 0 25px 100px #833ab4; */
    border: 2px solid #1dfd59 ;
    box-shadow: 0 25px 100px #1dfd59 ;
    transform: scale(1.1) translateY(-5px);
    text-decoration: none;
}

.page-id-165 .footer-nav-widgets-wrapper{
    display: none !important;
}


.single-product form.cart input[type=number]{
        width: 100%;
    padding: 15px;
    border-radius: 15px;
    background: transparent;
    border: 2px solid #ffffff70;
    color: #ffffff;
    font-size: 18px;
    margin: 0 0 20px;
}
.single-product .single_add_to_cart_button{
        font-size: 16px;
    font-weight: 700;
    padding: 15px 20px;
    background: #833AB4;
    background: linear-gradient(45deg, #1dfd59 20%, rgb(36 52 169) 60%, #1dfd59 100%);
    background-size: 180% 180%;
    border-radius: 150px;
    border: 2px solid transparent;
    display: inline-block;
    transition: 300ms;
    animation: mymove 10s infinite linear;
    margin-left: 10px;
}

.single-product .single_add_to_cart_button:hover{
        color: #fff;
    background: transparent;
    /* border: 3px solid #833ab4;
    box-shadow: 0 25px 100px #833ab4; */
    border: 2px solid #1dfd59 ;
    box-shadow: 0 25px 100px #1dfd59 ;
    transform: scale(1.1) translateY(-5px);
    text-decoration: none;
}

.comment-respond textarea{
            width: 100%;
    padding: 15px;
    border-radius: 15px;
    background: transparent;
    border: 2px solid #ffffff70;
    color: #ffffff;
    font-size: 18px;
    margin: 0 0 20px;
}
.postid-284 .related.products{
    display: none;
}
.woocommerce-tabs #tab-reviews #submit{
    background: #142546;
    border: none;
    border-radius: 100px;
    transition: 300ms;
}
.woocommerce-tabs #tab-reviews #submit:hover{
    text-decoration: none;
    background: #1d335e;
}

.woocommerce-tabs ul li.active a {
    color: #fff;
    box-shadow: 0 2px 0 #ffffff;
}

.star-rating span {
    color: orange;
}

.star-rating::before {
    color: orange;
}
.comment-text .meta{
    font-size: 16px;
    color: #a3a3a3 !important;
}
.woocommerce-tabs #reviews li.review .avatar{
    float: left;
    margin-right: 15px;
}
#review_form_wrapper{
    max-width: 50%;
    padding: 25px;
    border: 1px solid #4e4e4e;
    border-radius: 15px;
}
.comment-reply-title{
        text-align: left;
    border-bottom: 1px solid #5a5a5a;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

.single-product .entry-title{
    font-size: 32px;
    letter-spacing: 0;
}
.related.products{
    display: none;
}

.quantity{
    display: none !important;
}

.comment-respond p:not(.comment-notes){
        max-width: 100%;
    width: 100%;
}
.woocommerce-tabs #reviews .comment-form-rating label{
    margin: 0;
}
.comment-respond p.comment-notes, .comment-respond p.logged-in-as {
        margin: -1rem 0 4rem 0;
        text-align: left;
    }
.comment-form-author input,
.comment-form-email input{
       width: 100%;
    padding: 15px;
    border-radius: 15px;
    background: transparent;
    border: 2px solid #ffffff70;
    color: #ffffff;
    font-size: 18px;
    margin:5px 0 20px;
}

.product-quantity{
    display: none !important;
}

.woocommerce form .form-row .input-checkbox{
    width: auto;
    border-radius: 8px;
}
input[type="checkbox"]:checked::before{
    	margin: 0;
	height: 35px;
	width: 35px;
	left: -3px;
	top: 0;
	filter: invert(1);
	border-radius: 8px;
}
.checkout .checkout-inline-error-message {
    color: #ff6868 !important;
}

.page-id-8 .support_sec form{
    max-width: 50%;
}








/* =========== OWL NAV, OWL DOTS =========== */
/* =========== OWL NAV, OWL DOTS =========== */

.owl-nav,
.owl-dots{
    display: none;
}




/* =========== SHOP PAGE =========== */
/* =========== SHOP PAGE =========== */

.woocommerce-shop .woocommerce-products-header{
    background: transparent !important;
}
.woocommerce-shop .woocommerce-products-header__title.page-title {
    font-size: 42px;
    margin: 0 auto 80px;
}
.woocommerce-breadcrumb{
    display: none !important;
}
.woocommerce-result-count,
.woocommerce-ordering{
    display: none !important;
}


.woocommerce-shop li.product{
        position: relative !important;
    /*width: 700px !important;*/
    width: 32% !important;
    border: 2px solid #1dfd59;
    border-radius: 20px;
    padding: 30px 30px 50px !important;
    margin:0 auto 30px !important;
    box-shadow: 0px 0px 25px #1dfd5964;
    transition: all ease 0.4s;
}
.woocommerce-shop .products{
    display: flex;
    align-items: stretch;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between !important;
}
.woocommerce-shop .content-area{
    padding: 75px 0 80px;   
}
.woocommerce-shop li.product a.woocommerce-LoopProduct-link,
.woocommerce-shop li.product a.woocommerce-LoopProduct-link img{
    width: 100%;
}


/* =========== SHOP PAGE END =========== */
/* =========== SHOP PAGE END =========== */


.single-product .summary .product_meta{
        font-size: 16px !important;
    pointer-events: none !important;
}


.trustpilot-icon{
    width: 24px;
    position: absolute;
    right: -10px;
    top: -10px;
}

.trustpilot-star{
    display: flex;
    margin: 5px 0 0;
}
.trustpilot-star img{
    width: 20px;
    margin: 0 -2px;
}

.dpnone{
    display: none !important;
}

.woocommerce-shop a.add_to_cart_button{
    font-size: 14px;
    padding: 15px 25px;
    margin-top: -80px;
}
.woocommerce-shop ul.products li.product .price{
    text-align: right;
    padding-top: 25px;
}

.single-product .single_add_to_cart_button{
    margin-left: 0;
    margin-bottom: 30px;
}
.single-product .summary p.price{
    margin-bottom: 5px;
}

.single-product form.cart{
    margin-top: -70px;
    position: absolute;
    right: 320px;
}
.single-product .woocommerce-product-details__short-description{
    margin: 30px 0px 0;
}

.wpgs-for .slick-arrow::before, .wpgs-nav .slick-prev::before, .wpgs-nav .slick-next::before {
    color: #fff;
}
/*.wpgs-nav .slick-arrow{*/
/*    display: none !important;*/
/*}*/


.trusted_indicator_wrap ul.products li.product .button{
        margin-top: -85px;
}
.trusted_indicator_wrap .price{
    text-align: right;
    margin-top: 35px;
}
.announcement_bar p{
    margin: 0;
}

.subscription_sec{
    padding: 150px 100px;
    background: linear-gradient(to bottom, #07320b, #21244a90 30%);
    /*display: none;*/
}
.subscription_sec_content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
}
.subscription_sec .woocommerce.columns-3 ul.products li.product{
    width: 100%;
}

.header{
    background: transparent;
}
.header h1 {
    font-size: 42px;
    font-weight: 700;
    margin: 0 auto 0;
}
.service_sec{
    padding: 50px 100px;
    background: rgba(18, 0, 50, 0.3);
}

.custom_indicator_sec form{
    max-width: 50%;
}

















































/* RESPONSIVE */

@media only screen and (max-width: 1440px) {
    header{
        padding: 20px 50px;
    }
    header ul li a{
        font-size: 16px;
        padding: 15px 10px;
    }
    .indicator_sec{
        padding: 80px 0px 60px;
    }
    .indicator_block{
        width: 32%;
        padding: 10px;
        margin-bottom: 30px;
    }
    .indicator_block .text_block p{
        margin-bottom: 30px;
    }
    .indicator_block .action_row {
        justify-content: center;
        flex-wrap: wrap;
    }
    .indicator_sec .btn_custom{
        width: 100%;
        text-align: center;
    }
    .indicator_sec .indicator_block .price{
        width: 100%;
        text-align: center;
        order: -1;
    }
    .indicator_block .text_block h2 {
        font-size: 20px;
    }
    .indicator_block .text_block p{
        font-size: 16px;
    }
    .trusted_indicator_sec{
        padding: 150px 0px 0;
    }
    .faq_sec_content .faq_block{
        max-width: 100%;
    }
    .about_sec{
        padding: 150px 50px;
    }
    .about_sec_content{
        max-width: 100%;
    }
}


@media only screen and (max-width: 1366px) {
    
}

/*UPDATED*/

@media only screen and (max-width: 1140px) {
    .hamburger span:nth-child(1){
        transform: rotate(45deg) translateY(7px);
    }
    .hamburger span:nth-child(2){
        display: none;
    }
    .hamburger span:nth-child(3){
        transform: rotate(-45deg) translateY(-7px);
    }
    header ul{
        display: none;
        position: absolute;
        left: 0;
        top: 117px; 
        padding: 10px 20px 30px;
        margin: 0 !important;
        width: 100%;
        flex-wrap: wrap;
        background-color: #000;
        z-index: 9;
    }
    header.fixed ul{
        top: 73px;
    }
    nav .btn_custom{
        margin-left: 0;
        margin-top: 15px;
    }
    header ul li{
        width: 100%;
    }
    .toggle{
        display: block;
    }
    .indicator_sec li.product{
        width: 45% !important;
    }
    .support_sec form.woocommerce-cart-form{
        width: 100%;
    }
    .cart-collaterals{
        width: 100% !important;
    }
    .slider_sec .slider_block h2{
        font-size: 18px;
    }
    .slider_sec .slider_block{
        padding: 15px 15px 30px;
    }
        
}

@media only screen and (max-width: 1080px) {
    .support_sec form{
        max-width: 100%;
    }
    .support_sec{
        padding: 100px 30px;
    }
    .woocommerce-shop li.product{
        width: 47% !important;
    }
    .woocommerce-shop li.product .woocommerce-loop-product__title {
        font-size: 20px !important;
        font-weight: 500;
    }
    .woocommerce-shop li.product .price .amount{
        font-size: 20px;
    }
}

@media only screen and (max-width: 800px) {
    main .hero_sec .text_block h1{
        font-size: 58px;
    }
    main .hero_sec .text_block h3{
        font-size: 22px;
    }
    .indicator_block {
        width: 45%;
        margin-bottom: 60px;
        padding: 10px;
    }
    .testi_sec:after,
    .testi_sec:before{
        width: 100px;
    }
    .testi_wrap .text_block{
        padding: 20px;
    }
    .testi_wrap .text_block p{
        font-size: 16px;
    }
    .about_sec_content .block{
        padding: 20px;
    }
    .about_sec_content p{
        font-size: 16px;
    }
    .about_sec{
        padding: 150px 10px;
    }
    .footer_bottom{
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer_bottom_right{
        order: -1;
        margin-bottom: 20px;
    }
    .indicator_sec li.product,
    .trusted_indicator_wrap .woocommerce .products .product{
        width: 95% !important;
        margin: 0 auto 60px !important;
        padding: 20px 20px 50px !important;
    }
    .indicator_sec li.product:last-child,
    .trusted_indicator_wrap .woocommerce .products .product:last-child{
        margin-bottom: 0 !important;
    }
    .trusted_indicator_sec {
        padding: 100px 0px 0;
    }
    .owl-nav{
        display: none !important;
    }
    #review_form_wrapper{
        max-width: 100%;
    }
    .single-product .single_add_to_cart_button {
        font-size: 14px;
        padding: 15px 20px;
        margin-left: 0 !important;
    }
    .woocommerce-tabs .panel h2:first-of-type {
        font-size: 20px;
    }
    
    .woocommerce table.shop_table_responsive tr:nth-child(2n) td, .woocommerce-page table.shop_table_responsive tr:nth-child(2n) td {
        background: transparent !important;
    }
    .woocommerce table.shop_table_responsive tr:first-child, .woocommerce-page table.shop_table_responsive tr:first-child {
        border-top: 1px solid #ffffff50 !important ;
    }
    .woocommerce-notices-wrapper .woocommerce-message{
        display: flex;
    flex-wrap: wrap;
    }
    .page-id-8 .support_sec form{
        max-width: 100%;
    }

}

@media only screen and (max-width: 640px) {
    main .hero_sec .text_block h1 {
        font-size: 38px;
    }
    main .hero_sec .text_block h3 {
        font-size: 20px;
    }
    .indicator_block {
        width: 90%;
        margin-bottom: 30px;
    }
    .trusted_indicator_sec {
        padding: 100px 0 100px;
    }
    .owl-carousel .owl-stage-outer .owl-stage{
        padding: 100px 0 !important;
    }
    .testi_sec {
        padding: 100px 0;
    }
    .faq_sec {
        padding: 100px 30px;
    }
    .about_sec{
        padding: 100px 10px;
    }
    .about_sec_content{
        flex-wrap: wrap;
    }
    .about_sec_content .block{
        margin-bottom: 20px;
    }
    .cta_sec{
        padding: 100px 30px;
    }
    .cta_sec .sec_title h3 {
        font-size: 46px;
    }
    .cta_sec .sec_title p {
        font-size: 18px;
        line-height: 32px;
    }
    .cta_sec .sec_title{
        margin-bottom: 0;
    }
    footer{
        padding: 0 30px;
    }
    .socialmedia_inner{
        flex-wrap: wrap;
    }
    .socialmedia_inner a{
        margin: 0 5px 0;
        width: 50px;
    height: 50px;
    padding: 8px;
    }
    .socialmedia_inner {
    padding: 40px 0 40px;
    margin: 50px 0 0;
    }
    
    main .hero_sec:before{
        width: 100%;
        z-index: -1;
    }
    main .hero_sec:after{
        z-index: -1;
    }
    header {
        padding: 5px 20px;
    }
    .announcement_bar{
        font-size: 14px;
    }
    .slider_sec .slider_block{
        width: 95%;
        margin: 0 auto;
    }
    .faq_question h4{
        font-size: 16px;
        max-width: 95%;
    }
    .footer_bottom_left p{
        text-align: center;
    }
    .testi_wrap .text_block{
        width: 300px;
        margin: 0;
    }
    .btn_custom.big {
        padding: 20px 20px;
    }
    .single-product .entry-title {
        font-size: 22px;
    }
    .price .amount {
        font-size: 20px;
        font-weight: 400;
    }
    .woocommerce-shop li.product{
        width: inherit !important;
    }
    .single-product form.cart {
        right: 0;
    }
}

@media only screen and (max-width: 480px) {
   .woocommerce-cart-form .actions .input-text {
        width: 100% !important;
   }
   .woocommerce table.cart td.actions .coupon .button, 
  .woocommerce-page table.cart td.actions .coupon .button{
      width: 100%;
      margin: 15px 0 0;
  }
.cart-collaterals .cart_totals .checkout-button {
    padding: 15px 20px;
    font-size: 14px;
}
.woocommerce-cart-form .coupon button{
    display: none !important;
}
    
}


















