@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}

p {
    font-weight: 500;
    line-height: 1.2;
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.theme_btn {
    padding: 15px 25px;
    border: unset;
    border-radius: 15px;
    color: #ffffff;
    z-index: 1;
    position: relative;
    background: linear-gradient(45deg, #5127C6, #7849FF);
    font-size: 18px;
    transition: all 250ms;
    overflow: hidden;
    display: inline-block;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 14px;
    background-color: #7549f7;
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms
}

.theme_btn:hover {
    color: #fff;
}

.theme_btn:hover::before {
    width: 100%;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 55px;
    line-height: 1.2;
    color: #fff;
    font-weight: 500;
    margin: 0 0 17px;
}

h2 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 55px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 30px;
}

h3 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header css start */

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 10px 10px;
    font-size: 20px;
}

/*.menuSec ul li a:after {
    content: '';
    position: absolute;
    top: 35%;
    right: 0;
    width: 1px;
    height: 13px;
    background-color: #393939;
}*/

.menuSec ul li:last-child a {
    padding-right: 0px;
}

.menuSec ul li:last-child a:after {
    display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #7348f6;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}


/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}


/*banner css start */


/* Tab slider fix  */

.tab_sec .tab-pane {
    display: block;
    border: 0;
    height: 0;
}

.tab_sec .tab-pane.active {
    display: block !important;
    height: auto;
}


/* Tab slider fix  */

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px!important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}


/*banner css end*/

.blog_sec {
    padding: 5% 0;
}


/* Tabs  */

.tab_sec .nav-tabs .nav-link.active {
    background: #242889;
    color: #fff;
}

.tab_sec .nav-tabs .nav-link {
    background: #ccc;
    border-radius: 50px;
    color: #000;
    padding: 7px 28px;
}

.tab_sec .nav-tabs {
    border: none;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}


/* Tabs  */

header{
    position: absolute;
    width: 100%;
    top: 0;
    padding: 15px 0;
    z-index: 1;
}

.menuSec ul li a img{
    width: 8%;
    margin: 0 10px 0 0;
}

.menuSec ul li:nth-child(2) a img{width: 10%;}


.banner_main {
    height: 100vh;
    /*  background: url(../images/Video.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;*/
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 90px 0 0 0;
}

section.banner_main:before {
    position: absolute;
    /* background: #000000b0; */
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
    z-index: -1;
}

section.banner_main img{position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
    
    background-size: cover;
    transition: 1s opacity;}

/*video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
    
    background-size: cover;
    transition: 1s opacity;
}*/

.banner_main .text-wrp{}
.banner_main .text-wrp h6{
    font-size: 18px;
    color: #fff;
}
.banner_main .text-wrp h2{
    font-size: 56px;
    font-weight: 400;
    color: #673de4;
}
.banner_main .text-wrp h2 span{
    color: #fff;
    position: relative;
    z-index: 1;
    font-weight: 600;
}
.banner_main .text-wrp h2 span:before{
    content: "Breakers";
    position: absolute;
    color: #5831C9;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #5831C9;
    bottom: 3px;
    right: 12px;
    z-index: -1;
    font-size: 56px;
}
.banner_main .text-wrp p{
    font-size: 18px;
    color: #fff;
    line-height: 1.8;
}
.banner_main .text-wrp a{
}

.banner_main .form_wrpr{
    background: linear-gradient(45deg, #5127C6, #7849FF);
    width: 75%;
    margin: 0 0 0 110px;
    padding: 35px;
    border-radius: 15px;
}
.banner_main .form_wrpr h4{
    width: 70%;
    text-align: center;
    margin: 0 auto 20px;
    color: #fff;
}
.banner_main .form_wrpr .grp{
    width: 100%;
    margin: 0 0 12px 0;
}
.banner_main .form_wrpr .grp input{
    width: 100%;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 12px;
    height: 50px;
    padding: 10px;
    color: #fff;
}
.banner_main .form_wrpr .grp textarea{
    width: 100%;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 12px;
    height: 120px;
    padding: 10px;
    color: #fff;
}
.banner_main .form_wrpr .grp button{
    width: 100%;
    border: 0;
    padding: 12px 0;
    border-radius: 13px;
    font-weight: 500;
    color: #5831C9;
    margin: 15px 0 0 0;
}


.buttonn{
    padding: 15px 70px;
    border-radius: 15px;
    color: #ffffff;
    z-index: 1;
    position: relative;
    background: transparent;
    font-size: 18px;
    transition: all 250ms;
    overflow: hidden;
    display: inline-block;
    border: 1px solid #5831C9;
    }



.buttonn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 14px;
      background: linear-gradient(102deg, #5831C9 6.89%, #5831C9 102.95%);
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px rgb(0 0 0 / 27%);
    box-shadow: 4px 8px 19px -3px rgb(0 0 0 / 27%);
    transition: all 250ms;
}


.buttonn:hover::before {
    width: 100%;
}


.buttonn:hover {
    color: #fff;
}

.banner_main .form_wrpr .grp input::placeholder{color: #fff;}
.banner_main .form_wrpr .grp textarea::placeholder{color: #fff;}


.sec_fold{
    background: #fff;
    display: flex;
    height: 400px;
    align-items: center;
    overflow: hidden;
}
.sec_fold ul{
    display: block;
    margin: 0;
    position: relative;
}
.sec_fold ul:before{position: absolute;content: "";height: 1px;width: 122%;background-color: #fff;left: -145px;top: -25px;}
.sec_fold ul:after{position: absolute;content: "";height: 1px;width: 122%;background-color: #00;left: -145px;bottom: -25px;}

.sec_fold ul li{
    display: inline-block;
    width: 19%;
    position: relative;
    padding: 10px;
    transition: 1s;
}

.sec_fold ul li:after{position: absolute;content: "";height: 305%;width: 1px;background-color: #fff;right: 0;top: -135px;}

.sec_fold ul li .box{padding: 20px 10px;background: #8b8b8b47;}
.sec_fold ul li .box img{
    text-align: center;
    display: block;
    margin: 0 auto;
    width: 45px;
    filter: brightness(0) saturate(100%) invert(20%) sepia(63%) saturate(3665%) hue-rotate(249deg) brightness(86%) contrast(92%);
}

.sec_fold ul li .box h6{display: none;}
.sec_fold ul li .box p{display: none;}
.sec_fold ul li .box span{
    text-align: center;
    display: block;
    margin: 40px auto 0;
    font-size: 39px;
    font-weight: 600;
    color: #6339de;
    /* text-shadow: 1px 1px 0px #fff; */
}


.sec_fold ul li:hover .box{background: linear-gradient(45deg, #5127C6, #7849FF);height: 350px;transition: 0.9s;}



.sec_fold ul li:hover .box p{display: block;color: #fff;font-size: 12px;}
.sec_fold ul li:hover .box h6{display: block;color: #fff;margin: 15px 0 10px 0;font-size: 20px;}

.sec_fold ul li:hover .box img{
    text-align: left;
    margin: 20px 0 0 0;
    filter: brightness(0) invert(1);
}


.sec_fold ul li:hover .box span{color: #fff;font-size: 48px;}

.who_are_we{
    padding: 60px 0;
}
.who_are_we .left_box{
    position: relative;
}
.who_are_we .left_box h4{
    font-size: 95px;
    color: #000000;
    -webkit-text-fill-color: white; /* Will override color (regardless of order) */
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #000000;
    transform: rotate(270deg);
    position: absolute;
    left: -370px;
    top: 210px;
    opacity: 0.13;
}
.who_are_we .left_box img{
    width: 95%;
}


.who_are_we .right_box{}
.who_are_we .right_box h6{
    font-size: 28px;
    color: #000;
    margin: 0 0 15px 0;
    font-weight: 700;
}
.who_are_we .right_box h2{
    font-size: 22px;
    line-height: 1.4;
    color: #000000;
    margin: 0 0 25px
0px;
}
.who_are_we .right_box h2 img{
    margin: 0 10px;
    width: 7%;
}
.who_are_we .right_box p{
    color: #000000;
    font-size: 14px;
    line-height: 1.9;
}
.who_are_we .right_box h5{
    font-size: 16px;
    color: #5831C9;
}
.who_are_we .right_box h5 span{
    color: #000;
}
.who_are_we .right_box a{
    font-size: 28px;
    color: #5831C9;
    font-weight: 600;
}
.who_are_we .right_box strong{font-size: 33px;color: #000;font-weight: 600;}
.who_are_we .right_box .form_line{
    background: #F2F1F1;
    margin: 15px 0 15px 0;
    padding: 10px 10px;
    width: 60%;
    border-radius: 12px;
}
.who_are_we .right_box .form_line .grpp{}
.who_are_we .right_box .form_line .grpp input{
    background: transparent;
    border: 0;
    width: 65%;
    height: 42px;
    padding: 0 10px;
}
.who_are_we .right_box .form_line .grpp button{
    border: 0;
    padding: 8px 45px;
    background: #5831C9 0% 0% no-repeat padding-box;
    border-radius: 13px;
    color: #fff;
    font-size: 12px;
}
.who_are_we .right_box h4{
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    margin: 0;
    vertical-align: middle;
}
.who_are_we .right_box h4 span{
    font-size: 16px;
    color: #A1A1A1;
    font-weight: 300;
}
.who_are_we .right_box img{
    display: inline-block;
    margin: 0 0 0 90px;
    vertical-align: middle;
}
.who_are_we .right_box ul{
    margin: 0px 0 0 0;
    font-size: 0;
}
.who_are_we .right_box ul li{
    display: inline-block;
    vertical-align: middle;
    text-align: center;
}
.who_are_we .right_box ul li img{
    margin: 0;
    vertical-align: top;
    width: 90%;
}



.service_sec{
    position: relative;
    background: #fff;
    padding: 60px 0;
}
.service_sec .ser_wrp{
    text-align: center;
    margin: 0 0 100px 0;
}
.service_sec .ser_wrp h3{
    color: #5833c6;
    font-size: 42px;
    margin: 0 0 18px 0;
}
.service_sec .ser_wrp p{
    color: #000;
    font-size: 22px;
}

.service_sec .ser_box{
    border: 1px solid #5833c6;
    height: 450px;
    margin: 0 0 25px 0;
    display: flex;
    align-items: center;
    transition: 1s;
    background: #000;
    z-index: 2;
    position: relative;
    overflow: hidden;
    padding: 40px;
}
.service_sec .ser_box img{
    width: 35%;
    margin: 0 auto;
    display: block;
    filter: brightness(0) saturate(100%) invert(20%) sepia(63%) saturate(3665%) hue-rotate(249deg) brightness(86%) contrast(92%);
}
.service_sec .ser_box h6{
    text-align: center;
    font-size: 22px;
    color: #5833c6;
    padding: 30px 0 0 0;
    position: relative;
    z-index: 1;
}
.service_sec .ser_box span{display: none;}
.service_sec .ser_box p{display: none;}
.service_sec .ser_box a{
    display: none;
}


.service_sec .btn_wrpr{
    text-align: center;
    margin: 30px 0 0 0;
}
.service_sec .btn_wrpr a{
    background: linear-gradient(45deg, #5127C6, #7849FF);
}


.service_sec .ser-b2 {
    width: 100%;
}


.service_sec .ser_box:hover{background-color: #fff;transition: 1.2s;}

.service_sec .ser_box:hover span{display: block;font-size: 22px;color: #5833c6;margin: 0px 0 20px 0;}
.service_sec .ser_box:hover p{
    display: block;
    color: #5833c6;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.4;
    margin: 0 0 30px 0;
    }
.service_sec .ser_box:hover img{text-align: left;margin: 0px 0 20px 0;}


.service_sec .ser_box:hover h6{display: none;}

.service_sec .ser_box:hover a{display: block;text-align: center;font-size: 16px;padding: 12px 10px;border-radius: 13px;background: #000;color: #fff;}

.service_sec:before{position: absolute;content: '';background:url('../images/f-shape1.png');width: 38%;height: 500px;right: 0;top: 170px;background-repeat: no-repeat;background-size: contain;z-index: 1;filter: brightness(0) saturate(100%) invert(22%) sepia(42%) saturate(6346%) hue-rotate(251deg) brightness(80%) contrast(97%);}


.service_sec:after{position: absolute;content: '';background:url('../images/f-shape1.png');width: 38%;height: 500px;left: 0;bottom: 0;background-repeat: no-repeat;background-size: contain;z-index: 1;filter: brightness(0) saturate(100%) invert(22%) sepia(42%) saturate(6346%) hue-rotate(251deg) brightness(80%) contrast(97%);}

.circle-1:before{position: absolute;content: "";height: 190px;width: 190px;background-color: #0f0f0f;left: -107px;top: 120px;webkit-animation: pulse 2s infinite 3s cubic-bezier(.25, 0, 0, 1);animation: pulse 2s infinite 3s cubic-bezier(.25, 0, 0, 1);box-shadow: 0 0 0 2px #0f0f0f;border-radius: 50%;}
.ser_box:hover .circle-1:before{display: none;}

@-webkit-keyframes pulse {
    to {
        box-shadow: 0 0 0 18px rgba(255, 255, 255, 0)
    }
}

@keyframes pulse {
    to {
        box-shadow: 0 0 0 200px rgba(255, 255, 255, 0)
    }
}


.circle-2:before{position: absolute;content: "";height: 190px;width: 190px;background-color: #0f0f0f;right: -107px;top: 120px;webkit-animation: pulse 2s infinite 3s cubic-bezier(.25, 0, 0, 1);animation: pulse 2s infinite 3s cubic-bezier(.25, 0, 0, 1);box-shadow: 0 0 0 2px #0f0f0f;border-radius: 50%;}
.ser_box:hover .circle-2:before{display: none;}


.call_to_action{
    position: relative;
    overflow: hidden;
    background: url(../images/cta-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
}
.call_to_action .call_wrpr{}
.call_to_action .call_wrpr h6{
    font-size: 32px;
    color: #FFFFFF;
    font-weight: 400;
}
.call_to_action .call_wrpr h4{
    font-size: 52px;
    color: #fff;
    font-weight: 700;
}
.call_to_action .call_wrpr .call-btn{
    display: flex;
    gap: 30px;
    margin: 30px 0 0 0;
}
.call_to_action .call_wrpr .call-btn a.one{
    border: 1px solid #fff;
}

.call_to_action .call_wrpr .call-btn a.one:hover{
    border: 1px solid #5831C9;
}
.call_to_action .call_wrpr .call-btn a.two{border: 1px solid #fff;}

/*.call_to_action .call_wrpr .call-btn a.two.buttonn:hover {
    color: #000;
}*/

.call_to_action img{
    width: 90%;
    margin: 0 0 0 40px;
}





.call_to_action:before {
    position: absolute;
    content: '';
    background: url(../images/f-shape1.png);
    width: 30%;
    height: 500px;
    right: -70px;
    top: 30px;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
    transform: rotate(330deg);
    filter: brightness(0) saturate(100%) invert(22%) sepia(42%) saturate(6346%) hue-rotate(251deg) brightness(80%) contrast(97%);
}

/*.Platform_sec{
    background: #F1F2F2;
    height: 90vh;
}
.Platform_sec ul{
    text-align: end;
    display: block;
}
.Platform_sec ul li{}
.Platform_sec ul li .ex_box{}
.Platform_sec ul li .ex_box img{}*/



.portfolio_Sec{
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.portfolio_Sec:before{position: absolute;content: "";background-color: #5831C9;height: 100%;width: 57%;top: 0;right: 0;border-radius: 330px 0 0 330px;z-index: -1;overflow: hidden;}


.portfolio_Sec .port_left{
    position: relative;
    padding: 0 0 0 40px;
}
.portfolio_Sec .port_left h4{
    font-size: 105px;
    color: #000000;
    -webkit-text-fill-color: white;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #000000;
    transform: rotate(270deg);
    position: absolute;
    left: -400px;
    top: 320px;
    opacity: 0.13;
}
.portfolio_Sec .port_left h3{
    font-size: 60px;
    color: #5831C9;
}
.portfolio_Sec .port_left img{
    width: 25%;
    margin: 20px 0 0 0;
}
.portfolio_Sec .port_left h5{
    color: #000000;
    font-size: 42px;
    margin: 20px 0 20px 0;
    font-weight: 600;
}
.portfolio_Sec .port_left p{
    color: #A4A4A4;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0 70px 40px 0;
}
.portfolio_Sec .port_left a{
    background: #5831C9;
}

.portfolio_Sec .port_right{
    position: relative;
    right: -120px;
    top: 5px;
}
.portfolio_Sec .port_right .port_wrprr{}
.portfolio_Sec .port_right .port_wrprr ul{
    margin: 0;
    font-size: 0;
}
.portfolio_Sec .port_right .port_wrprr ul li{
    display: inline-block;
    width: 22%;
    margin: 0;
    float: none;
}
.portfolio_Sec .port_right .port_wrprr ul li img{
    width: 100%;
    padding: 75px 0;
}


.portfolio_Sec .slick-active {
    opacity: 1;
}

.portfolio_Sec .slick-slide {
    transition: all ease-in-out .3s;
    opacity: 1;
}

.portfolio_Sec .slick-slide img {
  max-width: 100%; 
  transition: transform 0.5s; 
 }

.portfolio_Sec .slick-slide.slick-center img{
  transform: scale(1.3);
}



.portfolio_Sec .slick-list {
    padding: 0 !important;
}


.portfolio_Sec .slick-prev {    display: none !important;}


.portfolio_Sec .slick-next {
    right: 0px;
    left: -170px;
    height: 90px;
    width: 90px;
    border: 10px solid #fff;
    border-radius: 50px;
}


.portfolio_Sec .slick-next::before {
    display: none;

}

.portfolio_Sec .slick-next img{border-radius: 50px;border: 10px solid #5831C9;/* filter: brightness(0) saturate(100%) invert(22%) sepia(42%) saturate(6346%) hue-rotate(251deg) brightness(80%) contrast(97%); */}

.portfolio_Sec .port_right .port_wrprr ul:before{position: absolute;content:"";height: 100%;background: transparent linear-gradient(271deg, #000000 0%, #5831C9 100%) 0% 0% no-repeat padding-box;width: 15%;left: 0;opacity: 1;filter: blur(46px);top: 0;z-index: 1;}


.portfolio_Sec .port_right .port_wrprr ul:after{position: absolute;content:"";height: 100%;width: 15%;right: -15px;opacity: 1;filter: blur(46px);top: 0;z-index: 1;background: transparent linear-gradient(271deg, #5831C9 0%, #5831C9 100%) 0% 0% no-repeat padding-box;}


.portfolio_Sec .slick-next:before{content: ""; position: absolute; background-color: #000; height: 50px; width: 50px;}

.industry_sec{
    padding: 60px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}
.industry_sec .text_wrp{
    text-align: center;
    margin: 0 0 70px 0;
}
.industry_sec .text_wrp h3{
    color: #FFFFFF;
    font-size: 55px;
}
.industry_sec .text_wrp p{
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 300;
}

.industry_sec .industry_box{
    padding: 20px;
    background: #0f0f0f;
    margin: 0 0 20px 0;
    border-radius: 10px;
    transition: all ease .7s;
}
.industry_sec .industry_box .i_left{
    display: inline-block;
    width: 80%;
}
.industry_sec .industry_box .i_left h6{
    color: #5833c6;
    font-size: 15px;
    margin: 0 0 10px 0;
    font-weight: 700;
    width: 90%;
}
.industry_sec .industry_box .i_left i{
    color: #fec300;
    margin: 0 10px 0 0;
}
.industry_sec .industry_box .i_left span{
    color: #fff;
}
.industry_sec .industry_box .i_left p{
    margin: 10px 0 0 0;
    color: #fff;
}
.industry_sec .industry_box .i_right{
    display: inline-block;
    vertical-align: top;
    position: relative;
}
.industry_sec .industry_box .i_right:before{position: absolute;content: "";height: 80px;width: 60px;background: #5833c6;z-index: 0;top: -20px;left: -10px;border-radius: 0 0 10px 10px;}
.industry_sec .industry_box .i_right img{
    position: relative;
    z-index: 1;
    animation: tada 1s linear infinite !important;
}

.industry_sec .industry_box:hover{    transform: translate3d(0px, -5px, 0px);}

.industry_sec .btn_wrpr{
    text-align: center;
    margin: 30px 0 0 0;
}
.industry_sec .btn_wrpr a{
    background: #5831C9;
}

.industry_sec:before{position: absolute;content: "";background: url(../images/surat.png);width: 50%;height: 700px;left: -430px;top: -370px;background-repeat: no-repeat;background-size: cover;z-index: 1;}



.industry_sec:after{position: absolute;content: "";background: url(../images/surat.png);width: 50%;height: 700px;right: -570px;bottom: -350px;background-repeat: no-repeat;background-size: cover;z-index: 1;}


.testi_sec{
    background: #fff;
    padding: 60px 0;
    clip-path: polygon(0 0, 100% 0%, 100% 78%, 0% 100%);
    position: relative;
    overflow: hidden;
}
.testi_sec .test_1{
    display: block;
    margin: 0 0 60px 0;
    width: 40%;
    position: relative;
}
.testi_sec .test_1 img{}

.testi_sec .test_3{
    display: block;
    padding: 30px 0 200px 0;
    width: 40%;
    margin: 0 auto;
    position: relative;
}
.testi_sec .test_3 img{}


.testi_sec .test_2{
    display: block;
    margin: 0 0 60px 0;
    position: relative;
    width: 40%;
}
.testi_sec .test_2 img{}

.testi_sec .test_2 .address-block{
    border: 2px solid #2c2b2b;
    padding: 20px;
    position: absolute !important;
    top: 50px;
    right: -450px;
    width: 400px;
    display: block;
    transform: scale(0);
    transition: .5s all;
    background: #000;
}
.testi_sec .test_2 .address-block h6{
    font-size: 20px;
    font-weight: 700;
    color: #5831C9;
}
.testi_sec .test_2 .address-block p{
    font-size: 16px;
    color: #fff;
    font-weight: 300;
    line-height: 1.5;
}

.testi_sec .test_2:hover .address-block{
    display: block;
    position: relative;
    transform: scale(1);
    }

.testi_sec .test_2:hover img{border-radius: 105px; outline-style: inset; outline-color: #5831C9; }


.testi_sec .test_4{display: inline-block;width: 32%;margin: 60px 0 0 0;position: relative;}
.testi_sec .test_4 img{}

.testi_sec .test_5{display: inline-block;width: 32%;margin: 0 4px;vertical-align: top;position: relative;}
.testi_sec .test_5 img{}

.testi_sec .test_6{display: inline-block;width: 32%;margin: 60px 0 0 0;position: relative;}
.testi_sec .test_6 img{}

.testi_sec .mid_box{
    display: block;
    text-align: center;
    margin: 85px 0;
}
.testi_sec .mid_box h4{
    color: #5831C9;
    font-size: 42px;
}
.testi_sec .mid_box p{
    color: #000;
    font-size: 21px;
}

.testi_sec .test_7{
    display: block;
    margin: 0 auto;
    position: relative;
    width: 40%;
}
.testi_sec .test_7 img{  }

.testi_sec .test_8{
    display: inline-block;
    width: 40%;
    position: relative;
}
.testi_sec .test_8 img{position: absolute;top: -110px;right: -390px;width: 150px;}


.testi_sec .test_7 .address-block-2{
    border: 2px solid #2c2b2b;
    padding: 20px;
    position: absolute !important;
    top: 120px;
    right: -100px;
    width: 400px;
    display: block;
    transform: scale(0);
    transition: .5s all;
    background: #000;
    }
.testi_sec .test_7 .address-block-2 h6{
    font-size: 20px;
    font-weight: 700;
    color: #5831C9;
    }
.testi_sec .test_7 .address-block-2 p{font-size: 16px;
    color: #fff;
    font-weight: 300;
    line-height: 1.5;}


 .testi_sec .test_7:hover .address-block-2 {
    display: block;
    position: relative;
    transform: scale(1);
}   

.testi_sec .test_7:hover img{
    border-radius: 105px 0 0 0;
    outline-style: inset;
    outline-color: #5831C9;
    }


 .testi_sec .test_8{}    
 .testi_sec .test_8 img{}


  .testi_sec .test_9{
    display: block;
    margin: 0 0 0px 70px;
    width: 40%;
    position: relative;
}    
 .testi_sec .test_9 img{}



  .testi_sec .test_10{
    display: block;
    margin: 0 0 0px 250px;
    width: 40%;
    position: relative;
}    
.testi_sec .test_10 img {
    filter: grayscale(1);
}


 .testi_sec .test_11 {
    display: block;
    margin: -30px 0 0px 70px;
    width: 40%;
    position: relative;
}
  .testi_sec .test_11 img{
}









.testi_sec .test_9 .address-blockk{
    border: 2px solid #2c2b2b;
    padding: 20px;
    position: absolute !important;
    top: 90px;
    right: 90px;
    width: 400px;
    display: block;
    transform: scale(0);
    transition: .5s all;
    background: #000;
    }
.testi_sec .test_9 .address-blockk h6{font-size: 20px;
    font-weight: 700;
    color: #5831C9;}
.testi_sec .test_9 .address-blockk p{font-size: 16px;
    color: #fff;
    font-weight: 300;
    line-height: 1.5;}


.testi_sec .test_9:hover .address-blockk {
    display: block;
    position: relative;
    transform: scale(1);
} 

.testi_sec .test_9:hover img{
    border-radius: 50%;
    outline-style: inset;
    outline-color: #5831C9;
    }

.testi_sec:before{position: absolute;content: "";background: url(../images/bubbles.png);width: 550px;height: 700px;left: -410px;bottom: 0;background-repeat: no-repeat;background-size: contain;background-position: 100% 100%;z-index: 1;}    


.bottom_form{
    padding: 0 0 30px 0;
}
.bottom_form .img_wrp{}
.bottom_form .img_wrp img{
    width: 70%;
    margin: 0 auto;
    display: block;
}

.bottom_form .form_wrpr{}
.bottom_form .form_wrpr .left_wrpr{
    display: inline-block;
    width: 20%;
    margin: 0 0 20px 0;
}
.bottom_form .form_wrpr .left_wrpr img{
}

.bottom_form .form_wrpr .right_wrpr{
    display: inline-block;
    width: 79%;
    vertical-align: middle;
}
.bottom_form .form_wrpr .right_wrpr h6{
    font-size: 36px;
    font-weight: 600;
    margin: 0 0 18px;
}
.bottom_form .form_wrpr .right_wrpr h6 span{
    color: #5831C9;
}


.bottom_form .form_wrpr .right_wrpr p{
    font-size: 22px;
    color: #000000;
}


.bottom_form .form_wrpr .grp{
    width: 48%;
    display: inline-block;
    margin: 0 10px 20px 0;
}
.bottom_form .form_wrpr .grp input{
    width: 100%;
    height: 65px;
    background: #F8F8F8 0% 0% no-repeat padding-box;
    border: 2px solid #D2D2D2;
    border-radius: 14px;
    padding: 10px;
    color: #636363;
}
.bottom_form .form_wrpr .grp1 {
    width: 98%;
    display: block;
    margin: 0 0px 20px 0;
}
.bottom_form .form_wrpr .grp1 textarea{
    width: 100%;
    background: #F8F8F8 0% 0% no-repeat padding-box;
    border: 2px solid #D2D2D2;
    border-radius: 14px;
    padding: 10px;
    color: #636363;
    height: 207px;
}
.bottom_form .form_wrpr .grp1 button{
    background: #5831C9;
    margin: 0 auto;
    display: block;
}




footer{
    clip-path: polygon(0 0, 100% 37%, 100% 100%, 0% 100%);
    background-color: #000;
    padding: 90px 0px 30px 0;
}
footer .footer_wrp{
    text-align: center;
}
footer .footer_wrp a{}
footer .footer_wrp a img{width: 55%;}
footer ul{margin: 0;}
footer ul li{
    display: inline-block;
    margin: 0 30px;
}
footer ul li a{
    color: #FFFFFF;
    font-size: 22px;
}
footer ul li a i{}


footer ul li a:hover {
    color: #5831C9;

}



.overlay-bg {
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: none;
}
.pop-form .submit-btn {
    font-size: 22px;
    width: 100%;
    padding: 15px 0px;
    background-color: #000000;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    position: relative;
    border: none;
    margin-top: 15px;
    width: 100%;
    margin: 10px 0 0 0px !important;
    font-weight: 700;
}
.pop-form .submit-btn {
    font-size: 22px;
    padding: 15px 0px;
    background: #fb2224;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    position: relative;
    border: none;
    margin-top: 15px;
    width: 100%;
}
.popupform-main.active {
    display: block;
}
.popupform-main {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.62);
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}
.pop-form {
    position: absolute;
    top: 0px;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 99;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    background-size: cover;
    padding: 0 30px;
    background: #000000 0% 0% no-repeat padding-box;
    border: 4px solid #5831C9;
    border-radius: 14px;
    width: 1000px;
    height: 550px;
}

.popupform-main .main-pop .col-md-12 {
    padding: 0;
}

.popupform-main h3 {
    font-size: 28px;
    margin: 40px 0 25px 0;
    color: #fff;
    font-weight: 500;
    line-height: inherit;
}

.popupform-main h2 {
    font-size: 36px;
    margin: 10px 0 20px 0;
    font-weight: 700;
    color: #fff;
    line-height: inherit;
    line-height: 40px;
}

.popupform-main h4 {
    font-size: 26px;
    margin: 8px 0 0 0;
    color: #000000;
    font-weight: 700;
}

.fspx-23 {
    font-size: 23px;
}
.fw-exbold {
    font-weight: 800 !important;
}

.ls-xsmall {
    letter-spacing: -2px;
}
.fc-red {
    color: #fb2224;
}
.tt-uppercase {
    text-transform: uppercase !important;
}   
.popupform-main h6 {
    letter-spacing: 0;
    font-size: 45px;
    background: #4274fa;
    color: #fff;
    border-radius: 10px;
    padding: 10px 15px 5px 15px;
    text-align: left;
    position: relative;
    right: 0px;
    margin: 0px;
    float: right;
}
.fspx-20 {
    font-size: 20px;
    display: block;
}
.fspx-23 {
    font-size: 23px;
    margin-bottom: 10px;
}
.fw-normal {
    font-weight: 400 !important;
}
.popupform-main .main-pop {
    padding: 25px 10px 0 0;
}
.pop-form .no-thanks {
    text-decoration: underline;
    color: #666666;
}
.pop-form form .control-group {
    margin-bottom: 10px;
}
form .control-group {
    margin-bottom: 24px;
    position: relative;
}
.pop-form form .control-group input[type=text],.pop-form form .control-group input[type=text], .pop-form form .control-group input[type=number], .pop-form form .control-group input[type=email], .pop-form form .control-group select, .pop-form form .control-group textarea {
    background-color: transparent;
    font-family: "Nunito", sans-serif;
    text-align: left;
    border: 1px solid #fff;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 14px;
}
.popupform-main form input[type=text], .popupform-main form input[type=number], .popupform-main form input[type=email] {
    padding-left: 10px;
    min-height: 50px;
}
.popupform-main form input[type=text], .popupform-main form input[type=number], .popupform-main form input[type=email] {
    color: #333333;
    padding: 10px;
    height: 44px;
    width: 100%;
    background: transparent;
    border: 1px solid #cccccc;
    box-shadow: none;
    -webkit-appearance: none;
    border-radius: 4px;
    font-family: "Nunito", sans-serif;
}

form .numberarea {
    width: auto;
    position: relative;
}
.pop-form .submit-btn {
    font-size: 20px;
    width: 100%;
    padding: 10px 0px;
    background-color: #fff;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    position: relative;
    border: none;
    border-radius: 14px;
    margin-top: 15px;
    width: 100%;
    margin: 10px 0 0 0px !important;
    font-weight: 500 !important;
    text-transform: uppercase;
    background: #5831C9 0% 0% no-repeat padding-box;
}
.pop-form .no-thanks {
    text-decoration: underline;
    color: #666666;
}
.popupform-main h6:before {
    position: absolute;
    content: "";
    left: -35px;
    top: 0px;
    width: 0;
    height: 0;
    border-top: 0px solid transparent;
    border-right: 45px solid #4274fa;
    border-bottom: 28px solid transparent;
}
.float-left {
    float: left;
}
.lh-medium {
    line-height: 1.2;
}
.lh-medium {
    line-height: 1.2;
}
.ta-left {
    text-align: left;
}
.fw-exbold {
    font-weight: 800 !important;
}
.mtpx-60{
    margin-top: 60px;
}
.pop-form .close-btn {
    width: 45px;
    height: 45px;
    display: block;
    position: absolute;
    top: -18px;
    right: -20px;
    font-size: 18px;
    font-weight: 900;
    color: #222;
    padding-top: 3px;
    background-color: #fff;
    text-align: center;
    border-radius: 50px;
    align-items: center;
    display: grid;
    /* border: inset 3px #7f6303; */
    border: 2px solid #7f6303;
}


/*platform sec*/

.Platform_sec{
    padding: 60px 0;
    background-color: #F1F2F2;
    position: relative;
    overflow: hidden;
}
.Platform_sec ul{}
.Platform_sec ul li{
    width: 100%;
    display: block;
}
.Platform_sec ul li .left_p{
    display: inline-block;
    width: 33%;
    margin: 0 17px 0 0;
    position: relative;
}

.Platform_sec ul li .left_p ul{padding: 20px;background: #5831C9 0% 0% no-repeat padding-box;box-shadow: 10px 23px 50px #00000029;border-radius: 22px;opacity: 0;}
.Platform_sec ul li .left_p ul li{margin: 0 0 12px 0;}
.Platform_sec ul li .left_p ul li h6{margin: 0;font-size: 26px;color: #FFFFFF;}
.Platform_sec ul li .left_p ul li p{margin: 0;color: #fff;font-size: 16px;}





.Platform_sec ul li .mid_p{
    display: inline-block;
    margin: 0 0 5px 0;
    width: 30%;
    position: relative;
}
.Platform_sec ul li .mid_p img{
    width: 100%;
}
.Platform_sec ul li .right_p{
    display: inline-block;
    width: 32%;
    position: relative;
}
.Platform_sec ul li .right_p img{}


.Platform_sec .img_Wrrrp{
    position: relative;
}
.Platform_sec .img_Wrrrp img{
    position: absolute;
    top: 100px;
    max-width: 400px;
    left: -102px;
    animation: rotate 30s linear infinite;
}
.Platform_sec .img_Wrrrp h6{
    margin: 0;
    position: absolute;
    top: 258px;
    left: 4px;
    right: 0;
    font-size: 32px;
    color: #5831C9;
    font-weight: 700;
    text-align: center;
}







.main_boz {
    position: absolute;
    top: -60px;
    left: -30px;
}


.Platform_sec ul li:hover .left_p ul{opacity: 1; transition: 1.2s;}


.Platform_sec ul li:hover .mid_p:after {
    height: 100%;
    transition: 0.5s;
}

.Platform_sec ul li .mid_p:after {
    position: absolute;
    content: "";
    background-image: url(../images/pc1.png);
    width: 100%;
    height: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    transition: 0.5s;
    filter: brightness(0) saturate(100%) invert(22%) sepia(42%) saturate(6346%) hue-rotate(251deg) brightness(80%) contrast(97%);
}


.Platform_sec ul li:nth-child(2) .mid_p:after{

 background-image: url(../images/pc2.png);   
}

.Platform_sec ul li:nth-child(3) .mid_p:after{

background-image: url(../images/pc3.png);

filter: brightness(0) saturate(100%) invert(22%) sepia(42%) saturate(6346%) hue-rotate(251deg) brightness(80%) contrast(97%);
}
.Platform_sec ul li:nth-child(4) .mid_p:after{

 background-image: url(../images/pc4.png);   
}


.Platform_sec ul li .right_p:after {
    position: absolute;
    content: "";
    background-image: url(../images/shape1c.svg);
    width: 100%;
    height: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: contain;
    transition: 0.5s;
    filter: brightness(0) saturate(100%) invert(22%) sepia(42%) saturate(6346%) hue-rotate(251deg) brightness(80%) contrast(97%);
}


.Platform_sec ul li:hover .right_p:after {height: 100%;
    transition: 0.5s;}

.Platform_sec ul li:nth-child(2) .right_p:after {  background-image: url(../images/shape2c.svg);}
.Platform_sec ul li:nth-child(3) .right_p:after {background-image: url(../images/shape3c.svg);filter: brightness(0) saturate(100%) invert(22%) sepia(42%) saturate(6346%) hue-rotate(251deg) brightness(80%) contrast(97%);}

.Platform_sec ul li:nth-child(4) .right_p:after {  background-image: url(../images/shape4c.svg);}


.Platform_sec ul li:hover .right_p img {opacity: 0
}



.Platform_sec ul.for_rotate li{



}


.Platform_sec ul.for_rotate li:nth-child(1) .mid_p:after{

 background-image: url(../images/pc5.png);   
}

.Platform_sec ul.for_rotate li:nth-child(2) .mid_p:after{

 background-image: url(../images/pc6.png);   
}

.Platform_sec ul.for_rotate li:nth-child(3) .mid_p:after{

background-image: url(../images/pc7.png);

filter: brightness(0) saturate(100%) invert(22%) sepia(42%) saturate(6346%) hue-rotate(251deg) brightness(80%) contrast(97%);
}

.Platform_sec ul.for_rotate li:nth-child(4) .mid_p:after{

 background-image: url(../images/pc8.png);   
}


.Platform_sec ul.for_rotate li:nth-child(1) .right_p:after {  background-image: url(../images/shape5c.svg);}
.Platform_sec ul.for_rotate li:nth-child(2) .right_p:after {  background-image: url(../images/shape6c.svg); left: 75px;}

.Platform_sec ul.for_rotate li:nth-child(3) .right_p:after {background-image: url(../images/shape7c.svg);left: 75px;filter: brightness(0) saturate(100%) invert(22%) sepia(42%) saturate(6346%) hue-rotate(251deg) brightness(80%) contrast(97%);}

.Platform_sec ul.for_rotate li:nth-child(4) .right_p:after {  background-image: url(../images/shape8c.svg);}



.Platform_sec ul.for_rotate li .right_p {
    text-align: right;
}
.Platform_sec ul.for_rotate .main_boz {
   
left: 60px;
   
width: 100%;
   
top: -100px;
}


.Platform_sec .btn_wrpr{
    text-align: center;
}
.Platform_sec .btn_wrpr a{
    background: #5831C9;
}



.Platform_sec:before {
    position: absolute;
    content: '';
    right: -270px;
    top: -220px;
    background-repeat: no-repeat;
    z-index: 0;
    mix-blend-mode: luminosity;
    background: transparent url('../images/right.png') 0% 0% no-repeat padding-box;
    width: 602px;
    height: 1021px;
}



.Platform_sec:after {
    position: absolute;
    content: '';
    top: 60px;
    left: -410px;
    background-repeat: no-repeat;
    z-index: 0;
    mix-blend-mode: luminosity;
    background: transparent url('../images/right.png') 0% 0% no-repeat padding-box;
    width: 602px;
    height: 720px;
    background-position: 100%;
    background-size: contain;
}



@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}




textarea.form-control {
    height: 163px;
}


.popupform-main input::placeholder{color: #fff;}
.popupform-main textarea::placeholder{color: #fff;}



.testi_sec .test_1 .address-block{
    border: 2px solid #2c2b2b;
    padding: 20px;
    position: absolute !important;
    top: 0;
    right: -420px;
    width: 400px;
    display: block;
    transform: scale(0);
    transition: .5s all;
    background: #000;
    }
.testi_sec .test_1 .address-block h6{    font-size: 20px;
    font-weight: 700;
    color: #5831C9;}
.testi_sec .test_1 .address-block p{font-size: 16px;
    color: #fff;
    font-weight: 300;
    line-height: 1.5;}


 .testi_sec .test_1:hover .address-block {
    display: block;
    position: relative;
    transform: scale(1);
    z-index: 1;
}   

.testi_sec .test_1:hover img{
    border-radius: 105px 0 0 0;
    outline-style: inset;
    outline-color: #5831C9;
    }




.testi_sec .test_3 .address-block{
    border: 2px solid #2c2b2b;
    padding: 20px;
    position: absolute !important;
    top: 0;
    right: -420px;
    width: 400px;
    display: block;
    transform: scale(0);
    transition: .5s all;
    background: #000;
    }
.testi_sec .test_3 .address-block h6{    font-size: 20px;
    font-weight: 700;
    color: #5831C9;}
.testi_sec .test_3 .address-block p{font-size: 16px;
    color: #fff;
    font-weight: 300;
    line-height: 1.5;}


 .testi_sec .test_3:hover .address-block {
    display: block;
    position: relative;
    transform: scale(1);
    z-index: 1;
}   

.testi_sec .test_3:hover img{
    border-radius: 135px 0 130px 130px;
    outline-style: inset;
    outline-color: #5831C9;
    }    



.testi_sec .test_4 .address-block{
    border: 2px solid #2c2b2b;
    padding: 20px;
    position: absolute !important;
    top: 0;
    right: -420px;
    width: 400px;
    display: block;
    transform: scale(0);
    transition: .5s all;
    background: #000;
    }
.testi_sec .test_4 .address-block h6{    font-size: 20px;
    font-weight: 700;
    color: #5831C9;}
.testi_sec .test_4 .address-block p{font-size: 16px;
    color: #fff;
    font-weight: 300;
    line-height: 1.5;}


 .testi_sec .test_4:hover .address-block {
    display: block;
    position: relative;
    transform: scale(1);
    z-index: 1;
}   

.testi_sec .test_4:hover img{
    border-radius: 105px 0 0 115px;
    outline-style: inset;
    outline-color: #5831C9;
    }    




.testi_sec .test_5 .address-block{
    border: 2px solid #2c2b2b;
    padding: 20px;
    position: absolute !important;
    top: 0;
    right: -420px;
    width: 400px;
    display: block;
    transform: scale(0);
    transition: .5s all;
    background: #000;
    }
.testi_sec .test_5 .address-block h6{    font-size: 20px;
    font-weight: 700;
    color: #5831C9;}
.testi_sec .test_5 .address-block p{font-size: 16px;
    color: #fff;
    font-weight: 300;
    line-height: 1.5;}


 .testi_sec .test_5:hover .address-block {
    display: block;
    position: relative;
    transform: scale(1);
    z-index: 1;
}   

.testi_sec .test_5:hover img{
    border-radius: 105px 0 0 0;
    outline-style: inset;
    outline-color: #5831C9;
    }



.testi_sec .test_6 .address-block{
    border: 2px solid #2c2b2b;
    padding: 20px;
    position: absolute !important;
    top: 0;
    right: -420px;
    width: 400px;
    display: block;
    transform: scale(0);
    transition: .5s all;
    background: #000;
    }
.testi_sec .test_6 .address-block h6{    font-size: 20px;
    font-weight: 700;
    color: #5831C9;}
.testi_sec .test_6 .address-block p{font-size: 16px;
    color: #fff;
    font-weight: 300;
    line-height: 1.5;}


 .testi_sec .test_6:hover .address-block {
    display: block;
    position: relative;
    transform: scale(1);
    z-index: 1;
}   

.testi_sec .test_6:hover img{
    border-radius: 105px 0 0 0;
    outline-style: inset;
    outline-color: #5831C9;
    }    


.testi_sec .test_8 .address-block{
    border: 2px solid #2c2b2b;
    padding: 20px;
    position: absolute !important;
    top: -30px;
    right: -420px;
    width: 400px;
    display: block;
    transform: scale(0);
    transition: .5s all;
    background: #000;
    }
.testi_sec .test_8 .address-block h6{    font-size: 20px;
    font-weight: 700;
    color: #5831C9;}
.testi_sec .test_8 .address-block p{font-size: 16px;
    color: #fff;
    font-weight: 300;
    line-height: 1.5;}


 .testi_sec .test_8:hover .address-block {
    display: block;
    position: relative;
    transform: scale(1);
    z-index: 1;
}   

.testi_sec .test_8:hover img{
    border-radius: 100px;
    outline-style: inset;
    outline-color: #5831C9;
    }      





.testi_sec .test_10 .address-block{
    border: 2px solid #2c2b2b;
    padding: 20px;
    position: absolute !important;
    top: -30px;
    right: 200px;
    width: 400px;
    display: block;
    transform: scale(0);
    transition: .5s all;
    background: #000;
    }
.testi_sec .test_10 .address-block h6{
    font-size: 20px;
    font-weight: 700;
    color: #5831C9;
    }
.testi_sec .test_10 .address-block p{font-size: 16px;
    color: #fff;
    font-weight: 300;
    line-height: 1.5;}


 .testi_sec .test_10:hover .address-block {
    display: block;
    position: relative;
    transform: scale(1);
    z-index: 1;
}   

.testi_sec .test_10:hover img {
    border-radius: 100px;
    outline-style: inset;
    outline-color: #5831C9;
    filter: grayscale(0);
}


.testi_sec .test_11 .address-block{
    border: 2px solid #2c2b2b;
    padding: 20px;
    position: absolute !important;
    top: -30px;
    right: 200px;
    width: 400px;
    display: block;
    transform: scale(0);
    transition: .5s all;
    background: #000;
    }
.testi_sec .test_11 .address-block h6{
    font-size: 20px;
    font-weight: 700;
    color: #5831C9;
    }
.testi_sec .test_11 .address-block p{font-size: 16px;
    color: #fff;
    font-weight: 300;
    line-height: 1.5;}


 .testi_sec .test_11:hover .address-block {
    display: block;
    position: relative;
    transform: scale(1);
    z-index: 1;
}   

.testi_sec .test_11:hover img{
    border-radius: 100px 0 0 300px;
    outline-style: inset;
    outline-color: #5831C9;
    }     
    
section.testi_sec:after {
    position: absolute;
    content: "";
    background-color: #000;
    height: 1px;
    width: 100%;
    top: 0px;
} 

.head_tbn{display: flex ; gap: 20px;}

.whatsapp {width: 50px;height: 51px;color: #fff;display: block;text-align: center;border-radius: 100%;font-size: 34px;position: fixed;bottom: 10px;left: 40px;z-index: 9999;box-shadow: 6px 9px 30px 1px rgba(37, 0, 22, 0.71);padding: 1px 0;}
.whatsapp img{
    border-radius: 50px;
}

.head_tbn a img {
    border-radius: 50%;
}


/*==============floating strips css start============== */
.floatbutton.active{right: 0;z-index: 9;-webkit-transition: 0.4s;-moz-transition: 0.4s;-o-transition: 0.4s;transition: 0.4s;}
.floatbutton{-webkit-transition: 0.4s;-moz-transition: 0.4s;-o-transition: 0.4s;transition: 0.4s;position: fixed;right: -370px;top: 18%;font-size: 0;width: 420px;/* transform: translateY(-50%); */z-index: 999;}
.floatbutton .clickbutton{width: 50px;z-index: 999;height: 60px;cursor: pointer;box-shadow: -20px 7px 18px -7px rgba(87, 184, 151, 0.09);border-radius: 10px 0px 0px 10px;display: inline-block;padding-top: 0;vertical-align: top;margin-top: 125px;color: #673de4;font-size: 16px;font-weight: 700;background: #ffffff;position: relative;text-transform: uppercase;/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#2a3db6+0,1169cd+100 */ /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */ /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ /* IE6-9 fallback on horizontal gradient */}
.floatbutton .clickbutton .crossplus:before{content: ""; display:none;position: absolute;width: 20px;height: 2px;right: 0;background: #fbb334;z-index: 99;top: 0;left: 0;bottom: 0;margin: auto;}
.floatbutton .clickbutton .crossplus:after{content: ""; display:none;position: absolute;width: 2px;height: 20px;right: 0;background: #fab334;z-index: 99;top: 0;left: 0;bottom: 0;margin: auto;}
.floatbutton .clickbutton .crossplus{position: absolute;display: block;/* transform: rotate(-90deg); */-webkit-transition: 0.4s;-moz-transition: 0.4s;-o-transition: 0.4s;transition: 0.4s;left: 0;text-transform: capitalize;white-space: pre;bottom: 0;padding: 15px 20px;}
.floatbutton .clickbutton .crossplus.rotate{transform: rotate(45deg);-webkit-transition: 0.4s;-moz-transition: 0.4s;-o-transition: 0.4s;transition: 0.4s;}
.floatbutton .clickbutton .crossplus i {font-size: 18px;color: #673de3;margin: 0 0 0 -5px;}
.banner-form{background: #fff;padding: 30px;position: relative;z-index: 99999 !important;border-radius: 5px;margin: 0;width: 370px;display: inline-block;box-shadow: 0px 0px 30px #0000001f;}
.ban-form input{width: 100%;margin: 0 0 0 0;border: 1px solid #e5e5e5;background: white;padding: 10px 15px;color: gray;font-size: 14px;border-radius: 3px;height: 50px;font-weight: 400;outline: none !important;margin: 0 0 15px 0;}
.banner-form .intl-tel-input{width: 100%;}
.banner-form h3 {color: #5e36d7;font-size: 24px;margin-bottom: 5px;font-weight: 700;}
.banner-form h3 strong {font: 24px/24px "Poppins", sans-serif;font-weight: 600;}
.ban-form input[type="submit"]{color: #fff;font-weight: 600;border-radius: 3px;text-align: center;padding: 10px 15px;margin: 20px 0 0;border: transparent;cursor: pointer;/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#2a3db6+0,1169cd+100 */ /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */ /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ /* IE6-9 fallback on horizontal gradient */background: #6037da;}
.ban-form textarea{width: 100%;border: 1px solid #e5e5e5;background: white;padding: 10px 15px;color: gray;font-size: 14px;border-radius: 3px;box-shadow: 0px 5px 11px 0px rgba(207, 207, 207, 0.39);font-weight: 400;height: 120px;outline: none !important;margin: 15px 0 0px 0;resize: none;}
.btns_wrap{position:fixed;right: -6px;}
.btns_wrap a:hover{text-decoration: none!important;right: 0px;}
.btns_wrap .call_wrap{width: 280px;position: absolute;right: -225px;/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#2a3db6+0,1169cd+100 */ /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */ /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ /* IE6-9 fallback on horizontal gradient */top: 63px;background: #ffffff;border-radius: 10px 0px 0px 10px;overflow: hidden;box-shadow: 0px 0px 40px #00000026 !important;-webkit-transition: all 0.3s ease;-moz-transition: all 0.3s ease;-ms-transition: all 0.3s ease;-o-transition: all 0.3s ease;transition: all 0.3s ease;z-index: 9999;}
.btns_wrap .call_wrap span{color: #4f4f4f;font-size: 20px;vertical-align: middle;/* background: #000; */padding: 15px 20px 15px 15px;}
.btns_wrap .chat_wrap{display: block;position: absolute;right: -225px;width: 280px;/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#2a3db6+0,1169cd+100 */ /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */ /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ /* IE6-9 fallback on horizontal gradient */background: #ffffff;overflow: hidden;box-shadow: 0px 0px 40px #00000026 !important;-webkit-transition: all 0.3s ease;-moz-transition: all 0.3s ease;-ms-transition: all 0.3s ease;-o-transition: all 0.3s ease;transition: all 0.3s ease;border-radius: 10px 0px 0px 10px;z-index: 9999;}
.btns_wrap .chat_wrap span.icoo,
.btns_wrap .call_wrap span.icoo{color: #673de4;/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#2a3db6+0,1169cd+100 */ /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */ /* W3C,;background:;;eTransform.Microsoft.gradient( startColorstr='#2a3db6', endColorstr='#1169cd',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */font-size: 18px;padding: 15px 20px;background: #ffffff;border-radius: 10px 0px 0px 10px;border-right: 1px solid #ded9d9;vertical-align: middle;display: inline-block;}
.btns_wrap .chat_wrap span{color: #4f4f4f;font-size: 18px;vertical-align: middle;/* background: #000; */padding: 15px 30px 15px 15px;}
.ban-form .fldset.inpchecbx label{display: inline-block;margin: 0;line-height: 1.4;color: #676767;font-size: 13px;}
.ban-form .fldset.inpchecbx input{display: inline-block;width: auto;height: auto;margin: 0;}
.fldset.inpchecbx {margin: 10px 0 0 0;}
.fldset p{font-size: 13px;color: #676767;padding: 0;margin: 10px 0 0 0;}
.fldset p a{display: block; padding: 5px 0px 0 0; color: #141315; font-weight: 500; font-size: 14px; }
.main-services-banner-sec .ban-form .fldset  textarea{height: 60px;}
.main-services-banner-sec .ban-form input{height: 40px}
/*===================floating strips css end =================*/