/**
* Template Name: Rathinam Organization
* Template URL: http://kuralazhirathinam.org/
* Author: Rajasekar.
* Author URL - https://rajasekarbuvana.github.io/aboutmyresume.com/
*/


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/


/*--- Full screen bg ---*/
*::-webkit-scrollbar,
*::-webkit-scrollbar-thumb {
  width: 26px;
  border-radius: 13px;
  background-clip: padding-box;
  border: 10px solid transparent;
}

*::-webkit-scrollbar-thumb {        
  box-shadow: inset 0 0 0 10px;
}

body {
	/* The image used */
	background-image: url("../img/bg.jpg");
	/* Full height */
	height: 100%;
	/* Center and scale the image nicely */
	background-repeat: no-repeat;
	background-size: cover;
	font-family: "InaiMathi", "Tamil Sangam MN", /* For iOS 3+ and Mac */
	"Nirmala UI", Latha, /* For Windows */
	Bamini, Roboto, /* For Android 4+ */
	Noto, "Noto Sans Tamil", /* For Ubuntu */
	sans-serif;
	color: #000000;
}


/*---Full screen bg end ---*/

a {
	color: #f09819;
}

a:hover {
	color: #fdca40;
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Nirmala UI", 'Latha';
}

p {
	line-height: 25px;
	font-weight: 500;
	color: #000000;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
	position: fixed;
	display: none;
	right: 15px;
	bottom: 15px;
	z-index: 99999;
}

.back-to-top i {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	width: 40px;
	height: 40px;
	border-radius: 4px;
	background-image: linear-gradient(-60deg, #ff5858 0%, #f09819 100%);
	color: #fff;
	transition: all 0.4s;
}

.back-to-top i:hover {
	background: #fdca40;
	color: #fff;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
	/* background: white; */
	transition: all 0.5s;
	z-index: 997;
	padding: 20px 0;
}

#header.header-scrolled {
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	padding: 12px 0;
}

#header.header-inner-pages {
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.mt-1{
	margin-top: 5px;
}

#header .logo {
	font-size: 28px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 700;
	text-transform: uppercase;
}

#header .logo a {
	color: #556270;
}

#header .logo img {
	max-height: 150px;
}

@media (max-width: 992px) {
	#header {
		padding: 12px 0;
	}
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/* Desktop Navigation */

.nav-menu {
	background-color: #000;
	box-shadow: 1px 2px 9px 0px #000;
	padding: 10px;
	width: 1200px;
	border-radius: 5px;
}

.pos-25{
    position: relative;
    left: -30px;
}
.nav-menu ul {
	margin: 0;
	list-style: none;
}

.nav-menu>ul {
	display: flex;
}

.nav-menu>ul>li {
	position: relative;
	white-space: nowrap;
	padding: 12px 0 12px 28px;
}

.nav-menu a {
	display: block;
	position: relative;
	color: #ffffff;
	font-size: 15px;
	font-weight: 500;
	font-family: "Poppins", sans-serif;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
	color: #f09819;
	font-size: 14px;
	font-weight: 600;
}

.nav-menu .drop-down ul {
	display: block;
	position: absolute;
	left: 15px;
	top: calc(100% + 30px);
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	padding: 10px 0;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: 0.3s;
}

.nav-menu .drop-down:hover>ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}

.nav-menu .drop-down li {
	min-width: 180px;
	position: relative;
}

.nav-menu .drop-down ul a {
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 500;
	text-transform: none;
	color: #556270;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
	color: #e41c38;
}

.nav-menu .drop-down>a:after {
	content: "\ea99";
	font-family: IcoFont;
	padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
	top: 0;
	left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
	opacity: 1;
	top: 0;
	left: 100%;
}

.nav-menu .drop-down .drop-down>a {
	padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
	content: "\eaa0";
	font-family: IcoFont;
	position: absolute;
	right: 15px;
}

.menu-center {
	margin: 0 auto;
}

@media (max-width: 1366px) {
	.nav-menu .drop-down .drop-down ul {
		left: -90%;
	}
	.nav-menu .drop-down .drop-down:hover>ul {
		left: -100%;
	}
	.nav-menu .drop-down .drop-down>a:after {
		content: "\ea9d";
	}
}


/* Get Startet Button */

.get-started-btn {
	background-image: linear-gradient(-60deg, #ff5858 0%, #f09819 100%);
	color: #fff;
	border-radius: 4px;
	padding: 8px 10px 9px 10px;
	white-space: nowrap;
	transition: 0.3s;
	font-size: 12px;
	display: inline-block;
}

.get-started-btn:hover {
	background: #e1444d;
	color: #fff;
}

@media (max-width: 991px) {
	.get-started-btn {
		margin: 0 48px 0 0;
		padding: 6px 18px;
	}
}


/* Mobile Navigation */

.mobile-nav-toggle {
	position: fixed;
	right: 15px;
	top: 15px;
	z-index: 9998;
	border: 0;
	background: none;
	font-size: 24px;
	transition: all 0.4s;
	outline: none !important;
	line-height: 1;
	cursor: pointer;
	text-align: right;
}

.mobile-nav-toggle i {
	color: #ffffff;
}

.mobile-nav {
	position: fixed;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	z-index: 9999;
	overflow-y: auto;
	background: #fff;
	transition: ease-in-out 0.2s;
	opacity: 0;
	visibility: hidden;
	border-radius: 10px;
	padding: 10px 0;
	height: 340px;
}

.mobile-nav * {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mobile-nav a {
	display: block;
	position: relative;
	color: #556270;
	padding: 10px 20px;
	margin-left: 24px;
	font-weight: 500;
	outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
	color: #f09819;
	text-decoration: none;
}

.mobile-nav .drop-down>a:after {
	content: "\ea99";
	font-family: IcoFont;
	padding-left: 10px;
	position: absolute;
	right: 15px;
}

.mobile-nav .active.drop-down>a:after {
	content: "\eaa1";
}

.mobile-nav .drop-down>a {
	padding-right: 35px;
}

.mobile-nav .drop-down ul {
	display: none;
	overflow: hidden;
}

.mobile-nav .drop-down li {
	padding-left: 20px;
}

.mobile-nav-overly {
	width: 100%;
	height: 100%;
	z-index: 9997;
	top: 0;
	left: 0;
	position: fixed;
	background: rgba(63, 73, 83, 0.6);
	overflow: hidden;
	display: none;
	transition: ease-in-out 0.2s;
}

.mobile-nav-active {
	overflow: hidden;
}

.mobile-nav-active .mobile-nav {
	opacity: 1;
	visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
	color: #fff;
}

@media screen and (min-width: 1366px) {
	.nav-menu>ul {
		display: flex;
		justify-content: center;
		align-items: center;
	}
}

.hero-img {
	display: block;
	margin: 0 auto;
	width:100%;
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
	padding: 30px 0;
}

.section-title {
	padding-bottom: 10px;
}

.section-title h2 {
	font-size: 22px;
	font-weight: 500;
	padding: 0;
	line-height: 25px;
	text-align: center;
	margin: 0 0 5px 0;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #ffffff;
	font-family: "Poppins", sans-serif;
}

.bann_container img {
	width: 100%;
}

.bann_container {
	position: relative;
}

.section-title p {
	margin: 0;
	margin: 0;
	font-size: 30px;
	font-weight: 700;
	text-transform: uppercase;
	font-family: "Poppins", sans-serif;
	color: #ffffff;
}

.text-right {
	text-align: right;
}

.center-div {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 10px;
}

h2.award-title {
	text-align: center;
	line-height: 35px;
	font-size: 16px;
	font-weight: 600;
	color: #ffffff;
}

p.rathinam-desc {
	font-size: 16px;
	text-align: center;
	font-weight: 500;
}

.member-name {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}
.about-title-head {
	font-weight: 700 !important;
	color: #000000;
	font-size: 18px !important;
}

h5.book-title {
	font-size: 18px;
	color: #000;
	font-weight: 600 !important;
	line-height: 25px;
}

h5.sub-title {
	color: #151414;
	font-size: 16px;
}

span.second-color {
	color: #f09819;
}

.img-center {
	display: block;
	margin: 0 auto;
	width: 100%;
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
	padding: 15px 0;
	background: #f8f9fa;
	margin-top: 130px;
}

@media (max-width: 992px) {
	.breadcrumbs {
		margin-top: 120px;
	}
}

.breadcrumbs h2 {
	font-size: 20px;
	font-weight: 600;
	margin: 0;
}

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 14px;
}

.breadcrumbs ol li+li {
	padding-left: 10px;
}

.breadcrumbs ol li+li::before {
	display: inline-block;
	padding-right: 10px;
	color: #6b7b8d;
	content: "/";
}

@media (max-width: 992px) {
	.breadcrumbs {
		margin-top: 58px;
	}
	.breadcrumbs .d-flex {
		display: block !important;
	}
	.breadcrumbs h2 {
		margin-bottom: 10px;
	}
	.breadcrumbs ol {
		display: block;
	}
	.breadcrumbs ol li {
		display: inline-block;
	}
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about-img {
	width: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.about .content h2 {
	font-weight: 700;
	font-size: 20px;
	line-height: 25px;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.about .content h3 {
	font-weight: 500;
	line-height: 32px;
	font-size: 18px;
}

img.army-img.img-responsive {
	/* border: 1px solid #c7c7c7;
  width: 100%; */
}

.about .content ul {
	list-style: none;
	padding: 0;
}

.about .content ul li {
	padding: 10px 0 0 28px;
	position: relative;
}

.about .content ul i {
	left: 0;
	top: 7px;
	position: absolute;
	font-size: 20px;
	color: #e41c38;
}

.title-bg {
	background-image: url('../img/title-bg.png');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.button-bg {
	background-image: url('../img/button-bg.png');
	background-repeat: no-repeat;
	background-position: center;
	height: 100px;
	width: 100%;
}

.about .content p:last-child {
	margin-bottom: 0;
	line-height: 30px;
}

.pt-70 {
	padding-top: 70px;
}

.pt-150 {
	padding-top: 150px;
}

.lt-10 {
	position: relative;
	top: -10px;
}

.mt-10 {
	margin-top: 10px !important;
}

.mt-20 {
	margin-top: 20px;
}

.mt-150 {
	margin-top: 150px;
}

.mt-120 {
	margin-top: 120px;
}

.bor-2 {
	border: 2px solid #f09819;
}

img.bor-2.img-responsive {
	width: 100%;
}

.text-left {
	text-align: left;
}

.print-btn {
	display: block;
	margin: 0 auto;
	padding-bottom: 5px;
}

h3.awards-title {
	font-size: 16px;
	color: #000000;
	font-weight: 600;
}

h3.member-title {
	font-size: 18px;
	font-weight: 600;
	color: #000000;
}

li {
	font-size: 15px !important;
	font-weight: 500;
}

.mt-15 {
	margin-top: 15px;
}

.row.pt-10 {
	padding: 10px 10px;
}

@media (max-width: 992px) {
	#header .logo img {
		max-height: 120px !important;
	}
	.btn-life {
		position: relative;
		top: 33px;
		font-size: 14px;
	}
	img.img-responsive {
		width: 100%;
	}
	section.about.section-bg {
		margin-top: 100px;
	}
	.award-center {
		text-align: center !important;
	}
	.bg-theme-color {
		background-image: linear-gradient(-60deg, #ff5858 0%, #f09819 100%);
	}
	ul.book-names {
		list-style: none;
	}
	.container.about-members {
		margin-top: 100px;
	}
	.container.award-content {
		margin-top: 100px;
	}
	.container.contact-content {
		margin-top: 100px;
	}
	.container.book-content {
		margin-top: 100px;
	}
	.books-details {
		padding: 20px;
	}
	img.kural-icon {
		padding-right: 10px;
	}
	.row.pt-10 {
		padding: 10px 10px;
	}
	img.news-img {
		width: 100%;
	}
	.contact .info-box {
		color: #444444;
		text-align: center;
		box-shadow: 0 0 30px rgb(214 215 216 / 60%);
		padding: 20px 0 30px 0;
		background-image: linear-gradient(to right, #434343 0%, black 100%);
	}
	.contact .info-box h3 {
		font-size: 20px;
		color: #777777;
		font-weight: 700;
		margin: 10px 0;
	}
	.contact .info-box p {
		padding: 0;
		line-height: 24px;
		font-size: 14px;
		margin-bottom: 0;
	}
	.contact .info-box i {
		font-size: 32px;
		color: #f09819;
		border-radius: 50%;
		padding: 8px;
	}
	.single-service {
		position: relative;
		text-align: center;
		margin-bottom: 50px;
		-webkit-transition: .3s;
		background-image: linear-gradient(to top, #603d24 0%, #dfa579 100%);
		height: 150px;
		max-height: 150px;
		transition: .3s;
		padding: 10px 20px;
		box-shadow: 0 1px 4px rgba(0, 0, 0, 0.16)
	}
	.section-title h4 {
		font-size: 25px;
		font-weight: 600;
		text-transform: uppercase;
		position: relative;
		padding-bottom: 20px;
		display: inline-block;
	}
	.img-keyword {
		width: 100px;
	}
	img.img-keyword {
		width: 50px;
		max-width: 50px;
	}
	.single-service h4 {
		font-size: 14px;
		line-height: 25px;
		font-weight: 400;
		color: #fff;
		font-family: 'Poppins';
		margin-bottom: 15px;
		text-transform: capitalize;
	}
	.single-service:hover {
		background: linear-gradient(to bottom, #323232 0%, #3F3F3F 40%, #1C1C1C 150%), linear-gradient(to top, rgba(255, 255, 255, 0.40) 0%, rgba(0, 0, 0, 0.25) 200%);
		background-blend-mode: multiply;
	}
}

@media (min-width: 1025px) and (max-width: 1280px) {
	.single-service {
		position: relative;
		text-align: center;
		margin-bottom: 50px;
		-webkit-transition: .3s;
		background-image: linear-gradient(to top, #603d24 0%, #dfa579 100%);
		height: 150px;
		max-height: 150px;
		transition: .3s;
		padding: 30px 20px;
		box-shadow: 0 1px 4px rgba(0, 0, 0, 0.16)
	}
	.section-title h4 {
		font-size: 25px;
		font-weight: 600;
		text-transform: uppercase;
		position: relative;
		padding-bottom: 20px;
		display: inline-block;
	}
	.img-keyword {
		width: 100px;
	}
	img.img-keyword {
		width: 50px;
		max-width: 50px;
	}
	.single-service h4 {
		font-size: 14px;
		line-height: 25px;
		font-weight: 400;
		color: #fff;
		font-family: 'Poppins';
		margin-bottom: 15px;
		text-transform: capitalize;
	}
	.single-service:hover {
		background: linear-gradient(to bottom, #323232 0%, #3F3F3F 40%, #1C1C1C 150%), linear-gradient(to top, rgba(255, 255, 255, 0.40) 0%, rgba(0, 0, 0, 0.25) 200%);
		background-blend-mode: multiply;
	}
}

@media (min-width: 1200px) {
	section#contact,
	section.awardss-sec {
		margin-top: 140px;
	}
	.container.about-content {
		margin-top: 140px;
	}
	.container .about-members {
		margin-top: 140px;
	}
	section.members-sec.section-bg {
		margin-top: 140px;
	}
	section.books-published.section-bg {
		margin-top: 140px;
	}
	.table {
		color: #000 !important;
	}
	.table thead th {
		vertical-align: bottom;
		border: none !important;
		display: none;
		font-weight: 600;
	}
	.table td,
	.table th {
		padding: 5px !important;
		vertical-align: top;
		border: none !important;
		font-size: 14px;
		font-weight: 500;
	}
}


/*----Books css -----*/

.poet-center.mx-auto {
    background-color: #ffffff73;
    padding: 1em;
    margin-bottom: 1em;
}

.author {
	text-align: right;
	padding-bottom: 10px;
}

.mt-15 {
	margin-top: 15px !important;
}

.pt-10 {
	padding: 10px;
}

img.news-img {
	width: 100%;
	border: 3px solid #000;
	box-shadow: 1px 2px 3px #6b6767;
}

h6.member-name {
	line-height: 25px;
	padding-bottom: 10px;
}

.btn-life {
	position: relative;
	top: 37px;
	font-size: 15px;
	color: #fff;
}


/*---Books end ----*/


/*----Members start ----*/

h3.member-title {
	font-size: 18px;
	font-weight: 600;
	color: #000000;
}

h3.awards-title {
	font-size: 20px;
	font-weight: 600;
	color: #000;
}

ol.kural-awards {
	font-size: 15px;
	font-weight: 500;
	line-height: 26px;
}

ol.book-names {
	font-size: 15px;
	font-weight: 600;
	line-height: 35px;
}

.mt-30 {
	margin-top: 30p;
}

h6.member-title {
	font-size: 18px;
	font-weight: 600;
	padding-bottom: 10px;
}


/*---Members end -----*/


/*---Contact sec start ---*/

.contact .info-box {
	color: #444444;
	text-align: center;
	box-shadow: 0 0 30px rgb(214 215 216 / 60%);
	padding: 20px 0 30px 0;
	background-image: linear-gradient(to right, #434343 0%, black 100%);
}

.contact .info-box h3 {
	font-size: 20px;
	color: #ffffff;
	font-weight: 700;
	margin: 10px 0;
}

.contact .info-box p {
	padding: 0;
	line-height: 24px;
	font-size: 14px;
	margin-bottom: 0;
	color: #afabab;
}

.contact .info-box i {
	font-size: 32px;
	color: #f09819;
	border-radius: 50%;
	padding: 8px;
}

.mt-4,
.my-4 {
	margin-top: 1.5rem!important;
}


/*--Contact end----*/

section.about-section {
	background-color: #ca0000;
}

.section-title h2 span {
	color: #ff0;
}

.embed-responsive {
	border-radius: 10px;
}

.about-image-overlay img {
	cursor: pointer;
	border-radius: 10px;
}

p.kural-describe {
	line-height: 25px;
	font-size: 15px;
	text-align: justify;
	font-weight: 400;
}


/*------------ Rathinam Photo center ----*/

.rathinam-bg {
	position: relative;
	width: 100%;
	margin-bottom: -61px;
}

.mobile {
	display: none;
}

section-title p {
	margin: 0;
	margin: 0;
	font-size: 36px;
	font-weight: 700;
	text-transform: uppercase;
	font-family: "Poppins", sans-serif;
	color: #ffffff;
}

.contact-desc {
	font-size: 14px;
	color: #cac3c3;
}

@media (min-width: 320px) and (max-width: 768px) {
	.desktop {
		display: none;
	}
}


/*----Rathinam Photo end -----*/


/*--- Books slider ----*/

.logo-slider .item {
	background-color: #fff;
	box-shadow: 0 4px 5px #cacaca;
	border-radius: 8px;
	padding: 15px;
}

.logo-slider .slick-slide {
	margin: 15px;
}

.slick-dots li.slick-active button:before {
	color: #ff5722;
}

.sliick-dots li button:before {
	font-size: 12px;
}

.slick-next:before,
.slick-prev:before {
	color: #361303;
	font-size: 24px;
}

.item:hover {
	display: block;
	transition: all ease 0.3s;
	transform: scale(1.1) translateY(-5px);
}


/*----Books slider end---*/


/*-- Seo sec start ---*/

.section-title {
	position: relative
}
.p-b-20{
	padding-bottom: 20px !important;
}
.row.p-b-50{
	padding-bottom: 50px !important;
}

.section-title h4 {
	font-size: 25px;
	font-weight: 600;
	text-transform: uppercase;
	position: relative;
	padding-bottom: 20px;
	display: inline-block;
}

img.img-keyword {
	width: 55px;
	max-width: 55px;
}

.section-title h4:before {
	position: absolute;
	content: "";
	width: 80px;
	height: 2px;
	bottom: 0;
	left: 50%;
	margin-left: -40px;
}

.section-title h4:after {
	position: absolute;
	content: "";
	width: 50px;
	height: 2px;
	background-color: #FF7200;
	left: 0;
	bottom: 0;
	left: 50%;
	margin-left: -25px;
}

.pt-100 {
	padding-top: 100px;
}

.pb-100 {
	padding-bottom: 100px;
}

.single-service {
	position: relative;
	text-align: center;
	margin-bottom: 50px;
	-webkit-transition: .3s;
	background-image: linear-gradient(to top, #603d24 0%, #dfa579 100%);
	height: 150px;
	max-height: 150px;
	transition: .3s;
	padding: 10px 20px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.16)
}

.single-service:before {
	position: absolute;
	width: 0;
	height: 0;
	background-color: #FF7200;
	left: 0;
	top: 0;
	content: "";
	-webkit-transition: .3s;
	transition: .3s
}

.single-service:after {
	position: absolute;
	width: 0;
	height: 0;
	background-color: #FF7200;
	right: 0;
	bottom: 0;
	content: "";
	-webkit-transition: .3s;
	transition: .3s
}

.single-service:hover {
	background: linear-gradient(to bottom, #323232 0%, #3F3F3F 40%, #1C1C1C 150%), linear-gradient(to top, rgba(255, 255, 255, 0.40) 0%, rgba(0, 0, 0, 0.25) 200%);
	background-blend-mode: multiply;
}

.single-service:hover:after,
.single-service:hover:before {
	width: 50%;
	height: 2px;
	-webkit-transition: .3s;
	transition: .3s
}

.single-service:hover {
	box-shadow: 1px 3px 10px 0 rgba(0, 0, 0, 0.10)
}

.single-service h4 {
	font-size: 14px;
	line-height: 25px;
	font-weight: 400;
	color: #fff;
	font-family: 'Poppins';
	margin-bottom: 15px;
	text-transform: capitalize;
}


/*--- Seo sec end ---*/


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer#footer {
    width: 100%;
	background-image: linear-gradient(to right, #6d4d35 0%, #330f00 100%);
	padding: 15px;
	color: #fff !important;
	text-align: center;
}

@media (min-width: 320px) and (max-width: 768px) {
	footer#footer {
		background-image: linear-gradient(to right, #6d4d35 0%, #330f00 100%);
		padding: 15px;
		color: #fff;
		text-align: center;
	}
}

#footer .footer-top {
	padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
	margin-bottom: 30px;
}

#footer .footer-top h4 {
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	position: relative;
	padding-bottom: 12px;
}

#footer .footer-top .footer-links {
	margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#footer .footer-top .footer-links ul i {
	padding-right: 2px;
	color: rgba(255, 255, 255, 0.6);
	font-size: 18px;
	line-height: 1;
}

#footer .footer-top .footer-links ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
	padding-top: 0;
}

#footer .footer-top .footer-links ul a {
	color: rgba(255, 255, 255, 0.6);
	transition: 0.3s;
	display: inline-block;
	line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
	color: white;
}

#footer .copyright {
	text-align: center
}

#footer .credits {
	padding-top: 10px;
	text-align: center;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
}

#footer .credits a {
	color: rgba(255, 255, 255, 0.6);
	transition: 0.3s;
	font-weight: 600;
}

#footer .credits a:hover {
	color: #ffffff;
}