
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
:root{
    --theme-color1:#fe9701;
    --theme-color2:#7f5130;
}
body {
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}
img{
    width: 100%;
    display: block;
}
.btn{
    display: inline-block;    
    min-width: 120px;    
    line-height: 50px;
    text-align: center;
    padding: 0 20px;
}
.btn-primary{
    background-color: #f16c00;
    font-weight: 700;
    color: #fff;
}
.btn-secondary{
    border: 3px solid #fff;
    color: #fff;
    width: 100%;
}
h2{
    font-size: 46px;
}
h3{
    font-size: 40px;
}
h4{
    font-size: 24px;
    color: #222;
}
h6{
    font-size: 1.375rem;
    letter-spacing: 0.5px;
    font-weight: 600;
    color: #333;
    text-align: center;
}
p{
    line-height: 1.5;
    /* color: #2b2b2b; */
    font-size: 1rem;
}
.mb-20{
        margin-bottom: 20px;
    }
.section{
    padding: 60px 0;
}
.title{
    margin-bottom: 30px;
    h2{
        position: relative;
        z-index: 9;
        text-align: center;
        /* margin-bottom: 30px; */
        span{
            color: var(--theme-color1);
        }
    }
     .underline {
        width: 80px;
        height: 3px;
        background: var(--theme-color1);
        margin: 12px auto 0;
    }
}
.pd-80{
    padding: 80px 0 !important;
}
.bg-1{
    background-color: #00b5dd;
}
.bg-2{
    background-color: #f94666;
}
.bg-3{
    background-color: #f99d24;
}
.bg-light{
    background-color: #f4f4f4;
}
.bg-fade{
    background-color: #f9f9f9;
}
.mt-30{
    margin-top: 30px;
}
.text-center{
    text-align: center;
}
.p-0{
    padding: 0px !important;
}
.title-2{
    margin-bottom: 30px;
    position: relative;
    z-index: 9;
    h2{
        color: #333;
        font-weight: 500;
        text-align: center;
        span{
            color: var(--theme-color1);
        }
    }
    p{
        text-align: center;
        color: #999;
    }
}
.form-group{
    margin-bottom: 20px;
}