@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}
body{
    font-family: "Montserrat", sans-serif;
    /* font-family: 'Poppins'; */
    background-color: #fffaf7;
}
a{
    text-decoration: none;
}
p{
    font-weight: 500;
    color:#8f9497;
}
/* header */
.nav-item.active .nav-link{
    color:#ff6a32;
    font-weight: bolder !important;
}
.nav-link{
    color:#000
}
.get-started{
    background-color: #ff6a32;
    color:#ffffff;
    padding: 10px 30px;
    border-radius: 10px;
    font-weight: bold;
}
.logo{
    width:10rem;
}
.navbar-toggler{
    border:none !important;
    color: #ff6a32 !important;
}
/* hero-section */
.orange-span{
    color:#ff6a32;
}
.hero-box{
    background-color: #8f9497;
    background: url('../images/hero-box-img.jpg');
    background-repeat: no-repeat;
    border-radius: 10px;
    background-size: contain;
    border: none;
    height:150px;
    background-position: center;
}
.main-heading{
    font-size: 50px;
    font-weight: bolder;
}
.counter-section{
    gap:30px;
}
.counter-section h3{
    font-size: 20px;
    font-weight: bolder;
}
.left-counter img,.right-counter img{
   width:2.5rem;
   padding:5px;
   background: #ffff;
   border-radius: 5px;
   box-shadow: 3px 3px 10px #bcbcbc;
}
.left-counter,.right-counter{
   display:flex;
   align-items: center;
   gap:20px;
}

.left-counter p,.right-counter p{
    font-size: 14px;
    line-height: 1rem;
}
.right{
    position: relative;
}
.right-text-container{
    background-color: #ffffff;
    padding:20px;
    border-radius: 20px;
    position:relative;
    top:-45%; 
    left:0;
    width:50%;
    box-shadow: -1px 1px 15px #e5e5e5;
}
.right-text-container p{
    font-size: 14px;
    text-align: justify;
}
.right-text-container h6{
    font-weight: 700;
    font-size: 18px;
}
.right-text-container h2{
    font-weight: bold;
}
.video-box{
   
    background: url('../images/hero_main.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 20px;
    width:100%;
    height:100%;
}
@media (max-width: 991px) {
    .video-box {
      min-height: 200px;
    }
  }
  
.hero-box-content p{
    font-size: 14px;
    text-align: justify
}
.category{
    background-color:#ffffff;
    padding:30px;
    border-radius: 20px;
    box-shadow: -1px 1px 15px #e5e5e5;
    position: relative;
    -webkit-mask-image: linear-gradient(white, white), 
    radial-gradient(circle 20px at top left, transparent 98%, white);
-webkit-mask-composite: destination-in;
mask-composite: intersect;
    clip-path: polygon(0% 10%, 40% 10%, 60% 0%, 100% 0%, 100% 100%, 0% 100%);
    transition: background-color 0.3s ease-in-out;
}
.feature{
    padding:30px;
    border-radius: 20px;
    box-shadow: -1px 1px 15px #e5e5e5;
    background-color: #ffffff;
}
.faq-box{
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: -1px 1px 15px #e5e5e5;
}
.category:hover,.feature:hover{
    background-color: #ff6a32;
    color:#ffffff;
}
.fearure:hover .feature img{
    background-color: #faa282;
}
.category:hover p,.feature:hover p{
    color:#ffffff
}
.category img{
    width:2rem;
    display:block;
}
.category-right h3{
    line-height: 2.3rem;
}
.innovation-section{
    position: relative;
}
.innovation-box{
    height:240px;
    background-color: #8f9497;
    border-radius: 20px;
}
.innovation-text{
    background-color: #ffffff;
    border-radius: 20px;
    padding:30px;
    display: flex;
    flex-direction: column;
    gap:10px;
    border:none;
    position:absolute;
    right:5%;
    width:30%;

}
.read-more{
    background-color: #000;
    color:#ffffff;
    padding:10px 30px;
    font-weight: bold;
    display: inline-block;
    border-radius: 50px;
}
.strategy-heading{
    font-size: 60px;
}
.solution{
    background-color: #ffffff;
    padding:20px;
    border-radius: 15px;
    box-shadow: -1px 1px 15px #e5e5e5;
}
.solution .heading{
    display:flex;
    justify-content: space-between;
    align-items: center;
}
/* .innovation-text p{
    font-size: 12px;
} */
.feature img{
   width:2.5rem;
   padding:5px;
   background-color: #ffeae7;
   border-radius: 5px;
   box-shadow: 2px 2px 5px grey ;
}
.question img{
    width:2rem;
}
.tailor-made-section .right{
    border: none;
    /* width:100%; */
    height:100%;
    background-color: #8f9497;
    border-radius: 20px;
}
.faq-left{
    background-color: #ffffff;
    padding:30px;
    border-radius: 20px;
    box-shadow: -1px 1px 15px #e5e5e5;
}
.faq-left img{
    width:2.5rem;
    padding:5px;
    background-color: #ffeae7;
    border-radius: 5px;
    box-shadow: 2px 2px 5px grey ;
}
.faq-box .accordion:last-of-type .question{
    border-bottom: none;
}
.question{
    padding:20px;
    border-bottom: solid 0.5px #e5e4e4;
    cursor: pointer;
    width: 100%;
}
.footer{
    background-color:#ffffff;
}
.footer-categories{
    display:grid;
    grid-template-columns: auto auto auto auto auto;
    border-bottom: solid 1px #000;
}
@media screen and (max-width:767px){
    .footer-categories{
        display:grid;
        grid-template-columns: auto auto auto;
        border-bottom: solid 1px #000;
        row-gap: 20px;
        column-gap: 15px;
    }
    .right-text-container{
        padding:16px !important;
    }
}
.rights{
    display:flex;
    align-items: center;
    justify-content: space-evenly;
    font-size: 12px;
}
.footer-category{
    display:flex;
    flex-direction: column;
    gap:10px;
    font-size: 12px;
}
.footer a,.copyright-section a{
    color:#000;
}
.copy-right{
    font-size: 14px;
}
.social-media img{
    width:2.3rem;
}
.answer{
    opacity: 0;
    max-height: 0;
    transition: all 0.3s ease;
 
}
.answer.active{
    opacity:1;
    padding-top:5px;
}



@media screen and (max-width:991px){
    .video-box{
        width:100%;
        height:100%;
        margin-top: 30px;
    }
    .right-text-container{
        top:0%;
        width:100%;
        margin-top: 20px;
        
    }
 
    .strategy-heading{
        font-size: 40px !important;
    }
    
}
.business-today{
    margin-top: 75px;
}