:root{
    --h4-color:#076350;
    --theme-color:#2a2f8a;
    --icon-color:#00d664;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}
body {
    font-size: 1rem;
    overflow-x: hidden;
    font-family: 'Barlow', sans-serif;
  }  
.container{
    max-width: 1200px;
    margin: 0 auto;
}
.row{
    display: flex;
    flex-wrap: wrap;
}
.flex{
    display: flex;
}
.justify-between{
    justify-content: space-between;
}
.justify-around{
    justify-content: space-around;
}
.justify-center{
    justify-content: center;
}
.align-items-center{
    align-items: center;
}
.all-center{
    display: flex;
    justify-content: center;
    align-items: center;
}
img{
    width: 100%;
}
.text-center{
    text-align: center;
}
p {
    color: #616161;
    line-height: 26px;
    font-size: 1rem;
    font-weight: 400;
    text-align: justify;
}
h1{
    font-size: 44px;
}
h2{
    font-size: 40px;
}
h4{
    font-size: 25px;
}
h6{
    font-size: 20px;
}
.mb-10{
    margin-bottom: 10px;
}
.mb-20{
    margin-bottom: 20px;
}
.section{
    padding: 60px 0;
}
.btn{
    display: inline-block;
    outline: none;
    border: none;
    cursor: pointer;
    min-width: 100px;
    text-align: center;
    font-size: 1rem;
    border-radius: 4px;
    font-weight: 600;
    line-height: 40px;
    padding: 0 12px;
}
.btn-primary{
    color:#fff;
    /* background-color:var(--theme-color) ; */
    background-color: #f9c21ac9;
}
a{
    transition: all 0.3s ease-out 0s;
    cursor: pointer;
    font-style: normal;
    font-weight: 400;
    text-decoration: none;
    text-transform: capitalize;
    font-family: 'Barlow', sans-serif;
}
 i {
    font-style: normal;
    font-weight: 400;
    text-decoration: none;
    text-transform: capitalize;
    font-family: 'Barlow', sans-serif;
}
option {
    font-weight: normal;
    display: block;
    padding-block-start: 0px;
    padding-block-end: 1px;
    min-block-size: 1.2em;
    padding-inline: 2px;
    white-space: nowrap;
}
.my-40{
    margin: 60px 0;
}
/*-------------------heading----------------------------*/
 .heading{
        text-align: center;
        h4{
            font-size: 16px;
            color: var(--theme-color);
            span{
                position: relative;
                &::before {
                    position: absolute;
                    content: "";
                    left: -34px;
                    width: 30px;
                    height: 2px;
                    background-color: #999999;
                    bottom: 8px;
                }
                &::after {
                    position: absolute;
                    content: "";
                    right: -34px;
                    width: 30px;
                    height: 2px;
                    background-color: #999999;
                    bottom: 8px;
                }
            }
        }
    }
/*-----------------------heading end here--------------------*/
.mt-10{
    margin-top: 10px;
}
.mt-20{
    margin-top: 20px;
}
.mt-30{
    margin-top: 30px;
}
.mt-40{
    margin-top: 40px;
}
.pb-10{
    padding-bottom: 10px;
}
.pb-20{
    padding-bottom: 20px;
}
.mb-30{
    margin-bottom: 30px;
}
.mb-20{
    margin-bottom: 20px;
}
.margin-top{
    margin-top: 38px;
}
.margin-left{
    margin-left: 34px;
}
@media(max-width:1024px){
    h1{
        font-size: 38px;
    }
    h4{
        font-size: 22px;
    }
    h2{
        font-size: 30px;
    }
}
@media(max-width:768px){
    h1{
        font-size: 34px;
    }
    h4{
        font-size: 20px;
    }
    h2{
        font-size: 26px;
    }
}
@media(max-width:576px){
    .section{
        padding: 20px 0;
    }
    h1{
        font-size: 24px;
    }
    h4{
        font-size: 15px;
    }
    h2{
        font-size: 20px;
    }
    h6{
        font-size: 16px;
    }
    p{
        font-size: 14px;
    }
}