/* 
========================================== 
General CSS
========================================== 
*/
html,body {
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
body {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
}
h1,h2,h3,h4,h5,h6 {
    margin: 0;
    padding: 0;
    font-weight: 500;
}
a:hover,a:focus {
    text-decoration: none;
}
h1 {
    font-size: 40px;
    font-weight: 600;
}
h2 {
    font-size: 40px;
    font-weight: 600;
}
h3 {
    font-size: 32px;
}
h4 {
    font-size: 24px;
}
h5 {
    font-size: 22px;
}
h6 {
    font-size: 20px;
}
p {
    font-size: 18px;
}
p.small {
    font-size: 16px;
}
.fs28 {
    font-size: 28px;
    font-weight: 500;
}
.pad {
    padding: 80px 0;
}
.pad_top {
    padding-top: 80px;
}
.pad_bot {
    padding-bottom: 80px;
}
.pad_top0 {
    padding-top: 0px;
}
.pad_bot0 {
    padding-bottom: 0px;
}
ul.nospace, ol.nospace {
    margin: 0;
    padding: 0;
    list-style: none;
}
.mb30 {
    margin-bottom: 30px;
}
.mb40 {
    margin-bottom: 40px;
}
.mb50 {
    margin-bottom: 50px;
}
.mb60 {
    margin-bottom: 60px;
}
.mb80 {
    margin-bottom: 80px;
}
.mar {
    margin: 50px 0;    
}
.bg_img {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.container-fluid {
    padding: 0 60px;
}
.grey-bg {
    background-color: #F4F4F4;
}
.green-bg {
    background-color: #83E4C8;
}
.relative {
    position: relative;
}

/*Buttons*/
.alink {
    font-size: 18px;
    font-weight: 500;
    transition: .2s ease all;
}
.custom_button {
    padding: 12px 25px; 
    font-size: 18px;
    background-color: #fff;
    border-radius: 4px;
    color: #2526A9;
    display: inline-block;
    transition: .2s ease all;
    font-weight: 600;
}
.custom_button:hover {
    background-color: #4630EB;
    color: #fff;
}
.custom_button.blue {
    background-color: #04234f;
    color: #fff;
}
.custom_button.blue:hover {
    background-color: #fff;
    color: #04234f;
}
.custom_button.line_btn {
    color: #3620FF;
    border: 1px solid #3620FF;
    background-color: transparent;
    font-size: 16px;
}
.custom_button.line_btn:hover {
    color: #fff;
    background-color: #3620FF;
}

/*Input*/
input[type="text"],input[type="email"],input[type="number"], textarea, select {
    
}
input:focus, textarea:focus, select:focus {
    outline: none;
}

/* 
========================================== 
Page CSS
========================================== 
*/


/*Header CSS*/

.top-bar {
    background-color: #edff53;
    text-align: center;
    position: relative;
    width: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    margin-bottom: 10px;
}
.top-bar .tb_text {
    font-size: 18px;
    font-weight: 500;
    color: #6f6e6b;
    letter-spacing: .5px;
}
.top-bar .tb_text a {
    color: #6f6e6b;
    transition: .2s ease all;
}
.top-bar .tb_text a:hover {
    color: #6453FF;
}
header {
    transition: .3s ease all;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 0 0 10px 0;
    background-color: #6453FF;
    z-index: 99999;
}
header.fixed {
    position: fixed;
    width: 100%;
    transition: .3s ease all;
    z-index: 99999;
    box-shadow: 0 1px 6px 0 rgba(32,33,36,.28);
}
header nav {
    display: flex;
    justify-content: space-between;
}
.navbar-brand img {
    width: 150px;
}
.navbar-expand-lg .navbar-nav .nav-item {
    padding: 10px 15px;
}
.navbar-expand-lg .navbar-nav .nav-link {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    padding: 0!important;
    position: relative;
}
.navbar-expand-lg .navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #A3DBE8;
    left: 0;
    bottom: -4px;
    opacity: 0;
    transition: .2s ease all;
}
.navbar-expand-lg .navbar-nav .nav-link:hover::after, .navbar-expand-lg .navbar-nav .nav-item.active .nav-link:after {
    opacity: 1;
    transition: .2s ease all;
}
.header_button {
    margin-left: 15px;
}
.header_button a {
    font-size: 16px;
    color: #2526A9;
}
.head_margin {
    margin-top: 150px;
}



/*Homepage CSS*/
.h_banner {
    padding: 80px 0;
    background-color: #6453FF;
    display: flex;
    align-items: center;
}
.ban_image  {
    text-align: right;
}
.ban_image img {
    width: 85%;
}
.banner_content h1 {
    color: #fff;
    margin-bottom: 20px;
    width: 70%;
}
.banner_content p {
    font-size: 24px;
    color: #fff;
}
.ban_form {
    position: relative;
    margin-top: 40px;
}
.ban_form input[type=text], .ban_form input[type=email] {
    position: relative;
    width: 100%;
    border: 1px solid #fff;
    background-color: #5448BC;
    padding: 14px 30% 14px 10px;
    border-radius: 5px;
    font-size: 18px;
    color: #fff;
}
.ban_form input[type=email]::placeholder {
    color: #fff;
}
.ban_btns {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.ban_btns .alink {
    margin-left: 20px;
    color: #fff;
    position: relative;
    transition: .3s ease all;
}
.ban_btns .alink:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #A3DBE8;
    left: 0;
    bottom: -2px;
    opacity: 0;
    transition: .3s ease all;
}
.ban_btns .alink:hover::after {
    opacity: 1;
    transition: .3s ease all;
}
.banner_images .bimage1 {
    position: relative;
    z-index: 2;
}
.bimage2 {
    position: relative;
    z-index: 1;
    margin-left: -100px;
}
.heading {
    text-align: center;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}
.heading p.capital {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}
.wwd_sec {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.wwd_sub {
    width: 90%;
    margin: 60px auto 0 auto;
    text-align: center;
}
.wwd_sub .wwdicon img {
    max-width: 90%;
    max-height: 180px;
}
.wwd_sub .wwd_text {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
}
.wwd_sub .wwd_text h5 {
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}
.wwd_sub .wwd_text p {
    width: 90%;
    margin: 0 auto;
}
.comp_list {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
}
.comp_icons {
    text-align: center;
}
.comp_icons img {
    max-width: 140px;
    width: 100%;
}

section .container .lr_sec:nth-child(1) {
    margin-top: 0;
}
.lr_sec {
    margin-top: 180px;
}
.lr_sec.reverse .row {
    flex-direction: row-reverse;
}
.lr_sec .lr_content {
    width: 80%;
}
.lr_sec .lr_head {
    position: relative;
    width: 90%;
    padding-top: 20px;
    margin-bottom: 30px;
}
.lr_sec.reverse .lr_content {
    margin-left: auto;
}
.lr_sec .lr_head:before {
    content: '';
    position: absolute;
    top: 0;
    width: 70px;
    height: 4px;
    background-color: #6453FF;
}
.new_lr_sec.lr_sec .lr_head:before {
    display: none;
}
.new_lr_sec.lr_sec .lr_head {
    padding-top: 0;
}
.new_lr_sec.lr_sec .lr_head .blue_text {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    color: #6453FF;
    margin-bottom: 10px;
    font-variant: small-caps;
}
.lr_text ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 18px;
    color: #333333;
}
.lr_text ul li span {
    position: absolute;
    left: 0;
    top: 8px;
}
.lr_text ul li b {
    font-weight: 500;
}
.lr_image {
    text-align: right;
}
.lr_sec.reverse .lr_image {
    text-align: left;
}
.lr_image img {
    width: 90%;
}
.lr_image .videobox {
    display: none;
    animation: fadeEffect .3s;
}

@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}
.lr_image .videobox.active {
    display: block;
}

.points_sec {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.points_sec .points_in {
    text-align: center;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.points_in h5 {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}
.points_in p {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}
.heading_box_first {
    background-color: #3620FF;
    padding: 30px;
    color: #fff;
    display: inline-block;
    position: absolute;
    top: -70px;
    left: 5%;
}
.heading_box_second {
    background-color: #3620FF;
    padding: 30px;
    color: #fff;
    display: inline-block;
    position: absolute;
    bottom: -70px;
    right: 5%;
}
.stories_main {
    position: relative;
}
.stories_slider {
    width: 65%;
    margin-left: auto;
    margin-right: auto;
}
.ss_image img {
    width: 100%;
}
.ss_content {
    padding-left: 60px;
}
.com_icon img {
    max-width: 100px;
}
.com_head {
    font-size: 27px;
    line-height: initial;
    margin: 35px 0 20px 0;
    font-style: italic;
}
.customer_det p {
    margin-bottom: 0;
}
.customer_det h4 {
    font-weight: 400;
}
.ss_content .read_more {
    margin-top: 50px;
}
.stories_main .left_arrow {
    position: absolute;
    left: 0;
    top: 46%;
    cursor: pointer;
}
.stories_main .right_arrow {
    position: absolute;
    right: 0;
    top: 46%;
    cursor: pointer;
}
.left_arrow img, .right_arrow img {
    width: 25px;
}

.cta {
    background-image: url(../img/cta_bg.svg);
    background-repeat: no-repeat;
    background-color: #6453FF;
    background-size: 550px;
    background-position: -30% 40%;
}
.cta_box {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.cta_box .cta_heading {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 50px;
    line-height: 44px;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}
.cta_box p {
    font-size: 28px;
    color: #fff;
    margin-bottom: 40px;
} 
.cta_box .cta_btn {
    margin-left: auto;
    margin-right: auto;
}
.cta_btn input[type=email] {
    position: relative;
    width: 100%;
    border: 1px solid #fff;
    background-color: #5448BC;
    padding: 14px 30% 14px 10px;
    border-radius: 5px;
    font-size: 18px;
    color: #fff;
}
.cta_btn input[type=email]::placeholder {
    color: #fff;
}
footer {
    background-color: #282828;
    padding: 50px 0;
}
.footer_logo img {
    width: 200px;
}
.p_policy p {
    margin-bottom: 0;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
}
.p_policy p a {
    color: #fff;
    transition: .2s ease all;
}
.p_policy p a:hover {
    color: #6453FF;
}
.navbar-toggler {
    display: none;
}
#myNav {
    display: none;
}
.footer_colm h6 {
    color: #fff;
}
.footer_colm h6 a {
    color: #fff;
}
.footer_colm ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 18px;
}
.footer_colm ul li {
    margin-bottom: 15px;
}
.footer_colm ul li:last-child {
    margin-bottom: 0;
}
.footer_colm ul li a {
    color: #fff;
    font-size: 16px;
    transition: .2s ease all;
    padding: 0;
}
.footer_colm ul li a:hover {
    color: #4630EB;
}
.foot_right h6 {
    color: #fff;
}
ul.social {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 18px;
}
ul.social li {
    display: inline-block;
    margin-right: 10px;
}
.foot_right .ques {
    margin-top: 30px;
}
.ques p {
    color: #fff;
    font-size: 17px;
}
.ques p a {
    color: #A3DBE8;
    transition: .2s ease all;
}
.ques p a:hover {
    color: #4630EB;
}
.foot_right .policy {
    margin-top: 40px;
}
.foot_right .policy p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 0;
}
.foot_right .policy p a {
    color: #A3DBE8;
    transition: .2s ease all;
}
.foot_right .policy p a:hover {
    color: #4630EB;
}
/*Homepage CSS*/

/*Customers Page CSS*/
.top_margin {
    margin-top: 150px;
}
.image_section {
    margin-top: 100px;
}
.image_section .top_box {
    border-radius: 12px;
    overflow: hidden;
}
.tbox_image .image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 440px;
    height: 100%;
}
.tbox_content {
    height: 100%;
    background-color: #6453FF;
    padding: 30px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.tbox_up h4 {
    color: #fff;
    font-weight: 500;
}
.tboc_below .com_name p {
    color: #fff;
    font-weight: 500;
}
.tboc_below .cus_res p {
    color: #fff;
    font-weight: 300;
    margin-bottom: 15px;
    font-style: italic;
}
.tboc_below .cus_res span.person {
    display: block;
    font-size: 13px;
    color: #fff;
    font-weight: 500;
    width: 60%;
}
.tboc_below .read_more {
    margin-top: 40px;
    margin-bottom: 10px;
}
.tboc_below .read_more a {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    position: relative;
    transition: .3s ease all;
}
.tboc_below .read_more a:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #A3DBE8;
    left: 0;
    bottom: -5px;
    opacity: 0;
    transition: .3s ease all;
}
.tboc_below .read_more a:hover::after {
    opacity: 1;
    transition: .3s ease all;
}
.bottom_box .tboc_below .read_more a:after {
    background-color: #6453FF;
}
.tbox_content .read_more {
    margin-bottom: 10px;
}
.tbox_content .read_more a {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    position: relative;
    transition: .3s ease all;
}
.tbox_content .read_more a:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #A3DBE8;
    left: 0;
    bottom: -5px;
    opacity: 0;
    transition: .3s ease all;
}
.tbox_content .read_more a:hover::after {
    opacity: 1;
    transition: .3s ease all;
}
.tbox_content .tbox_up {
    width: 80%;
}
.tbox_content .tboc_below {
    width: 80%;
}
.contents .tbox_top .cus_res p {
    font-weight: 300;
    margin-bottom: 15px;
    font-weight: 300;
    font-style: italic;
    margin-top: 10px;
}


.bottom_box {
    margin-top: 40px;
}
.bottom_box>.row {
    margin-left: -20px;
    margin-right: -20px;
}
.bottom_box>.row>.col-lg-4, .bottom_box>.row>.col-lg-8 {
    padding-left: 20px;
    padding-right: 20px;
}
.bleft_box {
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
}
.bleft_box .image {
    height:200px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.bleft_box .contents {
    background-color: #DDD9FF;
    padding: 30px 25px;
}
.bottom_box .tboc_below .com_name p,
.bottom_box .tboc_below .cus_res p ,
.bottom_box .tboc_below .cus_res span.person, 
.bottom_box .tboc_below .read_more a, 
.bottom_box .tbox_up h4 {
    color: #333333;
}
.bottom_box .tboc_below .cus_res span.person {
    width: 100%;
}
.bright_box {
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}
.bright_box>.row {
    height: 100%;
}
.bright_box .image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100%;
}
.bright_box .contents {
    background-color: #A3DBE8;
    padding: 30px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
/*Customers Page CSS*/

/*CMS Template CSS*/
.cus_logo img {
    max-height: 75px;
    max-width: 100%;
}
.cus_details {
    margin-top: 40px;
}
.cus_details ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.cus_details ul li {
    margin-top: 30px;
    position: relative;
    padding-top: 15px;
}
.cus_details ul li:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 4px;
    background-color: #6453FF;
}
.cus_details ul li span {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
}
.cus_details ul li h6 {
    font-weight: 300;
    margin-top: 10px;
}
.cusin_right {
    width: 90%;
    margin-left: 0;
}
.cusin_right .heading {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 50px;
}
.cusin_right h6, .cusin_right h4 {
    width: 80%;
    margin: 0 auto;
    margin-top: 30px;
}
.image_sec img {
    width: 100%;
}
.cusin_right h6 {
    font-weight: 300;
    color: #2E2E2E;
}
.cusin_right .comment {
    margin: 60px 0;
    text-align: center;
}
.cusin_right .comment h2 {
    font-weight: 500;
    font-style: italic;
    color: #4630EB;
    font-size: 38px;
    margin-bottom: 30px;
}
.cusin_right .comment p {
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 1px;
}
.cusin_right .image_sec {
    margin: 60px 0;
}
.cusin_right .image_sec .row {
    margin-left: -5px;
    margin-right: -5px;
}
.cusin_right .image_sec .col {
    padding-left: 5px;
    padding-right: 5px;
}
.cusin_right .image_sec .image_comment {
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
}
.cusin_right .image_sec .image_comment a {
    color: #4630EB;
    font-weight: 500;
    transition: .2s ease all;
}
.cusin_right .image_sec .image_comment a:hover {
    color: #282828;
}
.cusin_right h4.big {
    font-size: 28px;
    font-weight: 300;
}
.cusin_right .about_project {
    background-color: #F4F4F4;
    padding: 40px 45px;
    margin-top: 50px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.cusin_right .about_project h4 {
    padding-top: 20px;
    position: relative;
    margin-bottom: 20px;
    width: 100%;
    margin-top: 0;
}
.cusin_right .about_project h4:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background-color: #6453FF;
}
.cusin_right .about_project p {
    margin-bottom: 0;
}
.cusin_right .about_project p span {
    color: #4630EB;
    font-weight: 500;
}
.cusin_right .numbers {
    margin: 60px 0;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-evenly;
}
.cusin_right .numbers .colm {
    padding: 15px 0px 30px 0;
    text-align: center;
    border-right: 1px solid #E0E0E0;
}
.cusin_right .numbers .colm:last-child {
    border-right: 0;
    padding-right: 0;
}
.cusin_right .numbers .colm:first-child {
    padding-left: 0;
}
.numbers .colm_numb {
    font-size: 80px;
    color: #4630EB;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
}
.numbers .colm_numb span {
    font-size: 32px;
    font-weight: 300;
}
.numbers .colm_text {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    text-transform: uppercase;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}
/*CMS Template CSS*/

/*About Page CSS*/
.a_banner {
    padding: 80px 0;
    background-color: #6453FF;
}
.about_content {
    color: #fff;
    width: 60%;
}
.about_content p {
    margin: 20px 0 0 0;
    font-size: 24px;
    line-height: 130%;
}
.left_head {
/*    margin-bottom: 40px;*/
}
.left_head .fs28 {
    position: relative;
}
.left_head .fs28:before {
    content: '';
    position: absolute;
    left: 0;
    top: -15px;
    width: 70px;
    height: 4px;
    background-color: #6453FF;
}
.slideshow {
    margin-top: -160px;
}
.slideshow .image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 640px;
}
.team .team_bx {
    cursor: pointer;
    margin-top: 40px;
}
.team .team_bx .timg {
    position: relative;
    height: 350px;
    overflow: hidden;
    border: 1px solid #6453FF;
    border-radius: 8px;
}
.team_bx .timg .image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}
.team_bx .timg .t_front {
    position: absolute;
    top: 100%;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-color: #6453FF;
    opacity: 0;
    top: 100%;
    -webkit-transition: .3s ease all;
    -moz-transition: .3s ease all;
    transition: .3s ease all;
    padding: 20px;
    color: #fff;
    z-index: 2;
}
.team_bx:hover .timg .t_front {
    top: 0;
    opacity: 1;
    -webkit-transform: translate(0,0);
    -moz-transform: translate(0,0);
    transform: translate(0,0);
}
.timg .t_front p {
    font-size: 16px;
}
.team_bx .team_text {
    margin-top: 20px;
}
.team_bx .team_text p {
    font-size: 14px;
    margin-top: 5px;
    color: #000;
}
.join_team {
    width: 60%;
}
.join_team .left_head {
    margin-bottom: 20px;
}
.join_team .resume a {
    font-size: 24px;
    font-weight: 500;
    color: #6453FF;
    transition: .3s ease all;
}
.join_team .resume a:hover {
    color: #4630EB;
}

/*About Page CSS*/

/*Product Page CSS*/
.h_banner .banner_center_content {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: #fff;
    margin-bottom: 280px;
}
.banner_center_content .top_head {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

.product_banner_video {
    margin-top: -240px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.video-container {
    width: 100%;
    margin-bottom: 35px;
    display: flex;
    border-radius: 8px;
    position: relative;
}
.shadowed {
    box-shadow: 0 24px 24px 0 rgba(0,0,0,.05), 0 2px 2px 0 rgba(0,0,0,.05), 0 4px 4px 0 rgba(0,0,0,.05), 0 8px 8px 0 rgba(0,0,0,.05), 0 16px 16px 0 rgba(0,0,0,.05);
    position: absolute;
    top: .25rem;
    bottom: .25rem;
    left: .5rem;
    right: .5rem;
}
.video-container video {
    position: relative;
    background: #fff;
    border-radius: 8px;
    width: 100%;
    height: 100%;
    cursor: pointer;
    box-shadow: 0 0 1px 0 rgba(0,0,0,.22);
}
.product_banner_video .buttons {
    padding: 0 10px;
    display: grid;
    grid-column-gap: 24px;
    grid-template-columns: repeat(4,1fr);
}
.product_banner_video .button .gauge {
    background: #BDBDBD;
    height: 4px;
    width: 100%;
}
.product_banner_video .button .gauge .progress {
    height: 100%;
    transition: width .25s ease-out;
}

.product_banner_video .buttons .button:nth-child(1) .gauge .progress.active {
    animation: fill 41.5s linear 1;
    background: #6453FF;
}
.product_banner_video .buttons .button:nth-child(2) .gauge .progress.active {
    animation: fill 30.5s linear 1;
    background: #6453FF;
}
.product_banner_video .buttons .button:nth-child(3) .gauge .progress.active {
    animation: fill 58s linear 1;
    background: #6453FF;
}
.product_banner_video .buttons .button:nth-child(4) .gauge .progress.active {
    animation: fill 45s linear 1;
    background: #6453FF;
}
@keyframes fill {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.product_banner_video .buttons .button .gauge .progress.active.full {
    background: #6453FF;
    width: 100%;
    animation: fillnew .1s linear 1;
}
@keyframes fillnew {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.product_banner_video .button button {
    padding: 18px;
    width: 100%;
    color: #333333;
    background-color: transparent;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    padding-left: 0;
    padding-right: 0;
    font-size: 14px;
}
.product_banner_video .button button:focus {
    outline: none;
}
.new_lr_sec .lr_image img {
    width: 100%;
}
/*Product Page CSS*/

/*Campaign Page CSS*/
.heading.full {
    width: 100%;
}

.camp_banner {
    overflow: hidden;
    background-color: #6453FF;
    border-radius: 15px;
    margin-top: 60px;
}
.camp_image .bg_img {
    min-height: 400px;
    height: 100%;
}
.camp_text {
    padding: 40px 30px;
}
.camp_text h3 {
    color: #fff;
    margin-bottom: 30px;
}
.camp_text .camp_list li {
    position: relative;
    padding-left: 30px;
    margin-top: 15px;
    font-size: 18px;
    color: #fff;
}
.camp_list li span {
    position: absolute;
    left: 0;
    top: 8px;
}
.camp_list li span img {
    width: 18px;
}
.camp_text .cta_btn {
    margin-top: 30px;
}
.sdv_video {
    width: 90%;
    margin: 0 auto;
}
video:focus {
    outline: none;
}
.sdf_icons .sdfi_b {
    text-align: center;
    width: 85%;
    margin: 40px auto 0 auto;
}
.sdfi_b .sdfi_i {
    margin-bottom: 30px;
}
.sdfi_b .sdfi_i img {
    height: 90px;
}
.sdfi_b .sdfi_t h5 {
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}
.wpmark {
    background-color: #f4f4f4;
    text-align: center;
}
.wpmark h3 {
    line-height: 45px;
}
.bluebox {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.bluebox .bbin {
    text-align: center;
    background-color: #4630eb;
    padding: 40px 20px 60px 20px;
    border-radius: 12px;
    color: #fff;
    margin-top: 60px;
}
.bbdata .bprice {
    font-size: 100px;
}
.bbdata span {
    font-size: 26px;
    font-weight: 500;
}
.platformsec {
    background-color: #f4f4f4;
    padding: 60px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.platformsec .pt_head {
    text-align: center;
}
.platformsec .pt_head h2 {
    margin-bottom: 15px;
}
.platformsec .pt_head span {
    color: #6453ff;
    font-size: 18px;
    text-transform: uppercase;
}
.pt_data .ptd_in {
    margin-top: 50px;
}
.ptd_in .pt_num {
    color: #4630eb;
    font-size: 100px;
}
.pt_det h4 {
    font-weight: 600;
}
.pt_det ul li {
    position: relative;
    padding-left: 30px;
    margin-top: 15px;
    font-size: 18px;
}
.pt_det ul li span {
    position: absolute;
    left: 0;
    top: 8px;
}
/*Campaign Page CSS*/

/*Icon Reveal CSS*/
#reveal1,#reveal2,#reveal3, #reveal4 , #reveal5{
    opacity: 0;
    transition: .2s ease all;
}
#reveal1.visible, #reveal2.visible, #reveal3.visible, #reveal4.visible, #reveal5.visible {
    opacity: 1;
}
.wwdicon {
    position: relative;
}
.wwdicon .overview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
}
.wwdicon .overview img {
    display: none;
}
.wwdicon .overview.visible img {
    display: inline-block;
    text-align: center;
}
.lr_image {
    position: relative;
}
.lr_image .overview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
/*Icon Reveal CSS*/

/*New Updates*/
.home_video {
    margin-bottom: 60px;
}
.home_video .video_box {
    width: 100%;
    height: 400px;
}
.home_video .lr_content {
    width: 90%;
    margin-left: auto;
}
.home_video .lr_head {
    position: relative;
    width: 90%;
    padding-top: 20px;
    margin-bottom: 30px;
}
.home_video .lr_head:before {
    content: '';
    position: absolute;
    top: 0;
    width: 70px;
    height: 4px;
    background-color: #6453FF;
}
.lr_links a {
    color: #6453FF;
    font-size: 18px;
    text-decoration: underline;
}
.accordian .card {
    margin-bottom: 12px;
    border-radius: 5px;
    border: none;
}
.accordian .card .card-header {
    border: none;
    background: transparent;
    padding: 0;
}
.accordian .card .card-header h5 {
    font-size: 18px;
    padding: 13px 20px;
    background: #E0DDFF;
    border-radius: 8px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    transition: .2s ease all;
    border: 1px solid #E0DDFF;
}
.accordian .card .card-header h5.collapsed {
    background: #fff;
    border-radius: 8px;
    border-color: #6453FF;
}
.accordian .card .card-body {
    padding: 0 20px 1px 20px;
    background: #E0DDFF;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}
.accordian .card .card-body p {
    font-size: 18px;
}

/*Experience Page*/
.exp_banner {
    margin-top: 60px;
}
.expbanner_anim {
    text-align: center;
}
.expbanner_anim img {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.exp_anim_sec .yellow_box {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    background-color: #EEFF53;
    border: 1px solid #333;
    padding: 30px;
    text-align: center;
    font-weight: 600;
    font-size: 22px;
}
.exp_anim_sec .eas_section {
    margin-top: 60px;
}
.eas_section .eas_text .blue_text {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    color: #6453FF;
    margin-bottom: 20px;
    font-variant: small-caps;
}
.eas_section .eas_text ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 18px;
    color: #333333;
}
.eas_section .eas_text ul li span {
    position: absolute;
    left: 0;
    top: 8px;
}
.eas_section .eas_image {
    text-align: right;
}
.eas_section .eas_image img {
    width: 80%;
}
.eas_arrow {
    position: relative;
    height: 100px;
}
.arrowone_in {
    position: absolute;
    position: absolute;
    left: 12%;
    top: -60px;
}
.arrowone_in img {
    height: 200px;
}
.guide_sec {
    position: relative;
    margin-top: -80px;
}
.guide_sec .guide_left img {
    max-width: 100%;
}
.guide_sec .guide_right {
    width: 90%;
    margin-left: auto;
    margin-bottom: 70px;
}
.guide_sec .guide_right .blue_text {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    color: #6453FF;
    margin-bottom: 20px;
    font-variant: small-caps;
}
.guide_sec .guide_right h3 {
    font-weight: 200;
    margin-bottom: 20px;
}
.guide_sec .guide_right .para p {
    font-weight: 600;
    font-size: 20px;
}
.guide_sec .guide_right .para p a {
    color: #6453FF;
}
.guide_sec .guide_arrow .arrowone_in {
    position: absolute;
    top: 0%;
    left: 34%;
}
.guide_sec .guide_arrow .arrowone_in img {
    height: 300px;
}
.bottom_yellow_sec {
    position: relative;
    padding-top: 80px;
}
.bottom_yellow_sec .blue_text {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    color: #6453FF;
    margin-bottom: 20px;
    font-variant: small-caps;
    text-align: center;
}
.bottom_yellow_sec .arrowone_in {
    left: 50px;
    top: 40px;
}
.bottom_yellow_sec .arrowone_in img {
    height: 170px;
}
.image-illus_sec {
    margin-top: 40px;
}
.image-illus_sec img {
    width: 100%;
}
.faq_cta {
    background-color: #6453FF;
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: bottom right;
}
.faqc_in {
    width: 50%;
}
.faqc_in h4 {
    color: #fff;
}
.accordion.mapsaccordian {
    margin-top: 40px;
}
.accordion.mapsaccordian .card {
    background: transparent;
    border: none;
    position: relative;
    padding-left: 70px;
    margin-bottom: 15px;
}
.accordion.mapsaccordian .card .numbers {
    position: absolute;
    left: 0;
    top: 10px;
    background-color: #EEFF53;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #000;
    font-size: 18px;
}
.accordion.mapsaccordian .card-header {
    background: transparent;
    padding: 20px 0;
    border: none;
}
.accordion.mapsaccordian .card-header div {
    background: transparent;
    border: none;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
}
.accordion.mapsaccordian .card-header div img {
    width: 18px;
    margin-left: 10px;
}
.accordion.mapsaccordian .card-body {
    padding: 15px 0;
}
.accordion.mapsaccordian .card-body p {
    color: #fff;
}
.accordian_btn {
    margin-top: 30px;
}
.slideshow .imagebox {
    display: inline-block;
}
.str3 .str_item {
    font-size:0;
    line-height:0
}
.slideshow img {
    margin: 0 20px;
}
.slideshow .str_wrap img {
    max-width: 800px!important;
}
.foot_margin {
    padding-bottom: 200px;
}
.heading_box {
    text-align: center;
}
.heading_box .yellow_box {
    background-color: #EEFF53;
    padding: 5px 12px;
    color: #333333;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    border: 1px solid #333;
}
.heading_box .yellow_box.purple {
    background-color: #6453FF;
    border: none;
    color: #fff;
}
.team_culture {
    margin: 50px 0;
}
.employequote {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.employequote .eqimage img {
    width: 80px;
}
.employequote .equote {
    margin: 40px 0;
}
.employequote .equote .quote_text {
    font-style: italic;
    font-size: 26px;
    font-weight: 300;
}
.employequote .equote .quoteby {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    margin-top: 15px;
}
.trust_box {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.trust_box .trust_box_in h4 {
    margin-bottom: 15px;
}
.trust_box .trust_box_in {
    padding-top: 30px;
    margin-left: 30px;
    margin-top: 30px;
    border-top: 1px solid #6453FF;
}
.trust_box .trust_box_in:nth-child(1) {
    margin-top: 0;
    padding-top: 0;
    border: none;
}
.trust_box ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 18px;
    color: #333333;
}
.trust_box ul li span {
    position: absolute;
    left: 0;
    top: 8px;
}
.team_culture .row {
    position: relative;
    padding: 20px 0;
}
.team_culture .row:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    background-color: #6453FF;
    width: 1px;
}
.heading_box.left {
    text-align: left;
}
.our_offices {
    margin-top: 10px;
}
.our_offices .office_box {
    background-color: #E0DDFF;
    border-radius: 6px;
    padding: 30px;
    margin-top: 30px;
        -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    -webkit-transition: transform 0.5s;
    transition: transform 0.5s;
}
.our_offices .office_box:hover {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}
.office_box .office_box_in {
    width: 90%;
}
.office_box .office_box_in .offcie_icon img {
    height: 35px;
}
.office_box_in .office_loc {
    margin: 10px 0;
}
.office_text p {
    font-size: 16px;
    margin-bottom: 0;
    min-height: 48px;
}
.office_tagline {
    margin-top: 20px;
    font-size: 22px;
    font-weight: 500;
}
.office_tagline a {
    color: #6453FF;
    transition: .2s ease all;
}
.req_demo .re_left {
    padding: 70px 60px;
}
.req_demo .req_gallery {
    background-color: #F4F4F4;
    padding: 70px 80px;
    height: 100%;
}
.req_heading {
    text-align: center;
}
.req_heading h4 {
    color: #4630EB;
    text-align: center;
    margin-bottom: 10px;
}
.req_heading p {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.req_form {
    margin-top: 30px;
}
.ncf_form form .form-group {
    width: 100%;
    margin-bottom: 20px;
}
.req_form form .form-group {
    text-align: center;
}
.ncf_form form .form-group input[type=text], 
.ncf_form form .form-group input[type=mail], 
.ncf_form form .form-group input[type=number], 
.ncf_form form .form-group textarea {
    border: 1px solid #E1E1E1;
    padding: 15px 15px;
    border-radius: 4px;
    width: 100%;
    transition: .2s ease all;
}
.ncf_form form .form-group input:focus {
    border-color: #4630EB;
}
.ncf_form form .form-group input[type=submit]{
    border: none;
    background-color: #6453FF;
}
.ncf_form form .form-group input[type=submit]:hover{
    color: #fff;
    background-color: #04234f;
}
.req_gallery .regalimg {
    margin: 20px;
    -webkit-box-shadow: 0px 13px 15px -9px rgba(70,48,235,0.34);
-moz-box-shadow: 0px 13px 15px -9px rgba(70,48,235,0.34);
box-shadow: 0px 13px 15px -9px rgba(70,48,235,0.34);
}
.req_gallery .owl-dots .owl-dot.active span {
    background-color: #4630EB;   
}
.gallery_text {
    margin-top: 30px;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
}
.contact_top {
    display: flex;
    flex-direction: row;
    border-radius: 6px;
    overflow: hidden;
}
.contact_top .ctop_left {
    background-color: #6453FF;
    background-repeat: no-repeat;
    background-size: 70%;
    background-position: bottom left;
    padding: 50px 40px;
    width: 40%;
    color: #fff;
}
.contact_top .ctop_left h2 {
    font-weight: 400;
    margin-bottom: 10px;
}
.contact_top .ctop_right {
    width: 60%;
    padding: 50px 60px 30px 60px;
    background-color: #F4F4F4;
}
.ncf_form form {
    margin-bottom: 0;
}
.contact_bottom {
    margin-top: 60px;
}
.contact_bottomin .heading {
    margin-bottom: 30px;
}
.contact_bottomin .heading h2 {
    font-weight: 400
}
.cbi_content .contact_faqbox {
    margin-top: 40px;
}
.contact_faqbox .cfb_head {
    margin-bottom: 20px;
}
.contact_faqbox .cfb_head h4 {
    color: #4630EB;
    font-weight: 400;
}
.cfb_content .link a {
    color: #333333;
    transition: .2s ease all;
}
.cfb_content .link a:hover {
    color: #4630EB;
}
.cbi_content .cbi_visit {
    text-align: center;
    margin-top: 60px;
}
.terms h4 {
    margin-bottom: 20px;
    margin-top: 30px;
}
.terms li {
    margin-bottom: 10px;
    font-size: 18px;
}

/*New Updates*/




/*Media Queries*/

@media(min-width:2000px){
    .container-fluid {
        max-width: 2000px;
    }
}
@media(min-width:1500px){
    .container-fluid {
        padding: 0 180px;
    }
}
@media(min-width:768px){
    
}

@media (max-width: 1500px) {
    .points_sec {
        width: 100%;
    }
    .points_sec .points_in {
        width: 90%;
    }
    .ss_content .read_more {
        margin-top: 40px;
    }
    .wwd_sec {
        width: 100%;
    }
    .h_banner {
        background-position: 85% 70px;
    }
    .lr_sec {
        margin-top: 120px;
    }
    .stories_slider {
        width: 80%;
    }
    .team .team_bx .timg {
        height: 330px;
    }
    
    .wpmark h3 {
        font-size: 28px;
        line-height: 42px;
    }
    .bbdata .bprice {
        font-size: 80px;
    }
    .h_banner {
        padding: 50px 0;
    }
    .comp_list {
        width: 75%;
    }
    .comp_icons img {
        max-width: 120px;
    }
    .about_content p {
        font-size: 22px;
    }
    .slideshow .str_wrap img {
        max-width: 700px!important;
    }
}

@media (max-width: 1400px) {
    h2 {
        font-size: 30px;
    }
    h5 {
        font-size: 20px;
    }
    .ss_content {
        padding-left: 40px;
    }
    .cta_box .cta_heading {
        font-size: 36px;
    }
    .footer_logo img {
        width: 160px;
    }
    .stories_slider {
        width: 100%;
    }
    .numbers .colm_numb {
        font-size: 65px;
    }
    .cusin_right .numbers {
        margin: 40px 0;
    }
    .cusin_right .image_sec {
        margin: 40px 0;
    }
    .slideshow .image {
        height: 600px;
    }
    
    .sdfi_b .sdfi_i img {
        height: 70px;
    }
    .sdf_icons .sdfi_b {
        width: 90%;
    }
}

@media (max-width: 1300px) {
    .container-fluid {
        padding: 0 40px;
    }
    .heading_box_first, .heading_box_second {
        padding: 25px;
    }
    .heading_box_first {
        top: -50px;
    }
    .heading_box_second {
        bottom: -50px;
    }
    h2 {
        font-size: 28px;
    }
    .points_in p {
        width: 85%;
    }
    .wwd_sec {
        width: 100%;
    }
    .h_banner {
        background-position: 90% 70px;
    }
    
    .wpmark h3 {
        font-size: 26px;
    }
    .bbdata .bprice {
        font-size: 70px;
    }
    .bbdata span {
        font-size: 22px;
    }
    .pt_data .ptd_in {
        margin-top: 30px;
    }
    .stories_slider {
        width: 100%;
        padding: 0 140px;
    }
}

@media (max-width: 1200px) {
    h1 {
        font-size: 36px;
    }
    .banner_content p {
        font-size: 22px;
    }
    .h_banner {
        background-size: 480px;
        background-position: 90% 60px;
    }
    .custom_button {
        font-size: 16px;
    }
    .alink {
        font-size: 16px;
    }
    .lr_sec .lr_content {
        width: 90%;
    } 
    .com_head {
        font-size: 24px;
        margin: 20px 0;
    }
    .com_icon img {
        max-width: 80px;
    }
    .cta_box .cta_heading {
        font-size: 32px;
    }
    .cta {
        background-size: 400px;
    }
    .lr_sec {
        margin-top: 150px;
    }
    .banner_content h1 {
        width: 90%;
    }
    .ban_form input[type=text], .ban_form input[type=email], .cta_btn input[type=email] {
        padding: 13px 30% 13px 10px;
    }
    .heading {
        width: 80%;
    }
    .cusin_right .comment h2 {
        font-size: 34px;
    }
    .about_content {
        width: 70%;
    }
    .about_content p {
        font-size: 20px;
    }
    .slideshow .image {
        height: 500px;
    }
    .timg .t_front p {
        font-size: 14px;
    }
    .numbers .colm_text {
        padding: 0 20px;
    }
    .sdf_icons .sdfi_b {
        width: 95%;
    }
    .sdfi_b .sdfi_i img {
        height: 60px;
    }
    .sdfi_b .sdfi_i {
        margin-bottom: 20px;
    }
    .wpmark {
        padding: 70px 0;
    }
    .wpmark h3 {
        font-size: 22px;
        line-height: inherit;
    }
    .bluebox {
        width: 100%;
    }
    .ptd_in .pt_num {
        font-size: 80px;
    }
    .pt_det ul li {
        font-size: 16px;
        margin-top: 10px;
    }
    .platformsec {
        width: 100%;
    }
    .product_banner_video {
        width: 95%;
    }
    .home_video .video_box {
        height: 300px;
    }
    .eas_arrow .arrowone_in {
        left: 5%;
    }
    .guide_sec .guide_arrow .arrowone_in {
        top: -20px;
    }
    .guide_sec .guide_arrow .arrowone_in img {
        height: 210px;
    }
    .guide_sec .guide_right .para p {
        font-size: 18px;
    }
    .faqc_in {
        width: 60%;
    }
    .employequote .eqimage img {
        width: 60px;
    }
    .employequote .equote .quote_text {
        font-size: 22px;
    }
    .req_demo .re_left {
        padding: 50px 30px;
    }
    .req_demo .req_gallery {
        padding: 50px;
    }
}

@media (max-width: 991px) {
    .container-fluid {
        padding: 0 20px;
    }
    .navbar-nav li a {
        padding: 8px 0;
    }
    .navbar-brand img {
        width: 120px;
    }
    .comp_icons img {
        max-width: 120px;
    }
    .lr_text ul li {
        font-size: 16px;
    }
    .heading_box_first h2, .heading_box_second h2 {
        font-size: 22px;
    }
    .mar {
        margin: 30px 0;
    }
    h3 {
        font-size: 20px;
    }
    .custom_button.line_btn {
        font-size: 14px;
    }
    .cta_box .cta_heading {
        width: 60%;
    }
    .h_banner {
        background-image: none;
    }
    .ban_image {
        display: block;
        text-align: center;
        margin: 50px 0 0 0;
    }
    .ban_image img {
        width: 100%;
        max-width: 400px;
    }
    .wwd_sub {
        width: 100%;
    }
    .navbar-expand-lg .navbar-nav .nav-item {
        padding: 10px;
    }
    .lr_sec {
        margin-top: 120px;
    }
    .footer_logo img {
        width: 140px;
    }
    .foot_right .policy {
        margin-top: 30px;
    }
    ul.social li a img {
        width: 26px;
    }
    .foot_right .ques {
        margin-top: 20px;
    }
    h6 {
        font-size: 18px;
    }
    .banner_content h1 {
        width: 100%;
    }
    .ban_form input[type=text], .ban_form input[type=email], .cta_btn input[type=email] {
        padding: 14px 170px 14px 10px;
        font-size: 16px;
    }
    .tbox_image .image {
        height: 100%;
    }
    .tbox_content {
        padding: 30px 25px;
    }
    .tbox_up h4 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .bleft_box {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        position: relative;
    }
    .bleft_box .image {
        width: 50%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
    }
    .bleft_box .contents {
        width: 50%;
    }
    .bright_box {
        margin-top: 40px;
    }
    .image_section {
        margin-top: 60px;
    }
    .cus_logo img {
        max-height: 55px;
    }
    .cusin_right {
        width: 95%;
    }
    .cusin_right .comment h2 {
        font-size: 30px;
    }
    .cusin_right .comment, .cusin_right .image_sec {
        margin: 40px 0;
    }
    .cusin_right .heading, .cusin_right h6, .cusin_right h4.big, .cusin_right .about_project {
        width: 85%;
    } 
    .numbers .colm_numb {
        font-size: 45px;
    }
    .numbers .colm_text {
        font-size: 14px;
    }
    .ban_heading {
        text-align: center;
    }
    .ban_form {
        text-align: center;
    }
    .cus_details {
        margin-top: 30px;
    }
    .about_content {
        width: 100%;
    }
    .slideshow .image {
        height: 400px;
    }
    .team .team_bx {
        margin-top: 30px;
    }
    .join_team {
        width: 100%;
    }
    
    .camp_image .bg_img {
        min-height: 350px;
        height: auto;
    }
    .bluebox .bbin {
        padding: 20px 20px 40px 20px;
    }
    .bbdata .bprice {
        font-size: 50px;
    }
    .bbdata span {
        font-size: 18px;
    }
    .platformsec {
        padding: 50px 40px;
    }
    .pt_data .ptd_in {
        margin-top: 40px;
    }
    .ptd_in .pt_num {
        font-size: 70px;
    }
    .wwd_sub .wwdicon img {
        max-height: 110px;
    }
    .top-bar .tb_text {
        font-size: 16px;
    }
    .head_margin {
        margin-top: 140px;
    }
    .top_margin {
        margin-top: 120px;
    }
    .home_video .video_box {
        height: 290px;
        margin-bottom: 30px;
        width: 95%;
        margin-left: auto;
        margin-right: auto;
    }
    .home_video .lr_content {
        margin-right: auto;
        width: 95%;
    }
    .comp_list {
        width: 100%;
    }
    .comp_icons img {
        max-width: 100px;
    } 
    .pad {
        padding: 60px 0;
    }
    .stories_slider {
        padding: 0 20px;
    }
    .tbox_content .tbox_up {
        width: 90%;
    }
    .tbox_content .tboc_below {
        width: 90%;
    }
    .exp_anim_sec .yellow_box {
        width: 70%;
        font-size: 18px;
    }
    .eas_arrow .arrowone_in {
        top: 20px;
    }
    .eas_arrow .arrowone_in img {
        height: 120px;
    }
    .eas_section .eas_image img {
        width: 100%;
    }
    .eas_section .eas_text ul li {
        font-size: 16px;
    }
    .guide_sec {
        margin-top: 0;
    }
    .guide_sec .guide_arrow .arrowone_in {
        top: -70px;
        left: 28%;
    }
    .guide_sec .guide_arrow .arrowone_in img {
        height: 160px;
    }
    .guide_sec .guide_right .para p {
        font-size: 16px;
    }
    .guide_sec .guide_right {
        width: 95%;
        margin-bottom: 40px;
    }
    .bottom_yellow_sec .arrowone_in img {
        height: 120px;
    }
    .bottom_yellow_sec .arrowone_in {
        left: 10px;
        top: 0;
    }
    .faqc_in {
        width: 70%;
    }
    .accordion.mapsaccordian .card .numbers {
        width: 40px;
        height: 40px;
    }
    .accordion.mapsaccordian .card {
        padding-left: 60px;
    }
    .accordion.mapsaccordian .card-header {
        padding: 15px 0;
    }
    .accordion.mapsaccordian .card-header div {
        font-size: 18px;
    }
    .accordion.mapsaccordian .card-body {
        padding: 10px 0;
    }
    .header_button a {
        font-size: 12px;
        padding: 10px 16px;
    }
    .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 14px;
    }
    .slideshow .str_wrap img {
        width: 560px!important;
    }
    .trust_box ul li {
        font-size: 16px;
    }
    .trust_box .trust_box_in {
        margin-left: 0;
    }
    .office_tagline {
        font-size: 20px;
    }
    .req_heading p {
        width: 100%;
    }
    .req_demo .req_gallery {
        padding: 50px 30px;
    }
    .contact_top .ctop_right {
        padding: 50px 40px 30px 40px;
    }
    .contact_top .ctop_left {
        padding: 50px 30px;
    }
}

@media(min-width:768px){
    .navbar-expand-lg .navbar-collapse {
        display: -ms-flexbox!important;
        display: flex!important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
    .navbar-expand-lg .navbar-nav {
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .mt-lg-0, .my-lg-0 {
        margin-top: 0!important;
    }
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem;
    }
}

@media (max-width: 767px) {
    #navbarTogglerDemo02 {
        display: none!important;
    }
    .header_button {
        margin-left: 0;
        position: absolute;
        bottom: 0px;
        left: 0px;
    }
    #nav-icon3 {
        width: 30px;
        height: 20px;
        position: relative;
        margin: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        -o-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
        cursor: pointer;
    }
    #nav-icon3 span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: #fff;
        border-radius: 4px;
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
    }
    #nav-icon3 span:nth-child(1) {
        top: 0px;
    }
    #nav-icon3 span:nth-child(2),#nav-icon3 span:nth-child(3) {
        top: 9px;
    }
    #nav-icon3 span:nth-child(4) {
        top: 17px;
    }
    #nav-icon3.open span:nth-child(1) {
        top: 18px;
        width: 0%;
        left: 50%;
    }
    #nav-icon3.open span:nth-child(2) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    #nav-icon3.open span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    #nav-icon3.open span:nth-child(4) {
        top: 18px;
        width: 0%;
        left: 50%;
    }
    .navbar-toggler-icon {
        width: auto;
        height: auto;
    }
    .navbar-toggler:focus {
        outline: none;
    }
    .navbar-toggler {
        position: absolute;
        right: 10px;
        top: 14px;
        padding: 0;
        z-index: 9999999;
    }
    .navbar-collapse {
        transition: .2s ease all;
    }
    .navbar-toggler {
        display: block;
    }
    .navbar-collapse {
        height: 100vh;
        position: relative;
    }
    .header_button {
        
    }
/*
    .head_margin {
        margin-top: 65px;
    }
*/
    
    #myNav.active {
        height: 100%;
    }
    .navbar {
        padding-left: 0;
        padding-right: 0;
    }
    .navbar-nav .nav-link {
        padding: 10px 20px;
    }
    .navbar-nav .nav-item .nav-link:hover {
        background-color: #5d4ee0;
        color: #83E4C8;
        font-weight: 600;
    }
    #myNav {
        display: block;
    }
    .top-bar {
        padding: 8px 0;
    }
    .top-bar .tb_text {
        font-size: 14px;
    }
    .overlay {
        height: 0;
        width: 100%;
        position: fixed;
        z-index: 9999;
        left: 0;
        top: 60px;
        background-color: #6453FF;
        overflow-x: hidden;
        transition: 0.5s;
    }
    .overlay-content {
        position: relative;
        top: 0;
        width: 100%;
        text-align: left;
        margin-top: 0;
        padding: 20px 0;
    }
    .overlay a {
        transition: 0.3s;
    }
    .header_button {
        width: 100%;
        bottom: 60px;
    }
    .header_button a {
        width: 100%;
        text-align: center;
        border-radius: 0;
    }
    .ban_image img {
        width: 90%;
    }
    .pad {
        padding: 60px 0;
    }
    .pad_top {
        padding-top: 60px;
    }
    .pad_bot {
        padding-bottom: 60px;
    }
    .lr_sec .lr_head {
        width: 100%;
    }
    .lr_image {
        margin-top: 40px;
    }
    .lr_sec.reverse .lr_content {
        margin-left: 0;
    }
    .stories_slider {
        width: 100%;
    }
    .stories_main .left_arrow {
        z-index: 99;
        top: 30%;
        left: 10px;
    }
    .stories_main .right_arrow {
        z-index: 99;
        top: 30%;
        right: 10px;
    }
    .left_arrow img, .right_arrow img {
        width: 40px;
    }
    .ss_content {
        padding-left: 0;
        margin-top: 30px;
        text-align: center;
    }
    .com_icon img {
        margin: 0 auto;
    }
    .customer_det h4 {
        font-size: 18px;
    }
    .ss_content .read_more {
        margin-top: 30px;
    }
    .cta {
        background-image: none;
    }
    .cta_box .cta_heading {
        width: 100%;
    }
    footer .footer_data {
        flex-direction: column;
    }
    .p_policy {
        margin-top: 20px;
    }
    .p_policy p {
        text-align: center;
    }
    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 10px 20px!important;
    }
    .navbar-expand-lg .navbar-nav .nav-item {
        padding: 0;
    }
    .navbar-expand-lg .navbar-nav .nav-link:after {
        display: none;
    }
    .comp_icons img {
        margin: 10px 0;
    }
    .footer_logo {
        margin-bottom: 30px;
    }
    .footer_colm {
        margin: 20px 0;
    }
    .foot_right {
        margin-top: 20px;
    }
    .wwd_sub {
        margin: 40px auto 0 auto;
    }
    .ban_form input[type=text], .ban_form input[type=email], .cta_btn input[type=email] {
        padding: 14px 10px;
    }
    .ban_form .custom_button {
        position: relative;
    }
    .heading p.capital {
        font-size: 14px;
    }
    h2 {
        font-size: 32px;
    }
    .heading {
        width: 90%;
    }
    .tbox_image .image {
        height: 180px;
    }
    .tbox_content {
        padding: 20px 30px;
    } 
    .image_section .top_box {
        width: 100%;
        margin: 0 auto;
    }
    .bottom_box>.row {
        margin-left: -15px;
        margin-right: -15px;
    }
    .bleft_box {
        flex-direction: column;
    }
    .bleft_box .image {
        position: relative;
        height: 200px;
        width: 100%;
    }
    .bleft_box .contents {
        width: 100%;
    }
    .bright_box .image {
        height: 200px;
    }
    .cusin_left {
        text-align: center;
    }
    .cus_details ul li:before {
        right: 0;
        margin: 0 auto;
    }
    .cusin_right {
        width: 100%;
        margin-top: 40px;
    }
    .cusin_right h6 {
        margin-top: 20px;
        text-align: center;
    }
    .wwd_sub .wwdicon img {
        max-width: 80%;
    }
    .cusin_right .heading, .cusin_right h6, .cusin_right h4.big, .cusin_right .about_project {
        width: 100%;
    }
    .cusin_right .numbers {
        flex-direction: column;
        align-items: center;
    }
    .cusin_right .numbers .colm {
        border-right: none;
        border-bottom: 1px solid #E0E0E0;
    }
    .cusin_right .numbers .colm:last-child {
        border-bottom: none;
    }
    .cusin_right .about_project {
        padding: 30px;
    }
    .team .team_bx .timg {
        height: 420px;
    }
    .timg .t_front p {
        font-size: 18px;
    }
    .team_bx .team_text h6 {
        font-size: 20px;
    }
    .product_banner_video .buttons {
        display: block;
    }
    .bright_box .contents {
        height: auto;
    }
    .lr_image img {
        width: 100%;
    }
    
    .camp_image .bg_img {
        min-height: 260px;
    }
    .bluebox .bbin {
        margin-top: 40px;
    }
    .ptd_in .pt_num {
        font-size: 60px;
    }
    .top_margin {
        margin-top: 150px;
    }
    .home_video .video_box {
        width: 100%;
    }
    .home_video .lr_content {
        width: 100%;
    }
    .head_margin {
        margin-top: 120px;
    }
    .banner_content p {
        font-size: 18px;
    } 
    .exp_anim_sec .yellow_box {
        width: 90%;
    }
    .arrowone_in {
        display: none;
    }
    .bottom_yellow_sec {
        padding-top: 30px;
    }
    .guide_sec {
        margin-top: 40px;
    }
    .guide_sec .row {
        flex-direction: column-reverse;
    }
    .guide_left {
        text-align: center;
    }
    .faqc_in {
        width: 100%;
    }
    .team_culture .row:before {
        display: none;
    }
    .trust_box {
        margin-top: 40px;
    }
    .team .employequote {
        margin: 20px auto;
    }
    .office_tagline {
        font-size: 18px;
    }
    .contact_top {
        flex-direction: column;
    }
    .contact_top .ctop_left {
        width: 100%;
        background-size: 0;
    }
    .contact_top .ctop_right {
        width: 100%;
    }
}

@media(max-width:400px){
    
}