/* ------ how it works section  ------------- */
:root {
    --primary: #7b16d9;
    --body-text: #3e3f66;
    --white: #ffffff;
    --black: #000000;
    --gray: #949494;
    --lighter-black: #1a1a1a;
    --lighter1: #f6f4fe;
    --lighter2: #DFDAF3;
    --lighter3: #c1c0d3;
    --purplishgray: #e2dcff;
    --border: #e1dbfc;
    --border-2: #4f4f4f;
    --slider-dots-color: #403f43;
    --red-color: #ee6464;
    --green-color: #33c433;
    --gradient-start: #18f19d;
    --gradient-end: #176600;
    --gradient-angle: 45deg;
    --reverse-gradient-start: #ff007b;
    --reverse-gradient-end: #7b16d9;
    --reverse-gradient-angle: 45deg;
    --box-shadow: 0px 10px 19px -1px rgba(234, 230, 254, 1);
}
.howwork_section{
    position: relative;
    border-top: solid 1px var(--border);
/*    border-bottom: solid 1px var(--border);*/
}

.howwork_section .work_blocks{
    position: relative;
}

.howwork_section .work_blocks .work_blocks_fluid{
  width: 100%;
}


.howwork_section .work_blocks .work_blocks_fluid.wbf1:hover .wb1{
    background: #60417c;
    background: -webkit-linear-gradient(var(--gradient-angle), var(--gradient-start), var(--gradient-end)); /* Safari */
    background: linear-gradient(var(--gradient-angle), var(--gradient-start), var(--gradient-end));
    transition: .4s all ease;
}

.howwork_section .work_blocks .work_blocks_fluid.wbf2:hover .wb2{
    background: #7b16d9;
    background: -webkit-linear-gradient(var(--gradient-angle), var(--gradient-start), var(--gradient-end)); /* Safari */
    background: linear-gradient(var(--gradient-angle), var(--gradient-start), var(--gradient-end));
    transition: .4s all ease;
}

.howwork_section .work_blocks .work_blocks_fluid.wbf3:hover .wb3{
    background: #7b16d9;
    background: -webkit-linear-gradient(var(--gradient-angle), var(--gradient-start), var(--gradient-end)); /* Safari */
    background: linear-gradient(var(--gradient-angle), var(--gradient-start), var(--gradient-end));
    transition: .4s all ease;
}

.howwork_section .work_box{
    margin:0 auto;
    background: var(--white); 
    border: solid 1px var(--border); 
    border-radius: 20px; 
    position: relative;
    width: 100%;
    margin-bottom: 30px;

    -webkit-box-shadow: var(--box-shadow); /* Safari & older Chrome */
    -moz-box-shadow: var(--box-shadow); /* Older Firefox */
    -o-box-shadow: var(--box-shadow); /* Older Opera */
    box-shadow: var(--box-shadow); /* Standard */
}

.howwork_section .work_box .work_box_inside {
  background: var(--white);
  width: 98%;
  padding: 20px 30px;
  margin: 1%;
  border-radius: 20px;
}

.howwork_section .work_box .work_title{
    display: flex;
    align-items: center; 
    justify-content: space-between;
    text-align: left;
}


.howwork_section .work_box .work_title h6 {
  padding: 0 0 0 25px;
  width: 400px;
}

.howwork_section .work_box .work_text{
    padding-right: 35px;
    text-align: left;
}


.howwork_section .work_box p:last-child{
    margin-bottom: 0;
}


.howwork_section .step-box{
    width: 50px;
    height: 50px;
    font-size: 60px;
  font-weight: 200;
    color: var(--black);
    display: flex; 
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

.howwork_section .work_blocks .work_blocks_fluid.wbf1:hover .wb1 img{
  transform: rotate(360deg);
  transition: transform 2s;
}

.howwork_section .work_blocks .work_blocks_fluid.wbf2:hover .wb2 img{
  transform: rotate(360deg);
  transition: transform 2s;
}

.howwork_section .work_blocks .work_blocks_fluid.wbf3:hover .wb3 img{
  transform: rotate(360deg);
  transition: transform 2s;
}


/* Newsletter Popup  */
.popup-overlay .newsletter_icon {
    padding: 0 0 25px 0;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    z-index: 99999;
}

/* Popup Box */
.popup-box {
    background: #fff;
    padding: 50px;
    width: 500px;
    border-radius: 20px;
    text-align: center;
    position: relative;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--black);
    border: none;
    width: 35px;
    height: 35px;
    background: var(--white);
    border: solid 1px var(--border);
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    padding: 0 0 1px 0px;
    line-height: 0;
}

/* Input Fields */
.popup-box input {
    width: 100%;
    padding:15px;
    margin: 10px 0 15px 0;
    border: 1px solid var(--border);
    border-radius: 12px;

    -webkit-box-shadow: var(--box-shadow); /* Safari & older Chrome */
    -moz-box-shadow: var(--box-shadow); /* Older Firefox */
    -o-box-shadow: var(--box-shadow); /* Older Opera */
    box-shadow: var(--box-shadow); /* Standard */

}

/* Subscribe Button */
.subscribe-btn {
    color: var(--white);
    border: none;
    padding: 15px;
    width: 100%;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 700;

    background: #7b16d9;
    background: -webkit-linear-gradient(var(--gradient-angle), var(--gradient-start), var(--gradient-end)); /* Safari */
    background: linear-gradient(var(--gradient-angle), var(--gradient-start), var(--gradient-end));

    -webkit-box-shadow: var(--box-shadow); /* Safari & older Chrome */
    -moz-box-shadow: var(--box-shadow); /* Older Firefox */
    -o-box-shadow: var(--box-shadow); /* Older Opera */
    box-shadow: var(--box-shadow); /* Standard */

}

.subscribe-btn:hover {
    background: #7b16d9;
    background: -webkit-linear-gradient(var(--gradient-angle), var(--gradient-end), var(--gradient-start)); /* Safari */
    background: linear-gradient(var(--gradient-angle), var(--gradient-end), var(--gradient-start));
}

/* Show Popup Class */
.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* ---------- text List Flow Css Start ------------- */

.text_list_section {
    margin-top: -80px;
    overflow: hidden;
}

.text_list_section .slider_block {
    background-color: var(--green);
    padding: 20px 0;
    transform: rotate(-1.5deg);
    /* pointer-events: none; */
    width: 100%;
    overflow-x: hidden;
}

.text_list_section .down_fix {
    transform: rotate(-5deg);
    position: relative;
    bottom: -30px;
    z-index: 9;
}


.text_list_section.rotet_down {
    transform: rotate(0.5deg);
}

.text_list_section .owl-stage,
.text_list_section .owl-stage-outer,
.textFlow_list .owl-stage,
.textFlow_list .owl-stage-outer {
    height: 55px;
}

.text_block {
    display: flex;
    align-items: center;
}

.text_block span {
    color: var(--white);
    font-size: 50px;
    font-family: var(--font-bebas);
    font-weight: 700;
    line-height: 1;
}

.text_block .mark_star {
    margin: 0 60px;
    font-family: 'Playball', cursive;
}


/* custom icons */

.custom-icon-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.custom-icon {
    background: linear-gradient(135deg, #ffffff, #ffffff);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    box-shadow: 0px 0px 15px 5px #0000001f;
    height: 70px;
}
.custom-icon-shine {
    box-shadow: 0px 0px 5px 5px #46ad629c;
}

.custom-icon i {
    color: var(--primery);
    font-size: 24px;
}
.custom-icon-orange i{
    color: #fb5b29;
    font-size: 24px;
}

.custom-icon text h5 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

.custom-icon-2 {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 50%;
    position: relative;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.custom-icon-2::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.3) 30%, rgba(255, 87, 34, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.custom-icon-2 i {
    font-size: 32px;
    color: #FF5722;
    position: relative;
    z-index: 1;
}
.af_block .icofont-check-circled {
    font-size: 45px;
    color: #46ad62;
}

.fs-13{ font-size: 13px; }
.fs-14{ font-size: 14px; }
.fs-15{ font-size: 15px; }
.fs-16{ font-size: 16px; }
.fs-17{ font-size: 17px; }
.fs-18{ font-size: 18px; }
.fs-19{ font-size: 19px; }
.fs-20{ font-size: 20px; }
.fs-21{ font-size: 21px; }
.fs-22{ font-size: 22px; }

.about_service p{
    color: #000;
    font-size: 17px;
}
.about_service i {
    font-size: 22px;
    vertical-align: middle;
}

.info-box {
    background-color: #47af61;
    color: white;
    padding: 20px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}
.info-box h4 {
    text-align: left;
}
.info-box p {
    margin: 0;
    font-size: 17px;
    text-align: left;
    color: #fff;
    font-weight: normal;
    padding: 0;
}


@media screen and (max-width:1600px) {

    /* how it work */
    .howwork_section .work_box .work_box_inside { padding: 25px; }
}
@media screen and (max-width: 992px) {
    .howwork_section .work_box { padding: 30px; height: auto; max-width: 550px; margin-bottom: 30px; text-align: center;}
    .howwork_section .work_box .work_box_inside { padding: 0; }
    .howwork_section .work_box .work_text {text-align: center; padding: 0;}
    .howwork_section .work_box .work_title h6 { text-align: center;  width: 100%; padding:25px 0 5px 0;}
    .howwork_section .work_box h6 br { display: none; }
    .howwork_section .work_box .work_title { margin-bottom: 20px; display: flex;flex-direction: column;justify-content: center;}
    .howwork_section .work_box .work_title h4 { width: 100%; text-align: center; padding-top: 15px; }
    .howwork_section .work_box .work_title img { margin: 0 auto; }
    .howwork_section .work_step { padding-top: 50px;}
    .howwork_section .step-box {text-align: center; margin: 0 auto; }
}
@media screen and (max-width:640px) {
    .howwork_section .work_box {max-width: 90%;}
}
@media screen and (max-width:576px) {
    .info-box h4 {
        font-size: 27px;
    }
    .howwork_section .work_box .work_title {margin-bottom: 16px;}
}