/*--------------------- Copyright (c) 2022 ----------------------- 
[Master Stylesheet] 
Product: blockerjet
-------------------------------------------------------------------*/

/* 1. Global CSS Start */

:root {
    --bj-global-family:  'Mulish', sans-serif;
    --bj-global-color: #05241a;
    --bj-global-size: 18px;
    --bj-title-family:  'Mulish', sans-serif;
    --bj-title-color: #010101;
    --bj-title-size: 32px;
    --bj-body-bg: #ffffff;
    --bj-primary: #791df7;
    --bj-white: #ffffff;
    --bj-transition: all 0.3s;
    --bj-yellow: #f1cf12;
    --bj-budget-color: #f93c28;
}
* {
    outline: 0 !important;
}
body {
    font-family: var(--bj-global-family);
    font-weight: 500;
    font-size: var(--bj-global-size);
    line-height: 1.8;
    background: var(--bj-body-bg);
    color: var(--bj-global-color);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
body::-webkit-scrollbar {
    width: 6px;
}
body::-webkit-scrollbar-track {
    background-color: #f5f5f5;
}
body::-webkit-scrollbar-thumb {
    background-color: var(--bj-primary);
}
/* Preloader */
.bj-preloader {
    background-color: var(--bj-white);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 2147483647;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.bj-preloader-content {
    max-width: 380px;
    width: 100%;
    text-align: center;
}
.bj-preloader-content img {
    -webkit-animation: threesixtyrotate 2s linear infinite;
    -moz-animation: threesixtyrotate 2s linear infinite;
    -o-animation: threesixtyrotate 2s linear infinite;
    -ms-animation: threesixtyrotate 2s linear infinite;
    animation: threesixtyrotate 2s linear infinite;
}
@-webkit-keyframes threesixtyrotate {
    100% {
      -webkit-transform: rotateY(360deg);
    }
  }
  @-moz-keyframes threesixtyrotate {
    100% {
      -moz-transform: rotateY(360deg);
    }
  }
  @keyframes threesixtyrotate {
    100% {
      transform: rotateY(360deg);    
    }
  }
  .bj-preloader-content span {
    display: block;
    font-size: 42px;
    font-weight: 900;
    text-transform: capitalize;
    color: var(--bj-title-color);
    -webkit-animation: shrink 2s linear infinite;
    -moz-animation: shrink 2s linear infinite;
    -o-animation: shrink 2s linear infinite;
    -ms-animation: shrink 2s linear infinite;
    animation: shrink 2s linear infinite;
}
@keyframes shrink {
    0%,
    100% {
        letter-spacing: 3px;
    }
    50% {
        letter-spacing: 0px;
    }
}
/** Top Button CSS **/
#scroll {
    position: fixed;
    right: 15px;
    bottom: 15px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 36px;
    z-index: 9;
    visibility: hidden;
    -webkit-transform: translateY(150px);
    -ms-transform: translateY(150px);
    transform: translateY(150px);
    background: var(--bj-primary);
    color: var(--bj-white);
    font-size: 40px;
    border-radius: 50%;
    border: 2px solid #c396ff;
}
#scroll.active {
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    animation: bounce 2s linear infinite;
    -webkit-animation: bounce 2s linear infinite;
    -moz-animation: bounce 2s linear infinite;
}
#scroll img {
    height: 30px;
}
#scroll:hover {
    box-shadow: 0 0 0 25px var(--bj-title-color) inset;
    border-color: transparent;
}
@keyframes bounce {
    0%,
    100% {
        transform: translateY(-20px);
    }
    50% {
        transform: translateY(0px);
    }
}
/* Link & Buttons */
a {
    color: var(--bj-global-color);
}
a:hover,
a:focus,
button,
button:hover {
    color: var(--bj-primary);
}
a,
a:hover,
a:focus,
button,
button:hover {
    text-decoration: none;
    -webkit-transition: var(--bj-transition);
    -moz-transition: var(--bj-transition);
    -ms-transition: var(--bj-transition);
    -o-transition: var(--bj-transition);
    transition: var(--bj-transition);
}
/* General (img inputs heading )*/
img {
    max-width: 100%;
    height: auto;
}
input,textarea,select,button,button:focus,button:hover,label,.form-control:focus {
    box-shadow: none;
}
.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,
h6 {
    margin-bottom: 10px;
    color: var(--bj-title-color);
    font-family: var( --bj-title-family);
    line-height: 1.4;
}
strong {
    font-weight: 800;
}
ul,ol {
    margin: 0;
    padding: 0 0 0 10px;
    list-style: none;
}/* Button*/
.bj-btn {
    font-size: 14px;
    display: inline-flex;
    justify-content: center;
    font-weight: 600;
    border: none;
    outline: none;
    box-shadow: none;
    border-radius: 50px;
    color: var(--bj-white);
    background-color: var(--bj-primary);
    background: linear-gradient(91.45deg, #791df7 41.49%, #F525E7 111.82%);
    filter: drop-shadow(21.665px 28.751px 14.5px rgba(121, 29, 247, 0.1));
    padding: 15px 30px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    min-width: 170px;
    letter-spacing: 2px;
    font-weight: 700;
}
.bj-btn:before {
    background-color: var(--bj-white);
    content: "";
    height: 150px;
    left: -75px;
    position: absolute;
    top: -35px;
    transform: rotate(35deg);
    transition: all 1.6s cubic-bezier(.19,1,.22,1);
    width: 60px;
    opacity: 0;
}
.bj-btn:hover {
    color: var(--bj-white);
}
.bj-btn:hover:before {
    left: 120%;
    transition: all 1.3s cubic-bezier(.19,1,.22,1);
    opacity: .25;
}
.bj-dark-btn {
    background: #29294c;
    color: var(--bj-white);
    filter: none;
}
.bj-dark-btn:hover {
    background: #29294c;
    color: var(--bj-white);
    filter: none;
}
.bj-btn span {
    position: relative;
}
.bj-btn:hover span,
.bj-btn:focus span {
    color: var(--bj-white);
}
.bj-btn:focus {
    color: var(--bj-white) !important;
}
.has-bg {
    background: #e1f4fd !important;
}
/* Main CSS*/
.main-wrapper {
    overflow: hidden;
}
/* Banner CSS */
.bj-banner-wrapper {
    background: #1c2326;
    background: url(../images/banner-bg.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 50px 0 80px;
    margin: 0 0 120px;
}
.bj-banner-wrapper .container {
    position: relative;
    z-index: 1;
}
.bj-title-budget {
    display: inline-block;
    background: var(--bj-primary);
    color: var(--bj-white);
    font-size: 20px;
    padding: 20px 30px;
    border-radius: 80px;
    font-weight: 700;
    max-width: 820px;
    text-transform: capitalize;
    line-height: 1.4;
}
.bj-dual-btn {
    margin: 20px 0 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    grid-gap: 30px;
}
.bj-banner-title {
    font-size: 46px;
    font-weight: 900;
    color: var(--bj-white);
    margin: 21px auto 0;
    max-width: 920px;
}
.bj-banner-title span {
    display: block;
}
.bj-banner-content .logo {
    margin: 0 0 40px;
}
.bj-banner-content .logo img {
    max-height: 80px;
}
.bj-banner-content .bj-budget {
    max-width: 80%;
    font-size: 24px;
    margin: auto;
}
.bj-intro-img-row {
    margin: auto;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    max-width: 1380px;
}
.bj-intro-img {
    margin: 50px 0 -180px;
}
/* Title */
.bj-title {
    max-width: 580px;
    margin: 0 auto 50px;
}
.bj-title h4 {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    text-transform: capitalize;
}
.has-dark-bg {
    color: var(--bj-white);
    background: #120620;
}
.has-dark-bg .bj-title h4, .has-dark-bg h4 {
    color: var(--bj-white);
}
/* Features boxes */
.bj-features-box-wrapper {
    padding: 68px 0 37px;
}
.bj-features-box {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    box-shadow: 0px 0px 30px 0px rgb(193 157 216 / 16%);
    border-radius: 10px;
    padding: 60px 20px;
    width: 100%;
    margin: 0 0 30px;
    background-color: var(--bj-white);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.bj-features-box:before, 
.bj-features-box:after {
    content: "";
    position: absolute;
    left: 0;
    width: 5px;
    height: 80%;
    margin: auto;
    top: 0;
    bottom: 0;
    background: var(--bj-primary);
}
.bj-features-box:before {
    border-radius: 0px 40px 40px 0px;
}
body .bj-features-box:after {
    border-radius: 40px 0px 0px 40px;
    left: auto;
    right: 0;
}
.bj-feature-icon {
    margin: 0 0 20px;
}
.bj-features-box:hover {
    transform: translateY(-10px);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.bj-features-box h4 {
    font-size: 20px;
    font-weight: 700;
    width: 100%;
}
.bj-features-box:hover:before, .bj-features-box:hover:after {
    width: 10px;
}
.bj-features-box:hover:before, .bj-features-box:hover:after, 
.bj-features-box:before, .bj-features-box:after {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
/* Colors */
.bj-features-box-wrapper .row .col-12:nth-child(1) .bj-features-box:before, .bj-features-box-wrapper .row .col-12:nth-child(1) .bj-features-box:after {
    background: #68b1fc;
}
.bj-features-box-wrapper .row .col-12:nth-child(2) .bj-features-box:before, .bj-features-box-wrapper .row .col-12:nth-child(2) .bj-features-box:after {
    background: #fb5c3c;
}
.bj-features-box-wrapper .row .col-12:nth-child(3) .bj-features-box:before, .bj-features-box-wrapper .row .col-12:nth-child(3) .bj-features-box:after {
    background: #54a0ff;
}
.bj-features-box-wrapper .row .col-12:nth-child(4) .bj-features-box:before, .bj-features-box-wrapper .row .col-12:nth-child(4) .bj-features-box:after {
    background: #656d78;
}
.bj-features-box-wrapper .row .col-12:nth-child(5) .bj-features-box:before, .bj-features-box-wrapper .row .col-12:nth-child(5) .bj-features-box:after {
    background: #4dbbeb;
}
.bj-features-box-wrapper .row .col-12:nth-child(6) .bj-features-box:before, .bj-features-box-wrapper .row .col-12:nth-child(6) .bj-features-box:after {
    background: #e5646e;
}
.bj-features-box-wrapper .row .col-12:nth-child(7) .bj-features-box:before, .bj-features-box-wrapper .row .col-12:nth-child(7) .bj-features-box:after {
    background: #00769d;
}
.bj-features-box-wrapper .row .col-12:nth-child(8) .bj-features-box:before, .bj-features-box-wrapper .row .col-12:nth-child(8) .bj-features-box:after {
    background: #ff575a;
}
.bj-features-box-wrapper .row .col-12:nth-child(9) .bj-features-box:before, .bj-features-box-wrapper .row .col-12:nth-child(9) .bj-features-box:after {
    background: #ffcd00;
}
.bj-features-box-wrapper .row .col-12:nth-child(10) .bj-features-box:before, .bj-features-box-wrapper .row .col-12:nth-child(10) .bj-features-box:after {
    background: #ff575a;
}
.bj-features-box-wrapper .row .col-12:nth-child(11) .bj-features-box:before, .bj-features-box-wrapper .row .col-12:nth-child(11) .bj-features-box:after {
    background: #15b756;
}
.bj-features-box-wrapper .row .col-12:nth-child(12) .bj-features-box:before, .bj-features-box-wrapper .row .col-12:nth-child(12) .bj-features-box:after {
    background: #32addb;
}
.bj-features-box-wrapper .row .col-12:nth-child(13) .bj-features-box:before, .bj-features-box-wrapper .row .col-12:nth-child(13) .bj-features-box:after {
    background: #025f80;
}
.bj-features-box-wrapper .row .col-12:nth-child(14) .bj-features-box:before, .bj-features-box-wrapper .row .col-12:nth-child(14) .bj-features-box:after {
    background: #8396f2;
}
/* Footer */
.bj-footer-wrapper {
    background: url(../images/footer-bg.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 30px;
}
.foot-note p {
    color: var(--bj-budget-color);
    font-weight: 700;
    margin: 0;
    text-align: center;
    font-size: 22px;
}
.bj-footer-copyright {
    padding: 15px 20px;
    font-weight: 500;
    color: var(--bj-white);
    font-weight: 700;
}
.bj-footer-copyright p {
    margin: 0;
}
/* Step */
.bj-steps-wrapper {
    background: #fbf7ff;
    padding: 68px 0 50px;
    position: relative;
}
.bj-steps-wrapper .row {
    margin-bottom: 40px;
    padding-bottom: 40px;
}
.bj-steps-wrapper:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: url(../images/curves.png);
    background-repeat: repeat;
    background-position: center;
    opacity: .1;
}
.bj-cricle-img {
    position: relative;
}
.bj-cricle-img>span {
    position: absolute;
    display: inline-flex;
    left: 50%;
    top: 45%;
    transform: translate(-50% , -50%);
    color: var(--bj-white);
    text-transform: uppercase;
    flex-direction: column;
    font-weight: 600    ;
    letter-spacing: 1px;
}
.bj-cricle-img {
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bj-step-box p {
    margin: 0;
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    padding: 30px 20px;
    border-radius: 10px;
    border: 2px solid #e9d9ff;
    background: var(--bj-white);
    box-shadow: 0 0 30px rgb(121 29 247 / 6%);
}
.mb-30 {
    margin-bottom: 30px !important;
}
.colored-text {
    background: linear-gradient(91.45deg, #791df7 41.49%, #F525E7 111.82%);
    background-clip: border-box;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}
/* Support */
.bj-support-wrapper {
    padding: 80px 0 50px;
}
.bj-support-wrapper h4 {
    text-align: left;
}
.bj-support-wrapper .bj-title {
    margin: 0 0 20px;
}
.bj-thank-wrap {
    padding: 50px 0 0;
    margin: 0 auto 20px;
}
/* about */
.bj-about-wrapper {
    padding: 41px 0 50px;
}
.bj-about-wrapper h4 {
    text-align: left;
}
.bj-about-wrapper .bj-title {
    margin: 0 0 20px;
}
/* Call To Action */
.bj-call-to-action .bj-title {
    max-width: 980px;
    background: var(--bj-white);
    box-shadow: 0 0 30px rgb(0 0 0 / 8%);
    padding: 60px 40px;
    border-radius: 20px;
}
.bj-call-to-action .bj-title a.logo {
    margin: 0 0 20px;
    display: inline-block;
}
.bj-call-to-action .bj-title a.logo img {
    height: 60px;
}
.bj-steps-wrapper .container {
    position: relative;
    z-index: 1;
}
.bj-steps-wrapper .bj-image img {
    max-height: 380px;
}
/** Responsive CSS Start **/
@media(min-width:1400px) {
    .container {
        max-width: 1200px;
    }
}
@media(min-width:1200px) {
    .connection-line {
        position: relative;
    }
    .connection-line:before {
        position: absolute;
        content: "";
        background: url(../images/connection.png);
        background-position: center center;
        background-repeat: no-repeat;
        width: 340px;
        height: 300px;
        top: 60%;
        background-size: contain;
        left: 0;
        right: 0;
        margin: auto;
    }
    .connection-line.line1:before {
        background: url(../images/connection2.png);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: contain;
        top: 70%;
    }
}
@media(max-width:1399.98px) {
    .bj-banner-title {
        font-size: 36px;
        margin: 21px auto 0;
    }
    .bj-title h4 {
        font-size: 34px;
    }
}
@media(max-width:991.98px) {
    .bj-banner-title {
        font-size: 26px;
    }
    .bj-title h4 {
        font-size: 24px;
    }
}
@media(max-width:767.98px) {
    .bj-banner-title {
        font-size: 26px;
    }
    .bj-steps-wrapper .center-row {
        flex-direction: column-reverse;
    }
    .bj-steps-wrapper .row {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    .bj-step-box p {
        font-size: 18px;
        padding: 20px 20px;
    }
    .bj-title-budget {
        font-size: 16px;
        padding: 10px 30px;
    }
    .bj-banner-content .logo img {
        max-height: 60px;
    }
}