/**
* Template Name: Medicio - v2.0.0
* Template URL: https://bootstrapmade.com/medicio-free-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@font-face {
	font-family: 'frutigerltarabic';
	src: url('../frutigerltarabic.ttf') format('truetype');
}


body {
	font-family: "frutigerltarabic";
	color: #444444;
	text-align: right;
}

a {
  color: #3fbbc0;
}

a:hover {
  color: #FFF;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "frutigerltarabic";
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #dc3545;
  border-top-color: #ecf8f9;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# 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: #bdc1cf;
		color: #fff;
		transition: all 0.4s;
	}

.back-to-top i:hover {
  background: #5ec6ca;
  color: #fff;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
	background: #505052;
	color: #fff;
	height: 30px;
	font-size: 16px;
	font-weight: 600;
	transition: all 0.5s;
}

#topbar.topbar-scrolled {
  top: -30px;
}

#topbar i {
  padding-right: 6px;
      padding-left: 6px;
}
#topbar p {
  padding-right: 6px;
      padding-left: 6px;
	    padding-top: 10px;
      padding-top: 10px;

}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	background: #2a2a2a;
	transition: all 0.5s;
	z-index: 997;
	padding: 0px 0;
	top: 0px;

}

@media (max-width: 992px) {
	#header {
		padding: 15px 0;
		padding-bottom:10px;
	}
}

#header.header-scrolled {
  top: 0;
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo a {
  color: #555555;
}

#header .logo img {
  max-height: 40px;
}

@media (max-width: 992px) {
  #header {
    top: 0;
  }
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
    
	background:transparent;
}


	
.nav-menu > ul > li:hover {
	
	
}

.nav-menu a {
	display: block;
	position: relative;
	color: #c4c8d4f5;
	transition: 0.3s;
	font-size: 18px;
	font-family: "frutigerltarabic";
	text-transform: uppercase;
	font-weight: 700;
	padding-right: 15px;
	padding-left: 15px;
	padding-top: 5px;
	padding-bottom: 5px;
	border-bottom-style: solid;
	border-bottom-color: #2a2a2a;
}

    .nav-menu a:hover, .nav-menu li:hover > a {
        color: #e63b34;
        border-width: 5px;
        border-bottom-style: solid;
        border-bottom-color: #e63b34;
        text-decoration: none;
    }

.nav-menu .active a {
	color: #18295c;
	border-width: 5px;
	border-bottom-style: solid;
	background: #e0dcdd;
	text-decoration: none;
}
.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: #194b4d;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #3fbbc0;
}

.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;
}

@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";
  }
}

/* Appointment Button */
.appointment-btn {
  margin-left: 25px;
  background: #3fbbc0;
  color: #fff;
  border-radius: 4px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

.appointment-btn:hover {
  background: #65c9cd;
  color: #fff;
}

@media (max-width: 768px) {
  .appointment-btn {
    margin: 0 48px 0 0;
    padding: 6px 18px;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  left: 15px;
  top: 57px;
  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: #555555;
}

.mobile-nav {
  position: fixed;
  top: 90px;
  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;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #555555;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #3fbbc0;
  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(60, 60, 60, 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 {
    border-radius: 7px;
    color: #d82f2f;
    background: #FFF;}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(60, 60, 60, 0.8);
  overflow: hidden;
  position: relative;
}

#hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

#hero .container {
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 50px;
  border-top: 4px solid #3fbbc0;
}

@media (max-width: 1200px) {
  #hero .container {
    margin-left: 50px;
    margin-right: 50px;
  }
}

#hero h2 {
  color: #2f2f2f;
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
}

#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #555555;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-left,
#hero .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 10%;
  top: 112px;
}

@media (max-width: 992px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    top: 66px;
  }
}

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 36px;
  line-height: 1;
  width: auto;
  height: auto;
  background: rgba(63, 187, 192, 0.4);
  border-radius: 50px;
  padding: 10px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
}

#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
  background: rgba(63, 187, 192, 0.6);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: .6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #3fbbc0;
}

#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: #3fbbc0;
}

#hero .btn-get-started:hover {
  background: #65c9cd;
}

@media (max-width: 992px) {
  #hero {
    height: 100vh;
  }
  #hero .container {
    margin-top: 100px;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 160vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f7fcfc;
}

.section-title {
  text-align: center;
  padding-bottom: 0px;
}

	.section-title h1 {
		font-size: 32px;
		font-weight: bold;
		text-transform: uppercase;
		margin-bottom: 20px;
		padding-bottom: 20px;
		position: relative;
		font-family: "frutigerltarabic";
	}

	.section-title h2 {
		font-size: 32px;
		font-weight: bold;
		text-transform: uppercase;
		margin-bottom: 20px;
		padding-bottom: 20px;
		position: relative;
	}



	.section-title h1::after {
		content: '';
		position: absolute;
		display: block;
		width: 160px;
		height: 41px;
		background: linear-gradient(126deg, #ed1818, #333);
		bottom: 0;
		left: calc(40% - 25px);
		clip-path: polygon(0 86%, 0% 100%, 100% 100%);
	}


	.section-title h2::after {
		content: '';
		position: absolute;
		display: block;
		width: 160px;
		height: 41px;
		background: linear-gradient(126deg, #ed1818, #333);
		bottom: 0;
		left: calc(40% - 25px);
		clip-path: polygon(0 86%, 0% 100%, 100% 100%);
	}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #ecf8f9;
  min-height: 40px;
  margin-top: 120px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 70px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 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: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.featured-services .icon-box::before {
  content: '';
  position: absolute;
  background: #d9f1f2;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .icon-box:hover::before {
  background: #3fbbc0;
  top: 0;
  border-radius: 0px;
}

.featured-services .icon {
  margin-bottom: 15px;
}

.featured-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #3fbbc0;
  transition: all 0.3s ease-in-out;
}

.featured-services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.featured-services .title a {
  color: #111;
}

.featured-services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.featured-services .icon-box:hover .title a, .featured-services .icon-box:hover .description {
  color: #fff;
}

.featured-services .icon-box:hover .icon i {
  color: #fff;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #3fbbc0;
  color: #fff;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  font-size: 28px;
  font-weight: 700;
}

.cta .cta-btn {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #fff;
  color: #3fbbc0;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #3fbbc0;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-bottom: 30px;
}

.counts .count-box {
  box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 100%;
}

.counts .count-box i {
  display: block;
  font-size: 30px;
  color: #3fbbc0;
  float: right;
}

.counts .count-box span {
  font-size: 42px;
  line-height: 24px;
  display: block;
  font-weight: 700;
  color: #555555;
  margin-right: 50px;
}

.counts .count-box p {
  padding: 30px 0 0 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}

.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #7b7b7b;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
  color: #3fbbc0;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .icon-box i {
  font-size: 48px;
  float: right;
  color: #3fbbc0;
}

.features .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-right: 60px;
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  text-align: center;
}

.services .icon {
  display: flex;
  justify-content: center;
}

.services .icon i {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 50%;
  transition: 0.5s;
  color: #3fbbc0;
  font-size: 40px;
  overflow: hidden;
  padding-top: 20px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.15);
}

.services .icon-box:hover .icon i {
  box-shadow: 0px 0 25px rgba(63, 187, 192, 0.3);
}

.services .title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
  padding-bottom: 15px;
}

.services .title a {
  color: #444444;
  transition: 0.3s;
}

.services .title a:hover {
  color: #3fbbc0;
}

.services .title::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: #3fbbc0;
  bottom: 0;
  right: calc(50% - 25px);
}

.services .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Appointments
--------------------------------------------------------------*/
.appointment .php-email-form {
  width: 100%;
}

.appointment .php-email-form .form-group {
  padding-bottom: 8px;
}

.appointment .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.appointment .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: right;
  padding: 15px;
  font-weight: 600;
}

.appointment .php-email-form .error-message br + br {
  margin-top: 25px;
}

.appointment .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.appointment .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.appointment .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.appointment .php-email-form input, .appointment .php-email-form textarea, .appointment .php-email-form select {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 10px !important;
}

.appointment .php-email-form input:focus, .appointment .php-email-form textarea:focus, .appointment .php-email-form select:focus {
  border-color: #3fbbc0;
}

.appointment .php-email-form input, .appointment .php-email-form select {
  height: 44px;
}

.appointment .php-email-form textarea {
  padding: 10px 12px;
}

.appointment .php-email-form button[type="submit"] {
  background: #3fbbc0;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.appointment .php-email-form button[type="submit"]:hover {
  background: #52c2c6;
}

/*--------------------------------------------------------------
# Departments
--------------------------------------------------------------*/
.departments .nav-tabs {
  border: 0;
}

.departments .nav-link {
  border: 0;
  padding: 20px;
  color: #555555;
  border-radius: 0;
  border-right: 5px solid #fff;
}

.departments .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}

.departments .nav-link p {
  font-size: 14px;
  margin-bottom: 0;
}

.departments .nav-link:hover h4 {
  color: #3fbbc0;
}

.departments .nav-link.active {
  background: #f7fcfc;
  border-color: #3fbbc0;
}

.departments .nav-link.active h4 {
  color: #3fbbc0;
}

.departments .tab-pane.active {
  -webkit-animation: slide-down 0.5s ease-out;
  animation: slide-down 0.5s ease-out;
}

.departments .tab-pane img {
  float: right;
  max-width: 300px;
  padding: 0 15px 15px 0;
}

@media (max-width: 768px) {
  .departments .tab-pane img {
    float: none;
    padding: 0 0 15px 0;
    max-width: 100%;
  }
}

.departments .tab-pane h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #3fbbc0;
}

.departments .tab-pane p {
  color: #777777;
}

.departments .tab-pane p:last-child {
  margin-bottom: 0;
}

@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slide-down {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid #fff;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-right, .testimonials .testimonial-item .quote-icon-left {
  color: #b2e4e6;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: #f0fafa;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.testimonials .owl-nav, .testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

	.testimonials .owl-dot.active {
		background-color: #c10d32 !important;
	}

@media (max-width: 767px) {
  .testimonials {
    margin: 30px 10px;
  }
}

/*--------------------------------------------------------------
# Doctors
--------------------------------------------------------------*/
.doctors .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(63, 187, 192, 0.1);
}

.doctors .member .member-img {
  position: relative;
  overflow: hidden;
}

.doctors .member .social {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
}

.doctors .member .social a {
  transition: color 0.3s;
  color: #555555;
  margin: 0 10px;
  padding-top: 8px;
  display: inline-block;
}

.doctors .member .social a:hover {
  color: #3fbbc0;
}

.doctors .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.doctors .member .member-info {
  padding: 25px 15px;
}

.doctors .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #555555;
}

.doctors .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.doctors .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.doctors .member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .owl-nav, .gallery .owl-dots {
  margin-top: 25px;
  text-align: center;
}

.gallery .owl-item {
  border-right: 2px solid #fff;
  border-left: 2px solid #fff;
}

.gallery .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #e0f4f5 !important;
}

.gallery .owl-dot.active {
  background-color: #3fbbc0 !important;
}

.gallery .gallery-carousel .owl-stage-outer {
  overflow: visible;
}

.gallery .gallery-carousel .center {
  border: 6px solid #3fbbc0;
  margin: -10px;
  box-sizing: content-box;
  padding: 4px;
  background: #fff;
  z-index: 1;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 36px;
  color: #3fbbc0;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  right: -3px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  color: #3fbbc0;
  font-size: 18px;
  padding-left: 4px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: #3fbbc0;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #65c9cd;
}

.pricing .featured h3 {
  color: #fff;
  background: #3fbbc0;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  left: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #3fbbc0;
  color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questioins
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  padding: 0 0 20px 25px;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: #3fbbc0;
  font-size: 18px;
  font-weight: 500;
}

.faq .faq-list i {
  font-size: 18px;
  position: absolute;
  right: -25px;
  top: 6px;
}

.faq .faq-list p {
  margin-bottom: 20px;
  font-size: 15px;
}

.faq .faq-list a.collapse {
  color: #3fbbc0;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #3fbbc0;
}

.faq .faq-list a.collapsed i::before {
  content: "\eab2" !important;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 20px rgba(214, 215, 216, 0.5);
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: #3fbbc0;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #c5ebec;
}

.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 .php-email-form {
  box-shadow: 0 0 20px rgba(214, 215, 216, 0.5);
  padding: 30px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: right;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

	.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
		border-color: #ffb03b;
	}

.contact .php-email-form input {
  padding: 20px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

	.contact .php-email-form button[type="submit"] {
		background: #c10d32;
		border: 0;
		padding: 10px 30px;
		color: #fff;
		transition: 0.4s;
		border-radius: 4px;
	}

		.contact .php-email-form button[type="submit"]:hover {
			background: #c10d32;
		}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
	background: #2a2a2a;
	padding: 0 0 30px 0;
	color: #FFF;
	font-size: 14px;
	text-align: center;
}

	#footer .footer-top {
		background: #363636;
		padding: 0px 0 29px 0;
	}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
}

		#footer .footer-top .social-links a {
			font-size: 18px;
			display: inline-block;
			background: #de3c3e;
			color: #fff;
			line-height: 1;
			padding: 8px 0;
			margin-left: 4px;
			border-radius: 20px;
			text-align: center;
			width: 36px;
			height: 36px;
			transition: 0.3s;
		}

			#footer .footer-top .social-links a:hover {
				background: #2d396285;
				text-decoration: none;
			}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  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-left: 2px;
  color: #3fbbc0;
  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: #ac2427;
		transition: 0.3s;
		display: inline-block;
		line-height: 1;
		font-size: 16px;
		font-weight: bold;
		text-align: center
	}
		#footer .footer-top .footer-links ul a:hover {
			color: #ac2427;
		}

		#footer .footer-top .footer-newsletter form {
			margin-top: 30px;
			background: #f1e3e24a;
			padding: 6px 10px;
			position: relative;
			border: 1px solid #f8f9fab0;
			border-radius: 4px;
		}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #3fbbc0;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #65c9cd;
}

#footer .copyleft {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
}



/* ---------------------------------
2. COMMONS FOR PAGE DESIGN
--------------------------------- */

.dplay-tbl{ display: table; height: 100%; width: 100%; } 
.dplay-tbl-cell{ display: table-cell; vertical-align: middle; } 

.oflow-hidden{ overflow: hidden; }
.oflow-visible{ overflow: visible; }

.dplay-none{ display: none; }
.dplay-block{ display: block; }
.dplay-inl-block{ display: inline-block; }

.opacty-1{ opacity: .1; }
.opacty-2{ opacity: .2; }
.opacty-3{ opacity: .3; }
.opacty-4{ opacity: .4; }
.opacty-5{ opacity: .5; }
.opacty-6{ opacity: .6; }
.opacty-7{ opacity: .7; }



/* POSITION */

.pos-relative{ position: relative; z-index: 1; }

.abs-tlr{ position: absolute; top: 0; left: 0; right: 0; z-index: 1; }
.abs-blr{ position: absolute; bottom: 0; left: 0; right: 0; z-index: 1; }
.abs-tl{ position: absolute; top: 0; left: 0; z-index: 1; }
.abs-br{ position: absolute; bottom: 0; right: 0; z-index: 1; }
.abs-tbr{ position: absolute; top: 0; bottom: 0; right: 0; z-index: 1; }
.abs-tblr{ position: absolute; top: 0; bottom: 0; left: 0; right: 0; z-index: 1; }

.z--1{ z-index: -1; }


/* ALIGNMENT */

.float-left{ float: left!important; }
.float-right{ float: right!important; }

.text-center{ text-align: center; }

/* LINE HEIGHT */

.lh-30{ line-height: 30px; }
.lh-35{ line-height: 35px; }
.lh-40{ line-height: 40px; }


/* FONTS */

.font-7 { font-size: .7em; }
.font-75{ font-size: .75em; }
.font-8 { font-size: .8em; }
.font-85{ font-size: .85em; }
.font-9 { font-size: .9em; }
.font-11{ font-size: 1.1em; }
.font-12{ font-size: 1.2em; }
.font-13{ font-size: 1.3em; }
.font-14{ font-size: 1.4em; }
.font-20{ font-size: 2em; }


/* RESPONSIVE */

@media only screen and (max-width: 767px) {
	
	.float-sm-none{ float: none!important; }

	.text-sm-center{ text-align: center; }
	
	.font-sm-13{ font-size: 0.93em; }
}


/* COLOR */

.color-white{ color: #fff; }
.color-green{ color: #36D98A; }
.color-ash{ color: #aaa; }
.color-ccc{ color: #ccc; }
.color-grey{ color: #ccc; }
.color-primary{ color: #F9B500; }
.color-black{ color: #111; }
.color-lite-black{ color: #888; }



/* BACKGROUND COLOR*/

.bg-191{ background: #191919; }
.bg-primary{ background: #F9B500!important; }


/* BACKGROUND IMAGE */

.img-bg{ position: absolute; top: 0; bottom: 0; left: 0; right: 0; z-index: 1; }

.bg-map{ background: url(../images/map.png) no-repeat center; background-size: cover; }

.bg-1{ background: url(../images/slider-1-1200x900.jpg) no-repeat center; background-size: cover; }
.bg-2{ background: url(../images/slider-2-450x600.jpg) no-repeat center; background-size: cover; }
.bg-3{ background: url(../images/slider-3-450x600.jpg) no-repeat center; background-size: cover; }
.bg-4{ background: url(../images/slider-4-450x600.jpg) no-repeat center; background-size: cover; }
.bg-5{ background: url(../images/slider-5-450x600.jpg) no-repeat center; background-size: cover; }
.bg-6{ background: url(../images/slider-6-450x600.jpg) no-repeat center; background-size: cover; }


.bg-grad-layer-6:after{ content:''; position: absolute; top: 0; bottom: 0; left: 0; right: 0; z-index: -1;border-radius:0px;
	opacity: .6; linear-gradient(to top, #00000014 0%, rgba(0,0,0,.4) 100%);}
	
.bg-layer-4:after{ content:''; position: absolute; top: 0; bottom: 0; left: 0; right: 0; z-index: -1;
	opacity: .4; background: #111; }

.bg-layer-7:after{ content:''; position: absolute; top: 0; bottom: 0; left: 0; right: 0; z-index: -1;
	opacity: .7; background: #111; }




/* RESPONSIVE */

@media only screen and (max-width: 767px) {
	
	.bg-sm-color-6{ background: rgba(0,0,0,.6); }
	.bg-sm-color-7{ background: rgba(0,0,0,.7);border-radius:20px; }
	
}


/* BORDER */

.brder-grey{ border: 1px solid #ccc; }
.brder-t-grey{ border-top: 1px solid #ccc; }
.brder-tlr-grey{ border: 1px solid #ccc; border-bottom: 0; }
.brder-blr-grey{ border: 1px solid #ccc; border-top: 0; }

.brdr-ash-1{ height: 1px; background: #aaa; }



/* LINK STYLING	 */
	
.link-brdr-btm-primary{ position: relative; padding-bottom: 5px; 
	-webkit-transition: all .2s; transition: all .2s;}

.link-brdr-btm-primary:after{ content:''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; 
	background: #F9B500; -webkit-transition: all .2s; transition: all .2s; 
	-webkit-transform-origin: right; transform-origin: right; }

.link-brdr-btm-primary:hover{ -webkit-transform: translateY(-1px); transform: translateY(-1px); }

.link-brdr-btm-primary:hover:after{ -webkit-transform: scale(0); transform: scale(0); }


/* BUTTON STYLING */

.btn-brdr-primary{ text-align: center; height: 45px; line-height: 43px; border: 1px solid #F9B500; color: #F9B500; 
	border-radius: 2px; }
.btn-brdr-primary:hover{ background: #F9B500; color: #000; }

.btn-brdr-grey{ text-align: center; height: 45px; line-height: 43px; border: 1px solid #ccc; line-height: 1; 
	border-radius: 2px; }
.btn-brdr-grey:hover{ border: 1px solid #F9B500; background: #F9B500; color: #000; }

.btn-fill-primary{ text-align: center; height: 45px; line-height: 43px; border: 1px solid #F9B500; background: #F9B500; 
	border-radius: 2px; color: #111; }
.btn-fill-primary:hover{ background: none; }

.btn-fill-grey{ text-align: center; height: 45px; line-height: 43px; border: 1px solid #ccc; background: #ccc; 
	border-radius: 2px; color: #111; }
.btn-fill-grey:hover{ border: 1px solid #F9B500; background: none; color: #000; }


.btn-b-md{ font-size: .9em; height: 35px; line-height: 35px; }
.btn-b-sm{ font-size: .9em; height: 30px; line-height: 28px; }


/* FORM INPUT STYLING */

.nwsltr-primary-1{ position: relative; }
	
.nwsltr-primary-1 input{ height: 45px; display: block; width: 100%; padding: 0 65px 0 20px; 
	border: 1px solid #F9B500; }

.nwsltr-primary-1 button{ position: absolute; top: 1px; bottom: 1px; right: 1px; width: 45px; text-align: center; 
	background: #F9B500; color: #000; }

.nwsltr-primary-1 button i{ font-size: 1.3em; }

.nwsltr-primary-1 button:hover{ background: #000; color: #fff; }


.form-block input,
.form-block textarea{ display: block; width: 100%; }

.form-bold input,
.form-bold textarea{ font-weight: 700; }

.form-plr-15 input,
.form-plr-15 textarea{ padding: 0 15px; }

.form-h-35 input{ height: 35px; }
.form-h-40 input{ height: 40px; }
.form-h-45 input{ height: 45px; }

.form-mb-20 input,
.form-mb-20 textarea{ margin-bottom: 20px; }

.form-brdr-grey input,
.form-brdr-grey textarea{ border: 1px solid #ccc; }

.form-brdr-lite-white input,
.form-brdr-lite-white textarea{ border: 1px solid #ddd; }

.form-brdr-b-grey input,
.form-brdr-b-grey textarea{ outline: 0; border: 0px; border-bottom: 1px solid #ccc; }

.form-brdr-b-grey input:focus,
.form-brdr-b-grey textarea:focus{ border-bottom: 1px solid #F9B500; }



/* SIDED SECTION */

.sided-70{ position: relative; }
.sided-70 .s-left{ position: absolute; top: 0; left: 0; height: 70px; width: 70px; }
.sided-70 .s-left.rounded img{ border-radius: 70px; overflow: hidden; }
.sided-70 .s-right{ min-height: 70px; }


/* FLOAT LEFT RIGHT	 */

.float-left-right{ overflow: hidden; }

.float-left-right ul:first-child{ float: left; }

.float-left-right ul:last-child{ float: right; }


/* RESPONSIVE */

@media only screen and (max-width: 767px) {
	
	.float-left-right{ text-align: center; }

	.float-left-right ul:first-child,
	.float-left-right ul:last-child{ float: none; }

}

/* ACCRODIAN */

.accordian:first-child{ border-top: 1px solid #ccc; }
.accordian .a-title{ padding: 15px 50px 15px 25px; display: block; position: relative; border: 1px solid #ccc; 
	border-top: 0; }

.accordian .a-title i{ position: absolute; top: 50%; right: 0; color: #F9B500; width: 50px; text-align: center; 
	-webkit-transform: translateY(-50%); transform: translateY(-50%); }

.accordian .a-body{ max-height: 0; overflow: hidden; -webkit-transition: all .2s; transition: all .2s;  }
.accordian .a-body.active{ max-height: 1000px; }

.a-body-inner{ padding: 25px 40px 25px 25px; border: 1px solid #ccc; border-top: 0;}



/* INDIVIDUAL STYLING */

section{ padding: 50px 0; }

.p-title{ position: relative; padding-bottom: 20px; margin-bottom: 40px; }

.p-title:after { content:''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background: #ccc; }
.p-title:before{ content:''; position: absolute; bottom: 0; left: 0; width: 80px; height: 5px; 
	background: #F9B500; z-index: 1; }

.quote-primary{ padding: 10px 20px; border-left: 2px solid #F9B500; }



/* WIDTH/HEIGHT */

.w-auto{ width: auto!important; }
.h-auto{ height: auto!important; }

.w-10 { width:  10%!important; }
.w-20 { width:  20%!important; }
.w-30 { width:  30%!important; }
.w-40 { width:  40%!important; }
.w-50 { width:  50%!important; }
.w-60 { width:  60%!important; }
.w-70 { width:  70%!important; }
.w-80 { width:  80%!important; }
.w-90 { width:  90%!important; }
.w-100{ width: 100%!important; }

.w-1-4 { width:  25%!important; }
.w-1-3 { width:  33.33%!important; }
.w-2-3 { width:  66.666%!important; }
.w-3-4 { width:  75%!important; }

.h-10 { height:  10%!important; }
.h-20 { height:  20%!important; }
.h-30 { height:  30%!important; }
.h-40 { height:  40%!important; }
.h-50 { height:  50%!important; }
.h-60 { height:  60%!important; }
.h-70 { height:  70%!important; }
.h-80 { height:  80%!important; }
.h-90 { height:  90%!important; }
.h-100{ height: 100%!important; }

.h-1-4 { height:  25%!important; }
.h-1-3 { height:  33.33%!important; }
.h-2-3 { height:  66.666%!important; }
.h-3-4 { height:  75%!important; }

.h-100vh{ height: 100vh!important; }

.wh-100x{ height: 100px; width: 100px!important; }

.w-100x { width: 100px!important; }
.w-200x { width: 200px!important; }
.w-300x { width: 300px!important; }
.w-400x { width: 400px!important; }
.w-500x { width: 500px!important; }
.w-600x { width: 600px!important; }
.w-700x { width: 700px!important; }
.w-800x { width: 800px!important; }
.w-900x { width: 900px!important; }

.h-100x { height: 100px!important; }
.h-200x { height: 200px!important; }
.h-300x { height: 300px!important; }
.h-400x { height: 400px!important; }
.h-500x { height: 500px!important; }
.h-600x { height: 600px!important; }
.h-700x { height: 700px!important; }
.h-800x { height: 800px!important; }
.h-900x { height: 900px!important; }

.min-h-100x{ min-height: 100px!important; }



/* RESPONSIVE */

@media only screen and (max-width: 767px) {
	
	.w-sm-auto{ width: auto!important; }
	.h-sm-auto{ height: auto!important; }

	.w-sm-10 { width:  10%!important; }
	.w-sm-20 { width:  20%!important; }
	.w-sm-30 { width:  30%!important; }
	.w-sm-40 { width:  40%!important; }
	.w-sm-50 { width:  50%!important; }
	.w-sm-60 { width:  60%!important; }
	.w-sm-70 { width:  70%!important; }
	.w-sm-80 { width:  80%!important; }
	.w-sm-90 { width:  90%!important; }
	.w-sm-100{ width: 100%!important; }

	.w-sm-1-4 { width:  25%!important; }
	.w-sm-1-3 { width:  33.33%!important; }
	.w-sm-2-3 { width:  66.666%!important; }
	.w-sm-3-4 { width:  75%!important; }

	.h-sm-10 { height:  10%!important; }
	.h-sm-20 { height:  20%!important; }
	.h-sm-30 { height:  30%!important; }
	.h-sm-40 { height:  40%!important; }
	.h-sm-50 { height:  50%!important; }
	.h-sm-60 { height:  60%!important; }
	.h-sm-70 { height:  70%!important; }
	.h-sm-80 { height:  80%!important; }
	.h-sm-90 { height:  90%!important; }
	.h-sm-100{ height: 100%!important; }

	.h-sm-1-4 { height:  25%!important; }
	.h-sm-1-3 { height:  33.33%!important; }
	.h-sm-2-3 { height:  66.666%!important; }
	.h-sm-3-4 { height:  75%!important; }

	.h-sm-100vh{ height: 100vh!important; }

	.wh-sm-100x{ height: 100px!important; width: 100px!important; }

	.w-sm-100x { width: 100px!important; }
	.w-sm-200x { width: 200px!important; }
	.w-sm-300x { width: 300px!important; }
	.w-sm-400x { width: 400px!important; }
	.w-sm-500x { width: 500px!important; }
	.w-sm-600x { width: 600px!important; }
	.w-sm-700x { width: 700px!important; }
	.w-sm-800x { width: 800px!important; }
	.w-sm-900x { width: 900px!important; }

	.h-sm-100x { height: 100px!important; }
	.h-sm-200x { height: 200px!important; }
	.h-sm-300x { height: 300px!important; }
	.h-sm-400x { height: 400px!important; }
	.h-sm-500x { height: 500px!important; }
	.h-sm-600x { height: 600px!important; }
	.h-sm-700x { height: 700px!important; }
	.h-sm-800x { height: 800px!important; }
	.h-sm-900x { height: 900px!important; }

	.min-h-100x{ min-height: 100px!important; }
	
}


/* LIST */

.list-block > li{ display: block; }
.list-relative > li{ position: relative; }
.list-a-block > li > a{ display: block; }

.list-btm-border-white > li{ border-bottom: 1px solid #fff; }

.list-a-bg-grey > li > a{ background: #EBEBEB; }

.list-a-br-2  > li > a { border-radius: 2px; }

.list-a-hw-radial-35 > li > a{ height: 35px; width: 35px; border-radius: 35px; line-height: 35px; }

.list-a-hvr-primary > li > a:hover{ background: #F9B500; color: #fff; }


/* MARGIN/PADDING */

.list-a-p-0  > li > a{ padding:  0px; }
.list-a-p-5  > li > a{ padding:  5px; }
.list-a-p-10 > li > a{ padding: 10px; }
.list-a-p-15 > li > a{ padding: 15px; }
.list-a-p-20 > li > a{ padding: 20px; }
.list-a-p-25 > li > a{ padding: 25px; }
.list-a-p-30 > li > a{ padding: 30px; }

.list-a-plr-0  > li > a{ padding-left:  0px; padding-right:  0px; }
.list-a-plr-5  > li > a{ padding-left:  5px; padding-right:  5px; }
.list-a-plr-10 > li > a{ padding-left: 10px; padding-right: 10px; }
.list-a-plr-15 > li > a{ padding-left: 15px; padding-right: 15px; }
.list-a-plr-20 > li > a{ padding-left: 20px; padding-right: 20px; }
.list-a-plr-25 > li > a{ padding-left: 25px; padding-right: 25px; }
.list-a-plr-30 > li > a{ padding-left: 30px; padding-right: 30px; }

.list-a-pr-0  > li > a{ padding-right: 0px; }
.list-a-pr-5  > li > a{ padding-right: 5px; }
.list-a-pr-10 > li > a{ padding-right: 10px; }
.list-a-pr-15 > li > a{ padding-right: 15px; }
.list-a-pr-20 > li > a{ padding-right: 20px; }
.list-a-pr-25 > li > a{ padding-right: 25px; }
.list-a-pr-30 > li > a{ padding-right: 30px; }

.list-a-pl-0  > li > a{ padding-left:  0px; }
.list-a-pl-5  > li > a{ padding-left:  5px; }
.list-a-pl-10 > li > a{ padding-left: 10px; }
.list-a-pl-15 > li > a{ padding-left: 15px; }
.list-a-pl-20 > li > a{ padding-left: 20px; }
.list-a-pl-25 > li > a{ padding-left: 25px; }
.list-a-pl-30 > li > a{ padding-left: 30px; }

.list-a-ptb-0  > li > a{ padding-top:  0px; padding-bottom:  0px; }
.list-a-ptb-5  > li > a{ padding-top:  5px; padding-bottom:  5px; }
.list-a-ptb-10 > li > a{ padding-top: 10px; padding-bottom: 10px; }
.list-a-ptb-15 > li > a{ padding-top: 15px; padding-bottom: 15px; }
.list-a-ptb-20 > li > a{ padding-top: 20px; padding-bottom: 20px; }
.list-a-ptb-25 > li > a{ padding-top: 25px; padding-bottom: 25px; }
.list-a-ptb-30 > li > a{ padding-top: 30px; padding-bottom: 30px; }

.list-a-ptb-7 > li > a{ padding-top: 7px; padding-bottom: 7px; }
.list-a-ptb-8 > li > a{ padding-top: 8px; padding-bottom: 8px; }

.list-a-pt-0  > li > a{ padding-top:  0px; }
.list-a-pt-5  > li > a{ padding-top:  5px; }
.list-a-pt-10 > li > a{ padding-top: 10px; }
.list-a-pt-15 > li > a{ padding-top: 15px; }
.list-a-pt-20 > li > a{ padding-top: 20px; }
.list-a-pt-25 > li > a{ padding-top: 25px; }
.list-a-pt-30 > li > a{ padding-top: 30px; }

.list-a-pb-0  > li > a{ padding-bottom:  0px; }
.list-a-pb-5  > li > a{ padding-bottom:  5px; }
.list-a-pb-10 > li > a{ padding-bottom: 10px; }
.list-a-pb-15 > li > a{ padding-bottom: 15px; }
.list-a-pb-20 > li > a{ padding-bottom: 20px; }
.list-a-pb-25 > li > a{ padding-bottom: 25px; }
.list-a-pb-30 > li > a{ padding-bottom: 30px; }


.list-li-mlr-0  > li{ margin-left:  0px; margin-right:  0px; }
.list-li-mlr-5  > li{ margin-left:  5px; margin-right:  5px; }
.list-li-mlr-10 > li{ margin-left: 10px; margin-right: 10px; }
.list-li-mlr-15 > li{ margin-left: 15px; margin-right: 15px; }
.list-li-mlr-20 > li{ margin-left: 20px; margin-right: 20px; }
.list-li-mlr-25 > li{ margin-left: 25px; margin-right: 25px; }
.list-li-mlr-30 > li{ margin-left: 30px; margin-right: 30px; }

.list-li-mtb-0  > li{ margin-top:  0px; margin-bottom:  0px; }
.list-li-mtb-5  > li{ margin-top:  5px; margin-bottom:  5px; }
.list-li-mtb-10 > li{ margin-top: 10px; margin-bottom: 10px; }
.list-li-mtb-15 > li{ margin-top: 15px; margin-bottom: 15px; }
.list-li-mtb-20 > li{ margin-top: 20px; margin-bottom: 20px; }
.list-li-mtb-25 > li{ margin-top: 25px; margin-bottom: 25px; }
.list-li-mtb-30 > li{ margin-top: 30px; margin-bottom: 30px; }

.list-li-mr-0  > li{ margin-right:  0px; }
.list-li-mr-5  > li{ margin-right:  5px; }
.list-li-mr-10 > li{ margin-right: 10px; }
.list-li-mr-15 > li{ margin-right: 15px; }
.list-li-mr-20 > li{ margin-right: 20px; }
.list-li-mr-25 > li{ margin-right: 25px; }
.list-li-mr-30 > li{ margin-right: 30px; }

.list-li-ml-0  > li{ margin-left:  0px; }
.list-li-ml-5  > li{ margin-left:  5px; }
.list-li-ml-10 > li{ margin-left: 10px; }
.list-li-ml-15 > li{ margin-left: 15px; }
.list-li-ml-20 > li{ margin-left: 20px; }
.list-li-ml-25 > li{ margin-left: 25px; }
.list-li-ml-30 > li{ margin-left: 30px; }

.list-li-mt-0  > li{ margin-top:  0px; }
.list-li-mt-5  > li{ margin-top:  5px; }
.list-li-mt-10 > li{ margin-top: 10px; }
.list-li-mt-15 > li{ margin-top: 15px; }
.list-li-mt-20 > li{ margin-top: 20px; }
.list-li-mt-25 > li{ margin-top: 25px; }
.list-li-mt-30 > li{ margin-top: 30px; }

.list-li-mb-0  > li{ margin-bottom:  0px; }
.list-li-mb-5  > li{ margin-bottom:  5px; }
.list-li-mb-10 > li{ margin-bottom: 10px; }
.list-li-mb-15 > li{ margin-bottom: 15px; }
.list-li-mb-20 > li{ margin-bottom: 20px; }
.list-li-mb-25 > li{ margin-bottom: 25px; }
.list-li-mb-30 > li{ margin-bottom: 30px; }


.list-li-plr-0  > li{ padding-left:  0px; padding-right:  0px; }
.list-li-plr-5  > li{ padding-left:  5px; padding-right:  5px; }
.list-li-plr-10 > li{ padding-left: 10px; padding-right: 10px; }
.list-li-plr-15 > li{ padding-left: 15px; padding-right: 15px; }
.list-li-plr-20 > li{ padding-left: 20px; padding-right: 20px; }
.list-li-plr-25 > li{ padding-left: 25px; padding-right: 25px; }
.list-li-plr-30 > li{ padding-left: 30px; padding-right: 30px; }

.list-li-ptb-0  > li{ padding-top:  0px; padding-bottom:  0px; }
.list-li-ptb-5  > li{ padding-top:  5px; padding-bottom:  5px; }
.list-li-ptb-10 > li{ padding-top: 10px; padding-bottom: 10px; }
.list-li-ptb-15 > li{ padding-top: 15px; padding-bottom: 15px; }
.list-li-ptb-20 > li{ padding-top: 20px; padding-bottom: 20px; }
.list-li-ptb-25 > li{ padding-top: 25px; padding-bottom: 25px; }
.list-li-ptb-30 > li{ padding-top: 30px; padding-bottom: 30px; }

.list-li-pr-0  > li{ padding-right:  0px; }
.list-li-pr-5  > li{ padding-right:  5px; }
.list-li-pr-10 > li{ padding-right: 10px; }
.list-li-pr-15 > li{ padding-right: 15px; }
.list-li-pr-20 > li{ padding-right: 20px; }
.list-li-pr-25 > li{ padding-right: 25px; }
.list-li-pr-30 > li{ padding-right: 30px; }
         
.list-li-pl-0  > li{ padding-left:  0px; }
.list-li-pl-5  > li{ padding-left:  5px; }
.list-li-pl-10 > li{ padding-left: 10px; }
.list-li-pl-15 > li{ padding-left: 15px; }
.list-li-pl-20 > li{ padding-left: 20px; }
.list-li-pl-25 > li{ padding-left: 25px; }
.list-li-pl-30 > li{ padding-left: 30px; }
          
.list-li-pt-0  > li{ padding-top:  0px; }
.list-li-pt-5  > li{ padding-top:  5px; }
.list-li-pt-10 > li{ padding-top: 10px; }
.list-li-pt-15 > li{ padding-top: 15px; }
.list-li-pt-20 > li{ padding-top: 20px; }
.list-li-pt-25 > li{ padding-top: 25px; }
.list-li-pt-30 > li{ padding-top: 30px; }
            
.list-li-pb-0  > li{ padding-bottom:  0px; }
.list-li-pb-5  > li{ padding-bottom:  5px; }
.list-li-pb-10 > li{ padding-bottom: 10px; }
.list-li-pb-15 > li{ padding-bottom: 15px; }
.list-li-pb-20 > li{ padding-bottom: 20px; }
.list-li-pb-25 > li{ padding-bottom: 25px; }
.list-li-pb-30 > li{ padding-bottom: 30px; }



/* RESPONSIVE */

@media only screen and (max-width: 767px) {
	
	.list-a-p-sm-0  > li > a{ padding:  0px; }
	.list-a-p-sm-5  > li > a{ padding:  5px; }
	.list-a-p-sm-10 > li > a{ padding: 10px; }
	.list-a-p-sm-15 > li > a{ padding: 15px; }
	.list-a-p-sm-20 > li > a{ padding: 20px; }
	.list-a-p-sm-25 > li > a{ padding: 25px; }
	.list-a-p-sm-30 > li > a{ padding: 30px; }

	.list-a-plr-sm-0  > li > a{ padding-left:  0px; padding-right:  0px; }
	.list-a-plr-sm-5  > li > a{ padding-left:  5px; padding-right:  5px; }
	.list-a-plr-sm-10 > li > a{ padding-left: 10px; padding-right: 10px; }
	.list-a-plr-sm-15 > li > a{ padding-left: 15px; padding-right: 15px; }
	.list-a-plr-sm-20 > li > a{ padding-left: 20px; padding-right: 20px; }
	.list-a-plr-sm-25 > li > a{ padding-left: 25px; padding-right: 25px; }
	.list-a-plr-sm-30 > li > a{ padding-left: 30px; padding-right: 30px; }

	.list-a-pr-sm-0  > li > a{ padding-right: 0px; }
	.list-a-pr-sm-5  > li > a{ padding-right: 5px; }
	.list-a-pr-sm-10 > li > a{ padding-right: 10px; }
	.list-a-pr-sm-15 > li > a{ padding-right: 15px; }
	.list-a-pr-sm-20 > li > a{ padding-right: 20px; }
	.list-a-pr-sm-25 > li > a{ padding-right: 25px; }
	.list-a-pr-sm-30 > li > a{ padding-right: 30px; }

	.list-a-pl-sm-0  > li > a{ padding-left:  0px; }
	.list-a-pl-sm-5  > li > a{ padding-left:  5px; }
	.list-a-pl-sm-10 > li > a{ padding-left: 10px; }
	.list-a-pl-sm-15 > li > a{ padding-left: 15px; }
	.list-a-pl-sm-20 > li > a{ padding-left: 20px; }
	.list-a-pl-sm-25 > li > a{ padding-left: 25px; }
	.list-a-pl-sm-30 > li > a{ padding-left: 30px; }

	.list-a-ptb-sm-0  > li > a{ padding-top:  0px; padding-bottom:  0px; }
	.list-a-ptb-sm-5  > li > a{ padding-top:  5px; padding-bottom:  5px; }
	.list-a-ptb-sm-10 > li > a{ padding-top: 10px; padding-bottom: 10px; }
	.list-a-ptb-sm-15 > li > a{ padding-top: 15px; padding-bottom: 15px; }
	.list-a-ptb-sm-20 > li > a{ padding-top: 20px; padding-bottom: 20px; }
	.list-a-ptb-sm-25 > li > a{ padding-top: 25px; padding-bottom: 25px; }
	.list-a-ptb-sm-30 > li > a{ padding-top: 30px; padding-bottom: 30px; }

	.list-a-ptb-sm-7 > li > a{ padding-top: 7px; padding-bottom: 7px; }
	.list-a-ptb-sm-8 > li > a{ padding-top: 8px; padding-bottom: 8px; }

	.list-a-pt-sm-0  > li > a{ padding-top:  0px; }
	.list-a-pt-sm-5  > li > a{ padding-top:  5px; }
	.list-a-pt-sm-10 > li > a{ padding-top: 10px; }
	.list-a-pt-sm-15 > li > a{ padding-top: 15px; }
	.list-a-pt-sm-20 > li > a{ padding-top: 20px; }
	.list-a-pt-sm-25 > li > a{ padding-top: 25px; }
	.list-a-pt-sm-30 > li > a{ padding-top: 30px; }

	.list-a-pb-sm-0  > li > a{ padding-bottom:  0px; }
	.list-a-pb-sm-5  > li > a{ padding-bottom:  5px; }
	.list-a-pb-sm-10 > li > a{ padding-bottom: 10px; }
	.list-a-pb-sm-15 > li > a{ padding-bottom: 15px; }
	.list-a-pb-sm-20 > li > a{ padding-bottom: 20px; }
	.list-a-pb-sm-25 > li > a{ padding-bottom: 25px; }
	.list-a-pb-sm-30 > li > a{ padding-bottom: 30px; }


	.list-li-mlr-sm-0  > li{ margin-left:  0px; margin-right:  0px; }
	.list-li-mlr-sm-5  > li{ margin-left:  5px; margin-right:  5px; }
	.list-li-mlr-sm-10 > li{ margin-left: 10px; margin-right: 10px; }
	.list-li-mlr-sm-15 > li{ margin-left: 15px; margin-right: 15px; }
	.list-li-mlr-sm-20 > li{ margin-left: 20px; margin-right: 20px; }
	.list-li-mlr-sm-25 > li{ margin-left: 25px; margin-right: 25px; }
	.list-li-mlr-sm-30 > li{ margin-left: 30px; margin-right: 30px; }

	.list-li-mtb-sm-0  > li{ margin-top:  0px; margin-bottom:  0px; }
	.list-li-mtb-sm-5  > li{ margin-top:  5px; margin-bottom:  5px; }
	.list-li-mtb-sm-10 > li{ margin-top: 10px; margin-bottom: 10px; }
	.list-li-mtb-sm-15 > li{ margin-top: 15px; margin-bottom: 15px; }
	.list-li-mtb-sm-20 > li{ margin-top: 20px; margin-bottom: 20px; }
	.list-li-mtb-sm-25 > li{ margin-top: 25px; margin-bottom: 25px; }
	.list-li-mtb-sm-30 > li{ margin-top: 30px; margin-bottom: 30px; }

	.list-li-mr-sm-0  > li{ margin-right:  0px; }
	.list-li-mr-sm-5  > li{ margin-right:  5px; }
	.list-li-mr-sm-10 > li{ margin-right: 10px; }
	.list-li-mr-sm-15 > li{ margin-right: 15px; }
	.list-li-mr-sm-20 > li{ margin-right: 20px; }
	.list-li-mr-sm-25 > li{ margin-right: 25px; }
	.list-li-mr-sm-30 > li{ margin-right: 30px; }

	.list-li-ml-sm-0  > li{ margin-left:  0px; }
	.list-li-ml-sm-5  > li{ margin-left:  5px; }
	.list-li-ml-sm-10 > li{ margin-left: 10px; }
	.list-li-ml-sm-15 > li{ margin-left: 15px; }
	.list-li-ml-sm-20 > li{ margin-left: 20px; }
	.list-li-ml-sm-25 > li{ margin-left: 25px; }
	.list-li-ml-sm-30 > li{ margin-left: 30px; }
             
	.list-li-mt-sm-0  > li{ margin-top:  0px; }
	.list-li-mt-sm-5  > li{ margin-top:  5px; }
	.list-li-mt-sm-10 > li{ margin-top: 10px; }
	.list-li-mt-sm-15 > li{ margin-top: 15px; }
	.list-li-mt-sm-20 > li{ margin-top: 20px; }
	.list-li-mt-sm-25 > li{ margin-top: 25px; }
	.list-li-mt-sm-30 > li{ margin-top: 30px; }
             
	.list-li-mb-sm-0  > li{ margin-bottom:  0px; }
	.list-li-mb-sm-5  > li{ margin-bottom:  5px; }
	.list-li-mb-sm-10 > li{ margin-bottom: 10px; }
	.list-li-mb-sm-15 > li{ margin-bottom: 15px; }
	.list-li-mb-sm-20 > li{ margin-bottom: 20px; }
	.list-li-mb-sm-25 > li{ margin-bottom: 25px; }
	.list-li-mb-sm-30 > li{ margin-bottom: 30px; }


	.list-li-plr-sm-0  > li{ padding-left:  0px; padding-right:  0px; }
	.list-li-plr-sm-5  > li{ padding-left:  5px; padding-right:  5px; }
	.list-li-plr-sm-10 > li{ padding-left: 10px; padding-right: 10px; }
	.list-li-plr-sm-15 > li{ padding-left: 15px; padding-right: 15px; }
	.list-li-plr-sm-20 > li{ padding-left: 20px; padding-right: 20px; }
	.list-li-plr-sm-25 > li{ padding-left: 25px; padding-right: 25px; }
	.list-li-plr-sm-30 > li{ padding-left: 30px; padding-right: 30px; }
               
	.list-li-ptb-sm-0  > li{ padding-top:  0px; padding-bottom:  0px; }
	.list-li-ptb-sm-5  > li{ padding-top:  5px; padding-bottom:  5px; }
	.list-li-ptb-sm-10 > li{ padding-top: 10px; padding-bottom: 10px; }
	.list-li-ptb-sm-15 > li{ padding-top: 15px; padding-bottom: 15px; }
	.list-li-ptb-sm-20 > li{ padding-top: 20px; padding-bottom: 20px; }
	.list-li-ptb-sm-25 > li{ padding-top: 25px; padding-bottom: 25px; }
	.list-li-ptb-sm-30 > li{ padding-top: 30px; padding-bottom: 30px; }

	.list-li-pr-sm-0  > li{ padding-right:  0px; }
	.list-li-pr-sm-5  > li{ padding-right:  5px; }
	.list-li-pr-sm-10 > li{ padding-right: 10px; }
	.list-li-pr-sm-15 > li{ padding-right: 15px; }
	.list-li-pr-sm-20 > li{ padding-right: 20px; }
	.list-li-pr-sm-25 > li{ padding-right: 25px; }
	.list-li-pr-sm-30 > li{ padding-right: 30px; }
			  
	.list-li-pl-sm-0  > li{ padding-left:  0px; }
	.list-li-pl-sm-5  > li{ padding-left:  5px; }
	.list-li-pl-sm-10 > li{ padding-left: 10px; }
	.list-li-pl-sm-15 > li{ padding-left: 15px; }
	.list-li-pl-sm-20 > li{ padding-left: 20px; }
	.list-li-pl-sm-25 > li{ padding-left: 25px; }
	.list-li-pl-sm-30 > li{ padding-left: 30px; }
			 
	.list-li-pt-sm-0  > li{ padding-top:  0px; }
	.list-li-pt-sm-5  > li{ padding-top:  5px; }
	.list-li-pt-sm-10 > li{ padding-top: 10px; }
	.list-li-pt-sm-15 > li{ padding-top: 15px; }
	.list-li-pt-sm-20 > li{ padding-top: 20px; }
	.list-li-pt-sm-25 > li{ padding-top: 25px; }
	.list-li-pt-sm-30 > li{ padding-top: 30px; }
				
	.list-li-pb-sm-0  > li{ padding-bottom:  0px; }
	.list-li-pb-sm-5  > li{ padding-bottom:  5px; }
	.list-li-pb-sm-10 > li{ padding-bottom: 10px; }
	.list-li-pb-sm-15 > li{ padding-bottom: 15px; }
	.list-li-pb-sm-20 > li{ padding-bottom: 20px; }
	.list-li-pb-sm-25 > li{ padding-bottom: 25px; }
	.list-li-pb-sm-30 > li{ padding-bottom: 30px; }
	
}

/* RESPONSIVE */

@media only screen and (max-width: 576px) {
	
	.list-a-p-xs-0  > li > a{ padding:  0px; }
	.list-a-p-xs-5  > li > a{ padding:  5px; }
	.list-a-p-xs-10 > li > a{ padding: 10px; }
	.list-a-p-xs-15 > li > a{ padding: 15px; }
	.list-a-p-xs-20 > li > a{ padding: 20px; }
	.list-a-p-xs-25 > li > a{ padding: 25px; }
	.list-a-p-xs-30 > li > a{ padding: 30px; }

	.list-a-plr-xs-0  > li > a{ padding-left:  0px; padding-right:  0px; }
	.list-a-plr-xs-5  > li > a{ padding-left:  5px; padding-right:  5px; }
	.list-a-plr-xs-10 > li > a{ padding-left: 10px; padding-right: 10px; }
	.list-a-plr-xs-15 > li > a{ padding-left: 15px; padding-right: 15px; }
	.list-a-plr-xs-20 > li > a{ padding-left: 20px; padding-right: 20px; }
	.list-a-plr-xs-25 > li > a{ padding-left: 25px; padding-right: 25px; }
	.list-a-plr-xs-30 > li > a{ padding-left: 30px; padding-right: 30px; }

	.list-a-pr-xs-0  > li > a{ padding-right: 0px; }
	.list-a-pr-xs-5  > li > a{ padding-right: 5px; }
	.list-a-pr-xs-10 > li > a{ padding-right: 10px; }
	.list-a-pr-xs-15 > li > a{ padding-right: 15px; }
	.list-a-pr-xs-20 > li > a{ padding-right: 20px; }
	.list-a-pr-xs-25 > li > a{ padding-right: 25px; }
	.list-a-pr-xs-30 > li > a{ padding-right: 30px; }
               
	.list-a-pl-xs-0  > li > a{ padding-left:  0px; }
	.list-a-pl-xs-5  > li > a{ padding-left:  5px; }
	.list-a-pl-xs-10 > li > a{ padding-left: 10px; }
	.list-a-pl-xs-15 > li > a{ padding-left: 15px; }
	.list-a-pl-xs-20 > li > a{ padding-left: 20px; }
	.list-a-pl-xs-25 > li > a{ padding-left: 25px; }
	.list-a-pl-xs-30 > li > a{ padding-left: 30px; }

	.list-a-ptb-xs-0  > li > a{ padding-top:  0px; padding-bottom:  0px; }
	.list-a-ptb-xs-5  > li > a{ padding-top:  5px; padding-bottom:  5px; }
	.list-a-ptb-xs-10 > li > a{ padding-top: 10px; padding-bottom: 10px; }
	.list-a-ptb-xs-15 > li > a{ padding-top: 15px; padding-bottom: 15px; }
	.list-a-ptb-xs-20 > li > a{ padding-top: 20px; padding-bottom: 20px; }
	.list-a-ptb-xs-25 > li > a{ padding-top: 25px; padding-bottom: 25px; }
	.list-a-ptb-xs-30 > li > a{ padding-top: 30px; padding-bottom: 30px; }

	.list-a-ptb-xs-7 > li > a{ padding-top: 7px; padding-bottom: 7px; }
	.list-a-ptb-xs-8 > li > a{ padding-top: 8px; padding-bottom: 8px; }

	.list-a-pt-xs-0  > li > a{ padding-top:  0px; }
	.list-a-pt-xs-5  > li > a{ padding-top:  5px; }
	.list-a-pt-xs-10 > li > a{ padding-top: 10px; }
	.list-a-pt-xs-15 > li > a{ padding-top: 15px; }
	.list-a-pt-xs-20 > li > a{ padding-top: 20px; }
	.list-a-pt-xs-25 > li > a{ padding-top: 25px; }
	.list-a-pt-xs-30 > li > a{ padding-top: 30px; }
               
	.list-a-pb-xs-0  > li > a{ padding-bottom:  0px; }
	.list-a-pb-xs-5  > li > a{ padding-bottom:  5px; }
	.list-a-pb-xs-10 > li > a{ padding-bottom: 10px; }
	.list-a-pb-xs-15 > li > a{ padding-bottom: 15px; }
	.list-a-pb-xs-20 > li > a{ padding-bottom: 20px; }
	.list-a-pb-xs-25 > li > a{ padding-bottom: 25px; }
	.list-a-pb-xs-30 > li > a{ padding-bottom: 30px; }


	.list-li-mlr-xs-0  > li{ margin-left:  0px; margin-right:  0px; }
	.list-li-mlr-xs-5  > li{ margin-left:  5px; margin-right:  5px; }
	.list-li-mlr-xs-10 > li{ margin-left: 10px; margin-right: 10px; }
	.list-li-mlr-xs-15 > li{ margin-left: 15px; margin-right: 15px; }
	.list-li-mlr-xs-20 > li{ margin-left: 20px; margin-right: 20px; }
	.list-li-mlr-xs-25 > li{ margin-left: 25px; margin-right: 25px; }
	.list-li-mlr-xs-30 > li{ margin-left: 30px; margin-right: 30px; }
                 
	.list-li-mtb-xs-0  > li{ margin-top:  0px; margin-bottom:  0px; }
	.list-li-mtb-xs-5  > li{ margin-top:  5px; margin-bottom:  5px; }
	.list-li-mtb-xs-10 > li{ margin-top: 10px; margin-bottom: 10px; }
	.list-li-mtb-xs-15 > li{ margin-top: 15px; margin-bottom: 15px; }
	.list-li-mtb-xs-20 > li{ margin-top: 20px; margin-bottom: 20px; }
	.list-li-mtb-xs-25 > li{ margin-top: 25px; margin-bottom: 25px; }
	.list-li-mtb-xs-30 > li{ margin-top: 30px; margin-bottom: 30px; }

	.list-li-mr-xs-0  > li{ margin-right:  0px; }
	.list-li-mr-xs-5  > li{ margin-right:  5px; }
	.list-li-mr-xs-10 > li{ margin-right: 10px; }
	.list-li-mr-xs-15 > li{ margin-right: 15px; }
	.list-li-mr-xs-20 > li{ margin-right: 20px; }
	.list-li-mr-xs-25 > li{ margin-right: 25px; }
	.list-li-mr-xs-30 > li{ margin-right: 30px; }
                
	.list-li-ml-xs-0  > li{ margin-left:  0px; }
	.list-li-ml-xs-5  > li{ margin-left:  5px; }
	.list-li-ml-xs-10 > li{ margin-left: 10px; }
	.list-li-ml-xs-15 > li{ margin-left: 15px; }
	.list-li-ml-xs-20 > li{ margin-left: 20px; }
	.list-li-ml-xs-25 > li{ margin-left: 25px; }
	.list-li-ml-xs-30 > li{ margin-left: 30px; }
                
	.list-li-mt-xs-0  > li{ margin-top:  0px; }
	.list-li-mt-xs-5  > li{ margin-top:  5px; }
	.list-li-mt-xs-10 > li{ margin-top: 10px; }
	.list-li-mt-xs-15 > li{ margin-top: 15px; }
	.list-li-mt-xs-20 > li{ margin-top: 20px; }
	.list-li-mt-xs-25 > li{ margin-top: 25px; }
	.list-li-mt-xs-30 > li{ margin-top: 30px; }
                
	.list-li-mb-xs-0  > li{ margin-bottom:  0px; }
	.list-li-mb-xs-5  > li{ margin-bottom:  5px; }
	.list-li-mb-xs-10 > li{ margin-bottom: 10px; }
	.list-li-mb-xs-15 > li{ margin-bottom: 15px; }
	.list-li-mb-xs-20 > li{ margin-bottom: 20px; }
	.list-li-mb-xs-25 > li{ margin-bottom: 25px; }
	.list-li-mb-xs-30 > li{ margin-bottom: 30px; }


	.list-li-plr-xs-0  > li{ padding-left:  0px; padding-right:  0px; }
	.list-li-plr-xs-5  > li{ padding-left:  5px; padding-right:  5px; }
	.list-li-plr-xs-10 > li{ padding-left: 10px; padding-right: 10px; }
	.list-li-plr-xs-15 > li{ padding-left: 15px; padding-right: 15px; }
	.list-li-plr-xs-20 > li{ padding-left: 20px; padding-right: 20px; }
	.list-li-plr-xs-25 > li{ padding-left: 25px; padding-right: 25px; }
	.list-li-plr-xs-30 > li{ padding-left: 30px; padding-right: 30px; }
                 
	.list-li-ptb-xs-0  > li{ padding-top:  0px; padding-bottom:  0px; }
	.list-li-ptb-xs-5  > li{ padding-top:  5px; padding-bottom:  5px; }
	.list-li-ptb-xs-10 > li{ padding-top: 10px; padding-bottom: 10px; }
	.list-li-ptb-xs-15 > li{ padding-top: 15px; padding-bottom: 15px; }
	.list-li-ptb-xs-20 > li{ padding-top: 20px; padding-bottom: 20px; }
	.list-li-ptb-xs-25 > li{ padding-top: 25px; padding-bottom: 25px; }
	.list-li-ptb-xs-30 > li{ padding-top: 30px; padding-bottom: 30px; }

	.list-li-pr-xs-0  > li{ padding-right:  0px; }
	.list-li-pr-xs-5  > li{ padding-right:  5px; }
	.list-li-pr-xs-10 > li{ padding-right: 10px; }
	.list-li-pr-xs-15 > li{ padding-right: 15px; }
	.list-li-pr-xs-20 > li{ padding-right: 20px; }
	.list-li-pr-xs-25 > li{ padding-right: 25px; }
	.list-li-pr-xs-30 > li{ padding-right: 30px; }
			    
	.list-li-pl-xs-0  > li{ padding-left:  0px; }
	.list-li-pl-xs-5  > li{ padding-left:  5px; }
	.list-li-pl-xs-10 > li{ padding-left: 10px; }
	.list-li-pl-xs-15 > li{ padding-left: 15px; }
	.list-li-pl-xs-20 > li{ padding-left: 20px; }
	.list-li-pl-xs-25 > li{ padding-left: 25px; }
	.list-li-pl-xs-30 > li{ padding-left: 30px; }
			    
	.list-li-pt-xs-0  > li{ padding-top:  0px; }
	.list-li-pt-xs-5  > li{ padding-top:  5px; }
	.list-li-pt-xs-10 > li{ padding-top: 10px; }
	.list-li-pt-xs-15 > li{ padding-top: 15px; }
	.list-li-pt-xs-20 > li{ padding-top: 20px; }
	.list-li-pt-xs-25 > li{ padding-top: 25px; }
	.list-li-pt-xs-30 > li{ padding-top: 30px; }
				
	.list-li-pb-xs-0  > li{ padding-bottom:  0px; }
	.list-li-pb-xs-5  > li{ padding-bottom:  5px; }
	.list-li-pb-xs-10 > li{ padding-bottom: 10px; }
	.list-li-pb-xs-15 > li{ padding-bottom: 15px; }
	.list-li-pb-xs-20 > li{ padding-bottom: 20px; }
	.list-li-pb-xs-25 > li{ padding-bottom: 25px; }
	.list-li-pb-xs-30 > li{ padding-bottom: 30px; }
	
}

/* MARGIN */

.m-5 { margin:  5px!important; }
.m-10{ margin: 10px!important; }
.m-15{ margin: 15px!important; }
.m-20{ margin: 20px!important; }
.m-25{ margin: 25px!important; }
.m-30{ margin: 30px!important; }
.m-40{ margin: 40px!important; }
.m-50{ margin: 50px!important; }

.mtb-5 { margin-top:  5px!important; margin-bottom:  5px!important; }
.mtb-10{ margin-top: 10px!important; margin-bottom: 10px!important; }
.mtb-15{ margin-top: 15px!important; margin-bottom: 15px!important; }
.mtb-20{ margin-top: 20px!important; margin-bottom: 20px!important; }
.mtb-25{ margin-top: 25px!important; margin-bottom: 25px!important; }
.mtb-30{ margin-top: 30px!important; margin-bottom: 30px!important; }
.mtb-40{ margin-top: 40px!important; margin-bottom: 40px!important; }
.mtb-50{ margin-top: 50px!important; margin-bottom: 50px!important; }

.mb-5 { margin-bottom:  5px!important; }
.mb-10{ margin-bottom: 10px!important; }
.mb-15{ margin-bottom: 15px!important; }
.mb-20{ margin-bottom: 20px!important; }
.mb-25{ margin-bottom: 25px!important; }
.mb-30{ margin-bottom: 30px!important; }
.mb-40{ margin-bottom: 40px!important; }
.mb-50{ margin-bottom: 50px!important; }

.mt-5 { margin-top:  5px!important; }
.mt-10{ margin-top: 10px!important; }
.mt-15{ margin-top: 15px!important; }
.mt-20{ margin-top: 20px!important; }
.mt-25{ margin-top: 25px!important; }
.mt-30{ margin-top: 30px!important; }
.mt-40{ margin-top: 40px!important; }
.mt-50{ margin-top: 50px!important; }

.mlr-5 { margin-left:  5px!important; margin-right:  5px!important; }
.mlr-10{ margin-left: 10px!important; margin-right: 10px!important; }
.mlr-15{ margin-left: 15px!important; margin-right: 15px!important; }
.mlr-20{ margin-left: 20px!important; margin-right: 20px!important; }
.mlr-25{ margin-left: 25px!important; margin-right: 25px!important; }
.mlr-30{ margin-left: 30px!important; margin-right: 30px!important; }
.mlr-40{ margin-left: 40px!important; margin-right: 40px!important; }
.mlr-50{ margin-left: 50px!important; margin-right: 50px!important; }

.ml-5 { margin-left:  5px!important; }
.ml-10{ margin-left: 10px!important; }
.ml-15{ margin-left: 15px!important; }
.ml-20{ margin-left: 20px!important; }
.ml-25{ margin-left: 25px!important; }
.ml-30{ margin-left: 30px!important; }
.ml-40{ margin-left: 40px!important; }
.ml-50{ margin-left: 50px!important; }
.ml-60{ margin-left: 60px!important; }
.ml-70{ margin-left: 70px!important; }
.ml-80{ margin-left: 80px!important; }
.ml-85{ margin-left: 85px!important; }
.ml-90{ margin-left: 90px!important; }
.ml-100{ margin-left: 100px!important; }
.ml-110{ margin-left: 110px!important; }
.ml-115{ margin-left: 115px!important; }
.ml-120{ margin-left: 120px!important; }

.mr-5 { margin-right:  5px!important; }
.mr-10{ margin-right: 10px!important; }
.mr-15{ margin-right: 15px!important; }
.mr-20{ margin-right: 20px!important; }
.mr-25{ margin-right: 25px!important; }
.mr-30{ margin-right: 30px!important; }
.mr-40{ margin-right: 40px!important; }
.mr-50{ margin-right: 50px!important; }
.mr-100{ margin-right: 100px!important; }
.mr-110{ margin-right: 110px!important; }
.mr-115{ margin-right: 115px!important; }
.mr-120{ margin-right: 120px!important; }


.m-auto{ margin: auto; }

.mtb-auto{ margin-top: auto; margin-bottom: auto; }
	
.mlr-auto{ margin-left: auto; margin-right: auto; }
	
	
/* RESPONSIVE */

@media only screen and (max-width: 992px) {
	
	.m-md-0 { margin:  0px!important; }
	.m-md-5 { margin:  5px!important; }
	.m-md-10{ margin: 10px!important; }
	.m-md-15{ margin: 15px!important; }
	.m-md-20{ margin: 20px!important; }
	.m-md-25{ margin: 25px!important; }
	.m-md-30{ margin: 30px!important; }
	.m-md-40{ margin: 40px!important; }
	.m-md-50{ margin: 50px!important; }

	.mtb-md-0 { margin-top:  0px!important; margin-bottom:  0px!important; }
	.mtb-md-5 { margin-top:  5px!important; margin-bottom:  5px!important; }
	.mtb-md-10{ margin-top: 10px!important; margin-bottom: 10px!important; }
	.mtb-md-15{ margin-top: 15px!important; margin-bottom: 15px!important; }
	.mtb-md-20{ margin-top: 20px!important; margin-bottom: 20px!important; }
	.mtb-md-25{ margin-top: 25px!important; margin-bottom: 25px!important; }
	.mtb-md-30{ margin-top: 30px!important; margin-bottom: 30px!important; }
	.mtb-md-40{ margin-top: 40px!important; margin-bottom: 40px!important; }
	.mtb-md-50{ margin-top: 50px!important; margin-bottom: 50px!important; }

	.mb-md-0 { margin-bottom:  0px!important; }
	.mb-md-5 { margin-bottom:  5px!important; }
	.mb-md-10{ margin-bottom: 10px!important; }
	.mb-md-15{ margin-bottom: 15px!important; }
	.mb-md-20{ margin-bottom: 20px!important; }
	.mb-md-25{ margin-bottom: 25px!important; }
	.mb-md-30{ margin-bottom: 30px!important; }
	.mb-md-40{ margin-bottom: 40px!important; }
	.mb-md-50{ margin-bottom: 50px!important; }

	.mt-md-0 { margin-top:  0px!important; }
	.mt-md-5 { margin-top:  5px!important; }
	.mt-md-10{ margin-top: 10px!important; }
	.mt-md-15{ margin-top: 15px!important; }
	.mt-md-20{ margin-top: 20px!important; }
	.mt-md-25{ margin-top: 25px!important; }
	.mt-md-30{ margin-top: 30px!important; }
	.mt-md-40{ margin-top: 40px!important; }
	.mt-md-50{ margin-top: 50px!important; }

	.mlr-md-0 { margin-left:  0px!important; margin-right:  0px!important; }
	.mlr-md-5 { margin-left:  5px!important; margin-right:  5px!important; }
	.mlr-md-10{ margin-left: 10px!important; margin-right: 10px!important; }
	.mlr-md-15{ margin-left: 15px!important; margin-right: 15px!important; }
	.mlr-md-20{ margin-left: 20px!important; margin-right: 20px!important; }
	.mlr-md-25{ margin-left: 25px!important; margin-right: 25px!important; }
	.mlr-md-30{ margin-left: 30px!important; margin-right: 30px!important; }
	.mlr-md-40{ margin-left: 40px!important; margin-right: 40px!important; }
	.mlr-md-50{ margin-left: 50px!important; margin-right: 50px!important; }

	.ml-md-0 { margin-left:  0px!important; }
	.ml-md-5 { margin-left:  5px!important; }
	.ml-md-10{ margin-left: 10px!important; }
	.ml-md-15{ margin-left: 15px!important; }
	.ml-md-20{ margin-left: 20px!important; }
	.ml-md-25{ margin-left: 25px!important; }
	.ml-md-30{ margin-left: 30px!important; }
	.ml-md-40{ margin-left: 40px!important; }
	.ml-md-50{ margin-left: 50px!important; }
	.ml-md-60{ margin-left: 60px!important; }
	.ml-md-70{ margin-left: 70px!important; }
	.ml-md-80{ margin-left: 80px!important; }
	.ml-md-85{ margin-left: 85px!important; }
	.ml-md-90{ margin-left: 90px!important; }
	.ml-md-100{ margin-left: 100px!important; }
	.ml-md-110{ margin-left: 110px!important; }
	.ml-md-115{ margin-left: 115px!important; }
	.ml-md-120{ margin-left: 120px!important; }

	.mr-md-0 { margin-right:  0px!important; }
	.mr-md-5 { margin-right:  5px!important; }
	.mr-md-10{ margin-right: 10px!important; }
	.mr-md-15{ margin-right: 15px!important; }
	.mr-md-20{ margin-right: 20px!important; }
	.mr-md-25{ margin-right: 25px!important; }
	.mr-md-30{ margin-right: 30px!important; }
	.mr-md-40{ margin-right: 40px!important; }
	.mr-md-50{ margin-right: 50px!important; }
	.mr-md-100{ margin-right: 100px!important; }
	.mr-md-110{ margin-right: 110px!important; }
	.mr-md-115{ margin-right: 115px!important; }
	.mr-md-120{ margin-right: 120px!important; }

	.m-md-auto{ margin: auto; }

	.mtb-md-auto{ margin-top: auto; margin-bottom: auto; }
	
	.mlr-md-auto{ margin-left: auto; margin-right: auto; }
	
}

@media only screen and (max-width: 767px) {
	
	.m-sm-0 { margin:  0px!important; }
	.m-sm-5 { margin:  5px!important; }
	.m-sm-10{ margin: 10px!important; }
	.m-sm-15{ margin: 15px!important; }
	.m-sm-20{ margin: 20px!important; }
	.m-sm-25{ margin: 25px!important; }
	.m-sm-30{ margin: 30px!important; }
	.m-sm-40{ margin: 40px!important; }
	.m-sm-50{ margin: 50px!important; }

	.mtb-sm-0 { margin-top:  0px!important; margin-bottom:  0px!important; }
	.mtb-sm-5 { margin-top:  5px!important; margin-bottom:  5px!important; }
	.mtb-sm-10{ margin-top: 10px!important; margin-bottom: 10px!important; }
	.mtb-sm-15{ margin-top: 15px!important; margin-bottom: 15px!important; }
	.mtb-sm-20{ margin-top: 20px!important; margin-bottom: 20px!important; }
	.mtb-sm-25{ margin-top: 25px!important; margin-bottom: 25px!important; }
	.mtb-sm-30{ margin-top: 30px!important; margin-bottom: 30px!important; }
	.mtb-sm-40{ margin-top: 40px!important; margin-bottom: 40px!important; }
	.mtb-sm-50{ margin-top: 50px!important; margin-bottom: 50px!important; }

	.mb-sm-0 { margin-bottom:  0px!important; }
	.mb-sm-5 { margin-bottom:  5px!important; }
	.mb-sm-10{ margin-bottom: 10px!important; }
	.mb-sm-15{ margin-bottom: 15px!important; }
	.mb-sm-20{ margin-bottom: 20px!important; }
	.mb-sm-25{ margin-bottom: 25px!important; }
	.mb-sm-30{ margin-bottom: 30px!important; }
	.mb-sm-40{ margin-bottom: 40px!important; }
	.mb-sm-50{ margin-bottom: 50px!important; }

	.mt-sm-0 { margin-top:  0px!important; }
	.mt-sm-5 { margin-top:  5px!important; }
	.mt-sm-10{ margin-top: 10px!important; }
	.mt-sm-15{ margin-top: 15px!important; }
	.mt-sm-20{ margin-top: 20px!important; }
	.mt-sm-25{ margin-top: 25px!important; }
	.mt-sm-30{ margin-top: 30px!important; }
	.mt-sm-40{ margin-top: 40px!important; }
	.mt-sm-50{ margin-top: 50px!important; }

	.mlr-sm-0 { margin-left:  0px!important; margin-right:  0px!important; }
	.mlr-sm-5 { margin-left:  5px!important; margin-right:  5px!important; }
	.mlr-sm-10{ margin-left: 10px!important; margin-right: 10px!important; }
	.mlr-sm-15{ margin-left: 15px!important; margin-right: 15px!important; }
	.mlr-sm-20{ margin-left: 20px!important; margin-right: 20px!important; }
	.mlr-sm-25{ margin-left: 25px!important; margin-right: 25px!important; }
	.mlr-sm-30{ margin-left: 30px!important; margin-right: 30px!important; }
	.mlr-sm-40{ margin-left: 40px!important; margin-right: 40px!important; }
	.mlr-sm-50{ margin-left: 50px!important; margin-right: 50px!important; }

	.ml-sm-0 { margin-left:  0px!important; }
	.ml-sm-5 { margin-left:  5px!important; }
	.ml-sm-10{ margin-left: 10px!important; }
	.ml-sm-15{ margin-left: 15px!important; }
	.ml-sm-20{ margin-left: 20px!important; }
	.ml-sm-25{ margin-left: 25px!important; }
	.ml-sm-30{ margin-left: 30px!important; }
	.ml-sm-40{ margin-left: 40px!important; }
	.ml-sm-50{ margin-left: 50px!important; }
	.ml-sm-60{ margin-left: 60px!important; }
	.ml-sm-70{ margin-left: 70px!important; }
	.ml-sm-80{ margin-left: 80px!important; }
	.ml-sm-85{ margin-left: 85px!important; }
	.ml-sm-90{ margin-left: 90px!important; }
	.ml-sm-100{ margin-left: 100px!important; }
	.ml-sm-110{ margin-left: 110px!important; }
	.ml-sm-120{ margin-left: 120px!important; }

	.mr-sm-0 { margin-right:  0px!important; }
	.mr-sm-5 { margin-right:  5px!important; }
	.mr-sm-10{ margin-right: 10px!important; }
	.mr-sm-15{ margin-right: 15px!important; }
	.mr-sm-20{ margin-right: 20px!important; }
	.mr-sm-25{ margin-right: 25px!important; }
	.mr-sm-30{ margin-right: 30px!important; }
	.mr-sm-40{ margin-right: 40px!important; }
	.mr-sm-50{ margin-right: 50px!important; }
	.mr-sm-100{ margin-right: 100px!important; }
	.mr-sm-110{ margin-right: 110px!important; }
	.mr-sm-120{ margin-right: 120px!important; }

	.m-sm-auto{ margin: auto; }

	.mtb-sm-auto{ margin-top: auto; margin-bottom: auto; }
	
	.mlr-sm-auto{ margin-left: auto; margin-right: auto; }
	
}

@media only screen and (max-width: 576px) {
	
	.m-xs-0 { margin:  0px!important; }
	.m-xs-5 { margin:  5px!important; }
	.m-xs-10{ margin: 10px!important; }
	.m-xs-15{ margin: 15px!important; }
	.m-xs-20{ margin: 20px!important; }
	.m-xs-25{ margin: 25px!important; }
	.m-xs-30{ margin: 30px!important; }
	.m-xs-40{ margin: 40px!important; }
	.m-xs-50{ margin: 50px!important; }

	.mtb-xs-0 { margin-top:  0px!important; margin-bottom:  0px!important; }
	.mtb-xs-5 { margin-top:  5px!important; margin-bottom:  5px!important; }
	.mtb-xs-10{ margin-top: 10px!important; margin-bottom: 10px!important; }
	.mtb-xs-15{ margin-top: 15px!important; margin-bottom: 15px!important; }
	.mtb-xs-20{ margin-top: 20px!important; margin-bottom: 20px!important; }
	.mtb-xs-25{ margin-top: 25px!important; margin-bottom: 25px!important; }
	.mtb-xs-30{ margin-top: 30px!important; margin-bottom: 30px!important; }
	.mtb-xs-40{ margin-top: 40px!important; margin-bottom: 40px!important; }
	.mtb-xs-50{ margin-top: 50px!important; margin-bottom: 50px!important; }

	.mb-xs-0 { margin-bottom:  0px!important; }
	.mb-xs-5 { margin-bottom:  5px!important; }
	.mb-xs-10{ margin-bottom: 10px!important; }
	.mb-xs-15{ margin-bottom: 15px!important; }
	.mb-xs-20{ margin-bottom: 20px!important; }
	.mb-xs-25{ margin-bottom: 25px!important; }
	.mb-xs-30{ margin-bottom: 30px!important; }
	.mb-xs-40{ margin-bottom: 40px!important; }
	.mb-xs-50{ margin-bottom: 50px!important; }

	.mt-xs-0 { margin-top:  0px!important; }
	.mt-xs-5 { margin-top:  5px!important; }
	.mt-xs-10{ margin-top: 10px!important; }
	.mt-xs-15{ margin-top: 15px!important; }
	.mt-xs-20{ margin-top: 20px!important; }
	.mt-xs-25{ margin-top: 25px!important; }
	.mt-xs-30{ margin-top: 30px!important; }
	.mt-xs-40{ margin-top: 40px!important; }
	.mt-xs-50{ margin-top: 50px!important; }

	.mlr-xs-0 { margin-left:  0px!important; margin-right:  0px!important; }
	.mlr-xs-5 { margin-left:  5px!important; margin-right:  5px!important; }
	.mlr-xs-10{ margin-left: 10px!important; margin-right: 10px!important; }
	.mlr-xs-15{ margin-left: 15px!important; margin-right: 15px!important; }
	.mlr-xs-20{ margin-left: 20px!important; margin-right: 20px!important; }
	.mlr-xs-25{ margin-left: 25px!important; margin-right: 25px!important; }
	.mlr-xs-30{ margin-left: 30px!important; margin-right: 30px!important; }
	.mlr-xs-40{ margin-left: 40px!important; margin-right: 40px!important; }
	.mlr-xs-50{ margin-left: 50px!important; margin-right: 50px!important; }

	.ml-xs-0 { margin-left:  0px!important; }
	.ml-xs-5 { margin-left:  5px!important; }
	.ml-xs-10{ margin-left: 10px!important; }
	.ml-xs-15{ margin-left: 15px!important; }
	.ml-xs-20{ margin-left: 20px!important; }
	.ml-xs-25{ margin-left: 25px!important; }
	.ml-xs-30{ margin-left: 30px!important; }
	.ml-xs-40{ margin-left: 40px!important; }
	.ml-xs-50{ margin-left: 50px!important; }
	.ml-xs-60{ margin-left: 60px!important; }
	.ml-xs-70{ margin-left: 70px!important; }
	.ml-xs-80{ margin-left: 80px!important; }
	.ml-xs-85{ margin-left: 85px!important; }
	.ml-xs-90{ margin-left: 90px!important; }
	.ml-xs-100{ margin-left: 100px!important; }
	.ml-xs-110{ margin-left: 110px!important; }
	.ml-xs-120{ margin-left: 120px!important; }

	.mr-xs-0 { margin-right:  0px!important; }
	.mr-xs-5 { margin-right:  5px!important; }
	.mr-xs-10{ margin-right: 10px!important; }
	.mr-xs-15{ margin-right: 15px!important; }
	.mr-xs-20{ margin-right: 20px!important; }
	.mr-xs-25{ margin-right: 25px!important; }
	.mr-xs-30{ margin-right: 30px!important; }
	.mr-xs-40{ margin-right: 40px!important; }
	.mr-xs-50{ margin-right: 50px!important; }
	.mr-xs-100{ margin-right: 100px!important; }
	.mr-xs-110{ margin-right: 110px!important; }
	.mr-xs-120{ margin-right: 120px!important; }

	.m-xs-auto{ margin: auto; }

	.mtb-xs-auto{ margin-top: auto; margin-bottom: auto; }
	
	.mlr-xs-auto{ margin-left: auto; margin-right: auto; }
	
}


/* PADDING */

.p-0 { padding:  0px!important; }
.p-5 { padding:  5px!important; }
.p-10{ padding: 10px!important; }
.p-15{ padding: 15px!important; }
.p-20 {	padding: 20px !important;	font-family: "frutigerltarabic";	background: linear-gradient(0deg, #000000d9, transparent);}
.p-25{ padding: 25px!important; }
.p-30{ padding: 30px!important; }
.p-40{ padding: 40px!important; }
.p-50{ padding: 50px!important; }
.p-60{ padding: 60px!important; }
.p-70{ padding: 70px!important; }
.p-80{ padding: 80px!important; }
.p-90{ padding: 90px!important; }

.pt-0 { padding-top:  0px!important; }
.pt-5 { padding-top:  5px!important; }
.pt-10{ padding-top: 10px!important; }
.pt-15{ padding-top: 15px!important; }
.pt-20{ padding-top: 20px!important; }
.pt-25{ padding-top: 25px!important; }
.pt-30{ padding-top: 30px!important; }
.pt-40{ padding-top: 40px!important; }
.pt-50{ padding-top: 50px!important; }
.pt-60{ padding-top: 60px!important; }
.pt-70{ padding-top: 70px!important; }
.pt-80{ padding-top: 80px!important; }
.pt-90{ padding-top: 90px!important; }

.pb-0 { padding-bottom:  0px!important; }
.pb-5 { padding-bottom:  5px!important; }
.pb-10{ padding-bottom: 10px!important; }
.pb-15{ padding-bottom: 15px!important; }
.pb-20{ padding-bottom: 20px!important; }
.pb-25{ padding-bottom: 25px!important; }
.pb-30{ padding-bottom: 30px!important; }
.pb-40{ padding-bottom: 40px!important; }
.pb-50{ padding-bottom: 50px!important; }
.pt-60{ padding-bottom: 60px!important; }
.pt-70{ padding-bottom: 70px!important; }
.pt-80{ padding-bottom: 80px!important; }
.pt-90{ padding-bottom: 90px!important; }

.pl-0 { padding-left:  0px!important; }
.pl-5 { padding-left:  5px!important; }
.pl-10{ padding-left: 10px!important; }
.pl-15{ padding-left: 15px!important; }
.pl-20{ padding-left: 20px!important; }
.pl-25{ padding-left: 25px!important; }
.pl-30{ padding-left: 30px!important; }
.pl-40{ padding-left: 40px!important; }
.pl-50{ padding-left: 50px!important; }
.pl-60{ padding-left: 60px!important; }
.pl-70{ padding-left: 70px!important; }
.pl-80{ padding-left: 80px!important; }
.pl-90{ padding-left: 90px!important; }

.pr-0 { padding-right:  0px!important; }
.pr-5 { padding-right:  5px!important; }
.pr-10{ padding-right: 10px!important; }
.pr-15{ padding-right: 15px!important; }
.pr-20{ padding-right: 20px!important; }
.pr-25{ padding-right: 25px!important; }
.pr-30{ padding-right: 30px!important; }
.pr-40{ padding-right: 40px!important; }
.pr-50{ padding-right: 50px!important; }
.pr-60{ padding-right: 60px!important; }
.pr-70{ padding-right: 70px!important; }
.pr-80{ padding-right: 80px!important; }
.pr-90{ padding-right: 90px!important; }

.ptb-0 { padding-top:  0px!important; padding-bottom:  0px!important; }
.ptb-5 { padding-top:  5px!important; padding-bottom:  5px!important; }
.ptb-10{ padding-top: 10px!important; padding-bottom: 10px!important; }
.ptb-15{ padding-top: 15px!important; padding-bottom: 15px!important; }
.ptb-20{ padding-top: 20px!important; padding-bottom: 20px!important; }
.ptb-25{ padding-top: 25px!important; padding-bottom: 25px!important; }
.ptb-30{ padding-top: 30px!important; padding-bottom: 30px!important; }
.ptb-40{ padding-top: 40px!important; padding-bottom: 40px!important; }
.ptb-50{ padding-top: 50px!important; padding-bottom: 50px!important; }
.ptb-60{ padding-top: 60px!important; padding-bottom: 60px!important; }
.ptb-70{ padding-top: 70px!important; padding-bottom: 70px!important; }
.ptb-80{ padding-top: 80px!important; padding-bottom: 80px!important; }
.ptb-90{ padding-top: 90px!important; padding-bottom: 90px!important; }

.plr-0 { padding-left:  0px!important; padding-right:  0px!important; }
.plr-5 { padding-left:  5px!important; padding-right:  5px!important; }
.plr-10{ padding-left: 10px!important; padding-right: 10px!important; }
.plr-15{ padding-left: 15px!important; padding-right: 15px!important; }
.plr-20{ padding-left: 20px!important; padding-right: 20px!important; }
.plr-25{ padding-left: 25px!important; padding-right: 25px!important; }
.plr-30{ padding-left: 30px!important; padding-right: 30px!important; }
.plr-40{ padding-left: 40px!important; padding-right: 40px!important; }
.plr-50{ padding-left: 50px!important; padding-right: 50px!important; }
.plr-60{ padding-left: 60px!important; padding-right: 60px!important; }
.plr-70{ padding-left: 70px!important; padding-right: 70px!important; }
.plr-80{ padding-left: 80px!important; padding-right: 80px!important; }
.plr-90{ padding-left: 90px!important; padding-right: 90px!important; }


/* RESPONSIVE */

@media only screen and (max-width: 992px) {
	
	.p-md-0 { padding:  0px!important; }
	.p-md-5 { padding:  5px!important; }
	.p-md-10{ padding: 10px!important; }
	.p-md-15{ padding: 15px!important; }
	.p-md-20{ padding: 20px!important; }
	.p-md-25{ padding: 25px!important; }
	.p-md-30{ padding: 30px!important; }
	.p-md-40{ padding: 40px!important; }
	.p-md-50{ padding: 50px!important; }
	.p-md-60{ padding: 60px!important; }
	.p-md-70{ padding: 70px!important; }
	.p-md-80{ padding: 80px!important; }
	.p-md-90{ padding: 90px!important; }

	.pt-md-0 { padding-top:  0px!important; }
	.pt-md-5 { padding-top:  5px!important; }
	.pt-md-10{ padding-top: 10px!important; }
	.pt-md-15{ padding-top: 15px!important; }
	.pt-md-20{ padding-top: 20px!important; }
	.pt-md-25{ padding-top: 25px!important; }
	.pt-md-30{ padding-top: 30px!important; }
	.pt-md-40{ padding-top: 40px!important; }
	.pt-md-50{ padding-top: 50px!important; }
	.pt-md-60{ padding-top: 60px!important; }
	.pt-md-70{ padding-top: 70px!important; }
	.pt-md-80{ padding-top: 80px!important; }
	.pt-md-90{ padding-top: 90px!important; }
       
	.pb-md-0 { padding-bottom:  0px!important; }
	.pb-md-5 { padding-bottom:  5px!important; }
	.pb-md-10{ padding-bottom: 10px!important; }
	.pb-md-15{ padding-bottom: 15px!important; }
	.pb-md-20{ padding-bottom: 20px!important; }
	.pb-md-25{ padding-bottom: 25px!important; }
	.pb-md-30{ padding-bottom: 30px!important; }
	.pb-md-40{ padding-bottom: 40px!important; }
	.pb-md-50{ padding-bottom: 50px!important; }
	.pt-md-60{ padding-bottom: 60px!important; }
	.pt-md-70{ padding-bottom: 70px!important; }
	.pt-md-80{ padding-bottom: 80px!important; }
	.pt-md-90{ padding-bottom: 90px!important; }
       
	.pl-md-0 { padding-left:  0px!important; }
	.pl-md-5 { padding-left:  5px!important; }
	.pl-md-10{ padding-left: 10px!important; }
	.pl-md-15{ padding-left: 15px!important; }
	.pl-md-20{ padding-left: 20px!important; }
	.pl-md-25{ padding-left: 25px!important; }
	.pl-md-30{ padding-left: 30px!important; }
	.pl-md-40{ padding-left: 40px!important; }
	.pl-md-50{ padding-left: 50px!important; }
	.pl-md-60{ padding-left: 60px!important; }
	.pl-md-70{ padding-left: 70px!important; }
	.pl-md-80{ padding-left: 80px!important; }
	.pl-md-90{ padding-left: 90px!important; }
       
	.pr-md-0 { padding-right:  0px!important; }
	.pr-md-5 { padding-right:  5px!important; }
	.pr-md-10{ padding-right: 10px!important; }
	.pr-md-15{ padding-right: 15px!important; }
	.pr-md-20{ padding-right: 20px!important; }
	.pr-md-25{ padding-right: 25px!important; }
	.pr-md-30{ padding-right: 30px!important; }
	.pr-md-40{ padding-right: 40px!important; }
	.pr-md-50{ padding-right: 50px!important; }
	.pr-md-60{ padding-right: 60px!important; }
	.pr-md-70{ padding-right: 70px!important; }
	.pr-md-80{ padding-right: 80px!important; }
	.pr-md-90{ padding-right: 90px!important; }

	.ptb-md-0 { padding-top:  0px!important; padding-bottom:  0px!important; }
	.ptb-md-5 { padding-top:  5px!important; padding-bottom:  5px!important; }
	.ptb-md-10{ padding-top: 10px!important; padding-bottom: 10px!important; }
	.ptb-md-15{ padding-top: 15px!important; padding-bottom: 15px!important; }
	.ptb-md-20{ padding-top: 20px!important; padding-bottom: 20px!important; }
	.ptb-md-25{ padding-top: 25px!important; padding-bottom: 25px!important; }
	.ptb-md-30{ padding-top: 30px!important; padding-bottom: 30px!important; }
	.ptb-md-40{ padding-top: 40px!important; padding-bottom: 40px!important; }
	.ptb-md-50{ padding-top: 50px!important; padding-bottom: 50px!important; }
	.ptb-md-60{ padding-top: 60px!important; padding-bottom: 60px!important; }
	.ptb-md-70{ padding-top: 70px!important; padding-bottom: 70px!important; }
	.ptb-md-80{ padding-top: 80px!important; padding-bottom: 80px!important; }
	.ptb-md-90{ padding-top: 90px!important; padding-bottom: 90px!important; }
        
	.plr-md-0 { padding-left:  0px!important; padding-right:  0px!important; }
	.plr-md-5 { padding-left:  5px!important; padding-right:  5px!important; }
	.plr-md-10{ padding-left: 10px!important; padding-right: 10px!important; }
	.plr-md-15{ padding-left: 15px!important; padding-right: 15px!important; }
	.plr-md-20{ padding-left: 20px!important; padding-right: 20px!important; }
	.plr-md-25{ padding-left: 25px!important; padding-right: 25px!important; }
	.plr-md-30{ padding-left: 30px!important; padding-right: 30px!important; }
	.plr-md-40{ padding-left: 40px!important; padding-right: 40px!important; }
	.plr-md-50{ padding-left: 50px!important; padding-right: 50px!important; }
	.plr-md-60{ padding-left: 60px!important; padding-right: 60px!important; }
	.plr-md-70{ padding-left: 70px!important; padding-right: 70px!important; }
	.plr-md-80{ padding-left: 80px!important; padding-right: 80px!important; }
	.plr-md-90{ padding-left: 90px!important; padding-right: 90px!important; }
	
}

@media only screen and (max-width: 767px) {
	
	.p-sm-0 { padding:  0px!important; }
	.p-sm-5 { padding:  5px!important; }
	.p-sm-10{ padding: 10px!important; }
	.p-sm-15{ padding: 15px!important; }
	.p-sm-20{ padding: 20px!important; }
	.p-sm-25{ padding: 25px!important; }
	.p-sm-30{ padding: 30px!important; }
	.p-sm-40{ padding: 40px!important; }
	.p-sm-50{ padding: 50px!important; }
	.p-sm-60{ padding: 60px!important; }
	.p-sm-70{ padding: 70px!important; }
	.p-sm-80{ padding: 80px!important; }
	.p-sm-90{ padding: 90px!important; }

	.pt-sm-0 { padding-top:  0px!important; }
	.pt-sm-5 { padding-top:  5px!important; }
	.pt-sm-10{ padding-top: 10px!important; }
	.pt-sm-15{ padding-top: 15px!important; }
	.pt-sm-20{ padding-top: 20px!important; }
	.pt-sm-25{ padding-top: 25px!important; }
	.pt-sm-30{ padding-top: 30px!important; }
	.pt-sm-40{ padding-top: 40px!important; }
	.pt-sm-50{ padding-top: 50px!important; }
	.pt-sm-60{ padding-top: 60px!important; }
	.pt-sm-70{ padding-top: 70px!important; }
	.pt-sm-80{ padding-top: 80px!important; }
	.pt-sm-90{ padding-top: 90px!important; }
       
	.pb-sm-0 { padding-bottom:  0px!important; }
	.pb-sm-5 { padding-bottom:  5px!important; }
	.pb-sm-10{ padding-bottom: 10px!important; }
	.pb-sm-15{ padding-bottom: 15px!important; }
	.pb-sm-20{ padding-bottom: 20px!important; }
	.pb-sm-25{ padding-bottom: 25px!important; }
	.pb-sm-30{ padding-bottom: 30px!important; }
	.pb-sm-40{ padding-bottom: 40px!important; }
	.pb-sm-50{ padding-bottom: 50px!important; }
	.pt-sm-60{ padding-bottom: 60px!important; }
	.pt-sm-70{ padding-bottom: 70px!important; }
	.pt-sm-80{ padding-bottom: 80px!important; }
	.pt-sm-90{ padding-bottom: 90px!important; }
       
	.pl-sm-0 { padding-left:  0px!important; }
	.pl-sm-5 { padding-left:  5px!important; }
	.pl-sm-10{ padding-left: 10px!important; }
	.pl-sm-15{ padding-left: 15px!important; }
	.pl-sm-20{ padding-left: 20px!important; }
	.pl-sm-25{ padding-left: 25px!important; }
	.pl-sm-30{ padding-left: 30px!important; }
	.pl-sm-40{ padding-left: 40px!important; }
	.pl-sm-50{ padding-left: 50px!important; }
	.pl-sm-60{ padding-left: 60px!important; }
	.pl-sm-70{ padding-left: 70px!important; }
	.pl-sm-80{ padding-left: 80px!important; }
	.pl-sm-90{ padding-left: 90px!important; }
       
	.pr-sm-0 { padding-right:  0px!important; }
	.pr-sm-5 { padding-right:  5px!important; }
	.pr-sm-10{ padding-right: 10px!important; }
	.pr-sm-15{ padding-right: 15px!important; }
	.pr-sm-20{ padding-right: 20px!important; }
	.pr-sm-25{ padding-right: 25px!important; }
	.pr-sm-30{ padding-right: 30px!important; }
	.pr-sm-40{ padding-right: 40px!important; }
	.pr-sm-50{ padding-right: 50px!important; }
	.pr-sm-60{ padding-right: 60px!important; }
	.pr-sm-70{ padding-right: 70px!important; }
	.pr-sm-80{ padding-right: 80px!important; }
	.pr-sm-90{ padding-right: 90px!important; }

	.ptb-sm-0 { padding-top:  0px!important; padding-bottom:  0px!important; }
	.ptb-sm-5 { padding-top:  5px!important; padding-bottom:  5px!important; }
	.ptb-sm-10{ padding-top: 10px!important; padding-bottom: 10px!important; }
	.ptb-sm-15{ padding-top: 15px!important; padding-bottom: 15px!important; }
	.ptb-sm-20{ padding-top: 20px!important; padding-bottom: 20px!important; }
	.ptb-sm-25{ padding-top: 25px!important; padding-bottom: 25px!important; }
	.ptb-sm-30{ padding-top: 30px!important; padding-bottom: 30px!important; }
	.ptb-sm-40{ padding-top: 40px!important; padding-bottom: 40px!important; }
	.ptb-sm-50{ padding-top: 50px!important; padding-bottom: 50px!important; }
	.ptb-sm-60{ padding-top: 60px!important; padding-bottom: 60px!important; }
	.ptb-sm-70{ padding-top: 70px!important; padding-bottom: 70px!important; }
	.ptb-sm-80{ padding-top: 80px!important; padding-bottom: 80px!important; }
	.ptb-sm-90{ padding-top: 90px!important; padding-bottom: 90px!important; }
        
	.plr-sm-0 { padding-left:  0px!important; padding-right:  0px!important; }
	.plr-sm-5 { padding-left:  5px!important; padding-right:  5px!important; }
	.plr-sm-10{ padding-left: 10px!important; padding-right: 10px!important; }
	.plr-sm-15{ padding-left: 15px!important; padding-right: 15px!important; }
	.plr-sm-20{ padding-left: 20px!important; padding-right: 20px!important; }
	.plr-sm-25{ padding-left: 25px!important; padding-right: 25px!important; }
	.plr-sm-30{ padding-left: 30px!important; padding-right: 30px!important; }
	.plr-sm-40{ padding-left: 40px!important; padding-right: 40px!important; }
	.plr-sm-50{ padding-left: 50px!important; padding-right: 50px!important; }
	.plr-sm-60{ padding-left: 60px!important; padding-right: 60px!important; }
	.plr-sm-70{ padding-left: 70px!important; padding-right: 70px!important; }
	.plr-sm-80{ padding-left: 80px!important; padding-right: 80px!important; }
	.plr-sm-90{ padding-left: 90px!important; padding-right: 90px!important; }
	
}

@media only screen and (max-width: 576px) {
	
	.p-xs-0 { padding:  0px!important; }
	.p-xs-5 { padding:  5px!important; }
	.p-xs-10{ padding: 10px!important; }
	.p-xs-15{ padding: 15px!important; }
	.p-xs-20{ padding: 20px!important; }
	.p-xs-25{ padding: 25px!important; }
	.p-xs-30{ padding: 30px!important; }
	.p-xs-40{ padding: 40px!important; }
	.p-xs-50{ padding: 50px!important; }
	.p-xs-60{ padding: 60px!important; }
	.p-xs-70{ padding: 70px!important; }
	.p-xs-80{ padding: 80px!important; }
	.p-xs-90{ padding: 90px!important; }

	.pt-xs-0 { padding-top:  0px!important; }
	.pt-xs-5 { padding-top:  5px!important; }
	.pt-xs-10{ padding-top: 10px!important; }
	.pt-xs-15{ padding-top: 15px!important; }
	.pt-xs-20{ padding-top: 20px!important; }
	.pt-xs-25{ padding-top: 25px!important; }
	.pt-xs-30{ padding-top: 30px!important; }
	.pt-xs-40{ padding-top: 40px!important; }
	.pt-xs-50{ padding-top: 50px!important; }
	.pt-xs-60{ padding-top: 60px!important; }
	.pt-xs-70{ padding-top: 70px!important; }
	.pt-xs-80{ padding-top: 80px!important; }
	.pt-xs-90{ padding-top: 90px!important; }
       
	.pb-xs-0 { padding-bottom:  0px!important; }
	.pb-xs-5 { padding-bottom:  5px!important; }
	.pb-xs-10{ padding-bottom: 10px!important; }
	.pb-xs-15{ padding-bottom: 15px!important; }
	.pb-xs-20{ padding-bottom: 20px!important; }
	.pb-xs-25{ padding-bottom: 25px!important; }
	.pb-xs-30{ padding-bottom: 30px!important; }
	.pb-xs-40{ padding-bottom: 40px!important; }
	.pb-xs-50{ padding-bottom: 50px!important; }
	.pt-xs-60{ padding-bottom: 60px!important; }
	.pt-xs-70{ padding-bottom: 70px!important; }
	.pt-xs-80{ padding-bottom: 80px!important; }
	.pt-xs-90{ padding-bottom: 90px!important; }
       
	.pl-xs-0 { padding-left:  0px!important; }
	.pl-xs-5 { padding-left:  5px!important; }
	.pl-xs-10{ padding-left: 10px!important; }
	.pl-xs-15{ padding-left: 15px!important; }
	.pl-xs-20{ padding-left: 20px!important; }
	.pl-xs-25{ padding-left: 25px!important; }
	.pl-xs-30{ padding-left: 30px!important; }
	.pl-xs-40{ padding-left: 40px!important; }
	.pl-xs-50{ padding-left: 50px!important; }
	.pl-xs-60{ padding-left: 60px!important; }
	.pl-xs-70{ padding-left: 70px!important; }
	.pl-xs-80{ padding-left: 80px!important; }
	.pl-xs-90{ padding-left: 90px!important; }
       
	.pr-xs-0 { padding-right:  0px!important; }
	.pr-xs-5 { padding-right:  5px!important; }
	.pr-xs-10{ padding-right: 10px!important; }
	.pr-xs-15{ padding-right: 15px!important; }
	.pr-xs-20{ padding-right: 20px!important; }
	.pr-xs-25{ padding-right: 25px!important; }
	.pr-xs-30{ padding-right: 30px!important; }
	.pr-xs-40{ padding-right: 40px!important; }
	.pr-xs-50{ padding-right: 50px!important; }
	.pr-xs-60{ padding-right: 60px!important; }
	.pr-xs-70{ padding-right: 70px!important; }
	.pr-xs-80{ padding-right: 80px!important; }
	.pr-xs-90{ padding-right: 90px!important; }

	.ptb-xs-0 { padding-top:  0px!important; padding-bottom:  0px!important; }
	.ptb-xs-5 { padding-top:  5px!important; padding-bottom:  5px!important; }
	.ptb-xs-10{ padding-top: 10px!important; padding-bottom: 10px!important; }
	.ptb-xs-15{ padding-top: 15px!important; padding-bottom: 15px!important; }
	.ptb-xs-20{ padding-top: 20px!important; padding-bottom: 20px!important; }
	.ptb-xs-25{ padding-top: 25px!important; padding-bottom: 25px!important; }
	.ptb-xs-30{ padding-top: 30px!important; padding-bottom: 30px!important; }
	.ptb-xs-40{ padding-top: 40px!important; padding-bottom: 40px!important; }
	.ptb-xs-50{ padding-top: 50px!important; padding-bottom: 50px!important; }
	.ptb-xs-60{ padding-top: 60px!important; padding-bottom: 60px!important; }
	.ptb-xs-70{ padding-top: 70px!important; padding-bottom: 70px!important; }
	.ptb-xs-80{ padding-top: 80px!important; padding-bottom: 80px!important; }
	.ptb-xs-90{ padding-top: 90px!important; padding-bottom: 90px!important; }
        
	.plr-xs-0 { padding-left:  0px!important; padding-right:  0px!important; }
	.plr-xs-5 { padding-left:  5px!important; padding-right:  5px!important; }
	.plr-xs-10{ padding-left: 10px!important; padding-right: 10px!important; }
	.plr-xs-15{ padding-left: 15px!important; padding-right: 15px!important; }
	.plr-xs-20{ padding-left: 20px!important; padding-right: 20px!important; }
	.plr-xs-25{ padding-left: 25px!important; padding-right: 25px!important; }
	.plr-xs-30{ padding-left: 30px!important; padding-right: 30px!important; }
	.plr-xs-40{ padding-left: 40px!important; padding-right: 40px!important; }
	.plr-xs-50{ padding-left: 50px!important; padding-right: 50px!important; }
	.plr-xs-60{ padding-left: 60px!important; padding-right: 60px!important; }
	.plr-xs-70{ padding-left: 70px!important; padding-right: 70px!important; }
	.plr-xs-80{ padding-left: 80px!important; padding-right: 80px!important; }
	.plr-xs-90{ padding-left: 90px!important; padding-right: 90px!important; }
	
}


ul.social-set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  height: auto;
  width: auto;
}
ul.social-set li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
/* Font Awesome icons */
a.sociali {
  font-size: 15px;
  line-height: .0em;
  padding: 0px;
  background: rgba(0,0,0,.075);
  color: #fff;
  margin-right: 16px;
  margin-top: 4px !important;
  padding-bottom: 4px !important;
}
a.sociali:hover, a.sociali:focus {
  background: rgba(0,0,0,.075);
}
a.serv{
	border-bottom-color: #505052;
}


	a.serv:hover {
		border-bottom-color: #b7282b;
		color:#FFF;
		text-decoration:none;
	}


@media (max-width: 768px) {
  #mob_Nv {
    display:block
  }
}

@media (min-width: 768px) {
  #mob_Nv {
    display:none
  }
}



@media (max-width: 768px) {
  #services {
    display:none
  }
}

@media (min-width: 768px) {
  #services {
    display:block
  }
}

#newsticker-demo { 
width:100%; 
background:#6f6f6f; 
padding:0px 0px 0; 
font-family:Verdana,Arial,Sans-Serif;
font-size:12px;
margin:0px auto;
}

#newsticker-demo a { text-decoration:none; }
#newsticker-demo img { border: 2px solid #FFFFFF; }

#newsticker-demo .title {
text-align:center;
font-size:14px;
font-weight:bold;
padding:5px;
}

.newsticker-jcarousellite { width:100%; }
.newsticker-jcarousellite ul li{ list-style:none; display:block; padding-bottom:1px; margin-bottom:5px;border-bottom-style:solid;border-bottom-color:#FFF; }
.newsticker-jcarousellite .thumbnail { float:left; width:90px; }
.newsticker-jcarousellite .info { float:right; width:100%;color:#FFF; }
.newsticker-jcarousellite .info span.cat { display: block; font-size:10px; color:#FFF; }

.clear { clear: both; }

.blog .carousel-indicators {
	left: 0;
	top: auto;
    bottom: -40px;

}

/* The colour of the indicators */
.blog .carousel-indicators li {
    background: #a3a3a3;
    border-radius: 50%;
    width: 8px;
    height: 8px;
}

.blog .carousel-indicators .active {
background: #707070;
}

.demo .item {
    margin-bottom: -40px;
}

.content-slider li {
    color: #FFF;
}

.content-slider h3 {
    margin: 0;
    padding: 70px 0;
}
.owl-buttons {
  display: none;
}
.owl-carousel:hover .owl-buttons {
  display: block;
}

.owl-item {
  text-align: center;
}

.owl-theme .owl-controls .owl-buttons div {
  background: transparent;
  color: #869791;
  font-size: 40px;
  line-height: 300px;
  margin: 0;
  padding: 0 60px;
  position: absolute;
  top: 0;
}
.owl-theme .owl-controls .owl-buttons .owl-prev {
  left: 0;
  padding-left: 20px;
}
.owl-theme .owl-controls .owl-buttons .owl-next {
  right: 0;
  padding-right: 20px;
}

.blog .carousel-indicators {
	left: 0;
	top: auto;
    bottom: -40px;

}

/* The colour of the indicators */
.blog .carousel-indicators li {
    background: #a3a3a3;
    border-radius: 50%;
    width: 4px;
    height: 4px;
}

.blog .carousel-indicators .active {
background: #707070;
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  background: #565656;
}

.about .content {
  padding: 0 80px;
}

.about .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #5f5950;
}

.about .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.about .content p {
  font-size: 15px;
  color: #848484;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li + li {
  margin-top: 15px;
}

.about .content ul li {
  position: relative;
  padding-left: 26px;
}

.about .content ul i {
  font-size: 20px;
  color: #ffb03b;
  position: absolute;
  left: 0;
  top: 2px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 300px;
  position: relative;
}

	.about .play-btn {
		width: 94px;
		height: 94px;
		background: radial-gradient(#505052 14%, #3333335c 52%);
		border-radius: 5%;
		display: block;
		position: absolute;
		left: calc(50% - 47px);
		top: calc(50% - 47px);
		overflow: hidden;
	}

.about .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

		.about .play-btn::before {
			content: '';
			position: absolute;
			width: 120px;
			height: 120px;
			-webkit-animation-delay: 0s;
			animation-delay: 0s;
			-webkit-animation: pulsate-btn 2s;
			animation: pulsate-btn 2s;
			-webkit-animation-direction: forwards;
			animation-direction: forwards;
			-webkit-animation-iteration-count: infinite;
			animation-iteration-count: infinite;
			-webkit-animation-timing-function: steps;
			animation-timing-function: steps;
			opacity: 1;
			border-radius: 50%;
			border: 5px solid #3333335c;
			top: -15%;
			left: -15%;
			background: rgba(198, 16, 0, 0);
		}

		.about .play-btn:hover::after {
			border-left: 15px solid #3333335c;
			transform: scale(20);
		}

.about .play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@media (max-width: 1024px) {
  .about .content, .about .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .about .content {
    padding-top: 30px;
  }
  .about .accordion-list {
    padding-bottom: 30px;
  }
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@media(max-width: 1000px) {
    #Mob_Stat {
        display:block;

    }
}


@media(min-width: 1000px) {

    #Mob_Stat {
 display:none;
    }
}



@media(max-width: 1000px) {
	#Desk_Stat {
		height:350px;
	}
}


@media(min-width: 1000px) {

	#Desk_Stat {
		height:245px;
	}
}

.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1; /* Sit on top */
	padding-top: 100px; /* Location of the box */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
	background-color: #fefefe;
	margin: auto;
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
}

.modal2 {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1; /* Sit on top */
	padding-top: 100px; /* Location of the box */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content2 {
	background-color: #fefefe;
	margin: auto;
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
}
/* The Close Button */
.close {
	color: #aaaaaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

	.close:hover,
	.close:focus {
		color: #000;
		text-decoration: none;
		cursor: pointer;
	}


.card {
	
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
	transition: 0.3s;
	width: 70%;
	border-radius: 30px;
	background: #ff00000d;
	margin-top: 25px;
	margin-right: 40px;
	margin-left: 25px;
}

	.card:hover {
		box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
	}

img {
	border-radius: 5px 5px 0 0;
}

.cont_card {
	padding: 2px 16px;
	background: #333;
	border-top-right-radius: 30px;
	border-top-left-radius: 30px;
	border-bottom-style: solid;
	border-bottom-color: goldenrod;
	text-align: center;
	color: #FFF;
}


.demo .item {
	margin-bottom: -40px;
}

.content-slider li {
	color: #FFF;
}

.content-slider h3 {
	margin: 0;
	padding: 70px 0;
}

.lSSlideOuter {
	overflow: hidden;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.lightSlider:before, .lightSlider:after {
	content: " ";
	display: table;
}

.lightSlider {
	overflow: hidden;
	margin: 0;
}

.lSSlideWrapper {
	max-width: 100%;
	overflow: hidden;
	position: relative;
}

	.lSSlideWrapper > .lightSlider:after {
		clear: both;
	}

	.lSSlideWrapper .lSSlide {
		-webkit-transform: translate(0px, 0px);
		-ms-transform: translate(0px, 0px);
		transform: translate(0px, 0px);
		-webkit-transition: all 1s;
		-webkit-transition-property: -webkit-transform,height;
		-moz-transition-property: -moz-transform,height;
		transition-property: transform,height;
		-webkit-transition-duration: inherit !important;
		transition-duration: inherit !important;
		-webkit-transition-timing-function: inherit !important;
		transition-timing-function: inherit !important;
	}

	.lSSlideWrapper .lSFade {
		position: relative;
	}

		.lSSlideWrapper .lSFade > * {
			position: absolute !important;
			top: 0;
			left: 0;
			z-index: 9;
			margin-right: 0;
			width: 100%;
		}

	.lSSlideWrapper.usingCss .lSFade > * {
		opacity: 0;
		-webkit-transition-delay: 0s;
		transition-delay: 0s;
		-webkit-transition-duration: inherit !important;
		transition-duration: inherit !important;
		-webkit-transition-property: opacity;
		transition-property: opacity;
		-webkit-transition-timing-function: inherit !important;
		transition-timing-function: inherit !important;
	}

	.lSSlideWrapper .lSFade > *.active {
		z-index: 10;
	}

	.lSSlideWrapper.usingCss .lSFade > *.active {
		opacity: 1;
	}

.lSSlideOuter .lSPager.lSpg {
	margin: 0px 0 0;
	padding: 0;
	text-align: center;
}

	.lSSlideOuter .lSPager.lSpg > li {
		cursor: pointer;
		display: inline-block;
		padding: 0 5px;
	}

		.lSSlideOuter .lSPager.lSpg > li a {
			background-color: #bdc1cf;
			border-radius: 30px;
			display: inline-block;
			height: 8px;
			overflow: hidden;
			text-indent: -999em;
			width: 8px;
			position: relative;
			z-index: 99;
			-webkit-transition: all 0.5s linear 0s;
			transition: all 0.5s linear 0s;
		}

		.lSSlideOuter .lSPager.lSpg > li:hover a, .lSSlideOuter .lSPager.lSpg > li.active a {
			background-color: #c10d32;
		}

.lSSlideOuter .media {
	opacity: 0.8;
}

	.lSSlideOuter .media.active {
		opacity: 1;
	}
/* End of pager */

/** Gallery */
.lSSlideOuter .lSPager.lSGallery {
	list-style: none outside none;
	padding-left: 0;
	margin: 0;
	overflow: hidden;
	transform: translate3d(0px, 0px, 0px);
	-moz-transform: translate3d(0px, 0px, 0px);
	-ms-transform: translate3d(0px, 0px, 0px);
	-webkit-transform: translate3d(0px, 0px, 0px);
	-o-transform: translate3d(0px, 0px, 0px);
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

	.lSSlideOuter .lSPager.lSGallery li {
		overflow: hidden;
		-webkit-transition: border-radius 0.12s linear 0s 0.35s linear 0s;
		transition: border-radius 0.12s linear 0s 0.35s linear 0s;
	}

		.lSSlideOuter .lSPager.lSGallery li.active, .lSSlideOuter .lSPager.lSGallery li:hover {
			border-radius: 5px;
		}

	.lSSlideOuter .lSPager.lSGallery img {
		display: block;
		height: auto;
		max-width: 100%;
	}

	.lSSlideOuter .lSPager.lSGallery:before, .lSSlideOuter .lSPager.lSGallery:after {
		content: " ";
		display: table;
	}

	.lSSlideOuter .lSPager.lSGallery:after {
		clear: both;
	}
/* End of Gallery*/

/* slider actions */
.lSAction > a {
	width: 32px;
	display: block;
	top: 50%;
	height: 32px;
	background-image: url('../img/controls.png');
	cursor: pointer;
	position: absolute;
	z-index: 99;
	margin-top: -16px;
	opacity: 0.5;
	-webkit-transition: opacity 0.35s linear 0s;
	transition: opacity 0.35s linear 0s;
}

	.lSAction > a:hover {
		opacity: 1;
	}

.lSAction > .lSPrev {
	background-position: 0 0;
	left: 10px;
}

.lSAction > .lSNext {
	background-position: -32px 0;
	right: 10px;
}

.lSAction > a.disabled {
	pointer-events: none;
}

.cS-hidden {
	height: 1px;
	opacity: 0;
	filter: alpha(opacity=0);
	overflow: hidden;
}


/* vertical */
.lSSlideOuter.vertical {
	position: relative;
}

	.lSSlideOuter.vertical.noPager {
		padding-right: 0px !important;
	}

	.lSSlideOuter.vertical .lSGallery {
		position: absolute !important;
		right: 0;
		top: 0;
	}

	.lSSlideOuter.vertical .lightSlider > * {
		width: 100% !important;
		max-width: none !important;
	}

	/* vertical controlls */
	.lSSlideOuter.vertical .lSAction > a {
		left: 50%;
		margin-left: -14px;
		margin-top: 0;
	}

	.lSSlideOuter.vertical .lSAction > .lSNext {
		background-position: 31px -31px;
		bottom: 10px;
		top: auto;
	}

	.lSSlideOuter.vertical .lSAction > .lSPrev {
		background-position: 0 -31px;
		bottom: auto;
		top: 10px;
	}
/* vertical */


/* Rtl */
.lSSlideOuter.lSrtl {
	direction: rtl;
}

.lSSlideOuter .lightSlider, .lSSlideOuter .lSPager {
	padding-left: 0;
	list-style: none outside none;
}

.lSSlideOuter.lSrtl .lightSlider, .lSSlideOuter.lSrtl .lSPager {
	padding-right: 0;
}

.lSSlideOuter .lightSlider > *, .lSSlideOuter .lSGallery li {
	float: left;
}

.lSSlideOuter.lSrtl .lightSlider > *, .lSSlideOuter.lSrtl .lSGallery li {
	float: right !important;
}
/* Rtl */

@-webkit-keyframes rightEnd {
	0% {
		left: 0;
	}

	50% {
		left: -15px;
	}

	100% {
		left: 0;
	}
}

@keyframes rightEnd {
	0% {
		left: 0;
	}

	50% {
		left: -15px;
	}

	100% {
		left: 0;
	}
}

@-webkit-keyframes topEnd {
	0% {
		top: 0;
	}

	50% {
		top: -15px;
	}

	100% {
		top: 0;
	}
}

@keyframes topEnd {
	0% {
		top: 0;
	}

	50% {
		top: -15px;
	}

	100% {
		top: 0;
	}
}

@-webkit-keyframes leftEnd {
	0% {
		left: 0;
	}

	50% {
		left: 15px;
	}

	100% {
		left: 0;
	}
}

@keyframes leftEnd {
	0% {
		left: 0;
	}

	50% {
		left: 15px;
	}

	100% {
		left: 0;
	}
}

@-webkit-keyframes bottomEnd {
	0% {
		bottom: 0;
	}

	50% {
		bottom: -15px;
	}

	100% {
		bottom: 0;
	}
}

@keyframes bottomEnd {
	0% {
		bottom: 0;
	}

	50% {
		bottom: -15px;
	}

	100% {
		bottom: 0;
	}
}

.lSSlideOuter .rightEnd {
	-webkit-animation: rightEnd 0.3s;
	animation: rightEnd 0.3s;
	position: relative;
}

.lSSlideOuter .leftEnd {
	-webkit-animation: leftEnd 0.3s;
	animation: leftEnd 0.3s;
	position: relative;
}

.lSSlideOuter.vertical .rightEnd {
	-webkit-animation: topEnd 0.3s;
	animation: topEnd 0.3s;
	position: relative;
}

.lSSlideOuter.vertical .leftEnd {
	-webkit-animation: bottomEnd 0.3s;
	animation: bottomEnd 0.3s;
	position: relative;
}

.lSSlideOuter.lSrtl .rightEnd {
	-webkit-animation: leftEnd 0.3s;
	animation: leftEnd 0.3s;
	position: relative;
}

.lSSlideOuter.lSrtl .leftEnd {
	-webkit-animation: rightEnd 0.3s;
	animation: rightEnd 0.3s;
	position: relative;
}
/*/  GRab cursor */
.lightSlider.lsGrab > * {
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: -o-grab;
	cursor: -ms-grab;
	cursor: grab;
}

.lightSlider.lsGrabbing > * {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor: -moz-grabbing;
	cursor: -o-grabbing;
	cursor: -ms-grabbing;
	cursor: grabbing;
}

.gallery {
	-webkit-column-count: 3;
	-moz-column-count: 3;
	column-count: 3;
	-webkit-column-width: 33%;
	-moz-column-width: 33%;
	column-width: 33%;
}

	.gallery .pics {
		-webkit-transition: all 350ms ease;
		transition: all 350ms ease;
	}

	.gallery .animation {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}

@media (max-width: 450px) {
	.gallery {
		-webkit-column-count: 1;
		-moz-column-count: 1;
		column-count: 1;
		-webkit-column-width: 100%;
		-moz-column-width: 100%;
		column-width: 100%;
	}
}

@media (max-width: 400px) {
	.btn.filter {
		padding-left: 1.1rem;
		padding-right: 1.1rem;
	}
}

.post-tags {
	position: relative;
	z-index: 1;
	border-top: 1px solid #9e9e9e63;
	padding: 20px 0;
}
.mt-30 {
	margin-top: 30px !important;
}

	.post-tags ul {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

		.post-tags ul li a {
			display: inline-block;
			background-color: #9e9e9e54;
			padding: 5px 12px;
			border-radius: 2px;
			font-size: 12px;
			text-transform: uppercase;
			color: #dc3545;
			font-weight: 400;
			letter-spacing: 1px;
			margin: 3px;
			font-family: frutigerltarabic;
			font-weight: bold;
		}

			.post-tags ul li a:hover, .post-tags ul li a:focus {
				background-color: #db4437;
				color: #ffffff;
				text-decoration:none;
			}



.comment_area {
	position: relative;
	z-index: 1;
	border-top: 1px solid #393c3d;
	border-bottom: 1px solid #393c3d;
	padding-bottom: 50px;
	padding-top: 50px;
}

	.comment_area .comment-content .comment-author {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 70px;
		flex: 0 0 70px;
		min-width: 70px;
		margin-right: 20px;
		height: 70px;
		border-radius: 50%;
	}

		.comment_area .comment-content .comment-author img {
			border-radius: 50%;
			width: 80%;
		}

@media only screen and (max-width: 767px) {
	.comment_area .comment-content .comment-author {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 40px;
		flex: 0 0 40px;
		min-width: 40px;
		margin-right: 10px;
		height: 40px;
	}
}

.comment_area .comment-content .comment-meta {
	margin-bottom: 30px;
}

	.comment_area .comment-content .comment-meta .comment-date {
		font-size: 12px;
		color: #a6a6a6;
		text-transform: uppercase;
		letter-spacing: 2px;
		margin-bottom: 10px;
		display: block;
	}

	.comment_area .comment-content .comment-meta h6 {
		margin-bottom: 10px;
	}

	.comment_area .comment-content .comment-meta p {
		margin-bottom: 10px;
		font-size: 14px;
		line-height: 2;
	}

	.comment_area .comment-content .comment-meta .like,
	.comment_area .comment-content .comment-meta .reply {
		background-color: #393c3d;
		font-size: 12px;
		font-weight: 400;
		text-transform: capitalize;
		letter-spacing: 1px;
		height: 30px;
		padding: 0 15px;
		border-radius: 2px;
		line-height: 30px;
		text-align: center;
		margin-right: 15px;
		color: #ffffff;
	}

		.comment_area .comment-content .comment-meta .like:last-child,
		.comment_area .comment-content .comment-meta .reply:last-child {
			margin-right: 0;
		}

		.comment_area .comment-content .comment-meta .like:hover,
		.comment_area .comment-content .comment-meta .reply:hover {
			background-color: #db4437;
		}

@media only screen and (max-width: 767px) {
	.comment_area .comment-content .comment-meta .like,
	.comment_area .comment-content .comment-meta .reply {
		margin-right: 5px;
	}
}

.comment_area .single_comment_area {
	margin-bottom: 30px;
}

	.comment_area .single_comment_area:last-of-type {
		margin-bottom: 0;
	}

.comment_area .children .single_comment_area {
	margin-left: 50px;
	margin-top: 30px;
}

@media only screen and (max-width: 767px) {
	.comment_area .children .single_comment_area {
		margin-left: 15px;
	}
}

.card {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	background-color: #fff;
	background-clip: border-box;
	border: 0px solid transparent;
	border-radius: 0px
}

.card-body {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding: 1.25rem
}

.card .card-title {
	position: relative;
	font-weight: 600;
	margin-bottom: 10px
}

.comment-widgets {
	position: relative;
	margin-bottom: 10px
}

	.comment-widgets .comment-row {
		border-bottom: 1px solid transparent;
		padding: 14px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		margin: 10px 0
	}

.p-2 {
	padding: 0.5rem !important
}

.comment-text {
	padding-left: 15px
}

.w-100 {
	width: 100% !important
}

.m-b-15 {
	margin-bottom: 15px
}

.btn-sm {
	padding: 0.25rem 0.5rem;
	font-size: 0.76563rem;
	line-height: 1.5;
	border-radius: 1px
}

.btn-cyan {
	color: #fff;
	background-color: #27a9e3;
	border-color: #27a9e3
}

	.btn-cyan:hover {
		color: #fff;
		background-color: #1a93ca;
		border-color: #198bbe
	}

.comment-widgets .comment-row:hover {
	background: rgba(0, 0, 0, 0.05)
}

.content {
	max-width: 650px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 2;
}

	.content h2 {
		color: #243c4f;
		margin-bottom: 40px;
	}

	.content .form-control {
		height: 50px;
		border-color: #ffffff;
		border-radius: 0;
		background-color: #dc35452b;
	}

		.content.form-control:focus {
			box-shadow: none;
			border: 2px solid #243c4f;
		}

.btn {
	min-height: 50px;
	border-radius: 0;
	background: #143342;
	color: #fff;
	font-weight: 600;
}



@font-face {
	font-family: 'Archivo Black';
	font-style: normal;
	font-weight: 400;
	src: local('Archivo Black Regular'), local('ArchivoBlack-Regular'), url(https://fonts.gstatic.com/s/archivoblack/v9/HTxqL289NzCGg4MzN6KJ7eW6CYyF-w.ttf) format('truetype');
}


.cards-wrapper {
	position: relative;
	height: 100%;
	list-style: none;
	margin: 0;
	padding: 0 5%;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
}

.card-wrapper {
	display: block;
	float: left;
	position: relative;
	margin: 0;
	width: 28%;
	height: 0;
	padding: 0 0 28%;
	-webkit-perspective: 700px;
	perspective: 700px;
}

.card-object {
	color: #FFF;
	display: block;
	float: left;
	position: absolute;
	top: 6%;
	left: 6%;
	width: 88%;
	height: 88%;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

	.card-object.card-1 .front {
		background: #222 url(https://www.dropbox.com/s/8cc22nblu4y4vzi/jenny.jpeg?raw=1) 90% 35%;
		background-size: 115%;
	}

	.card-object.card-1 .back .img-wrapper {
		background: transparent url(https://www.dropbox.com/s/8cc22nblu4y4vzi/jenny.jpeg?raw=1) 70% 45%;
		background-size: 160%;
	}

	.card-object.card-1 .back .avatar {
		background: transparent url(https://www.dropbox.com/s/8cc22nblu4y4vzi/jenny.jpeg?raw=1) 40% 20%;
		background-size: 130% 130%;
	}

	.card-object.card-2 .front {
		background: #222 url(https://www.dropbox.com/s/8l8snk9wcyxbo24/miska.jpeg?raw=1) 50% 90% no-repeat;
		background-size: 105%;
	}

	.card-object.card-2 .back .img-wrapper {
		background: transparent url(https://www.dropbox.com/s/8l8snk9wcyxbo24/miska.jpeg?raw=1) 70% 50%;
		background-size: 140%;
	}

	.card-object.card-2 .back .avatar {
		background: transparent url(https://www.dropbox.com/s/8l8snk9wcyxbo24/miska.jpeg?raw=1) 50% 50% no-repeat;
		background-size: 140% 140%;
	}

	.card-object.card-3 .front {
		background: #222 url(https://www.dropbox.com/s/l9knvp7vgci3p9c/kira.jpg?raw=1) 80% 100% no-repeat;
		background-size: 108%;
	}

	.card-object.card-3 .back .img-wrapper {
		background: transparent url(https://www.dropbox.com/s/l9knvp7vgci3p9c/kira.jpg?raw=1) 90% 40% no-repeat;
		background-size: 115%;
	}

	.card-object.card-3 .back .avatar {
		background: #fff url(https://www.dropbox.com/s/l9knvp7vgci3p9c/kira.jpg?raw=1) 0 50% no-repeat;
		background-size: 120% 120%;
	}

	.card-object.flip-in.card-1,
	.card-object.flip-in.card-3 {
		-webkit-animation: flip-2-hor-top-fwd 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
		animation: flip-2-hor-top-fwd 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
	}

	.card-object.flip-in.card-2 {
		-webkit-animation: flip-2-hor-bottom-fwd 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
		animation: flip-2-hor-bottom-fwd 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
	}

	.card-object.flip-out.card-1,
	.card-object.flip-out.card-3 {
		animation: flip-2-hor-top-fwd 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) reverse both;
	}

	.card-object.flip-out.card-2 {
		animation: flip-2-hor-bottom-fwd 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) reverse both;
	}

.card-object-hf .back {
	-webkit-transform: rotateX(180deg);
	transform: rotateX(180deg);
}

.face {
	color: #fff;
	text-decoration: none;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: end;
	align-items: flex-end;
	flex-wrap: wrap;
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

	.face.front {
		z-index: 20;
		overflow: hidden;
		background-repeat: no-repeat;
		background-position: 50% 50%;
	}

		.face.front::before {
			position: absolute;
			top: -1px;
			right: -1px;
			bottom: -1px;
			left: -1px;
			content: "";
			background: linear-gradient(45deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.1) 100%) no-repeat;
			opacity: 0.7;
			z-index: 20;
			-webkit-transition: opacity 0.2s ease;
			transition: opacity 0.2s ease;
		}

		.face.front::after {
			position: absolute;
			top: 7%;
			right: 7%;
			bottom: 7%;
			left: 7%;
			border: 1px solid rgba(255, 255, 255, 0.35);
			z-index: 100;
			content: "";
		}

		.face.front .title-wrapper {
			position: absolute;
			bottom: 3%;
			left: 25%;
			right: 25%;
			overflow: hidden;
			display: -webkit-box;
			display: flex;
			-webkit-box-pack: center;
			justify-content: center;
			-webkit-box-align: center;
			align-items: center;
			text-align: center;
			flex-wrap: wrap;
			z-index: 100;
			-webkit-transform: translateY(0);
			transform: translateY(0);
			-webkit-transition: -webkit-transform 0.28s ease;
			transition: -webkit-transform 0.28s ease;
			transition: transform 0.28s ease;
			transition: transform 0.28s ease, -webkit-transform 0.28s ease;
		}

			.face.front .title-wrapper .title {
				position: relative;
				font-family: 'Archivo Black', sans-serif;
				width: 100%;
				text-transform: uppercase;
				font-size: 2vw;
				line-height: 1;
				opacity: 0.8;
				-webkit-transition: opacity 0.2s ease;
				transition: opacity 0.2s ease;
			}

				.face.front .title-wrapper .title::after {
					display: block;
					margin: 7% auto 8% auto;
					width: 100%;
					height: 1px;
					content: "";
					background-color: #fff;
					opacity: 0.5;
					-webkit-transform: scale(0);
					transform: scale(0);
					-webkit-transition: -webkit-transform 0.15s;
					transition: -webkit-transform 0.15s;
					transition: transform 0.15s;
					transition: transform 0.15s, -webkit-transform 0.15s;
				}

			.face.front .title-wrapper .subtitle {
				font-size: 0.9vw;
				line-height: 1;
				letter-spacing: 1px;
				text-transform: uppercase;
				opacity: 0;
				-webkit-transition: opacity 0.15s;
				transition: opacity 0.15s;
			}

		.face.front:hover::before {
			opacity: 0.9;
		}

		.face.front:hover .title-wrapper {
			-webkit-transform: translateY(-50%);
			transform: translateY(-50%);
		}

			.face.front:hover .title-wrapper .title {
				opacity: 1;
			}

				.face.front:hover .title-wrapper .title::after {
					-webkit-transform: scale(1);
					transform: scale(1);
					opacity: 0.5;
					-webkit-transition-delay: 0.15s;
					transition-delay: 0.15s;
					-webkit-transition-duration: 0.2s;
					transition-duration: 0.2s;
				}

			.face.front:hover .title-wrapper .subtitle {
				opacity: 0.7;
				-webkit-transition-delay: 0.2s;
				transition-delay: 0.2s;
				-webkit-transition-duration: 0.2s;
				transition-duration: 0.2s;
			}

	.face.back {
		color: #222;
		background: #fff;
		z-index: 10;
	}

.info-container {
	position: absolute;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	flex-wrap: wrap;
	-webkit-box-align: start;
	align-items: flex-start;
	top: 6%;
	right: 6%;
	bottom: 6%;
	left: 6%;
	padding: 0;
}

.img-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 38%;
	z-index: 10;
}

	.img-wrapper::after {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background: rgba(14, 6, 70, 0.6);
		opacity: 0.7;
	}

.avatar {
	position: absolute;
	left: 50%;
	height: 68%;
	width: 25.84%;
	display: block;
	border-radius: 50%;
	margin-top: 25.08%;
	margin-left: -12.92%;
	background-color: #fff;
	border: 3px solid #FFF;
	z-index: 20;
}

.info-wrapper {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	flex-wrap: wrap;
	position: absolute;
	top: 50.92%;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 4% 15% 15%;
}

.info-title {
	font-size: 1.5vw;
	font-family: 'Archivo Black', sans-serif;
	text-align: left;
	padding: 0;
	margin: 0;
	text-align: center;
	display: block;
	width: 100%;
}

.info-content {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	align-items: center;
	width: 100%;
	padding: 8% 0 0;
	margin: 8% 0 0;
	border-top: 1px solid #e0e0e0;
}

.info-content-item {
	color: #222;
	font-size: 0.75vw;
	line-height: 1;
	text-align: center;
	display: inline-block;
	padding: 0;
	margin: 0;
	text-transform: uppercase;
	color: #aaa;
}

	.info-content-item span {
		display: block;
		font-weight: bold;
		font-size: 1.1vw;
		margin-top: 7px;
		text-transform: none;
		color: #222;
	}

.info {
	position: absolute;
	bottom: 30px;
	left: 5%;
	right: 5%;
	font-size: 1em;
	text-align: justify;

}

	.info a {
		color: #8c0f8c;
		text-decoration: none;
	}

		.info a:hover {
			text-decoration: underline;
		}
/* ----------------------------------------------
 * Generated by Animista on 2017-21-5 2:48:23
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation flip-2-hor-top-fwd
 * ----------------------------------------
 */
@-webkit-keyframes flip-2-hor-top-fwd {
	0% {
		-webkit-transform: translateY(0) translateZ(0) rotateX(0);
		transform: translateY(0) translateZ(0) rotateX(0);
		-webkit-transform-origin: 50% 0%;
		transform-origin: 50% 0%;
	}

	100% {
		-webkit-transform: translateY(-100%) translateZ(100px) rotateX(-180deg);
		transform: translateY(-100%) translateZ(100px) rotateX(-180deg);
		-webkit-transform-origin: 50% 100%;
		transform-origin: 50% 100%;
	}
}

@keyframes flip-2-hor-top-fwd {
	0% {
		-webkit-transform: translateY(0) translateZ(0) rotateX(0);
		transform: translateY(0) translateZ(0) rotateX(0);
		-webkit-transform-origin: 50% 0%;
		transform-origin: 50% 0%;
	}

	100% {
		-webkit-transform: translateY(-100%) translateZ(100px) rotateX(-180deg);
		transform: translateY(-100%) translateZ(100px) rotateX(-180deg);
		-webkit-transform-origin: 50% 100%;
		transform-origin: 50% 100%;
	}
}
/**
 * ----------------------------------------
 * animation flip-2-hor-bottom-fwd
 * ----------------------------------------
 */
@-webkit-keyframes flip-2-hor-bottom-fwd {
	0% {
		-webkit-transform: translateY(0) translateZ(0) rotateX(0);
		transform: translateY(0) translateZ(0) rotateX(0);
		-webkit-transform-origin: 50% 100%;
		transform-origin: 50% 100%;
	}

	100% {
		-webkit-transform: translateY(100%) translateZ(100px) rotateX(180deg);
		transform: translateY(100%) translateZ(100px) rotateX(180deg);
		-webkit-transform-origin: 50% 0%;
		transform-origin: 50% 0%;
	}
}

@keyframes flip-2-hor-bottom-fwd {
	0% {
		-webkit-transform: translateY(0) translateZ(0) rotateX(0);
		transform: translateY(0) translateZ(0) rotateX(0);
		-webkit-transform-origin: 50% 100%;
		transform-origin: 50% 100%;
	}

	100% {
		-webkit-transform: translateY(100%) translateZ(100px) rotateX(180deg);
		transform: translateY(100%) translateZ(100px) rotateX(180deg);
		-webkit-transform-origin: 50% 0%;
		transform-origin: 50% 0%;
	}
}


.box {
	position: relative;
	width: 250px;
	height: 300px;
	background: #fff;
	margin: 0 auto;
	border-radius: 4px;
	box-shadow: 0 2px 10px rgba(0,0,0,.2);
	margin-top:0px;
}

.cardGL {
	position: relative;
	width: 250px;
	height: 300px;
	background: #fff;
	margin: 0 auto;
	border-radius: 4px;
	box-shadow: 0 2px 10px rgba(0,0,0,.2);
	margin-top: 65px;
}

.box:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 4px;
	background: #fff;
	transition: 0.5s;
	transform: rotate(20deg);
	box-shadow: 0 2px 20px rgba(0,0,0,.2);
	transform: rotate(10deg);
	box-shadow: 0 2px 20px rgba(0,0,0,.2);
}

.cardGL .imgBx {
	position: absolute;
	top: 10px;
	left: 10px;
	bottom: 80px;
	right: 10px;
	background: #222;
	transition: 0.5s;
	z-index: 1;
}

.cardGL:hover .imgBx {
	bottom: 80px;
	z-index: 1;
}

.cardGL .imgBx img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cardGL .details {
	position: absolute;
	left: 10px;
	right: 10px;
	bottom: 10px;
	height: 60px;
	text-align: center;
}

	.cardGL .details h2 {
		margin: 0;
		padding: 0;
		font-weight: 600;
		font-size: 20px;
		color: #777;
		text-transform: uppercase;
	}

		.cardGL .details h2 span {
			font-weight: 500;
			font-size: 16px;
			color: #f38695;
			display: block;
			margin-top: 5px;
		}



@media(max-width: 1000px) {
	#sin_img {
		width: 100%;
		height: 320px;
	}

}


@media(min-width: 1000px) {

	#sin_DIV {
		width: 100%;
		height: 400px;
	}
}




@media(max-width: 1000px) {
	#sin_DIV

{
	width: 100%;
	height: 320px;
}

}


@media(min-width: 1000px) {

	#sin_img {
		width: 100%;
		height: 400px;
	}
}


@media(max-width: 1000px) {
	#clo {
		width: 12%;
	}

}


@media(min-width: 1000px) {

	#clo {
		width: 3%;
	}
}


/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.events {
	/*background: url(../img/events-bg.jpg) center center no-repeat;*/
	background-size: cover;
	position: relative;
}

	.events::before {
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
		bottom: 0;
		background: linear-gradient(171deg, #c10d32, #2a2a2a);
		/*background: -webkit-linear-gradient(to right, #5f3171, #9c4b76);
		background: linear-gradient(to right, #5f3171, #9c4b76);*/
	}

	.events .section-title h2 {
		color: #fff;
	}

	.events .container {
		position: relative;
	}

@media (min-width: 1024px) {
	.events {
		background-attachment: fixed;
	}
}

.events .events-carousel {
	background: transparent;
	padding: 30px;
}

.events .event-item {
	color: #fff;
}

	.events .event-item h3 {
		font-weight: 600;
		font-size: 26px;
		color: #ffb03b;
	}

	.events .event-item .price {
		font-size: 22px;
		font-family: "frutigerltarabic";
		font-weight: 700;
		margin-bottom: 15px;
	}

		.events .event-item .price span {
			border-bottom: 2px solid #ffb03b;
		}

	.events .event-item ul {
		list-style: none;
		padding: 0;
	}

		.events .event-item ul li {
			padding-bottom: 10px;
		}

		.events .event-item ul i {
			font-size: 20px;
			padding-right: 4px;
			color: #ffb03b;
		}

	.events .event-item p:last-child {
		margin-bottom: 0;
	}

.events .owl-nav, .events .owl-dots {
	margin-top: 5px;
	text-align: center;
}

.events .owl-dot {
	display: inline-block;
	margin: 0 5px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #ddd !important;
}

	.events .owl-dot.active {
		background-color: #ffb03b !important;
	}

@media (min-width: 992px) {
	.events .testimonial-item p {
		width: 80%;
	}
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
	padding: 0px 0;
	background: #1c29553d;/*url("../img//slide/slide-2.jpg") no-repeat;*/
	background-position: center center;
	background-size: cover;
	position: relative;
	color: #FFF;
}

	.testimonials::before {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		background: #FFF;
	}

	.testimonials .section-header {
		margin-bottom: 40px;
	}

	.testimonials .testimonial-item {
		text-align: center;
		color: #fff;
		width:94%;
	}

		.testimonials .testimonial-item .testimonial-img {
			width: 100px;
			border-radius: 50%;
			border: 6px solid rgba(255, 255, 255, 0.15);
			margin: 0 auto;
		}

		.testimonials .testimonial-item h3 {
			font-size: 20px;
			font-weight: bold;
			margin: 10px 0 5px 0;
			color: #fff;
			font-family: "Poppins", sans-serif;
		}

	.testimonials .section-title h3 {
		font-size: 20px;
		font-weight: bold;
		margin: 10px 0 5px 0;
		color: #fff;
		font-family: "Poppins", sans-serif;
	}

	.testimonials .testimonial-item h4 {
		font-size: 14px;
		color: #ddd;
		margin: 0 0 15px 0;
		font-family: "Comic Neue", sans-serif;
	}

	.testimonials .testimonial-item .stars {
		color: #ffb03b;
		margin-bottom: 10px;
	}

	.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
		color: rgba(255, 255, 255, 0.4);
		font-size: 26px;
	}

	.testimonials .testimonial-item .quote-icon-left {
		display: inline-block;
		left: -5px;
		position: relative;
	}

	.testimonials .testimonial-item .quote-icon-right {
		display: inline-block;
		right: -5px;
		position: relative;
		top: 10px;
	}

	.testimonials .testimonial-item p {
		font-style: italic;
		margin: 0 auto 15px auto;
		color: #eee;
	}

	.testimonials .owl-nav, .testimonials .owl-dots {
		margin-top: 5px;
		text-align: center;
	}

	.testimonials .owl-dot {
		display: inline-block;
		margin: 0 5px;
		width: 12px;
		height: 12px;
		border-radius: 50%;
		background-color: rgba(255, 255, 255, 0.4) !important;
	}

		.testimonials .owl-dot.active {
			background-color: #ffb03b !important;
		}

@media (min-width: 1024px) {
	.testimonials {
		background-attachment: fixed;
	}
}

@media (min-width: 992px) {
	.testimonials .testimonial-item p {
		width: 80%;
		height: 270px;
	}
}

.testimonials .section-title h2 {
	color: #2a2a2a;
}

.testimonials .container {
	position: relative;
}





/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-wrap {
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	padding: 30px;
}

.contact .info {
	background: #fff;
}

	.contact .info i {
		font-size: 20px;
		color: #ffb03b;
		float: left;
		width: 44px;
		height: 44px;
		background: #fff6e8;
		display: flex;
		justify-content: center;
		align-items: center;
		border-radius: 50px;
		transition: all 0.3s ease-in-out;
	}

	.contact .info h4 {
		padding: 0 0 0 60px;
		font-size: 18px;
		font-weight: 600;
		margin-bottom: 5px;
		color: #433f39;
		font-family: "Poppins", sans-serif;
	}

	.contact .info p {
		padding: 0 0 0 60px;
		margin-bottom: 0;
		font-size: 14px;
		color: #7a7368;
	}

	.contact .info:hover i {
		background: #ffb03b;
		color: #fff;
	}

.contact .php-email-form {
	width: 100%;
	box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
	padding: 30px;
	background: #fff;
}

	.contact .php-email-form .form-group {
		padding-bottom: 8px;
	}

	.contact .php-email-form .validate {
		display: none;
		color: red;
		margin: 0 0 15px 0;
		font-weight: 400;
		font-size: 13px;
	}

	.contact .php-email-form .error-message {
		display: none;
		color: #fff;
		background: #ed3c0d;
		text-align: center;
		padding: 15px;
		font-weight: 600;
	}

	.contact .php-email-form .sent-message {
		display: none;
		color: #fff;
		background: #18d26e;
		text-align: center;
		padding: 15px;
		font-weight: 600;
	}

	.contact .php-email-form .loading {
		display: none;
		background: #fff;
		text-align: center;
		padding: 15px;
	}

		.contact .php-email-form .loading:before {
			content: "";
			display: inline-block;
			border-radius: 50%;
			width: 24px;
			height: 24px;
			margin: 0 10px -6px 0;
			border: 3px solid #18d26e;
			border-top-color: #eee;
			-webkit-animation: animate-loading 1s linear infinite;
			animation: animate-loading 1s linear infinite;
		}

	.contact .php-email-form input, .contact .php-email-form textarea {
		border-radius: 0;
		box-shadow: none;
		font-size: 14px;
	}

	.contact .php-email-form input {
		height: 44px;
	}

	.contact .php-email-form textarea {
		padding: 10px 12px;
	}

	.contact .php-email-form button[type="submit"] {
		background: #ffb03b;
		border: 0;
		padding: 10px 24px;
		color: #fff;
		transition: 0.4s;
		border-radius: 10px;
	}

		.contact .php-email-form button[type="submit"]:hover {
			background: #ffa012;
		}

@-webkit-keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}




a {
	text-decoration: none
}

h4 {
	text-align: center;
	margin: 30px 0;
	color: #444
}

.main-timeline {
	position: relative
}

	.main-timeline:before {
		content: "";
		width: 5px;
		height: 100%;
		border-radius: 20px;
		margin: 0 auto;
		background: #242922;
		position: absolute;
		top: 0;
		left: 0;
		right: 0
	}

	.main-timeline .timeline {
		display: inline-block;
		margin-bottom: 50px;
		position: relative
	}

		.main-timeline .timeline:before {
			content: "";
			width: 20px;
			height: 20px;
			border-radius: 50%;
			border: 4px solid #fff;
			background: #ec496e;
			position: absolute;
			top: 50%;
			left: 50%;
			z-index: 1;
			transform: translate(-50%,-50%)
		}

	.main-timeline .timeline-icon {
		display: inline-block;
		width: 130px;
		height: 130px;
		border-radius: 50%;
		border: 3px solid #ec496e;
		padding: 13px;
		text-align: center;
		position: absolute;
		top: 50%;
		left: 30%;
		transform: translateY(-50%)
	}

		.main-timeline .timeline-icon i {
			display: block;
			border-radius: 50%;
			background: #ec496e;
			font-size: 64px;
			color: #fff;
			line-height: 100px;
			z-index: 1;
			position: relative
		}

		.main-timeline .timeline-icon:after, .main-timeline .timeline-icon:before {
			content: "";
			width: 100px;
			height: 4px;
			background: #ec496e;
			position: absolute;
			top: 50%;
			right: -100px;
			transform: translateY(-50%)
		}

		.main-timeline .timeline-icon:after {
			width: 70px;
			height: 50px;
			background: #fff;
			top: 89px;
			right: -30px;
			z-index:-10;
		}

	.main-timeline .timeline-content {
		width: 50%;
		padding: 0 100px;
		margin: 52px 0 0;
		float: right;
		position: relative;
		text-align: justify;
		direction: rtl;
		font-family: "frutigerltarabic";
	}

		.main-timeline .timeline-content:before {
			content: "";
			width: 70%;
			height: 100%;
			border: 3px solid #ec496e;
			border-top: none;
			border-right: none;
			position: absolute;
			bottom: -13px;
			left: 35px
		}

		.main-timeline .timeline-content:after {
			content: "";
			width: 37px;
			height: 3px;
			background: #ec496e;
			position: absolute;
			top: 13px;
			left: 0
		}

	.main-timeline .title {
		font-size: 14px;
		font-weight: 600;
		color: #ec496e;
		text-transform: uppercase;
		margin: 0 0 5px
	}

	.main-timeline .description {
		display: inline-block;
		font-size: 12px;
		color: #404040;
		line-height: 20px;
		letter-spacing: 1px;
		margin: 0;
		font-family: "frutigerltarabic";
	}

	.main-timeline .timeline:nth-child(even) .timeline-icon {
		left: auto;
		right: 30%
	}

		.main-timeline .timeline:nth-child(even) .timeline-icon:before {
			right: auto;
			left: -100px
		}

		.main-timeline .timeline:nth-child(even) .timeline-icon:after {
			right: auto;
			left: -30px
		}

	.main-timeline .timeline:nth-child(even) .timeline-content {
		float: left
	}

		.main-timeline .timeline:nth-child(even) .timeline-content:before {
			left: auto;
			right: 35px;
			transform: rotateY(180deg)
		}

	

	.main-timeline .timeline:nth-child(2n) .timeline-content:after, .main-timeline .timeline:nth-child(2n) .timeline-icon i, .main-timeline .timeline:nth-child(2n) .timeline-icon:before, .main-timeline .timeline:nth-child(2n):before {
		background: #f9850f
	}

	.main-timeline .timeline:nth-child(2n) .timeline-icon {
		border-color: #f9850f
	}

	.main-timeline .timeline:nth-child(2n) .title {
		color: #f9850f
	}

	.main-timeline .timeline:nth-child(2n) .timeline-content:before {
		border-left-color: #f9850f;
		border-bottom-color: #f9850f
	}

	.main-timeline .timeline:nth-child(3n) .timeline-content:after, .main-timeline .timeline:nth-child(3n) .timeline-icon i, .main-timeline .timeline:nth-child(3n) .timeline-icon:before, .main-timeline .timeline:nth-child(3n):before {
		background: #8fb800
	}

	.main-timeline .timeline:nth-child(3n) .timeline-icon {
		border-color: #8fb800
	}

	.main-timeline .timeline:nth-child(3n) .title {
		color: #8fb800
	}

	.main-timeline .timeline:nth-child(3n) .timeline-content:before {
		border-left-color: #8fb800;
		border-bottom-color: #8fb800
	}

	.main-timeline .timeline:nth-child(4n) .timeline-content:after, .main-timeline .timeline:nth-child(4n) .timeline-icon i, .main-timeline .timeline:nth-child(4n) .timeline-icon:before, .main-timeline .timeline:nth-child(4n):before {
		background: #2fcea5
	}

	.main-timeline .timeline:nth-child(4n) .timeline-icon {
		border-color: #2fcea5
	}

	.main-timeline .timeline:nth-child(4n) .title {
		color: #2fcea5
	}

	.main-timeline .timeline:nth-child(4n) .timeline-content:before {
		border-left-color: #2fcea5;
		border-bottom-color: #2fcea5
	}

@media only screen and (max-width:1200px) {
	.main-timeline .timeline-icon:before {
		width: 50px;
		right: -50px
	}

	.main-timeline .timeline:nth-child(even) .timeline-icon:before {
		right: auto;
		left: -50px
	}

	.main-timeline .timeline-content {
		margin-top: 75px
	}
}

@media only screen and (max-width:990px) {
	.main-timeline .timeline {
		margin: 0 0 10px
	}

	.main-timeline .timeline-icon {
		left: 25%
	}

	.main-timeline .timeline:nth-child(even) .timeline-icon {
		right: 25%
	}

	.main-timeline .timeline-content {
		margin-top: 115px
	}
}

@media only screen and (max-width:767px) {
	.main-timeline {
		padding-top: 50px
	}

		.main-timeline:before {
			left: 80px;
			right: 0;
			margin: 0
		}

		.main-timeline .timeline {
			margin-bottom: 70px
		}

			.main-timeline .timeline:before {
				top: 0;
				left: 83px;
				right: 0;
				margin: 0
			}

		.main-timeline .timeline-icon {
			width: 60px;
			height: 60px;
			line-height: 40px;
			padding: 5px;
			top: 0;
			left: 0
		}

		.main-timeline .timeline:nth-child(even) .timeline-icon {
			left: 0;
			right: auto
		}

			.main-timeline .timeline-icon:before, .main-timeline .timeline:nth-child(even) .timeline-icon:before {
				width: 25px;
				left: auto;
				right: -25px
			}

			.main-timeline .timeline-icon:after, .main-timeline .timeline:nth-child(even) .timeline-icon:after {
				width: 25px;
				height: 30px;
				top: 44px;
				left: auto;
				right: -5px
			}

		.main-timeline .timeline-icon i {
			font-size: 30px;
			line-height: 45px
		}

		.main-timeline .timeline-content, .main-timeline .timeline:nth-child(even) .timeline-content {
			width: 100%;
			margin-top: -15px;
			padding-left: 130px;
			padding-right: 5px
		}

		.main-timeline .timeline:nth-child(even) .timeline-content {
			float: right
		}

			.main-timeline .timeline-content:before, .main-timeline .timeline:nth-child(even) .timeline-content:before {
				width: 50%;
				left: 120px
			}

			.main-timeline .timeline:nth-child(even) .timeline-content:before {
				right: auto;
				transform: rotateY(0)
			}

			.main-timeline .timeline-content:after, .main-timeline .timeline:nth-child(even) .timeline-content:after {
				left: 85px
			}
}

@media only screen and (max-width:479px) {
	.main-timeline .timeline-content, .main-timeline .timeline:nth-child(2n) .timeline-content {
		padding-left: 110px
	}

		.main-timeline .timeline-content:before, .main-timeline .timeline:nth-child(2n) .timeline-content:before {
			left: 99px
		}

		.main-timeline .timeline-content:after, .main-timeline .timeline:nth-child(2n) .timeline-content:after {
			left: 65px
		}
}

/******************* Timeline Demo - 2 *****************/
.main-timeline2 {
	padding-top: 50px;
	overflow: hidden;
	position: relative
}

	.main-timeline2:before {
		content: "";
		width: 7px;
		height: 100%;
		background: #084772;
		margin: 0 auto;
		position: absolute;
		top: 80px;
		left: 0;
		right: 0
	}

	.main-timeline2 .timeline {
		width: 50%;
		float: left;
		padding: 20px 60px;
		border-top: 7px solid #084772;
		border-right: 7px solid #084772;
		border-radius: 0 30px 0 0;
		position: relative;
		right: -3.5px
	}

	.main-timeline2 .icon {
		display: block;
		width: 50px;
		height: 50px;
		line-height: 50px;
		border-radius: 50%;
		background: #e84c47;
		border: 1px solid #fff;
		text-align: center;
		font-size: 25px;
		color: #fff;
		box-shadow: 0 0 0 2px #e84c47;
		position: absolute;
		top: -30px;
		left: 0
	}

	.main-timeline2 .timeline-content {
		display: block;
		padding: 30px 10px 10px;
		border-radius: 20px;
		background: #e84c47;
		color: #fff;
		position: relative
	}

		.main-timeline2 .timeline-content:hover {
			text-decoration: none;
			color: #fff
		}

		.main-timeline2 .timeline-content:after, .main-timeline2 .timeline-content:before {
			content: "";
			display: block;
			width: 10px;
			height: 50px;
			border-radius: 10px;
			background: #e84c47;
			border: 1px solid #fff;
			position: absolute;
			top: -35px;
			left: 50px
		}

		.main-timeline2 .timeline-content:after {
			left: auto;
			right: 50px
		}

	.main-timeline2 .title {
		font-size: 24px;
		margin: 0
	}

	.main-timeline2 .description {
		font-size: 15px;
		letter-spacing: 1px;
		margin: 0 0 5px
	}

	.main-timeline2 .timeline:nth-child(2n) {
		border-right: none;
		border-left: 7px solid #084772;
		border-radius: 30px 0 0;
		right: auto;
		left: -3.5px
	}

		.main-timeline2 .timeline:nth-child(2n) .icon {
			left: auto;
			right: 0;
			box-shadow: 0 0 0 2px #4bd9bf
		}

	.main-timeline2 .timeline:nth-child(2) {
		margin-top: 130px
	}

	.main-timeline2 .timeline:nth-child(odd) {
		margin: -130px 0 30px
	}

	.main-timeline2 .timeline:nth-child(even) {
		margin-bottom: 80px
	}

	.main-timeline2 .timeline:first-child, .main-timeline2 .timeline:last-child:nth-child(even) {
		margin: 0 0 30px
	}

	.main-timeline2 .timeline:nth-child(2n) .icon, .main-timeline2 .timeline:nth-child(2n) .timeline-content, .main-timeline2 .timeline:nth-child(2n) .timeline-content:after, .main-timeline2 .timeline:nth-child(2n) .timeline-content:before {
		background: #4bd9bf
	}

	.main-timeline2 .timeline:nth-child(3n) .icon, .main-timeline2 .timeline:nth-child(3n) .timeline-content, .main-timeline2 .timeline:nth-child(3n) .timeline-content:after, .main-timeline2 .timeline:nth-child(3n) .timeline-content:before {
		background: #ff9e09
	}

	.main-timeline2 .timeline:nth-child(3n) .icon {
		box-shadow: 0 0 0 2px #ff9e09
	}

	.main-timeline2 .timeline:nth-child(4n) .icon, .main-timeline2 .timeline:nth-child(4n) .timeline-content, .main-timeline2 .timeline:nth-child(4n) .timeline-content:after, .main-timeline2 .timeline:nth-child(4n) .timeline-content:before {
		background: #3ebae7
	}

	.main-timeline2 .timeline:nth-child(4n) .icon {
		box-shadow: 0 0 0 2px #3ebae7
	}

@media only screen and (max-width:767px) {
	.main-timeline2:before {
		left: 0;
		right: auto
	}

	.main-timeline2 .timeline, .main-timeline2 .timeline:nth-child(even), .main-timeline2 .timeline:nth-child(odd) {
		width: 100%;
		float: none;
		padding: 20px 30px;
		margin: 0 0 30px;
		border-right: none;
		border-left: 7px solid #084772;
		border-radius: 30px 0 0;
		right: auto;
		left: 0
	}

	.main-timeline2 .icon {
		left: auto;
		right: 0
	}
}

@media only screen and (max-width:480px) {
	.main-timeline2 .title {
		font-size: 18px
	}
}

/******************* Timeline Demo - 3 *****************/
.main-timeline3 {
	overflow: hidden;
	position: relative
}

	.main-timeline3:before {
		content: "";
		width: 10px;
		height: 100%;
		border: 3px solid #959595;
		position: absolute;
		top: 40px;
		left: 50%;
		transform: translateX(-50%)
	}

	.main-timeline3 .timeline {
		width: 50%;
		padding: 10px 60px 10px 100px;
		float: right;
		position: relative
	}

		.main-timeline3 .timeline:before {
			content: "";
			width: 40px;
			height: 40px;
			border-radius: 50%;
			background: #c47c48;
			border: 5px solid #fff;
			box-shadow: 0 0 1px 5px #c47c48;
			position: absolute;
			top: 42px;
			left: -20px
		}

	.main-timeline3 .timeline-content {
		display: block;
		background: #e9e9e7;
		padding: 85px 23px 20px;
		box-shadow: 0 0 10px rgba(0,0,0,.2) inset;
		position: relative
	}

		.main-timeline3 .timeline-content:hover {
			text-decoration: none
		}

	.main-timeline3 .year {
		display: block;
		width: 80%;
		height: 50px;
		background: #c47c48;
		padding: 0 0 0 50px;
		font-size: 30px;
		font-weight: 800;
		color: #fff;
		line-height: 50px;
		box-shadow: 0 0 20px rgba(0,0,0,.4) inset;
		border-radius: 10px 10px 10px 0;
		position: absolute;
		top: 20px;
		left: -20px
	}

		.main-timeline3 .year:before {
			content: "";
			border-top: 40px solid #c47c48;
			border-left: 20px solid transparent;
			border-bottom: 20px solid transparent;
			position: absolute;
			bottom: -60px;
			left: 0
		}

	.main-timeline3 .title {
		font-size: 18px;
		font-weight: 600;
		text-transform: uppercase;
		color: #4a4a4a
	}

	.main-timeline3 .description {
		font-size: 14px;
		color: #6f6f6f;
		margin: 0 0 5px
	}

	.main-timeline3 .timeline:nth-child(2n) {
		padding: 10px 100px 10px 60px;
		text-align: right
	}

		.main-timeline3 .timeline:nth-child(2n):before {
			left: auto;
			right: -20px;
			background: #bf3fc8;
			box-shadow: 0 0 1px 5px #bf3fc8
		}

		.main-timeline3 .timeline:nth-child(2n) .year {
			padding-right: 50px;
			border-radius: 10px 10px 0;
			left: auto;
			right: -20px;
			background: #bf3fc8
		}

			.main-timeline3 .timeline:nth-child(2n) .year:before {
				border-left: none;
				border-right: 20px solid transparent;
				left: auto;
				right: 0;
				border-top-color: #bf3fc8
			}

	.main-timeline3 .timeline:nth-child(2) {
		margin-top: 140px
	}

	.main-timeline3 .timeline:nth-child(odd) {
		margin: -140px 0 0
	}

	.main-timeline3 .timeline:nth-child(even) {
		margin-bottom: 60px
	}

	.main-timeline3 .timeline:first-child, .main-timeline3 .timeline:last-child:nth-child(even) {
		margin: 0
	}

	.main-timeline3 .timeline:nth-child(3n):before {
		background: #ce3c41;
		box-shadow: 0 0 1px 5px #ce3c41
	}

	.main-timeline3 .timeline:nth-child(3n) .year {
		background: #ce3c41
	}

		.main-timeline3 .timeline:nth-child(3n) .year:before {
			border-top-color: #ce3c41
		}

	.main-timeline3 .timeline:nth-child(4n):before {
		background: #8cc43d;
		box-shadow: 0 0 1px 5px #8cc43d
	}

	.main-timeline3 .timeline:nth-child(4n) .year {
		background: #8cc43d
	}

		.main-timeline3 .timeline:nth-child(4n) .year:before {
			border-top-color: #8cc43d
		}

@media only screen and (max-width:990px) {
	.main-timeline3:before {
		top: 8%
	}

	.main-timeline3 .timeline {
		padding: 10px 10px 10px 100px
	}

		.main-timeline3 .timeline:nth-child(2n) {
			padding: 10px 100px 10px 10px
		}
}

@media only screen and (max-width:767px) {
	.main-timeline3:before {
		width: 8px;
		top: 0;
		left: 12px;
		transform: translateX(0)
	}

	.main-timeline3 .timeline, .main-timeline3 .timeline:nth-child(even), .main-timeline3 .timeline:nth-child(odd) {
		width: 100%;
		float: none;
		text-align: left;
		padding: 0 0 0 60px;
		margin: 0 0 30px
	}

		.main-timeline3 .timeline:before, .main-timeline3 .timeline:nth-child(2n):before {
			width: 20px;
			height: 20px;
			border: 3px solid #fff;
			top: 38px;
			left: 6px
		}

		.main-timeline3 .timeline:nth-child(2n) .year {
			right: auto;
			left: -20px;
			border-radius: 10px 10px 10px 0
		}

			.main-timeline3 .timeline:nth-child(2n) .year:before {
				border-left: 20px solid transparent;
				border-bottom: 20px solid transparent;
				border-right: none;
				right: auto;
				left: 0
			}
}

/******************* Timeline Demo - 4 *****************/
.main-timeline4 {
	overflow: hidden;
	position: relative
}

	.main-timeline4:before {
		content: "";
		width: 5px;
		height: 70%;
		background: #333;
		position: absolute;
		top: 70px;
		left: 50%;
		transform: translateX(-50%)
	}

	.main-timeline4 .timeline-content:before, .main-timeline4 .timeline:before {
		top: 50%;
		transform: translateY(-50%);
		content: ""
	}

	.main-timeline4 .timeline {
		width: 50%;
		padding-left: 100px;
		float: right;
		position: relative
	}

		.main-timeline4 .timeline:before {
			width: 20px;
			height: 20px;
			border-radius: 50%;
			background: #fff;
			border: 5px solid #333;
			position: absolute;
			left: -10px
		}

	.main-timeline4 .timeline-content {
		display: block;
		padding-left: 150px;
		position: relative
	}

		.main-timeline4 .timeline-content:before {
			width: 90px;
			height: 10px;
			border-top: 7px dotted #333;
			position: absolute;
			left: -92px
		}

	.main-timeline4 .year {
		display: inline-block;
		width: 120px;
		height: 120px;
		line-height: 100px;
		border-radius: 50%;
		border: 10px solid #f54957;
		font-size: 30px;
		color: #f54957;
		text-align: center;
		box-shadow: inset 0 0 10px rgba(0,0,0,.4);
		position: absolute;
		top: 0;
		left: 0
	}

		.main-timeline4 .year:before {
			content: "";
			border-left: 20px solid #f54957;
			border-top: 10px solid transparent;
			border-bottom: 10px solid transparent;
			position: absolute;
			bottom: -13px;
			right: 0;
			transform: rotate(45deg)
		}

	.main-timeline4 .inner-content {
		padding: 20px 0
	}

	.main-timeline4 .title {
		font-size: 24px;
		font-weight: 600;
		color: #f54957;
		text-transform: uppercase;
		margin: 0 0 5px
	}

	.main-timeline4 .description {
		font-size: 14px;
		color: #6f6f6f;
		margin: 0 0 5px
	}

	.main-timeline4 .timeline:nth-child(2n) {
		padding: 0 100px 0 0
	}

		.main-timeline4 .timeline:nth-child(2n) .timeline-content:before, .main-timeline4 .timeline:nth-child(2n) .year, .main-timeline4 .timeline:nth-child(2n):before {
			left: auto;
			right: -10px
		}

		.main-timeline4 .timeline:nth-child(2n) .timeline-content {
			padding: 0 150px 0 0
		}

			.main-timeline4 .timeline:nth-child(2n) .timeline-content:before {
				right: -92px
			}

		.main-timeline4 .timeline:nth-child(2n) .year {
			right: 0
		}

			.main-timeline4 .timeline:nth-child(2n) .year:before {
				right: auto;
				left: 0;
				border-left: none;
				border-right: 20px solid #f54957;
				transform: rotate(-45deg)
			}

	.main-timeline4 .timeline:nth-child(2) {
		margin-top: 110px
	}

	.main-timeline4 .timeline:nth-child(odd) {
		margin: -110px 0 0
	}

	.main-timeline4 .timeline:nth-child(even) {
		margin-bottom: 80px
	}

	.main-timeline4 .timeline:first-child, .main-timeline4 .timeline:last-child:nth-child(even) {
		margin: 0
	}

	.main-timeline4 .timeline:nth-child(2n) .year {
		border-color: #1ebad0;
		color: #1ebad0
	}

	.main-timeline4 .timeline:nth-child(2) .year:before {
		border-right-color: #1ebad0
	}

	.main-timeline4 .timeline:nth-child(2n) .title {
		color: #1ebad0
	}

	.main-timeline4 .timeline:nth-child(3n) .year {
		border-color: #7cba01;
		color: #7cba01
	}

	.main-timeline4 .timeline:nth-child(3) .year:before {
		border-left-color: #7cba01
	}

	.main-timeline4 .timeline:nth-child(3n) .title {
		color: #7cba01
	}

	.main-timeline4 .timeline:nth-child(4n) .year {
		border-color: #f8781f;
		color: #f8781f
	}

	.main-timeline4 .timeline:nth-child(4) .year:before {
		border-right-color: #f8781f
	}

	.main-timeline4 .timeline:nth-child(4n) .title {
		color: #f8781f
	}

@media only screen and (max-width:1200px) {
	.main-timeline4 .year {
		top: 50%;
		transform: translateY(-50%)
	}
}

@media only screen and (max-width:990px) {
	.main-timeline4 .timeline {
		padding-left: 75px
	}

		.main-timeline4 .timeline:nth-child(2n) {
			padding: 0 75px 0 0
		}

	.main-timeline4 .timeline-content {
		padding-left: 130px
	}

	.main-timeline4 .timeline:nth-child(2n) .timeline-content {
		padding: 0 130px 0 0
	}

	.main-timeline4 .timeline-content:before {
		width: 68px;
		left: -68px
	}

	.main-timeline4 .timeline:nth-child(2n) .timeline-content:before {
		right: -68px
	}
}

@media only screen and (max-width:767px) {
	.main-timeline4 {
		overflow: visible
	}

		.main-timeline4:before {
			height: 100%;
			top: 0;
			left: 0;
			transform: translateX(0)
		}

		.main-timeline4 .timeline:before, .main-timeline4 .timeline:nth-child(2n):before {
			top: 60px;
			left: -9px;
			transform: translateX(0)
		}

		.main-timeline4 .timeline, .main-timeline4 .timeline:nth-child(even), .main-timeline4 .timeline:nth-child(odd) {
			width: 100%;
			float: none;
			text-align: center;
			padding: 0;
			margin: 0 0 10px
		}

			.main-timeline4 .timeline-content, .main-timeline4 .timeline:nth-child(2n) .timeline-content {
				padding: 0
			}

				.main-timeline4 .timeline-content:before, .main-timeline4 .timeline:nth-child(2n) .timeline-content:before {
					display: none
				}

			.main-timeline4 .timeline:nth-child(2n) .year, .main-timeline4 .year {
				position: relative;
				transform: translateY(0)
			}

				.main-timeline4 .timeline:nth-child(2n) .year:before, .main-timeline4 .year:before {
					border: none;
					border-right: 20px solid #f54957;
					border-top: 10px solid transparent;
					border-bottom: 10px solid transparent;
					top: 50%;
					left: -23px;
					bottom: auto;
					right: auto;
					transform: rotate(0)
				}

				.main-timeline4 .timeline:nth-child(2n) .year:before {
					border-right-color: #1ebad0
				}

			.main-timeline4 .timeline:nth-child(3n) .year:before {
				border-right-color: #7cba01
			}

			.main-timeline4 .timeline:nth-child(4n) .year:before {
				border-right-color: #f8781f
			}

		.main-timeline4 .inner-content {
			padding: 10px
		}
}

/******************* Timeline Demo - 5 *****************/
.main-timeline5 {
	overflow: hidden;
	position: relative
}

	.main-timeline5 .timeline {
		position: relative;
		margin-top: -79px
	}

		.main-timeline5 .timeline:first-child {
			margin-top: 0
		}

	.main-timeline5 .timeline-icon, .main-timeline5 .year {
		margin: auto;
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0
	}

	.main-timeline5 .timeline:after, .main-timeline5 .timeline:before {
		content: "";
		display: block;
		width: 100%;
		clear: both
	}

	.main-timeline5 .timeline:before {
		content: "";
		width: 100%;
		height: 100%;
		box-shadow: -8px 0 5px -5px rgba(0,0,0,.5) inset;
		position: absolute;
		top: 0;
		right: 0;
		z-index: 2
	}

	.main-timeline5 .timeline-icon {
		width: 210px;
		height: 210px;
		border-radius: 50%;
		border: 25px solid transparent;
		border-top-color: #f44556;
		border-right-color: #f44556;
		z-index: 1;
		transform: rotate(45deg)
	}

	.main-timeline5 .year {
		display: block;
		width: 110px;
		height: 110px;
		line-height: 110px;
		border-radius: 50%;
		background: #fff;
		box-shadow: 0 0 20px rgba(0,0,0,.4);
		font-size: 30px;
		font-weight: 700;
		color: #f44556;
		text-align: center;
		transform: rotate(-45deg)
	}

	.main-timeline5 .timeline-content {
		width: 35%;
		float: right;
		background: #f44556;
		padding: 30px 20px;
		margin: 50px 0;
		z-index: 1;
		position: relative
	}

		.main-timeline5 .timeline-content:before {
			content: "";
			width: 20%;
			height: 15px;
			background: #f44556;
			position: absolute;
			top: 50%;
			left: -20%;
			z-index: -1;
			transform: translateY(-50%)
		}

	.main-timeline5 .title {
		font-size: 20px;
		font-weight: 700;
		color: #fff;
		margin: 0 0 10px
	}

	.main-timeline5 .description {
		font-size: 16px;
		color: #fff;
		line-height: 24px;
		margin: 0
	}

	.main-timeline5 .timeline:nth-child(2n):before {
		box-shadow: 8px 0 5px -5px rgba(0,0,0,.5) inset
	}

	.main-timeline5 .timeline:nth-child(2n) .timeline-icon {
		transform: rotate(-135deg);
		border-top-color: #e97e2e;
		border-right-color: #e97e2e
	}

	.main-timeline5 .timeline:nth-child(2n) .year {
		transform: rotate(135deg);
		color: #e97e2e
	}

	.main-timeline5 .timeline:nth-child(2n) .timeline-content {
		float: left
	}

		.main-timeline5 .timeline:nth-child(2n) .timeline-content:before {
			left: auto;
			right: -20%
		}

		.main-timeline5 .timeline:nth-child(2n) .timeline-content, .main-timeline5 .timeline:nth-child(2n) .timeline-content:before {
			background: #e97e2e
		}

	.main-timeline5 .timeline:nth-child(3n) .timeline-icon {
		border-top-color: #13afae;
		border-right-color: #13afae
	}

	.main-timeline5 .timeline:nth-child(3n) .year {
		color: #13afae
	}

	.main-timeline5 .timeline:nth-child(3n) .timeline-content, .main-timeline5 .timeline:nth-child(3n) .timeline-content:before {
		background: #13afae
	}

	.main-timeline5 .timeline:nth-child(4n) .timeline-icon {
		border-top-color: #105572;
		border-right-color: #105572
	}

	.main-timeline5 .timeline:nth-child(4n) .year {
		color: #105572
	}

	.main-timeline5 .timeline:nth-child(4n) .timeline-content, .main-timeline5 .timeline:nth-child(4n) .timeline-content:before {
		background: #105572
	}

@media only screen and (max-width:1199px) {
	.main-timeline5 .timeline {
		margin-top: -103px
	}

	.main-timeline5 .timeline-content:before {
		left: -18%
	}

	.main-timeline5 .timeline:nth-child(2n) .timeline-content:before {
		right: -18%
	}
}

@media only screen and (max-width:990px) {
	.main-timeline5 .timeline {
		margin-top: -127px
	}

	.main-timeline5 .timeline-content:before {
		left: -2%
	}

	.main-timeline5 .timeline:nth-child(2n) .timeline-content:before {
		right: -2%
	}
}

@media only screen and (max-width:767px) {
	.main-timeline5 .timeline {
		margin-top: 0;
		overflow: hidden
	}

		.main-timeline5 .timeline:before, .main-timeline5 .timeline:nth-child(2n):before {
			box-shadow: none
		}

		.main-timeline5 .timeline-icon, .main-timeline5 .timeline:nth-child(2n) .timeline-icon {
			margin-top: -30px;
			margin-bottom: 20px;
			position: relative;
			transform: rotate(135deg)
		}

		.main-timeline5 .timeline:nth-child(2n) .year, .main-timeline5 .year {
			transform: rotate(-135deg)
		}

		.main-timeline5 .timeline-content, .main-timeline5 .timeline:nth-child(2n) .timeline-content {
			width: 100%;
			float: none;
			border-radius: 0 0 20px 20px;
			text-align: center;
			padding: 25px 20px;
			margin: 0 auto
		}

			.main-timeline5 .timeline-content:before, .main-timeline5 .timeline:nth-child(2n) .timeline-content:before {
				width: 15px;
				height: 25px;
				position: absolute;
				top: -22px;
				left: 50%;
				z-index: -1;
				transform: translate(-50%,0)
			}
}

/******************* Timeline Demo - 6 *****************/
.demo {
	background: #f2f2f2
}

.main-timeline6 {
	overflow: hidden;
	position: relative
}

	.main-timeline6 .timeline {
		width: 50%;
		float: right;
		position: relative;
		z-index: 1
	}

		.main-timeline6 .timeline:after, .main-timeline6 .timeline:before {
			position: absolute;
			top: 50%;
			content: "";
			display: block;
			clear: both
		}

		.main-timeline6 .timeline:before {
			width: 40%;
			height: 6px;
			background: #9f005d;
			left: 0;
			z-index: -1;
			transform: translateY(-50%)
		}

		.main-timeline6 .timeline:after {
			width: 6px;
			height: 70%;
			background: #9f005d;
			left: -3px
		}

	.main-timeline6 .timeline-content {
		width: 65%;
		float: right;
		padding: 0 0 30px 30px;
		margin-right: 15px;
		background: #fff;
		border-radius: 10px;
		box-shadow: 3px 3px 5px 6px #ccc
	}

		.main-timeline6 .timeline-content:after, .main-timeline6 .timeline-content:before {
			content: "";
			width: 26px;
			height: 26px;
			border-radius: 50%;
			background: #9f005d;
			position: absolute;
			top: 50%;
			left: -13px;
			z-index: 1;
			transform: translateY(-50%)
		}

		.main-timeline6 .timeline-content:after {
			left: 30%;
			transform: translate(-50%,-50%)
		}

	.main-timeline6 .year {
		display: block;
		font-size: 28px;
		font-weight: 700;
		color: #9f005d;
		text-align: center;
		padding-left: 50px
	}

	.main-timeline6 .content-inner {
		padding: 35px 15px 35px 110px;
		margin-right: -15px;
		background: #9f005d;
		border-radius: 150px 0 0 150px;
		position: relative
	}

		.main-timeline6 .content-inner:after, .main-timeline6 .content-inner:before {
			content: "";
			border-left: 15px solid #640026;
			border-top: 10px solid transparent;
			position: absolute;
			top: -10px;
			right: 0
		}

		.main-timeline6 .content-inner:after {
			border-top: none;
			border-bottom: 10px solid transparent;
			top: auto;
			bottom: -10px
		}

	.main-timeline6 .icon {
		width: 110px;
		height: 100%;
		text-align: center;
		position: absolute;
		top: 0;
		left: 0
	}

		.main-timeline6 .icon i {
			font-size: 60px;
			font-weight: 700;
			color: #fff;
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%,-50%)
		}

	.main-timeline6 .title {
		font-size: 22px;
		font-weight: 700;
		color: #fff;
		margin: 0 0 5px
	}

	.main-timeline6 .description {
		font-size: 14px;
		color: #fff;
		margin: 0
	}

	.main-timeline6 .timeline:nth-child(2n) .icon, .main-timeline6 .timeline:nth-child(2n):after, .main-timeline6 .timeline:nth-child(2n):before {
		left: auto;
		right: 0
	}

	.main-timeline6 .timeline:nth-child(2n):after {
		right: -3px
	}

	.main-timeline6 .timeline:nth-child(2n) .timeline-content {
		float: left;
		padding: 0 30px 30px 0;
		margin: 0 0 0 15px
	}

		.main-timeline6 .timeline:nth-child(2n) .timeline-content:after, .main-timeline6 .timeline:nth-child(2n) .timeline-content:before {
			left: auto;
			right: -13px
		}

		.main-timeline6 .timeline:nth-child(2n) .timeline-content:after {
			right: 30%;
			margin-right: -25px
		}

	.main-timeline6 .timeline:nth-child(2n) .year {
		padding: 0 50px 0 0;
		color: #05b1ff
	}

	.main-timeline6 .timeline:nth-child(2n) .content-inner {
		padding: 35px 110px 35px 15px;
		margin: 0 0 0 -15px;
		border-radius: 0 150px 150px 0
	}

		.main-timeline6 .timeline:nth-child(2n) .content-inner:after, .main-timeline6 .timeline:nth-child(2n) .content-inner:before {
			border: none;
			border-right: 15px solid #027dcd;
			border-top: 10px solid transparent;
			right: auto;
			left: 0
		}

		.main-timeline6 .timeline:nth-child(2n) .content-inner:after {
			border-top: none;
			border-bottom: 10px solid transparent
		}

	.main-timeline6 .timeline:nth-child(2) {
		margin-top: 200px
	}

	.main-timeline6 .timeline:nth-child(odd) {
		margin: -190px 0 0
	}

	.main-timeline6 .timeline:nth-child(even) {
		margin-bottom: 70px
	}

	.main-timeline6 .timeline:first-child, .main-timeline6 .timeline:last-child:nth-child(even) {
		margin: 0
	}

	.main-timeline6 .timeline:nth-child(2n) .content-inner, .main-timeline6 .timeline:nth-child(2n) .timeline-content:after, .main-timeline6 .timeline:nth-child(2n) .timeline-content:before, .main-timeline6 .timeline:nth-child(2n):after, .main-timeline6 .timeline:nth-child(2n):before {
		background: #05b1ff
	}

	.main-timeline6 .timeline:nth-child(3n) .content-inner, .main-timeline6 .timeline:nth-child(3n) .timeline-content:after, .main-timeline6 .timeline:nth-child(3n) .timeline-content:before, .main-timeline6 .timeline:nth-child(3n):after, .main-timeline6 .timeline:nth-child(3n):before {
		background: #00a3a9
	}

		.main-timeline6 .timeline:nth-child(3n) .content-inner:after, .main-timeline6 .timeline:nth-child(3n) .content-inner:before {
			border-left-color: #006662
		}

	.main-timeline6 .timeline:nth-child(3n) .year {
		color: #00a3a9
	}

	.main-timeline6 .timeline:nth-child(4n) .content-inner, .main-timeline6 .timeline:nth-child(4n) .timeline-content:after, .main-timeline6 .timeline:nth-child(4n) .timeline-content:before, .main-timeline6 .timeline:nth-child(4n):after, .main-timeline6 .timeline:nth-child(4n):before {
		background: #f92534
	}

		.main-timeline6 .timeline:nth-child(4n) .content-inner:after, .main-timeline6 .timeline:nth-child(4n) .content-inner:before {
			border-right-color: #92070e
		}

	.main-timeline6 .timeline:nth-child(4n) .year {
		color: #f92534
	}

@media only screen and (max-width:990px) and (min-width:768px) {
	.main-timeline6 .timeline:after {
		height: 80%
	}
}

@media only screen and (max-width:767px) {
	.main-timeline6 .timeline:last-child, .main-timeline6 .timeline:nth-child(even), .main-timeline6 .timeline:nth-child(odd) {
		margin: 0
	}

	.main-timeline6 .timeline {
		width: 95%;
		margin: 15px 15px 15px 0 !important
	}

		.main-timeline6 .timeline .timeline-content:after, .main-timeline6 .timeline .timeline-content:before, .main-timeline6 .timeline:after, .main-timeline6 .timeline:before {
			display: none
		}

		.main-timeline6 .timeline-content, .main-timeline6 .timeline:nth-child(2n) .timeline-content {
			width: 100%;
			float: none;
			padding: 0 0 30px 30px;
			margin: 0
		}

		.main-timeline6 .content-inner, .main-timeline6 .timeline:nth-child(2n) .content-inner {
			padding: 35px 15px 35px 110px;
			margin: 0 -15px 0 0;
			border-radius: 150px 0 0 150px
		}

			.main-timeline6 .timeline:nth-child(2n) .content-inner:after, .main-timeline6 .timeline:nth-child(2n) .content-inner:before {
				border: none;
				border-left: 15px solid #027dcd;
				border-top: 10px solid transparent;
				right: 0;
				left: auto
			}

			.main-timeline6 .timeline:nth-child(2n) .content-inner:after {
				border-top: none;
				border-bottom: 10px solid transparent
			}

		.main-timeline6 .timeline:nth-child(2n) .icon {
			top: 0;
			left: 0
		}

		.main-timeline6 .timeline:nth-child(4n) .content-inner:after, .main-timeline6 .timeline:nth-child(4n) .content-inner:before {
			border-left-color: #92070e
		}
}

/******************* Timeline Demo - 7 *****************/
.main-timeline7 {
	overflow: hidden;
	position: relative
}

	.main-timeline7 .timeline {
		width: 50%;
		float: left;
		z-index: 1;
		position: relative
	}

		.main-timeline7 .timeline:after, .main-timeline7 .timeline:before {
			content: "";
			display: block;
			clear: both
		}

		.main-timeline7 .timeline:before {
			content: "";
			width: 40px;
			height: 90%;
			background: #727cb6;
			position: absolute;
			top: 10%;
			right: -20px
		}

		.main-timeline7 .timeline:last-child:before {
			height: 0
		}

	.main-timeline7 .timeline-icon {
		width: 80px;
		height: 80px;
		border-radius: 50%;
		background: #727cb6;
		overflow: hidden;
		text-align: center;
		position: absolute;
		top: 0;
		right: -40px;
		z-index: 3
	}

		.main-timeline7 .timeline-icon:before {
			content: "";
			width: 60px;
			height: 60px;
			border-radius: 50%;
			background: #fff;
			border: 2px solid #727cb6;
			box-shadow: 0 0 0 4px #a5afe4;
			margin: auto;
			position: absolute;
			top: 0;
			left: 0;
			bottom: 0;
			right: 0
		}

		.main-timeline7 .timeline-icon i {
			font-size: 35px;
			color: #303a3b;
			line-height: 80px;
			z-index: 1;
			position: relative
		}

	.main-timeline7 .year {
		display: block;
		padding: 0 60px 0 30px;
		font-size: 30px;
		color: #303a3b;
		text-align: right;
		border-bottom: 2px solid #303a3b;
		z-index: 2;
		position: relative
	}

		.main-timeline7 .year:before {
			content: "";
			display: block;
			width: 30px;
			height: 30px;
			border-radius: 50%;
			background: #727cb6;
			border: 5px solid #fff;
			box-shadow: 0 0 0 4px #727cb6;
			margin: auto;
			position: absolute;
			bottom: -15px;
			left: 4px
		}

		.main-timeline7 .year:after {
			content: "";
			border-left: 10px solid #303a3b;
			border-top: 10px solid transparent;
			border-bottom: 10px solid transparent;
			position: absolute;
			bottom: -11px;
			left: 50px
		}

	.main-timeline7 .timeline-content {
		padding: 18px 60px 18px 40px;
		text-align: right;
		position: relative;
		z-index: 1
	}

		.main-timeline7 .timeline-content:after, .main-timeline7 .timeline-content:before {
			content: "";
			width: 80px;
			height: 150px;
			border-radius: 50%;
			background: #fff;
			position: absolute;
			top: -7%;
			right: 15px;
			z-index: -1
		}

		.main-timeline7 .timeline-content:after {
			left: auto;
			right: -95px
		}

	.main-timeline7 .timeline:last-child .timeline-content:after, .main-timeline7 .timeline:last-child .timeline-content:before {
		width: 0;
		height: 0
	}

	.main-timeline7 .title {
		font-size: 22px;
		font-weight: 700;
		color: #727cb6;
		margin-top: 0
	}

	.main-timeline7 .description {
		font-size: 15px;
		color: #7f8386;
		line-height: 25px
	}

	.main-timeline7 .timeline:nth-child(2) {
		margin-top: 140px
	}

	.main-timeline7 .timeline:nth-child(even) {
		margin-bottom: 80px
	}

	.main-timeline7 .timeline:nth-child(odd) {
		margin: -140px 0 0
	}

	.main-timeline7 .timeline:first-child, .main-timeline7 .timeline:last-child:nth-child(even) {
		margin: 0 !important
	}

	.main-timeline7 .timeline:nth-child(2n) .timeline-icon, .main-timeline7 .timeline:nth-child(2n):before {
		right: auto;
		left: -20px;
		background: #e77e21
	}

	.main-timeline7 .timeline:nth-child(2n) .timeline-icon {
		left: -40px
	}

	.main-timeline7 .timeline:nth-child(2n) .year {
		padding: 0 30px 0 60px;
		text-align: left
	}

		.main-timeline7 .timeline:nth-child(2n) .year:before {
			left: auto;
			right: 3px
		}

		.main-timeline7 .timeline:nth-child(2n) .year:after {
			border-left: none;
			border-right: 10px solid #303a3b;
			right: 50px
		}

	.main-timeline7 .timeline:nth-child(2n) .timeline-content {
		padding: 18px 40px 18px 60px;
		text-align: left
	}

		.main-timeline7 .timeline:nth-child(2n) .timeline-content:before {
			left: -95px
		}

		.main-timeline7 .timeline:nth-child(2n) .timeline-content:after {
			left: 15px
		}

	.main-timeline7 .timeline:nth-child(2n) .timeline-icon:before {
		border-color: #e77e21;
		box-shadow: 0 0 0 4px #f1a563
	}

	.main-timeline7 .timeline:nth-child(2n) .year:before {
		background: #e77e21;
		box-shadow: 0 0 0 4px #e77e21
	}

	.main-timeline7 .timeline:nth-child(2n) .title {
		color: #e77e21
	}

	.main-timeline7 .timeline:nth-child(3n) .timeline-icon, .main-timeline7 .timeline:nth-child(3n):before {
		background: #008b8b
	}

		.main-timeline7 .timeline:nth-child(3n) .timeline-icon:before {
			border-color: #008b8b;
			box-shadow: 0 0 0 4px #50b5b4
		}

	.main-timeline7 .timeline:nth-child(3n) .year:before {
		background: #008b8b;
		box-shadow: 0 0 0 4px #008b8b
	}

	.main-timeline7 .timeline:nth-child(3n) .title {
		color: #008b8b
	}

	.main-timeline7 .timeline:nth-child(4n) .timeline-icon, .main-timeline7 .timeline:nth-child(4n):before {
		background: #ed687c
	}

		.main-timeline7 .timeline:nth-child(4n) .timeline-icon:before {
			border-color: #ed687c;
			box-shadow: 0 0 0 4px #f798a8
		}

	.main-timeline7 .timeline:nth-child(4n) .year:before {
		background: #ed687c;
		box-shadow: 0 0 0 4px #ed687c
	}

	.main-timeline7 .timeline:nth-child(4n) .title {
		color: #ed687c
	}

@media only screen and (max-width:990px) {
	.main-timeline7 .timeline {
		width: 100%
	}

		.main-timeline7 .timeline:nth-child(even), .main-timeline7 .timeline:nth-child(odd) {
			margin: 0
		}

		.main-timeline7 .timeline:before, .main-timeline7 .timeline:nth-child(2n):before {
			width: 30px;
			height: 100%;
			left: 25px
		}

		.main-timeline7 .timeline-icon, .main-timeline7 .timeline:nth-child(2n) .timeline-icon {
			left: 0
		}

		.main-timeline7 .timeline:nth-child(2n) .year, .main-timeline7 .year {
			text-align: left;
			padding: 0 30px 0 100px
		}

			.main-timeline7 .timeline:nth-child(2n) .year:before, .main-timeline7 .year:before {
				left: auto;
				right: 4px
			}

			.main-timeline7 .year:after {
				left: auto;
				right: 50px;
				border-right: 10px solid #303a3b;
				border-left: none
			}

	.main-timeline7 .timeline-content .description {
		color: #666
	}

	.main-timeline7 .timeline-content, .main-timeline7 .timeline:nth-child(2n) .timeline-content {
		text-align: left;
		padding: 18px 40px 18px 100px
	}

		.main-timeline7 .timeline-content:after, .main-timeline7 .timeline-content:before {
			width: 0;
			height: 0
		}
}

/******************* Timeline Demo - 8 *****************/
.main-timeline8 {
	overflow: hidden;
	position: relative
}

	.main-timeline8:after, .main-timeline8:before {
		content: "";
		display: block;
		width: 100%;
		clear: both
	}

	.main-timeline8:before {
		content: "";
		width: 3px;
		height: 100%;
		background: #d6d5d5;
		position: absolute;
		top: 30px;
		left: 50%
	}

	.main-timeline8 .timeline {
		width: 50%;
		float: left;
		padding-right: 30px;
		position: relative
	}

	.main-timeline8 .timeline-icon {
		width: 32px;
		height: 32px;
		border-radius: 50%;
		background: #fff;
		border: 3px solid #fe6847;
		position: absolute;
		top: 5.5%;
		right: -17.5px
	}

	.main-timeline8 .year {
		display: block;
		padding: 10px;
		margin: 0;
		font-size: 30px;
		color: #fff;
		border-radius: 0 50px 50px 0;
		background: #fe6847;
		text-align: center;
		position: relative
	}

		.main-timeline8 .year:before {
			content: "";
			border-top: 35px solid #f59c8b;
			border-left: 35px solid transparent;
			position: absolute;
			bottom: -35px;
			left: 0
		}

	.main-timeline8 .timeline-content {
		padding: 30px 20px;
		margin: 0 45px 0 35px;
		background: #f2f2f2
	}

	.main-timeline8 .title {
		font-size: 19px;
		font-weight: 700;
		color: #504f54;
		margin: 0 0 10px
	}

	.main-timeline8 .description {
		font-size: 14px;
		color: #7d7b7b;
		margin: 0
	}

	.main-timeline8 .timeline:nth-child(2n) {
		padding: 0 0 0 30px
	}

		.main-timeline8 .timeline:nth-child(2n) .timeline-icon {
			right: auto;
			left: -14.5px
		}

		.main-timeline8 .timeline:nth-child(2n) .year {
			border-radius: 50px 0 0 50px;
			background: #7eda99
		}

			.main-timeline8 .timeline:nth-child(2n) .year:before {
				border-left: none;
				border-right: 35px solid transparent;
				left: auto;
				right: 0
			}

		.main-timeline8 .timeline:nth-child(2n) .timeline-content {
			text-align: right;
			margin: 0 35px 0 45px
		}

	.main-timeline8 .timeline:nth-child(2) {
		margin-top: 170px
	}

	.main-timeline8 .timeline:nth-child(odd) {
		margin: -175px 0 0
	}

	.main-timeline8 .timeline:nth-child(even) {
		margin-bottom: 80px
	}

	.main-timeline8 .timeline:first-child, .main-timeline8 .timeline:last-child:nth-child(even) {
		margin: 0
	}

	.main-timeline8 .timeline:nth-child(2n) .timeline-icon {
		border-color: #7eda99
	}

	.main-timeline8 .timeline:nth-child(2n) .year:before {
		border-top-color: #92efad
	}

	.main-timeline8 .timeline:nth-child(3n) .timeline-icon {
		border-color: #8a5ec1
	}

	.main-timeline8 .timeline:nth-child(3n) .year {
		background: #8a5ec1
	}

		.main-timeline8 .timeline:nth-child(3n) .year:before {
			border-top-color: #a381cf
		}

	.main-timeline8 .timeline:nth-child(4n) .timeline-icon {
		border-color: #f98d9c
	}

	.main-timeline8 .timeline:nth-child(4n) .year {
		background: #f98d9c
	}

		.main-timeline8 .timeline:nth-child(4n) .year:before {
			border-top-color: #f2aab3
		}

@media only screen and (max-width:767px) {
	.main-timeline8 {
		overflow: visible
	}

		.main-timeline8:before {
			top: 0;
			left: 0
		}

		.main-timeline8 .timeline:nth-child(2), .main-timeline8 .timeline:nth-child(even), .main-timeline8 .timeline:nth-child(odd) {
			margin: 0
		}

		.main-timeline8 .timeline {
			width: 100%;
			float: none;
			padding: 0 0 0 30px;
			margin-bottom: 20px !important
		}

			.main-timeline8 .timeline:last-child {
				margin: 0 !important
			}

		.main-timeline8 .timeline-icon {
			right: auto;
			left: -14.5px
		}

		.main-timeline8 .year {
			border-radius: 50px 0 0 50px
		}

			.main-timeline8 .year:before {
				border-left: none;
				border-right: 35px solid transparent;
				left: auto;
				right: 0
			}

		.main-timeline8 .timeline-content {
			margin: 0 35px 0 45px
		}
}

/******************* Timeline Demo - 9 *****************/
.main-timeline9 {
	position: relative
}

	.main-timeline9:after, .main-timeline9:before {
		content: "";
		display: block;
		width: 100%;
		clear: both
	}

	.main-timeline9:before {
		content: "";
		width: 3px;
		height: 100%;
		background: #302124;
		position: absolute;
		top: 0;
		left: 50%
	}

	.main-timeline9 .timeline {
		width: 50%;
		float: left;
		position: relative;
		z-index: 1
	}

		.main-timeline9 .timeline:after, .main-timeline9 .timeline:before {
			content: "";
			display: block;
			width: 100%;
			clear: both
		}

		.main-timeline9 .timeline:first-child:before, .main-timeline9 .timeline:last-child:before {
			content: "";
			width: 25px;
			height: 25px;
			border-radius: 50%;
			background: #fff;
			border: 4px solid #cca872;
			position: absolute;
			top: 0;
			right: -14px;
			z-index: 1
		}

		.main-timeline9 .timeline:last-child:before {
			top: auto;
			bottom: 0
		}

		.main-timeline9 .timeline:last-child:nth-child(even):before {
			right: auto;
			left: -12px;
			bottom: -2px
		}

	.main-timeline9 .timeline-content {
		text-align: center;
		margin-top: 8px;
		position: relative;
		transition: all .3s ease 0s
	}

		.main-timeline9 .timeline-content:before {
			content: "";
			width: 100%;
			height: 5px;
			background: #cca872;
			position: absolute;
			top: 88px;
			left: 0;
			z-index: -1
		}

	.main-timeline9 .circle {
		width: 180px;
		height: 180px;
		border-radius: 50%;
		background: #fff;
		border: 8px solid #cca872;
		float: left;
		margin-right: 25px;
		position: relative
	}

		.main-timeline9 .circle span:after, .main-timeline9 .circle span:before, .main-timeline9 .circle:before {
			content: "";
			margin: auto;
			position: absolute;
			right: -33px;
			bottom: 0;
			z-index: -1
		}

		.main-timeline9 .circle:before {
			width: 26px;
			height: 30px;
			background: #cca872;
			top: 0;
			box-shadow: inset 7px 0 9px -7px #444
		}

		.main-timeline9 .circle span {
			display: block;
			width: 100%;
			height: 100%;
			border-radius: 50%;
			line-height: 160px;
			border: 3px solid #adabab;
			font-size: 80px;
			color: #454344
		}

			.main-timeline9 .circle span:after, .main-timeline9 .circle span:before {
				width: 28px;
				height: 50px;
				background: #fff;
				border-radius: 0 0 0 21px;
				top: -54px
			}

			.main-timeline9 .circle span:after {
				border-radius: 21px 0 0;
				top: 0;
				bottom: -56px
			}

	.main-timeline9 .content {
		display: table;
		padding-right: 40px;
		position: relative
	}

	.main-timeline9 .year {
		display: block;
		padding: 10px;
		margin: 10px 0 50px;
		background: #cca872;
		border-radius: 7px;
		font-size: 25px;
		color: #fff
	}

	.main-timeline9 .title {
		font-size: 25px;
		font-weight: 700;
		color: #cca872;
		margin-top: 0
	}

	.main-timeline9 .icon span:after, .main-timeline9 .icon span:before, .main-timeline9 .icon:before {
		content: "";
		height: 25px;
		margin: auto;
		position: absolute;
		bottom: 0;
		z-index: -1;
		left: -15px
	}

	.main-timeline9 .description {
		font-size: 14px;
		color: #a6a6a6;
		text-align: justify
	}

	.main-timeline9 .icon {
		width: 25px;
		height: 25px;
		border-radius: 50%;
		background: #fff;
		border: 4px solid #cca872;
		position: absolute;
		top: 78px;
		right: -14px
	}

		.main-timeline9 .icon:before {
			width: 15px;
			background: #cca872;
			top: -1px
		}

		.main-timeline9 .icon span:after, .main-timeline9 .icon span:before {
			width: 21px;
			background: #fff;
			border-radius: 0 0 21px;
			top: -30px
		}

		.main-timeline9 .icon span:after {
			border-radius: 0 21px 0 0;
			top: 0;
			left: -15px;
			bottom: -30px
		}

	.main-timeline9 .timeline:nth-child(2n) .circle, .main-timeline9 .timeline:nth-child(2n) .timeline-content {
		float: right
	}

	.main-timeline9 .timeline:nth-child(2n) .circle {
		margin: 0 0 0 25px
	}

		.main-timeline9 .timeline:nth-child(2n) .circle:before {
			right: auto;
			left: -33px;
			box-shadow: -7px 0 9px -7px #444 inset
		}

		.main-timeline9 .timeline:nth-child(2n) .circle span:after, .main-timeline9 .timeline:nth-child(2n) .circle span:before {
			right: auto;
			left: -33px;
			border-radius: 0 0 21px
		}

		.main-timeline9 .timeline:nth-child(2n) .circle span:after {
			border-radius: 0 21px 0 0
		}

	.main-timeline9 .timeline:nth-child(2n) .content {
		padding: 0 0 0 40px;
		margin-left: 2px
	}

	.main-timeline9 .timeline:nth-child(2n) .icon {
		right: auto;
		left: -14px
	}

		.main-timeline9 .timeline:nth-child(2n) .icon span:after, .main-timeline9 .timeline:nth-child(2n) .icon span:before, .main-timeline9 .timeline:nth-child(2n) .icon:before {
			left: auto;
			right: -15px
		}

		.main-timeline9 .timeline:nth-child(2n) .icon span:before {
			border-radius: 0 0 0 21px
		}

		.main-timeline9 .timeline:nth-child(2n) .icon span:after {
			border-radius: 21px 0 0
		}

	.main-timeline9 .timeline:nth-child(2) {
		margin-top: 180px
	}

	.main-timeline9 .timeline:nth-child(odd) {
		margin: -175px 0 0
	}

	.main-timeline9 .timeline:nth-child(even) {
		margin-bottom: 80px
	}

	.main-timeline9 .timeline:first-child, .main-timeline9 .timeline:last-child:nth-child(even) {
		margin: 0
	}

@media only screen and (max-width:990px) {
	.main-timeline9:before {
		left: 100%
	}

	.main-timeline9 .timeline {
		width: 100%;
		float: none;
		margin-bottom: 20px !important
	}

		.main-timeline9 .timeline:first-child:before, .main-timeline9 .timeline:last-child:before {
			left: auto !important;
			right: -13px !important
		}

		.main-timeline9 .timeline:nth-child(2n) .circle {
			float: left;
			margin: 0 25px 0 0
		}

			.main-timeline9 .timeline:nth-child(2n) .circle:before {
				right: -33px;
				left: auto;
				box-shadow: 7px 0 9px -7px #444 inset
			}

			.main-timeline9 .timeline:nth-child(2n) .circle span:after, .main-timeline9 .timeline:nth-child(2n) .circle span:before {
				right: -33px;
				left: auto;
				border-radius: 0 0 0 21px
			}

			.main-timeline9 .timeline:nth-child(2n) .circle span:after {
				border-radius: 21px 0 0
			}

		.main-timeline9 .timeline:nth-child(2n) .content {
			padding: 0 40px 0 0;
			margin-left: 0
		}

		.main-timeline9 .timeline:nth-child(2n) .icon {
			right: -14px;
			left: auto
		}

			.main-timeline9 .timeline:nth-child(2n) .icon span:after, .main-timeline9 .timeline:nth-child(2n) .icon span:before, .main-timeline9 .timeline:nth-child(2n) .icon:before {
				left: -15px;
				right: auto
			}

			.main-timeline9 .timeline:nth-child(2n) .icon span:before {
				border-radius: 0 0 21px
			}

			.main-timeline9 .timeline:nth-child(2n) .icon span:after {
				border-radius: 0 21px 0 0
			}

		.main-timeline9 .timeline:nth-child(2), .main-timeline9 .timeline:nth-child(even), .main-timeline9 .timeline:nth-child(odd) {
			margin: 0
		}
}

@media only screen and (max-width:480px) {
	.main-timeline9:before {
		left: 0
	}

	.main-timeline9 .timeline:first-child:before, .main-timeline9 .timeline:last-child:before {
		left: -12px !important;
		right: auto !important
	}

	.main-timeline9 .circle, .main-timeline9 .timeline:nth-child(2n) .circle {
		width: 130px;
		height: 130px;
		float: none;
		margin: 0 auto
	}

	.main-timeline9 .timeline-content:before {
		width: 99.5%;
		top: 68px;
		left: .5%
	}

	.main-timeline9 .circle span {
		line-height: 115px;
		font-size: 60px
	}

		.main-timeline9 .circle span:after, .main-timeline9 .circle span:before, .main-timeline9 .circle:before, .main-timeline9 .icon {
			display: none
		}

	.main-timeline9 .content, .main-timeline9 .timeline:nth-child(2n) .content {
		padding: 0 10px
	}

	.main-timeline9 .year {
		margin-bottom: 15px
	}

	.main-timeline9 .description {
		text-align: center
	}
}

/******************* Timeline Demo - 10 *****************/
.main-timeline10:after, .main-timeline10:before {
	content: "";
	display: block;
	width: 100%;
	clear: both
}

.main-timeline10 .timeline {
	padding: 0;
	display: -webkit-inline-box
}

.main-timeline10 .col-md-3 {
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
	max-width: 24%
}

.main-timeline10 .timeline-inner {
	text-align: center;
	margin: 20px 20px 35px 35px;
	position: relative
}

	.main-timeline10 .timeline-inner:after {
		content: "";
		width: 120%;
		height: 3px;
		background: #555;
		position: absolute;
		bottom: 0;
		left: 10%
	}

.main-timeline10 .timeline:last-child .timeline-inner:after {
	width: 0
}

.main-timeline10 .year {
	background: #58b25e;
	padding: 5px 0;
	border-radius: 30px 0;
	font-size: 26px;
	font-weight: 700;
	color: #fff;
	z-index: 1;
	position: relative
}

	.main-timeline10 .year:after, .main-timeline10 .year:before {
		position: absolute;
		top: -19px;
		content: ""
	}

	.main-timeline10 .year:before {
		right: 0;
		border: 10px solid transparent;
		border-bottom: 10px solid #58b25e;
		border-right: 10px solid #58b25e
	}

	.main-timeline10 .year:after {
		width: 25px;
		height: 19px;
		border-radius: 0 0 20px;
		background: #fff;
		right: 1px
	}

.main-timeline10 .timeline-content {
	padding: 10px 10px 30px;
	border-left: 3px solid #58b25e;
	position: relative
}

	.main-timeline10 .timeline-content:before {
		content: "";
		position: absolute;
		top: 0;
		left: -1px;
		border: 10px solid transparent;
		border-top: 10px solid #58b25e;
		border-left: 10px solid #58b25e
	}

	.main-timeline10 .timeline-content:after {
		content: "";
		width: 25px;
		height: 19px;
		border-radius: 20px 0 0;
		background: #fff;
		position: absolute;
		top: 0;
		left: 0
	}

.main-timeline10 .post {
	font-size: 26px;
	color: #333
}

.main-timeline10 .description {
	font-size: 14px;
	color: #333
}

.main-timeline10 .timeline-icon {
	width: 70px;
	height: 70px;
	line-height: 65px;
	border-radius: 50%;
	border: 5px solid #58b25e;
	background: #fff;
	font-size: 30px;
	color: #555;
	z-index: 1;
	position: absolute;
	bottom: -35px;
	left: -35px
}

.main-timeline10 .timeline:nth-child(2n) .year {
	background: #9f84c4
}

	.main-timeline10 .timeline:nth-child(2n) .year:before {
		border-bottom-color: #9f84c4;
		border-right-color: #9f84c4
	}

.main-timeline10 .timeline:nth-child(2n) .timeline-content {
	border-left-color: #9f84c4
}

	.main-timeline10 .timeline:nth-child(2n) .timeline-content:before {
		border-top-color: #9f84c4;
		border-left-color: #9f84c4
	}

.main-timeline10 .timeline:nth-child(2n) .timeline-icon {
	border-color: #9f84c4
}

.main-timeline10 .timeline:nth-child(3n) .year {
	background: #f35958
}

	.main-timeline10 .timeline:nth-child(3n) .year:before {
		border-bottom-color: #f35958;
		border-right-color: #f35958
	}

.main-timeline10 .timeline:nth-child(3n) .timeline-content {
	border-left-color: #f35958
}

	.main-timeline10 .timeline:nth-child(3n) .timeline-content:before {
		border-top-color: #f35958;
		border-left-color: #f35958
	}

.main-timeline10 .timeline:nth-child(3n) .timeline-icon {
	border-color: #f35958
}

.main-timeline10 .timeline:nth-child(4n) .year {
	background: #e67e49
}

	.main-timeline10 .timeline:nth-child(4n) .year:before {
		border-bottom-color: #e67e49;
		border-right-color: #e67e49
	}

.main-timeline10 .timeline:nth-child(4n) .timeline-content {
	border-left-color: #e67e49
}

	.main-timeline10 .timeline:nth-child(4n) .timeline-content:before {
		border-top-color: #e67e49;
		border-left-color: #e67e49
	}

.main-timeline10 .timeline:nth-child(4n) .timeline-icon {
	border-color: #e67e49
}

@media only screen and (max-width:990px) {
	.main-timeline10 .timeline-inner:after {
		width: 110%
	}

	.main-timeline10 .timeline:nth-child(2n) .timeline-inner:after {
		width: 0
	}
}

@media only screen and (max-width:767px) {
	.main-timeline10 .timeline {
		margin-bottom: 50px
	}

		.main-timeline10 .timeline-inner:after, .main-timeline10 .timeline:nth-child(2n) .timeline-inner:after {
			width: 100%;
			height: 3px;
			left: 0
		}
}

/******************* Timeline Demo - 11 *****************/
.main-timeline11 {
	overflow: hidden;
	position: relative
}

	.main-timeline11:before {
		content: "";
		width: 7px;
		height: 100%;
		background: #909090;
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%)
	}

	.main-timeline11 .timeline {
		width: 50%;
		padding-left: 50px;
		float: right;
		position: relative
	}

		.main-timeline11 .timeline:after, .main-timeline11 .timeline:before {
			position: absolute;
			content: "";
			top: 50%;
			transform: translateY(-50%)
		}

		.main-timeline11 .timeline:before {
			width: 30px;
			height: 30px;
			border-radius: 50%;
			background: #909090;
			border: 7px solid #fff;
			left: -15px
		}

		.main-timeline11 .timeline:after {
			display: block;
			border-right: 30px solid #ee4423;
			border-top: 20px solid transparent;
			border-bottom: 20px solid transparent;
			left: 24px
		}

	.main-timeline11 .timeline-content {
		display: block;
		padding: 25px;
		border-radius: 100px;
		background: #ee4423;
		position: relative
	}

		.main-timeline11 .timeline-content:after, .main-timeline11 .timeline-content:before {
			content: "";
			display: block;
			width: 100%;
			clear: both
		}

		.main-timeline11 .timeline-content:hover {
			text-decoration: none
		}

	.main-timeline11 .inner-content {
		width: 70%;
		float: right;
		padding: 15px 20px 15px 15px;
		background: #fff;
		border-radius: 0 100px 100px 0;
		color: #ee4423
	}

	.main-timeline11 .year {
		display: inline-block;
		font-size: 50px;
		font-weight: 600;
		color: #fff;
		position: absolute;
		top: 50%;
		left: 7%;
		transform: translateY(-50%)
	}

	.main-timeline11 .title {
		font-size: 24px;
		font-weight: 600;
		text-transform: uppercase;
		margin: 0 0 5px
	}

	.main-timeline11 .description {
		font-size: 14px;
		margin: 0 0 5px
	}

	.main-timeline11 .timeline:nth-child(2n) {
		padding: 0 50px 0 0
	}

		.main-timeline11 .timeline:nth-child(2n) .year, .main-timeline11 .timeline:nth-child(2n):before {
			left: auto;
			right: -15px
		}

		.main-timeline11 .timeline:nth-child(2n) .year {
			right: 7%
		}

		.main-timeline11 .timeline:nth-child(2n):after {
			border-right: none;
			border-left: 30px solid #ee4423;
			left: auto;
			right: 24px;
			border-left-color: #f68829
		}

		.main-timeline11 .timeline:nth-child(2n) .inner-content {
			float: none;
			border-radius: 100px 0 0 100px;
			text-align: right
		}

	.main-timeline11 .timeline:nth-child(2) {
		margin-top: 130px
	}

	.main-timeline11 .timeline:nth-child(odd) {
		margin: -130px 0 0
	}

	.main-timeline11 .timeline:nth-child(even) {
		margin-bottom: 80px
	}

	.main-timeline11 .timeline:first-child, .main-timeline11 .timeline:last-child:nth-child(even) {
		margin: 0
	}

	.main-timeline11 .timeline:nth-child(2n) .timeline-content {
		background: #f68829
	}

	.main-timeline11 .timeline:nth-child(2n), .main-timeline11 .timeline:nth-child(2n) .inner-content {
		color: #f68829
	}

	.main-timeline11 .timeline:nth-child(3n) .timeline-content {
		background: #2991d0
	}

	.main-timeline11 .timeline:nth-child(3n), .main-timeline11 .timeline:nth-child(3n) .inner-content {
		color: #2991d0
	}

		.main-timeline11 .timeline:nth-child(3n):after {
			border-right-color: #2991d0
		}

	.main-timeline11 .timeline:nth-child(4n) .timeline-content {
		background: #9361aa
	}

	.main-timeline11 .timeline:nth-child(4n), .main-timeline11 .timeline:nth-child(4n) .inner-content {
		color: #9361aa
	}

		.main-timeline11 .timeline:nth-child(4n):after {
			border-left-color: #9361aa
		}

	.main-timeline11 .timeline:nth-child(5n) .timeline-content {
		background: #a7be26
	}

	.main-timeline11 .timeline:nth-child(5n), .main-timeline11 .timeline:nth-child(5n) .inner-content {
		color: #a7be26
	}

		.main-timeline11 .timeline:nth-child(5n):after {
			border-right-color: #a7be26
		}

@media only screen and (max-width:1200px) {
	.main-timeline11 .inner-content {
		width: 80%
	}

	.main-timeline11 .year {
		font-size: 45px;
		left: 10px;
		transform: translateY(-50%) rotate(-90deg)
	}

	.main-timeline11 .timeline:nth-child(2n) .year {
		right: 10px
	}
}

@media only screen and (max-width:990px) {
	.main-timeline11 .year {
		font-size: 40px;
		left: 0
	}

	.main-timeline11 .timeline:nth-child(2n) .year {
		right: 0
	}
}

@media only screen and (max-width:767px) {
	.main-timeline11 .timeline:before, .main-timeline11:before {
		left: 10px;
		transform: translateX(0)
	}

	.main-timeline11 .timeline:nth-child(2n):after {
		border-left: none;
		border-right: 30px solid #ee4423;
		right: auto;
		left: 24px;
		border-right-color: #f68829
	}

	.main-timeline11 .timeline, .main-timeline11 .timeline:nth-child(even), .main-timeline11 .timeline:nth-child(odd) {
		width: 100%;
		float: none;
		margin: 0 0 30px
	}

		.main-timeline11 .timeline:last-child {
			margin-bottom: 0
		}

		.main-timeline11 .timeline:nth-child(2n) {
			padding: 0 0 0 50px
		}

			.main-timeline11 .timeline:before, .main-timeline11 .timeline:nth-child(2n):before {
				left: -2px
			}

	.main-timeline11 .inner-content {
		width: 85%
	}

	.main-timeline11 .timeline:nth-child(2n) .inner-content {
		float: right;
		border-radius: 0 100px 100px 0;
		text-align: left
	}

	.main-timeline11 .timeline:nth-child(2n) .year {
		right: auto;
		left: 0
	}

	.main-timeline11 .timeline:nth-child(3n):after {
		border-left-color: #2991d0
	}

	.main-timeline11 .timeline:nth-child(4n):after {
		border-right-color: #9361aa
	}

	.main-timeline11 .timeline:nth-child(5n):after {
		border-left-color: #a7be26
	}
}

@media only screen and (max-width:479px) {
	.main-timeline11 .timeline-content {
		padding: 15px
	}

	.main-timeline11 .inner-content {
		width: 80%
	}

	.main-timeline11 .year {
		font-size: 30px
	}
}

/******************* Timeline Demo - 12 *****************/
.main-timeline12 .timeline {
	padding: 0 2px;
	position: relative;
	display: inline-block
}

.main-timeline12 .col-md-2 {
	-ms-flex: 0 0 15.666667%;
	flex: 0 0 15.666667%;
	max-width: 15.666667%
}

.main-timeline12 .timeline-icon {
	display: block;
	text-align: center;
	padding: 20px 0 55px;
	z-index: 1;
	position: relative
}

.main-timeline12 .timeline:nth-child(2n) .timeline-icon {
	padding: 55px 0 20px
}

.main-timeline12 .timeline-icon:before {
	content: "";
	width: 1px;
	height: 75%;
	background: #39ae99;
	margin: 0 auto;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: -1;
	transition: all .3s ease 0s
}

.main-timeline12 .timeline:nth-child(2n) .timeline-icon:before {
	bottom: auto;
	top: 0
}

.main-timeline12 .timeline:hover .timeline-icon:before {
	background: #555
}

.main-timeline12 .timeline-icon i {
	width: 45px;
	height: 45px;
	line-height: 45px;
	border-radius: 50%;
	background: #39ae99;
	font-size: 14px;
	color: #fff;
	transition: all .3s ease 0s
}

.main-timeline12 .timeline:hover .timeline-icon i {
	background: #555;
	animation: icon-load 2.5s ease 0s infinite
}

.main-timeline12 .border {
	height: 15px;
	background: #39ae99;
	margin-bottom: 0;
	transition: all .3s ease 0s
}

.main-timeline12 .timeline:hover .border {
	background: #555
}

.main-timeline12 .timeline:first-child .border {
	border-radius: 4px 0 0 4px
}

.main-timeline12 .timeline:last-child .border {
	border-radius: 0 4px 4px 0
}

.main-timeline12 .timeline:nth-child(2n) .border {
	margin: 18px 0 0
}

.main-timeline12 .timeline-content {
	padding: 15px;
	border: 1px solid #ddd;
	background: #f9f9f9;
	border-radius: 3px;
	transition: all .3s ease 0s
}

.main-timeline12 .timeline:hover .timeline-content {
	background: #555
}

.main-timeline12 .title {
	font-size: 18px;
	font-weight: 700;
	color: #39ae99;
	text-transform: uppercase;
	margin: 0 0 10px;
	transition: all .3s ease 0s
}

.main-timeline12 .timeline:hover .title {
	color: #fff
}

.main-timeline12 .timeline-content .description {
	font-size: 14px;
	color: #888;
	margin: 0;
	transition: all .3s ease 0s
}

.main-timeline12 .timeline:hover .description {
	color: #fff
}

@keyframes icon-load {
	0% {
		transform: rotate(-12deg)
	}

	8% {
		transform: rotate(12deg)
	}

	10%,28%,30%,48%,50%,68% {
		transform: rotate(24deg)
	}

	18%,20%,38%,40%,58%,60% {
		transform: rotate(-24deg)
	}

	100%,75% {
		transform: rotate(0)
	}
}

@media only screen and (max-width:990px) {
	.main-timeline12 .timeline {
		margin-bottom: 20px
	}
}

@media only screen and (max-width:767px) {
	.main-timeline12 .timeline-icon {
		padding-top: 0
	}

	.main-timeline12 .timeline:nth-child(2n) .timeline-icon {
		padding-bottom: 0
	}

	.main-timeline12 .border {
		margin-bottom: 10px
	}

	.main-timeline12 .timeline:nth-child(2n) .border {
		margin: 10px 0 0
	}

	.main-timeline12 .timeline-content {
		text-align: center
	}
}

@media screen and (max-width: 768px) 
{
.main-timeline .timeline:nth-child(even) .timeline-content:after {
	left: auto;
	/*right: 0*/
}}

@media screen and (min-width: 768px) 
{
	.main-timeline .timeline:nth-child(even) .timeline-content:after {
		left: auto;
		right: 0
	}}



@media screen and (max-width: 768px) {
	#sld2020 {
		height: 100%;
		margin-top:50px;
	}

}

@media screen and (min-width: 768px) {
	#sld2020 {
		height: 440px;
	}


}

.hero-area {
	position: relative;
	z-index: 1;
	width: 100%;
}

.vizew-nav-tab {
	position: relative;
	z-index: 1;
	background-color: #1a2130;
	width: 100%;
	height: 500px;
	overflow-x: hidden;
	overflow-y: scroll;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.vizew-nav-tab {
		height: 400px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.vizew-nav-tab {
		height: 350px;
	}
}

@media only screen and (max-width: 767px) {
	.vizew-nav-tab {
		height: 300px;
	}
}

.vizew-nav-tab .nav-link {
	padding: 0;
	padding: 15px 20px;
	border-left: 4px solid transparent;
}

	.vizew-nav-tab .nav-link.active {
		background-color: #dc3545;
		border-left-color: #0a1f48;
		color: #FFF;
		padding: 10px;
	}

.single-feature-post.video-post .post-content {
	position: absolute;
	left: 30px;
	bottom: 30px;
	z-index: 59;
	width: 80%;
}
.single-blog-post.style-2 .post-thumbnail {
	position: relative;
	z-index: 1;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 110px;
	flex: 0 0 110px;
	max-width: 110px;
	width: 110px;
}

	.single-blog-post.style-2 .post-thumbnail img {
		width: 100%;
	}

.vizew-nav-tab .nav-link {
	padding: 0;
	padding: 15px 20px;
	border-left: 4px solid transparent;
}

.single-blog-post.style-2 {
	margin-bottom: 0;
}

.single-blog-post:last-child {
	margin-bottom: 0;
}

.single-blog-post {
	position: relative;
	z-index: 1;
	margin-bottom: 20px;
}

.vizew-nav-tab {
	position: relative;
	z-index: 1;
	background-color: #1a2130;
	width: 100%;
	height: 500px;
	overflow-x: hidden;
	overflow-y: scroll;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.vizew-nav-tab {
		height: 400px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.vizew-nav-tab {
		height: 350px;
	}
}

@media only screen and (max-width: 767px) {
	.vizew-nav-tab {
		height: 300px;
	}
}

.vizew-nav-tab .nav-link {
	padding: 0;
	padding: 15px 20px;
	border-left: 4px solid transparent;
}


.vizew-breadcrumb {
	position: relative;
	z-index: 1;
	padding-top: 40px;
	padding-bottom: 40px;
}

	.vizew-breadcrumb .breadcrumb {
		padding: 0;
		margin-bottom: 0;
		background-color: transparent;
		border-radius: 0;
	}

		.vizew-breadcrumb .breadcrumb .breadcrumb-item {
			color: #a6a6a6;
			font-size: 16px;
			font-weight: 400;
		}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.vizew-breadcrumb .breadcrumb .breadcrumb-item {
		font-size: 14px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.vizew-breadcrumb .breadcrumb .breadcrumb-item {
		font-size: 14px;
	}
}

@media only screen and (max-width: 767px) {
	.vizew-breadcrumb .breadcrumb .breadcrumb-item {
		font-size: 12px;
	}
}

.vizew-breadcrumb .breadcrumb .breadcrumb-item a {
	color: #fff;
	font-size: 16px;
	font-weight: 400;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.vizew-breadcrumb .breadcrumb .breadcrumb-item a {
		font-size: 14px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.vizew-breadcrumb .breadcrumb .breadcrumb-item a {
		font-size: 14px;
	}
}

@media only screen and (max-width: 767px) {
	.vizew-breadcrumb .breadcrumb .breadcrumb-item a {
		font-size: 12px;
	}
}

.vizew-breadcrumb .breadcrumb .breadcrumb-item a:hover, .vizew-breadcrumb .breadcrumb .breadcrumb-item a:focus {
	font-weight: 400;
	color: #db4437;
}

.vizew-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
	content: "\f105";
	font-family: '29ltbukrabold', Arial, sans-serif;
	color: #fff;
}

.single-blog-post {
	position: relative;
	z-index: 1;
	margin-bottom: 20px;
}

	.single-blog-post:last-child {
		margin-bottom: 0;
	}

	.single-blog-post .post-thumbnail {
		position: relative;
		z-index: 1;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100px;
		flex: 0 0 100px;
		max-width: 100px;
		width: 100px;
	}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.single-blog-post .post-thumbnail {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 80px;
		flex: 0 0 80px;
		max-width: 80px;
		width: 80px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.single-blog-post .post-thumbnail {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 80px;
		flex: 0 0 80px;
		max-width: 80px;
		width: 80px;
	}
}

@media only screen and (max-width: 767px) {
	.single-blog-post .post-thumbnail {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 80px;
		flex: 0 0 80px;
		max-width: 80px;
		width: 80px;
	}
}

.single-blog-post .post-thumbnail img {
	width: 100%;
}

.single-blog-post .post-content {
	position: relative;
	z-index: 1;
	padding-left: 20px;
}

	.single-blog-post .post-content .post-title {
		margin-bottom: 5px;
		margin-right: 20px;
		display: block;
		font-size: 13px;
		font-weight: 700;
		color: #3e677c;
		text-align: justify;
	}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.single-blog-post .post-content .post-title {
		font-size: 14px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.single-blog-post .post-content .post-title {
		font-size: 13px;
	}
}

@media only screen and (max-width: 767px) {
	.single-blog-post .post-content .post-title {
		font-size: 13px;
	}
}

.single-blog-post .post-content .post-title:hover, .single-blog-post .post-content .post-title:hover {
	color: #018b5a;
}

.single-blog-post .post-content .post-meta a {
	display: inline-block;
	color: #595959;
	font-size: 12px;
}

	.single-blog-post .post-content .post-meta a:hover, .single-blog-post .post-content .post-meta a:hover {
		color: #ffffff;
	}

.single-blog-post.style-2 {
	margin-bottom: 0;
}

	.single-blog-post.style-2 .post-thumbnail {
		position: relative;
		z-index: 1;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 110px;
		flex: 0 0 110px;
		max-width: 110px;
		width: 110px;
	}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.single-blog-post.style-2 .post-thumbnail {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 80px;
		flex: 0 0 80px;
		max-width: 80px;
		width: 80px;
	}
}

@media only screen and (max-width: 767px) {
	.single-blog-post.style-2 .post-thumbnail {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 80px;
		flex: 0 0 80px;
		max-width: 80px;
		width: 80px;
	}
}

.single-blog-post.style-2 .post-thumbnail img {
	width: 100%;
}

.single-blog-post.style-2 .post-content {
	position: relative;
	z-index: 1;
	padding-left: 20px;
}

	.single-blog-post.style-2 .post-content .post-title {
		margin-bottom: 10px;
		margin-right: 0px;
		display: block;
		font-weight: 700;
		font-size: 12px;
		line-height: 1.5;
		Color: #FFF;
		padding: 8px;
		width: 160px;
		text-align: right;
	}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.single-blog-post.style-2 .post-content .post-title {
		font-size: 14px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.single-blog-post.style-2 .post-content .post-title {
		font-size: 13px;
	}
}

@media only screen and (max-width: 767px) {
	.single-blog-post.style-2 .post-content .post-title {
		font-size: 13px;
	}
}

.single-blog-post.style-2 .post-content .post-meta span {
	display: inline-block;
	color: #a6a6a6;
	font-size: 12px;
}

.single-blog-post.style-3 {
	margin-bottom: 0;
}

	.single-blog-post.style-3 .post-thumbnail {
		position: relative;
		z-index: 1;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 140px;
		flex: 0 0 140px;
		max-width: 140px;
		width: 140px;
	}

@media only screen and (max-width: 767px) {
	.single-blog-post.style-3 .post-thumbnail {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100px;
		flex: 0 0 100px;
		max-width: 100px;
		width: 100px;
	}
}

.single-blog-post.style-3 .post-content .post-title {
	color: #018b5a;
	margin-bottom: 15px;
	display: block;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.5;
}

@media only screen and (max-width: 767px) {
	.single-blog-post.style-3 .post-content .post-title {
		font-size: 14px;
	}
}

.single-blog-post.style-3 .post-content .post-title:hover, .single-blog-post.style-3 .post-content .post-title:hover {
	color: #db4437;
}

.single-blog-post.style-3 .post-content .post-meta span {
	display: inline-block;
	color: #a6a6a6;
	font-size: 12px;
}

.single-feature-post.video-post {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 392px;
}
* {
	margin: 0;
	padding: 0;
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
	background: #565656;
}

	.about .content {
		padding: 0 80px;
	}

		.about .content h3 {
			font-weight: 400;
			font-size: 34px;
			color: #5f5950;
		}

		.about .content h4 {
			font-size: 20px;
			font-weight: 700;
			margin-top: 5px;
		}

		.about .content p {
			font-size: 15px;
			color: #848484;
		}

		.about .content ul {
			list-style: none;
			padding: 0;
		}

			.about .content ul li + li {
				margin-top: 15px;
			}

			.about .content ul li {
				position: relative;
				padding-left: 26px;
			}

			.about .content ul i {
				font-size: 20px;
				color: #ffb03b;
				position: absolute;
				left: 0;
				top: 2px;
			}

		.about .content p:last-child {
			margin-bottom: 0;
		}

	.about .video-box {
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center center;
		min-height: 290px;
		position: relative;
	}

	.about .play-btn {
		width: 94px;
		height: 94px;
		background: radial-gradient(#505052 14%, #3333335c 52%);
		border-radius: 5%;
		display: block;
		position: absolute;
		left: calc(50% - 47px);
		top: calc(50% - 47px);
		overflow: hidden;
	}

		.about .play-btn::after {
			content: '';
			position: absolute;
			left: 50%;
			top: 50%;
			transform: translateX(-40%) translateY(-50%);
			width: 0;
			height: 0;
			border-top: 10px solid transparent;
			border-bottom: 10px solid transparent;
			border-left: 15px solid #fff;
			z-index: 100;
			transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
		}

		.about .play-btn::before {
			content: '';
			position: absolute;
			width: 120px;
			height: 120px;
			-webkit-animation-delay: 0s;
			animation-delay: 0s;
			-webkit-animation: pulsate-btn 2s;
			animation: pulsate-btn 2s;
			-webkit-animation-direction: forwards;
			animation-direction: forwards;
			-webkit-animation-iteration-count: infinite;
			animation-iteration-count: infinite;
			-webkit-animation-timing-function: steps;
			animation-timing-function: steps;
			opacity: 1;
			border-radius: 50%;
			border: 5px solid #3333335c;
			top: -15%;
			left: -15%;
			background: rgba(198, 16, 0, 0);
		}

		.about .play-btn:hover::after {
			border-left: 15px solid #3333335c;
			transform: scale(20);
		}

		.about .play-btn:hover::before {
			content: '';
			position: absolute;
			left: 50%;
			top: 50%;
			transform: translateX(-40%) translateY(-50%);
			width: 0;
			height: 0;
			border: none;
			border-top: 10px solid transparent;
			border-bottom: 10px solid transparent;
			border-left: 15px solid #fff;
			z-index: 200;
			-webkit-animation: none;
			animation: none;
			border-radius: 0;
		}

@media (max-width: 1024px) {
	.about .content, .about .accordion-list {
		padding-left: 0;
		padding-right: 0;
	}
}

@media (max-width: 992px) {
	.about .content {
		padding-top: 30px;
	}

	.about .accordion-list {
		padding-bottom: 30px;
	}
}

@-webkit-keyframes pulsate-btn {
	0% {
		transform: scale(0.6, 0.6);
		opacity: 1;
	}

	100% {
		transform: scale(1, 1);
		opacity: 0;
	}
}

@keyframes pulsate-btn {
	0% {
		transform: scale(0.6, 0.6);
		opacity: 1;
	}

	100% {
		transform: scale(1, 1);
		opacity: 0;
	}
}


