*{
	margin:0;
	padding:0;
	box-sizing: border-box;
	text-decoration: none;
}
 
@font-face{
	font-family: 'quicksand';  
    src: url('/../../fonts/quicksand/Quicksand-SemiBold.woff') format('woff'),
    	 url('/../../fonts/quicksand/Quicksand-SemiBold.woff2') format('woff2');
	font-weight: 100 900; 
    font-display: swap;
}
@font-face{
	font-family: 'DMSans_Bold';
    src: url('/../../fonts/DMSans/DMSans-Bold.woff') format('woff'),
    	 url('/../../fonts/DMSans/DMSans-Bold.woff2') format('woff2');
	font-weight: 600; 
    font-display: swap;
}
@font-face{
	font-family: 'DMSans_Medium';
    src: url('/../../fonts/DMSans/DMSans-Medium.woff') format('woff'),
    	 url('/../../fonts/DMSans/DMSans-Medium.woff2') format('woff2');
	font-weight: 500; 
    font-display: swap;
}
@font-face{
	font-family: 'Noto_Sans_SC';
    src: url('/../../fonts/Noto_Sans_SC/NotoSansSC-Light.woff') format('woff'),
    	 url('/../../fonts/Noto_Sans_SC/NotoSansSC-Light.woff2') format('woff2');
	font-weight: 600; 
    font-display: swap;
}
@font-face{
	font-family: 'Noto_Sans_SC_medium';
    src: url('/../../fonts/Noto_Sans_SC/NotoSansSC-Medium.woff') format('woff'),
    	 url('/../../fonts/Noto_Sans_SC/NotoSansSC-Medium.woff2') format('woff2');
	font-weight: 600; 
    font-display: swap;
}

@font-face{
	font-family: 'Lato_Regular';
	src: url('/../../fonts/Lato/Lato-Regular.woff') format('woff'),
		 url('/../../fonts/Lato/Lato-Regular.svg') format('svg');
	font-weight: normal;
    font-style: normal;
}
@font-face{
	font-family: 'Open Sans';
	src: url('/../../fonts/open_sans/OpenSans-Regular.woff') format('woff'),
		 url('/../../fonts/open_sans/OpenSans-Regular.woff2') format('woff2');
	font-weight: normal;
    font-style: normal;
}
@font-face{
	font-family: 'Open Sans Light';
	src: url('/../../fonts/open_sans/OpenSans-Light.woff') format('woff'),
		 url('/../../fonts/open_sans/OpenSans-Light.woff2') format('woff2');
	font-weight: normal;
    font-style: normal;
}

body{
	background: #fff;
	color: #757575;
	font-size: 18px; 
	font-family: 'Open Sans';
}
h1, h2, h3, h4, h5, h6{
	font-family: 'DMSans_Bold';
	margin: 0 0 15px;
	line-height: 130%;
	font-weight: 600; 
    color: var(--font-color);
}
p{
	margin: 0 0 15px;
	line-height: 170%;
	font-size: 16px;
	font-family: 'Noto_Sans_SC';
}
input, button, select, textarea {
    font-family: 'Open Sans';
}
ul{
	list-style: none;
	margin: 0;
}
ul li{ 
	font-size: 16px;
}
.default_container{
	width: 80%;
	max-width: 1080px;
	margin: auto; 
}
 
.small_container{
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 15px;
} 
.mb_40{
	margin-bottom: 40px; 
}
.title_div{
	margin: 0 0 40px;
    text-align: center;
}
.title_div h2{
	margin: 0px;
    font-weight: 700;
    font-size: 36px; 
    color: var(--main-color);
}
 
.d_flex{
	display: flex;
	flex-wrap: wrap;
}
.align_center{
	align-items: center;
}
.justify_center{
	justify-content: center;
}
.form_control {
    padding: 12px 10px;
    border: 0px;
    margin: 0;
    width: 100%;
    font-size: 16px;
}
.default_btn {
    padding: 10px 30px;
    display: inline-block;
    border-radius: 50px;
    background-color: transparent;
    color: var(--font-color);
    text-align: center;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 15px;
    border: 1px solid var(--font-color);
    position: relative;
}

.default_btn:before {
    position: absolute;
    content: '\f105';
    opacity: 0;
    right: 25px;
    top: 50%;
    font-size: 20px;
    font-family: 'FontAwesome';
    transform: translateY(-50%);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.default_btn:hover {
	background-color: var(--secondary-color);
	color: #fff;
	padding-right: 35px;
	padding-left: 25px;
}
.default_btn:hover:before {
	right: 15px;
	opacity: 1;
}

@media(max-width:1550px){
 
}
@media(max-width:1400px){
	
	 
}
@media(max-width:1300px){
 
}
@media(max-width:1200px){
 
}
@media(max-width:1024px){
	.title_div h2{ 
	    font-size: 34px; 
	}
}
 
@media(max-width:580px){
	.title_div h2{ 
	    font-size: 32px; 
	}
	.default_btn{
	    padding: 12px 25px; 
	    font-size: 14px;
	}
}
@media(max-width:480px){
	.title_div h2{ 
	    font-size: 30px; 
	} 
}
@media(max-width:380px){
	.title_div h2{ 
	    font-size: 28px; 
	} 
}