/*
 Theme Name:   twentytwenty-child
 Template:     twentytwenty
 Version:      1.0.0
*/

/* Custom styles go below this line */

*{
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
}
html { scroll-behavior: smooth; }
input, textarea, button, body{
    font-family: "Inter", sans-serif;
}
body{
    overflow-x: hidden;
    background-color: #000 !important;
    color: #fff;
}
/* .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;
}
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;
}
header ul li{
    list-style: none;
}
header ul li a{
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    padding: 15px 20px;
    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: 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;
}
nav .btn_custom{
    margin-left: 20px;
}
.btn_custom.big{
    padding: 25px 40px;
}
@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(to bottom, #07320b90, #21244a90 30%);
}
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;
}
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,
.woocommerce .products {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 150px 100px 0;
}
.indicator_block,
.woocommerce .products .product{
    position: relative !important;
    width: 45% !important;
    max-width: 700px;
    border: 2px solid #1dfd59;
    border-radius: 20px;
    padding: 30px 30px 50px !important;
    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,
.woocommerce .products .product: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; */
}
.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 50px;
    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;
}

/* 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_wrap .text_block{    
    width: 400px;
    max-width: 100%;
    min-height: 250px;
    /* background-color: #1e1515; */
    /* background: linear-gradient(-35deg, #151322 70%, #2d1e2d); */
    background: linear-gradient(-35deg, #191532 70%, #18401e);
    padding: 40px;
    border-radius: 15px;
    /* margin-bottom: 40px; */
    margin: 0 10px 0;
}

.testi_wrap .text_block p{
    font-size: 18px;
    line-height: 26px;
    opacity: .7;
}
.credit{
    display: flex;
    align-items: center;
    margin-top: 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;
}
.credit .testi_user_name h6{
    font-size: 14px;
    font-weight: 400;
    opacity: .7;
}




/* 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-bottom: 30px; */
}
.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-bottom: 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;
}



/* 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;
}
.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: 70%;
    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-bottom: 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 !important;
    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;
}
.wc_payment_method>label:first-of-type img {
    max-height: 40px;
    background: #fff;
    padding: 5px;
}
.woocommerce-checkout .woocommerce-billing-fields input{
        background: transparent !important;
    color: #fff !important;
    font-size: 18px !important;
    padding: 15px !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;
}






/* ========================= THEME COLOR UPDATE ========================== */
/* ========================= THEME COLOR UPDATE ========================== */
/* ========================= THEME COLOR UPDATE ========================== */
.color-accent,.color-accent-hover:hover,.color-accent-hover:focus,:root .has-accent-color,.has-drop-cap:not(:focus):first-letter,.wp-block-button.is-style-outline,a {
    color: #ffffff !important;
}

blockquote,.border-color-accent,.border-color-accent-hover:hover,.border-color-accent-hover:focus {
    border-color: #ffffff !important;
}

button,.button,.faux-button,.wp-block-button__link,.wp-block-file .wp-block-file__button,input[type="button"],input[type="reset"],input[type="submit"],.bg-accent,.bg-accent-hover:hover,.bg-accent-hover:focus,:root .has-accent-background-color,.comment-reply-link {
    background-color: #ffffff !important;
}

.fill-children-accent,.fill-children-accent * {
    fill: #ffffff !important;
}

body,.entry-title a,:root .has-primary-color {
    color: #ffffff !important;
}
/* ========================= THEME COLOR UPDATE ========================== */
/* ========================= THEME COLOR UPDATE ========================== */
/* ========================= THEME COLOR UPDATE ========================== */


.woocommerce ul.products::before,
.woocommerce ul.products::after{
    content: none !important;
}
.woocommerce .products{
    padding-top: 0;
}
.woocommerce ul.products li h2{
    font-size: 28px !important;
}
.woocommerce ul.products li a.woocommerce-loop-product__link,
.woocommerce ul.products li a img{
    width: 100%;
}

ul.products li.product .price, ul.products li.product .star-rating, ul.products li.product .woocommerce-loop-product__title {
    color: #fff !important;
}
.woocommerce ul.products li .add_to_cart_button,
.single_add_to_cart_button,
.woocommerce-cart-form .actions button[name=update_cart],
.cart_totals .checkout-button,
.woocommerce #payment #place_order, .woocommerce-page #payment #place_order{
      font-size: 18px;
    font-weight: 700;
    padding: 20px 30px;
    color: #fff;
    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;
}
.woocommerce ul.products li .add_to_cart_button:hover{
    background: transparent !important;
    color: #fff;
    border: 2px solid #1dfd59 ;
    box-shadow: 0 25px 100px #1dfd59 ;
    transform: scale(1.1) translateY(-5px);
    text-decoration: none !important;
}

.onsale,
.woocommerce-cart-form .actions,
.product-quantity{
    display: none !important;
}

.woocommerce ul.products li .price{
    font-size: 26px;
    font-weight: 300;
    display: inline-block;
    padding: 15px 0;
    border-radius: 100px;
    margin-bottom: 0 !important;
    /*border: 1px solid #ffffff20;*/
}

a:hover{
    text-decoration: none !important;
}
.single_add_to_cart_button {
    padding: 18px 40px !important;
    color: #fff;
    font-weight: 600;
    font-size: 20px !important;
}
.single_add_to_cart_button:hover{
    color: #fff;
    background: transparent !important;
    border: 2px solid #1dfd59 ;
    box-shadow: 0 25px 100px #1dfd59 ;
    transform: scale(1.1) translateY(-5px);
}
.product_meta{
    pointer-events: none;
        font-size: 16px !important;
    opacity: .8;
}
.woocommerce-Reviews textarea,
.comment-form-author input,
.comment-form-email input{
    background: transparent;
    border-radius: 10px;
    color: #fff;
    padding: 15px;
    font-size: 16px;
    width: 100%;
    max-width: 400px;
}
.woocommerce-Reviews .comment-form-comment label,
.comment-form-author label,
.comment-form-email label{
    display: block;
    margin: 25px 0 15px;
}
.comment-form-cookies-consent{
    margin: 15px 0 10px;
}
.comment-form-rating{
    margin: 15px 0;
}
.woocommerce-Reviews .stars{
    margin: 10px 0 !important;
}
.woocommerce-Reviews .form-submit{
    display: inline-block;
}
.woocommerce-noreviews{
    opacity: 0.7;
    margin: 0 0 10px;
}
.woocommerce-Reviews .form-submit .submit{
    font-size: 18px;
    font-weight: 700;
    padding: 15px 20px;
    margin: 15px 0 0;
    color: #fff;
    background: #554f5b !important;
    border-radius: 150px;
    border: 2px solid transparent;
    display: inline-block;
    transition: 300ms;
}
.product-remove a.remove{
    background: transparent;
}

.page-id-164 .woocommerce{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.page-id-164 .woocommerce-cart-form{
    max-width: 100%;
    margin: 0 auto;
    width: 70%;
}
.woocommerce .cart-collaterals, .woocommerce-page .cart-collaterals {
    width: 30%;
}
.woocommerce-notices-wrapper {
    width: 100%;
}
.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
    float: right;
    width: 100%;
    background: #1e2127;
    padding: 25px;
    border-radius: 10px;
}
.woocommerce table.shop_table td, .woocommerce table.shop_table th, .woocommerce-page table.shop_table td, .woocommerce-page table.shop_table th {
    text-align: left;
}
.woocommerce-cart-form table td.product-name {
    padding-left: 0;
}
.wc_payment_method .payment_box {
    padding: 1rem;
    background: transparent;
}
.wc_payment_methods .payment_box p {
    font-size: 16px;
}
.woocommerce form .form-row label.checkbox, .woocommerce-page form .form-row label.checkbox {
    display: flex;
    align-items: center;
}
.woocommerce form .form-row .input-checkbox {
    width: 30px;
    height: 30px;
}
.woocommerce-terms-and-conditions-wrapper .woocommerce-privacy-policy-text p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 15px;
}
.wc_payment_method .payment_box {
    padding: 1rem;
    background: transparent;
    padding: 0;
}
.woocommerce-checkout-review-order ul {
    margin: 20px 0 30px;
}


.woocommerce-checkout form #order_review, .woocommerce-checkout form #order_review_heading {
    width: 50%;
}
.woocommerce-terms-and-conditions-wrapper {
    margin-bottom: 30px;
}

.woocommerce-products-header{
    background: transparent !important;
    justify-content: center !important;
}
.woocommerce-products-header h1{
    font-size: 42px !important;
}
.woocommerce-breadcrumb{
    display: none !important;
}
.woocommerce-result-count{
    
}

.woocommerce-shop .products {
    padding: 50px 0 0;
}
.woocommerce-shop .woocommerce-result-count,
.woocommerce-shop .woocommerce-ordering{
    display: none;
}
.woocommerce-shop ul.products li.last, 
.woocommerce-shop ul.products li.last {
    margin-right: auto;
}
.woocommerce-shop ul.products li.product {
    margin: 0 0 50px !important;
}


.related.products,
.quantity{
    display: none !important;
}



























































/* 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%;
    }
}


/*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: 125px;
        padding: 10px 20px 30px;
        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;
    }
}

@media only screen and (max-width: 1080px) {
    .support_sec form{
        max-width: 100%;
    }
    .support_sec{
        padding: 100px 30px;
    }
}

@media only screen and (max-width: 800px) {
    .indicator_block, .woocommerce .products .product {
        width: 98% !important;
    }
    .indicator_sec{
        padding: 50px 20px 0;
    }
    main .hero_sec {
        min-height: auto;
        padding: 50px 20px;
    }
    main .hero_sec .text_block h3 {
        margin: 30px 0 40px 0;
    }
    .woocommerce .products{
        padding: 0;
    }
    .slider_sec{
        padding: 0 20px;
    }
    .owl-carousel .owl-stage-outer .owl-stage{
        padding: 50px 0 !important;
    }
    main .hero_sec .text_block h1 {
        font-size: 28px !important;
        line-height: 38px;
    }
    .btn_custom.big {
        padding: 15px 20px;
        font-size: 14px;
    }
    main .hero_sec .text_block {
        max-width: 100%;
    }

    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;
    }
    main .hero_sec .text_block h3 {
        margin: 20px 0 20px 0;
    }
    .woocommerce ul.products li .add_to_cart_button{
        font-size: 16px;
        font-weight: 500;
        padding: 10px 20px;
        margin-top: 15px;
    }
   
}

@media only screen and (max-width: 640px) {
    main .hero_sec .text_block h1 {
        font-size: 48px;
    }
    main .hero_sec .text_block h3 {
        font-size: 20px;
    }
    .indicator_block {
        width: 90%;
        margin-bottom: 30px;
    }
    .trusted_indicator_sec {
        padding: 50px 0 50px;
    }
    .owl-carousel .owl-stage-outer .owl-stage{
        padding: 50px 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: 50px 20px;
    }
    .cta_sec .sec_title h3 {
        font-size: 26px;
    }
    .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;
        padding: 40px 0 40px;
    }
    .socialmedia_inner a{
        margin: 0 5px 0;
        width: 50px;
        height: 50px;
        padding: 10px;
    }
    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;
    }
    .footer_menu{
        flex-wrap: wrap;
        text-align: center;
    }
    .footer_menu li {
        width: 100%;
    }
    .woocommerce ul.products li h2 {
        font-size: 18px !important;
    }
    .woocommerce ul.products li .price {
        font-size: 20px;
    }
    header .logo {
        width: 160px;;
    }
    .single-product .entry-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .single_add_to_cart_button {
        padding: 15px 30px !important;
        font-weight: 600;
        font-size: 16px !important;
    }
}