@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap');

*{
    box-sizing : border-box;
    margin: 0;
    padding: 0;
}
body{
    margin:0 !important;
    font-family: 'Roboto', sans-serif;
    color: #232323;
}
a{
    text-decoration: none;
    color: inherit;
}

p:first-letter, h1:first-letter, h2:first-letter, h3:first-letter, h4:first-letter, h5:first-letter,h6:first-letter{
    text-transform: capitalize;
}
h1, h2, h3, h4, h5, h6
{
    margin: 0;
}
.wrapper{
	background-color: #FFEDD9;
}

.container{
	max-width: 680px;
	width: 100%;
	margin: auto;
	display: block;
}
.row{
    display: flex;
}
.col-1
{
    flex: 8.33%;
}
.col-2
{
    flex: 16.66%;
}
.col-3
{
    flex: 25%;
}
.col-4
{
    flex: 33.3%;
}
.col-5
{
    flex: 41.66%;
}
.col-6
{
    flex: 50%;
}
.col-7
{
    flex: 58.33%;
}
.col-8
{
    flex: 66.66%;
}
.col-9
{
    flex: 75%;
}
.col-10
{
    flex: 83.33%;
}
.col-11
{
    flex: 91.66%;
}
.col-12
{
    flex: 100%;
}
.clearfix{
    clear: both;
}

/*==== content css ====*/
.logo {
    padding: 10px 5px;
    width: 100%;
}
.logo .logo-img {
    width: 100%;
    max-width: 70%;
    margin: 0 auto;
    display: block;
    padding: 0 5px;
    border-radius: 10px;
}
.brdr-top{
	border-top: 10px solid #FF8800 !important;
}
.bg-style{
	background-color: #fff;
	border-radius: 10px;
    border: 1px solid #DEDEDF;
}
.pall-20{
	padding: 25px 30px;
}
.heading{
	font-size: 34px;
	line-height: 1.3;
	font-weight: 400;
	margin-bottom: 20px;
}
.dsply-blck{
	display: block;
}
.para-style p {
    font-size: 17px;
    line-height: 1.3;
    margin-bottom: 25px;
    font-weight: 400;
}
.mr-btm{
	margin-bottom: 0 !important;
}
.mb-15{
	margin-bottom: 15px;
}
.field-text {
    display: block;
    margin-bottom: 30px;
    margin-top: 5px;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 400;
}
span.star {
    color: red;
}
.form-control {
    width: 50%;
    padding: 8px;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,.12);
    outline: none;
    font-size: 15px;
    margin-bottom: 10px;
}
textarea.form-control {
    width: 100%;
}
.form-control:focus{
	border-bottom: 1px solid red;
}
.btn-red {
    background-color: rgb(230, 57, 0);
    max-width: 100px;
    width: 100%;
    padding: 12px 5px;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
}
.btn-red:hover{
	box-shadow: 0px 2px 1px -1px rgba(230, 57, 0, 0.2), 0px 1px 1px 0px rgba(230, 57, 0, 0.14), 0px 1px 3px 0px rgba(230, 57, 0, 0.12);
}
.section-content{
	padding-bottom: 20px;
}
.clear-btn {
    width: 100%;
    text-align: right;
    padding-right: 15px;
}
.btn-grey {
    background-color: transparent;
    max-width: 100px;
    width: 100%;
    padding: 12px 5px;
    border: none;
    border-radius: 5px;
    color: red;
    font-size: 16px;
    text-transform: capitalize;
}
.clear-btn:hover .btn-grey {
    background-color: #F8E9DA;
}
.footer-content{
    padding: 10px 10px 20px;
}
.footer-content p{
    font-family: Roboto,Arial,sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .3px;
    line-height: 16px;
    color: #70757a;
    color: rgba(0,0,0,.66);
    margin-bottom: 20px;
}
.txt-cntr{
    text-align: center;
}
.footer-content h3{
    font-size: 22.1px;
    text-align: center;
    font-weight: 400;
    margin-bottom: 10px;
}

/*======== responsive =======*/
@media(max-width: 425px)
{
    .heading {
        font-size: 26px;
    }
    .para-style p {
        font-size: 16px;
    }
    .form-control {
        width: 100%;
    }
    /*.row{
        flex-wrap: wrap;
    }
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
        flex: 100%;
    }*/
    .section-content {
        padding: 20px;
    }
    .footer-content {
        padding: 10px 20px 20px;
    }

}
@media (max-width: 375px)
{
    .pall-20 {
        padding: 18px;
    }
    .heading {
        font-size: 24px;
        line-height: 1.2;
    }
    .para-style p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    .field-text {
        margin-bottom: 18px;
        font-size: 15px;
    }
    .form-control {
        font-size: 14px;
    }
    .btn-red, .btn-grey {
        font-size: 15px;
    }
    .footer-content h3 {
        font-size: 20px;
    }
}