/* Google Font Include */
@import @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');;

/* Normalization */
body{
    background-color: #f8f6f6;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1;
}  
h1,h2,h3,h4,h5,h6{
    margin: 0;
    padding: 0;
    line-height: .9;
    font-weight: 700;
    color: #34374c;
    font-family: 'Poppins', sans-serif;
}
p{
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #3f4360;
    line-height: 1.2222;
}
ul, ol, li{
    margin: 0;
    padding: 0;
    list-style: none;
}
a, a:hover,a:focus{
    outline: none;
    text-decoration: none;
}
a:hover,a:focus{
    color: inherit;
}
a{   font-family: 'Poppins', sans-serif;
    -webkit-transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
}
img{
    width: 100%;
    height: auto;
}
/*==============  Common Content =============**/
.common-tittle{
    color: #34374c;
    font-size: 49px;
    padding: 0 0 75px;
    text-align: center;
}
.white{
    color: #fff !important;
}
.common-tittle.border{
    border-bottom: 1px solid #d4d6e3;
    margin-bottom: 35px;
    padding-bottom: 26px;
}

/*==============  Margin and padding settings =============**/
.no-padding-left{
    padding-left: 0 !important;
}
.no-padding-right{
    padding-right: 0 !important;
}
.no-padding{
    padding: 0 !important;
}

/********Scroll Up*******/
.scrollup {
	background-color: rgba(0, 0, 0, 0.5);
	bottom: 40px;
	color: #ffffff;
	display: none;
	font-size: 40px;
	height: 40px;
	line-height: 35px;
	position: fixed;
	right: 40px;
	text-align: center;
	width: 40px;
	-webkit-transition:all 700ms ease;
	-moz-transition:all 700ms ease;
	-ms-transition:all 700ms ease;
	-o-transition:all 700ms ease;
	transition:all 700ms ease
}
.scrollup:hover {
	color: #fff;
}
