/*
 Table Of Contents 
 
 1.) Default Styles

 2.)  Home - page
 2.1)  Header
 2.2)  Content - Main
 2.3)  Footer

 3.)  Inner - page

===============================================*/


/*
 1.) Default Styles
 ----------------------------------------*/

* {
	margin: 0;
	padding: 0;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* render html5 elements as block */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
	display: block;
}

html {
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

sub, sup {
	position: relative;
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
	font-size:20px;
}

sub {
	bottom: -0.25em;
}

img {
	width:auto;
	height:auto;
	max-width: 100%;
	vertical-align: middle;
	border: 0;
	-ms-interpolation-mode: bicubic;
	line-height:.5em;
}

/*  Custom animations
/*-------------------------------------------------- */
@-webkit-keyframes 
reveal {
 0% {
 opacity: 0;
}
 1% {
 opacity: 0;
 -webkit-transform: scale(0.98) translateY(-15px);
}
 80% {
 -webkit-transform: scale(1);
}
 100% {
 -webkit-transform: translateY(0);
}
}
 @-moz-keyframes 
reveal {
 0% {
 opacity: 0;
}
 1% {
 opacity: 0;
 -moz-transform: scale(0.98) translateY(-15px);
}
 80% {
 -moz-transform: scale(1);
}
 100% {
 -moz-transform: translateY(0);
}
}

/* #Basic Styles
================================================== */

body {
	font-family: 'Roboto Slab', sans-serif;
	font-weight:400;
	font-size:20px;
	color:#000000; 
	line-height:27px; 
	background:#f6f6ef;
}

@media only screen and (max-width:1023px) {
body {
	font-size:18px;
	line-height:25px; 
}
}

@media only screen and (max-width:767px) {
body {
	font-size:16px;
	line-height:23px; 
}
}


/* #Links
================================================== */

a {
	color:#006cfe;
	outline:0;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	cursor:pointer;
	text-decoration:underline;
}

a:hover {
	color:#3cb878;
	text-decoration:underline;
	outline:0;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

a:focus, a:active, a:visited {
	outline:0;
	text-decoration:underline;
}


/* #Typography
================================================== */

h1, h2, h3, h4, h5, h6 { 
	line-height:1.2em; 
	text-align:center; 
	padding:0 0 37px 0; 
	margin:0; 
}

h1, h2, h3 { 
	font-size:30px; 
}

h4 {
	font-size:20px;	
}

p {
	padding:0 0 27px 0;
}

p:last-child { 
	padding-bottom:0;
}

em {
	font-style:italic;
}

strong {
	font-weight:600; 
}

.bold { 
	font-weight:600; 
}

.upper {
	text-transform:uppercase
}


@media only screen and (max-width:1023px) {
h1, h2, h3, h4, h5, h6 { 
	padding:0 0 30px 0; 
}

h1, h2, h3 { 
	font-size:24px; 
}

h4 {
	font-size:18px;	
}
}

@media only screen and (max-width:767px) {
h1, h2, h3, h4, h5, h6 { 
	padding:0 0 25px 0; 
}

h1, h2, h3 { 
	font-size:22px; 
}

h4 {
	font-size:16px;	
}

p {
	padding:0 0 20px 0;
}
}


/* #Order and Unorder Styles
================================================= */

ul, li, ol {
	list-style:none;
}

ul { 
	padding:0 0 40px 30px;
}

ul:last-child { 
	padding-bottom:0;
}

li { 
	color:#31aa48; 
	padding:0 0 20px 52px; 
	position:relative;
}

li:last-child { 
	padding-bottom:0;
}

li a { 
	color:#31aa48; 
	text-decoration:none;
}

li a:hover { 
	color:#31aa48; 
	text-decoration:underline;
}

li:before { 
	content:"";	
	width:32px; 
	height:32px; 
	float:left; 
	background:url(../images/tick-01.png) no-repeat top center; 
	background-size:32px auto;
	position:absolute;
	top:2px;
	left:0;
}


@media only screen and (max-width: 1023px) {
ul { 
	padding:0 0 30px 20px;
}

li { 
	padding:0 0 20px 45px; 
}

li:before { 
	width:25px; 
	height:25px; 
	background-size:25px auto; 
	top:3px;
}
}

@media only screen and (max-width: 767px) {
ul { 
	padding:0 0 30px 15px;
}

li { 
	padding:0 0 15px 35px; 
}

li:before { 
	width:20px; 
	height:20px; 
	background-size:20px auto; 
	top:3px;
}
}


/* #Buttons
================================================== */

.btn {
	height:89px;
	float:none;
	display:inline-block;
	font-weight:600; 
	font-size:50px;
	color:#ffffff;
	line-height:89px;
	letter-spacing:normal;
	text-align:center;
	text-decoration:none;
	text-transform:uppercase; 
	white-space:normal;
	vertical-align:middle;
	background:#3cb878;
	border:none;
	filter:0;
	border-radius:100px;
	position:relative; 
	cursor:pointer;
	padding:0 35px;
	margin:0;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn:active:focus,
.btn.active:focus {
	color:#ffffff;
	background:#ffcc00; 
	text-decoration:none; 
}

.btn.disabled, 
.btn[disabled], 
fieldset[disabled] .btn {
	cursor:not-allowed;
	filter:alpha(opacity=65);
	-webkit-box-shadow:none;
	box-shadow:none;
	opacity:.65;
}

a.btn.disabled, 
fieldset[disabled] a.btn {
	pointer-events:none;
}

.btn-out { 
	width:100%; 
	float:left;
}


@media only screen and (max-width: 1023px) {
.btn {
	height:65px;
	font-size:34px;
	line-height:65px;
}
}

@media only screen and (max-width: 767px) {
.btn {
	height:55px;
	font-size:28px;
	line-height:55px;
	padding:0 30px;
}
}


/* #Show-Hide Responsive Options
================================================== */

.show_mobile {
	display:none;
}

.hide_mobile {
	display:block;
}

.show_both {
	display:none;
}

.hide_both {
	display:block;
}


@media only screen and (max-width: 979px) {
.show_both {
	display:block;
}

.hide_both {
	display:none;
}
}

@media only screen and (max-width: 767px) {
.show_mobile {
	display:block
}
.hide_mobile {
	display:none
}
}


/*
 2.) Home page
 ----------------------------------------*/

.container-main {
	width:100%; 
	float:left; 
	overflow:hidden; 
}

.container {
	width:100%;
	max-width:1185px;
	margin:0 auto;
	padding:0 20px;
}

.container-box { 
	width:100%; 
	float:left; 
	border:1px solid #e1e1dc; 
	border-top:none; 
	border-bottom:none; 
	background:#fffffe;
	padding:0;
}


@media only screen and (max-width: 767px) {
.container {
	max-width:100%;
	padding:0;
}
}


.outer-bg {
	width:100%;
	height:100%;
	float:none;
	display:table;
	margin:0 auto;
}

.inner-bg {
	width:100%;
	height:100%;
	float:none;
	display:table-cell;
	vertical-align:middle;
}


/*
 2.1) Header
 ----------------------------------------*/

.header-main {
	width:100%;
	float:left;
	border-bottom:1px solid #dddddd;
	background: url(../images/bg01.png) repeat top center;
	padding:0 27px;
}

.header-main .logo {
	float:left;
	margin:35px 0 0 40px;
}

.header-main .logo img {
	max-width:100%;
}

.header-main .photo {
	width:605px;
	float:right;
}

.header-main .photo img {
	width:100%;
}


@media only screen and (max-width: 1199px) {
.header-main .logo {
	margin:30px 0 0 30px;
}

.header-main .logo img {
	max-width:330px;
}

.header-main .photo {
	width:500px;
}
}

@media only screen and (max-width: 1023px) {
.header-main {
	padding:0 19px;
}

.header-main .logo {
	margin:22px 0 0 20px;
}

.header-main .logo img {
	max-width:250px;
}

.header-main .photo {
	width:380px;
}
}

@media only screen and (max-width: 767px) {
.header-main {
	padding:0 5%;
}

.header-main .logo {
	margin:28px 0 0 15px;
}

.header-main .logo img {
	max-width:180px;
}

.header-main .photo {
	width:350px;
}
}

@media only screen and (max-width: 639px) {
.header-main {
	text-align:center;
	padding:30px 5% 0 5%;
}

.header-main .logo {
	width:100%;
	margin:0 0 30px 0;
}

.header-main .logo img {
	max-width:180px;
}

.header-main .photo {
	width:100%;
}

.header-main .photo img {
	width:300px;
}
}


/*
 2.2) Content - Main
 ----------------------------------------*/

.content-main {
	width:100%;
	float:left;
	padding:27px 27px 60px 27px;
}

.side-bar {
	width:251px;
	float:left;
	margin:0 -251px 0 0; 
	position:relative;
	z-index:20;
}

.cont-txt {
	width:100%;
	float:left;
	padding:0 0 0 279px;
}

 
@media only screen and (max-width: 1023px) {
.content-main {
	padding:19px 19px 50px 19px;
}

.side-bar {
	width:230px;
	margin:0 -230px 0 0;
}

.cont-txt {
	padding:0 0 0 250px;
}
}

@media only screen and (max-width: 767px) {
.content-main {
	padding:40px 5%;
}

.side-bar {
	width:100%;
	margin:0 0 40px 0;
}

.cont-txt {
	padding:0;
}
}


/* Heading - Txt */

.heading-txt {
	width:100%;
	float:left;
	padding:0 0 47px 0;
}

.heading-txt:last-child {
	padding-bottom:0;
}

.heading-txt h1 {
	padding-bottom:30px;
}

.heading-txt h1:last-child { 
	padding-bottom:0;
}

.heading-txt h2 {
	padding-bottom:30px;
}

.heading-txt h2:last-child { 
	padding-bottom:0;
}

.heading-txt h3 {
	padding-bottom:30px;
}

.heading-txt h3:last-child { 
	padding-bottom:0;
}


@media only screen and (max-width: 1023px) {
.heading-txt {
	padding:0 0 35px 0;
}

.heading-txt h1 {
	padding-bottom:25px;
}

.heading-txt h2 {
	padding-bottom:25px;
}

.heading-txt h3 {
	padding-bottom:25px;
}
}

@media only screen and (max-width: 767px) {
.heading-txt {
	padding:0 0 28px 0;
}

.heading-txt h1 {
	padding-bottom:20px;
}

.heading-txt h2 {
	padding-bottom:20px;
}

.heading-txt h3 {
	padding-bottom:20px;
}
}


/* Sb - Links */

.sb-links {
	width:100%;
	float:left;
}

.sb-links aside {
	width:100%;
	float:left;
	margin:0 0 27px 0;
}

.sb-links aside .title-txt {
	width:100%;
	float:left;
	text-align:center;
	border:1px solid rgba(204, 204, 204, 0.4);
	background:#fafafa;
	margin:0 0 -1px 0;
	padding:0;
}

.sb-links aside .title-txt a {
	width:100%;
	float:left;
	color:#000000;
	text-decoration:none;
	padding:16px 0;
}

.sb-links aside .accord-btn {
	width:100%;
	float:left;
	text-align:left; 
	color:#000000; 
	display:none;
	text-decoration:none;
	border:1px solid rgba(204, 204, 204, 0.4);
	background:#fafafa;
	margin:0 0 -1px 0;
	padding:12px 10px;
}

.sb-links aside .accord-btn span { 
	width:100%; 
	float:left; 
	background: url(../images/arrow-02.png) no-repeat right center;
	background-size:12px auto; 
	padding:0 20px 0 0;
 }

.sb-links aside .accord-btn.active span { 
	background: url(../images/arrow-03.png) no-repeat right center; 
	background-size:12px auto;
}

.sb-links aside ul {
	width:100%;
	float:left;
	padding:0;
}

.sb-links aside ul li {
	width:100%;
	float:left;
	padding:0;
}

.sb-links aside ul li:before {
	display:none;
}

.sb-links aside ul li a {
	width:100%;
	float:left;
	color:#308640;
	text-decoration:none;
	border:1px solid rgba(204, 204, 204, 0.4);
	margin:0 0 -1px 0;
	padding:16px 10px;
}

.sb-links aside ul li a span {
	background:url(../images/arrow-01.png) no-repeat left center;
	background-size:12px auto;
	padding:0 0 0 24px;
}

.sb-links aside ul li a:hover {
	background:#f0fff3;
}

.sb-links aside ul li a.active {
	background:#f0fff3;
}

.sb-links aside:last-child {
	margin-bottom:0;
}


@media only screen and (max-width: 1023px) {
.sb-links aside ul li a span {
	background-size:10px auto;
	padding:0 0 0 22px;
}
}


@media only screen and (min-width: 980px) {
.sb-links aside ul.accord {
	display:block!important;
	overflow:visible!important;
}
}

@media only screen and (max-width: 767px) {
.sb-links aside .title-txt { 
	display:none;
}

.sb-links aside .title-txt a {
	padding:12px 0;
}

.sb-links aside .accord-btn {
	display:block;
}

.sb-links aside { 
	margin:0 0 15px 0;
}

.sb-links aside ul.accord { 
	display:none; 
}

.sb-links aside ul li a {
	padding:12px 10px;
}

.sb-links aside ul li a span {
	background-size:8px auto;
	padding:0 0 0 18px;
}
}




/* Cont - Top */

.cont-top {
	width:100%;
	float:left;
	border-bottom:1px solid #cccccc;
	padding:0 0 45px 0;
	margin:0 0 45px 0;
}

.cont-top:last-child { 
	border-bottom:none; 
	margin-bottom:0; 
	padding-bottom:0;
}


@media only screen and (max-width: 1023px) {
.cont-top {
	padding:0 0 35px 0;
	margin:0 0 35px 0;
}
}

@media only screen and (max-width: 767px) {
.cont-top {
	padding:0 0 30px 0;
	margin:0 0 30px 0;
}
}


/* Unorder - List */

.unorder-list {
	width:100%;
	float:left;
	border-bottom:1px solid #cccccc;
	margin:0 0 45px 0;
	padding:0 0 45px 0;
}

.unorder-list:last-child {
	border-bottom:none;
	margin-bottom:0;
	padding-bottom:0;
}

.unorder-list ul {
	width:100%;
	float:left;
}

.unorder-list ul li {
	width:100%;
	float:left;
	line-height:36px;
	position:relative;
}


@media only screen and (max-width: 1023px) {
.unorder-list {
	padding:0 0 35px 0;
	margin:0 0 35px 0;
}

.unorder-list ul li {
	line-height:32px;
}
}

@media only screen and (max-width: 767px) {
.unorder-list {
	padding:0 0 30px 0;
	margin:0 0 30px 0;
}

.unorder-list ul li {
	line-height:26px;
}
}


/* Popular - List */

.popular-list {
	width:100%;
	float:left;
	text-align:center;
	border-bottom:1px solid #cccccc;
	padding:0 0 60px 0;
	margin:0 0 60px 0;
}

.popular-list:last-child {
	border-bottom:none;
	padding-bottom:0;
	margin-bottom:0;
}

.popular-list article {
	width:30%;
	float:none;
	display:inline-block;
	vertical-align:top;
	margin:0 1.40% 30px 1.40%;
}

.popular-list article figure {
	width:100%;
	text-align:center;
	overflow:hidden;
}

.popular-list article figure img {
	width:100%;
}

.popular-list .article-bg {
	width:103%;
	float:left;
	margin:0 -1.5% -30px -1.5%;
}


@media only screen and (max-width: 1023px) {
.popular-list {
	padding:0 0 50px 0;
	margin:0 0 50px 0;
}

.popular-list article {
	width:46.5%;
	margin:0 1.40% 20px 1.40%;
}

.popular-list .article-bg {
	margin:0 -1.5% -20px -1.5%;
}
}

@media only screen and (max-width: 767px) {
.popular-list {
	padding:0 0 40px 0;
	margin:0 0 40px 0;
}

.popular-list article {
	width:46.5%;
	margin:0 1.40% 16px 1.40%;
}

.popular-list .article-bg {
	margin:0 -1.5% -16px -1.5%;
}
}

@media only screen and (max-width: 479px) {
.popular-list article {
	width:100%;
	margin:0 0 15px 0;
}

.popular-list .article-bg {
	width:100%;
	margin:0 0 -15px 0;
}
}


/* About - Cont */

.about-cont {
	width:100%;
	float:left;
	border-bottom:1px solid #cccccc;
	margin:0 0 60px 0;
	padding:0 0 60px 0;
}

.about-cont:last-child {
	border-bottom:none;
	margin-bottom:0;
	padding-bottom:0;
}


@media only screen and (max-width: 1023px) {
.about-cont {
	margin:0 0 50px 0;
	padding:0 0 50px 0;
}
}

@media only screen and (max-width: 767px) {
.about-cont {
	margin:0 0 40px 0;
	padding:0 0 40px 0;
}
}


/* About - Field */

.about-field {
	width:100%;
	float:left;
	border-bottom:1px solid #cccccc;
	padding:0 0 60px 0;
	margin:0 0 60px 0;
}

.about-field:last-child {
	border-bottom:none;
	padding-bottom:0;
	margin-bottom:0;
}

.about-field .left-col {
	width:52.45%;
	float:left;
	padding:0;
}

.about-field .right-col {
	width:42.60%;
	float:right;
}

.about-field .right-col figure {
	width:100%;
	float:left;
	text-align:center;
	overflow:hidden;
}

.about-field .right-col figure img {
	width:100%;
}

.about-field .right-col ul {
	width:100%;
	float:left;
	padding:0;
}

.about-field .right-col ul li {
	width:100%;
	float:left;
	color:#1b9cee;
	border:1px solid rgba(204, 204, 204, 0.4);
	padding:7px 15px 9px 15px;
	margin:0 0 -1px 0;
}

.about-field .right-col ul li:before {
	display:none;
}

.about-field .right-col ul li a { 
	color:#1b9cee; 
	text-decoration:none;
}


@media only screen and (max-width: 1023px) {
.about-field {
	padding:0 0 50px 0;
	margin:0 0 50px 0;
}

.about-field .left-col {
	width:100%;
}

.about-field .right-col {
	width:100%;
	padding:0 0 30px 0;
}
}

@media only screen and (max-width: 767px) {
.about-field {
	padding:0 0 40px 0;
	margin:0 0 40px 0;
}
}


/* Feature - Info */

.feature-info {
	width:100%;
	float:left;
	border-bottom:1px solid #cccccc;
	padding:0 0 60px 0;
	margin:0 0 60px 0;
}

.feature-info:last-child {
	border-bottom:none;
	padding-bottom:0;
	margin-bottom:0;
}

.feature-info .heading-txt {
	padding:0 0 42px 0;
}

.feature-box {
	width:100%;
	float:left;
	background:#000000;
	padding:48px 65px 85px 65px;
}

.feature-box .bonus-txt {
	width:100%;
	float:left;
	font-size:35px;
	color:#73acf9;
	text-align:center;
	line-height:37px;
	padding:0 0 65px 0;
}

.feature-box .bonus-txt a {
	color:#73acf9;
	text-decoration:none;
}

.feature-box .bonus-txt a:hover {
	text-decoration:underline;
}

.feature-box .bonus-txt strong {
	font-size:50px;
	line-height:52px;
}

.feature-box .logo-asino {
	width:50%;
	float:none;
	display:inline-block;
	vertical-align:middle;
	padding:0 5px 0 0;
	margin:0 -2px;
}

.feature-box .btn {
	width:100%;
	padding:0 20px;
}

.feature-box .btn-out {
	width:50%;
	float:none;
	display:inline-block;
	vertical-align:middle;
	padding:0 0 0 25px;
	margin:0 -2px;
}

.feature-box article {
	width:100%;
	float:left;
}


@media only screen and (max-width: 1099px) {
.feature-box {
	padding:45px 50px 75px 50px;
}

.feature-box .btn-out {
	padding:0 0 0 10px;
}
}

@media only screen and (max-width: 1023px) {
.feature-info {
	padding:0 0 50px 0;
	margin:0 0 50px 0;
}

.feature-info .heading-txt {
	padding:0 0 32px 0;
}

.feature-box {
	text-align:center;
	padding:40px 40px 60px 40px;
}

.feature-box .bonus-txt {
	font-size:30px;
	line-height:32px;
	padding:0 0 50px 0;
}

.feature-box .bonus-txt strong {
	font-size:45px;
	line-height:47px;
}

.feature-box .logo-asino {
	width:100%;
	float:left;
	padding:0 0 25px 0;
	margin:0;
}

.feature-box .logo-asino img {
	max-width:250px;
}

.feature-box .btn-out {
	width:100%;
	max-width:310px;
	float:none;
	display:inline-block;
	padding:0;
	margin:0;
}
}

@media only screen and (max-width: 767px) {
.feature-info {
	padding:0 0 40px 0;
	margin:0 0 40px 0;
}

.feature-info .heading-txt {
	padding:0 0 25px 0;
}

.feature-box {
	padding:30px 15px 40px 15px;
}

.feature-box .bonus-txt {
	font-size:28px;
	line-height:28px;
	padding:0 0 40px 0;
}

.feature-box .bonus-txt strong {
	font-size:40px;
	line-height:42px;
}

.feature-box .logo-asino img {
	max-width:210px;
}

.feature-box .btn-out {
	max-width:200px;
}
}


/* Resource - Info */

.resource-info {
	width:100%;
	float:left;
	border-bottom:1px solid #cccccc;
	padding:0 0 60px 0;
	margin:0 0 60px 0;
}

.resource-info:last-child {
	border-bottom:none;
	padding-bottom:0;
	margin-bottom:0;
}

.resource-info ul {
	width:100%;
	float:left;
	padding:0;
}

.resource-info ul li {
	width:100%;
	float:left;
	color:#000000;
	padding:0 0 33px 50px;
}

.resource-info ul li:before {
	content:" ";
	width:28px;
	height:28px;
	float:left;
	background:url(../images/icon-play.png) no-repeat top center;
	background-size:23px auto;
	position:absolute;
	top:0;
	left:0;
}

.resource-info ul li:last-child {
	padding-bottom:0;
}

.resource-info ul li a {
	color:#006cfe;
	text-decoration:underline;
}

.resource-info ul li a:hover {
	color:#3cb878;
}


@media only screen and (max-width: 1023px) {
.resource-info {
	padding:0 0 50px 0;
	margin:0 0 50px 0;
}

.resource-info ul li {
	padding:0 0 28px 45px;
}

.resource-info ul li:before {
	width:23px;
	height:23px;
	background-size:23px auto;
	top:3px;
}
}

@media only screen and (max-width: 767px) {
.resource-info {
	padding:0 0 40px 0;
	margin:0 0 40px 0;
}

.resource-info ul li {
	padding:0 0 25px 35px;
}

.resource-info ul li:before {
	width:20px;
	height:20px;
	background-size:20px auto;
	top:3px;
}
}

/*
 2.3) Footer
 ----------------------------------------*/
 
.footer-main {
	width:100%;
	float:left;
	text-align:center;
	background:#f7f7f7;
	padding:45px 27px;
}

.footer-main p {
	padding-bottom:17px;
}

.footer-main p.sml-txt {
	font-size:18px;
}

.footer-main p .underline {
	text-decoration:underline;
}

.footer-main p:last-child {
	padding-bottom:0;
}


@media only screen and (max-width: 1023px) {
.footer-main {
	padding:40px 19px;
}

.footer-main p.sml-txt {
	font-size:16px;
}
}

@media only screen and (max-width: 767px) {
.footer-main {
	padding:30px 5%;
}

.footer-main p.sml-txt {
	font-size:15px;
}
}