:root{
    --primary_color: #FF4949;
    --secondary_color: #992C2C;
    --body_color: #161616; 
    --heading_color: #000;

    --body_font: "Space Grotesk", sans-serif;
}

a,button{
    text-decoration: none;
    transition: 0.3s;
}

html,section{
    overflow-x: hidden;
}
body{
    font-family: var(--body_font);
    color: var(--body_color);
    line-height: 1.7;
}
h1,h2,h3,h4,h5,h6{
    color: var(--heading_color);
}
.navbar-toggler{
    box-shadow: none !important;
}
.top_header .offcanvas-backdrop.show {
    opacity: 1;
    backdrop-filter: blur(8px);
    background-color: #00000026;
}

.btn_primary a,
.btn_primary button,
.btn_primary input[type="submit"]{
    background: var(--primary_color);
    color: #fff;
    display: inline-block;
    text-align: center;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid var(--primary_color);
} 

.btn_primary_outline a{
    background: #fff;
    color: var(--primary_color);
    display: inline-block;
    text-align: center;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid var(--primary_color);
}
.btn_primary a:hover,
.btn_primary button:hover,
.btn_primary input[type="submit"]:hover,
.btn_primary_outline a:hover{
    border-color: var(--secondary_color);
    background-color: var(--secondary_color);
    color: #fff;
}

.pt_80{
    padding-top: 80px;
}
.pb_80{
    padding-bottom: 80px;
}

.section_title h2{
    font-size: 56px;
    font-weight: 700;
}
.section_title p{
    font-size: 20px;
}
.section_title h2 span{
    color: var(--primary_color);
}
.text_primary{
     color: var(--primary_color);
}


.top_header{
    border-bottom: 1px solid #000;
    position: sticky;
    top: 0;
    z-index: 9999;
    background-color: #fff;
}
.top_header .top_logo img{
    width: 200px;
}
.top_header .nav-link{
    font-size: 16px;
    font-weight: 600;
    color: var(--heading_color);
}
.top_header .nav-item{
    margin-right: 20px;
}

.hero_section{
    min-height: 60vh;
}

.hero_section h1{
    /* font-size: 66px; */
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 15px;
}
.hero_section h1 span{
    color: var(--primary_color);
}
.hero_section h3{
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 17px;
}
.hero_section p{
    font-size: 16px;
    margin-bottom: 25px;
}

.hero_section{
    background-image: url(../images/pattern1.webp);
    background-size: cover;
    position: relative;
}
.hero_section:before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #fff;
    opacity: 0.8;
    z-index: 0;
}
.hero_section .container{
    position: relative;
    z-index: 9;
}




.tickerwrapper{
    background: var(--primary_color);
    padding: 10px 0;
    text-align: center;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    /* height: 130px; */
    height: 115px;
}
.tickerwrapper span{
    /* font-size: 70px; */
    font-size: 56px;
    color: #fff;
    font-weight: 700;
}
.tickerwrapper .listitem img{
    display: inline-block;
    margin: 0 40px;
    vertical-align: middle;
}
.tickerwrapper ul.list {
    /* position: relative; */
    display: inline-flex;
    list-style: none;
    padding:0;
    margin:0;
    /* padding-left: 100%; */
    /* animation: scroll-right-to-left 10s linear infinite; */

    transition: transform 0.1s linear;
    will-change: transform;
}
.tickerwrapper .listitem{
    display: inline-flex;
    white-space: nowrap;
}
@keyframes scroll-right-to-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


.check_grid_item{
    border-radius: 30px;
    border: 1px solid #000;
    padding: 45px 50px;
    text-align: center;
    height: 100%;
}
.check_grid_item i{
    color: var(--primary_color);
    font-size: 34px;
}
.check_grid_item h4{
    font-size: 20px;
        margin: 0;
    line-height: 1.5;
}

.about_box{
    background-image: url(../images/pattern2.webp);
    background-size: cover;
    border-radius: 30px;
    border: 1px solid #000;
    position: relative;
    overflow: hidden;
}
.about_box_overlay{
    background-color: rgb(255 0 0 / 3%);
    padding: 50px 60px;
}

.modes_box{
    padding: 40px 35px;
    border: 1px solid #000;
    border-radius: 30px;
    height: 100%;
}
.modes_box img{
    margin-bottom: 20px;
}
.modes_box h4{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}
.modes_box p{
    margin-bottom: 0;
}

.outcomes_box{
    background-image: url(../images/pattern3.webp);
    background-size: cover;
    overflow: hidden;
    border-radius: 30px;
}
.outcomes_content{
    background-color: rgb(0 0 0 / 40%);
    padding: 70px 50px;
    color: #fff;
}
.outcomes_content ul{
    padding: 0;
    margin: 10px 0 30px;
    display: inline-flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}
.outcomes_content ul li{
    list-style-type: none;
    background-color: #fff;
    border-radius: 30px;
    color: var(--heading_color);
    padding: 2px 10px 2px 35px;
    display: inline-block;
    position: relative;
    font-size: 18px;
}
.outcomes_content ul li:before{
    content: "\f058";
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    color: var(--primary_color);
    position: absolute;
    left: 7px;
    top: 1px;
    font-size: 20px;
}

.review_item{
    border-radius: 30px;
    border: 1px solid #000;
    padding: 35px;
    height: 100%;
}
.review_item .rating_stars i{
    color: #FF4949;
    font-size: 20px;
}
.review_item .review_by{
    font-weight: 700;
    font-size: 18px;
}

.industries_section{
    background-image: url(../images/pattern4.webp);
    background-size: cover;
    color: #fff;
}

.video_2{
    border-radius: 30px;
}

.pricing_section{
    background-image: url(../images/pattern5.webp);
    background-size: cover;
}

.redbox_section{
    background-image: url(../images/pattern6.webp);
    background-size: cover;
    border-radius: 30px;
    padding-left: 50px;
    padding-right: 50px;
}
.whitebox_item{
    text-align: center;
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
}
.whitebox_item img{
    margin-bottom: 20px
}
.whitebox_item h5{
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
}

.copyright_area .footer_terms, .footer_social{
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style-type: none;
    justify-content: center;
    width: 100%;
}
.copyright_area .footer_terms a{
    color: var(--body_color);
    display: inline-block;
    padding: 0 15px;
}
.copyright_area .footer_terms li:not(:last-child):after{
    content: "";
    display: inline-block;
    width: 1px;
    height: 15px;
    vertical-align: middle;
    background-color: var(--body_color);
}
.footer_social{
    justify-content: flex-end;
}
.footer_social a{
    color: var(--heading_color);
    display: inline-block;
    margin-left: 20px;
}

.footer_form_area input.form-control{
    border: 1px solid var(--body_color);
    height: 50px;
    border-radius: 30px;
    padding: 10px 15px 10px 30px;
    box-shadow: none;
}
.footer_form_area textarea.form-control{
    border: 1px solid var(--body_color);
    max-height: 130px;
    height: 130px;
    border-radius: 30px;
    padding: 10px 15px 10px 30px;
    box-shadow: none;
}

.footer_content hr{
    width: 65px;
    margin: 30px 0 30px;
    opacity: 1;
    background-color: #000;
}
.footer_txt{
    font-size: 20px;
    margin-bottom: 20px;
}
.ftr_contact_info h5{
    font-size: 16px;
    color: var(--primary_color);
}
.ftr_contact_info a{
    color: var(--heading_color);
}
.ftr_contact_info img{
    width: 38px;
}


.pricing_tabs{
    padding: 6px 7px;
    border: 1px solid #000;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
}
.pricing_tabs input{
    position: absolute;
    display: none;
}
.pricing_tabs label{
    font-size: 18px;
    font-weight: 700;
    padding: 5px 20px;
    cursor: pointer;
    border-radius: 50px;
}
.pricing_tabs input:checked+label{
    background-color: var(--primary_color);
    color: #fff;
}

.pricing_box{
    padding: 40px;
    border: 1px solid #000;
    border-radius: 20px;
    height: 100%;
}
.pricing_box h4{
    font-size: 28px;
    color: var(--primary_color);
    font-weight: 700;
}
.pricing_box h3{
    font-size: 42px;
    font-weight: 700;
}
.pricing_box h3 span{
    font-size: 16px;
    font-weight: 400;
}
.pricing_box ul{
    list-style-type: none;
    margin: 0;    
}
.pricing_box ul li:before {
    content: "\f560";
    font-family: "Font Awesome 6 Free";
    font-weight: 800;
    margin-left: -31px;
    margin-right: 18px;
    color: var(--primary_color);
}
.pricing_box ul li:not(:last-child){
    margin-bottom: 10px;
}
.pricing_box hr{
    background-color: #000;
    opacity: 1;
}

.industries_section .nav-pills{
    background-color: #fff;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
}
.industries_section .nav-pills .nav-link+.nav-link{
    border-top: 1px solid #0000002a;
}
.industries_section .nav-pills .nav-link{
    font-size: 20px;
    text-align: left;
    border-radius: 0;
    color: rgb(0 0 0 / 42%);
    font-weight: 700;
    padding: 12px 0;
    display: flex;
    align-items: center;
    line-height: 1.3em;
}
.industries_section .nav-pills .nav-link.active{
    background-color: #fff;
    color: var(--heading_color);
}
.industries_section .nav-pills .nav-link img{
    margin-right: 15px;
}

.industries_section .tab-content{
    background-color: #454545;
    border-radius: 20px;
    height: 100%;
    overflow: hidden;
    color: #fff;
}
.industries_section .tab-content div {
    height: 100%;
}
.industries_section .content_area{
    padding: 45px;
}
.industries_section .content_area h3{
    color: #fff;
    font-size: 36px;
    /* margin-bottom: 25px; */
}
.industries_section .content_area h4{
    color: #fff;
    font-size: 23px;
    display: flex;
    align-items: center;
    margin-top: 25px;
    margin-bottom: 15px;
}
.industries_section .content_area h4 svg{
    margin-right: 10px;
}
.industries_section .img_area img{
    object-fit: cover;
}

#video iframe{
    border-radius: 30px;
}


.fog1{
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    /* animation: scale1 3s linear infinite; */
}
.fog2{
    position: absolute;
    top: 40%;
    right: 0%;
    z-index: -1;
    /* animation: scale1 3s linear infinite; */
}
.fog_footer{
    position: absolute;
    bottom: 0;
    right: 35%;
    z-index: -1;
}
@keyframes scale1 {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(2, 2);
  }
  100% {
    transform: scale(1, 1);
  }
}

.bg_logo{
    position: absolute;
    top: 40%;
    right: 5%;
    z-index: -1;
    opacity: 0.1;
    animation: rotate1 23s linear infinite;
}
@keyframes rotate1 {
 0%{
    transform: rotate(0deg);
   }
100%{
    transform: rotate(360deg);
   }
}


.mobile_top_btns{
    background-color: rgb(255 0 0 / 3%);
}

.brands_section img {
    max-height: 50px;
    width: 150px;
    object-fit: contain;
}

.page-loader{
    width: 100%;
    height: 100vh;
    position: fixed;
    background: #fff7f7;
    top: 0;
    bottom: 0;
    right: 0;
    text-align: center;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-loader img{
    animation: rotate1 15s linear infinite;
    width: 120px;
}

@media(max-width: 1399px){
    .hero_section h1 {
        font-size: 56px;
    }
    .top_header .nav-item {
        margin-right: 5px;
    }
}

@media(max-width: 1199px){
    .top_header .nav-link {
        font-size: 14px;
    }
    .top_header .btn_primary a,
    .top_header .btn_primary_outline a{
        padding: 10px 13px;
        font-size: 14px;
    }
    .top_header .nav-item {
        margin-right: 0px;
    }

    .hero_section h1 {
        font-size: 46px;
    }
    .section_title h2 {
        font-size: 46px;
    }
    .tickerwrapper span {
        font-size: 46px;
    }
    .tickerwrapper{
        height: 98px;
    }
    .tickerwrapper .listitem img{
        width: 23px;
        margin: 0 35px;
    }
    .check_grid_item{
        padding: 30px 20px;
    }
    .industries_section .content_area {
        padding: 25px;
    }
    .industries_section .nav-pills{
        padding: 12px 15px;
    }
    .industries_section .nav-pills .nav-link {
        font-size: 18px;
    }
    .industries_section .content_area h3 {
        font-size: 30px;
    }
    .industries_section .nav-pills .nav-link img{
        width: 30px;
    }
    .pricing_box {
        padding: 20px;
    }
    .modes_box {
        padding: 30px 25px;
    }
}


@media(max-width: 991px){
    .top_header .btn_primary a,
    .top_header .btn_primary_outline a{
        padding: 10px 25px;
        font-size: 14px;
    }

    .hero_section .content_area{
        text-align: center;
    }
    .footer_social{
        justify-content: center;
    }
    .footer_content{
        text-align: center;
    }
    .footer_content hr{
        margin-left: auto;
        margin-right: auto;
    }
    .ftr_contact_info{
        text-align: left;
        justify-content: center;
    }
    .footer_form_area .btn_primary{
        text-align: center;
    }
    .top_header .nav-item{
        margin-right: 0;
    }
    .top_header .btn_primary{
        margin-top: 20px;
    }
    .pricing_box {
        text-align: center;
        padding: 30px 20px;
    }
    .modes_box {
        text-align: center;
    }
}

@media(max-width: 767px){
    .section_title h2 {
        font-size: 40px;
    }
    .outcomes_content{
        padding: 60px 28px;
    }
    .review_item{
        padding: 30px 25px;
    }
    .section_title p {
        font-size: 16px;
    }
    .brands_section img {
        max-height: 40px;
        width: 110px;
    }
}

@media(max-width: 575px){
    .pt_80 {
        padding-top: 50px;
    }
    .pb_80 {
        padding-bottom: 50px;
    }
    .hero_section h1 {
        font-size: 36px;
    }
    .hero_section .btn_primary a,
    .hero_section .btn_primary_outline a{
        padding: 8px 20px;
    }
    .tickerwrapper span {
        font-size: 28px;
    }
    .tickerwrapper {
        height: 67px;
    }
    .tickerwrapper .listitem img{
        width: 16px;
        margin: 0 15px;
    }
    .about_box_overlay{
        padding: 50px 30px;
    }
    .redbox_section{
        padding-left: 30px;
        padding-right: 30px;
    }
    .section_title h2 {
        font-size: 36px;
    }
    .section_title p {
        font-size: 16px;
    }
    .footer_txt {
        font-size: 16px;
    }
    .outcomes_content {
        padding: 35px 20px;
    }
    .review_item{
        text-align: center;
    }
    .outcomes_content ul li{
        padding: 40px 10px 12px 15px;
        border-radius: 15px;
        line-height: 1.3;
    }
    .outcomes_content ul li:before{
        font-size: 20px;
        width: 100%;
        right: auto;
        left: 0;
        top: 12px;
    }

     
    .mobile_top_btns .btn_primary a,
    .mobile_top_btns .btn_primary_outline a{
        padding: 6px 20px;
    }
}


/* INDUSTRIES ACCORDIAN - MOBILE*/
.industries_section .accordion{
    --bs-accordion-border-radius: 20px;
    --bs-accordion-inner-border-radius: 20px;
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
}
.industries_section .accordion .accordion-item .accordion-button{
    gap: 20px;
    font-weight: 600;
    box-shadow: none;
    color: var(--heading_color);
}
.industries_section .accordion .accordion-item .accordion-button img{
    width: 30px;
}
.industries_section .accordion .accordion-item .accordion-button:not(.collapsed){
    background-color: #f3f3f3;
    color: var(--heading_color);
}
.industries_section .accordion .accordion-item{
    background-color: #454545;
    border-color: #454545;
    color: #fff;
}
@media(max-width: 767px){
    .industries_section .accordion .accordion-item .img_area img{
        border-radius: 20px;
    }
    .industries_section .accordion .accordion-item .accordion-body{
        padding-bottom: 35px;
    }
}
@media(max-width: 575px){
    .industries_section .accordion .accordion-item .content_area{
        padding: 10px 0;
    }
    .industries_section .content_area h4{
        font-size: 20px;
    }
    .industries_section .content_area h3 {
        font-size: 26px;
    }
}