/*-----------------------------------------------------------------
Template Name  : Covida - Coronavirus Medical Prevention Template
Author         : HasnaaDesign
Version        : 1.0
Primary Use    : Prevention, Company
-----------------------------------------------------------------*/
/*-----------------------------------------------------------------
Table Of Contents
--------------------------------
 1. Global Styles
 2. Loading
 3. Navbar
 4. Home
 5. About
 6. Symptoms
 7. Spread Virus
 8. Prevention
 9. Our Team
 10. Call To Action
 11. FAQ
 12. Blog
 13. Contact
 14. Newsletter
 15. Footer
 16. Scroll To Top
 17. Media Queries
 18. Publication lists
-----------------------------------------------------------------*/

/* --------------------------------------
   1. Global Styles
-----------------------------------------*/

* {
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

body {
    font-family: 'Rubik', sans-serif;
	background-color: #fff;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

a,
a:hover,
a:focus,
a:active {
    color: #fff;
    text-decoration: none;
}

ul {
    margin-bottom: 0;
}

/*=========== Typography ============*/
h1 {
    font-size: 60px;
    font-weight: 800;
}

h2 {
    font-size: 40px;
    font-weight: 700;
}

h3 {
    font-size: 20px;
    font-weight: 600;
}

h4 {
    font-size: 18px;
    font-weight: 400;
}

h5 {
    font-size: 16px;
    font-weight: 400;
}

h6 {
    font-size: 15px;
    font-weight: 400;
}

/*=========== My Classes ============*/

.main-title {
    margin-bottom: 60px;
	text-align: center;
}

.main-title h3 {
    font-size: 20px;
    letter-spacing: .4px;
    background: linear-gradient(to right, #1e7e34 0%, #28a745 100%);
    -webkit-background-clip: text;
    color: transparent;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.main-title h4 {
    font-size: 16px;
    color: #323232;
    font-weight: 600;
    line-height: 1.3;
	text-transform: none;
}

.display-table {
    display: table;
    width: 100%;
}

.display-table-cell {
    display: table-cell;
    vertical-align: middle;
    min-height: 100%;
	height: 100vh;
	text-align: center;
}

.main-btn {
	position: relative;
    background: linear-gradient(to right, #1e7e34 0%, #28a745 100%);
    color: #fff;
    min-width: 150px;
    border-radius: 4px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.1px;
    text-align: center;
    padding: 15px 20px;
    border: 3px solid #28a745;
    outline: none;
    cursor: pointer;
    margin-right: 14px;
    overflow: hidden;
}

.main-btn span {
    position: relative;
    z-index: 2;
}

.main-btn:before {
    content: '';
    background-color: #28a745;
    position: absolute;
    top: 0;
    left: -25%;
    height: 104%;
    width: 0;
    -webkit-transform: skew(-22deg);
    -moz-transform: skew(-22deg);
    -ms-transform: skew(-22deg);
    -o-transform: skew(-22deg);
    transform: skew(-22deg);
    transition-duration: .6s;
    z-index: 1;
}

.main-btn:hover:before {
    width: 190%;
}

.main-btn:hover,
.custom-btn:hover {
	border: 2px solid #28a745;
}

.custom-btn {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    margin-right: 0;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.icon-anim {
    position: absolute;
	top: 0;
	left: 0;
	opacity: .2;
	-webkit-animation: iconAnim 3s infinite linear;
	animation: iconAnim 10s infinite linear;
}

@-webkit-keyframes iconAnim {
	0% {
	   -webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
		opacity: .2;
    }
	
	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
		opacity: .1;
    }
}
@-keyframes iconAnim {
	0% {
	   -webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
		opacity: .78;
    }
	
	50% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
		opacity: .1;
    }
	
	100% {
	   -webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
		opacity: .78;
    }
}

/* --------------------------------------
   2. Loading
-----------------------------------------*/

.loading {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 9999999;
	background-color: #fff;
}

.loading .loading-content {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 200px;
	height: 50px;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.loading .loading-content .inner-item {
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: 50px;
	height: 50px;
	background: linear-gradient(to right, #1e7e34 0%, #28a745 100%);;
	border-radius: 50%;
	-webkit-transform: scale(.1);
	-moz-transform: scale(.1);
	-ms-transform: scale(.1);
	-o-transform: scale(.1);
	transform: scale(.1);
	-webkit-transform-origin: center left;
	-moz-transform-origin: center left;
	-ms-transform-origin: center left;
	-o-transform-origin: center left;
  	transform-origin: center left;
	-webkit-animation: loading 4s infinite;
	animation: loading 4s infinite;
}

.loading .loading-content .inner-item:nth-of-type(2) {
	-webkit-animation-delay: .3s;
	animation-delay: .3s;
}

.loading .loading-content .inner-item:nth-of-type(3) {
	-webkit-animation-delay: .6s;
	animation-delay: .6s;
}

.loading .loading-content .inner-item:nth-of-type(4) {
	-webkit-animation-delay: .9s;
	animation-delay: .9s;
}

.loading .loading-content .inner-item:nth-of-type(5) {
	-webkit-animation-delay: 1.2s;
	animation-delay: 1.2s;
}

@-webkit-keyframes loading {
	0% {
		-webkit-transform: scale(.1);
		-moz-transform: scale(.1);
		-ms-transform: scale(.1);
		-o-transform: scale(.1);
		transform: scale(.1);
	}
	
	45% {
		left: 120px;
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
	
	90% {
		left: 294px;
		-webkit-transform: scale(.1);
		-moz-transform: scale(.1);
		-ms-transform: scale(.1);
		-o-transform: scale(.1);
		transform: scale(.1);
	}
}

@keyframes loading {
	0% {
		-webkit-transform: scale(.1);
		-moz-transform: scale(.1);
		-ms-transform: scale(.1);
		-o-transform: scale(.1);
		transform: scale(.1);
	}

	45% {
		left: 120px;
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}

	90% {
		left: 294px;
		-webkit-transform: scale(.1);
		-moz-transform: scale(.1);
		-ms-transform: scale(.1);
		-o-transform: scale(.1);
		transform: scale(.1);
	}
}

/* --------------------------------------
   3. Navbar
-----------------------------------------*/

.header-inner {
	background:linear-gradient(to right, #f8f9fa 0%, #1e7e34 100%);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.header-inner.active-nav {
	border-bottom: rgba(0, 0, 0, .1);
	box-shadow: 0 0 15px rgba(0, 0, 0, .05);
}

.header-inner .my-logo {
	position: relative;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    display: inline-block;
	line-height: 79px;
}

.header-inner .my-logo img {
    position: relative;
    top: -1px;
    margin-right: 4px;
}

.header-inner .menu-toggle {
    background: #28a745;
    border-radius: 3px;
	float: right;
	padding: 8px;
    margin: 20px 0;
	border: none;
    outline: none;
    cursor: pointer;
    display: none;
    z-index: 2;
}

.header-inner .menu-toggle .bar {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff;
}

.header-inner .menu-toggle .bar:nth-child(2) {
    margin: 6px 0;
}

.header-inner.menu-active .menu-toggle .bar:nth-child(2) {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.header-inner.menu-active .menu-toggle .bar:first-child {
    -webkit-transform: translateY(8px) rotate(45deg);
    -moz-transform: translateY(8px) rotate(45deg);
    -ms-transform: translateY(8px) rotate(45deg);
    -o-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
}

.header-inner.menu-active .menu-toggle .bar:last-child {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    -moz-transform: translateY(-8px) rotate(-45deg);
    -ms-transform: translateY(-8px) rotate(-45deg);
    -o-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
}

.header-inner .main-menu {
	position: relative;
}

.header-inner .nav-search {
	float: right;
	line-height: 78px;
	margin-left: 10px;
	padding-left: 0;
}

.header-inner .nav-search li {
	display: inline-block;
	margin-right: 10px;
}

.header-inner .nav-search li:last-child {
	margin-right: 0;
}

.header-inner .nav-search li a {
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.header-inner .nav-search li a.fa-search {
	font-weight: 400;
}

.header-inner .nav-search li a:hover {
	color: #28a745;
}

.header-inner .search-form {
	position: absolute;
    top: 79px;
    right: 0;
    width: 295px;
    padding: 12px;
	background: #fff;
    border-top: 2px solid #1e7e34;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-ms-transform: scaleY(0);
	-o-transform: scaleY(0);
	transform: scaleY(0);
	opacity: 0;
    visibility: hidden;
    z-index: 9999;
}

.header-inner .search-form.active {
	-webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-ms-transform: scaleY(1);
	-o-transform: scaleY(1);
	transform: scaleY(1);
	opacity: 1;
	visibility: visible;
}

.header-inner .search-form input[type="search"] {
	background: #f7f7fb;
    color: #353535;
    width: 100%;
    height: 50px;
    padding: 0 50px 0 18px;
    border: none;
    outline: none;
	font-size: 14px;
    font-weight: 600;
}

.header-inner .search-form .search-btn {
	position: absolute;
    top: 12px;
    right: 12px;
    width: 50px;
    height: 50px;
    background: linear-gradient(to right, #1e7e34 0%, #28a745 100%);
    color: #fff;
    cursor: pointer;
    outline: none;
    border: none;
}

.header-inner .search-form .search-btn:hover {
    background: linear-gradient(to left, #1e7e34 0%, #28a745 100%);;
}

.header-inner .navbar {
	float: right;
	padding: 0;
}

.header-inner .navbar .nav > li {
	position: relative;
	margin-right: 15px;
}

.header-inner .navbar .nav li:last-child {
	margin-right: 0;
}

.header-inner .navbar .nav li a {
    display: block;
    color: #fff;
    padding: 30px 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.header-inner .navbar .nav li.active a,
.header-inner .navbar .nav li:hover a {
	color: #28a745;
}

.header-inner .navbar .nav li a i {
	margin-left: 5px;
	font-weight: 600;
}

.header-inner .navbar .nav .dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	width: 225px;
	padding: 0;
	background: #fff;
	border-bottom: 3px solid #1e7e34;
	list-style: none;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-ms-transform: scaleY(0);
	-o-transform: scaleY(0);
	transform: scaleY(0);
	transform-origin: 0 0;
}

.header-inner .navbar .nav li:hover .dropdown {
	opacity: 1;
	visibility: visible;
    -webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-ms-transform: scaleY(1);
	-o-transform: scaleY(1);
	transform: scaleY(1);
}

.header-inner .navbar .nav li .dropdown li a {
	background: transparent;
	color: #8e8d8d;
	padding: 12px 15px;
    border-bottom: 1px solid #f3f1f1;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.header-inner .navbar .nav li .dropdown li a:hover {
	background: #f7f7fb;
	padding-left: 18px;
}

.header-inner .navbar .nav li .dropdown li a:before {
	display: none;
}

/* --------------------------------------
   4. Home
-----------------------------------------*/

.home {
    position: relative;
    overflow: hidden;
	height: 100vh;
	background: linear-gradient(to right, #1e7e34 0%, #28a745 100%);
	margin-top: 79px;
}

.home .home-content h5 {
	position: relative;
	color: #b9ebf7;
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 5px;
    margin-left: 55px;
	text-align: left;
}

.home .home-content h5:before {
    content: '';
    position: absolute;
    top: 45%;
    left: -57px;
    background-color: #b9ebf7;
    width: 48px;
    height: 2px;
}

.home .home-content h1 {
	color: #fff;
    font-size: 37px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: left;
}

.home .home-content p {
    color: #fff;
    line-height: 1.6;
	letter-spacing: .3px;
    margin-bottom: 30px;
	text-align: left;
}

.home .home-content .my-btn {
    text-align: left;
}

.home .home-content .custom-btn {
    margin-right: 14px;
}

.home .home-image img {
    opacity: .78;
}

/* --------------------------------------
   5. About
-----------------------------------------*/

.about {
	position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
	overflow: hidden;
}

.about .main-title {
    margin-bottom: 20px;
	text-align: left;
}

.about .about-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #888;
    margin-bottom: 20px;
}

.about .about-info p:first-of-type {
    margin-bottom: 10px;
}

.about .about-info ul {
    margin-bottom: 25px;
}

.about .about-info ul li {
    font-size: 16px;
    line-height: 2.4;
    color: #888;
}

.about .about-info ul li i {
    background: linear-gradient(to right, #1d87b9 0%, #61d0e0 100%);
    -webkit-background-clip: text;
    color: transparent;
    width: 30px;
    height: 30px;
    line-height: 28px;
    text-align: center;
    border: 1px solid #61d0e0;
    border-radius: 50%;
    font-size: 16px;
    margin-right: 10px;
}

.about .about-image {
    position: relative;
}

.about .about-image img {
	position: relative;
    display: block;
    max-width: 100%;
    height: auto;
	z-index: 2;
}

/* --------------------------------------
   6. Symptoms
-----------------------------------------*/

.symptoms {
    padding-top: 100px;
	background-color: #f3fffe;
	position: relative;
	overflow: hidden;
}

.symptoms:before {
	content: "";
    position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('../images/icon-anime.png') center top repeat;
	opacity: .04;
}

.symptoms .icon-anim {
	left: auto;
	right: 0;
}

.symptoms .main-title {
    margin-bottom: 20px;
	text-align: left;
}

.symptoms .Symptoms-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #888;
    margin-bottom: 25px;
}

.symptoms .Symptoms-info p:first-of-type {
    margin-bottom: 10px;
}

.symptoms .Symptoms-info ul li {
    padding: 16px 10px;
    background: linear-gradient(to right, #1e7e34 0%, #28a745 100%);
    margin-bottom: 20px;
    border-radius: 6px;
    color: #fff;
    width: 49%;
    float: left;
}

.symptoms .Symptoms-info ul li:hover {
    background: linear-gradient(to left, #1e7e34 0%, #28a745 100%);
}

.symptoms .Symptoms-info ul li:nth-child(even) {
    margin-left: 2%;
}

.symptoms .Symptoms-info ul li .fa-check {
    width: 25px;
    height: 25px;
    line-height: 23px;
    text-align: center;
    border: 1px solid #f8f9fa;
    border-radius: 50%;
    margin-right: 10px;
    color: #f8f9fa;
    font-size: 15px;
}

.symptoms .symptoms-image {
    position: relative;
	right: -25px;
}

/* --------------------------------------
   7. Spread Virus
-----------------------------------------*/

.spread-virus {
    padding-top: 100px;
    padding-bottom: 70px;
	position: relative;
	overflow: hidden;
}

.spread-virus .spread-info .spread-box {
    background: #fff;
    padding: 30px 25px;
    text-align: center;
    border-radius: 5px;
	position: relative;
	border: 1px solid #28a745;
	margin-bottom: 30px;
}

.spread-virus .spread-info .spread-box:before {
	content: none;
    position: absolute;
    bottom: -12px;
    left: 12px;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    z-index: -1;
    background: linear-gradient(to right, #1e7e34 0%, #28a745 100%);
}

.spread-virus .spread-info .spread-box.two:before,
.spread-virus .spread-info .spread-box:hover:before {
    content: "";
}

.spread-virus .spread-info .spread-box .icon-spread {
    position: absolute;
	top: 0;
	right: 0;
	opacity: .015;
}

.spread-virus .spread-info .spread-box h4 {
    font-size: 18px;
    color: #323232;
    font-weight: 600;
    line-height: 1.3;
    margin: 10px 0;
    text-transform: capitalize;
}

.spread-virus .spread-info .spread-box p {
    font-size: 15px;
    line-height: 1.5;
    color: #888;
    margin-bottom: 0;
}

/* --------------------------------------
   8. Prevention
-----------------------------------------*/

.prevention {
    padding-top: 100px;
    padding-bottom: 65px;
	background-color: #f3fffe;
	position: relative;
	overflow: hidden;
}

.prevention .icon-anim {
    left: auto;
    right: 0;
}

.prevention .left-prevention,
.prevention .right-prevention {
    border-radius: 5px;
	position: relative;
	margin-bottom: 35px;
}

.prevention .left-prevention:before,
.prevention .right-prevention:before {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 12px;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    z-index: 1;
    background: linear-gradient(to right, #f980a1 0%, #e0644c 100%);
}

.prevention .right-prevention:before {
    background: linear-gradient(to right, #1e7e34 0%, #28a745 100%);
}

.prevention .left-prevention .prevention-content,
.prevention .right-prevention .prevention-content {
	background: #fff;
    position: relative;
    z-index: 2;
    padding: 30px 25px;
    border: 1px solid #f1917f;
    border-radius: 5px;
}

.prevention .right-prevention .prevention-content {
    border: 1px solid #28a745;
}

.prevention .left-prevention h3,
.prevention .right-prevention h3 {
    background: linear-gradient(to right, #f980a1 0%, #e0644c 100%);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 35px;
}

.prevention .right-prevention h3 {
    background: linear-gradient(to right, #1e7e34 0%, #28a745 100%);
    -webkit-background-clip: text;
    color: transparent;
}

.prevention .prevention-box {
    padding: 0;
    padding-left: 100px;
    position: relative;
    margin-bottom: 30px;
}

.prevention .prevention-box:last-of-type {
    margin-bottom: 0;
}

.prevention .prevention-box h4 {
    font-size: 17px;
    color: #323232;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.prevention .prevention-box p {
    font-size: 15px;
    line-height: 1.5;
    color: #888;
    margin-bottom: 0;
}

.prevention .prevention-box i:before{
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    margin: 0;
    font-size: 45px;
    font-weight: 200;
    width: 68px;
    height: 70px;
    line-height: 69px;
    text-align: center;
    border-radius: 5px;
}

.prevention .left-prevention .prevention-box i:before {
	color: #fff;
    background: linear-gradient(to right, #f980a1 0%, #e0644c 100%);
}

.prevention .right-prevention .prevention-box i:before {
	color: #fff;
    background: linear-gradient(to right, #1e7e34 0%, #28a745 100%);
}

/* --------------------------------------
   9. Our Team
-----------------------------------------*/

.team {
    padding-top: 100px;
    padding-bottom: 100px;
    overflow: hidden;
	background-color: #fff;
	position: relative;
}

.team .member .member-img {
    border-radius: 8px;
	position: relative;
    overflow: hidden;
}

.team .member .member-img img {
    display: block;
    max-width: 100%;
    height: auto;
}

.team .member .member-img:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform:scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.team .member .member-img .overlay {
    position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: rgba(0, 0, 0, .5);
	transform: scaleX(0);
	-webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.team .member .member-img:hover .overlay {
	transform: scaleX(1);
}

.team .member .member-img .overlay .social-media {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}

.team .member .member-img .social-media i {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(to right, #1d87b9 0%, #61d0e0 100%);
    color: #fff;
	margin-right: 6px;
	transform: translateY(40px);
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.team .member .member-img .social-media i:hover {
    background: linear-gradient(to left, #1d87b9 0%, #61d0e0 100%);
}

.team .member .member-img:hover .social-media i {
	transform: translateY(0);
	visibility: visible;
	opacity: 1;
}

.team .member .member-img:hover .social-media .fa-facebook {
	-webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}

.team .member .member-img:hover .social-media .fa-twitter {
	-webkit-transition-delay: .15s;
    -o-transition-delay: .15s;
    -moz-transition-delay: .15s;
    -o-transition-delay: .15s;
    transition-delay: .15s;
}

.team .member .member-img:hover .social-media .fa-google-plus {
    -webkit-transition-delay: .3s;
    -o-transition-delay: .3s;
    -moz-transition-delay: .3s;
    -o-transition-delay: .3s;
    transition-delay: .3s;
}

.team .member .member-img:hover .social-media .fa-instagram {
    -webkit-transition-delay: .45s;
    -o-transition-delay: .45s;
    -moz-transition-delay: .45s;
    -o-transition-delay: .45s;
    transition-delay: .45s;
}

.team .member .member-info .member-name {
    color: #323232;
    font-size: 20px;
    line-height: 1;
    letter-spacing: .3px;
    margin-top: 20px;
    margin-bottom: 6px;
    text-align: center;
    font-weight: 600;
    text-transform: capitalize;
}

.team .member .member-info span {
	display: block;
    background: linear-gradient(to right, #1e7e34 0%, #28a745 100%);
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 500;
    text-align: center;
}

/* --------------------------------------
   10. Call To Action
-----------------------------------------*/

.call-to-action {
    background: linear-gradient(to right, #1e7e34 0%, #28a745 100%);
    color: #fff;
    padding: 65px 0;
    position: relative;
	overflow: hidden;
}

.call-to-action:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/icon-anime2.png) center top repeat;
    opacity: .06;
}

.call-to-action h3 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: .2px;
    margin-bottom: 30px;
    text-transform: capitalize;
}

/* --------------------------------------
   11. FAQ
-----------------------------------------*/

.faq {
    background-color: #fff;
	padding-top: 100px;
	padding-bottom: 100px;
	position: relative;
	overflow: hidden;
}

.faq .icon-anim {
    left: auto;
    right: 0;
}

.faq .card {
    border: none;
    margin-bottom: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .15);
    border-radius: 0;
}

.faq .card:last-of-type {
    margin-bottom: 0;
}

.faq .card .card-header {
    padding: 0;
	background-color: transparent;
	border-bottom: none;
}

.faq .card .card-header h5 .btn-link {
    position: relative;
    padding: 20px 40px 20px 20px;
    display: block;
    text-decoration: none;
    background: linear-gradient(to right, #1e7e34 0%, #28a745 100%);
    color: #fff;
    font-size: 17px;
	line-height: 1.1;
	border: none;
    border-radius: 5px 5px 0 0;
	width: 100%;
	text-align: left;
	white-space: initial;
}

.faq .card .card-header .btn-link:after {
    content: '\f107';
	font-family: "FontAwesome";
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: inherit;
    color: #fff;
}

.faq .card .card-header .btn-link[aria-expanded="true"]:after {
    content: "\f106";
}

.faq .card .card-body {
	font-size: 15px;
    line-height: 1.7;
    margin: 0;
    color: #888;
    padding: 20px;
}

/* --------------------------------------
   12. Blog
-----------------------------------------*/

.blog {
    padding-top: 100px;
    padding-bottom: 100px;
	background: #f3fffe;
	position: relative;
	overflow: hidden;
}

.blog .post {
	background-color: #fff;
    border: 1px solid #e8f9f7;
    border-radius: 4px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .05);
    margin-bottom: 30px;
}

.blog .post-img img {
	display: block;
	max-width: 100%;
	height: auto;
}

.blog .post .post-content {
    padding: 20px 0;
	position: relative;
}

.blog .post .post-content .post-title h4 {
    color: #3e3e3e;
    letter-spacing: .5px;
    margin-bottom: 15px;
    font-weight: 600;
	padding: 0 20px;
}

.blog .post .post-content:hover .post-title h4 {
    background: linear-gradient(to right, #1e7e34 0%, #28a745 100%);
    -webkit-background-clip: text;
    color: transparent;
}

.blog .post .post-content .post-text p {
    line-height: 1.8;
    font-weight: 400;
    padding: 0 20px;
    margin-bottom: 0;
    color: #888;
    font-size: 15px;
}

.blog .post .post-content .post-info {
    margin-bottom: 0;
    padding: 15px 20px 0;
	overflow: hidden;
}

.blog .post .post-content .post-info li {
    display: inline-block;
    color: #888;
	letter-spacing: .3px;
	font-weight: 500;
	font-size: 15px;
	line-height: 1;
}

.blog .post .post-content .post-info li .post-more {
    background: linear-gradient(to right, #1e7e34 0%, #28a745 100%);
    -webkit-background-clip: text;
    color: transparent;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
}

.blog .post .post-content .post-info li .post-more i {
    margin-left: 4px;
	background: linear-gradient(to right, #1e7e34 0%, #28a745 100%);
    -webkit-background-clip: text;
    color: transparent;
	font-weight: 600;
}

.blog .post .post-content .post-date {
    position: absolute;
    top: -48px;
    right: -15px;
    width: 60px;
    height: 60px;
    padding: 13px;
    background: linear-gradient(to right, #1e7e34 0%, #28a745 100%);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .3px;
}

.blog .post .post-content .post-date span {
    display: block;
    line-height: 1;
}

.blog .my-btn {
    text-align: center;
	margin-top: 20px;
}

/* --------------------------------------
   13. Contact
-----------------------------------------*/

.contact {
	position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    overflow: hidden;
	background-color: #fff;
}

.contact .icon-anim {
    left: auto;
    right: 0;
}

.contact .contact-form {
	position: relative;
}

.contact .contact-form .form-group {
    position: relative;
    margin-bottom: 40px;
}

.contact .contact-form .form-group .form-control {
    background-color: transparent;
    color: #000;
    border: 0;
    border-bottom: 1px solid #28a745;
    outline: none;
    box-shadow: none;
    border-radius: 0;
    height: 46px;
    padding: 12px;
}

.contact .contact-form .form-group textarea.form-control {
    height: 120px;
    resize: none;
    padding-top: 18px;
}

.contact .contact-form .form-group label {
    position: absolute;
    top: 13px;
    left: 12px;
    width: 100%;
    margin-bottom: 0;
    font-weight: 400;
    cursor: text;
    color: #888;
	font-size: 15px;
}

.contact .contact-form .form-group .form-control:focus ~ label,
.contact .contact-form .form-group input:not([value=""]) ~ label,
.contact .contact-form .form-group textarea:not([data-value=""]) ~ label {
    top: -16px;
    left: 0;
    font-size: 14px;
    letter-spacing: .5px;
	font-weight: 500;
}

.contact .contact-form .form-group .form-control:focus ~ label {
    background: linear-gradient(to right, #1e7e34 0%, #28a745 100%);
    -webkit-background-clip: text;
    color: transparent;
}

.contact .contact-form .form-group .input-border {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #1d87b9 0%, #61d0e0 100%);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.contact .contact-form .form-group .form-control:focus ~ .input-border {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.contact .contact-form .contact-btn {
    float: right;
    margin: 0;
}

.contact .contact-form .form-message {
    position: absolute;
    left: 0;
    bottom: -153px;
    width: 100%;
    color: #fff;
    border-radius: 5px;
    font-size: 15px;
    padding: 12px;
    text-transform: uppercase;
}

.contact .contact-form .form-message.success {
	background-color: #37983b;
}

.contact .contact-form .form-message.error {
	background-color: #f54033;
}

/* --------------------------------------
   14. Newsletter
-----------------------------------------*/

.newsletter {
    background: linear-gradient(to right, #1e7e34 0%, #28a745 100%);
    padding: 60px 40px;
}

.newsletter .newsletter-inner h2 {
	font-size: 26px;
	font-weight: 600;
    letter-spacing: .2px;
    color: #fff;
    margin-top: 15px;
}

.newsletter .newsletter-inner .form-group {
   	margin: 0;
    margin-top: 4px;
	overflow: hidden;
}

.newsletter .newsletter-inner .form-control {
    float: left;
    width: 70%;
    margin-right: 3%;
    color: #777;
    outline: none;
    border: none;
    border-radius: 4px;
    height: 50px;
    padding: 12px 30px;
    background: #f7f6f6;
}

.newsletter .newsletter-inner .main-btn {
    float: left;
    width: 27%;
	min-width: 155px;
    margin: 0;
	border-color: #fff;
	padding: 13px 20px;
	height: 50px;
}

.newsletter .newsletter-inner .main-btn:hover {
	border-color: #fff;
}

/* --------------------------------------
   15. Footer
-----------------------------------------*/

.footer {
	background-color: #343a40;
	position: relative;
	overflow: hidden;
}

.footer .icon-spread {
	position: absolute;
    top: -5px;
    right: -5px;
    opacity: .1;
}

.footer .footer-top { 
	padding-top: 80px;
    padding-bottom: 80px;
	border-bottom: 1px solid #fff;
}

.footer .footer-top .footer-menu {
    position: relative;
	z-index: 1;
}

.footer .footer-top .footer-logo { 
	margin-bottom: 20px;
}

.footer .footer-top .footer-logo .my-logo {
	position: relative;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    display: inline-block;
    line-height: 1;
    top: -6px;
}

.footer .footer-top .footer-logo .my-logo img {
    position: relative;
    top: -1px;
    margin-right: 4px;
}

.footer .footer-top ul li {
	font-size: 16px;
    margin-bottom: 15px;
	color: #e0dede;
}

.footer .footer-top ul li:last-of-type {
    margin-bottom: 10px;
}

.footer .footer-top .social-media {
	margin-right: 0;
}

.footer .footer-top .social-media li {
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 0;
}

.footer .footer-top .social-media li i {
	display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 36px;
    text-align: center;
    font-size: 17px;
    background: transparent;
    background: linear-gradient(to right, #f8f9fa 0%, #e9ecef 100%);
    -webkit-background-clip: text;
    color: transparent;
    border: 1px solid #f8f9fa;
    border-radius: 50%;
}

.footer .footer-top .social-media li i:hover {
	background: linear-gradient(to right, #1e7e34 0%, #28a745 100%);;
	color: #fff;
}

.footer .footer-top .footer-item h4 {
	color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .7px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.footer .footer-top .footer-item ul li a {
	color: #e0dede;
	padding-left: 10px;
}

.footer .footer-top .footer-item ul li a:hover {
	background: linear-gradient(to right, #1e7e34 0%, #28a745 100%);
    -webkit-background-clip: text;
    color: transparent;
	padding-left: 14px;
}

.footer .footer-top .footer-item ul li a:before {
    content: '\f105';
    font-family: 'FontAwesome';
    position: relative;
    left: -10px;
	color: #e0dede;
}

.footer .footer-top .footer-item ul li a:hover:before {
    background: linear-gradient(to right, #1e7e34 0%, #28a745 100%);
    -webkit-background-clip: text;
    color: transparent;
}

.footer .footer-bottom { 
	padding-top: 20px;
    padding-bottom: 20px;
}

.footer .footer-bottom .copyright p { 
	color: #e0dede;
	font-size: 16px;
	letter-spacing: .3px;
	margin: 0;
}

.footer .footer-bottom .copyright p span { 
	font-family: 'Poppins', sans-serif;
	background: linear-gradient(to right, #1e7e34 0%, #28a745 100%);
    -webkit-background-clip: text;
    color: transparent;
	font-weight: 600;
	letter-spacing: .5px;
}

/* --------------------------------------
   16. Scroll To Top
-----------------------------------------*/

.scroll-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 52px;
    height: 52px;
    line-height: 48px;
	font-size: 17px;
    text-align: center;
    color: #fff;
	background: linear-gradient(to right, #1e7e34 0%, #28a745 100%);
	border: 2px solid #28a745;
	border-radius: 50%;
    z-index: 999;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transition: all .6s linear;
    -moz-transition: all .6s linear;
    -o-transition: all .6s linear;
    -ms-transition: all .6s linear;
    transition: all .6s linear;
	overflow: hidden;
}

.scroll-top.active {
    -webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.scroll-top:hover {
    -webkit-transform: translateY(-2px);
	-moz-transform: translateY(-2px);
	-o-transform: translateY(-2px);
	-ms-transform: translateY(-2px);
	transform: translateY(-2px);
}

.scroll-top span {
    position: relative;
    z-index: 2;
}

.scroll-top:before {
    content: '';
    background: linear-gradient(to right, #1e7e34 0%, #28a745 100%);;
    position: absolute;
    top: 0;
    left: -25%;
    height: 104%;
    width: 0;
    -webkit-transform: skew(-22deg);
    -moz-transform: skew(-22deg);
    -ms-transform: skew(-22deg);
    -o-transform: skew(-22deg);
    transform: skew(-22deg);
    transition-duration: .6s;
    z-index: 1;
}

.scroll-top:hover:before {
    width: 190%;
}

/* --------------------------------------
   17. Media Queries
-----------------------------------------*/

/* Extra Large Devices */
@media (min-width: 1200px) {}

/* Large devices (desktops, less than 1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    
    /*=========== Navbar ============*/
	.header-inner .my-logo {
		font-size: 19px;
	}
	
	.header-inner .my-logo .flaticon-chakra:before {
		font-size: 39px;
		margin-right: 5px;
	}
	
    .header-inner .navbar .nav > li {
		margin-right: 10px;
	}
	
    /*=========== About ============*/
    .about .about-image {
        margin-top: 40px;
    }
	
	/*=========== Newsletter ============*/
	.newsletter .newsletter-inner h2 {
        font-size: 25px;
    }
	
    .newsletter .newsletter-inner .form-group {
        position: relative;
    }
	
	.newsletter .newsletter-inner .form-control {
        float: none;
        width: 100%;
        margin-right: 0;
        border-radius: 4px;
        height: 60px;
    }
	
	.newsletter .newsletter-inner .main-btn {
       float: none;
       width: auto;
       position: absolute;
       top: 50%;
       right: 2.5px;
       transform: translateY(-50%);
       margin: 0;
       border-image: 1 linear-gradient(to right, #457dbc 0%, #59c7db 100%);
       height: 55px;
    }
	
	.newsletter .newsletter-inner .main-btn:hover {
        border-image: none;
		border-color: #59c7db;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
	
	.header-inner .navbar {
		float: left;
	}
	
	.header-inner .navbar-nav {
		flex-direction: row;
	}
	
	.header-inner .navbar .nav > li {
		margin-right: 24px;
	}
	
	.header-inner .navbar .nav li a {
		padding: 30px 0;
		font-weight: 600;
	}
	
    /*=========== Home ============*/
	.home .home-content h5 {
        font-size: 20px;
    }
	
	.home .home-content h1 {
        font-size: 27px;
    }
	
	.home .home-content p {
        font-size: 15px;
    }
	
    /*=========== Symptoms ============*/
	.symptoms .symptoms-image {
		margin-top: 40px;
		right: auto;
    }
	
    /*=========== Our Team ============*/
	.team {
        padding-bottom: 70px;
    }
	
	.team .member {
        margin-bottom: 30px;
    }
	
	/*=========== FAQ ============*/
	.faq .faq-image {
        margin-bottom: 30px;
    }
	
	.faq .faq-image img {
        width: 100%;
    }

	/*=========== Newsletter ==========*/
	.newsletter .newsletter-inner h2 {
        margin-top: 0;
    }
	
	.newsletter .newsletter-inner .form-group {
        margin-top: 20px;
    }
	
	/*=========== Footer ==========*/
	.footer .footer-top {
        padding-bottom: 40px;
    }
	.footer .footer-top .footer-menu {
        margin-bottom: 30px;
    }
	
	.footer .footer-top .social-media li i {
        width: 30px;
        height: 30px;
        line-height: 28px;
        font-size: 16px;
    }
}

/* Small Devices */
@media (max-width: 767.98px) {
	
	.main-title {
        margin-bottom: 55px;
    }
    
    /*=========== Navbar ============*/	
	.header-inner .menu-toggle {
		display: block;
	}
	
	.header-inner .nav-search {
		display: none;
	}
	
	.header-inner .navbar {
		float: none;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		background-color: #fff;
		z-index: 99999;
		opacity: 0;
		visibility: hidden;
		-webkit-transform: scaleY(0);
		-moz-transform: scaleY(0);
		-ms-transform: scaleY(0);
		-o-transform: scaleY(0);
		transform: scaleY(0);
		transform-origin: 0 0;
	}
	
	.header-inner.menu-active .navbar {
		opacity: 1;
		visibility: visible;
		-webkit-transform: scaleY(1);
		-moz-transform: scaleY(1);
		-ms-transform: scaleY(1);
		-o-transform: scaleY(1);
		transform: scaleY(1);
		max-height: 543px;
		overflow-y: auto;
		overflow-x: hidden;
	}
	
	.header-inner .navbar .nav > li {
		margin-right: 0;
	}
	
	.header-inner .navbar .nav li a {
		padding: 12px 8px;
		border-bottom: 1px solid #eee;
		font-weight: 600;
		color: #989797;
	}
	
	.header-inner .navbar .nav li a:before {
		content: none;
	}
	
	.header-inner .navbar .nav li a i {
		position: absolute;
		right: 11px;
		top: 0;
		font-size: 15px;
		line-height: 44px;
	}
	
	.header-inner .navbar .nav .dropdown {
		position: relative;
		top: auto;
		left: auto;
		width: 100%;
		opacity: 1;
		visibility: visible;
		-webkit-transform: scaleY(1);
		-moz-transform: scaleY(1);
		-ms-transform: scaleY(1);
		-o-transform: scaleY(1);
		transform: scaleY(1);
		display: none;
		transition: none;
	}
	
	.header-inner .navbar .nav li .dropdown li a {
		padding-left: 25px;
	}
	
	.header-inner .navbar .nav li .dropdown li a:hover {
		padding-left: 28px;
	}
	
	/*=========== Home ============*/
	.home .home-content h5 {
        font-size: 18px;
		margin-right: 45px;
    }
	
	.home .home-content h5:before {
        left: -46px;
        width: 40px;
    }
	
	/*=========== About ============*/
	.about {
        padding-top: 80px;
        padding-bottom: 80px;
    }
	
	.about .about-image {
        margin-bottom: 30px;
    }
	
	/*=========== Symptoms ============*/
	.symptoms {
        padding-top: 80px;
    }
	
	.symptoms .symptoms-image {
		margin-top: 40px;
		right: auto;
    }
	
	/*=========== Spread Virus ============*/
	.spread-virus {
        padding-top: 80px;
        padding-bottom: 50px;
    }
	
	/*=========== Prevention ============*/
	.prevention {
        padding-top: 80px;
        padding-bottom: 45px;
    }
	
	/*=========== Our Team ============*/
	.team {
        padding-top: 80px;
        padding-bottom: 50px;
    }
	
	.team .member {
        margin-left: 80px;
        margin-right: 80px;
		margin-bottom: 30px;
    }
	
	/*=========== FAQ ============*/
	.faq {
        padding-top: 80px;
        padding-bottom: 65px;
    }
	
	/*=========== FAQ ============*/
	.faq .faq-image {
        margin-bottom: 30px;
    }
	
	.faq .faq-image img {
        width: 100%;
    }
	
	/*=========== Blog ============*/
	.blog {
        padding-top: 80px;
        padding-bottom: 80px;
    }

	/*=========== Contact ============*/
	.contact {
        padding-top: 80px;
        padding-bottom: 80px;
    }
	
	/*=========== Newsletter ============*/
    .newsletter .newsletter-inner .form-group {
        position: relative;
        margin-top: 20px;
    }
	
	.newsletter .newsletter-inner .form-control {
        float: none;
        width: 100%;
        margin-right: 0;
        border-radius: 4px;
        height: 60px;
    }
	
	.newsletter .newsletter-inner .main-btn {
       float: none;
       width: auto;
       position: absolute;
       top: 50%;
       right: 2.5px;
       transform: translateY(-50%);
       margin: 0;
       border-image: 1 linear-gradient(to right, #457dbc 0%, #59c7db 100%);
       height: 55px;
   }
	
	/*=========== Footer ============*/
	.footer .footer-top {
        padding-bottom: 50px;
    }
	
	.footer .footer-top .footer-menu {
        margin-bottom: 30px;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
	
	.main-title h3 {
        font-size: 16px;
    }
	
	.main-title h4 {
        font-size: 21px;
    }
    
	/*=========== Navbar ============*/	
	.header-inner .my-logo {
        padding-left: 15px;
        width: 55px;
	}
	.header-inner .my-logo #mobile{
		display: block !important;
	}
	.header-inner .my-logo #web{
		display: none !important;
	}
	.header-inner .menu-toggle {
		margin-right: 15px;
	}
	
	/*=========== Home ============*/	
	.home .home-content h1 {
        font-size: 26px;
    }
	
	.home .home-content p {
        font-size: 15px;
    }
	
	.home .home-content .custom-btn {
		margin-top: 12px;
    }
	
	/*=========== About ============*/	
	.about .about-info p,
	.about .about-info ul li {
        font-size: 14px;
    }
	
	/*=========== Symptoms ============*/
	.symptoms .Symptoms-info p {
        font-size: 15px;
    }
	
	.symptoms .Symptoms-info ul li {
        width: 100%;
        float: none;
		font-size: 15px;
    }
	
	.symptoms .Symptoms-info ul li:nth-child(even) {
        margin-left: 0;
    }
	
	/*=========== Prevention ============*/
	.prevention .prevention-box {
        padding-left: 0;
    }
	
	.prevention .left-prevention h3,
	.prevention .right-prevention h3 {
        font-size: 24px;
    }
	
	.prevention .prevention-box i:before {
        position: static;
        display: block;
        margin-bottom: 8px;
        transform: translateY(0);
        margin-bottom: 12px;
    }
	
	.prevention .prevention-box h4 {
        font-size: 16px;
    }
		
	/*=========== Call To Action ============*/
	.call-to-action h3 {
        font-size: 30px;
    }
	
	/*=========== FAQ ============*/
	.faq .card .card-header h5 .btn-link {
        font-size: 16px;
    }
	
	/*=========== Our Team ============*/
	.team .member {
        margin-left: 0;
        margin-right: 0;
    }
	
	.team .member .member-img img {
        width: 100%;
    }
	
	/*=========== Blog ============*/
	.blog .post .post-content .post-title h4 {
		font-size: 17px;
    }
	
	/*=========== Newsletter ============*/
	.newsletter {
        padding: 0;
    }
	
	.newsletter .newsletter-inner {
        padding: 40px 25px;
    }
	
	.newsletter .newsletter-inner h2 {
        font-size: 20px;
    }
	
	.newsletter .newsletter-inner p {
        font-size: 14px;
    }
	
	.newsletter .newsletter-inner .form-control {
        height: 50px;
    }
	
	.newsletter .newsletter-inner .main-btn {
        position: static;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
		min-width: 140px;
        margin-top: 20px;
		border-color: #fff;
        height: 50px;
    }
	
	/*=========== Footer ============*/
	.footer .flaticon-lotus:before {
        top: 38%;
        font-size: 28em;
    }
	
	.footer .footer-bottom .copyright p {
        font-size: 15px;
    }
}

/*============= Publication lists ==========*/
.lista{
    list-style-type: lower-roman;
    color: #888 !important;
    text-align: justify !important;
    font-family: 'Rubik', sans-serif !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
}
.listb{
    list-style-type: lower-latin;
    color: #888 !important;
    text-align: justify !important;
    font-family: 'Rubik', sans-serif !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
}
.listc{
    list-style-type: square;
    color: #888 !important;
    text-align: justify !important;
    font-family: 'Rubik', sans-serif !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
}
.listd{
    list-style-type: circle;
    color: #888 !important;
    text-align: justify !important;
    font-family: 'Rubik', sans-serif !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
}
.liste{
    list-style-type: square;
    color: #e9ecef !important;
    text-align: justify !important;
    font-family: 'Rubik', sans-serif !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
}