:root{
    --font:"Poppins";
    --theme : #f4ad3b;
    --lite-theme: #FFFBD7;
    --white:#fff;
   --black:#000;
    

}

body{
    margin: 0;
    padding: 0;
    font-family: var(--font);
}
a{
    text-decoration: none !important;
}
ul, ol {
    margin: 0;
    padding: 0;
    list-style-type: none;
}


 .btn-part a{
     color: var(--white);
    background: var(--theme);
    padding: 10px 15px;
    font-size: 22px;
    font-weight: 500;
    border-radius: 8px;
    border: 2px solid var(--theme);
    transition: all 0.3s ease-in-out;
}
.btn-part a:hover{
  background: var(--black);
  color: var(--theme);
}
.barnd-logo img{
    width: 140px;
}
/*  sections part */
 .section-heading{
    margin-bottom: 24px;
    position: relative;
    width: max-content;
    font-size: 36px;
    text-align: left !important;
}
 .section-heading::after{
    content: " ";
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 50%;
    height: 4px;
    background: var(--theme);
}
.section-sub-head{
    font-weight: 700;
    font-size: 36px;
    line-height: 52px;
    color: var(--black);

}

@media screen and (max-width:991px) {
    .section-sub-head {
        font-size: 32px;
        line-height: 46px;
    }
    
}

@media screen and (max-width:575px) {
    .section-heading{
        font-size: 26px;
    }
    
}